diff -uraN gimp-2.2.4/app/actions/actions.c gimp-2.2.5/app/actions/actions.c --- gimp-2.2.4/app/actions/actions.c 2004-12-16 14:26:35.000000000 +0100 +++ gimp-2.2.5/app/actions/actions.c 2005-03-22 10:41:55.000000000 +0100 @@ -32,6 +32,7 @@ #include "core/gimpimage.h" #include "widgets/gimpactionfactory.h" +#include "widgets/gimpactiongroup.h" #include "widgets/gimpcontainereditor.h" #include "widgets/gimpcontainerview.h" #include "widgets/gimpdock.h" diff -uraN gimp-2.2.4/app/actions/dialogs-actions.h gimp-2.2.5/app/actions/dialogs-actions.h --- gimp-2.2.4/app/actions/dialogs-actions.h 2004-04-27 15:55:26.000000000 +0200 +++ gimp-2.2.5/app/actions/dialogs-actions.h 2005-03-22 10:41:55.000000000 +0100 @@ -20,6 +20,11 @@ #define __DIALOGS_ACTIONS_H__ +/* this check is needed for the extern declaration below to be correct */ +#ifndef __GIMP_ACTION_GROUP_H__ +#error "widgets/gimpactiongroup.h must be included prior to dialog-actions.h" +#endif + extern GimpStringActionEntry dialogs_dockable_actions[]; extern gint n_dialogs_dockable_actions; diff -uraN gimp-2.2.4/app/core/core-enums.c gimp-2.2.5/app/core/core-enums.c --- gimp-2.2.4/app/core/core-enums.c 2005-02-12 14:39:57.000000000 +0100 +++ gimp-2.2.5/app/core/core-enums.c 2005-04-05 10:56:03.000000000 +0200 @@ -952,6 +952,7 @@ { GIMP_UNDO_GROUP_IMAGE_ROTATE, "GIMP_UNDO_GROUP_IMAGE_ROTATE", "group-image-rotate" }, { GIMP_UNDO_GROUP_IMAGE_CROP, "GIMP_UNDO_GROUP_IMAGE_CROP", "group-image-crop" }, { GIMP_UNDO_GROUP_IMAGE_CONVERT, "GIMP_UNDO_GROUP_IMAGE_CONVERT", "group-image-convert" }, + { GIMP_UNDO_GROUP_IMAGE_ITEM_REMOVE, "GIMP_UNDO_GROUP_IMAGE_ITEM_REMOVE", "group-image-item-remove" }, { GIMP_UNDO_GROUP_IMAGE_LAYERS_MERGE, "GIMP_UNDO_GROUP_IMAGE_LAYERS_MERGE", "group-image-layers-merge" }, { GIMP_UNDO_GROUP_IMAGE_VECTORS_MERGE, "GIMP_UNDO_GROUP_IMAGE_VECTORS_MERGE", "group-image-vectors-merge" }, { GIMP_UNDO_GROUP_IMAGE_QMASK, "GIMP_UNDO_GROUP_IMAGE_QMASK", "group-image-qmask" }, @@ -1033,6 +1034,7 @@ { GIMP_UNDO_GROUP_IMAGE_ROTATE, N_("Rotate image"), NULL }, { GIMP_UNDO_GROUP_IMAGE_CROP, N_("Crop image"), NULL }, { GIMP_UNDO_GROUP_IMAGE_CONVERT, N_("Convert image"), NULL }, + { GIMP_UNDO_GROUP_IMAGE_ITEM_REMOVE, N_("Remove item"), NULL }, { GIMP_UNDO_GROUP_IMAGE_LAYERS_MERGE, N_("Merge layers"), NULL }, { GIMP_UNDO_GROUP_IMAGE_VECTORS_MERGE, N_("Merge vectors"), NULL }, { GIMP_UNDO_GROUP_IMAGE_QMASK, N_("Quick Mask"), NULL }, diff -uraN gimp-2.2.4/app/core/core-enums.h gimp-2.2.5/app/core/core-enums.h --- gimp-2.2.4/app/core/core-enums.h 2005-01-18 11:07:01.000000000 +0100 +++ gimp-2.2.5/app/core/core-enums.h 2005-04-05 10:54:40.000000000 +0200 @@ -439,6 +439,7 @@ GIMP_UNDO_GROUP_IMAGE_ROTATE, /*< desc="Rotate image" >*/ GIMP_UNDO_GROUP_IMAGE_CROP, /*< desc="Crop image" >*/ GIMP_UNDO_GROUP_IMAGE_CONVERT, /*< desc="Convert image" >*/ + GIMP_UNDO_GROUP_IMAGE_ITEM_REMOVE, /*< desc="Remove item" >*/ GIMP_UNDO_GROUP_IMAGE_LAYERS_MERGE, /*< desc="Merge layers" >*/ GIMP_UNDO_GROUP_IMAGE_VECTORS_MERGE,/*< desc="Merge vectors" >*/ GIMP_UNDO_GROUP_IMAGE_QMASK, /*< desc="Quick Mask" >*/ diff -uraN gimp-2.2.4/app/core/gimpdata.c gimp-2.2.5/app/core/gimpdata.c --- gimp-2.2.4/app/core/gimpdata.c 2004-10-04 11:39:27.000000000 +0200 +++ gimp-2.2.5/app/core/gimpdata.c 2005-04-04 17:16:15.000000000 +0200 @@ -402,18 +402,30 @@ gimp_data_create_filename (GimpData *data, const gchar *dest_dir) { - gchar *safename; - gchar *filename; - gchar *fullpath; - gint i; - gint unum = 1; + gchar *safename; + gchar *filename; + gchar *fullpath; + gint i; + gint unum = 1; + GError *error = NULL; g_return_if_fail (GIMP_IS_DATA (data)); g_return_if_fail (dest_dir != NULL); g_return_if_fail (g_path_is_absolute (dest_dir)); + if (data->internal) + return; + safename = g_filename_from_utf8 (gimp_object_get_name (GIMP_OBJECT (data)), - -1, NULL, NULL, NULL); + -1, NULL, NULL, &error); + if (! safename) + { + g_warning ("gimp_data_create_filename:\n" + "g_filename_from_utf8() failed for '%s': %s", + gimp_object_get_name (GIMP_OBJECT (data)), error->message); + g_error_free (error); + return; + } if (safename[0] == '.') safename[0] = '-'; diff -uraN gimp-2.2.4/app/core/gimpimage.c gimp-2.2.5/app/core/gimpimage.c --- gimp-2.2.4/app/core/gimpimage.c 2004-11-14 03:43:48.000000000 +0100 +++ gimp-2.2.5/app/core/gimpimage.c 2005-04-05 10:54:40.000000000 +0200 @@ -2729,12 +2729,22 @@ GimpLayer *active_layer; gint index; gboolean old_has_alpha; + gboolean undo_group = FALSE; g_return_if_fail (GIMP_IS_IMAGE (gimage)); g_return_if_fail (GIMP_IS_LAYER (layer)); g_return_if_fail (gimp_container_have (gimage->layers, GIMP_OBJECT (layer))); + if (gimp_drawable_has_floating_sel (GIMP_DRAWABLE (layer))) + { + gimp_image_undo_group_start (gimage, GIMP_UNDO_GROUP_IMAGE_ITEM_REMOVE, + _("Remove Layer")); + undo_group = TRUE; + + floating_sel_remove (gimp_image_floating_sel (gimage)); + } + active_layer = gimp_image_get_active_layer (gimage); index = gimp_container_get_child_index (gimage->layers, @@ -2797,6 +2807,9 @@ if (old_has_alpha != gimp_image_has_alpha (gimage)) gimp_image_alpha_changed (gimage); + + if (undo_group) + gimp_image_undo_group_end (gimage); } gboolean @@ -3024,12 +3037,22 @@ { GimpChannel *active_channel; gint index; + gboolean undo_group = FALSE; g_return_if_fail (GIMP_IS_IMAGE (gimage)); g_return_if_fail (GIMP_IS_CHANNEL (channel)); g_return_if_fail (gimp_container_have (gimage->channels, GIMP_OBJECT (channel))); + if (gimp_drawable_has_floating_sel (GIMP_DRAWABLE (channel))) + { + gimp_image_undo_group_start (gimage, GIMP_UNDO_GROUP_IMAGE_ITEM_REMOVE, + _("Remove Channel")); + undo_group = TRUE; + + floating_sel_remove (gimp_image_floating_sel (gimage)); + } + active_channel = gimp_image_get_active_channel (gimage); index = gimp_container_get_child_index (gimage->channels, @@ -3063,6 +3086,9 @@ } g_object_unref (channel); + + if (undo_group) + gimp_image_undo_group_end (gimage); } gboolean diff -uraN gimp-2.2.4/app/core/gimpimage-convert.c gimp-2.2.5/app/core/gimpimage-convert.c --- gimp-2.2.4/app/core/gimpimage-convert.c 2005-02-08 14:42:47.000000000 +0100 +++ gimp-2.2.5/app/core/gimpimage-convert.c 2005-03-21 11:21:12.000000000 +0100 @@ -2209,9 +2209,9 @@ /* Compute representative color for a box, put it in colormap[icolor] */ { int i, min, max; - long count; - long total; - long gtotal; + guint64 count; + guint64 total; + guint64 gtotal; min = boxp->Rmin; max = boxp->Rmax; @@ -2231,9 +2231,9 @@ if (total != 0) { - quantobj->cmap[icolor].red = (gtotal + (total >> 1)) / total; - quantobj->cmap[icolor].green = quantobj->cmap[icolor].red; - quantobj->cmap[icolor].blue = quantobj->cmap[icolor].red; + quantobj->cmap[icolor].red = + quantobj->cmap[icolor].green = + quantobj->cmap[icolor].blue = (gtotal + (total >> 1)) / total; } else /* The only situation where total==0 is if the image was null or * all-transparent. In that case we just put a dummy value in @@ -2762,8 +2762,7 @@ for (i = 0; i < quantobj->actual_number_of_colors; i++) { - dist = pixel - cmap[i].red; - dist *= dist; + dist = ABS(pixel - cmap[i].red); if (dist < mindist) { @@ -4208,7 +4207,6 @@ } if (palette_type == GIMP_WEB_PALETTE || - palette_type == GIMP_MONO_PALETTE || palette_type == GIMP_CUSTOM_PALETTE) { switch (dither_type) diff -uraN gimp-2.2.4/app/dialogs/convert-dialog.c gimp-2.2.5/app/dialogs/convert-dialog.c --- gimp-2.2.4/app/dialogs/convert-dialog.c 2004-11-06 13:48:38.000000000 +0100 +++ gimp-2.2.5/app/dialogs/convert-dialog.c 2005-03-21 11:27:37.000000000 +0100 @@ -366,7 +366,9 @@ convert_dialog_palette_filter (const GimpObject *object, gpointer user_data) { - return GIMP_PALETTE (object)->n_colors <= 256; + GimpPalette *palette = GIMP_PALETTE (object); + + return palette->n_colors > 0 && palette->n_colors <= 256; } static void diff -uraN gimp-2.2.4/app/dialogs/print-size-dialog.c gimp-2.2.5/app/dialogs/print-size-dialog.c --- gimp-2.2.4/app/dialogs/print-size-dialog.c 2005-02-08 14:42:47.000000000 +0100 +++ gimp-2.2.5/app/dialogs/print-size-dialog.c 2005-03-14 11:00:24.000000000 +0100 @@ -298,8 +298,8 @@ case GTK_RESPONSE_OK: private->callback (dialog, private->image, - gimp_size_entry_get_value (entry, 0), - gimp_size_entry_get_value (entry, 1), + gimp_size_entry_get_refval (entry, 0), + gimp_size_entry_get_refval (entry, 1), gimp_size_entry_get_unit (entry), private->user_data); break; diff -uraN gimp-2.2.4/app/dialogs/resize-dialog.c gimp-2.2.5/app/dialogs/resize-dialog.c --- gimp-2.2.4/app/dialogs/resize-dialog.c 2005-02-08 14:42:47.000000000 +0100 +++ gimp-2.2.5/app/dialogs/resize-dialog.c 2005-03-30 16:14:53.000000000 +0200 @@ -253,7 +253,8 @@ gimp_viewable_get_preview_size (viewable, 200, FALSE, TRUE, &width, &height); pixbuf = gimp_viewable_get_pixbuf (viewable, width, height); - gimp_offset_area_set_pixbuf (GIMP_OFFSET_AREA (private->area), pixbuf); + if (pixbuf) + gimp_offset_area_set_pixbuf (GIMP_OFFSET_AREA (private->area), pixbuf); g_signal_connect (private->area, "offsets_changed", G_CALLBACK (offsets_changed), @@ -307,9 +308,15 @@ { g_object_set (private->box, "keep-aspect", FALSE, + NULL); + + g_object_set (private->box, "width", private->old_width, "height", private->old_height, "unit", private->old_unit, + NULL); + + g_object_set (private->box, "keep-aspect", TRUE, NULL); } diff -uraN gimp-2.2.4/app/dialogs/scale-dialog.c gimp-2.2.5/app/dialogs/scale-dialog.c --- gimp-2.2.4/app/dialogs/scale-dialog.c 2005-02-08 14:42:47.000000000 +0100 +++ gimp-2.2.5/app/dialogs/scale-dialog.c 2005-03-08 16:47:58.000000000 +0100 @@ -279,9 +279,15 @@ g_object_set (private->box, "keep-aspect", FALSE, + NULL); + + g_object_set (private->box, "width", width, "height", height, "unit", private->unit, + NULL); + + g_object_set (private->box, "keep-aspect", TRUE, "xresolution", xres, "yresolution", yres, diff -uraN gimp-2.2.4/app/display/gimpdisplayshell-callbacks.c gimp-2.2.5/app/display/gimpdisplayshell-callbacks.c --- gimp-2.2.4/app/display/gimpdisplayshell-callbacks.c 2005-02-22 22:58:28.000000000 +0100 +++ gimp-2.2.5/app/display/gimpdisplayshell-callbacks.c 2005-03-08 16:47:58.000000000 +0100 @@ -1068,8 +1068,19 @@ &device_coords); if (device_coords.x == mevent->x && - device_coords.y == mevent->y) - { + device_coords.y == mevent->y +#ifdef G_OS_WIN32 + /* The Win32 backend for GDK just returns the + * coordinates from the last motion/button event + * for extended input devices, so if the event is + * put back in the queue, this will keep scrolling + * until the edge of the image is reached (bug + * #167960) */ + && mevent->device == gdk_display_get_core_pointer ( + gdk_display_get_default ()) +#endif /* G_OS_WIN32 */ + ) + { /* Put this event back on the queue * so it keeps scrolling */ diff -uraN gimp-2.2.4/app/display/gimpstatusbar.c gimp-2.2.5/app/display/gimpstatusbar.c --- gimp-2.2.4/app/display/gimpstatusbar.c 2005-02-21 14:15:04.000000000 +0100 +++ gimp-2.2.5/app/display/gimpstatusbar.c 2005-03-24 18:34:26.000000000 +0100 @@ -154,6 +154,7 @@ GtkWidget *frame; GimpUnitStore *store; GtkShadowType shadow_type; + gboolean has_focus_on_click; box->spacing = 2; box->homogeneous = FALSE; @@ -188,8 +189,13 @@ statusbar->unit_combo = gimp_unit_combo_box_new_with_model (store); g_object_unref (store); + has_focus_on_click = + g_object_class_find_property (G_OBJECT_GET_CLASS (statusbar->unit_combo), + "focus-on-click") != NULL; + GTK_WIDGET_UNSET_FLAGS (statusbar->unit_combo, GTK_CAN_FOCUS); - g_object_set (statusbar->unit_combo, "focus-on-click", FALSE, NULL); + if (has_focus_on_click) + g_object_set (statusbar->unit_combo, "focus-on-click", FALSE, NULL); gtk_container_add (GTK_CONTAINER (hbox), statusbar->unit_combo); gtk_widget_show (statusbar->unit_combo); @@ -204,7 +210,8 @@ statusbar->scale_combo = gimp_scale_combo_box_new (); GTK_WIDGET_UNSET_FLAGS (statusbar->scale_combo, GTK_CAN_FOCUS); - g_object_set (statusbar->scale_combo, "focus-on-click", FALSE, NULL); + if (has_focus_on_click) + g_object_set (statusbar->scale_combo, "focus-on-click", FALSE, NULL); gtk_container_add (GTK_CONTAINER (frame), statusbar->scale_combo); gtk_widget_show (statusbar->scale_combo); @@ -484,9 +491,9 @@ { g_snprintf (buf, sizeof (buf), statusbar->cursor_format_str, title, - ROUND (x), + (gint) RINT (x), separator, - ROUND (y)); + (gint) RINT (y)); } else /* show real world units */ { @@ -523,7 +530,7 @@ { g_snprintf (buf, sizeof (buf), statusbar->length_format_str, title, - ROUND (value)); + (gint) RINT (value)); } else /* show real world units */ { @@ -659,7 +666,7 @@ { g_snprintf (buffer, sizeof (buffer), statusbar->cursor_format_str, - "", ROUND (x), ", ", ROUND (y)); + "", (gint) RINT (x), ", ", (gint) RINT (y)); } else /* show real world units */ { diff -uraN gimp-2.2.4/app/file/file-open.c gimp-2.2.5/app/file/file-open.c --- gimp-2.2.4/app/file/file-open.c 2005-02-08 14:42:47.000000000 +0100 +++ gimp-2.2.5/app/file/file-open.c 2005-03-08 17:41:50.000000000 +0100 @@ -362,7 +362,7 @@ new_image = file_open_image (gimp, context, progress, uri, uri, - NULL, GIMP_RUN_NONINTERACTIVE, + NULL, GIMP_RUN_INTERACTIVE, status, &mime_type, error); if (new_image) diff -uraN gimp-2.2.4/app/paint/gimpink.c gimp-2.2.5/app/paint/gimpink.c --- gimp-2.2.4/app/paint/gimpink.c 2005-01-18 11:07:01.000000000 +0100 +++ gimp-2.2.5/app/paint/gimpink.c 2005-04-09 21:46:14.000000000 +0200 @@ -76,9 +76,10 @@ static void time_smoother_add (GimpInk *ink, guint32 value); -static gdouble time_smoother_result (GimpInk *ink); +static guint32 time_smoother_result (GimpInk *ink); static void time_smoother_init (GimpInk *ink, guint32 initval); + static void dist_smoother_add (GimpInk *ink, gdouble value); static gdouble dist_smoother_result (GimpInk *ink); @@ -298,11 +299,10 @@ else { Blob *blob; - gdouble lasttime, thistime; gdouble dist; gdouble velocity; - - lasttime = ink->last_time; + guint32 lasttime = ink->last_time; + guint32 thistime; time_smoother_add (ink, time); thistime = ink->last_time = time_smoother_result (ink); @@ -519,84 +519,82 @@ radmin * tcos); } + static void -dist_smoother_init (GimpInk *ink, - gdouble initval) +time_smoother_init (GimpInk *ink, + guint32 initval) { gint i; - ink->dt_index = 0; + ink->ts_index = 0; - for (i = 0; i < DIST_SMOOTHER_BUFFER; i++) - { - ink->dt_buffer[i] = initval; - } + for (i = 0; i < TIME_SMOOTHER_BUFFER; i++) + ink->ts_buffer[i] = initval; } -static gdouble -dist_smoother_result (GimpInk *ink) +static guint32 +time_smoother_result (GimpInk *ink) { gint i; - gdouble result = 0.0; + guint64 result = 0; - for (i = 0; i < DIST_SMOOTHER_BUFFER; i++) - { - result += ink->dt_buffer[i]; - } + for (i = 0; i < TIME_SMOOTHER_BUFFER; i++) + result += ink->ts_buffer[i]; - return (result / (gdouble) DIST_SMOOTHER_BUFFER); + return (result / (guint64) TIME_SMOOTHER_BUFFER); } static void -dist_smoother_add (GimpInk *ink, - gdouble value) +time_smoother_add (GimpInk *ink, + guint32 value) { - ink->dt_buffer[ink->dt_index] = value; + guint64 long_value = (guint64) value; - if ((++ink->dt_index) == DIST_SMOOTHER_BUFFER) - ink->dt_index = 0; + /* handle wrap-around of time values */ + if (long_value < ink->ts_buffer[ink->ts_index]) + long_value += (guint64) + G_MAXUINT32; + + ink->ts_buffer[ink->ts_index++] = long_value; + + ink->ts_buffer[ink->ts_index++] = value; + + if (ink->ts_index == TIME_SMOOTHER_BUFFER) + ink->ts_index = 0; } + static void -time_smoother_init (GimpInk *ink, - guint32 initval) +dist_smoother_init (GimpInk *ink, + gdouble initval) { gint i; - ink->ts_index = 0; + ink->dt_index = 0; - for (i = 0; i < TIME_SMOOTHER_BUFFER; i++) - { - ink->ts_buffer[i] = initval; - } + for (i = 0; i < DIST_SMOOTHER_BUFFER; i++) + ink->dt_buffer[i] = initval; } static gdouble -time_smoother_result (GimpInk *ink) +dist_smoother_result (GimpInk *ink) { gint i; - guint64 result = 0; + gdouble result = 0.0; - for (i = 0; i < TIME_SMOOTHER_BUFFER; i++) - { - result += ink->ts_buffer[i]; - } + for (i = 0; i < DIST_SMOOTHER_BUFFER; i++) + result += ink->dt_buffer[i]; -#ifdef _MSC_VER - return (gdouble) (gint64) (result / TIME_SMOOTHER_BUFFER); -#else - return (result / TIME_SMOOTHER_BUFFER); -#endif + return (result / (gdouble) DIST_SMOOTHER_BUFFER); } static void -time_smoother_add (GimpInk *ink, - guint32 value) +dist_smoother_add (GimpInk *ink, + gdouble value) { - ink->ts_buffer[ink->ts_index] = value; + ink->dt_buffer[ink->dt_index++] = value; - if ((++ink->ts_index) == TIME_SMOOTHER_BUFFER) - ink->ts_index = 0; + if (ink->dt_index == DIST_SMOOTHER_BUFFER) + ink->dt_index = 0; } diff -uraN gimp-2.2.4/app/pdb/drawable_transform_cmds.c gimp-2.2.5/app/pdb/drawable_transform_cmds.c --- gimp-2.2.4/app/pdb/drawable_transform_cmds.c 2004-11-28 00:51:39.000000000 +0100 +++ gimp-2.2.5/app/pdb/drawable_transform_cmds.c 2005-03-14 11:00:24.000000000 +0100 @@ -1327,7 +1327,7 @@ success = (gimp_item_is_attached (GIMP_ITEM (drawable)) && trans_info[X0] < trans_info[X1] && - trans_info[Y0] < trans_info[X1]); + trans_info[Y0] < trans_info[Y1]); if (success && gimp_drawable_mask_intersect (drawable, &x, &y, &width, &height)) @@ -1480,7 +1480,7 @@ success = (gimp_item_is_attached (GIMP_ITEM (drawable)) && trans_info[X0] < trans_info[X1] && - trans_info[Y0] < trans_info[X1]); + trans_info[Y0] < trans_info[Y1]); if (success && gimp_drawable_mask_intersect (drawable, &x, &y, &width, &height)) diff -uraN gimp-2.2.4/app/pdb/plug_in_cmds.c gimp-2.2.5/app/pdb/plug_in_cmds.c --- gimp-2.2.4/app/pdb/plug_in_cmds.c 2004-11-18 02:57:13.000000000 +0100 +++ gimp-2.2.5/app/pdb/plug_in_cmds.c 2005-04-07 12:54:31.000000000 +0200 @@ -83,6 +83,7 @@ gint32 *time_ints; gchar **realname_strs; GSList *list; + GSList *matched = NULL; gint i = 0; regex_t sregex; @@ -119,10 +120,15 @@ name = proc_def->menu_paths->data; } - if (search_str && match_strings (&sregex, name)) - continue; + name = gimp_strip_uline (name); - num_plugins++; + if (! search_str || ! match_strings (&sregex, name)) + { + num_plugins++; + matched = g_slist_prepend (matched, proc_def); + } + + g_free (name); } } @@ -133,55 +139,35 @@ realname_strs = g_new (gchar *, num_plugins); time_ints = g_new (gint , num_plugins); - for (list = gimp->plug_in_proc_defs; list; list = g_slist_next (list)) + matched = g_slist_reverse (matched); + + for (list = matched; list; list = g_slist_next (list)) { PlugInProcDef *proc_def = list->data; + ProcRecord *proc_rec = &proc_def->db_info; + gchar *name; - if (i > num_plugins) - g_error ("Internal error counting plugins"); - - if (proc_def->prog && proc_def->menu_paths) - { - ProcRecord *pr = &proc_def->db_info; - gchar *name; - - if (proc_def->menu_label) - { - name = proc_def->menu_label; - } - else - { - name = strrchr (proc_def->menu_paths->data, '/'); - - if (name) - name = name + 1; - else - name = proc_def->menu_paths->data; - } - - if (search_str && match_strings (&sregex, name)) - continue; + if (proc_def->menu_label) + name = g_strdup_printf ("%s/%s", + (gchar *) proc_def->menu_paths->data, + proc_def->menu_label); + else + name = g_strdup (proc_def->menu_paths->data); - if (proc_def->menu_label) - name = g_strdup_printf ("%s/%s", - (gchar *) proc_def->menu_paths->data, - proc_def->menu_label); - else - name = g_strdup (proc_def->menu_paths->data); + menu_strs[i] = gimp_strip_uline (name); + accel_strs[i] = NULL; + prog_strs[i] = g_strdup (proc_def->prog); + types_strs[i] = g_strdup (proc_def->image_types); + realname_strs[i] = g_strdup (proc_rec->name); + time_ints[i] = proc_def->mtime; - menu_strs[i] = gimp_strip_uline (name); - accel_strs[i] = NULL; - prog_strs[i] = g_strdup (proc_def->prog); - types_strs[i] = g_strdup (proc_def->image_types); - realname_strs[i] = g_strdup (pr->name); - time_ints[i] = proc_def->mtime; + g_free (name); - g_free (name); - - i++; - } + i++; } + g_slist_free (matched); + if (search_str) regfree (&sregex); diff -uraN gimp-2.2.4/app/pdb/transform_tools_cmds.c gimp-2.2.5/app/pdb/transform_tools_cmds.c --- gimp-2.2.4/app/pdb/transform_tools_cmds.c 2004-11-16 16:25:12.000000000 +0100 +++ gimp-2.2.5/app/pdb/transform_tools_cmds.c 2005-03-14 11:00:24.000000000 +0100 @@ -435,7 +435,7 @@ success = (gimp_item_is_attached (GIMP_ITEM (drawable)) && trans_info[X0] < trans_info[X1] && - trans_info[Y0] < trans_info[X1]); + trans_info[Y0] < trans_info[Y1]); if (success && gimp_drawable_mask_intersect (drawable, &x, &y, &width, &height)) diff -uraN gimp-2.2.4/app/tools/gimpellipseselecttool.c gimp-2.2.5/app/tools/gimpellipseselecttool.c --- gimp-2.2.4/app/tools/gimpellipseselecttool.c 2004-06-05 01:08:28.000000000 +0200 +++ gimp-2.2.5/app/tools/gimpellipseselecttool.c 2005-03-21 11:21:12.000000000 +0100 @@ -136,18 +136,11 @@ gimp_ellipse_select_tool_draw (GimpDrawTool *draw_tool) { GimpRectSelectTool *rect_sel = GIMP_RECT_SELECT_TOOL (draw_tool); - gint ix, iy; - gint iw, ih; - gimp_rect_select_tool_coords_to_integer (draw_tool->gdisp, - rect_sel->x, rect_sel->y, - rect_sel->w, rect_sel->h, - &ix, &iy, - &iw, &ih); gimp_draw_tool_draw_arc (draw_tool, FALSE, - ix, iy, - iw, ih, + rect_sel->x, rect_sel->y, + rect_sel->w, rect_sel->h, 0, 23040, FALSE); } diff -uraN gimp-2.2.4/app/tools/gimppaintoptions-gui.c gimp-2.2.5/app/tools/gimppaintoptions-gui.c --- gimp-2.2.4/app/tools/gimppaintoptions-gui.c 2005-01-18 11:07:01.000000000 +0100 +++ gimp-2.2.5/app/tools/gimppaintoptions-gui.c 2005-03-08 16:47:58.000000000 +0100 @@ -298,7 +298,7 @@ GtkWidget *table; GtkWidget *spinbutton; GtkWidget *button; - GtkWidget *unitmenu; + GtkWidget *menu; if (g_type_is_a (tool_type, GIMP_TYPE_PAINTBRUSH_TOOL) || tool_type == GIMP_TYPE_CLONE_TOOL || @@ -334,12 +334,13 @@ spinbutton, 1, FALSE); /* the fade-out unitmenu */ - unitmenu = gimp_prop_unit_menu_new (config, "fade-unit", "%a"); - gtk_table_attach (GTK_TABLE (table), unitmenu, 2, 3, 0, 1, + menu = gimp_prop_unit_menu_new (config, "fade-unit", "%a"); + gtk_table_attach (GTK_TABLE (table), menu, 2, 3, 0, 1, GTK_SHRINK | GTK_FILL, GTK_SHRINK | GTK_FILL, 0, 0); - gtk_widget_show (unitmenu); + gtk_widget_show (menu); - g_object_set_data (G_OBJECT (unitmenu), "set_digits", spinbutton); + g_object_set_data (G_OBJECT (menu), "set_digits", spinbutton); + gimp_unit_menu_set_pixel_digits (GIMP_UNIT_MENU (menu), 0); } return frame; @@ -356,7 +357,7 @@ GtkWidget *table; GtkWidget *spinbutton; GtkWidget *button; - GtkWidget *unitmenu; + GtkWidget *menu; GtkWidget *combo; if (g_type_is_a (tool_type, GIMP_TYPE_PAINTBRUSH_TOOL)) @@ -404,12 +405,13 @@ spinbutton, 1, FALSE); /* the gradient unitmenu */ - unitmenu = gimp_prop_unit_menu_new (config, "gradient-unit", "%a"); - gtk_table_attach (GTK_TABLE (table), unitmenu, 2, 3, 1, 2, + menu = gimp_prop_unit_menu_new (config, "gradient-unit", "%a"); + gtk_table_attach (GTK_TABLE (table), menu, 2, 3, 1, 2, GTK_SHRINK | GTK_FILL, GTK_SHRINK | GTK_FILL, 0, 0); - gtk_widget_show (unitmenu); + gtk_widget_show (menu); - g_object_set_data (G_OBJECT (unitmenu), "set_digits", spinbutton); + g_object_set_data (G_OBJECT (menu), "set_digits", spinbutton); + gimp_unit_menu_set_pixel_digits (GIMP_UNIT_MENU (menu), 0); /* the repeat type */ combo = gimp_prop_enum_combo_box_new (config, "gradient-repeat", 0, 0); diff -uraN gimp-2.2.4/app/tools/gimprectselecttool.c gimp-2.2.5/app/tools/gimprectselecttool.c --- gimp-2.2.4/app/tools/gimprectselecttool.c 2004-07-26 16:50:51.000000000 +0200 +++ gimp-2.2.5/app/tools/gimprectselecttool.c 2005-03-21 11:21:12.000000000 +0100 @@ -157,8 +157,9 @@ gimp_tool_control_set_tool_cursor (tool->control, GIMP_TOOL_CURSOR_RECT_SELECT); - rect_select->x = rect_select->y = 0.0; - rect_select->w = rect_select->h = 0.0; + rect_select->sx = rect_select->sy = 0; + rect_select->x = rect_select->y = 0; + rect_select->w = rect_select->h = 0; } static void @@ -176,14 +177,15 @@ options = GIMP_SELECTION_OPTIONS (tool->tool_info->tool_options); - rect_sel->x = coords->x; - rect_sel->y = coords->y; - rect_sel->w = 0.0; - rect_sel->h = 0.0; + rect_sel->sx = RINT(coords->x); + rect_sel->sy = RINT(coords->y); + rect_sel->x = 0; + rect_sel->y = 0; + rect_sel->w = 0; + rect_sel->h = 0; + rect_sel->lx = RINT(coords->x); + rect_sel->ly = RINT(coords->y); rect_sel->center = FALSE; - rect_sel->moved = FALSE; - - rect_sel->last_coords = *coords; rect_sel->fixed_mode = options->fixed_mode; rect_sel->fixed_width = options->fixed_width; @@ -247,10 +249,6 @@ GimpDisplay *gdisp) { GimpRectSelectTool *rect_sel = GIMP_RECT_SELECT_TOOL (tool); - gdouble x, y; - gdouble w, h; - gint ix, iy; - gint iw, ih; gimp_tool_pop_status (tool); @@ -260,19 +258,8 @@ /* First take care of the case where the user "cancels" the action */ if (! (state & GDK_BUTTON3_MASK)) - { - x = (rect_sel->w < 0) ? rect_sel->x + rect_sel->w : rect_sel->x; - y = (rect_sel->h < 0) ? rect_sel->y + rect_sel->h : rect_sel->y; - - w = ABS (rect_sel->w); - h = ABS (rect_sel->h); - - gimp_rect_select_tool_coords_to_integer (gdisp, - x, y, w, h, - &ix, &iy, &iw, &ih); - - if ((!rect_sel->moved || !iw || !ih) - && rect_sel->fixed_mode == GIMP_RECT_SELECT_MODE_FREE) + { + if (rect_sel->w == 0 || rect_sel->h == 0) { /* If there is a floating selection, anchor it */ if (gimp_image_floating_sel (gdisp->gimage)) @@ -287,8 +274,9 @@ } gimp_rect_select_tool_rect_select (rect_sel, - ix, iy, iw, ih); - + rect_sel->x, rect_sel->y, + rect_sel->w, rect_sel->h); + /* show selection on all views */ gimp_image_flush (gdisp->gimage); } @@ -303,15 +291,8 @@ { GimpRectSelectTool *rect_sel = GIMP_RECT_SELECT_TOOL (tool); GimpSelectionTool *sel_tool = GIMP_SELECTION_TOOL (tool); - gdouble ox, oy; - gdouble w, h; - gdouble tw, th; + gint mx, my; gdouble ratio; - gint ix, iy; - gint iw, ih; - - if (coords->x != rect_sel->x || coords->y != rect_sel->y) - rect_sel->moved = TRUE; if (sel_tool->op == SELECTION_ANCHOR) { @@ -322,73 +303,49 @@ gimp_draw_tool_pause (GIMP_DRAW_TOOL (tool)); + if (state & GDK_MOD1_MASK) { /* Just move the selection rectangle around */ - - rect_sel->x += coords->x - rect_sel->last_coords.x; - rect_sel->y += coords->y - rect_sel->last_coords.y; + + mx = RINT(coords->x) - rect_sel->lx; + my = RINT(coords->y) - rect_sel->ly; + + rect_sel->sx += mx; + rect_sel->sy += my; + rect_sel->x += mx; + rect_sel->y += my; } else { - /* Change the selection rectangle's size */ - - /* Calculate starting point */ + /* Change the selection rectangle's size, first calculate absolute + * width and height, then take care of quadrants. + */ - if (rect_sel->center) + if (rect_sel->fixed_mode == GIMP_RECT_SELECT_MODE_FIXED_SIZE) { - ox = rect_sel->x + rect_sel->w / 2.0; - oy = rect_sel->y + rect_sel->h / 2.0; + rect_sel->w = RINT(rect_sel->fixed_width); + rect_sel->h = RINT(rect_sel->fixed_height); } else { - ox = rect_sel->x; - oy = rect_sel->y; + rect_sel->w = abs(RINT(coords->x) - rect_sel->sx); + rect_sel->h = abs(RINT(coords->y) - rect_sel->sy); } - - switch (rect_sel->fixed_mode) + + if (rect_sel->fixed_mode == GIMP_RECT_SELECT_MODE_FIXED_RATIO) { - case GIMP_RECT_SELECT_MODE_FIXED_SIZE: - w = ((coords->x - ox) > 0 ? - rect_sel->fixed_width : -rect_sel->fixed_width); - - h = ((coords->y - oy) > 0 ? - rect_sel->fixed_height : -rect_sel->fixed_height); - break; - - case GIMP_RECT_SELECT_MODE_FIXED_RATIO: - ratio = ((gdouble) rect_sel->fixed_height / - (gdouble) rect_sel->fixed_width); - tw = (coords->x - ox); - th = (coords->y - oy); - - /* This is probably an inefficient way to do it, but it gives - * nicer, more predictable results than the original algorithm - */ - if ((abs (th) < (ratio * abs (tw))) && - (abs (tw) > (abs (th) / ratio))) - { - w = tw; - h = (tw * ratio); - /* h should have the sign of th */ - if ((th < 0 && h > 0) || (th > 0 && h < 0)) - h = -h; + ratio = rect_sel->fixed_height / rect_sel->fixed_width; + if ( ( (gdouble) rect_sel->h) / ( (gdouble) rect_sel->w ) > ratio) + { + rect_sel->w = RINT(rect_sel->h / ratio); } else { - h = th; - w = (th / ratio); - /* w should have the sign of tw */ - if ((tw < 0 && w > 0) || (tw > 0 && w < 0)) - w = -w; - } - break; - - default: - w = (coords->x - ox); - h = (coords->y - oy); - break; + rect_sel->h = RINT(rect_sel->w * ratio); + } } + /* If the shift key is down, then make the rectangle square (or * ellipse circular) @@ -396,79 +353,68 @@ if ((state & GDK_SHIFT_MASK) && rect_sel->fixed_mode == GIMP_RECT_SELECT_MODE_FREE) { - gint s = MAX (abs (w), abs (h)); - - if (w < 0) - w = -s; - else - w = s; - - if (h < 0) - h = -s; + if (rect_sel->w > rect_sel->h) + { + rect_sel->h = rect_sel->w; + } else - h = s; + { + rect_sel->w = rect_sel->h; + } } - /* If the control key is down, create the selection from the center out - */ if (state & GDK_CONTROL_MASK) { - rect_sel->center = TRUE; - - switch (rect_sel->fixed_mode) + /* If the control key is down, create the selection from the center out */ + if (rect_sel->fixed_mode == GIMP_RECT_SELECT_MODE_FIXED_SIZE) { - case GIMP_RECT_SELECT_MODE_FIXED_SIZE: - rect_sel->x = ox - w / 2.0; - rect_sel->y = oy - h / 2.0; - rect_sel->w = w; - rect_sel->h = h; - break; - - case GIMP_RECT_SELECT_MODE_FIXED_RATIO: - rect_sel->x = ox - w; - rect_sel->y = oy - h; - rect_sel->w = w * 2.0; - rect_sel->h = h * 2.0; - break; - - default: - w = abs (w); - h = abs (h); - - rect_sel->x = ox - w; - rect_sel->y = oy - h; - rect_sel->w = 2.0 * w; - rect_sel->h = 2.0 * h; - break; + /* Fixed size selection is simply centered over start point */ + rect_sel->x = RINT(rect_sel->sx - rect_sel->w / 2.0); + rect_sel->y = RINT(rect_sel->sy - rect_sel->h / 2.0); + } + else + { + /* Non-fixed size is mirrored over starting point */ + rect_sel->x = rect_sel->sx - rect_sel->w; + rect_sel->y = rect_sel->sy - rect_sel->h; + rect_sel->w = rect_sel->w * 2; + rect_sel->h = rect_sel->h * 2; } } else { - rect_sel->center = FALSE; - - rect_sel->x = ox; - rect_sel->y = oy; - rect_sel->w = w; - rect_sel->h = h; + /* Make (rect->x, rect->y) upper left hand point of selection */ + if (coords->x > rect_sel->sx) + { + rect_sel->x = rect_sel->sx; + } + else + { + rect_sel->x = rect_sel->sx - rect_sel->w; + } + if (coords->y > rect_sel->sy) + { + rect_sel->y = rect_sel->sy; + } + else + { + rect_sel->y = rect_sel->sy - rect_sel->h; + } } } - rect_sel->last_coords = *coords; - + rect_sel->lx = RINT(coords->x); + rect_sel->ly = RINT(coords->y); + gimp_rect_select_tool_update_options (rect_sel, gdisp); gimp_tool_pop_status (tool); - gimp_rect_select_tool_coords_to_integer (gdisp, - rect_sel->x, rect_sel->y, - rect_sel->w, rect_sel->h, - &ix, &iy, - &iw, &ih); gimp_tool_push_status_coords (tool, _("Selection: "), - iw, + rect_sel->w, " x ", - ih); + rect_sel->h); gimp_draw_tool_resume (GIMP_DRAW_TOOL (tool)); } @@ -477,17 +423,11 @@ gimp_rect_select_tool_draw (GimpDrawTool *draw_tool) { GimpRectSelectTool *rect_sel = GIMP_RECT_SELECT_TOOL (draw_tool); - gint ix, iy; - gint iw, ih; - gimp_rect_select_tool_coords_to_integer (draw_tool->gdisp, - rect_sel->x, rect_sel->y, - rect_sel->w, rect_sel->h, - &ix, &iy, - &iw, &ih); gimp_draw_tool_draw_rectangle (draw_tool, FALSE, - ix, iy, iw, ih, + rect_sel->x, rect_sel->y, + rect_sel->w, rect_sel->h, FALSE); } @@ -598,17 +538,17 @@ if (shell->unit == GIMP_UNIT_PIXEL) { - width = fabs (rect_sel->w); - height = fabs (rect_sel->h); + width = rect_sel->w; + height = rect_sel->h; } else { GimpImage *image = gdisp->gimage; - width = (fabs (rect_sel->w) * + width = (rect_sel->w * _gimp_unit_get_factor (image->gimp, shell->unit) / image->xresolution); - height = (fabs (rect_sel->h) * + height = (rect_sel->h * _gimp_unit_get_factor (image->gimp, shell->unit) / image->yresolution); } @@ -619,25 +559,3 @@ "fixed-unit", shell->unit, NULL); } - -void -gimp_rect_select_tool_coords_to_integer (GimpDisplay *gdisp, - gdouble x, - gdouble y, - gdouble w, - gdouble h, - gint *ix, - gint *iy, - gint *iw, - gint *ih) -{ - x = MIN (x, x + w); - y = MIN (y, y + h); - w = ABS (w); - h = ABS (h); - - *ix = RINT (x); - *iy = RINT (y); - *iw = RINT (w + (x - *ix)); - *ih = RINT (h + (y - *iy)); -} diff -uraN gimp-2.2.4/app/tools/gimprectselecttool.h gimp-2.2.5/app/tools/gimprectselecttool.h --- gimp-2.2.4/app/tools/gimprectselecttool.h 2004-04-05 10:08:23.000000000 +0200 +++ gimp-2.2.5/app/tools/gimprectselecttool.h 2005-03-21 11:21:12.000000000 +0100 @@ -38,14 +38,13 @@ { GimpSelectionTool parent_instance; - gdouble x, y; /* upper left hand coordinate */ - gdouble w, h; /* width and height */ + gint sx, sy; /* start coordinate where the button is + * first pressed */ + gint x, y; /* upper left coordinate of selection */ + gint w, h; /* width, height of selection always >=0 */ + gint lx, ly; /* last coordinate of mouse cursor */ gboolean center; /* is the selection being created from the * center out? */ - gboolean moved; /* ever moved since button press? */ - - GimpCoords last_coords; /* last button_press/motion coords */ - GimpRectSelectMode fixed_mode; gdouble fixed_width; gdouble fixed_height; @@ -76,14 +75,4 @@ gint w, gint h); -void gimp_rect_select_tool_coords_to_integer (GimpDisplay *display, - gdouble x, - gdouble y, - gdouble w, - gdouble h, - gint *ix, - gint *iy, - gint *iw, - gint *ih); - #endif /* __GIMP_RECT_SELECT_TOOL_H__ */ diff -uraN gimp-2.2.4/app/tools/gimpselectionoptions.c gimp-2.2.5/app/tools/gimpselectionoptions.c --- gimp-2.2.4/app/tools/gimpselectionoptions.c 2004-11-23 18:01:51.000000000 +0100 +++ gimp-2.2.5/app/tools/gimpselectionoptions.c 2005-03-08 16:47:58.000000000 +0100 @@ -545,6 +545,7 @@ g_object_set_data (G_OBJECT (menu), "set_digits", width_spinbutton); g_object_set_data (G_OBJECT (width_spinbutton), "set_digits", height_spinbutton); + gimp_unit_menu_set_pixel_digits (GIMP_UNIT_MENU (menu), 0); gtk_widget_show (table); } diff -uraN gimp-2.2.4/app/tools/gimp-tools.c gimp-2.2.5/app/tools/gimp-tools.c --- gimp-2.2.4/app/tools/gimp-tools.c 2004-10-06 19:21:22.000000000 +0200 +++ gimp-2.2.5/app/tools/gimp-tools.c 2005-04-09 21:46:15.000000000 +0200 @@ -25,6 +25,7 @@ #include "tools-types.h" #include "config/gimpconfig.h" +#include "config/gimpconfig-utils.h" #include "core/gimp.h" #include "core/gimplist.h" @@ -455,6 +456,11 @@ paint_core_name, stock_id); + if (tool_type == GIMP_TYPE_TEXT_TOOL) + gimp_config_connect (G_OBJECT (tool_info->tool_options), + G_OBJECT (gimp_get_user_context (gimp)), + "font"); + if (g_type_is_a (tool_type, GIMP_TYPE_IMAGE_MAP_TOOL)) g_object_set (tool_info, "visible", FALSE, NULL); diff -uraN gimp-2.2.4/app/tools/gimpvectortool.c gimp-2.2.5/app/tools/gimpvectortool.c --- gimp-2.2.4/app/tools/gimpvectortool.c 2004-10-25 15:29:32.000000000 +0200 +++ gimp-2.2.5/app/tools/gimpvectortool.c 2005-03-30 16:15:30.000000000 +0200 @@ -305,7 +305,7 @@ vector_tool->undo_motion = FALSE; - /* Save the current modifier state */ + /* save the current modifier state */ vector_tool->saved_state = state; @@ -397,7 +397,7 @@ } - /* Insertion of an anchor in a curve segment */ + /* insertion of an anchor in a curve segment */ if (vector_tool->function == VECTORS_INSERT_ANCHOR) { @@ -1214,8 +1214,11 @@ new_status = _("Click-Drag to move the handle around. (try SHIFT)"); break; case VECTORS_MOVE_CURVE: - new_status = _("Click-Drag to change the shape of the curve. " - "(SHIFT: symmetrical)"); + if (GIMP_VECTOR_OPTIONS (tool->tool_info->tool_options)->polygonal) + new_status = _("Click-Drag to move the anchors around."); + else + new_status = _("Click-Drag to change the shape of the curve. " + "(SHIFT: symmetrical)"); break; case VECTORS_MOVE_STROKE: new_status = _("Click-Drag to move the component around. " @@ -1296,24 +1299,29 @@ cursor = GDK_HAND2; tool_cursor = GIMP_TOOL_CURSOR_HAND; break; + case VECTORS_CREATE_VECTOR: case VECTORS_CREATE_STROKE: cmodifier = GIMP_CURSOR_MODIFIER_CONTROL; break; + case VECTORS_ADD_ANCHOR: case VECTORS_INSERT_ANCHOR: cmodifier = GIMP_CURSOR_MODIFIER_PLUS; break; + case VECTORS_DELETE_ANCHOR: case VECTORS_DELETE_SEGMENT: cmodifier = GIMP_CURSOR_MODIFIER_MINUS; break; + case VECTORS_MOVE_HANDLE: case VECTORS_CONVERT_EDGE: cursor = GDK_HAND2; tool_cursor = GIMP_TOOL_CURSOR_HAND; cmodifier = GIMP_CURSOR_MODIFIER_CONTROL; break; + case VECTORS_MOVE_ANCHOR: case VECTORS_MOVE_CURVE: case VECTORS_MOVE_STROKE: @@ -1321,9 +1329,11 @@ case VECTORS_MOVE_ANCHORSET: cmodifier = GIMP_CURSOR_MODIFIER_MOVE; break; + case VECTORS_CONNECT_STROKES: cmodifier = GIMP_CURSOR_MODIFIER_INTERSECT; break; + default: cursor = GIMP_CURSOR_BAD; break; diff -uraN gimp-2.2.4/app/widgets/gimpclipboard.c gimp-2.2.5/app/widgets/gimpclipboard.c --- gimp-2.2.4/app/widgets/gimpclipboard.c 2004-10-29 23:54:32.000000000 +0200 +++ gimp-2.2.5/app/widgets/gimpclipboard.c 2005-04-04 12:19:36.000000000 +0200 @@ -487,6 +487,15 @@ gchar *b_name = gdk_pixbuf_format_get_name (b); gint retval = 0; +#ifdef GDK_WINDOWING_WIN32 + /* move BMP to the front of the list */ + if (strcmp (a_name, "bmp") == 0) + retval = -1; + else if (strcmp (b_name, "bmp") == 0) + retval = 1; + else +#endif + /* move PNG to the front of the list */ if (strcmp (a_name, "png") == 0) retval = -1; diff -uraN gimp-2.2.4/app/widgets/gimpcolorframe.c gimp-2.2.5/app/widgets/gimpcolorframe.c --- gimp-2.2.4/app/widgets/gimpcolorframe.c 2004-09-26 21:15:51.000000000 +0200 +++ gimp-2.2.5/app/widgets/gimpcolorframe.c 2005-04-07 12:54:31.000000000 +0200 @@ -342,5 +342,7 @@ gtk_label_set_text (GTK_LABEL (frame->name_labels[i]), " "); gtk_label_set_text (GTK_LABEL (frame->value_labels[i]), " "); } + + g_free (values[i]); } } diff -uraN gimp-2.2.4/app/widgets/gimpcontainertreeview.c gimp-2.2.5/app/widgets/gimpcontainertreeview.c --- gimp-2.2.4/app/widgets/gimpcontainertreeview.c 2005-01-11 12:27:25.000000000 +0100 +++ gimp-2.2.5/app/widgets/gimpcontainertreeview.c 2005-03-22 10:41:55.000000000 +0100 @@ -226,9 +226,9 @@ tree_view->view = g_object_new (GTK_TYPE_TREE_VIEW, "model", list, - "search_column", COLUMN_NAME, - "enable_search", TRUE, - "headers_visible", FALSE, + "search-column", COLUMN_NAME, + "enable-search", FALSE, + "headers-visible", FALSE, NULL); g_object_unref (list); diff -uraN gimp-2.2.4/app/widgets/gimphistogrameditor.c gimp-2.2.5/app/widgets/gimphistogrameditor.c --- gimp-2.2.4/app/widgets/gimphistogrameditor.c 2004-12-11 00:07:21.000000000 +0100 +++ gimp-2.2.5/app/widgets/gimphistogrameditor.c 2005-03-24 13:56:15.000000000 +0100 @@ -397,20 +397,11 @@ } static gboolean -gimp_histogram_editor_item_visible (GtkTreeModel *model, - GtkTreeIter *iter, - gpointer data) +gimp_histogram_editor_channel_valid (GimpHistogramEditor *editor, + GimpHistogramChannel channel) { - GimpHistogramEditor *editor = GIMP_HISTOGRAM_EDITOR (data); - if (editor->drawable) { - GimpHistogramChannel channel; - - gtk_tree_model_get (model, iter, - GIMP_INT_STORE_VALUE, &channel, - -1); - switch (channel) { case GIMP_HISTOGRAM_VALUE: @@ -425,22 +416,39 @@ case GIMP_HISTOGRAM_ALPHA: return gimp_drawable_has_alpha (editor->drawable); } - - return FALSE; - } - else - { - /* allow all channels, the menu is insensitive anyway */ - return TRUE; } + + return TRUE; +} + +static gboolean +gimp_histogram_editor_item_visible (GtkTreeModel *model, + GtkTreeIter *iter, + gpointer data) +{ + GimpHistogramEditor *editor = GIMP_HISTOGRAM_EDITOR (data); + GimpHistogramChannel channel; + + gtk_tree_model_get (model, iter, + GIMP_INT_STORE_VALUE, &channel, + -1); + + return gimp_histogram_editor_channel_valid (editor, channel); } static void gimp_histogram_editor_menu_update (GimpHistogramEditor *editor) { - GtkTreeModel *model = gtk_combo_box_get_model (GTK_COMBO_BOX (editor->menu)); + GimpHistogramView *view = GIMP_HISTOGRAM_BOX (editor->box)->view; + GtkTreeModel *model; + model = gtk_combo_box_get_model (GTK_COMBO_BOX (editor->menu)); gtk_tree_model_filter_refilter (GTK_TREE_MODEL_FILTER (model)); + + if (! gimp_histogram_editor_channel_valid (editor, view->channel)) + { + gimp_histogram_view_set_channel (view, GIMP_HISTOGRAM_VALUE); + } } static void diff -uraN gimp-2.2.4/app/widgets/gimpmessagebox.c gimp-2.2.5/app/widgets/gimpmessagebox.c --- gimp-2.2.4/app/widgets/gimpmessagebox.c 2004-12-27 20:42:16.000000000 +0100 +++ gimp-2.2.5/app/widgets/gimpmessagebox.c 2005-04-07 12:54:31.000000000 +0200 @@ -356,12 +356,13 @@ if (format) { - gchar *text = gimp_any_to_utf8 (g_strdup_vprintf (format, args), -1, - "Cannot convert text to utf8."); + gchar *text = g_strdup_vprintf (format, args); + gchar *utf8 = gimp_any_to_utf8 (text, -1, "Cannot convert text to utf8."); - gtk_label_set_text (GTK_LABEL (label), text); + gtk_label_set_text (GTK_LABEL (label), utf8); gtk_widget_show (label); + g_free (utf8); g_free (text); } else diff -uraN gimp-2.2.4/ChangeLog gimp-2.2.5/ChangeLog --- gimp-2.2.4/ChangeLog 2005-02-22 23:03:26.000000000 +0100 +++ gimp-2.2.5/ChangeLog 2005-04-09 21:46:14.000000000 +0200 @@ -1,3 +1,398 @@ +2005-04-09 Sven Neumann + + Merged from HEAD branch: + + * plug-ins/print/print.c: quote the shell command passed to execl(). + Fixes bug #169909. + +2005-04-09 Michael Natterer + + * app/tools/gimp-tools.c (gimp_tools_register): manually hardwire + the global font and the text option's font together. Makes the + globally selected font persistant and fixes bug #171024. + +2005-04-09 Sven Neumann + + * app/paint/gimpink.c: merged changes to the time-smoother code + from the HEAD branch. Fixes bug #164272. + +2005-04-09 Manish Singh + + * plug-ins/common/gifload.c (GetCode): GetDataBlock returns -1 on + error, so count should be an int, not an unsigned char. Fixes + bug #173119. + +2005-04-09 Sven Neumann + + Merged from HEAD branch: + + * plug-ins/winicon/icosave.c: implement color counting without + changing the image-type to RGB. A save plug-in must not change the + image. + +2005-04-08 Sven Neumann + + Merged from HEAD branch: + + * plug-ins/winicon/icodialog.c: rewrote preview code to use + GtkImage and pixbufs. The previous implementation was severily + broken. + +2005-04-08 Sven Neumann + + Merged from HEAD branch: + + * plug-ins/common/gauss.c: fixed preview for zero blur radii + (bug #173039). + +2005-04-07 Sven Neumann + + Merged from HEAD branch: + + * docs/gimp.1.in: fixed typos and improved explanation of parasiterc. + +2005-04-07 Sven Neumann + + Merged from HEAD branch: + + * app/widgets/gimpcolorframe.c (gimp_color_frame_update) + * app/widgets/gimpmessagebox.c: plugged small memleaks. + + * libgimpwidgets/gimpcontroller.c: added a finalizer and free the + allocated strings. + +2005-04-05 Michael Natterer + + Merged from HEAD branch: + + * tools/pdbgen/pdb/plug_in.pdb (plugins_query): strip the menu + strings from underlines before matching. Fixed function to not + match all procedures twice. + + * app/pdb/plug_in_cmds.c: regenerated. + +2005-04-05 Sven Neumann + + Merged from HEAD branch: + + * app/core/core-enums.[ch] + * app/core/gimpimage.c + (gimp_image_remove_layer, gimp_image_remove_channel): handle a + floating selection attached to the layer or channel that is being + removed. Fixes bug #168582. + +2005-04-05 Sven Neumann + + Merged from HEAD branch: + + * configure.in: select localedir according to the format of the + gettext message catalogs. Closes bug #169274 again. + +2005-04-04 Sven Neumann + + Merged from HEAD branch: + + * app/core/gimpdata.c (gimp_data_create_filename): return early if + called for an internal data object. Fixes bug #172581. + +2005-04-04 Sven Neumann + + Merged from HEAD branch: + + * plug-ins/common/deinterlace.c (deinterlace): fixed boundary + conditions that led to incorrect preview (bug #172589). + +2005-04-04 Tor Lillqvist + + * app/widgets/gimpclipboard.c (gimp_clipboard_format_compare): On + Win32, move the "bmp" format to the front. Means less conversion + in most cases, as other apps on Win32 typically provide/want the + BMP format on the Clipboard. (Actually CF_DIB, but that's the + same, just without the BMP file header.) See also bug #168173. + +2005-04-04 Sven Neumann + + Merged from HEAD branch: + + * plug-ins/FractalExplorer/FractalExplorer.c: fixed typo that + caused a crash when deleting a fractal from the list (bug #172347). + +2005-04-01 Sven Neumann + + Merged from HEAD branch: + + * plug-ins/rcm/rcm_dialog.c: keep the previews from expanding. Fixes + bug #172284. + +2005-03-30 Sven Neumann + + * libgimpwidgets/gimpwidgets.c (gimp_label_set_attributes): fixed + copy-n-paste bug that affected PANGO_ATTR_SIZE. + +2005-03-30 Sven Neumann + + Merged from HEAD branch: + + * app/tools/gimpvectortool.c (gimp_vector_tool_status_update): + set a different help message in polygonal mode. Fixes bug #172051. + +2005-03-28 Sven Neumann + + Merged from HEAD branch: + + * app/dialogs/resize-dialog.c (resize_dialog_new): handle + gimp_viewable_get_pixbuf() returning NULL. Fixes bug #171827. + +2005-03-25 Sven Neumann + + Merged from HEAD branch: + + * plug-ins/bmp/bmpread.c: applied patch from David Costanzo that + initializes unspecified pixels in RLE bitmaps. Fixes bug #171562. + +2005-03-24 Sven Neumann + + Merged from HEAD branch: + + * plug-ins/bmp/bmp.h (Bitmap_Head_Struct) + * plug-ins/bmp/bmpread.c: use a signed long for width and height + and check that width is > 0 (negative height is allowed and + handled by our code). Fixes bug #171453. + +2005-03-24 Sven Neumann + + Merged from HEAD branch: + + * plug-ins/bmp/bmpread.c: applied a patch from David Costanzo that + fixes handling of odd-length pixel encodings in "absolute mode" of + RLE4 compressed data (bug #171306). + +2005-03-24 Sven Neumann + + Merged from HEAD branch: + + * app/display/gimpstatusbar.c (gimp_statusbar_push_coords) + (gimp_statusbar_set_cursor): use RINT() instead of ROUND() to get + proper rounding of negative values. Fixes bug #171497. + +2005-03-24 Sven Neumann + + * app/widgets/gimphistogrameditor.c: change to the Value channel + if the current channel becomes invalid due to an image mode change. + Fixes bug #170116. + +2005-03-22 Sven Neumann + + Merged from HEAD branch: + + * plug-ins/common/colortoalpha.c: unset "Keep transparency", it is + not what the user wants if this plug-in is being used. + +2005-03-21 Sven Neumann + + Merged from HEAD branch: + + * app/actions/dialogs-actions.h: bail out if + widgets/gimpactiongroup.h has not been included beforehand. + + * app/actions/actions.c: include widgets/gimpactiongroup.h. Fixes + build with amd64/gcc-4.0 (Debian bug report #300227). + +2005-03-21 Sven Neumann + + Merged from HEAD branch: + + * etc/controllerrc: fixed defaults for mouse wheel controller (bug + #171083, fix spotted by Michael Schumacher). + +2005-03-21 Sven Neumann + + Merged from HEAD branch: + + * app/widgets/gimpcontainertreeview.c + (gimp_container_tree_view_constructor): disable search for tree + views so that treeview typeahead doesn't collide with global + accelerators. Fixes bug #169339 and would suck less if bug #170435 + was fixed. + +2005-03-21 Sven Neumann + + Merged from HEAD branch: + + * plug-ins/winicon/icosave.c (ico_create_palette): fixed parameter + check, NULL is valid for an empty palette. Fixes bug #170812. + +2005-03-21 Sven Neumann + + Merged from HEAD branch: + + * app/dialogs/convert-dialog.c (convert_dialog_palette_filter): don't + show empty palettes. Fixes bug #170973. + +2005-03-20 Bill Skaggs + + Merged from HEAD branch: + + * libgimpwidgets/gimpcolorscales.c (gimp_color_scales_update_scales): + Block callback when updating hex entry, fixes bug #169882. + +2005-03-20 Bill Skaggs + + * app/core/gimpimage-convert.c: applied patch from Adam + Moss converning gray->indexed conversion, + fixes bug #170825. + +2005-03-18 Bill Skaggs + + Merged from HEAD branch: + + * app/core/gimpimage-convert.c: when converting grayscale + to mono, treat the palette as gray rather than rgb, giving + more than tenfold speedup. Fixes bug #170801. + +2005-03-18 Sven Neumann + + Merged from HEAD branch: + + * app/tools/gimpellipseselecttool.c + * app/tools/gimprectselecttool.[ch]: applied a patch by Nils + Bjorklund that should fix bug #143887 (selection rectangle "moves" + when starting at the top-right corner). + +2005-03-14 Manish Singh + + * libgimpwidgets/gimpwidgets-private.c (gimp_widgets_init): disable + "gtk-alternative-button-order" here, so the plug-ins get it unset + too. Completely fixes bug #170543. + + * app/gui/gui.c (gui_int): removed now redundant code. + +2005-03-16 Sven Neumann + + * app/gui/gui.c (gui_init): disable "gtk-alternative-button-order" + since we don't provide an alternative button order in this branch. + Fixes bug #170543. + +2005-03-14 Manish Singh + + * app/display/gimpstatusbar.c: Make sure "focus-on-click" property + exists before setting it on comboboxes (it didn't exist in GTK+ 2.4, + where the behavior was what we wanted anyway). + +2005-03-13 Sven Neumann + + Merged from HEAD branch: + + * app/dialogs/print-size-dialog.c (print_size_dialog_response): + handle the resolution unit correctly, fixes bug #170200. + +2005-03-13 Michael Natterer + + Merged from HEAD branch: + + * tools/pdbgen/pdb/drawable_transform.pdb + (drawable_transform_scale) + (drawable_transform_scale_default): applied fix from Theodor de + Ment which fixes a wrong precondition check which made certain + scale operations impossible. Fixes bug #170195. + + * tools/pdbgen/pdb/transform_tools.pdb (scale): fixed the same + copy & paste bug here. + + * app/pdb/drawable_transform_cmds.c + * app/pdb/transform_tools_cmds.c: regenerated. + +2005-03-10 Manish Singh + + * plug-ins/common/url.c: force the server-response wget option off + so it doesn't screw up our parsing. + +2005-03-08 Sven Neumann + + Merged from HEAD branch: + + * app/file/file-open.c (file_open_layer): open images interactively. + Fixes bug #168936. + +2005-03-08 Sven Neumann + + Merged from HEAD branch: + + * app/tools/gimppaintoptions-gui.c (fade_options_gui) + (gradient_options_gui) + * app/tools/gimpselectionoptions.c (gimp_selection_options_gui): + call gimp_unit_menu_set_pixel_digits() after connecting up the + spinbuttons and the unitmenu. Fixes initial display (bug #169066). + +2005-03-06 Bill Skaggs + + * app/display/gimpdisplayshell-callbacks.c: applied patch from + Robert Ögren to improve autoscrolling with tablets in Windows, + see bug #167960. + +2005-03-05 Sven Neumann + + Fix for bug #169274, merged from HEAD: + + * configure.in: updated definition of localedir. + + * po-libgimp/Makefile.in.in + * po-plug-ins/Makefile.in.in + * po-script-fu/Makefile.in.in: synchronized with po/Makefile.in.in. + +2005-03-05 Manish Singh + + * plug-ins/pygimp/*: Update or add missing copyright and GPL comments. + +2005-03-04 Sven Neumann + + Merged from HEAD: + + * plug-ins/script-fu/script-fu-scripts.c (script_fu_find_scripts): + need to convert script-fu-path to filesystem encoding. Should fix + bug #165002. + +2005-03-02 Sven Neumann + + Merged from HEAD: + + * app/dialogs/resize-dialog.c (resize_dialog_reset) + * app/dialogs/scale-dialog.c (scale_dialog_reset): don't rely on + GObject internals about the order in which properties are being + set. Fixes one aspect of bug #169011. + +2005-03-01 Jay Cox + + * plug-ins/common/psd.c: Back port fix for loading layer masks. + Fixes bug #166976. + + * plug-ins/common/psd_save.c: Back port fix for file corruption + bug. Includes fix for excessive memory usage. Fixes bug #167139 + and bug #121871. + +2005-02-24 Manish Singh + + * plug-ins/common/url.c: Handle HTTP 302 Redirect output from wget + properly. Also give a little more informative display for unspecified + sizes. Fixes bug #168322. + +2005-02-23 Michael Natterer + + Merged from HEAD: + + * libgimpwidgets/gimpbutton.c (gimp_button_button_press): don't + reset button->press_state on double clicks because + GDK_2BUTTON_PRESS always arrive immediately after + GDK_BUTTON_PRESS, so resetting the state causes the second click + of a double click to be always interpreted as "clicked", not + "extended-clicked", breaking e.g. adding of multiple layers by + shift-clicking the layers dialog's "new" button. Phew, too much + text for a one-liner bug fix, blah... Spotted by Jimmac. + +2005-02-23 Sven Neumann + + * configure.in: bumped version to 2.2.5, interface_age 5. + 2005-02-22 Sven Neumann * Made 2.2.4 release. diff -uraN gimp-2.2.4/config.guess gimp-2.2.5/config.guess --- gimp-2.2.4/config.guess 2004-12-24 03:40:32.000000000 +0100 +++ gimp-2.2.5/config.guess 2005-04-02 13:15:18.000000000 +0200 @@ -1,9 +1,9 @@ #! /bin/sh # Attempt to guess a canonical system name. # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, -# 2000, 2001, 2002, 2003, 2004 Free Software Foundation, Inc. +# 2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc. -timestamp='2004-11-12' +timestamp='2005-03-24' # 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 @@ -53,7 +53,7 @@ GNU config.guess ($timestamp) Originally written by Per Bothner. -Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004 +Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO @@ -804,6 +804,9 @@ i*:UWIN*:*) echo ${UNAME_MACHINE}-pc-uwin exit 0 ;; + amd64:CYGWIN*:*:*) + echo x86_64-unknown-cygwin + exit 0 ;; p*:CYGWIN*:*) echo powerpcle-unknown-cygwin exit 0 ;; @@ -1197,6 +1200,9 @@ *:QNX:*:4*) echo i386-pc-qnx exit 0 ;; + NSE-?:NONSTOP_KERNEL:*:*) + echo nse-tandem-nsk${UNAME_RELEASE} + exit 0 ;; NSR-?:NONSTOP_KERNEL:*:*) echo nsr-tandem-nsk${UNAME_RELEASE} exit 0 ;; @@ -1413,7 +1419,9 @@ the operating system you are using. It is advised that you download the most up to date version of the config scripts from - ftp://ftp.gnu.org/pub/gnu/config/ + http://savannah.gnu.org/cgi-bin/viewcvs/*checkout*/config/config/config.guess +and + http://savannah.gnu.org/cgi-bin/viewcvs/*checkout*/config/config/config.sub If the version you run ($0) is already up to date, please send the following data and any information you think might be diff -uraN gimp-2.2.4/config.sub gimp-2.2.5/config.sub --- gimp-2.2.4/config.sub 2004-12-24 03:40:32.000000000 +0100 +++ gimp-2.2.5/config.sub 2005-04-02 13:15:18.000000000 +0200 @@ -1,9 +1,9 @@ #! /bin/sh # Configuration validation subroutine script. # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, -# 2000, 2001, 2002, 2003, 2004 Free Software Foundation, Inc. +# 2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc. -timestamp='2004-11-30' +timestamp='2005-02-10' # This file is (in principle) common to ALL GNU software. # The presence of a machine in this file suggests that SOME GNU software @@ -70,7 +70,7 @@ version="\ GNU config.sub ($timestamp) -Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004 +Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO @@ -237,7 +237,7 @@ | h8300 | h8500 | hppa | hppa1.[01] | hppa2.0 | hppa2.0[nw] | hppa64 \ | i370 | i860 | i960 | ia64 \ | ip2k | iq2000 \ - | m32r | m32rle | m68000 | m68k | m88k | mcore \ + | m32r | m32rle | m68000 | m68k | m88k | maxq | mcore \ | mips | mipsbe | mipseb | mipsel | mipsle \ | mips16 \ | mips64 | mips64el \ @@ -310,7 +310,7 @@ | ip2k-* | iq2000-* \ | m32r-* | m32rle-* \ | m68000-* | m680[012346]0-* | m68360-* | m683?2-* | m68k-* \ - | m88110-* | m88k-* | mcore-* \ + | m88110-* | m88k-* | maxq-* | mcore-* \ | mips-* | mipsbe-* | mipseb-* | mipsel-* | mipsle-* \ | mips16-* \ | mips64-* | mips64el-* \ diff -uraN gimp-2.2.4/configure gimp-2.2.5/configure --- gimp-2.2.4/configure 2005-02-22 23:11:23.000000000 +0100 +++ gimp-2.2.5/configure 2005-04-05 10:55:05.000000000 +0200 @@ -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.4. +# Generated by GNU Autoconf 2.59 for GIMP 2.2.5. # # Report bugs to . # @@ -423,8 +423,8 @@ # Identity of this package. PACKAGE_NAME='GIMP' PACKAGE_TARNAME='gimp' -PACKAGE_VERSION='2.2.4' -PACKAGE_STRING='GIMP 2.2.4' +PACKAGE_VERSION='2.2.5' +PACKAGE_STRING='GIMP 2.2.5' 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.4 to adapt to many kinds of systems. +\`configure' configures GIMP 2.2.5 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.4:";; + short | recursive ) echo "Configuration of GIMP 2.2.5:";; esac cat <<\_ACEOF @@ -1203,7 +1203,7 @@ test -n "$ac_init_help" && exit 0 if $ac_init_version; then cat <<\_ACEOF -GIMP configure 2.2.4 +GIMP configure 2.2.5 generated by GNU Autoconf 2.59 Copyright (C) 2003 Free Software Foundation, Inc. @@ -1217,7 +1217,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.4, which was +It was created by GIMP $as_me 2.2.5, which was generated by GNU Autoconf 2.59. Invocation command line was $ $0 $@ @@ -1831,7 +1831,7 @@ # Define the identity of the package. PACKAGE='gimp' - VERSION='2.2.4' + VERSION='2.2.5' # Some tools Automake needs. @@ -1953,11 +1953,11 @@ GIMP_MAJOR_VERSION=2 GIMP_MINOR_VERSION=2 -GIMP_MICRO_VERSION=4 -GIMP_INTERFACE_AGE=4 -GIMP_BINARY_AGE=204 -GIMP_VERSION=2.2.4 -GIMP_REAL_VERSION=2.2.4 +GIMP_MICRO_VERSION=5 +GIMP_INTERFACE_AGE=5 +GIMP_BINARY_AGE=205 +GIMP_VERSION=2.2.5 +GIMP_REAL_VERSION=2.2.5 GIMP_API_VERSION=2.0 GIMP_APP_VERSION=2.2 GIMP_PLUGIN_VERSION=2.0 @@ -2009,7 +2009,7 @@ -LT_VERSION_INFO="200:4:200" +LT_VERSION_INFO="200:5:200" LT_CURRENT_MINUS_AGE=0 @@ -33869,13 +33869,21 @@ gimpplugindir="$libdir/$PACKAGE/2.0" gimpsysconfdir="$sysconfdir/$PACKAGE/2.0" -localedir='${prefix}/${DATADIRNAME}/locale' +# GNU format message catalogs go into $datadir/locale, +# standard location is $libdir/locale. DATADIRNAME set accordingly. + +localedir="$datadir/locale" +if test "$DATADIRNAME" = "lib"; then + localedir="$libdir/locale" +fi + + ############################ @@ -34514,7 +34522,7 @@ } >&5 cat >&5 <<_CSEOF -This file was extended by GIMP $as_me 2.2.4, which was +This file was extended by GIMP $as_me 2.2.5, which was generated by GNU Autoconf 2.59. Invocation command line was CONFIG_FILES = $CONFIG_FILES @@ -34577,7 +34585,7 @@ cat >>$CONFIG_STATUS <<_ACEOF ac_cs_version="\\ -GIMP config.status 2.2.4 +GIMP config.status 2.2.5 configured by $0, generated by GNU Autoconf 2.59, with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\" @@ -34685,8 +34693,8 @@ gimp_major_ver=2 gimp_minor_ver=2 - gimp_micro_ver=4 - gimp_ver=2.2.4 + gimp_micro_ver=5 + gimp_ver=2.2.5 gimp_api_ver=2.0 diff -uraN gimp-2.2.4/configure.in gimp-2.2.5/configure.in --- gimp-2.2.4/configure.in 2005-02-21 14:15:04.000000000 +0100 +++ gimp-2.2.5/configure.in 2005-04-05 10:54:40.000000000 +0200 @@ -8,11 +8,11 @@ m4_define([gimp_major_version], [2]) m4_define([gimp_minor_version], [2]) -m4_define([gimp_micro_version], [4]) +m4_define([gimp_micro_version], [5]) 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], [4]) +m4_define([gimp_interface_age], [5]) m4_define([gimp_binary_age], [m4_eval(100 * gimp_minor_version + gimp_micro_version)]) @@ -1424,12 +1424,20 @@ gimpplugindir="$libdir/$PACKAGE/gimp_plugin_version" gimpsysconfdir="$sysconfdir/$PACKAGE/gimp_sysconf_version" -localedir='${prefix}/${DATADIRNAME}/locale' - AC_SUBST(gimpdir) AC_SUBST(gimpdatadir) AC_SUBST(gimpplugindir) AC_SUBST(gimpsysconfdir) + + +# GNU format message catalogs go into $datadir/locale, +# standard location is $libdir/locale. DATADIRNAME set accordingly. + +localedir="$datadir/locale" +if test "$DATADIRNAME" = "lib"; then + localedir="$libdir/locale" +fi + AC_SUBST(localedir) diff -uraN gimp-2.2.4/devel-docs/libgimpbase/html/index.html gimp-2.2.5/devel-docs/libgimpbase/html/index.html --- gimp-2.2.4/devel-docs/libgimpbase/html/index.html 2005-02-22 23:13:24.000000000 +0100 +++ gimp-2.2.5/devel-docs/libgimpbase/html/index.html 2005-04-09 23:10:34.000000000 +0200 @@ -1,5 +1,5 @@ GIMP Base Library Reference Manual

- for GIMP 2.2.1 + for GIMP 2.2.4


Table of Contents

I. GIMP Base Library
gimpbaseenums - Basic GIMP enumeration data types.
gimpbasetypes - Translation between gettext translation domain identifier and GType.
gimpversion - Macros and constants useful for determining GIMP's version number and capabilities.
gimplimits - Boundaries of some GIMP data types and some global constants.
gimpchecks - Constants and functions related to rendering checkerboards.
gimpdatafiles - Functions to handle GIMP data files.
gimpenv - Functions to access the GIMP environment.
gimpmemsize - Functions to (de)serialize a given memory size.
gimpparasite - Arbitrary pieces of data which can be attached to various GIMP objects.
gimpparasiteio - Utility functions to (de)serialize certain C structures to/from GimpParasite's.
gimpsignal - Portable signal handling.
gimpunit - Provides a collection of predefined units and functions for creating diff -uraN gimp-2.2.4/devel-docs/libgimpbase/html/libgimpbase-gimpbaseenums.html gimp-2.2.5/devel-docs/libgimpbase/html/libgimpbase-gimpbaseenums.html --- gimp-2.2.4/devel-docs/libgimpbase/html/libgimpbase-gimpbaseenums.html 2005-02-22 23:13:24.000000000 +0100 +++ gimp-2.2.5/devel-docs/libgimpbase/html/libgimpbase-gimpbaseenums.html 2005-04-09 23:10:34.000000000 +0200 @@ -13,9 +13,9 @@ enum GimpProgressCommand; enum GimpStackTraceMode; -

Description

+

Description

Basic GIMP enumeration data types. -

Details

enum GimpCheckSize

typedef enum  /*< pdb-skip >*/
+

Details

enum GimpCheckSize

typedef enum  /*< pdb-skip >*/
 {
   GIMP_CHECK_SIZE_SMALL_CHECKS  = 0,  /*< desc="Small"  >*/
   GIMP_CHECK_SIZE_MEDIUM_CHECKS = 1,  /*< desc="Medium" >*/
@@ -23,7 +23,7 @@
 } GimpCheckSize;
 

-


enum GimpCheckType

typedef enum  /*< pdb-skip >*/
+


enum GimpCheckType

typedef enum  /*< pdb-skip >*/
 {
   GIMP_CHECK_TYPE_LIGHT_CHECKS = 0,  /*< desc="Light Checks"    >*/
   GIMP_CHECK_TYPE_GRAY_CHECKS  = 1,  /*< desc="Mid-Tone Checks" >*/
@@ -34,7 +34,7 @@
 } GimpCheckType;
 

-


enum GimpImageBaseType

typedef enum
+


enum GimpImageBaseType

typedef enum
 {
   GIMP_RGB,     /*< desc="RGB color"     >*/
   GIMP_GRAY,    /*< desc="Grayscale"     >*/
@@ -42,7 +42,7 @@
 } GimpImageBaseType;
 

-


enum GimpImageType

typedef enum
+


enum GimpImageType

typedef enum
 {
   GIMP_RGB_IMAGE,      /*< desc="RGB"             >*/
   GIMP_RGBA_IMAGE,     /*< desc="RGB-alpha"       >*/
@@ -53,7 +53,7 @@
 } GimpImageType;
 

-


enum GimpMessageHandlerType

typedef enum
+


enum GimpMessageHandlerType

typedef enum
 {
   GIMP_MESSAGE_BOX,
   GIMP_CONSOLE,
@@ -61,7 +61,7 @@
 } GimpMessageHandlerType;
 

-


enum GimpPDBArgType

typedef enum
+


enum GimpPDBArgType

typedef enum
 {
   GIMP_PDB_INT32,
   GIMP_PDB_INT16,
@@ -89,7 +89,7 @@
 } GimpPDBArgType;
 

-


enum GimpPDBProcType

typedef enum
+


enum GimpPDBProcType

typedef enum
 {
   GIMP_INTERNAL,
   GIMP_PLUGIN,
@@ -98,7 +98,7 @@
 } GimpPDBProcType;
 

-


enum GimpPDBStatusType

typedef enum
+


enum GimpPDBStatusType

typedef enum
 {
   GIMP_PDB_EXECUTION_ERROR,
   GIMP_PDB_CALLING_ERROR,
@@ -108,7 +108,7 @@
 } GimpPDBStatusType;
 

-


enum GimpProgressCommand

typedef enum
+


enum GimpProgressCommand

typedef enum
 {
   GIMP_PROGRESS_COMMAND_START,
   GIMP_PROGRESS_COMMAND_END,
@@ -117,7 +117,7 @@
 } GimpProgressCommand;
 

-


enum GimpStackTraceMode

typedef enum
+


enum GimpStackTraceMode

typedef enum
 {
   GIMP_STACK_TRACE_NEVER,
   GIMP_STACK_TRACE_QUERY,
diff -uraN gimp-2.2.4/devel-docs/libgimpbase/html/libgimpbase-gimpbasetypes.html gimp-2.2.5/devel-docs/libgimpbase/html/libgimpbase-gimpbasetypes.html
--- gimp-2.2.4/devel-docs/libgimpbase/html/libgimpbase-gimpbasetypes.html	2005-02-22 23:13:24.000000000 +0100
+++ gimp-2.2.5/devel-docs/libgimpbase/html/libgimpbase-gimpbasetypes.html	2005-04-09 23:10:34.000000000 +0200
@@ -19,23 +19,23 @@
 void        gimp_flags_set_value_descriptions
                                             (GType flags_type,
                                              const GimpFlagsDesc *descriptions);
-

Description

+

Description

Translation between gettext translation domain identifier and GType. -

Details

GimpEnumDesc

typedef struct {
+

Details

GimpEnumDesc

typedef struct {
   gint   value;
   gchar *value_desc;
   gchar *value_help;
 } GimpEnumDesc;
 

-


GimpFlagsDesc

typedef struct {
+


GimpFlagsDesc

typedef struct {
   guint  value;
   gchar *value_desc;
   gchar *value_help;
 } GimpFlagsDesc;
 

-


gimp_type_set_translation_domain ()

void        gimp_type_set_translation_domain
+


gimp_type_set_translation_domain ()

void        gimp_type_set_translation_domain
                                             (GType type,
                                              const gchar *domain);

This function attaches a constant string as a gettext translation @@ -46,7 +46,7 @@

type: a GType
domain: a constant string that identifies a translation domain or NULL

Since GIMP 2.2 -


gimp_type_get_translation_domain ()

const gchar* gimp_type_get_translation_domain
+


gimp_type_get_translation_domain ()

const gchar* gimp_type_get_translation_domain
                                             (GType type);

Retrieves the gettext translation domain identifier that has been previously set using gimp_type_set_translation_domain(). You should @@ -58,7 +58,7 @@ or NULL if no domain was set

Since GIMP 2.2 -


gimp_enum_set_value_descriptions ()

void        gimp_enum_set_value_descriptions
+


gimp_enum_set_value_descriptions ()

void        gimp_enum_set_value_descriptions
                                             (GType enum_type,
                                              const GimpEnumDesc *descriptions);

Sets the array of human readable and translatable descriptions @@ -67,7 +67,7 @@

enum_type: a GType
descriptions: a NULL terminated constant static array of GimpEnumDesc

Since GIMP 2.2 -


gimp_enum_get_value_descriptions ()

const GimpEnumDesc* gimp_enum_get_value_descriptions
+


gimp_enum_get_value_descriptions ()

const GimpEnumDesc* gimp_enum_get_value_descriptions
                                             (GType enum_type);

Retreives the array of human readable and translatable descriptions and help texts for enum values.

@@ -76,7 +76,7 @@ Returns: a NULL terminated constant array of GimpEnumDesc

Since GIMP 2.2 -


gimp_flags_get_value_descriptions ()

const GimpFlagsDesc* gimp_flags_get_value_descriptions
+


gimp_flags_get_value_descriptions ()

const GimpFlagsDesc* gimp_flags_get_value_descriptions
                                             (GType flags_type);

Retreives the array of human readable and translatable descriptions and help texts for flags values.

@@ -85,7 +85,7 @@ Returns: a NULL terminated constant array of GimpFlagsDesc

Since GIMP 2.2 -


gimp_flags_set_value_descriptions ()

void        gimp_flags_set_value_descriptions
+


gimp_flags_set_value_descriptions ()

void        gimp_flags_set_value_descriptions
                                             (GType flags_type,
                                              const GimpFlagsDesc *descriptions);

Sets the array of human readable and translatable descriptions diff -uraN gimp-2.2.4/devel-docs/libgimpbase/html/libgimpbase-gimpchecks.html gimp-2.2.5/devel-docs/libgimpbase/html/libgimpbase-gimpchecks.html --- gimp-2.2.4/devel-docs/libgimpbase/html/libgimpbase-gimpchecks.html 2005-02-22 23:13:24.000000000 +0100 +++ gimp-2.2.5/devel-docs/libgimpbase/html/libgimpbase-gimpchecks.html 2005-04-09 23:10:34.000000000 +0200 @@ -9,23 +9,23 @@ void gimp_checks_get_shades (GimpCheckType type, guchar *light, guchar *dark); -

Description

+

Description

Constants and functions related to rendering checkerboards. -

Details

GIMP_CHECK_SIZE

#define GIMP_CHECK_SIZE      8
+

Details

GIMP_CHECK_SIZE

#define GIMP_CHECK_SIZE      8
 

The default checkerboard size in pixels. This is configurable in the core but GIMP plug-ins can't access the user preference and should use this constant instead. -


GIMP_CHECK_SIZE_SM

#define GIMP_CHECK_SIZE_SM   4
+


GIMP_CHECK_SIZE_SM

#define GIMP_CHECK_SIZE_SM   4
 

The default small checkerboard size in pixels. -


GIMP_CHECK_DARK

#define GIMP_CHECK_DARK      0.4
+


GIMP_CHECK_DARK

#define GIMP_CHECK_DARK      0.4
 

The dark gray value for the default checkerboard pattern. -


GIMP_CHECK_LIGHT

#define GIMP_CHECK_LIGHT     0.6
+


GIMP_CHECK_LIGHT

#define GIMP_CHECK_LIGHT     0.6
 

The light gray value for the default checkerboard pattern. -


gimp_checks_get_shades ()

void        gimp_checks_get_shades          (GimpCheckType type,
+


gimp_checks_get_shades ()

void        gimp_checks_get_shades          (GimpCheckType type,
                                              guchar *light,
                                              guchar *dark);

Retrieves the actual shades of gray to use when drawing a diff -uraN gimp-2.2.4/devel-docs/libgimpbase/html/libgimpbase-gimpdatafiles.html gimp-2.2.5/devel-docs/libgimpbase/html/libgimpbase-gimpdatafiles.html --- gimp-2.2.4/devel-docs/libgimpbase/html/libgimpbase-gimpdatafiles.html 2005-02-22 23:13:24.000000000 +0100 +++ gimp-2.2.5/devel-docs/libgimpbase/html/libgimpbase-gimpdatafiles.html 2005-04-09 23:10:34.000000000 +0200 @@ -11,9 +11,9 @@ GFileTest flags, GimpDatafileLoaderFunc loader_func, gpointer user_data); -

Description

+

Description

Functions to handle GIMP data files. -

Details

GimpDatafileData

typedef struct {
+

Details

GimpDatafileData

typedef struct {
   const gchar *filename;
   const gchar *dirname;
   const gchar *basename;
@@ -24,14 +24,14 @@
 } GimpDatafileData;
 

-


GimpDatafileLoaderFunc ()

void        (*GimpDatafileLoaderFunc)       (const GimpDatafileData *file_data,
+


GimpDatafileLoaderFunc ()

void        (*GimpDatafileLoaderFunc)       (const GimpDatafileData *file_data,
                                              gpointer user_data);

file_data:
user_data: -

gimp_datafiles_check_extension ()

gboolean    gimp_datafiles_check_extension  (const gchar *filename,
+

gimp_datafiles_check_extension ()

gboolean    gimp_datafiles_check_extension  (const gchar *filename,
                                              const gchar *extension);

filename: @@ -39,7 +39,7 @@
Returns: -

gimp_datafiles_read_directories ()

void        gimp_datafiles_read_directories (const gchar *path_str,
+

gimp_datafiles_read_directories ()

void        gimp_datafiles_read_directories (const gchar *path_str,
                                              GFileTest flags,
                                              GimpDatafileLoaderFunc loader_func,
                                              gpointer user_data);

diff -uraN gimp-2.2.4/devel-docs/libgimpbase/html/libgimpbase-gimpenv.html gimp-2.2.5/devel-docs/libgimpbase/html/libgimpbase-gimpenv.html --- gimp-2.2.4/devel-docs/libgimpbase/html/libgimpbase-gimpenv.html 2005-02-22 23:13:24.000000000 +0100 +++ gimp-2.2.5/devel-docs/libgimpbase/html/libgimpbase-gimpenv.html 2005-04-09 23:10:34.000000000 +0200 @@ -16,10 +16,10 @@ gchar* gimp_path_to_str (GList *path); void gimp_path_free (GList *path); gchar* gimp_path_get_user_writable_dir (GList *path); -

Description

+

Description

A set of functions to find the locations of GIMP's data directories and configuration files. -

Details

gimp_directory ()

const gchar* gimp_directory                 (void);

+

Details

gimp_directory ()

const gchar* gimp_directory                 (void);

Returns the user-specific GIMP settings directory. If the environment variable GIMP2_DIRECTORY exists, it is used. If it is an absolute path, it is used as is. If it is a relative path, it @@ -40,7 +40,7 @@ is on Windows).

Returns: The user-specific GIMP settings directory. -

gimp_personal_rc_file ()

gchar*      gimp_personal_rc_file           (const gchar *basename);

+


gimp_personal_rc_file ()

gchar*      gimp_personal_rc_file           (const gchar *basename);

Returns the name of a file in the user-specific GIMP settings directory.

The returned string is allocated dynamically and *SHOULD* be freed @@ -50,7 +50,7 @@

basename: The basename of a rc_file.
Returns: The name of a file in the user-specific GIMP settings directory. -

gimp_data_directory ()

const gchar* gimp_data_directory            (void);

+


gimp_data_directory ()

const gchar* gimp_data_directory            (void);

Returns the top directory for GIMP data. If the environment variable GIMP2_DATADIR exists, that is used. It should be an absolute pathname. Otherwise, on Unix the compile-time defined @@ -63,7 +63,7 @@ is on Windows).

Returns: The top directory for GIMP data. -

gimp_locale_directory ()

const gchar* gimp_locale_directory          (void);

+


gimp_locale_directory ()

const gchar* gimp_locale_directory          (void);

Returns the top directory for GIMP locale files. If the environment variable GIMP2_LOCALEDIR exists, that is used. It should be an absolute pathname. Otherwise, on Unix the compile-time defined @@ -76,7 +76,7 @@ is on Windows).

Returns: The top directory for GIMP locale files. -

gimp_plug_in_directory ()

const gchar* gimp_plug_in_directory         (void);

+


gimp_plug_in_directory ()

const gchar* gimp_plug_in_directory         (void);

Returns the top directory for GIMP plug_ins and modules. If the environment variable GIMP2_PLUGINDIR exists, that is used. It should be an absolute pathname. Otherwise, on Unix the compile-time @@ -89,7 +89,7 @@ is on Windows).

Returns: The top directory for GIMP plug_ins and modules. -

gimp_sysconf_directory ()

const gchar* gimp_sysconf_directory         (void);

+


gimp_sysconf_directory ()

const gchar* gimp_sysconf_directory         (void);

Returns the top directory for GIMP config files. If the environment variable GIMP2_SYSCONFDIR exists, that is used. It should be an absolute pathname. Otherwise, on Unix the compile-time defined @@ -102,7 +102,7 @@ is on Windows).

Returns: The top directory for GIMP config files. -

gimp_gtkrc ()

const gchar* gimp_gtkrc                     (void);

+


gimp_gtkrc ()

const gchar* gimp_gtkrc                     (void);

Returns the name of the GIMP's application-specific gtkrc file.

The returned string is allocated just once, and should *NOT* be @@ -111,7 +111,7 @@ is on Windows).

Returns: The name of the GIMP's application-specific gtkrc file. -

gimp_path_parse ()

GList*      gimp_path_parse                 (const gchar *path,
+

gimp_path_parse ()

GList*      gimp_path_parse                 (const gchar *path,
                                              gint max_paths,
                                              gboolean check,
                                              GList **check_failed);

@@ -123,17 +123,17 @@ check_failed: Returns a GList of path elements for which the check failed. Returns: A GList of all directories in path. -


gimp_path_to_str ()

gchar*      gimp_path_to_str                (GList *path);

+


gimp_path_to_str ()

gchar*      gimp_path_to_str                (GList *path);

path: A list of directories as returned by gimp_path_parse().
Returns: A searchpath string separated by G_SEARCHPATH_SEPARATOR. -

gimp_path_free ()

void        gimp_path_free                  (GList *path);

+


gimp_path_free ()

void        gimp_path_free                  (GList *path);

This function frees the memory allocated for the list and the strings it contains.

path: A list of directories as returned by gimp_path_parse(). -

gimp_path_get_user_writable_dir ()

gchar*      gimp_path_get_user_writable_dir (GList *path);

+


gimp_path_get_user_writable_dir ()

gchar*      gimp_path_get_user_writable_dir (GList *path);

Note that you have to g_free() the returned string.

path: A list of directories as returned by gimp_path_parse(). diff -uraN gimp-2.2.4/devel-docs/libgimpbase/html/libgimpbase-gimplimits.html gimp-2.2.5/devel-docs/libgimpbase/html/libgimpbase-gimplimits.html --- gimp-2.2.4/devel-docs/libgimpbase/html/libgimpbase-gimplimits.html 2005-02-22 23:13:24.000000000 +0100 +++ gimp-2.2.5/devel-docs/libgimpbase/html/libgimpbase-gimplimits.html 2005-04-09 23:10:34.000000000 +0200 @@ -7,30 +7,30 @@ #define GIMP_MIN_RESOLUTION #define GIMP_MAX_RESOLUTION #define GIMP_MAX_MEMSIZE -

Description

+

Description

Boundaries of some GIMP data types and some global constants. -

Details

GIMP_MIN_IMAGE_SIZE

#define GIMP_MIN_IMAGE_SIZE  1
+

Details

GIMP_MIN_IMAGE_SIZE

#define GIMP_MIN_IMAGE_SIZE  1
 

The minimum width and height of a GIMP image in pixels. -


GIMP_MAX_IMAGE_SIZE

#define GIMP_MAX_IMAGE_SIZE  262144    /*  2^18  */
+


GIMP_MAX_IMAGE_SIZE

#define GIMP_MAX_IMAGE_SIZE  262144    /*  2^18  */
 

The maximum width and height of a GIMP image in pixels. This is a somewhat arbitray value that can be used when an upper value for pixel sizes is needed; for example to give a spin button an upper limit. -


GIMP_MIN_RESOLUTION

#define GIMP_MIN_RESOLUTION  5e-3      /*  shouldn't display as 0.000  */
+


GIMP_MIN_RESOLUTION

#define GIMP_MIN_RESOLUTION  5e-3      /*  shouldn't display as 0.000  */
 

The minimum resolution of a GIMP image in pixels per inch. This is a somewhat arbitray value that can be used to when a lower value for a resolution is needed. GIMP will not accept resolutions smaller than this value. -


GIMP_MAX_RESOLUTION

#define GIMP_MAX_RESOLUTION  65536.0
+


GIMP_MAX_RESOLUTION

#define GIMP_MAX_RESOLUTION  65536.0
 

The maximum resolution of a GIMP image in pixels per inch. This is a somewhat arbitray value that can be used to when an upper value for a resolution is needed. GIMP will not accept resolutions larger than this value. -


GIMP_MAX_MEMSIZE

#define GIMP_MAX_MEMSIZE     ((guint64) 1 << 42) /*  4 terabyte;
+


GIMP_MAX_MEMSIZE

#define GIMP_MAX_MEMSIZE     ((guint64) 1 << 42) /*  4 terabyte;
 

A large but arbitrary value that can be used when an upper limit for a memory size (in bytes) is needed. It is smaller than G_MAXDOUBLE since diff -uraN gimp-2.2.4/devel-docs/libgimpbase/html/libgimpbase-gimpmemsize.html gimp-2.2.5/devel-docs/libgimpbase/html/libgimpbase-gimpmemsize.html --- gimp-2.2.4/devel-docs/libgimpbase/html/libgimpbase-gimpmemsize.html 2005-02-22 23:13:24.000000000 +0100 +++ gimp-2.2.5/devel-docs/libgimpbase/html/libgimpbase-gimpmemsize.html 2005-04-09 23:10:34.000000000 +0200 @@ -9,9 +9,9 @@ #define GIMP_TYPE_MEMSIZE #define GIMP_VALUE_HOLDS_MEMSIZE (value) -

Description

+

Description

Functions to (de)serialize a given memory size. -

Details

gimp_memsize_serialize ()

gchar*      gimp_memsize_serialize          (guint64 memsize);

+

Details

gimp_memsize_serialize ()

gchar*      gimp_memsize_serialize          (guint64 memsize);

Creates a string representation of a given memory size. This string can be parsed by gimp_memsize_deserialize() and can thus be used in config files. It should not be displayed to the user. If you need a @@ -21,7 +21,7 @@

Returns: A newly allocated string representation of memsize.

Since GIMP 2.2 -


gimp_memsize_deserialize ()

gboolean    gimp_memsize_deserialize        (const gchar *string,
+


gimp_memsize_deserialize ()

gboolean    gimp_memsize_deserialize        (const gchar *string,
                                              guint64 *memsize);

Parses a string representation of a memory size as returned by gimp_memsize_serialize().

@@ -32,7 +32,7 @@ memsize has been set, FALSE otherwise.

Since GIMP 2.2 -


gimp_memsize_to_string ()

gchar*      gimp_memsize_to_string          (guint64 memsize);

+


gimp_memsize_to_string ()

gchar*      gimp_memsize_to_string          (guint64 memsize);

This function returns a human readable, translated representation of the passed memsize. Large values are displayed using a reasonable memsize unit, e.g.: "345" becomes "345 Bytes", "4500" @@ -40,10 +40,10 @@

memsize: A memory size in bytes.
Returns: A newly allocated human-readable, translated string. -

GIMP_TYPE_MEMSIZE

#define GIMP_TYPE_MEMSIZE               (gimp_memsize_get_type ())
+

GIMP_TYPE_MEMSIZE

#define GIMP_TYPE_MEMSIZE               (gimp_memsize_get_type ())
 

GIMP_TYPE_MEMSIZE is a GType derived from G_TYPE_UINT64. -


GIMP_VALUE_HOLDS_MEMSIZE()

#define GIMP_VALUE_HOLDS_MEMSIZE(value) (G_TYPE_CHECK_VALUE_TYPE ((value), GIMP_TYPE_MEMSIZE))
+


GIMP_VALUE_HOLDS_MEMSIZE()

#define GIMP_VALUE_HOLDS_MEMSIZE(value) (G_TYPE_CHECK_VALUE_TYPE ((value), GIMP_TYPE_MEMSIZE))
 

value: diff -uraN gimp-2.2.4/devel-docs/libgimpbase/html/libgimpbase-gimpparasite.html gimp-2.2.5/devel-docs/libgimpbase/html/libgimpbase-gimpparasite.html --- gimp-2.2.4/devel-docs/libgimpbase/html/libgimpbase-gimpparasite.html 2005-02-22 23:13:24.000000000 +0100 +++ gimp-2.2.5/devel-docs/libgimpbase/html/libgimpbase-gimpparasite.html 2005-04-09 23:10:34.000000000 +0200 @@ -29,10 +29,10 @@ #define GIMP_PARASITE_ATTACH_GRANDPARENT #define GIMP_PARASITE_GRANDPARENT_PERSISTENT #define GIMP_PARASITE_GRANDPARENT_UNDOABLE -

Description

+

Description

Arbitrary pieces of data which can be attached to various GIMP objects. -

Details

GimpParasite

typedef struct {
+

Details

GimpParasite

typedef struct {
   gchar    *name;   /* The name of the parasite. USE A UNIQUE PREFIX! */
   guint32   flags;  /* save Parasite in XCF file, etc.                */
   guint32   size;   /* amount of data                                 */
@@ -41,7 +41,7 @@
 } GimpParasite;
 

-


gimp_parasite_new ()

GimpParasite* gimp_parasite_new             (const gchar *name,
+


gimp_parasite_new ()

GimpParasite* gimp_parasite_new             (const gchar *name,
                                              guint32 flags,
                                              guint32 size,
                                              gconstpointer data);

@@ -53,18 +53,18 @@

Returns: -

gimp_parasite_free ()

void        gimp_parasite_free              (GimpParasite *parasite);

+


gimp_parasite_free ()

void        gimp_parasite_free              (GimpParasite *parasite);

parasite: -

gimp_parasite_copy ()

GimpParasite* gimp_parasite_copy            (const GimpParasite *parasite);

+


gimp_parasite_copy ()

GimpParasite* gimp_parasite_copy            (const GimpParasite *parasite);

parasite:
Returns: -

gimp_parasite_compare ()

gboolean    gimp_parasite_compare           (const GimpParasite *a,
+

gimp_parasite_compare ()

gboolean    gimp_parasite_compare           (const GimpParasite *a,
                                              const GimpParasite *b);

a: @@ -72,7 +72,7 @@
Returns: -

gimp_parasite_is_type ()

gboolean    gimp_parasite_is_type           (const GimpParasite *parasite,
+

gimp_parasite_is_type ()

gboolean    gimp_parasite_is_type           (const GimpParasite *parasite,
                                              const gchar *name);

parasite: @@ -80,19 +80,19 @@
Returns: -

gimp_parasite_is_persistent ()

gboolean    gimp_parasite_is_persistent     (const GimpParasite *parasite);

+


gimp_parasite_is_persistent ()

gboolean    gimp_parasite_is_persistent     (const GimpParasite *parasite);

parasite:
Returns: -

gimp_parasite_is_undoable ()

gboolean    gimp_parasite_is_undoable       (const GimpParasite *parasite);

+


gimp_parasite_is_undoable ()

gboolean    gimp_parasite_is_undoable       (const GimpParasite *parasite);

parasite:
Returns: -

gimp_parasite_has_flag ()

gboolean    gimp_parasite_has_flag          (const GimpParasite *parasite,
+

gimp_parasite_has_flag ()

gboolean    gimp_parasite_has_flag          (const GimpParasite *parasite,
                                              gulong flag);

parasite: @@ -100,55 +100,55 @@
Returns: -

gimp_parasite_flags ()

gulong      gimp_parasite_flags             (const GimpParasite *parasite);

+


gimp_parasite_flags ()

gulong      gimp_parasite_flags             (const GimpParasite *parasite);

parasite:
Returns: -

gimp_parasite_name ()

const gchar* gimp_parasite_name             (const GimpParasite *parasite);

+


gimp_parasite_name ()

const gchar* gimp_parasite_name             (const GimpParasite *parasite);

parasite:
Returns: -

gimp_parasite_data ()

gconstpointer gimp_parasite_data            (const GimpParasite *parasite);

+


gimp_parasite_data ()

gconstpointer gimp_parasite_data            (const GimpParasite *parasite);

parasite:
Returns: -

gimp_parasite_data_size ()

glong       gimp_parasite_data_size         (const GimpParasite *parasite);

+


gimp_parasite_data_size ()

glong       gimp_parasite_data_size         (const GimpParasite *parasite);

parasite:
Returns: -

GIMP_PARASITE_PERSISTENT

#define GIMP_PARASITE_PERSISTENT 1
+

GIMP_PARASITE_PERSISTENT

#define GIMP_PARASITE_PERSISTENT 1
 

-


GIMP_PARASITE_UNDOABLE

#define GIMP_PARASITE_UNDOABLE   2
+


GIMP_PARASITE_UNDOABLE

#define GIMP_PARASITE_UNDOABLE   2
 

-


GIMP_PARASITE_ATTACH_PARENT

#define GIMP_PARASITE_ATTACH_PARENT     (0x80 << 8)
+


GIMP_PARASITE_ATTACH_PARENT

#define GIMP_PARASITE_ATTACH_PARENT     (0x80 << 8)
 

-


GIMP_PARASITE_PARENT_PERSISTENT

#define GIMP_PARASITE_PARENT_PERSISTENT (GIMP_PARASITE_PERSISTENT << 8)
+


GIMP_PARASITE_PARENT_PERSISTENT

#define GIMP_PARASITE_PARENT_PERSISTENT (GIMP_PARASITE_PERSISTENT << 8)
 

-


GIMP_PARASITE_PARENT_UNDOABLE

#define GIMP_PARASITE_PARENT_UNDOABLE   (GIMP_PARASITE_UNDOABLE << 8)
+


GIMP_PARASITE_PARENT_UNDOABLE

#define GIMP_PARASITE_PARENT_UNDOABLE   (GIMP_PARASITE_UNDOABLE << 8)
 

-


GIMP_PARASITE_ATTACH_GRANDPARENT

#define GIMP_PARASITE_ATTACH_GRANDPARENT     (0x80 << 16)
+


GIMP_PARASITE_ATTACH_GRANDPARENT

#define GIMP_PARASITE_ATTACH_GRANDPARENT     (0x80 << 16)
 

-


GIMP_PARASITE_GRANDPARENT_PERSISTENT

#define GIMP_PARASITE_GRANDPARENT_PERSISTENT (GIMP_PARASITE_PERSISTENT << 16)
+


GIMP_PARASITE_GRANDPARENT_PERSISTENT

#define GIMP_PARASITE_GRANDPARENT_PERSISTENT (GIMP_PARASITE_PERSISTENT << 16)
 

-


GIMP_PARASITE_GRANDPARENT_UNDOABLE

#define GIMP_PARASITE_GRANDPARENT_UNDOABLE   (GIMP_PARASITE_UNDOABLE << 16)
+


GIMP_PARASITE_GRANDPARENT_UNDOABLE

#define GIMP_PARASITE_GRANDPARENT_UNDOABLE   (GIMP_PARASITE_UNDOABLE << 16)
 

-

See Also

+

See Also

gimp_image_parasite_attach(), gimp_pixpipe_params_parse (const gchar *parameters, GimpPixPipeParams *params); gchar* gimp_pixpipe_params_build (GimpPixPipeParams *params); -

Description

+

Description

Utility functions to (de)serialize certain C structures to/from GimpParasite's. -

Details

GIMP_PIXPIPE_MAXDIM

#define GIMP_PIXPIPE_MAXDIM 4
+

Details

GIMP_PIXPIPE_MAXDIM

#define GIMP_PIXPIPE_MAXDIM 4
 

-


gimp_pixpipe_params_init ()

void        gimp_pixpipe_params_init        (GimpPixPipeParams *params);

+


gimp_pixpipe_params_init ()

void        gimp_pixpipe_params_init        (GimpPixPipeParams *params);

params: -

gimp_pixpipe_params_parse ()

void        gimp_pixpipe_params_parse       (const gchar *parameters,
+

gimp_pixpipe_params_parse ()

void        gimp_pixpipe_params_parse       (const gchar *parameters,
                                              GimpPixPipeParams *params);

parameters:
params: -

gimp_pixpipe_params_build ()

gchar*      gimp_pixpipe_params_build       (GimpPixPipeParams *params);

+


gimp_pixpipe_params_build ()

gchar*      gimp_pixpipe_params_build       (GimpPixPipeParams *params);

params:
Returns: -

See Also

+

See Also

GimpParasite

diff -uraN gimp-2.2.4/devel-docs/libgimpbase/html/libgimpbase-gimpprotocol.html gimp-2.2.5/devel-docs/libgimpbase/html/libgimpbase-gimpprotocol.html --- gimp-2.2.4/devel-docs/libgimpbase/html/libgimpbase-gimpprotocol.html 2005-02-22 23:13:24.000000000 +0100 +++ gimp-2.2.5/devel-docs/libgimpbase/html/libgimpbase-gimpprotocol.html 2005-04-09 23:10:34.000000000 +0200 @@ -49,13 +49,13 @@ gpointer user_data); gboolean gp_extension_ack_write (GIOChannel *channel, gpointer user_data); -

Description

+

Description

The communication protocol between GIMP and it's plug-ins. -

Details

GIMP_PROTOCOL_VERSION

#define GIMP_PROTOCOL_VERSION  0x0011
+

Details

GIMP_PROTOCOL_VERSION

#define GIMP_PROTOCOL_VERSION  0x0011
 

-


GPConfig

typedef struct {
+


GPConfig

typedef struct {
   guint32  version;
   guint32  tile_width;
   guint32  tile_height;
@@ -79,16 +79,16 @@
 } GPConfig;
 

-


GPTileReq

typedef struct {
+


GPTileReq

typedef struct {
   gint32   drawable_ID;
   guint32  tile_num;
   guint32  shadow;
 } GPTileReq;
 

-


GPTileAck

typedef struct _GPTileAck GPTileAck;

+


GPTileAck

typedef struct _GPTileAck GPTileAck;

-


GPTileData

typedef struct {
+


GPTileData

typedef struct {
   gint32   drawable_ID;
   guint32  tile_num;
   guint32  shadow;
@@ -100,7 +100,7 @@
 } GPTileData;
 

-


GPParam

typedef struct {
+


GPParam

typedef struct {
   guint32 type;
 
   union
@@ -143,28 +143,28 @@
 } GPParam;
 

-


GPParamDef

typedef struct {
+


GPParamDef

typedef struct {
   guint32  type;
   gchar   *name;
   gchar   *description;
 } GPParamDef;
 

-


GPProcRun

typedef struct {
+


GPProcRun

typedef struct {
   gchar   *name;
   guint32  nparams;
   GPParam *params;
 } GPProcRun;
 

-


GPProcReturn

typedef struct {
+


GPProcReturn

typedef struct {
   gchar   *name;
   guint32  nparams;
   GPParam *params;
 } GPProcReturn;
 

-


GPProcInstall

typedef struct {
+


GPProcInstall

typedef struct {
   gchar      *name;
   gchar      *blurb;
   gchar      *help;
@@ -181,14 +181,14 @@
 } GPProcInstall;
 

-


GPProcUninstall

typedef struct {
+


GPProcUninstall

typedef struct {
   gchar *name;
 } GPProcUninstall;
 

-


gp_init ()

void        gp_init                         (void);

+


gp_init ()

void        gp_init                         (void);

-


gp_has_init_write ()

gboolean    gp_has_init_write               (GIOChannel *channel,
+


gp_has_init_write ()

gboolean    gp_has_init_write               (GIOChannel *channel,
                                              gpointer user_data);

channel: @@ -196,7 +196,7 @@
Returns: -

gp_quit_write ()

gboolean    gp_quit_write                   (GIOChannel *channel,
+

gp_quit_write ()

gboolean    gp_quit_write                   (GIOChannel *channel,
                                              gpointer user_data);

channel: @@ -204,7 +204,7 @@
Returns: -

gp_config_write ()

gboolean    gp_config_write                 (GIOChannel *channel,
+

gp_config_write ()

gboolean    gp_config_write                 (GIOChannel *channel,
                                              GPConfig *config,
                                              gpointer user_data);

@@ -214,7 +214,7 @@ Returns: -


gp_tile_req_write ()

gboolean    gp_tile_req_write               (GIOChannel *channel,
+

gp_tile_req_write ()

gboolean    gp_tile_req_write               (GIOChannel *channel,
                                              GPTileReq *tile_req,
                                              gpointer user_data);

@@ -224,7 +224,7 @@ Returns: -


gp_tile_ack_write ()

gboolean    gp_tile_ack_write               (GIOChannel *channel,
+

gp_tile_ack_write ()

gboolean    gp_tile_ack_write               (GIOChannel *channel,
                                              gpointer user_data);

channel: @@ -232,7 +232,7 @@
Returns: -

gp_tile_data_write ()

gboolean    gp_tile_data_write              (GIOChannel *channel,
+

gp_tile_data_write ()

gboolean    gp_tile_data_write              (GIOChannel *channel,
                                              GPTileData *tile_data,
                                              gpointer user_data);

@@ -242,7 +242,7 @@ Returns: -


gp_proc_run_write ()

gboolean    gp_proc_run_write               (GIOChannel *channel,
+

gp_proc_run_write ()

gboolean    gp_proc_run_write               (GIOChannel *channel,
                                              GPProcRun *proc_run,
                                              gpointer user_data);

@@ -252,7 +252,7 @@ Returns: -


gp_proc_return_write ()

gboolean    gp_proc_return_write            (GIOChannel *channel,
+

gp_proc_return_write ()

gboolean    gp_proc_return_write            (GIOChannel *channel,
                                              GPProcReturn *proc_return,
                                              gpointer user_data);

@@ -262,7 +262,7 @@ Returns: -


gp_temp_proc_run_write ()

gboolean    gp_temp_proc_run_write          (GIOChannel *channel,
+

gp_temp_proc_run_write ()

gboolean    gp_temp_proc_run_write          (GIOChannel *channel,
                                              GPProcRun *proc_run,
                                              gpointer user_data);

@@ -272,7 +272,7 @@ Returns: -


gp_temp_proc_return_write ()

gboolean    gp_temp_proc_return_write       (GIOChannel *channel,
+

gp_temp_proc_return_write ()

gboolean    gp_temp_proc_return_write       (GIOChannel *channel,
                                              GPProcReturn *proc_return,
                                              gpointer user_data);

@@ -282,7 +282,7 @@ Returns: -


gp_proc_install_write ()

gboolean    gp_proc_install_write           (GIOChannel *channel,
+

gp_proc_install_write ()

gboolean    gp_proc_install_write           (GIOChannel *channel,
                                              GPProcInstall *proc_install,
                                              gpointer user_data);

@@ -292,7 +292,7 @@ Returns: -


gp_proc_uninstall_write ()

gboolean    gp_proc_uninstall_write         (GIOChannel *channel,
+

gp_proc_uninstall_write ()

gboolean    gp_proc_uninstall_write         (GIOChannel *channel,
                                              GPProcUninstall *proc_uninstall,
                                              gpointer user_data);

@@ -302,7 +302,7 @@ Returns: -


gp_extension_ack_write ()

gboolean    gp_extension_ack_write          (GIOChannel *channel,
+

gp_extension_ack_write ()

gboolean    gp_extension_ack_write          (GIOChannel *channel,
                                              gpointer user_data);

channel: @@ -310,6 +310,6 @@
Returns: -

See Also

+

See Also

libgimp-gimpwire

diff -uraN gimp-2.2.4/devel-docs/libgimpbase/html/libgimpbase-gimpsignal.html gimp-2.2.5/devel-docs/libgimpbase/html/libgimpbase-gimpsignal.html --- gimp-2.2.4/devel-docs/libgimpbase/html/libgimpbase-gimpsignal.html 2005-02-22 23:13:24.000000000 +0100 +++ gimp-2.2.5/devel-docs/libgimpbase/html/libgimpbase-gimpsignal.html 2005-04-09 23:10:34.000000000 +0200 @@ -6,10 +6,10 @@ GimpSignalHandlerFunc gimp_signal_private (gint signum, GimpSignalHandlerFunc handler, gint flags); -

Description

+

Description

Portable signal handling. -

Details

GimpSignalHandlerFunc ()

void        (*GimpSignalHandlerFunc)        (gint signum);

+

Details

GimpSignalHandlerFunc ()

void        (*GimpSignalHandlerFunc)        (gint signum);

A prototype for signal handler functions. Note that each function which takes or returns a variable of this type also accepts or may return special values defined by your system's signal.h header file (like @@ -18,7 +18,7 @@ by a single handler. -


gimp_signal_private ()

GimpSignalHandlerFunc gimp_signal_private   (gint signum,
+

gimp_signal_private ()

GimpSignalHandlerFunc gimp_signal_private   (gint signum,
                                              GimpSignalHandlerFunc handler,
                                              gint flags);

This function furnishes a workalike for signal(2) but @@ -42,6 +42,6 @@ to the sa_flags field of the sigaction struct. Returns: A reference to the signal handling function which was active before the call to gimp_signal_private(). -

See Also

+

See Also

signal(2), signal(5 or 7), sigaction(2).

diff -uraN gimp-2.2.4/devel-docs/libgimpbase/html/libgimpbase-gimpunit.html gimp-2.2.5/devel-docs/libgimpbase/html/libgimpbase-gimpunit.html --- gimp-2.2.4/devel-docs/libgimpbase/html/libgimpbase-gimpunit.html 2005-02-22 23:13:24.000000000 +0100 +++ gimp-2.2.5/devel-docs/libgimpbase/html/libgimpbase-gimpunit.html 2005-04-09 23:10:34.000000000 +0200 @@ -27,11 +27,11 @@ #define GIMP_TYPE_UNIT #define GIMP_VALUE_HOLDS_UNIT (value) -

Description

+

Description

Provides a collection of predefined units and functions for creating user-defined units. -

Details

enum GimpUnit

typedef enum /*< skip >*/
+

Details

enum GimpUnit

typedef enum /*< skip >*/
 {
   GIMP_UNIT_PIXEL   = 0,
 
@@ -46,18 +46,18 @@
 } GimpUnit;
 

-


gimp_unit_get_number_of_units ()

gint        gimp_unit_get_number_of_units   (void);

+


gimp_unit_get_number_of_units ()

gint        gimp_unit_get_number_of_units   (void);

Returns the number of units which are known to the GimpUnit system.

Returns: The number of defined units. -

gimp_unit_get_number_of_built_in_units ()

gint        gimp_unit_get_number_of_built_in_units
+

gimp_unit_get_number_of_built_in_units ()

gint        gimp_unit_get_number_of_built_in_units
                                             (void);

Returns the number of GimpUnit's which are hardcoded in the unit system (UNIT_INCH, UNIT_MM, UNIT_POINT, UNIT_PICA and the two "pseudo unit" UNIT_PIXEL).

Returns: The number of built-in units. -

gimp_unit_new ()

GimpUnit    gimp_unit_new                   (gchar *identifier,
+

gimp_unit_new ()

GimpUnit    gimp_unit_new                   (gchar *identifier,
                                              gdouble factor,
                                              gint digits,
                                              gchar *symbol,
@@ -78,12 +78,12 @@
 singular: The singular form of the unit.
 plural: The plural form of the unit.
 Returns: The ID of the new unit.
-

gimp_unit_get_deletion_flag ()

gboolean    gimp_unit_get_deletion_flag     (GimpUnit unit);

+


gimp_unit_get_deletion_flag ()

gboolean    gimp_unit_get_deletion_flag     (GimpUnit unit);

unit: The unit you want to know the deletion_flag of.
Returns: The unit's deletion_flag. -

gimp_unit_set_deletion_flag ()

void        gimp_unit_set_deletion_flag     (GimpUnit unit,
+

gimp_unit_set_deletion_flag ()

void        gimp_unit_set_deletion_flag     (GimpUnit unit,
                                              gboolean deletion_flag);

Sets a GimpUnit's deletion_flag. If the deletion_flag of a unit is TRUE when GIMP exits, this unit will not be saved in the users's @@ -94,7 +94,7 @@

unit: The unit you want to set the deletion_flag for.
deletion_flag: The new deletion_flag. -

gimp_unit_get_factor ()

gdouble     gimp_unit_get_factor            (GimpUnit unit);

+


gimp_unit_get_factor ()

gdouble     gimp_unit_get_factor            (GimpUnit unit);

A GimpUnit's factor is defined to be:

distance_in_units == (factor * distance_in_inches) @@ -103,7 +103,7 @@

unit: The unit you want to know the factor of.
Returns: The unit's factor. -

gimp_unit_get_digits ()

gint        gimp_unit_get_digits            (GimpUnit unit);

+


gimp_unit_get_digits ()

gint        gimp_unit_get_digits            (GimpUnit unit);

Returns the number of digits an entry field should provide to get approximately the same accuracy as an inch input field with two digits.

@@ -111,19 +111,19 @@

unit: The unit you want to know the digits.
Returns: The suggested number of digits. -

gimp_unit_get_identifier ()

const gchar* gimp_unit_get_identifier       (GimpUnit unit);

+


gimp_unit_get_identifier ()

const gchar* gimp_unit_get_identifier       (GimpUnit unit);

This is an unstranslated string and must not be changed or freed.

unit: The unit you want to know the identifier of.
Returns: The unit's identifier. -

gimp_unit_get_symbol ()

const gchar* gimp_unit_get_symbol           (GimpUnit unit);

+


gimp_unit_get_symbol ()

const gchar* gimp_unit_get_symbol           (GimpUnit unit);

This is e.g. "''" for UNIT_INCH.

NOTE: This string must not be changed or freed.

unit: The unit you want to know the symbol of.
Returns: The unit's symbol. -

gimp_unit_get_abbreviation ()

const gchar* gimp_unit_get_abbreviation     (GimpUnit unit);

+


gimp_unit_get_abbreviation ()

const gchar* gimp_unit_get_abbreviation     (GimpUnit unit);

For built-in units, this function returns the translated abbreviation of the unit.

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

unit: The unit you want to know the abbreviation of.
Returns: The unit's abbreviation. -

gimp_unit_get_singular ()

const gchar* gimp_unit_get_singular         (GimpUnit unit);

+


gimp_unit_get_singular ()

const gchar* gimp_unit_get_singular         (GimpUnit unit);

For built-in units, this function returns the translated singular form of the unit's name.

@@ -139,7 +139,7 @@

unit: The unit you want to know the singular form of.
Returns: The unit's singular form. -

gimp_unit_get_plural ()

const gchar* gimp_unit_get_plural           (GimpUnit unit);

+


gimp_unit_get_plural ()

const gchar* gimp_unit_get_plural           (GimpUnit unit);

For built-in units, this function returns the translated plural form of the unit's name.

@@ -147,16 +147,16 @@

unit: The unit you want to know the plural form of.
Returns: The unit's plural form. -

GIMP_TYPE_UNIT

#define GIMP_TYPE_UNIT               (gimp_unit_get_type ())
+

GIMP_TYPE_UNIT

#define GIMP_TYPE_UNIT               (gimp_unit_get_type ())
 

GIMP_TYPE_UNIT is a GType derived from G_TYPE_INT. -


GIMP_VALUE_HOLDS_UNIT()

#define GIMP_VALUE_HOLDS_UNIT(value) (G_TYPE_CHECK_VALUE_TYPE ((value), GIMP_TYPE_UNIT))
+


GIMP_VALUE_HOLDS_UNIT()

#define GIMP_VALUE_HOLDS_UNIT(value) (G_TYPE_CHECK_VALUE_TYPE ((value), GIMP_TYPE_UNIT))
 

value: -

See Also

+

See Also

GimpUnitMenu diff -uraN gimp-2.2.4/devel-docs/libgimpbase/html/libgimpbase-gimputils.html gimp-2.2.5/devel-docs/libgimpbase/html/libgimpbase-gimputils.html --- gimp-2.2.4/devel-docs/libgimpbase/html/libgimpbase-gimputils.html 2005-02-22 23:13:24.000000000 +0100 +++ gimp-2.2.5/devel-docs/libgimpbase/html/libgimpbase-gimputils.html 2005-04-09 23:10:34.000000000 +0200 @@ -35,9 +35,9 @@ GFlagsValue *flags_value); const gchar* gimp_flags_value_get_help (GFlagsClass *flags_class, GFlagsValue *flags_value); -

Description

+

Description

-

Details

gimp_any_to_utf8 ()

gchar*      gimp_any_to_utf8                (const gchar *str,
+

Details

gimp_any_to_utf8 ()

gchar*      gimp_any_to_utf8                (const gchar *str,
                                              gssize len,
                                              const gchar *warning_format,
                                              ...);

@@ -61,7 +61,7 @@ documentation. ...: The parameters to insert into the format string. Returns: The UTF-8 string as described above. -


gimp_filename_to_utf8 ()

const gchar* gimp_filename_to_utf8          (const gchar *filename);

+


gimp_filename_to_utf8 ()

const gchar* gimp_filename_to_utf8          (const gchar *filename);

Convert a filename in the filesystem's encoding to UTF-8 temporarily. The return value is a pointer to a string that is guaranteed to be valid only during the current iteration of the @@ -74,7 +74,7 @@

filename: The filename to be converted to UTF-8.
Returns: A temporarily valid UTF-8 representation of filename. This string must not be changed or freed. -

gimp_utf8_strtrim ()

gchar*      gimp_utf8_strtrim               (const gchar *str,
+

gimp_utf8_strtrim ()

gchar*      gimp_utf8_strtrim               (const gchar *str,
                                              gint max_chars);

Creates a (possibly trimmed) copy of str. The string is cut if it exceeds max_chars characters or on the first newline. The fact @@ -85,7 +85,7 @@ trimmed Returns: A (possibly trimmed) copy of str which should be freed using g_free() when it is not needed any longer. -


gimp_escape_uline ()

gchar*      gimp_escape_uline               (const gchar *str);

+


gimp_escape_uline ()

gchar*      gimp_escape_uline               (const gchar *str);

This function returns a copy of str with all underline converted to two adjacent underlines. This comes in handy when needing to display strings with underlines (like filenames) in a place that would convert @@ -96,7 +96,7 @@ freed using g_free() when it is not needed any longer.

Since GIMP 2.2 -


gimp_strip_uline ()

gchar*      gimp_strip_uline                (const gchar *str);

+


gimp_strip_uline ()

gchar*      gimp_strip_uline                (const gchar *str);

This function returns a copy of str stripped of underline characters. This comes in handy when needing to strip mnemonics from menu paths etc. @@ -109,7 +109,7 @@

str: underline infested string (or NULL)
Returns: A (possibly stripped) copy of str which should be freed using g_free() when it is not needed any longer. -

gimp_enum_get_desc ()

GimpEnumDesc* gimp_enum_get_desc            (GEnumClass *enum_class,
+

gimp_enum_get_desc ()

GimpEnumDesc* gimp_enum_get_desc            (GEnumClass *enum_class,
                                              gint value);

Retrieves GimpEnumDesc associated with the given value, or NULL.

@@ -118,7 +118,7 @@ Returns: the value's GimpEnumDesc.

Since GIMP 2.2 -


gimp_enum_get_value ()

gboolean    gimp_enum_get_value             (GType enum_type,
+


gimp_enum_get_value ()

gboolean    gimp_enum_get_value             (GType enum_type,
                                              gint value,
                                              const gchar **value_name,
                                              const gchar **value_nick,
@@ -139,7 +139,7 @@
               FALSE otherwise
 
 

Since GIMP 2.2 -


gimp_enum_value_get_desc ()

const gchar* gimp_enum_value_get_desc       (GEnumClass *enum_class,
+


gimp_enum_value_get_desc ()

const gchar* gimp_enum_value_get_desc       (GEnumClass *enum_class,
                                              GEnumValue *enum_value);

Retrieves the translated desc for a given enum_value.

@@ -148,7 +148,7 @@ Returns: the translated desc of the enum value

Since GIMP 2.2 -


gimp_enum_value_get_help ()

const gchar* gimp_enum_value_get_help       (GEnumClass *enum_class,
+


gimp_enum_value_get_help ()

const gchar* gimp_enum_value_get_help       (GEnumClass *enum_class,
                                              GEnumValue *enum_value);

Retrieves the translated help for a given enum_value.

@@ -157,7 +157,7 @@ Returns: the translated help of the enum value

Since GIMP 2.2 -


gimp_flags_get_first_desc ()

GimpFlagsDesc* gimp_flags_get_first_desc    (GFlagsClass *flags_class,
+


gimp_flags_get_first_desc ()

GimpFlagsDesc* gimp_flags_get_first_desc    (GFlagsClass *flags_class,
                                              guint value);

Retrieves the first GimpFlagsDesc that matches the given value, or NULL.

@@ -166,7 +166,7 @@ Returns: the value's GimpFlagsDesc.

Since GIMP 2.2 -


gimp_flags_get_first_value ()

gboolean    gimp_flags_get_first_value      (GType flags_type,
+


gimp_flags_get_first_value ()

gboolean    gimp_flags_get_first_value      (GType flags_type,
                                              guint value,
                                              const gchar **value_name,
                                              const gchar **value_nick,
@@ -187,7 +187,7 @@
               FALSE otherwise
 
 

Since GIMP 2.2 -


gimp_flags_value_get_desc ()

const gchar* gimp_flags_value_get_desc      (GFlagsClass *flags_class,
+


gimp_flags_value_get_desc ()

const gchar* gimp_flags_value_get_desc      (GFlagsClass *flags_class,
                                              GFlagsValue *flags_value);

Retrieves the translated desc for a given flags_value.

@@ -196,7 +196,7 @@ Returns: the translated desc of the flags value

Since GIMP 2.2 -


gimp_flags_value_get_help ()

const gchar* gimp_flags_value_get_help      (GFlagsClass *flags_class,
+


gimp_flags_value_get_help ()

const gchar* gimp_flags_value_get_help      (GFlagsClass *flags_class,
                                              GFlagsValue *flags_value);

Retrieves the translated help for a given flags_value.

diff -uraN gimp-2.2.4/devel-docs/libgimpbase/html/libgimpbase-gimpversion.html gimp-2.2.5/devel-docs/libgimpbase/html/libgimpbase-gimpversion.html --- gimp-2.2.4/devel-docs/libgimpbase/html/libgimpbase-gimpversion.html 2005-02-22 23:13:24.000000000 +0100 +++ gimp-2.2.5/devel-docs/libgimpbase/html/libgimpbase-gimpversion.html 2005-04-09 23:10:34.000000000 +0200 @@ -9,26 +9,26 @@ #define GIMP_VERSION #define GIMP_API_VERSION #define GIMP_CHECK_VERSION (major, minor, micro) -

Description

+

Description

Macros and constants useful for determining GIMP's version number and capabilities. -

Details

GIMP_MAJOR_VERSION

#define GIMP_MAJOR_VERSION                              (2)
+

Details

GIMP_MAJOR_VERSION

#define GIMP_MAJOR_VERSION                              (2)
 

-


GIMP_MINOR_VERSION

#define GIMP_MINOR_VERSION                              (2)
+


GIMP_MINOR_VERSION

#define GIMP_MINOR_VERSION                              (2)
 

-


GIMP_MICRO_VERSION

#define GIMP_MICRO_VERSION                              (4)
+


GIMP_MICRO_VERSION

#define GIMP_MICRO_VERSION                              (5)
 

-


GIMP_VERSION

#define GIMP_VERSION                                    "2.2.4"
+


GIMP_VERSION

#define GIMP_VERSION                                    "2.2.5"
 

-


GIMP_API_VERSION

#define GIMP_API_VERSION                                "2.0"
+


GIMP_API_VERSION

#define GIMP_API_VERSION                                "2.0"
 

Since: GIMP 2.2 -


GIMP_CHECK_VERSION()

#define     GIMP_CHECK_VERSION(major, minor, micro)

+


GIMP_CHECK_VERSION()

#define     GIMP_CHECK_VERSION(major, minor, micro)

major:
minor: diff -uraN gimp-2.2.4/devel-docs/libgimpbase/html/libgimpbase-gimpwire.html gimp-2.2.5/devel-docs/libgimpbase/html/libgimpbase-gimpwire.html --- gimp-2.2.4/devel-docs/libgimpbase/html/libgimpbase-gimpwire.html 2005-02-22 23:13:24.000000000 +0100 +++ gimp-2.2.5/devel-docs/libgimpbase/html/libgimpbase-gimpwire.html 2005-04-09 23:10:34.000000000 +0200 @@ -83,17 +83,17 @@ gchar **data, gint count, gpointer user_data); -

Description

+

Description

The lowlevel I/O protocol used for communication between GIMP and it's plug-ins. -

Details

WireMessage

typedef struct {
+

Details

WireMessage

typedef struct {
   guint32  type;
   gpointer data;
 } WireMessage;
 

-


WireReadFunc ()

void        (*WireReadFunc)                 (GIOChannel *channel,
+


WireReadFunc ()

void        (*WireReadFunc)                 (GIOChannel *channel,
                                              WireMessage *msg,
                                              gpointer user_data);

@@ -102,7 +102,7 @@

user_data: -

WireWriteFunc ()

void        (*WireWriteFunc)                (GIOChannel *channel,
+

WireWriteFunc ()

void        (*WireWriteFunc)                (GIOChannel *channel,
                                              WireMessage *msg,
                                              gpointer user_data);

@@ -111,12 +111,12 @@ user_data: -


WireDestroyFunc ()

void        (*WireDestroyFunc)              (WireMessage *msg);

+


WireDestroyFunc ()

void        (*WireDestroyFunc)              (WireMessage *msg);

msg: -

WireIOFunc ()

gboolean    (*WireIOFunc)                   (GIOChannel *channel,
+

WireIOFunc ()

gboolean    (*WireIOFunc)                   (GIOChannel *channel,
                                              guint8 *buf,
                                              gulong count,
                                              gpointer user_data);

@@ -128,7 +128,7 @@ Returns: -


WireFlushFunc ()

gboolean    (*WireFlushFunc)                (GIOChannel *channel,
+

WireFlushFunc ()

gboolean    (*WireFlushFunc)                (GIOChannel *channel,
                                              gpointer user_data);

channel: @@ -136,7 +136,7 @@
Returns: -

wire_register ()

void        wire_register                   (guint32 type,
+

wire_register ()

void        wire_register                   (guint32 type,
                                              WireReadFunc read_func,
                                              WireWriteFunc write_func,
                                              WireDestroyFunc destroy_func);

@@ -147,22 +147,22 @@ destroy_func: -


wire_set_reader ()

void        wire_set_reader                 (WireIOFunc read_func);

+


wire_set_reader ()

void        wire_set_reader                 (WireIOFunc read_func);

read_func: -

wire_set_writer ()

void        wire_set_writer                 (WireIOFunc write_func);

+


wire_set_writer ()

void        wire_set_writer                 (WireIOFunc write_func);

write_func: -

wire_set_flusher ()

void        wire_set_flusher                (WireFlushFunc flush_func);

+


wire_set_flusher ()

void        wire_set_flusher                (WireFlushFunc flush_func);

flush_func: -

wire_read ()

gboolean    wire_read                       (GIOChannel *channel,
+

wire_read ()

gboolean    wire_read                       (GIOChannel *channel,
                                              guint8 *buf,
                                              gsize count,
                                              gpointer user_data);

@@ -174,7 +174,7 @@ Returns: -


wire_write ()

gboolean    wire_write                      (GIOChannel *channel,
+

wire_write ()

gboolean    wire_write                      (GIOChannel *channel,
                                              guint8 *buf,
                                              gsize count,
                                              gpointer user_data);

@@ -186,7 +186,7 @@ Returns: -


wire_flush ()

gboolean    wire_flush                      (GIOChannel *channel,
+

wire_flush ()

gboolean    wire_flush                      (GIOChannel *channel,
                                              gpointer user_data);

channel: @@ -194,14 +194,14 @@
Returns: -

wire_error ()

gboolean    wire_error                      (void);

+


wire_error ()

gboolean    wire_error                      (void);

Returns: -

wire_clear_error ()

void        wire_clear_error                (void);

+


wire_clear_error ()

void        wire_clear_error                (void);

-


wire_read_msg ()

gboolean    wire_read_msg                   (GIOChannel *channel,
+


wire_read_msg ()

gboolean    wire_read_msg                   (GIOChannel *channel,
                                              WireMessage *msg,
                                              gpointer user_data);

@@ -211,7 +211,7 @@ Returns: -


wire_write_msg ()

gboolean    wire_write_msg                  (GIOChannel *channel,
+

wire_write_msg ()

gboolean    wire_write_msg                  (GIOChannel *channel,
                                              WireMessage *msg,
                                              gpointer user_data);

@@ -221,12 +221,12 @@ Returns: -


wire_destroy ()

void        wire_destroy                    (WireMessage *msg);

+


wire_destroy ()

void        wire_destroy                    (WireMessage *msg);

msg: -

wire_read_int32 ()

gboolean    wire_read_int32                 (GIOChannel *channel,
+

wire_read_int32 ()

gboolean    wire_read_int32                 (GIOChannel *channel,
                                              guint32 *data,
                                              gint count,
                                              gpointer user_data);

@@ -238,7 +238,7 @@ Returns: -


wire_read_int16 ()

gboolean    wire_read_int16                 (GIOChannel *channel,
+

wire_read_int16 ()

gboolean    wire_read_int16                 (GIOChannel *channel,
                                              guint16 *data,
                                              gint count,
                                              gpointer user_data);

@@ -250,7 +250,7 @@ Returns: -


wire_read_int8 ()

gboolean    wire_read_int8                  (GIOChannel *channel,
+

wire_read_int8 ()

gboolean    wire_read_int8                  (GIOChannel *channel,
                                              guint8 *data,
                                              gint count,
                                              gpointer user_data);

@@ -262,7 +262,7 @@ Returns: -


wire_read_double ()

gboolean    wire_read_double                (GIOChannel *channel,
+

wire_read_double ()

gboolean    wire_read_double                (GIOChannel *channel,
                                              gdouble *data,
                                              gint count,
                                              gpointer user_data);

@@ -274,7 +274,7 @@ Returns: -


wire_read_string ()

gboolean    wire_read_string                (GIOChannel *channel,
+

wire_read_string ()

gboolean    wire_read_string                (GIOChannel *channel,
                                              gchar **data,
                                              gint count,
                                              gpointer user_data);

@@ -286,7 +286,7 @@ Returns: -


wire_write_int32 ()

gboolean    wire_write_int32                (GIOChannel *channel,
+

wire_write_int32 ()

gboolean    wire_write_int32                (GIOChannel *channel,
                                              guint32 *data,
                                              gint count,
                                              gpointer user_data);

@@ -298,7 +298,7 @@ Returns: -


wire_write_int16 ()

gboolean    wire_write_int16                (GIOChannel *channel,
+

wire_write_int16 ()

gboolean    wire_write_int16                (GIOChannel *channel,
                                              guint16 *data,
                                              gint count,
                                              gpointer user_data);

@@ -310,7 +310,7 @@ Returns: -


wire_write_int8 ()

gboolean    wire_write_int8                 (GIOChannel *channel,
+

wire_write_int8 ()

gboolean    wire_write_int8                 (GIOChannel *channel,
                                              guint8 *data,
                                              gint count,
                                              gpointer user_data);

@@ -322,7 +322,7 @@ Returns: -


wire_write_double ()

gboolean    wire_write_double               (GIOChannel *channel,
+

wire_write_double ()

gboolean    wire_write_double               (GIOChannel *channel,
                                              gdouble *data,
                                              gint count,
                                              gpointer user_data);

@@ -334,7 +334,7 @@ Returns: -


wire_write_string ()

gboolean    wire_write_string               (GIOChannel *channel,
+

wire_write_string ()

gboolean    wire_write_string               (GIOChannel *channel,
                                              gchar **data,
                                              gint count,
                                              gpointer user_data);

@@ -346,6 +346,6 @@ Returns: -

See Also

+

See Also

libgimp-gimpprotocol

diff -uraN gimp-2.2.4/devel-docs/libgimpbase/xml/gimpversion.xml gimp-2.2.5/devel-docs/libgimpbase/xml/gimpversion.xml --- gimp-2.2.4/devel-docs/libgimpbase/xml/gimpversion.xml 2005-02-22 23:13:24.000000000 +0100 +++ gimp-2.2.5/devel-docs/libgimpbase/xml/gimpversion.xml 2005-04-09 23:10:34.000000000 +0200 @@ -64,14 +64,14 @@ <anchor id="GIMP-MICRO-VERSION:CAPS"/>GIMP_MICRO_VERSION -GIMP_MICRO_VERSION#define GIMP_MICRO_VERSION (4) +GIMP_MICRO_VERSION#define GIMP_MICRO_VERSION (5) <anchor id="GIMP-VERSION:CAPS"/>GIMP_VERSION -GIMP_VERSION#define GIMP_VERSION "2.2.4" +GIMP_VERSION#define GIMP_VERSION "2.2.5" diff -uraN gimp-2.2.4/devel-docs/libgimpwidgets/html/GimpButton.html gimp-2.2.5/devel-docs/libgimpwidgets/html/GimpButton.html --- gimp-2.2.4/devel-docs/libgimpwidgets/html/GimpButton.html 2005-02-22 23:13:30.000000000 +0100 +++ gimp-2.2.5/devel-docs/libgimpwidgets/html/GimpButton.html 2005-04-09 23:10:40.000000000 +0200 @@ -1,79 +1,81 @@ -GimpButton

GimpButton

GimpButton — A GtkButton with a little extra functionality.

Synopsis

+GimpButton

GimpButton

GimpButton — A GtkButton with a little extra functionality.

Synopsis

 
 
 
-struct      GimpButton;
-GtkWidget*  gimp_button_new                 (void);
+            GimpButton;
+GtkWidget*  gimp_button_new                 (void);
 void        gimp_button_extended_clicked    (GimpButton *button,
-                                             GdkModifierType state);
-
-

Object Hierarchy

-
-  GObject
-   +----GtkObject
-         +----GtkWidget
-               +----GtkContainer
-                     +----GtkBin
-                           +----GtkButton
+                                             GdkModifierType state);
+
+

Object Hierarchy

+
+  GObject
+   +----GtkObject
+         +----GtkWidget
+               +----GtkContainer
+                     +----GtkBin
+                           +----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

-GimpButton adds an extra signal to the GtkButton widget that allows + GdkModifierType arg1, + gpointer user_data); +

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

GimpButton

typedef struct _GimpButton 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,
-                                             GdkModifierType state);

+

Returns: A pointer to the new GimpButton widget. +

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,
-                                            GdkModifierType arg1,
-                                            gpointer user_data);

+

Signals

The "extended-clicked" signal

void        user_function                  (GimpButton *gimpbutton,
+                                            GdkModifierType arg1,
+                                            gpointer user_data);

gimpbutton:the object which received the signal.
arg1:the state of modifier keys when the button was clicked diff -uraN gimp-2.2.4/devel-docs/libgimpwidgets/html/GimpCellRendererColor.html gimp-2.2.5/devel-docs/libgimpwidgets/html/GimpCellRendererColor.html --- gimp-2.2.4/devel-docs/libgimpwidgets/html/GimpCellRendererColor.html 2005-02-22 23:13:30.000000000 +0100 +++ gimp-2.2.5/devel-docs/libgimpwidgets/html/GimpCellRendererColor.html 2005-04-09 23:10:40.000000000 +0200 @@ -1,65 +1,55 @@ -GimpCellRendererColor

GimpCellRendererColor

GimpCellRendererColor —

Synopsis

+GimpCellRendererColor

GimpCellRendererColor

GimpCellRendererColor —

Object Hierarchy

+

Object Hierarchy

 
-  GObject
-   +----GtkObject
-         +----GtkCellRenderer
+  GObject
+   +----GtkObject
+         +----GtkCellRenderer
                +----GimpCellRendererColor
-

Properties

+

Properties

 
   "color"                GimpRGB              : Read / Write
-  "icon-size"            gint                 : Read / Write / Construct
-  "opaque"               gboolean             : Read / Write / Construct
-

Description

- -

Details

struct GimpCellRendererColor

struct GimpCellRendererColor;

- -


gimp_cell_renderer_color_new ()

GtkCellRenderer* gimp_cell_renderer_color_new
+>GimpRGB               : Read / Write
+  "icon-size"            gint                  : Read / Write / Construct
+  "opaque"               gboolean              : Read / Write / Construct
+

Description

+ +

Details

GimpCellRendererColor

typedef struct _GimpCellRendererColor GimpCellRendererColor;

+ +


gimp_cell_renderer_color_new ()

GtkCellRenderer* gimp_cell_renderer_color_new
                                             (void);

-Creates a GtkCellRenderer that displays a color.

+Creates a GtkCellRenderer that displays a color.

-

Returns : a new GimpCellRendererColor +

Returns: a new GimpCellRendererColor

Since GIMP 2.2 -

Properties

"color" (

Properties

The "color" property

  "color"                GimpRGB : Read / Write)

"icon-size" (gint : Read / Write / Construct)

"opaque" (gboolean : Read / Write / Construct)

+>GimpRGB : Read / Write


The "icon-size" property

  "icon-size"            gint                  : Read / Write / Construct

Allowed values: >= 0

Default value: 1


The "opaque" property

  "opaque"               gboolean              : Read / Write / Construct

Default value: TRUE

diff -uraN gimp-2.2.4/devel-docs/libgimpwidgets/html/GimpCellRendererToggle.html gimp-2.2.5/devel-docs/libgimpwidgets/html/GimpCellRendererToggle.html --- gimp-2.2.4/devel-docs/libgimpwidgets/html/GimpCellRendererToggle.html 2005-02-22 23:13:30.000000000 +0100 +++ gimp-2.2.5/devel-docs/libgimpwidgets/html/GimpCellRendererToggle.html 2005-04-09 23:10:40.000000000 +0200 @@ -1,92 +1,108 @@ -GimpCellRendererToggle

GimpCellRendererToggle

GimpCellRendererToggle —

Synopsis

+GimpCellRendererToggle

GimpCellRendererToggle

GimpCellRendererToggle —

Synopsis

 
 
 
-struct      GimpCellRendererToggle;
-GtkCellRenderer* gimp_cell_renderer_toggle_new
-                                            (const gchar *stock_id);
+            GimpCellRendererToggle;
+GtkCellRenderer* gimp_cell_renderer_toggle_new
+                                            (const gchar *stock_id);
 void        gimp_cell_renderer_toggle_clicked
                                             (GimpCellRendererToggle *cell,
-                                             const gchar *path,
-                                             GdkModifierType state);
-
-

Object Hierarchy

-
-  GObject
-   +----GtkObject
-         +----GtkCellRenderer
-               +----GtkCellRendererToggle
+                                             const gchar *path,
+                                             GdkModifierType state);
+
+

Object Hierarchy

+
+  GObject
+   +----GtkObject
+         +----GtkCellRenderer
+               +----GtkCellRendererToggle
                      +----GimpCellRendererToggle
-

Properties

+

Properties

 
-  "stock-id"             gchararray           : Read / Write / Construct
-  "stock-size"           gint                 : Read / Write / Construct
-

Signal Prototypes

+  "stock-id"             gchararray            : Read / Write / Construct
+  "stock-size"           gint                  : Read / Write / Construct
+

Signal Prototypes

 
 "clicked"   void        user_function      (GimpCellRendererToggle *gimpcellrenderertoggle,
-                                            gchar *arg1,
-                                            GdkModifierType arg2,
-                                            gpointer user_data);
-

Description

- -

Details

struct GimpCellRendererToggle

struct GimpCellRendererToggle;

- -


gimp_cell_renderer_toggle_new ()

GtkCellRenderer* gimp_cell_renderer_toggle_new
-                                            (const gchar *stock_id);

-Creates a custom version of the GtkCellRendererToggle. Instead of + gchar *arg1, + GdkModifierType arg2, + gpointer user_data); +

Description

+ +

Details

GimpCellRendererToggle

typedef struct _GimpCellRendererToggle GimpCellRendererToggle;

+ +


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 cell is active and no icon otherwise. This cell renderer is for example used in the Layers treeview to indicate and control the layer's visibility by showing GIMP_STOCK_VISIBLE.

stock_id: the stock_id of the icon to use for the active state -
Returns : a new GimpCellRendererToggle +
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);

+ const gchar *path, + GdkModifierType state);

Emits the "clicked" signal from a GimpCellRendererToggle.

cell: a GimpCellRendererToggle
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,
-                                            gchar *arg1,
-                                            GdkModifierType arg2,
-                                            gpointer user_data);

+

Properties

The "stock-id" property

  "stock-id"             gchararray            : Read / Write / Construct

Default value: NULL


The "stock-size" property

  "stock-size"           gint                  : Read / Write / Construct

Allowed values: >= 0

Default value: 4

Signals

The "clicked" signal

void        user_function                  (GimpCellRendererToggle *gimpcellrenderertoggle,
+                                            gchar *arg1,
+                                            GdkModifierType arg2,
+                                            gpointer user_data);

gimpcellrenderertoggle:the object which received the signal.
arg1: diff -uraN gimp-2.2.4/devel-docs/libgimpwidgets/html/GimpChainButton.html gimp-2.2.5/devel-docs/libgimpwidgets/html/GimpChainButton.html --- gimp-2.2.4/devel-docs/libgimpwidgets/html/GimpChainButton.html 2005-02-22 23:13:30.000000000 +0100 +++ gimp-2.2.5/devel-docs/libgimpwidgets/html/GimpChainButton.html 2005-04-09 23:10:40.000000000 +0200 @@ -1,59 +1,47 @@ -GimpChainButton

GimpChainButton

GimpChainButton — Widget to visually connect two entry widgets.

Synopsis

+GimpChainButton

GimpChainButton

GimpChainButton — Widget to visually connect two entry widgets.

Object Hierarchy

-
-  GObject
-   +----GtkObject
-         +----GtkWidget
-               +----GtkContainer
-                     +----GtkTable
+                                             gboolean active);
+gboolean    gimp_chain_button_get_active    (GimpChainButton *button);
+
+

Object Hierarchy

+
+  GObject
+   +----GtkObject
+         +----GtkWidget
+               +----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

+ gpointer user_data); +

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 +53,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

GimpChainButton

typedef struct _GimpChainButton GimpChainButton;

-


enum GimpChainPosition

typedef enum
+


enum GimpChainPosition

typedef enum
 {
   GIMP_CHAIN_TOP,
   GIMP_CHAIN_LEFT,
@@ -76,7 +64,9 @@
 } 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 @@ -88,27 +78,33 @@

position: The position you are going to use for the button with respect to the widgets you want to chain. -
Returns : Pointer to the new GimpChainButton, which is inactive +
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,
-                                             gboolean active);

+


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,
-                                            gpointer user_data);

+

Returns: TRUE if the GimpChainButton is active (locked). +

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.4/devel-docs/libgimpwidgets/html/GimpColorArea.html gimp-2.2.5/devel-docs/libgimpwidgets/html/GimpColorArea.html --- gimp-2.2.4/devel-docs/libgimpwidgets/html/GimpColorArea.html 2005-02-22 23:13:30.000000000 +0100 +++ gimp-2.2.5/devel-docs/libgimpwidgets/html/GimpColorArea.html 2005-04-09 23:10:40.000000000 +0200 @@ -1,44 +1,18 @@ -GimpColorArea

GimpColorArea

GimpColorArea — Displays a GimpRGB color, optionally with alpha-channel.

Synopsis

+GimpColorArea

GimpColorArea

GimpColorArea — Displays a GimpRGB color, optionally with alpha-channel.

Synopsis

 
 
 
-struct      GimpColorArea;
+            GimpColorArea;
 enum        GimpColorAreaType;
-GtkWidget*  gimp_color_area_new             (const GtkWidget*  gimp_color_area_new             (const GimpRGB *color,
                                              GimpColorAreaType type,
-                                             GdkModifierType drag_mask);
+                                             GdkModifierType drag_mask);
 void        gimp_color_area_set_color       (GimpColorArea *area,
                                              const GimpRGB *color);
-gboolean    gimp_color_area_has_alpha       (GimpColorArea *area);
+gboolean    gimp_color_area_has_alpha       (GimpColorArea *area);
 void        gimp_color_area_set_type        (GimpColorArea *area,
                                              GimpColorAreaType type);
 void        gimp_color_area_set_draw_border (GimpColorArea *area,
-                                             gboolean draw_border);
+                                             gboolean draw_border);
 
-

Object Hierarchy

+

Object Hierarchy

 
-  GObject
-   +----GtkObject
-         +----GtkWidget
-               +----GtkDrawingArea
+  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

+ gpointer user_data); +

Description

-

Details

struct GimpColorArea

struct GimpColorArea;

+

Details

GimpColorArea

typedef struct _GimpColorArea GimpColorArea;

-


enum GimpColorAreaType

typedef enum
+


enum GimpColorAreaType

typedef enum
 {
   GIMP_COLOR_AREA_FLAT = 0,
   GIMP_COLOR_AREA_SMALL_CHECKS,
@@ -79,11 +67,15 @@
 } GimpColorAreaType;
 

-


gimp_color_area_new ()

GtkWidget*  gimp_color_area_new             (const 

gimp_color_area_new ()

GtkWidget*  gimp_color_area_new             (const GimpRGB *color,
                                              GimpColorAreaType type,
-                                             GdkModifierType drag_mask);

+ GdkModifierType drag_mask);

Creates a new GimpColorArea widget.

This returns a preview area showing the color. It handles color @@ -94,8 +86,8 @@ >GimpRGB struct. 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,
+Returns: Pointer to the new GimpColorArea widget.
+

gimp_color_area_set_color ()

void        gimp_color_area_set_color       (GimpColorArea *area,
                                              const GimpRGB *color);

@@ -105,7 +97,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 +107,15 @@ 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,
+Returns: TRUE if area shows transparency information, FALSE otherwise.
+

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,16 +123,20 @@

area: Pointer to a GimpColorArea.
type: A GimpColorAreaType. -

gimp_color_area_set_draw_border ()

void        gimp_color_area_set_draw_border (GimpColorArea *area,
-                                             gboolean draw_border);

+


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 off. The default is not draw a border.

area: Pointer to a GimpColorArea.
draw_border: whether to draw a border or not -

Signals

The "color-changed" signal

void        user_function                  (GimpColorArea *gimpcolorarea,
-                                            gpointer user_data);

+

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.4/devel-docs/libgimpwidgets/html/GimpColorButton.html gimp-2.2.5/devel-docs/libgimpwidgets/html/GimpColorButton.html --- gimp-2.2.4/devel-docs/libgimpwidgets/html/GimpColorButton.html 2005-02-22 23:13:30.000000000 +0100 +++ gimp-2.2.5/devel-docs/libgimpwidgets/html/GimpColorButton.html 2005-04-09 23:10:40.000000000 +0200 @@ -1,41 +1,19 @@ -GimpColorButton

GimpColorButton

GimpColorButton — Widget for selecting a color from a simple button.

Synopsis

+GimpColorButton

GimpColorButton

GimpColorButton — Widget for selecting a color from a simple button.

Synopsis

 
 
 
-struct      GimpColorButton;
-GtkWidget*  gimp_color_button_new           (const gchar *title,
-                                             gint width,
-                                             gint height,
+            GimpColorButton;
+GtkWidget*  gimp_color_button_new           (const gchar *title,
+                                             gint width,
+                                             gint height,
                                              const GimpRGB *color,
@@ -49,30 +27,50 @@
 href="../libgimpcolor/libgimpcolor-GimpRGB.html#GimpRGB"
 >GimpRGB *color);
 void        gimp_color_button_set_update    (GimpColorButton *button,
-                                             gboolean continuous);
-gboolean    gimp_color_button_get_update    (GimpColorButton *button);
-gboolean    gimp_color_button_has_alpha     (GimpColorButton *button);
+                                             gboolean continuous);
+gboolean    gimp_color_button_get_update    (GimpColorButton *button);
+gboolean    gimp_color_button_has_alpha     (GimpColorButton *button);
 void        gimp_color_button_set_type      (GimpColorButton *button,
                                              GimpColorAreaType type);
 
-

Object Hierarchy

+

Object Hierarchy

 
-  GObject
-   +----GtkObject
-         +----GtkWidget
-               +----GtkContainer
-                     +----GtkBin
-                           +----GtkButton
+  GObject
+   +----GtkObject
+         +----GtkWidget
+               +----GtkContainer
+                     +----GtkBin
+                           +----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

+ gpointer user_data); +

Description

This widget provides a simple button with a preview showing the color.

@@ -80,11 +78,19 @@ 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

GimpColorButton

typedef struct _GimpColorButton GimpColorButton;

-


gimp_color_button_new ()

GtkWidget*  gimp_color_button_new           (const gchar *title,
-                                             gint width,
-                                             gint height,
+


gimp_color_button_new ()

GtkWidget*  gimp_color_button_new           (const gchar *title,
+                                             gint width,
+                                             gint height,
                                              const GimpRGB *color,
@@ -104,8 +110,8 @@
 href="../libgimpcolor/libgimpcolor-GimpRGB.html#GimpRGB"
 >GimpRGB color.
 
type: -
Returns : Pointer to the new GimpColorButton widget. -

gimp_color_button_set_color ()

void        gimp_color_button_set_color     (GimpColorButton *button,
+Returns: Pointer to the new GimpColorButton widget.
+

gimp_color_button_set_color ()

void        gimp_color_button_set_color     (GimpColorButton *button,
                                              const GimpRGB *color);

@@ -115,7 +121,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,36 +131,46 @@ color: Pointer to a GimpRGB struct used to return the color. -


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" +


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 dialog.

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);

+Returns: the continuous_update property. +


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. -
Returns : TRUE if the button shows transparency information, FALSE +
Returns: TRUE if the button shows transparency information, FALSE otherwise. -

gimp_color_button_set_type ()

void        gimp_color_button_set_type      (GimpColorButton *button,
+

gimp_color_button_set_type ()

void        gimp_color_button_set_type      (GimpColorButton *button,
                                              GimpColorAreaType type);

Sets the button to the given type. See also gimp_color_area_set_type().

button: Pointer to a GimpColorButton.
type: the new GimpColorAreaType -

Signals

The "color-changed" signal

void        user_function                  (GimpColorButton *gimpcolorbutton,
-                                            gpointer user_data);

+

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.4/devel-docs/libgimpwidgets/html/GimpColorDisplay.html gimp-2.2.5/devel-docs/libgimpwidgets/html/GimpColorDisplay.html --- gimp-2.2.4/devel-docs/libgimpwidgets/html/GimpColorDisplay.html 2005-02-22 23:13:30.000000000 +0100 +++ gimp-2.2.5/devel-docs/libgimpwidgets/html/GimpColorDisplay.html 2005-04-09 23:10:40.000000000 +0200 @@ -1,49 +1,35 @@ -GimpColorDisplay

GimpColorDisplay

GimpColorDisplay — Pluggable GIMP display color correction modules.

Synopsis

+GimpColorDisplay

GimpColorDisplay

GimpColorDisplay — Pluggable GIMP display color correction modules.

Object Hierarchy

+

Object Hierarchy

 
-  GObject
+  GObject
    +----GimpColorDisplay
-

Properties

+

Properties

 
-  "enabled"              gboolean             : Read / Write / Construct
-

Signal Prototypes

+  "enabled"              gboolean              : Read / Write / Construct
+

Signal Prototypes

 
 "changed"   void        user_function      (GimpColorDisplay *gimpcolordisplay,
-                                            gpointer user_data);
-

Description

+ gpointer user_data); +

Description

Functions and definitions for creating pluggable GIMP display color correction modules. -

Details

struct GimpColorDisplay

struct GimpColorDisplay;

+

Details

GimpColorDisplay

typedef struct _GimpColorDisplay 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 : +
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 : +
Returns: -

gimp_color_display_set_enabled ()

void        gimp_color_display_set_enabled  (GimpColorDisplay *display,
-                                             gboolean enabled);

+


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 : +
Returns: -

gimp_color_display_convert ()

void        gimp_color_display_convert      (GimpColorDisplay *display,
-                                             guchar *buf,
-                                             gint width,
-                                             gint height,
-                                             gint bpp,
-                                             gint bpl);

+


gimp_color_display_convert ()

void        gimp_color_display_convert      (GimpColorDisplay *display,
+                                             guchar *buf,
+                                             gint width,
+                                             gint height,
+                                             gint bpp,
+                                             gint bpl);

display:
buf: @@ -112,7 +122,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,40 +131,50 @@ state: -


gimp_color_display_save_state ()


gimp_color_display_save_state ()

GimpParasite* gimp_color_display_save_state (GimpColorDisplay *display);

display: -
Returns : +
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 : +
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,
-                                            gpointer user_data);

+

Properties

The "enabled" property

  "enabled"              gboolean              : Read / Write / Construct

Default value: TRUE

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

-GModule +user_data:user data set when the signal handler was connected.

See Also

+GModule

-GTypeModule +GTypeModule

libgimp-gimpmodule

diff -uraN gimp-2.2.4/devel-docs/libgimpwidgets/html/GimpColorDisplayStack.html gimp-2.2.5/devel-docs/libgimpwidgets/html/GimpColorDisplayStack.html --- gimp-2.2.4/devel-docs/libgimpwidgets/html/GimpColorDisplayStack.html 2005-02-22 23:13:30.000000000 +0100 +++ gimp-2.2.5/devel-docs/libgimpwidgets/html/GimpColorDisplayStack.html 2005-04-09 23:10:40.000000000 +0200 @@ -1,38 +1,8 @@ -GimpColorDisplayStack

GimpColorDisplayStack

GimpColorDisplayStack —

Synopsis

+GimpColorDisplayStack

GimpColorDisplayStack

GimpColorDisplayStack —

Synopsis

 
 
 
-struct      GimpColorDisplayStack;
+            GimpColorDisplayStack;
 GimpColorDisplayStack* gimp_color_display_stack_new
                                             (void);
 GimpColorDisplayStack* gimp_color_display_stack_clone
@@ -51,69 +21,93 @@
                                              GimpColorDisplay *display);
 void        gimp_color_display_stack_convert
                                             (GimpColorDisplayStack *stack,
-                                             guchar *buf,
-                                             gint width,
-                                             gint height,
-                                             gint bpp,
-                                             gint bpl);
-
-

Object Hierarchy

-
-  GObject
+                                             guchar *buf,
+                                             gint width,
+                                             gint height,
+                                             gint bpp,
+                                             gint bpl);
+
+

Object Hierarchy

+
+  GObject
    +----GimpColorDisplayStack
-

Signal Prototypes

+

Signal Prototypes

 
 "added"     void        user_function      (GimpColorDisplayStack *gimpcolordisplaystack,
                                             GimpColorDisplay *arg1,
-                                            gint arg2,
-                                            gpointer user_data);
+                                            gint arg2,
+                                            gpointer user_data);
 "changed"   void        user_function      (GimpColorDisplayStack *gimpcolordisplaystack,
-                                            gpointer user_data);
+                                            gpointer user_data);
 "removed"   void        user_function      (GimpColorDisplayStack *gimpcolordisplaystack,
                                             GimpColorDisplay *arg1,
-                                            gpointer user_data);
+                                            gpointer user_data);
 "reordered" void        user_function      (GimpColorDisplayStack *gimpcolordisplaystack,
                                             GimpColorDisplay *arg1,
-                                            gint arg2,
-                                            gpointer user_data);
-

Description

+ gint arg2, + gpointer user_data); +

Description

-

Details

struct GimpColorDisplayStack

struct GimpColorDisplayStack;

+

Details

GimpColorDisplayStack

typedef struct _GimpColorDisplayStack 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 : +

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 : +
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 +115,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,13 +123,23 @@ 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,
-                                             gint height,
-                                             gint bpp,
-                                             gint bpl);

+ guchar *buf, + gint width, + gint height, + gint bpp, + gint bpl);

stack:
buf: @@ -145,31 +149,43 @@
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);

+ gint arg2, + gpointer user_data);

gimpcolordisplaystack:the object which received the signal.
arg1:
arg2: -
user_data:user data set when the signal handler was connected.

The "changed" signal

void        user_function                  (GimpColorDisplayStack *gimpcolordisplaystack,
-                                            gpointer user_data);

+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);

+ 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);

+ gint arg2, + gpointer user_data);

gimpcolordisplaystack:the object which received the signal.
arg1: diff -uraN gimp-2.2.4/devel-docs/libgimpwidgets/html/GimpColorHexEntry.html gimp-2.2.5/devel-docs/libgimpwidgets/html/GimpColorHexEntry.html --- gimp-2.2.4/devel-docs/libgimpwidgets/html/GimpColorHexEntry.html 2005-02-22 23:13:30.000000000 +0100 +++ gimp-2.2.5/devel-docs/libgimpwidgets/html/GimpColorHexEntry.html 2005-04-09 23:10:40.000000000 +0200 @@ -1,39 +1,11 @@ -GimpColorHexEntry

GimpColorHexEntry

GimpColorHexEntry — Widget for entering a color's hex triplet.

Synopsis

+GimpColorHexEntry

GimpColorHexEntry

GimpColorHexEntry — Widget for entering a color's hex triplet.

Object Hierarchy

+

Object Hierarchy

 
-  GObject
-   +----GtkObject
-         +----GtkWidget
-               +----GtkEntry
+  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

+ gpointer user_data); +

Description

Widget for entering a color's hex triplet. -

Details

struct GimpColorHexEntry

struct GimpColorHexEntry;

+

Details

GimpColorHexEntry

typedef struct _GimpColorHexEntry 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 +

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 +68,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,8 +79,10 @@ href="../libgimpcolor/libgimpcolor-GimpRGB.html#GimpRGB" >GimpRGB

Since GIMP 2.2 -

Signals

The "color-changed" signal

void        user_function                  (GimpColorHexEntry *gimpcolorhexentry,
-                                            gpointer user_data);

+

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.4/devel-docs/libgimpwidgets/html/GimpColorNotebook.html gimp-2.2.5/devel-docs/libgimpwidgets/html/GimpColorNotebook.html --- gimp-2.2.4/devel-docs/libgimpwidgets/html/GimpColorNotebook.html 2005-02-22 23:13:30.000000000 +0100 +++ gimp-2.2.5/devel-docs/libgimpwidgets/html/GimpColorNotebook.html 2005-04-09 23:10:40.000000000 +0200 @@ -1,74 +1,84 @@ -GimpColorNotebook

GimpColorNotebook

GimpColorNotebook — A GimpColorSelector implementation.

Synopsis

+GimpColorNotebook

GimpColorNotebook

GimpColorNotebook — A GimpColorSelector implementation.

Synopsis

 
 
 
-struct      GimpColorNotebook;
-GtkWidget*  gimp_color_notebook_set_has_page
+            GimpColorNotebook;
+GtkWidget*  gimp_color_notebook_set_has_page
                                             (GimpColorNotebook *notebook,
-                                             GType page_type,
-                                             gboolean has_page);
-
-

Object Hierarchy

-
-  GObject
-   +----GtkObject
-         +----GtkWidget
-               +----GtkContainer
-                     +----GtkBox
-                           +----GtkVBox
+                                             GType page_type,
+                                             gboolean has_page);
+
+

Object Hierarchy

+
+  GObject
+   +----GtkObject
+         +----GtkWidget
+               +----GtkContainer
+                     +----GtkBox
+                           +----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

+ "tab-border" gint : Read + "tab-icon-size" GtkIconSize : Read +

Description

The GimpColorNotebook widget is an implementation of a GimpColorSelector. It serves as a container for GimpColorSelectors. -

Details

struct GimpColorNotebook

struct GimpColorNotebook;

+

Details

GimpColorNotebook

typedef struct _GimpColorNotebook 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);

+ GType page_type, + gboolean has_page);

This function adds and removed pages to / from a GimpColorNotebook. The page_type passed must be a GimpColorSelector subtype.

notebook: A GimpColorNotebook widget. -
page_type: The GType of the notebook page to add or remove. +
page_type: The GType of the notebook page to add or remove.
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.

+
Returns: The new page widget, if has_page was TRUE, or NULL + if has_page was FALSE. +

Style Properties

The "tab-border" style property

  "tab-border"           gint                  : Read

Width of the border around the tab contents.

Allowed values: >= 0

Default value: 0


The "tab-icon-size" style property

  "tab-icon-size"        GtkIconSize           : Read

Size for icons displayed in the tab.

Default value: GTK_ICON_SIZE_BUTTON

diff -uraN gimp-2.2.4/devel-docs/libgimpwidgets/html/GimpColorScale.html gimp-2.2.5/devel-docs/libgimpwidgets/html/GimpColorScale.html --- gimp-2.2.4/devel-docs/libgimpwidgets/html/GimpColorScale.html 2005-02-22 23:13:30.000000000 +0100 +++ gimp-2.2.5/devel-docs/libgimpwidgets/html/GimpColorScale.html 2005-04-09 23:10:40.000000000 +0200 @@ -1,39 +1,13 @@ -GimpColorScale

GimpColorScale

GimpColorScale — Fancy colored sliders.

Synopsis

+GimpColorScale

GimpColorScale

GimpColorScale — Fancy colored sliders.

Synopsis

 
 
 
-struct      GimpColorScale;
-GtkWidget*  gimp_color_scale_new            (GtkOrientation orientation,
+            GimpColorScale;
+GtkWidget*  gimp_color_scale_new            (GtkOrientation orientation,
                                              GimpColorSelectorChannel channel);
 void        gimp_color_scale_set_channel    (GimpColorScale *scale,
                                              GimpColorSelectorChannel channel);
@@ -45,34 +19,48 @@
 href="../libgimpcolor/libgimpcolor-GimpHSV.html#GimpHSV"
 >GimpHSV *hsv);
 
-

Object Hierarchy

+

Object Hierarchy

 
-  GObject
-   +----GtkObject
-         +----GtkWidget
-               +----GtkRange
-                     +----GtkScale
+  GObject
+   +----GtkObject
+         +----GtkWidget
+               +----GtkRange
+                     +----GtkScale
                            +----GimpColorScale
-

Implemented Interfaces

+

Implemented Interfaces

GimpColorScale implements - AtkImplementorIface.

Description

+ AtkImplementorIface.

Description

-

Details

struct GimpColorScale

struct GimpColorScale;

+

Details

GimpColorScale

typedef struct _GimpColorScale 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,
+Returns: a new GimpColorScale widget
+

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.4/devel-docs/libgimpwidgets/html/GimpColorScales.html gimp-2.2.5/devel-docs/libgimpwidgets/html/GimpColorScales.html
--- gimp-2.2.4/devel-docs/libgimpwidgets/html/GimpColorScales.html	2005-02-22 23:13:30.000000000 +0100
+++ gimp-2.2.5/devel-docs/libgimpwidgets/html/GimpColorScales.html	2005-04-09 23:10:40.000000000 +0200
@@ -1,55 +1,37 @@
-GimpColorScales

GimpColorScales

GimpColorScales — A GimpColorSelector implementation.

Synopsis

+GimpColorScales

GimpColorScales

GimpColorScales — A GimpColorSelector implementation.

Synopsis

 
 
 
-struct      GimpColorScales;
-
-

Object Hierarchy

-
-  GObject
-   +----GtkObject
-         +----GtkWidget
-               +----GtkContainer
-                     +----GtkBox
-                           +----GtkVBox
+            GimpColorScales;
+
+

Object Hierarchy

+
+  GObject
+   +----GtkObject
+         +----GtkWidget
+               +----GtkContainer
+                     +----GtkBox
+                           +----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

GimpColorScales

typedef struct _GimpColorScales GimpColorScales;

diff -uraN gimp-2.2.4/devel-docs/libgimpwidgets/html/GimpColorSelect.html gimp-2.2.5/devel-docs/libgimpwidgets/html/GimpColorSelect.html --- gimp-2.2.4/devel-docs/libgimpwidgets/html/GimpColorSelect.html 2005-02-22 23:13:30.000000000 +0100 +++ gimp-2.2.5/devel-docs/libgimpwidgets/html/GimpColorSelect.html 2005-04-09 23:10:40.000000000 +0200 @@ -1,57 +1,39 @@ -GimpColorSelect

GimpColorSelect

GimpColorSelect — A GimpColorSelector implementation.

Synopsis

+GimpColorSelect

GimpColorSelect

GimpColorSelect — A GimpColorSelector implementation.

Synopsis

 
 
 
-struct      GimpColorSelect;
-
-

Object Hierarchy

-
-  GObject
-   +----GtkObject
-         +----GtkWidget
-               +----GtkContainer
-                     +----GtkBox
-                           +----GtkVBox
+            GimpColorSelect;
+
+

Object Hierarchy

+
+  GObject
+   +----GtkObject
+         +----GtkWidget
+               +----GtkContainer
+                     +----GtkBox
+                           +----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

GimpColorSelect

typedef struct _GimpColorSelect GimpColorSelect;

diff -uraN gimp-2.2.4/devel-docs/libgimpwidgets/html/GimpColorSelection.html gimp-2.2.5/devel-docs/libgimpwidgets/html/GimpColorSelection.html --- gimp-2.2.4/devel-docs/libgimpwidgets/html/GimpColorSelection.html 2005-02-22 23:13:30.000000000 +0100 +++ gimp-2.2.5/devel-docs/libgimpwidgets/html/GimpColorSelection.html 2005-04-09 23:10:40.000000000 +0200 @@ -1,43 +1,19 @@ -GimpColorSelection

GimpColorSelection

GimpColorSelection — Widget for doing a color selection.

Synopsis

+GimpColorSelection

GimpColorSelection

GimpColorSelection — Widget for doing a color selection.

Object Hierarchy

+

Object Hierarchy

 
-  GObject
-   +----GtkObject
-         +----GtkWidget
-               +----GtkContainer
-                     +----GtkBox
-                           +----GtkVBox
+  GObject
+   +----GtkObject
+         +----GtkWidget
+               +----GtkContainer
+                     +----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

- -

Details

struct GimpColorSelection

struct GimpColorSelection;

- -


gimp_color_selection_new ()

GtkWidget*  gimp_color_selection_new        (void);

+ gpointer user_data); +

Description

+ +

Details

GimpColorSelection

typedef struct _GimpColorSelection GimpColorSelection;

+ +


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
+

Returns: The new GimpColorSelection widget. +

gimp_color_selection_set_show_alpha ()

void        gimp_color_selection_set_show_alpha
                                             (GimpColorSelection *selection,
-                                             gboolean show_alpha);

+ 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,
+Returns: TRUE if the GimpColorSelection has alpha controls.
+

gimp_color_selection_set_color ()

void        gimp_color_selection_set_color  (GimpColorSelection *selection,
                                              const GimpRGB *color);

@@ -106,7 +104,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 +112,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,
-                                            gpointer user_data);

+

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.4/devel-docs/libgimpwidgets/html/GimpColorSelector.html gimp-2.2.5/devel-docs/libgimpwidgets/html/GimpColorSelector.html --- gimp-2.2.4/devel-docs/libgimpwidgets/html/GimpColorSelector.html 2005-02-22 23:13:30.000000000 +0100 +++ gimp-2.2.5/devel-docs/libgimpwidgets/html/GimpColorSelector.html 2005-04-09 23:10:40.000000000 +0200 @@ -1,42 +1,16 @@ -GimpColorSelector

GimpColorSelector

GimpColorSelector — Pluggable GIMP color selector modules.

Synopsis

+GimpColorSelector

GimpColorSelector

GimpColorSelector — Pluggable GIMP color selector modules.

Synopsis

 
 
 
-struct      GimpColorSelector;
-#define     GIMP_COLOR_SELECTOR_SIZE
-#define     GIMP_COLOR_SELECTOR_BAR_SIZE
+            GimpColorSelector;
+#define     GIMP_COLOR_SELECTOR_SIZE
+#define     GIMP_COLOR_SELECTOR_BAR_SIZE
 enum        GimpColorSelectorChannel;
-GtkWidget*  gimp_color_selector_new         (GType selector_type,
+GtkWidget*  gimp_color_selector_new         (GType selector_type,
                                              const GimpRGB *rgb,
@@ -46,13 +20,19 @@
                                              GimpColorSelectorChannel channel);
 void        gimp_color_selector_set_toggles_visible
                                             (GimpColorSelector *selector,
-                                             gboolean visible);
+                                             gboolean visible);
 void        gimp_color_selector_set_toggles_sensitive
                                             (GimpColorSelector *selector,
-                                             gboolean sensitive);
+                                             gboolean sensitive);
 void        gimp_color_selector_set_show_alpha
                                             (GimpColorSelector *selector,
-                                             gboolean show_alpha);
+                                             gboolean show_alpha);
 void        gimp_color_selector_set_color   (GimpColorSelector *selector,
                                              const gimp_color_selector_channel_changed
                                             (GimpColorSelector *selector);
 
-

Object Hierarchy

+

Object Hierarchy

 
-  GObject
-   +----GtkObject
-         +----GtkWidget
-               +----GtkContainer
-                     +----GtkBox
-                           +----GtkVBox
+  GObject
+   +----GtkObject
+         +----GtkWidget
+               +----GtkContainer
+                     +----GtkBox
+                           +----GtkVBox
                                  +----GimpColorSelector
                                        +----GimpColorNotebook
                                        +----GimpColorScales
                                        +----GimpColorSelect
-

Implemented Interfaces

+

Implemented Interfaces

GimpColorSelector implements - AtkImplementorIface.

Signal Prototypes

+ AtkImplementorIface.

Signal Prototypes

 
 "channel-changed"
             void        user_function      (GimpColorSelector *gimpcolorselector,
-                                            gint arg1,
-                                            gpointer user_data);
+                                            gint arg1,
+                                            gpointer user_data);
 "color-changed"
             void        user_function      (GimpColorSelector *gimpcolorselector,
-                                            gpointer arg1,
-                                            gpointer arg2,
-                                            gpointer user_data);
-

Description

+ gpointer arg1, + gpointer arg2, + gpointer user_data); +

Description

Functions and definitions for creating pluggable GIMP color selector modules. -

Details

struct GimpColorSelector

struct GimpColorSelector;

+

Details

GimpColorSelector

typedef struct _GimpColorSelector 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 +125,11 @@
 
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,
@@ -136,34 +142,40 @@
 rgb:
 hsv:
 channel:
-Returns :
+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);

+ gboolean visible);

selector:
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);

+ gboolean sensitive);

selector:
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);

+ gboolean show_alpha);

selector:
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,45 +188,59 @@
 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,
-                                            gint arg1,
-                                            gpointer user_data);

+

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,
-                                            gpointer arg1,
-                                            gpointer arg2,
-                                            gpointer user_data);

+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);

gimpcolorselector:the object which received the signal.
arg1:
arg2: -
user_data:user data set when the signal handler was connected.

See Also

-GModule +user_data:user data set when the signal handler was connected.

See Also

+GModule

-GTypeModule +GTypeModule

libgimp-gimpmodule

diff -uraN gimp-2.2.4/devel-docs/libgimpwidgets/html/GimpController.html gimp-2.2.5/devel-docs/libgimpwidgets/html/GimpController.html --- gimp-2.2.4/devel-docs/libgimpwidgets/html/GimpController.html 2005-02-22 23:13:30.000000000 +0100 +++ gimp-2.2.5/devel-docs/libgimpwidgets/html/GimpController.html 2005-04-09 23:10:40.000000000 +0200 @@ -1,101 +1,94 @@ -GimpController

GimpController

GimpController — Pluggable GIMP input controller modules.

Synopsis

+GimpController

GimpController

GimpController — Pluggable GIMP input controller modules.

Object Hierarchy

+

Object Hierarchy

 
-  GObject
+  GObject
    +----GimpController
-

Properties

+

Properties

 
-  "name"                 gchararray           : Read / Write / Construct
-  "state"                gchararray           : Read / Write / Construct
-

Signal Prototypes

-
-"event"     gboolean    user_function      (GimpController *gimpcontroller,
-                                            gpointer arg1,
-                                            gpointer user_data);
-

Description

+ "name" gchararray : Read / Write / Construct + "state" gchararray : Read / Write / Construct +

Signal Prototypes

+
+"event"     gboolean    user_function      (GimpController *gimpcontroller,
+                                            gpointer arg1,
+                                            gpointer user_data);
+

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 {
-
+


GimpControllerEventAny

typedef struct {
   GimpControllerEventType  type;
   GimpController          *source;
   gint                     event_id;
-};
+} GimpControllerEventAny;
 

-


struct GimpControllerEventTrigger

struct GimpControllerEventTrigger {
-
+


GimpControllerEventTrigger

typedef struct {
   GimpControllerEventType  type;
   GimpController          *source;
   gint                     event_id;
-};
+} GimpControllerEventTrigger;
 

-


struct GimpControllerEventValue

struct GimpControllerEventValue {
-
+


GimpControllerEventValue

typedef struct {
   GimpControllerEventType  type;
   GimpController          *source;
   gint                     event_id;
   GValue                   value;
-};
+} GimpControllerEventValue;
 

-


union GimpControllerEvent

union GimpControllerEvent
+


union GimpControllerEvent

union GimpControllerEvent
 {
   GimpControllerEventType    type;
   GimpControllerEventAny     any;
@@ -104,51 +97,75 @@
 };
 

-


struct GimpController

struct GimpController;

+


GimpController

typedef struct _GimpController GimpController;

-


gimp_controller_new ()

GimpController* gimp_controller_new         (GType controller_type);

+


gimp_controller_new ()

GimpController* gimp_controller_new         (GType controller_type);

controller_type: -
Returns : +
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 : +
Returns: -

gimp_controller_get_event_name ()

const gchar* gimp_controller_get_event_name (GimpController *controller,
-                                             gint event_id);

+


gimp_controller_get_event_name ()

const gchar* gimp_controller_get_event_name (GimpController *controller,
+                                             gint event_id);

controller:
event_id: -
Returns : +
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);

+ gint event_id);

controller:
event_id: -
Returns : +
Returns: -

gimp_controller_event ()

gboolean    gimp_controller_event           (GimpController *controller,
+

gimp_controller_event ()

gboolean    gimp_controller_event           (GimpController *controller,
                                              const GimpControllerEvent *event);

controller:
event: -
Returns : +
Returns: -

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);

+

Properties

The "name" property

  "name"                 gchararray            : Read / Write / Construct

Default value: "Unnamed Controller"


The "state" property

  "state"                gchararray            : Read / Write / Construct

Default value: "Unknown"

Signals

The "event" signal

gboolean    user_function                  (GimpController *gimpcontroller,
+                                            gpointer arg1,
+                                            gpointer user_data);

gimpcontroller:the object which received the signal.
arg1: -
user_data:user data set when the signal handler was connected.
Returns : +
user_data:user data set when the signal handler was connected.
Returns:
diff -uraN gimp-2.2.4/devel-docs/libgimpwidgets/html/GimpDialog.html gimp-2.2.5/devel-docs/libgimpwidgets/html/GimpDialog.html --- gimp-2.2.4/devel-docs/libgimpwidgets/html/GimpDialog.html 2005-02-22 23:13:30.000000000 +0100 +++ gimp-2.2.5/devel-docs/libgimpwidgets/html/GimpDialog.html 2005-04-09 23:10:40.000000000 +0200 @@ -1,84 +1,114 @@ -GimpDialog

GimpDialog

GimpDialog — Constructors for GtkDialog's and action_areas as well as other -dialog-related stuff.

Synopsis

+GimpDialog

GimpDialog

GimpDialog — Constructors for GtkDialog's and action_areas as well as other +dialog-related stuff.

Synopsis

 
 
 
-struct      GimpDialog;
-GtkWidget*  gimp_dialog_new                 (const gchar *title,
-                                             const gchar *role,
-                                             GtkWidget *parent,
-                                             GtkDialogFlags flags,
+            GimpDialog;
+GtkWidget*  gimp_dialog_new                 (const gchar *title,
+                                             const gchar *role,
+                                             GtkWidget *parent,
+                                             GtkDialogFlags flags,
                                              GimpHelpFunc help_func,
-                                             const gchar *help_id,
+                                             const gchar *help_id,
                                              ...);
-GtkWidget*  gimp_dialog_new_valist          (const gchar *title,
-                                             const gchar *role,
-                                             GtkWidget *parent,
-                                             GtkDialogFlags flags,
+GtkWidget*  gimp_dialog_new_valist          (const gchar *title,
+                                             const gchar *role,
+                                             GtkWidget *parent,
+                                             GtkDialogFlags flags,
                                              GimpHelpFunc help_func,
-                                             const gchar *help_id,
+                                             const gchar *help_id,
                                              va_list args);
 void        gimp_dialog_add_buttons_valist  (GimpDialog *dialog,
                                              va_list args);
-gint        gimp_dialog_run                 (GimpDialog *dialog);
-void        gimp_dialogs_show_help_button   (gboolean show);
-
-

Object Hierarchy

-
-  GObject
-   +----GtkObject
-         +----GtkWidget
-               +----GtkContainer
-                     +----GtkBin
-                           +----GtkWindow
-                                 +----GtkDialog
+gint        gimp_dialog_run                 (GimpDialog *dialog);
+void        gimp_dialogs_show_help_button   (gboolean show);
+
+

Object Hierarchy

+
+  GObject
+   +----GtkObject
+         +----GtkWidget
+               +----GtkContainer
+                     +----GtkBin
+                           +----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

- -

Details

struct GimpDialog

struct GimpDialog;

- -


gimp_dialog_new ()

GtkWidget*  gimp_dialog_new                 (const gchar *title,
-                                             const gchar *role,
-                                             GtkWidget *parent,
-                                             GtkDialogFlags flags,
+  "help-func"            gpointer              : Read / Write / Construct Only
+  "help-id"              gchararray            : Read / Write / Construct Only
+

Description

+ +

Details

GimpDialog

typedef struct _GimpDialog GimpDialog;

+ +


gimp_dialog_new ()

GtkWidget*  gimp_dialog_new                 (const gchar *title,
+                                             const gchar *role,
+                                             GtkWidget *parent,
+                                             GtkDialogFlags flags,
                                              GimpHelpFunc help_func,
-                                             const gchar *help_id,
+                                             const gchar *help_id,
                                              ...);

Creates a new GimpDialog widget.

@@ -86,58 +116,100 @@ into a va_list variable and passes everything to gimp_dialog_new_valist().

For a description of the format of the va_list describing the -action_area buttons see gtk_dialog_new_with_buttons().

+action_area buttons see gtk_dialog_new_with_buttons().

title: The dialog's title which will be set with - gtk_window_set_title(). + gtk_window_set_title().
role: The dialog's role which will be set with - gtk_window_set_role(). + gtk_window_set_role().
parent: The parent widget of this dialog. -
flags: The flags (see the GtkDialog documentation). +
flags: The flags (see the GtkDialog documentation).
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.
...: 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,
-                                             const gchar *role,
-                                             GtkWidget *parent,
-                                             GtkDialogFlags flags,
+Returns: A GimpDialog.
+

gimp_dialog_new_valist ()

GtkWidget*  gimp_dialog_new_valist          (const gchar *title,
+                                             const gchar *role,
+                                             GtkWidget *parent,
+                                             GtkDialogFlags flags,
                                              GimpHelpFunc help_func,
-                                             const gchar *help_id,
+                                             const gchar *help_id,
                                              va_list args);

Creates a new GimpDialog widget. If a GtkWindow is specified as parent then the dialog will be made transient for this window.

For a description of the format of the va_list describing the -action_area buttons see gtk_dialog_new_with_buttons().

+action_area buttons see gtk_dialog_new_with_buttons().

title: The dialog's title which will be set with - gtk_window_set_title(). + gtk_window_set_title().
role: The dialog's role which will be set with - gtk_window_set_role(). + gtk_window_set_role().
parent: The parent widget of this dialog or NULL. -
flags: The flags (see the GtkDialog documentation). +
flags: The flags (see the GtkDialog documentation).
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.
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,
+Returns: A GimpDialog.
+

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() +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);

-This function does exactly the same as gtk_dialog_run() except it -does not make the dialog modal while the GMainLoop is running.

+


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);

+Returns: response ID +


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

The "help-func" property

  "help-func"            gpointer              : Read / Write / Construct Only


The "help-id" property

  "help-id"              gchararray            : Read / Write / Construct Only

Default value: NULL

diff -uraN gimp-2.2.4/devel-docs/libgimpwidgets/html/GimpFileEntry.html gimp-2.2.5/devel-docs/libgimpwidgets/html/GimpFileEntry.html --- gimp-2.2.4/devel-docs/libgimpwidgets/html/GimpFileEntry.html 2005-02-22 23:13:30.000000000 +0100 +++ gimp-2.2.5/devel-docs/libgimpwidgets/html/GimpFileEntry.html 2005-04-09 23:10:40.000000000 +0200 @@ -1,83 +1,99 @@ -GimpFileEntry

GimpFileEntry

GimpFileEntry — Widget for entering a filename.

Synopsis

+GimpFileEntry

GimpFileEntry

GimpFileEntry — Widget for entering a filename.

Synopsis

 
 
 
-struct      GimpFileEntry;
-GtkWidget*  gimp_file_entry_new             (const gchar *title,
-                                             const gchar *filename,
-                                             gboolean dir_only,
-                                             gboolean check_valid);
-gchar*      gimp_file_entry_get_filename    (GimpFileEntry *entry);
+            GimpFileEntry;
+GtkWidget*  gimp_file_entry_new             (const gchar *title,
+                                             const gchar *filename,
+                                             gboolean dir_only,
+                                             gboolean check_valid);
+gchar*      gimp_file_entry_get_filename    (GimpFileEntry *entry);
 void        gimp_file_entry_set_filename    (GimpFileEntry *entry,
-                                             const gchar *filename);
-
-

Object Hierarchy

-
-  GObject
-   +----GtkObject
-         +----GtkWidget
-               +----GtkContainer
-                     +----GtkBox
-                           +----GtkHBox
+                                             const gchar *filename);
+
+

Object Hierarchy

+
+  GObject
+   +----GtkObject
+         +----GtkWidget
+               +----GtkContainer
+                     +----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

+ void user_function (GimpFileEntry *arg0, + gpointer user_data); +

Description

This widget is used to enter filenames or directories.

-There is a GtkEntry for entering the filename manually and a "..." -button which will pop up a GtkFileSelection dialog. +There is a GtkEntry for entering the filename manually and a "..." +button which will pop up a GtkFileSelection dialog.

You can restrict the GimpFileSelection to directories. In this case -the filename listbox of the GtkFileSelection dialog will be hidden. +the filename listbox of the GtkFileSelection dialog will be hidden.

-If you specify check_valid as TRUE in gimp_file_entry_new() +If you specify check_valid as TRUE in gimp_file_entry_new() the entered filename will be checked for validity and a pixmap will be shown which indicates if the file exists or not.

Whenever the user changes the filename, the "filename_changed" signal will be emitted. -

Details

struct GimpFileEntry

struct GimpFileEntry;

+

Details

GimpFileEntry

typedef struct _GimpFileEntry GimpFileEntry;

-


gimp_file_entry_new ()

GtkWidget*  gimp_file_entry_new             (const gchar *title,
-                                             const gchar *filename,
-                                             gboolean dir_only,
-                                             gboolean check_valid);

+


gimp_file_entry_new ()

GtkWidget*  gimp_file_entry_new             (const gchar *title,
+                                             const gchar *filename,
+                                             gboolean dir_only,
+                                             gboolean check_valid);

Creates a new GimpFileEntry widget.

title: The title of the GtkFileEntry dialog. @@ -85,24 +101,32 @@
dir_only: TRUE if the file entry should accept directories only.
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);

-Note that you have to g_free() the returned string.

+Returns: A pointer to the new GimpFileEntry widget. +


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,
-                                             const gchar *filename);

+Returns: The file or directory the user has entered. +


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 name.

entry: The file entry you want to set the filename for.
filename: The new filename. -

Signals

The "filename-changed" signal

void        user_function                  (GimpFileEntry *,
-                                            gpointer user_data);

+

Signals

The "filename-changed" signal

void        user_function                  (GimpFileEntry *arg0,
+                                            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.4/devel-docs/libgimpwidgets/html/GimpFrame.html gimp-2.2.5/devel-docs/libgimpwidgets/html/GimpFrame.html --- gimp-2.2.4/devel-docs/libgimpwidgets/html/GimpFrame.html 2005-02-22 23:13:30.000000000 +0100 +++ gimp-2.2.5/devel-docs/libgimpwidgets/html/GimpFrame.html 2005-04-09 23:10:40.000000000 +0200 @@ -1,68 +1,72 @@ -GimpFrame

GimpFrame

GimpFrame — A widget providing a HIG-compliant subclass of GtkFrame.

Synopsis

+GimpFrame

GimpFrame

GimpFrame — A widget providing a HIG-compliant subclass of GtkFrame.

Synopsis

 
 
 
-struct      GimpFrame;
-GtkWidget*  gimp_frame_new                  (const gchar *label);
-
-

Object Hierarchy

-
-  GObject
-   +----GtkObject
-         +----GtkWidget
-               +----GtkContainer
-                     +----GtkBin
-                           +----GtkFrame
+            GimpFrame;
+GtkWidget*  gimp_frame_new                  (const gchar *label);
+
+

Object Hierarchy

+
+  GObject
+   +----GtkObject
+         +----GtkWidget
+               +----GtkContainer
+                     +----GtkBin
+                           +----GtkFrame
                                  +----GimpFrame
-

Implemented Interfaces

+

Implemented Interfaces

GimpFrame implements - AtkImplementorIface.

Style Properties

+ AtkImplementorIface.

Style Properties

 
-  "label-bold"           gboolean             : Read
-  "label-spacing"        gint                 : Read
-

Description

-A widget providing a HIG-compliant subclass of GtkFrame. -

Details

struct GimpFrame

struct GimpFrame;

- -


gimp_frame_new ()

GtkWidget*  gimp_frame_new                  (const gchar *label);

+ "label-bold" gboolean : Read + "label-spacing" gint : Read +

Description

+A widget providing a HIG-compliant subclass of GtkFrame. +

Details

GimpFrame

typedef struct _GimpFrame GimpFrame;

+ +


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 +variant of GtkFrame. It doesn't render a frame at all but otherwise behaves like a frame. The frame's title is rendered in bold and the frame content is indented four spaces as suggested by the GNOME HIG (see http://developer.gnome.org/projects/gup/hig/).

label: text to set as the frame's title label (or NULL for no title) -
Returns : a new GimpFrame widget +
Returns: a new GimpFrame widget

Since GIMP 2.2 -

Style Properties

"label-bold" (gboolean : Read)

"label-spacing" (gint : Read)

+

Style Properties

The "label-bold" style property

  "label-bold"           gboolean              : Read

Default value: TRUE


The "label-spacing" style property

  "label-spacing"        gint                  : Read

Allowed values: >= 0

Default value: 6

diff -uraN gimp-2.2.4/devel-docs/libgimpwidgets/html/GimpIntComboBox.html gimp-2.2.5/devel-docs/libgimpwidgets/html/GimpIntComboBox.html --- gimp-2.2.4/devel-docs/libgimpwidgets/html/GimpIntComboBox.html 2005-02-22 23:13:30.000000000 +0100 +++ gimp-2.2.5/devel-docs/libgimpwidgets/html/GimpIntComboBox.html 2005-04-09 23:10:40.000000000 +0200 @@ -1,76 +1,102 @@ -GimpIntComboBox

GimpIntComboBox

GimpIntComboBox — A widget providing a popup menu of integer values (e.g. enums).

Synopsis

+GimpIntComboBox

GimpIntComboBox

GimpIntComboBox — A widget providing a popup menu of integer values (e.g. enums).

Synopsis

 
 
 
-struct      GimpIntComboBox;
-GtkWidget*  gimp_int_combo_box_new          (const gchar *first_label,
-                                             gint first_value,
+            GimpIntComboBox;
+GtkWidget*  gimp_int_combo_box_new          (const gchar *first_label,
+                                             gint first_value,
                                              ...);
-GtkWidget*  gimp_int_combo_box_new_valist   (const gchar *first_label,
-                                             gint first_value,
+GtkWidget*  gimp_int_combo_box_new_valist   (const gchar *first_label,
+                                             gint first_value,
                                              va_list values);
-GtkWidget*  gimp_int_combo_box_new_array    (gint n_values,
-                                             const gchar *labels[]);
+GtkWidget*  gimp_int_combo_box_new_array    (gint n_values,
+                                             const gchar *labels[]);
 void        gimp_int_combo_box_prepend      (GimpIntComboBox *combo_box,
                                              ...);
 void        gimp_int_combo_box_append       (GimpIntComboBox *combo_box,
                                              ...);
-gboolean    gimp_int_combo_box_set_active   (GimpIntComboBox *combo_box,
-                                             gint value);
-gboolean    gimp_int_combo_box_get_active   (GimpIntComboBox *combo_box,
-                                             gint *value);
-gulong      gimp_int_combo_box_connect      (GimpIntComboBox *combo_box,
-                                             gint value,
-                                             GCallback callback,
-                                             gpointer data);
-
-

Object Hierarchy

-
-  GObject
-   +----GtkObject
-         +----GtkWidget
-               +----GtkContainer
-                     +----GtkBin
-                           +----GtkComboBox
+gboolean    gimp_int_combo_box_set_active   (GimpIntComboBox *combo_box,
+                                             gint value);
+gboolean    gimp_int_combo_box_get_active   (GimpIntComboBox *combo_box,
+                                             gint *value);
+gulong      gimp_int_combo_box_connect      (GimpIntComboBox *combo_box,
+                                             gint value,
+                                             GCallback callback,
+                                             gpointer data);
+
+

Object Hierarchy

+
+  GObject
+   +----GtkObject
+         +----GtkWidget
+               +----GtkContainer
+                     +----GtkBin
+                           +----GtkComboBox
                                  +----GimpIntComboBox
-

Implemented Interfaces

+

Implemented Interfaces

GimpIntComboBox implements - AtkImplementorIface and GtkCellLayout.

Description

+ AtkImplementorIface, GtkCellEditable and GtkCellLayout.

Description

A widget providing a popup menu of integer values (e.g. enums). -

Details

struct GimpIntComboBox

struct GimpIntComboBox;

+

Details

GimpIntComboBox

typedef struct _GimpIntComboBox GimpIntComboBox;

-


gimp_int_combo_box_new ()

GtkWidget*  gimp_int_combo_box_new          (const gchar *first_label,
-                                             gint first_value,
+


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 item. The items to fill the combo box with are specified as a NULL @@ -79,11 +105,17 @@

first_label: the label of the first item
first_value: the value of the first item
...: a NULL terminated list of more label, value pairs -
Returns : a new GimpIntComboBox. +
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,
-                                             gint first_value,
+


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 label/value pairs. Probably only useful for language bindings.

@@ -91,66 +123,92 @@

first_label: the label of the first item
first_value: the value of the first item
values: a va_list with more values -
Returns : a new GimpIntComboBox. +
Returns: a new GimpIntComboBox.

Since GIMP 2.2 -


gimp_int_combo_box_new_array ()

GtkWidget*  gimp_int_combo_box_new_array    (gint n_values,
-                                             const gchar *labels[]);

+


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.

n_values: the number of values
labels: an array of labels (array length must be n_values) -
Returns : a new GimpIntComboBox. +
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 -and calls gtk_list_store_set() for you. +and calls gtk_list_store_set() for you.

The column number must be taken from the enum GimpIntStoreColumns.

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 -and calls gtk_list_store_set() for you. +and calls gtk_list_store_set() for you.

The column number must be taken from the enum GimpIntStoreColumns.

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,
-                                             gint value);

+


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.

combo_box: a GimpIntComboBox
value: an integer value -
Returns : TRUE on success or FALSE if there was no item for +
Returns: TRUE on success or FALSE if there was no item for this value.

Since GIMP 2.2 -


gimp_int_combo_box_get_active ()

gboolean    gimp_int_combo_box_get_active   (GimpIntComboBox *combo_box,
-                                             gint *value);

+


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.

combo_box: a GimpIntComboBox
value: return location for the integer value -
Returns : TRUE if value has been set or FALSE if no item was +
Returns: TRUE if value has been set or FALSE if no item was active.

Since GIMP 2.2 -


gimp_int_combo_box_connect ()

gulong      gimp_int_combo_box_connect      (GimpIntComboBox *combo_box,
-                                             gint value,
-                                             GCallback callback,
-                                             gpointer data);

+


gimp_int_combo_box_connect ()

gulong      gimp_int_combo_box_connect      (GimpIntComboBox *combo_box,
+                                             gint value,
+                                             GCallback callback,
+                                             gpointer data);

A convenience function that sets the inital value of a GimpIntComboBox and connects callback to the "changed" signal. @@ -164,8 +222,12 @@

combo_box: a GimpIntComboBox
value: the value to set
callback: a callback to connect to the combo_box's "changed" signal -
data: a pointer passed as data to g_signal_connect() -
Returns : the signal handler ID as returned by g_signal_connect() +
data: a pointer passed as data to g_signal_connect() +
Returns: the signal handler ID as returned by g_signal_connect()

Since GIMP 2.2

diff -uraN gimp-2.2.4/devel-docs/libgimpwidgets/html/GimpIntStore.html gimp-2.2.5/devel-docs/libgimpwidgets/html/GimpIntStore.html --- gimp-2.2.4/devel-docs/libgimpwidgets/html/GimpIntStore.html 2005-02-22 23:13:30.000000000 +0100 +++ gimp-2.2.5/devel-docs/libgimpwidgets/html/GimpIntStore.html 2005-04-09 23:10:40.000000000 +0200 @@ -1,56 +1,48 @@ -GimpIntStore

GimpIntStore

GimpIntStore — A model for integer based name-value pairs (e.g. enums)

Synopsis

+GimpIntStore

GimpIntStore

GimpIntStore — A model for integer based name-value pairs (e.g. enums)

Synopsis

 
 
 
-struct      GimpIntStore;
+            GimpIntStore;
 enum        GimpIntStoreColumns;
-GtkListStore* gimp_int_store_new            (void);
-gboolean    gimp_int_store_lookup_by_value  (GtkTreeModel *model,
-                                             gint value,
-                                             GtkTreeIter *iter);
-
-

Object Hierarchy

-
-  GObject
-   +----GtkListStore
+GtkListStore* gimp_int_store_new            (void);
+gboolean    gimp_int_store_lookup_by_value  (GtkTreeModel *model,
+                                             gint value,
+                                             GtkTreeIter *iter);
+
+

Object Hierarchy

+
+  GObject
+   +----GtkListStore
          +----GimpIntStore
-

Implemented Interfaces

+

Implemented Interfaces

GimpIntStore implements - GtkTreeModel, GtkTreeDragSource, GtkTreeDragDest and GtkTreeSortable.

Description

A model for integer based name-value pairs (e.g. enums) -

Details

struct GimpIntStore

struct GimpIntStore;

+

Details

GimpIntStore

typedef struct _GimpIntStore GimpIntStore;

-


enum GimpIntStoreColumns

typedef enum
+


enum GimpIntStoreColumns

typedef enum
 {
   GIMP_INT_STORE_VALUE,
   GIMP_INT_STORE_LABEL,
@@ -61,23 +53,35 @@
 } GimpIntStoreColumns;
 

-


gimp_int_store_new ()

GtkListStore* gimp_int_store_new            (void);

-Creates a GtkListStore with a number of useful columns. +


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.

-

Returns : a new GimpIntStore. +

Returns: a new GimpIntStore.

Since GIMP 2.2 -


gimp_int_store_lookup_by_value ()

gboolean    gimp_int_store_lookup_by_value  (GtkTreeModel *model,
-                                             gint value,
-                                             GtkTreeIter *iter);

+


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.

model: a GimpIntStore
value: an integer value to lookup in the model
iter: return location for the iter of the given value -
Returns : TRUE if the value has been located and iter is +
Returns: TRUE if the value has been located and iter is valid, FALSE otherwise.

Since GIMP 2.2 diff -uraN gimp-2.2.4/devel-docs/libgimpwidgets/html/GimpMemsizeEntry.html gimp-2.2.5/devel-docs/libgimpwidgets/html/GimpMemsizeEntry.html --- gimp-2.2.4/devel-docs/libgimpwidgets/html/GimpMemsizeEntry.html 2005-02-22 23:13:30.000000000 +0100 +++ gimp-2.2.5/devel-docs/libgimpwidgets/html/GimpMemsizeEntry.html 2005-04-09 23:10:40.000000000 +0200 @@ -1,91 +1,107 @@ -GimpMemsizeEntry

GimpMemsizeEntry

GimpMemsizeEntry — A composite widget that allows to enter a memory size.

Synopsis

+GimpMemsizeEntry

GimpMemsizeEntry

GimpMemsizeEntry — A composite widget that allows to enter a memory size.

Synopsis

 
 
 
-struct      GimpMemsizeEntry;
-GtkWidget*  gimp_memsize_entry_new          (guint64 value,
-                                             guint64 lower,
-                                             guint64 upper);
+            GimpMemsizeEntry;
+GtkWidget*  gimp_memsize_entry_new          (guint64 value,
+                                             guint64 lower,
+                                             guint64 upper);
 void        gimp_memsize_entry_set_value    (GimpMemsizeEntry *entry,
-                                             guint64 value);
-guint64     gimp_memsize_entry_get_value    (GimpMemsizeEntry *entry);
-
-

Object Hierarchy

-
-  GObject
-   +----GtkObject
-         +----GtkWidget
-               +----GtkContainer
-                     +----GtkBox
-                           +----GtkHBox
+                                             guint64 value);
+guint64     gimp_memsize_entry_get_value    (GimpMemsizeEntry *entry);
+
+

Object Hierarchy

+
+  GObject
+   +----GtkObject
+         +----GtkWidget
+               +----GtkContainer
+                     +----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

+ gpointer user_data); +

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

GimpMemsizeEntry

typedef struct _GimpMemsizeEntry GimpMemsizeEntry;

The GimpSizeEntry struct is considered private. -


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 -and a GtkOptionMenu all setup to allow the user to enter memory sizes.

+


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 +and a GtkOptionMenu all setup to allow the user to enter memory sizes.

value: the initial value (in Bytes)
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,
-                                             guint64 value);

+

Returns: Pointer to the new GimpMemsizeEntry. +

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,
-                                            gpointer user_data);

+Returns: the current value of entry (in Bytes). +

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.4/devel-docs/libgimpwidgets/html/GimpOffsetArea.html gimp-2.2.5/devel-docs/libgimpwidgets/html/GimpOffsetArea.html --- gimp-2.2.4/devel-docs/libgimpwidgets/html/GimpOffsetArea.html 2005-02-22 23:13:30.000000000 +0100 +++ gimp-2.2.5/devel-docs/libgimpwidgets/html/GimpOffsetArea.html 2005-04-09 23:10:40.000000000 +0200 @@ -1,81 +1,91 @@ -GimpOffsetArea

GimpOffsetArea

GimpOffsetArea — Widget to control image offsets.

Synopsis

+GimpOffsetArea

GimpOffsetArea

GimpOffsetArea — Widget to control image offsets.

Synopsis

 
 
 
-struct      GimpOffsetArea;
-GtkWidget*  gimp_offset_area_new            (gint orig_width,
-                                             gint orig_height);
+            GimpOffsetArea;
+GtkWidget*  gimp_offset_area_new            (gint orig_width,
+                                             gint orig_height);
 void        gimp_offset_area_set_size       (GimpOffsetArea *offset_area,
-                                             gint width,
-                                             gint height);
+                                             gint width,
+                                             gint height);
 void        gimp_offset_area_set_offsets    (GimpOffsetArea *offset_area,
-                                             gint offset_x,
-                                             gint offset_y);
+                                             gint offset_x,
+                                             gint offset_y);
 void        gimp_offset_area_set_pixbuf     (GimpOffsetArea *offset_area,
-                                             GdkPixbuf *pixbuf);
-
-

Object Hierarchy

-
-  GObject
-   +----GtkObject
-         +----GtkWidget
-               +----GtkDrawingArea
+                                             GdkPixbuf *pixbuf);
+
+

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

- -

Details

struct GimpOffsetArea

struct GimpOffsetArea;

- -


gimp_offset_area_new ()

GtkWidget*  gimp_offset_area_new            (gint orig_width,
-                                             gint orig_height);

+ gint arg1, + gint arg2, + gpointer user_data); +

Description

+ +

Details

GimpOffsetArea

typedef struct _GimpOffsetArea GimpOffsetArea;

+ +


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 specify the new offsets.

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,
-                                             gint width,
-                                             gint height);

+

Returns: the new GimpOffsetArea widget. +

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. If the offsets change as a result of this change, the offsets_changed signal is emitted.

@@ -83,27 +93,41 @@

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,
-                                             gint offset_x,
-                                             gint offset_y);

+


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. It does not emit the offsets_changed signal.

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,
-                                             GdkPixbuf *pixbuf);

+


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.

offset_area: a GimpOffsetArea. -
pixbuf: a GdkPixbuf. +
pixbuf: a GdkPixbuf.

Since GIMP 2.2 -

Signals

The "offsets-changed" signal

void        user_function                  (GimpOffsetArea *gimpoffsetarea,
-                                            gint arg1,
-                                            gint arg2,
-                                            gpointer user_data);

+

Signals

The "offsets-changed" signal

void        user_function                  (GimpOffsetArea *gimpoffsetarea,
+                                            gint arg1,
+                                            gint arg2,
+                                            gpointer user_data);

gimpoffsetarea:the object which received the signal.
arg1: diff -uraN gimp-2.2.4/devel-docs/libgimpwidgets/html/GimpPathEditor.html gimp-2.2.5/devel-docs/libgimpwidgets/html/GimpPathEditor.html --- gimp-2.2.4/devel-docs/libgimpwidgets/html/GimpPathEditor.html 2005-02-22 23:13:30.000000000 +0100 +++ gimp-2.2.5/devel-docs/libgimpwidgets/html/GimpPathEditor.html 2005-04-09 23:10:40.000000000 +0200 @@ -1,76 +1,84 @@ -GimpPathEditor

GimpPathEditor

GimpPathEditor — Widget for editing a file search path.

Synopsis

+GimpPathEditor

GimpPathEditor

GimpPathEditor — Widget for editing a file search path.

Synopsis

 
 
 
-struct      GimpPathEditor;
-GtkWidget*  gimp_path_editor_new            (const gchar *filesel_title,
-                                             const gchar *path);
-gchar*      gimp_path_editor_get_path       (GimpPathEditor *editor);
+            GimpPathEditor;
+GtkWidget*  gimp_path_editor_new            (const gchar *filesel_title,
+                                             const gchar *path);
+gchar*      gimp_path_editor_get_path       (GimpPathEditor *editor);
 void        gimp_path_editor_set_path       (GimpPathEditor *editor,
-                                             const gchar *path);
-gchar*      gimp_path_editor_get_writable_path
+                                             const gchar *path);
+gchar*      gimp_path_editor_get_writable_path
                                             (GimpPathEditor *editor);
 void        gimp_path_editor_set_writable_path
                                             (GimpPathEditor *editor,
-                                             const gchar *path);
-gboolean    gimp_path_editor_get_dir_writable
-                                            (GimpPathEditor *editor,
-                                             const gchar *directory);
+                                             const gchar *path);
+gboolean    gimp_path_editor_get_dir_writable
+                                            (GimpPathEditor *editor,
+                                             const gchar *directory);
 void        gimp_path_editor_set_dir_writable
                                             (GimpPathEditor *editor,
-                                             const gchar *directory,
-                                             gboolean writable);
-
-

Object Hierarchy

-
-  GObject
-   +----GtkObject
-         +----GtkWidget
-               +----GtkContainer
-                     +----GtkBox
-                           +----GtkVBox
+                                             const gchar *directory,
+                                             gboolean writable);
+
+

Object Hierarchy

+
+  GObject
+   +----GtkObject
+         +----GtkWidget
+               +----GtkContainer
+                     +----GtkBox
+                           +----GtkVBox
                                  +----GimpPathEditor
-

Implemented Interfaces

+

Implemented Interfaces

GimpPathEditor implements - AtkImplementorIface.

Signal Prototypes

+ AtkImplementorIface.

Signal Prototypes

 
 "path-changed"
-            void        user_function      (GimpPathEditor *,
-                                            gpointer user_data);
+            void        user_function      (GimpPathEditor *arg0,
+                                            gpointer user_data);
 "writable-changed"
-            void        user_function      (GimpPathEditor *,
-                                            gpointer user_data);
-

Description

+ void user_function (GimpPathEditor *arg0, + gpointer user_data); +

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,81 +90,119 @@

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

GimpPathEditor

typedef struct _GimpPathEditor GimpPathEditor;

-


gimp_path_editor_new ()

GtkWidget*  gimp_path_editor_new            (const gchar *filesel_title,
-                                             const gchar *path);

+


gimp_path_editor_new ()

GtkWidget*  gimp_path_editor_new            (const gchar *filesel_title,
+                                             const gchar *path);

Creates a new GimpPathEditor widget.

The elements of the initial search path must be separated with the -G_SEARCHPATH_SEPARATOR character.

- -

filesel_title: The title of the GtkFileSelection dialog which can be +G_SEARCHPATH_SEPARATOR character.

+ +

filesel_title: The title of the GtkFileSelection dialog which can be 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);

+

Returns: A pointer to the new GimpPathEditor widget. +

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. -

-Note that you have to g_free() the returned string.

+G_SEARCHPATH_SEPARATOR character. +

+Note that you have to g_free() the returned string.

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,
-                                             const gchar *path);

+

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,
+                                             const gchar *path);

The elements of the initial search path must be separated with the -G_SEARCHPATH_SEPARATOR character.

+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 : +
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);

+ const gchar *path);

editor:
path: -

gimp_path_editor_get_dir_writable ()

gboolean    gimp_path_editor_get_dir_writable
-                                            (GimpPathEditor *editor,
-                                             const gchar *directory);

+


gimp_path_editor_get_dir_writable ()

gboolean    gimp_path_editor_get_dir_writable
+                                            (GimpPathEditor *editor,
+                                             const gchar *directory);

editor:
directory: -
Returns : +
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);

+ const gchar *directory, + gboolean writable);

editor:
directory:
writable: -

Signals

The "path-changed" signal

void        user_function                  (GimpPathEditor *,
-                                            gpointer user_data);

+

Signals

The "path-changed" signal

void        user_function                  (GimpPathEditor *arg0,
+                                            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 *,
-                                            gpointer user_data);

+

user_data:user data set when the signal handler was connected.

The "writable-changed" signal

void        user_function                  (GimpPathEditor *arg0,
+                                            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 +G_SEARCHPATH_SEPARATOR

diff -uraN gimp-2.2.4/devel-docs/libgimpwidgets/html/GimpPickButton.html gimp-2.2.5/devel-docs/libgimpwidgets/html/GimpPickButton.html --- gimp-2.2.4/devel-docs/libgimpwidgets/html/GimpPickButton.html 2005-02-22 23:13:30.000000000 +0100 +++ gimp-2.2.5/devel-docs/libgimpwidgets/html/GimpPickButton.html 2005-04-09 23:10:40.000000000 +0200 @@ -1,70 +1,64 @@ -GimpPickButton

GimpPickButton

GimpPickButton — Widget to pick a color from screen.

Synopsis

+GimpPickButton

GimpPickButton

GimpPickButton — Widget to pick a color from screen.

Synopsis

 
 
 
-struct      GimpPickButton;
-GtkWidget*  gimp_pick_button_new            (void);
-
-

Object Hierarchy

-
-  GObject
-   +----GtkObject
-         +----GtkWidget
-               +----GtkContainer
-                     +----GtkBin
-                           +----GtkButton
+            GimpPickButton;
+GtkWidget*  gimp_pick_button_new            (void);
+
+

Object Hierarchy

+
+  GObject
+   +----GtkObject
+         +----GtkWidget
+               +----GtkContainer
+                     +----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

+ gpointer arg1, + gpointer user_data); +

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

GimpPickButton

typedef struct _GimpPickButton 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,
-                                            gpointer arg1,
-                                            gpointer user_data);

+

Returns: A new GimpPickButton widget. +

Signals

The "color-picked" signal

void        user_function                  (GimpPickButton *gimppickbutton,
+                                            gpointer arg1,
+                                            gpointer user_data);

gimppickbutton:the object which received the signal.
arg1:pointer to a GimpPixmap

GimpPixmap

GimpPixmap — Widget which creates a GtkPixmap from XPM data.

Synopsis

+GimpPixmap

GimpPixmap

GimpPixmap — Widget which creates a GtkPixmap from XPM data.

Synopsis

 
 
 
-struct      GimpPixmap;
-GtkWidget*  gimp_pixmap_new                 (gchar **xpm_data);
+            GimpPixmap;
+GtkWidget*  gimp_pixmap_new                 (gchar **xpm_data);
 void        gimp_pixmap_set                 (GimpPixmap *pixmap,
-                                             gchar **xpm_data);
-
-

Object Hierarchy

-
-  GObject
-   +----GtkObject
-         +----GtkWidget
-               +----GtkMisc
-                     +----GtkImage
+                                             gchar **xpm_data);
+
+

Object Hierarchy

+
+  GObject
+   +----GtkObject
+         +----GtkWidget
+               +----GtkMisc
+                     +----GtkImage
                            +----GimpPixmap
-

Implemented Interfaces

+

Implemented Interfaces

GimpPixmap implements - AtkImplementorIface.

Description

-Widget which creates a GtkPixmap from XPM data. + AtkImplementorIface.

Description

+Widget which creates a GtkPixmap from XPM data.

-Use this widget instead of GtkPixmap if you don't want to worry about +Use this widget instead of GtkPixmap if you don't want to worry about the parent container's "realized" state.

-Note that the drawback of the easy interface is that the actual GdkPixmap +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

GimpPixmap

typedef struct _GimpPixmap 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,
-                                             gchar **xpm_data);

Warning

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

+

Returns: A pointer to the new GimpPixmap widget. +

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 +GtkPixmap

diff -uraN gimp-2.2.4/devel-docs/libgimpwidgets/html/GimpPreviewArea.html gimp-2.2.5/devel-docs/libgimpwidgets/html/GimpPreviewArea.html --- gimp-2.2.4/devel-docs/libgimpwidgets/html/GimpPreviewArea.html 2005-02-22 23:13:30.000000000 +0100 +++ gimp-2.2.5/devel-docs/libgimpwidgets/html/GimpPreviewArea.html 2005-04-09 23:10:40.000000000 +0200 @@ -1,133 +1,205 @@ -GimpPreviewArea

GimpPreviewArea

GimpPreviewArea — A general purpose preview widget which caches its pixel data.

Synopsis

+GimpPreviewArea

GimpPreviewArea

GimpPreviewArea — A general purpose preview widget which caches its pixel data.

Synopsis

 
 
 
-struct      GimpPreviewArea;
-GtkWidget*  gimp_preview_area_new           (void);
+            GimpPreviewArea;
+GtkWidget*  gimp_preview_area_new           (void);
 void        gimp_preview_area_draw          (GimpPreviewArea *area,
-                                             gint x,
-                                             gint y,
-                                             gint width,
-                                             gint height,
+                                             gint x,
+                                             gint y,
+                                             gint width,
+                                             gint height,
                                              GimpImageType type,
-                                             const guchar *buf,
-                                             gint rowstride);
+                                             const guchar *buf,
+                                             gint rowstride);
 void        gimp_preview_area_fill          (GimpPreviewArea *area,
-                                             gint x,
-                                             gint y,
-                                             gint width,
-                                             gint height,
-                                             guchar red,
-                                             guchar green,
-                                             guchar blue);
+                                             gint x,
+                                             gint y,
+                                             gint width,
+                                             gint height,
+                                             guchar red,
+                                             guchar green,
+                                             guchar blue);
 void        gimp_preview_area_blend         (GimpPreviewArea *area,
-                                             gint x,
-                                             gint y,
-                                             gint width,
-                                             gint height,
+                                             gint x,
+                                             gint y,
+                                             gint width,
+                                             gint height,
                                              GimpImageType type,
-                                             const guchar *buf1,
-                                             gint rowstride1,
-                                             const guchar *buf2,
-                                             gint rowstride2,
-                                             guchar opacity);
+                                             const guchar *buf1,
+                                             gint rowstride1,
+                                             const guchar *buf2,
+                                             gint rowstride2,
+                                             guchar opacity);
 void        gimp_preview_area_mask          (GimpPreviewArea *area,
-                                             gint x,
-                                             gint y,
-                                             gint width,
-                                             gint height,
+                                             gint x,
+                                             gint y,
+                                             gint width,
+                                             gint height,
                                              GimpImageType type,
-                                             const guchar *buf1,
-                                             gint rowstride1,
-                                             const guchar *buf2,
-                                             gint rowstride2,
-                                             const guchar *mask,
-                                             gint rowstride_mask);
+                                             const guchar *buf1,
+                                             gint rowstride1,
+                                             const guchar *buf2,
+                                             gint rowstride2,
+                                             const guchar *mask,
+                                             gint rowstride_mask);
 void        gimp_preview_area_set_offsets   (GimpPreviewArea *area,
-                                             gint x,
-                                             gint y);
+                                             gint x,
+                                             gint y);
 void        gimp_preview_area_set_colormap  (GimpPreviewArea *area,
-                                             const guchar *colormap,
-                                             gint num_colors);
+                                             const guchar *colormap,
+                                             gint num_colors);
 void        gimp_preview_area_set_max_size  (GimpPreviewArea *area,
-                                             gint width,
-                                             gint height);
+                                             gint width,
+                                             gint height);
 void        gimp_preview_area_menu_popup    (GimpPreviewArea *area,
-                                             GdkEventButton *event);
+                                             GdkEventButton *event);
 
-

Object Hierarchy

+

Object Hierarchy

 
-  GObject
-   +----GtkObject
-         +----GtkWidget
-               +----GtkDrawingArea
+  GObject
+   +----GtkObject
+         +----GtkWidget
+               +----GtkDrawingArea
                      +----GimpPreviewArea
-

Implemented Interfaces

+

Implemented Interfaces

GimpPreviewArea implements - AtkImplementorIface.

Properties

+ AtkImplementorIface.

Properties

 
   "check-size"           GimpCheckSize        : Read / Write
+>GimpCheckSize         : Read / Write
   "check-type"           GimpCheckType        : Read / Write
-

Description

+>GimpCheckType : Read / Write +

Description

A general purpose preview widget which caches its pixel data. -

Details

struct GimpPreviewArea

struct GimpPreviewArea;

+

Details

GimpPreviewArea

typedef struct _GimpPreviewArea 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. +

Returns: a new GimpPreviewArea widget. Since GIMP 2.2 -

gimp_preview_area_draw ()

void        gimp_preview_area_draw          (GimpPreviewArea *area,
-                                             gint x,
-                                             gint y,
-                                             gint width,
-                                             gint height,
+

gimp_preview_area_draw ()

void        gimp_preview_area_draw          (GimpPreviewArea *area,
+                                             gint x,
+                                             gint y,
+                                             gint width,
+                                             gint height,
                                              GimpImageType type,
-                                             const guchar *buf,
-                                             gint rowstride);

+ const guchar *buf, + gint rowstride);

Draws buf on area and queues a redraw on the given rectangle.

Since GIMP 2.2

@@ -140,16 +212,32 @@ type: the GimpImageType of buf -buf: a guchar buffer that contains the preview pixel data. +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,
-                                             gint x,
-                                             gint y,
-                                             gint width,
-                                             gint height,
-                                             guchar red,
-                                             guchar green,
-                                             guchar blue);

+


gimp_preview_area_fill ()

void        gimp_preview_area_fill          (GimpPreviewArea *area,
+                                             gint x,
+                                             gint y,
+                                             gint width,
+                                             gint height,
+                                             guchar red,
+                                             guchar green,
+                                             guchar blue);

Fills area in the given color and queues a redraw on the given rectangle.

@@ -163,19 +251,37 @@ 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,
-                                             gint height,
+

gimp_preview_area_blend ()

void        gimp_preview_area_blend         (GimpPreviewArea *area,
+                                             gint x,
+                                             gint y,
+                                             gint width,
+                                             gint height,
                                              GimpImageType type,
-                                             const guchar *buf1,
-                                             gint rowstride1,
-                                             const guchar *buf2,
-                                             gint rowstride2,
-                                             guchar opacity);

+ const guchar *buf1, + gint rowstride1, + const guchar *buf2, + gint rowstride2, + guchar opacity);

Composites buf1 on buf2 with the given opacity, draws the result to area and queues a redraw on the given rectangle.

@@ -189,27 +295,51 @@ type: the GimpImageType of buf1 and buf2 -buf1: a guchar buffer that contains the pixel data for +buf1: a guchar buffer that contains the pixel data for the lower layer rowstride1: rowstride of buf1 -buf2: a guchar buffer that contains the pixel data for +buf2: a guchar buffer that contains the pixel data for 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,
-                                             gint x,
-                                             gint y,
-                                             gint width,
-                                             gint height,
+

gimp_preview_area_mask ()

void        gimp_preview_area_mask          (GimpPreviewArea *area,
+                                             gint x,
+                                             gint y,
+                                             gint width,
+                                             gint height,
                                              GimpImageType type,
-                                             const guchar *buf1,
-                                             gint rowstride1,
-                                             const guchar *buf2,
-                                             gint rowstride2,
-                                             const guchar *mask,
-                                             gint rowstride_mask);

+ const guchar *buf1, + gint rowstride1, + const guchar *buf2, + gint rowstride2, + const guchar *mask, + gint rowstride_mask);

Composites buf1 on buf2 with the given mask, draws the result on area and queues a redraw on the given rectangle.

@@ -223,18 +353,28 @@ type: the GimpImageType of buf1 and buf2 -buf1: a guchar buffer that contains the pixel data for +buf1: a guchar buffer that contains the pixel data for the lower layer rowstride1: rowstride of buf1 -buf2: a guchar buffer that contains the pixel data for +buf2: a guchar buffer that contains the pixel data for the upper layer rowstride2: rowstride of buf2 -mask: a guchar buffer representing the mask of the second +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,
-                                             gint x,
-                                             gint y);

+


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 when drawing the checkerboard and to determine the dither offsets.

@@ -242,9 +382,13 @@ x: horizontal offset y: vertical offset

Since GIMP 2.2 -


gimp_preview_area_set_colormap ()

void        gimp_preview_area_set_colormap  (GimpPreviewArea *area,
-                                             const guchar *colormap,
-                                             gint num_colors);

+


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 call this function before you use gimp_preview_area_draw() with an image type of GIMP_INDEXED_IMAGE or GIMP_INDEXEDA_IMAGE. @@ -252,11 +396,17 @@ Since GIMP 2.2

area: a GimpPreviewArea -
colormap: a guchar buffer that contains the colormap +
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,
-                                             gint width,
-                                             gint height);

+


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 allocated. This funtion allows you to limit the preview area to a maximum size. If a larger size is allocated for the widget, the @@ -266,16 +416,18 @@ 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,
-                                             GdkEventButton *event);

+


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.

area: a GimpPreviewArea
event: the button event that causes the menu to popup or NULL

Since GIMP 2.2 -

Properties

"check-size" (

Properties

The "check-size" property

  "check-size"           GimpCheckSize : Read / Write)

"check-type" (GimpCheckSize : Read / Write

Default value: GIMP_CHECK_SIZE_MEDIUM_CHECKS


The "check-type" property

  "check-type"           GimpCheckType : Read / Write)

+>GimpCheckType : Read / Write

Default value: GIMP_CHECK_TYPE_GRAY_CHECKS

diff -uraN gimp-2.2.4/devel-docs/libgimpwidgets/html/GimpPreview.html gimp-2.2.5/devel-docs/libgimpwidgets/html/GimpPreview.html --- gimp-2.2.4/devel-docs/libgimpwidgets/html/GimpPreview.html 2005-02-22 23:13:30.000000000 +0100 +++ gimp-2.2.5/devel-docs/libgimpwidgets/html/GimpPreview.html 2005-04-09 23:10:40.000000000 +0200 @@ -1,106 +1,132 @@ -GimpPreview

GimpPreview

GimpPreview — A widget providing a GimpPreviewArea plus framework to update the preview.

Synopsis

+GimpPreview

GimpPreview

GimpPreview — A widget providing a GimpPreviewArea plus framework to update the preview.

Synopsis

 
 
 
-struct      GimpPreview;
-gboolean    gimp_preview_get_update         (GimpPreview *preview);
+            GimpPreview;
+gboolean    gimp_preview_get_update         (GimpPreview *preview);
 void        gimp_preview_set_update         (GimpPreview *preview,
-                                             gboolean update);
+                                             gboolean update);
 void        gimp_preview_set_bounds         (GimpPreview *preview,
-                                             gint xmin,
-                                             gint ymin,
-                                             gint xmax,
-                                             gint ymax);
+                                             gint xmin,
+                                             gint ymin,
+                                             gint xmax,
+                                             gint ymax);
 void        gimp_preview_get_size           (GimpPreview *preview,
-                                             gint *width,
-                                             gint *height);
+                                             gint *width,
+                                             gint *height);
 void        gimp_preview_get_position       (GimpPreview *preview,
-                                             gint *x,
-                                             gint *y);
+                                             gint *x,
+                                             gint *y);
 void        gimp_preview_draw               (GimpPreview *preview);
 void        gimp_preview_draw_buffer        (GimpPreview *preview,
-                                             const guchar *buffer,
-                                             gint rowstride);
+                                             const guchar *buffer,
+                                             gint rowstride);
 void        gimp_preview_invalidate         (GimpPreview *preview);
 void        gimp_preview_set_default_cursor (GimpPreview *preview,
-                                             GdkCursor *cursor);
-
-

Object Hierarchy

-
-  GObject
-   +----GtkObject
-         +----GtkWidget
-               +----GtkContainer
-                     +----GtkBox
-                           +----GtkVBox
+                                             GdkCursor *cursor);
+
+

Object Hierarchy

+
+  GObject
+   +----GtkObject
+         +----GtkWidget
+               +----GtkContainer
+                     +----GtkBox
+                           +----GtkVBox
                                  +----GimpPreview
-

Implemented Interfaces

+

Implemented Interfaces

GimpPreview implements - AtkImplementorIface.

Properties

+ AtkImplementorIface.

Properties

 
-  "update"               gboolean             : Read / Write / Construct
-

Style Properties

-
-  "size"                 gint                 : Read
-

Signal Prototypes

+  "update"               gboolean              : Read / Write / Construct
+

Style Properties

+
+  "size"                 gint                  : Read
+

Signal Prototypes

 
 "invalidated"
             void        user_function      (GimpPreview *gimppreview,
-                                            gpointer user_data);
-

Description

+ gpointer user_data); +

Description

A widget providing a GimpPreviewArea plus framework to update the preview. -

Details

struct GimpPreview

struct GimpPreview;

+

Details

GimpPreview

typedef struct _GimpPreview 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. +
Returns: the state of the "Preview" check button.

Since GIMP 2.2 -


gimp_preview_set_update ()

void        gimp_preview_set_update         (GimpPreview *preview,
-                                             gboolean update);

+


gimp_preview_set_update ()

void        gimp_preview_set_update         (GimpPreview *preview,
+                                             gboolean update);

Sets the state of the "Preview" check button.

preview: a GimpPreview widget
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,
-                                             gint xmin,
-                                             gint ymin,
-                                             gint xmax,
-                                             gint ymax);

+


gimp_preview_set_bounds ()

void        gimp_preview_set_bounds         (GimpPreview *preview,
+                                             gint xmin,
+                                             gint ymin,
+                                             gint xmax,
+                                             gint ymax);

Sets the lower and upper limits for the previewed area. The difference between the upper and lower value is used to set the maximum size of the GimpPreviewArea used in the preview.

@@ -111,25 +137,33 @@ xmax: ymax:

Since GIMP 2.2 -


gimp_preview_get_size ()

void        gimp_preview_get_size           (GimpPreview *preview,
-                                             gint *width,
-                                             gint *height);

+


gimp_preview_get_size ()

void        gimp_preview_get_size           (GimpPreview *preview,
+                                             gint *width,
+                                             gint *height);

preview: a GimpPreview widget
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,
-                                             gint *x,
-                                             gint *y);

+


gimp_preview_get_position ()

void        gimp_preview_get_position       (GimpPreview *preview,
+                                             gint *x,
+                                             gint *y);

preview: a GimpPreview widget
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. @@ -141,9 +175,13 @@

preview: a GimpPreview widget

Since GIMP 2.2 -


gimp_preview_draw_buffer ()

void        gimp_preview_draw_buffer        (GimpPreview *preview,
-                                             const guchar *buffer,
-                                             gint rowstride);

+


gimp_preview_draw_buffer ()

void        gimp_preview_draw_buffer        (GimpPreview *preview,
+                                             const guchar *buffer,
+                                             gint rowstride);

Calls the GimpPreview::draw_buffer method. GimpPreview itself doesn't implement this method so the behaviour is determined by the derived class implementing this method.

@@ -152,7 +190,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. @@ -165,17 +203,27 @@

preview: a GimpPreview widget

Since GIMP 2.2 -


gimp_preview_set_default_cursor ()

void        gimp_preview_set_default_cursor (GimpPreview *preview,
-                                             GdkCursor *cursor);

+


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 GDK_WATCH when the preview is invalidated.

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,
-                                            gpointer user_data);

+cursor: a GdkCursor or NULL +

Since GIMP 2.2 +

Properties

The "update" property

  "update"               gboolean              : Read / Write / Construct

Default value: TRUE

Style Properties

The "size" style property

  "size"                 gint                  : Read

Allowed values: [1,1024]

Default value: 150

Signals

The "invalidated" signal

void        user_function                  (GimpPreview *gimppreview,
+                                            gpointer user_data);

gimppreview:the object which received the signal. diff -uraN gimp-2.2.4/devel-docs/libgimpwidgets/html/GimpSizeEntry.html gimp-2.2.5/devel-docs/libgimpwidgets/html/GimpSizeEntry.html --- gimp-2.2.4/devel-docs/libgimpwidgets/html/GimpSizeEntry.html 2005-02-22 23:13:30.000000000 +0100 +++ gimp-2.2.5/devel-docs/libgimpwidgets/html/GimpSizeEntry.html 2005-04-09 23:10:40.000000000 +0200 @@ -1,90 +1,132 @@ -GimpSizeEntry

GimpSizeEntry

GimpSizeEntry — Widget for entering pixel values and resolutions.

Synopsis

+GimpSizeEntry

GimpSizeEntry

GimpSizeEntry — Widget for entering pixel values and resolutions.

Synopsis

 
 
 
-struct      GimpSizeEntry;
-struct      GimpSizeEntryField;
+            GimpSizeEntry;
+            GimpSizeEntryField;
 enum        GimpSizeEntryUpdatePolicy;
-GtkWidget*  gimp_size_entry_new             (gint number_of_fields,
+GtkWidget*  gimp_size_entry_new             (gint number_of_fields,
                                              GimpUnit unit,
-                                             const gchar *unit_format,
-                                             gboolean menu_show_pixels,
-                                             gboolean menu_show_percent,
-                                             gboolean show_refval,
-                                             gint spinbutton_width,
+                                             const gchar *unit_format,
+                                             gboolean menu_show_pixels,
+                                             gboolean menu_show_percent,
+                                             gboolean show_refval,
+                                             gint spinbutton_width,
                                              GimpSizeEntryUpdatePolicy update_policy);
 void        gimp_size_entry_add_field       (GimpSizeEntry *gse,
-                                             GtkSpinButton *value_spinbutton,
-                                             GtkSpinButton *refval_spinbutton);
-GtkWidget*  gimp_size_entry_attach_label    (GimpSizeEntry *gse,
-                                             const gchar *text,
-                                             gint row,
-                                             gint column,
-                                             gfloat alignment);
+                                             GtkSpinButton *value_spinbutton,
+                                             GtkSpinButton *refval_spinbutton);
+GtkWidget*  gimp_size_entry_attach_label    (GimpSizeEntry *gse,
+                                             const gchar *text,
+                                             gint row,
+                                             gint column,
+                                             gfloat alignment);
 void        gimp_size_entry_set_resolution  (GimpSizeEntry *gse,
-                                             gint field,
-                                             gdouble resolution,
-                                             gboolean keep_size);
+                                             gint field,
+                                             gdouble resolution,
+                                             gboolean keep_size);
 void        gimp_size_entry_set_size        (GimpSizeEntry *gse,
-                                             gint field,
-                                             gdouble lower,
-                                             gdouble upper);
+                                             gint field,
+                                             gdouble lower,
+                                             gdouble upper);
 void        gimp_size_entry_set_value_boundaries
                                             (GimpSizeEntry *gse,
-                                             gint field,
-                                             gdouble lower,
-                                             gdouble upper);
-gdouble     gimp_size_entry_get_value       (GimpSizeEntry *gse,
-                                             gint field);
+                                             gint field,
+                                             gdouble lower,
+                                             gdouble upper);
+gdouble     gimp_size_entry_get_value       (GimpSizeEntry *gse,
+                                             gint field);
 void        gimp_size_entry_set_value       (GimpSizeEntry *gse,
-                                             gint field,
-                                             gdouble value);
+                                             gint field,
+                                             gdouble value);
 void        gimp_size_entry_set_refval_boundaries
                                             (GimpSizeEntry *gse,
-                                             gint field,
-                                             gdouble lower,
-                                             gdouble upper);
+                                             gint field,
+                                             gdouble lower,
+                                             gdouble upper);
 void        gimp_size_entry_set_refval_digits
                                             (GimpSizeEntry *gse,
-                                             gint field,
-                                             gint digits);
-gdouble     gimp_size_entry_get_refval      (GimpSizeEntry *gse,
-                                             gint field);
+                                             gint field,
+                                             gint digits);
+gdouble     gimp_size_entry_get_refval      (GimpSizeEntry *gse,
+                                             gint field);
 void        gimp_size_entry_set_refval      (GimpSizeEntry *gse,
-                                             gint field,
-                                             gdouble refval);
+                                             gint field,
+                                             gdouble refval);
 GimpUnit    gimp_size_entry_get_unit        (GimpSizeEntry *gse);
@@ -94,33 +136,55 @@
 >GimpUnit unit);
 void        gimp_size_entry_set_pixel_digits
                                             (GimpSizeEntry *gse,
-                                             gint digits);
+                                             gint digits);
 void        gimp_size_entry_grab_focus      (GimpSizeEntry *gse);
-GtkWidget*  gimp_size_entry_get_help_widget (GimpSizeEntry *gse,
-                                             gint field);
+GtkWidget*  gimp_size_entry_get_help_widget (GimpSizeEntry *gse,
+                                             gint field);
 
-

Object Hierarchy

+

Object Hierarchy

 
-  GObject
-   +----GtkObject
-         +----GtkWidget
-               +----GtkContainer
-                     +----GtkTable
+  GObject
+   +----GtkObject
+         +----GtkWidget
+               +----GtkContainer
+                     +----GtkTable
                            +----GimpSizeEntry
-

Implemented Interfaces

+

Implemented Interfaces

GimpSizeEntry implements - AtkImplementorIface.

Signal Prototypes

+ AtkImplementorIface.

Signal Prototypes

 
 "refval-changed"
             void        user_function      (GimpSizeEntry *gimpsizeentry,
-                                            gpointer user_data);
+                                            gpointer user_data);
 "unit-changed"
             void        user_function      (GimpSizeEntry *gimpsizeentry,
-                                            gpointer user_data);
+                                            gpointer user_data);
 "value-changed"
             void        user_function      (GimpSizeEntry *gimpsizeentry,
-                                            gpointer user_data);
-

Description

+ gpointer user_data); +

Description

This widget is used to enter pixel distances/sizes and resolutions.

You can specify the number of fields the widget should provide. For @@ -132,9 +196,15 @@ href="../libgimpbase/libgimpbase-gimpunit.html#GimpUnit" >GimpUnit of the displayed values.

-For each field, there can be one or two GtkSpinButton's to enter -"value" and "reference value". If you specify show_refval as FALSE -in gimp_size_entry_new() there will be only one GtkSpinButton and the +For each field, there can be one or two GtkSpinButton's to enter +"value" and "reference value". If you specify show_refval as FALSE +in gimp_size_entry_new() there will be only one GtkSpinButton and the GimpUnitMenu will contain an item for selecting GIMP_UNIT_PIXEL.

The "reference value" is either of GIMP_UNIT_PIXEL or dpi, depending @@ -144,11 +214,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

GimpSizeEntry

typedef struct _GimpSizeEntry GimpSizeEntry;

-


struct GimpSizeEntryField

struct GimpSizeEntryField;

+


GimpSizeEntryField

typedef struct _GimpSizeEntryField GimpSizeEntryField;

-


enum GimpSizeEntryUpdatePolicy

typedef enum
+


enum GimpSizeEntryUpdatePolicy

typedef enum
 {
   GIMP_SIZE_ENTRY_UPDATE_NONE       = 0,
   GIMP_SIZE_ENTRY_UPDATE_SIZE       = 1,
@@ -156,15 +226,29 @@
 } 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,
-                                             const gchar *unit_format,
-                                             gboolean menu_show_pixels,
-                                             gboolean menu_show_percent,
-                                             gboolean show_refval,
-                                             gint spinbutton_width,
+                                             const gchar *unit_format,
+                                             gboolean menu_show_pixels,
+                                             gboolean menu_show_percent,
+                                             gboolean show_refval,
+                                             gint spinbutton_width,
                                              GimpSizeEntryUpdatePolicy update_policy);

Creates a new GimpSizeEntry widget.

@@ -188,7 +272,9 @@

7. gimp_size_entry_set_refval() (or gimp_size_entry_set_value())

-The GimpSizeEntry is derived from GtkTable and will have +The GimpSizeEntry is derived from GtkTable and will have an empty border of one cell width on each side plus an empty column left of the GimpUnitMenu to allow the caller to add labels or a GimpChainButton.

@@ -204,47 +290,77 @@ GIMP_UNIT_PERCENT.

show_refval: TRUE if you want an extra "reference value" spinbutton per input field. -
spinbutton_width: The minimal horizontal size of the GtkSpinButton's. +
spinbutton_width: The minimal horizontal size of the GtkSpinButton's.
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,
-                                             GtkSpinButton *value_spinbutton,
-                                             GtkSpinButton *refval_spinbutton);

+Returns: A Pointer to the new GimpSizeEntry widget. +


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.

The new input field will have the index 0. If you specified show_refval as TRUE in gimp_size_entry_new() you have to pass an additional -GtkSpinButton to hold the reference value. If show_refval was FALSE, +GtkSpinButton to hold the reference value. If show_refval was FALSE, refval_spinbutton will be ignored.

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,
-                                             const gchar *text,
-                                             gint row,
-                                             gint column,
-                                             gfloat alignment);

-Attaches a GtkLabel to the GimpSizeEntry (which is a GtkTable).

+


gimp_size_entry_attach_label ()

GtkWidget*  gimp_size_entry_attach_label    (GimpSizeEntry *gse,
+                                             const gchar *text,
+                                             gint row,
+                                             gint column,
+                                             gfloat alignment);

+Attaches a GtkLabel to the GimpSizeEntry (which is a GtkTable).

gse: The sizeentry you want to add a label to.
text: The text of the label.
row: The row where the label will be attached.
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,
-                                             gint field,
-                                             gdouble resolution,
-                                             gboolean keep_size);

+Returns: A pointer to the new GtkLabel widget. +


gimp_size_entry_set_resolution ()

void        gimp_size_entry_set_resolution  (GimpSizeEntry *gse,
+                                             gint field,
+                                             gdouble resolution,
+                                             gboolean keep_size);

Sets the resolution (in dpi) for field # field of the GimpSizeEntry.

The resolution passed will be clamped to fit in [GIMP_MIN_RESOLUTION..GIMP_MAX_RESOLUTION].

This function does nothing if the GimpSizeEntryUpdatePolicy specified in @@ -255,10 +371,16 @@ 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,
-                                             gint field,
-                                             gdouble lower,
-                                             gdouble upper);

+


gimp_size_entry_set_size ()

void        gimp_size_entry_set_size        (GimpSizeEntry *gse,
+                                             gint field,
+                                             gdouble lower,
+                                             gdouble upper);

Sets the pixel values for field # field of the GimpSizeEntry which will be treated as 0% and 100%.

@@ -273,11 +395,17 @@ 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,
-                                             gdouble upper);

+ gint field, + gdouble lower, + gdouble upper);

Limits the range of possible values which can be entered in field # field of the GimpSizeEntry.

@@ -294,8 +422,12 @@ 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,
-                                             gint field);

+


gimp_size_entry_get_value ()

gdouble     gimp_size_entry_get_value       (GimpSizeEntry *gse,
+                                             gint field);

Returns the value of field # field of the GimpSizeEntry.

The value returned is a distance or resolution @@ -310,10 +442,14 @@

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,
-                                             gint field,
-                                             gdouble value);

+Returns: The value of the chosen field. +


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.

The value passed is treated to be a distance or resolution @@ -329,11 +465,17 @@

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,
-                                             gdouble upper);

+ gint field, + gdouble lower, + gdouble upper);

Limits the range of possible reference values which can be entered in field # field of the GimpSizeEntry.

@@ -345,10 +487,14 @@ 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);

+ gint field, + gint digits);

Sets the decimal digits of field # field of the GimpSizeEntry to digits.

@@ -358,10 +504,16 @@

gse: The sizeentry you want to set the reference value digits for.
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 +
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,
-                                             gint field);

+


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.

The reference value is either a distance in pixels or a resolution @@ -370,10 +522,14 @@

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,
-                                             gint field,
-                                             gdouble refval);

+Returns: The reference value of the chosen field. +


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.

The refval passed is either a distance in pixels or a resolution in dpi, @@ -383,7 +539,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 GimpUnitMenu.

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,
+Returns: The sizeentry's unit.
+

gimp_size_entry_set_unit ()

void        gimp_size_entry_set_unit        (GimpSizeEntry *gse,
                                              GimpUnit unit);

@@ -404,44 +560,62 @@

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);

+ gint digits);

Similar to gimp_unit_menu_set_pixel_digits(), this function allows you set up a GimpSizeEntry so that sub-pixel sizes can be entered.

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.

+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,
-                                             gint field);

+


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 can use this function to get a pointer to the spinbuttons.

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,
-                                            gpointer user_data);

+Returns: a GtkWidget pointer that you can attach a tooltip to. +

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,
-                                            gpointer user_data);

+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,
-                                            gpointer user_data);

+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.4/devel-docs/libgimpwidgets/html/GimpUnitMenu.html gimp-2.2.5/devel-docs/libgimpwidgets/html/GimpUnitMenu.html --- gimp-2.2.4/devel-docs/libgimpwidgets/html/GimpUnitMenu.html 2005-02-22 23:13:30.000000000 +0100 +++ gimp-2.2.5/devel-docs/libgimpwidgets/html/GimpUnitMenu.html 2005-04-09 23:10:40.000000000 +0200 @@ -1,47 +1,27 @@ -GimpUnitMenu

GimpUnitMenu

GimpUnitMenu — Widget for selecting a GimpUnitMenu

GimpUnitMenu

GimpUnitMenu — Widget for selecting a GimpUnit.

Synopsis

+>GimpUnit.

Synopsis

 
 
 
-struct      GimpUnitMenu;
-GtkWidget*  gimp_unit_menu_new              (const gchar *format,
+            GimpUnitMenu;
+GtkWidget*  gimp_unit_menu_new              (const gchar *format,
                                              GimpUnit unit,
-                                             gboolean show_pixels,
-                                             gboolean show_percent,
-                                             gboolean show_custom);
+                                             gboolean show_pixels,
+                                             gboolean show_percent,
+                                             gboolean show_custom);
 void        gimp_unit_menu_set_unit         (GimpUnitMenu *menu,
                                              GimpUnit    gimp_unit_menu_get_unit         (GimpUnitMenu *menu);
-gint        gimp_unit_menu_get_pixel_digits (GimpUnitMenu *menu);
+gint        gimp_unit_menu_get_pixel_digits (GimpUnitMenu *menu);
 void        gimp_unit_menu_set_pixel_digits (GimpUnitMenu *menu,
-                                             gint digits);
+                                             gint digits);
 
-

Object Hierarchy

+

Object Hierarchy

 
-  GObject
-   +----GtkObject
-         +----GtkWidget
-               +----GtkContainer
-                     +----GtkBin
-                           +----GtkButton
-                                 +----GtkOptionMenu
+  GObject
+   +----GtkObject
+         +----GtkWidget
+               +----GtkContainer
+                     +----GtkBin
+                           +----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

-This widget provides a GtkOptionMenu which contains a list of GimpUnitMenu *arg0, + gpointer user_data); +

Description

+This widget provides a GtkOptionMenu which contains a list of GimpUnit's.

@@ -84,15 +86,25 @@

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

GimpUnitMenu

typedef struct _GimpUnitMenu 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,
-                                             gboolean show_pixels,
-                                             gboolean show_percent,
-                                             gboolean show_custom);

+ gboolean show_pixels, + gboolean show_percent, + gboolean show_custom);

Creates a new GimpUnitMenu widget.

The format string supports the following percent expansions: @@ -108,8 +120,8 @@ GIMP_UNIT_PERCENT. 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,
+Returns: A pointer to the new GimpUnitMenu widget.
+

gimp_unit_menu_set_unit ()

void        gimp_unit_menu_set_unit         (GimpUnitMenu *menu,
                                              GimpUnit unit);

@@ -119,7 +131,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 GimpUnit the user has selected from the GimpUnitMenu.

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);

+Returns: The unit the user has selected. +


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,
-                                             gint digits);

+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,
+                                             gint digits);

A GimpUnitMenu can be setup to control the number of digits shown by attached spinbuttons. Please refer to the documentation of gimp_unit_menu_update() to see how this is done. @@ -148,14 +164,16 @@

menu: a GimpUnitMenu
digits: the number of digits to display for a pixel size -

Signals

The "unit-changed" signal

void        user_function                  (GimpUnitMenu *,
-                                            gpointer user_data);

+

Signals

The "unit-changed" signal

void        user_function                  (GimpUnitMenu *arg0,
+                                            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.4/devel-docs/libgimpwidgets/html/index.html gimp-2.2.5/devel-docs/libgimpwidgets/html/index.html --- gimp-2.2.4/devel-docs/libgimpwidgets/html/index.html 2005-02-22 23:13:30.000000000 +0100 +++ gimp-2.2.5/devel-docs/libgimpwidgets/html/index.html 2005-04-09 23:10:40.000000000 +0200 @@ -1,35 +1,5 @@ -GIMP Widgets Library Reference Manual

- for GIMP 2.2.1 +GIMP Widgets Library Reference Manual

+ for GIMP 2.2.4


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.4/devel-docs/libgimpwidgets/html/index.sgml gimp-2.2.5/devel-docs/libgimpwidgets/html/index.sgml --- gimp-2.2.4/devel-docs/libgimpwidgets/html/index.sgml 2005-02-22 23:13:30.000000000 +0100 +++ gimp-2.2.5/devel-docs/libgimpwidgets/html/index.sgml 2005-04-09 23:10:40.000000000 +0200 @@ -200,8 +200,8 @@ - - + + @@ -239,7 +239,7 @@ - + @@ -257,7 +257,7 @@ - + @@ -284,184 +284,184 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -469,21 +469,21 @@ - - - - - + + + + + - - - + + + - + diff -uraN gimp-2.2.4/devel-docs/libgimpwidgets/html/libgimpwidgets-cell-renderers.html gimp-2.2.5/devel-docs/libgimpwidgets/html/libgimpwidgets-cell-renderers.html --- gimp-2.2.4/devel-docs/libgimpwidgets/html/libgimpwidgets-cell-renderers.html 2005-02-22 23:13:30.000000000 +0100 +++ gimp-2.2.5/devel-docs/libgimpwidgets/html/libgimpwidgets-cell-renderers.html 2005-04-09 23:10:40.000000000 +0200 @@ -1,31 +1 @@ -Cell Renderers for GtkTreeView

Cell Renderers for GtkTreeView

+Cell Renderers for GtkTreeView

Cell Renderers for GtkTreeView

diff -uraN gimp-2.2.4/devel-docs/libgimpwidgets/html/libgimpwidgets-colordisplay.html gimp-2.2.5/devel-docs/libgimpwidgets/html/libgimpwidgets-colordisplay.html --- gimp-2.2.4/devel-docs/libgimpwidgets/html/libgimpwidgets-colordisplay.html 2005-02-22 23:13:30.000000000 +0100 +++ gimp-2.2.5/devel-docs/libgimpwidgets/html/libgimpwidgets-colordisplay.html 2005-04-09 23:10:40.000000000 +0200 @@ -1,31 +1 @@ -PartII.GIMP Display Filters

GIMP Display Filters

Table of Contents

GimpColorDisplay - Pluggable GIMP display color correction modules.
GimpColorDisplayStack -
+PartII.GIMP Display Filters

GIMP Display Filters

diff -uraN gimp-2.2.4/devel-docs/libgimpwidgets/html/libgimpwidgets-colorselector.html gimp-2.2.5/devel-docs/libgimpwidgets/html/libgimpwidgets-colorselector.html --- gimp-2.2.4/devel-docs/libgimpwidgets/html/libgimpwidgets-colorselector.html 2005-02-22 23:13:30.000000000 +0100 +++ gimp-2.2.5/devel-docs/libgimpwidgets/html/libgimpwidgets-colorselector.html 2005-04-09 23:10:40.000000000 +0200 @@ -1,31 +1 @@ -PartIII.GIMP Color Selectors

GIMP Color Selectors

Table of Contents

GimpColorSelector - Pluggable GIMP color selector modules.
GimpColorNotebook - A GimpColorSelector implementation.
GimpColorScales - A GimpColorSelector implementation.
GimpColorSelect - A GimpColorSelector implementation.
+PartIII.GIMP Color Selectors

GIMP Color Selectors

diff -uraN gimp-2.2.4/devel-docs/libgimpwidgets/html/libgimpwidgets-controller.html gimp-2.2.5/devel-docs/libgimpwidgets/html/libgimpwidgets-controller.html --- gimp-2.2.4/devel-docs/libgimpwidgets/html/libgimpwidgets-controller.html 2005-02-22 23:13:30.000000000 +0100 +++ gimp-2.2.5/devel-docs/libgimpwidgets/html/libgimpwidgets-controller.html 2005-04-09 23:10:40.000000000 +0200 @@ -1,33 +1,3 @@ -PartIV.GIMP Controllers

GIMP Controllers

Table of Contents

GimpController - Pluggable GIMP input controller modules.

+PartIV.GIMP Controllers

GIMP Controllers

Note that the controller API is work in progress.

diff -uraN gimp-2.2.4/devel-docs/libgimpwidgets/html/libgimpwidgets-deprecated.html gimp-2.2.5/devel-docs/libgimpwidgets/html/libgimpwidgets-deprecated.html --- gimp-2.2.4/devel-docs/libgimpwidgets/html/libgimpwidgets-deprecated.html 2005-02-22 23:13:30.000000000 +0100 +++ gimp-2.2.5/devel-docs/libgimpwidgets/html/libgimpwidgets-deprecated.html 2005-04-09 23:10:40.000000000 +0200 @@ -1,31 +1 @@ -PartVI.Deprecated API

Deprecated API

Table of Contents

gimpoldwidgets - Old API that is still available but declared as deprecated.
+PartVI.Deprecated API

Deprecated API

diff -uraN gimp-2.2.4/devel-docs/libgimpwidgets/html/libgimpwidgets.devhelp gimp-2.2.5/devel-docs/libgimpwidgets/html/libgimpwidgets.devhelp --- gimp-2.2.4/devel-docs/libgimpwidgets/html/libgimpwidgets.devhelp 2005-02-22 23:13:30.000000000 +0100 +++ gimp-2.2.5/devel-docs/libgimpwidgets/html/libgimpwidgets.devhelp 2005-04-09 23:10:40.000000000 +0200 @@ -54,17 +54,17 @@ - + - + - + @@ -73,7 +73,7 @@ - + @@ -82,16 +82,16 @@ - + - + - + @@ -102,20 +102,24 @@ - + - + + + - + - + + + @@ -124,22 +128,22 @@ - + - + - + - + @@ -149,13 +153,13 @@ - + - + - + @@ -165,7 +169,9 @@ - + + + @@ -175,22 +181,29 @@ + + - - + + - + - + + + + + + - + @@ -201,8 +214,9 @@ + - + @@ -215,9 +229,9 @@ - - - + + + @@ -229,24 +243,28 @@ - + - - + + + + - - - + + + - + + + - + @@ -263,9 +281,9 @@ - - - + + + @@ -288,205 +306,205 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - + + + + + - - - + + + - + diff -uraN gimp-2.2.4/devel-docs/libgimpwidgets/html/libgimpwidgets-GimpHelpUI.html gimp-2.2.5/devel-docs/libgimpwidgets/html/libgimpwidgets-GimpHelpUI.html --- gimp-2.2.4/devel-docs/libgimpwidgets/html/libgimpwidgets-GimpHelpUI.html 2005-02-22 23:13:30.000000000 +0100 +++ gimp-2.2.5/devel-docs/libgimpwidgets/html/libgimpwidgets-GimpHelpUI.html 2005-04-09 23:10:40.000000000 +0200 @@ -1,58 +1,56 @@ -GimpHelpUI

GimpHelpUI

GimpHelpUI — Functions for setting GtkTooltips and help identifier used by GIMP help -system.

Synopsis

+GimpHelpUI

GimpHelpUI

GimpHelpUI — Functions for setting GtkTooltips and help identifier used by GIMP help +system.

Synopsis

 
 
 
-void        (*GimpHelpFunc)                 (const gchar *help_id,
-                                             gpointer help_data);
-#define     GIMP_HELP_ID
+void        (*GimpHelpFunc)                 (const gchar *help_id,
+                                             gpointer help_data);
+#define     GIMP_HELP_ID
 void        gimp_help_enable_tooltips       (void);
 void        gimp_help_disable_tooltips      (void);
-void        gimp_standard_help_func         (const gchar *help_id,
-                                             gpointer help_data);
-void        gimp_help_connect               (GtkWidget *widget,
+void        gimp_standard_help_func         (const gchar *help_id,
+                                             gpointer help_data);
+void        gimp_help_connect               (GtkWidget *widget,
                                              GimpHelpFunc help_func,
-                                             const gchar *help_id,
-                                             gpointer help_data);
-void        gimp_help_set_help_data         (GtkWidget *widget,
-                                             const gchar *tooltip,
-                                             const gchar *help_id);
-void        gimp_context_help               (GtkWidget *widget);
-
-

Description

- -

Details

GimpHelpFunc ()

void        (*GimpHelpFunc)                 (const gchar *help_id,
-                                             gpointer help_data);

+ const gchar *help_id, + gpointer help_data); +void gimp_help_set_help_data (GtkWidget *widget, + const gchar *tooltip, + const gchar *help_id); +void gimp_context_help (GtkWidget *widget); + +

Description

+ +

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(), gimp_query_int_box() etc. @@ -75,17 +73,25 @@ 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);

-This function calls gtk_tooltips_enable().

- -


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,
-                                             gpointer help_data);

+


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);

+This function calls gtk_tooltips_disable().

+ +


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

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);

+ const gchar *help_id, + gpointer help_data);

Note that this function is automatically called by all libgimp dialog constructors. You only have to call it for windows/dialogs you created "manually".

widget: The widget you want to connect the help accelerator for. Will - be a GtkWindow in most cases. + be a GtkWindow in most cases.
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,
-                                             const gchar *tooltip,
-                                             const gchar *help_id);

-The reason why we don't use gtk_tooltips_set_tip() is that it's +


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 impossible to set a private_tip (aka help_id) without a visible tooltip.

-This function can be called with NULL for tooltip. Use this feature +This function can be called with NULL for tooltip. Use this feature if you want to set a help link for a widget which shouldn't have a visible tooltip.

-

widget: The GtkWidget you want to set a tooltip and/or help_id for. +

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);

+

help_id: The help_id for the GtkTipsQuery tooltips inspector. +

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 @@ -132,5 +162,7 @@ until it finds an attached help_id string (which should be the case at least for every window/dialog).

-

widget: Any GtkWidget on the screen. +

widget: Any GtkWidget on the screen.
diff -uraN gimp-2.2.4/devel-docs/libgimpwidgets/html/libgimpwidgets-gimpoldwidgets.html gimp-2.2.5/devel-docs/libgimpwidgets/html/libgimpwidgets-gimpoldwidgets.html --- gimp-2.2.4/devel-docs/libgimpwidgets/html/libgimpwidgets-gimpoldwidgets.html 2005-02-22 23:13:30.000000000 +0100 +++ gimp-2.2.5/devel-docs/libgimpwidgets/html/libgimpwidgets-gimpoldwidgets.html 2005-04-09 23:10:40.000000000 +0200 @@ -1,185 +1,321 @@ -gimpoldwidgets

gimpoldwidgets

gimpoldwidgets — Old API that is still available but declared as deprecated.

Synopsis

+gimpoldwidgets

gimpoldwidgets

gimpoldwidgets — Old API that is still available but declared as deprecated.

Synopsis

 
 
 
-GtkWidget*  gimp_int_option_menu_new        (gboolean menu_only,
-                                             GCallback menu_item_callback,
-                                             gpointer menu_item_callback_data,
-                                             gint initial,
+GtkWidget*  gimp_int_option_menu_new        (gboolean menu_only,
+                                             GCallback menu_item_callback,
+                                             gpointer menu_item_callback_data,
+                                             gint initial,
                                              ...);
 void        gimp_int_option_menu_set_history
-                                            (GtkOptionMenu *option_menu,
-                                             gint item_data);
-gboolean    (*GimpIntOptionMenuSensitivityCallback)
-                                            (gint item_data,
-                                             gpointer callback_data);
+                                            (GtkOptionMenu *option_menu,
+                                             gint item_data);
+gboolean    (*GimpIntOptionMenuSensitivityCallback)
+                                            (gint item_data,
+                                             gpointer callback_data);
 void        gimp_int_option_menu_set_sensitive
-                                            (GtkOptionMenu *option_menu,
+                                            (GtkOptionMenu *option_menu,
                                              GimpIntOptionMenuSensitivityCallback callback,
-                                             gpointer callback_data);
-GtkWidget*  gimp_option_menu_new            (gboolean menu_only,
+                                             gpointer callback_data);
+GtkWidget*  gimp_option_menu_new            (gboolean menu_only,
                                              ...);
-GtkWidget*  gimp_option_menu_new2           (gboolean menu_only,
-                                             GCallback menu_item_callback,
-                                             gpointer menu_item_callback_data,
-                                             gpointer initial,
+GtkWidget*  gimp_option_menu_new2           (gboolean menu_only,
+                                             GCallback menu_item_callback,
+                                             gpointer menu_item_callback_data,
+                                             gpointer initial,
                                              ...);
-void        gimp_option_menu_set_history    (GtkOptionMenu *option_menu,
-                                             gpointer item_data);
-gboolean    (*GimpOptionMenuSensitivityCallback)
-                                            (gpointer item_data,
-                                             gpointer callback_data);
-void        gimp_option_menu_set_sensitive  (GtkOptionMenu *option_menu,
+void        gimp_option_menu_set_history    (GtkOptionMenu *option_menu,
+                                             gpointer item_data);
+gboolean    (*GimpOptionMenuSensitivityCallback)
+                                            (gpointer item_data,
+                                             gpointer callback_data);
+void        gimp_option_menu_set_sensitive  (GtkOptionMenu *option_menu,
                                              GimpOptionMenuSensitivityCallback callback,
-                                             gpointer callback_data);
-void        gimp_menu_item_update           (GtkWidget *widget,
-                                             gpointer data);
-

Description

+ gpointer callback_data); +void gimp_menu_item_update (GtkWidget *widget, + gpointer data); +

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,
-                                             GCallback menu_item_callback,
-                                             gpointer menu_item_callback_data,
-                                             gint initial,
+

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,
                                              ...);

Warning

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

-Convenience function to create a GtkOptionMenu or a GtkMenu. This +Convenience function to create a GtkOptionMenu or a GtkMenu. This function does the same thing as the deprecated function gimp_option_menu_new2(), but it takes integers as item_data instead of pointers, since that is a very common case (mapping an enum to a menu).

-

menu_only: TRUE if the function should return a GtkMenu only. +

menu_only: TRUE if the function should return a GtkMenu only.
menu_item_callback: The callback each menu item's "activate" signal will be connected with.
menu_item_callback_data: - The data which will be passed to g_signal_connect(). + The data which will be passed to g_signal_connect().
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
-                                            (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 -matching item_data. Probably only makes sense to use with a GtkOptionMenu +

Returns: A GtkOptionMenu or a GtkMenu (depending on menu_only). +

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 +matching item_data. Probably only makes sense to use with a GtkOptionMenu that was created using gimp_int_option_menu_new(). This function does the same thing as gimp_option_menu_set_history(), but takes integers as item_data instead of pointers.

-

option_menu: A GtkOptionMenu as returned by gimp_int_option_menu_new(). +

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)
-                                            (gint item_data,
-                                             gpointer callback_data);

Warning

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

+


GimpIntOptionMenuSensitivityCallback ()

gboolean    (*GimpIntOptionMenuSensitivityCallback)
+                                            (gint item_data,
+                                             gpointer callback_data);

Warning

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

item_data:
callback_data: -
Returns : +
Returns: -

gimp_int_option_menu_set_sensitive ()

void        gimp_int_option_menu_set_sensitive
-                                            (GtkOptionMenu *option_menu,
+

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.

+ gpointer callback_data);

Warning

gimp_int_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 item_data and the callback_data. The menu item's sensitivity is set according to the return value of this function. This function does the same thing as gimp_option_menu_set_sensitive(), but takes integers as item_data instead of pointers.

-

option_menu: a GtkOptionMenu as returned by gimp_option_menu_new() or +

option_menu: a GtkOptionMenu as returned by gimp_option_menu_new() or gimp_option_menu_new2().
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. +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,
-                                             GCallback menu_item_callback,
-                                             gpointer menu_item_callback_data,
-                                             gpointer initial,
+
Returns: A GtkOptionMenu or a GtkMenu (depending on 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,
                                              ...);

Warning

gimp_option_menu_new2 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. +Convenience function to create a GtkOptionMenu or a GtkMenu.

+ +

menu_only: TRUE if the function should return a GtkMenu only.
menu_item_callback: The callback each menu item's "activate" signal will be connected with.
menu_item_callback_data: - The data which will be passed to g_signal_connect(). + The data which will be passed to g_signal_connect().
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,
-                                             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 +

Returns: A GtkOptionMenu or a GtkMenu (depending on menu_only). +

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 -a GtkOptionMenu that was created using gimp_option_menu_new() or +a GtkOptionMenu that was created using gimp_option_menu_new() or gimp_option_menu_new2().

-

option_menu: A GtkOptionMenu as returned by gimp_option_menu_new() or +

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)
-                                            (gpointer item_data,
-                                             gpointer callback_data);

Warning

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

+


GimpOptionMenuSensitivityCallback ()

gboolean    (*GimpOptionMenuSensitivityCallback)
+                                            (gpointer item_data,
+                                             gpointer callback_data);

Warning

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

item_data:
callback_data: -
Returns : +
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.

+ 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 item_data and the callback_data. The menu item's sensitivity is set according to the return value of this function.

-

option_menu: a GtkOptionMenu as returned by gimp_option_menu_new() or +

option_menu: a GtkOptionMenu as returned by gimp_option_menu_new() or gimp_option_menu_new2().
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,
-                                             gpointer data);

Warning

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

+


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 +

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.4/devel-docs/libgimpwidgets/html/libgimpwidgets-GimpQueryBox.html gimp-2.2.5/devel-docs/libgimpwidgets/html/libgimpwidgets-GimpQueryBox.html --- gimp-2.2.4/devel-docs/libgimpwidgets/html/libgimpwidgets-GimpQueryBox.html 2005-02-22 23:13:30.000000000 +0100 +++ gimp-2.2.5/devel-docs/libgimpwidgets/html/libgimpwidgets-GimpQueryBox.html 2005-04-09 23:10:40.000000000 +0200 @@ -1,165 +1,309 @@ -GimpQueryBox

GimpQueryBox

GimpQueryBox — Some simple dialogs to enter a single int, double, string or boolean value.

Synopsis

+GimpQueryBox

GimpQueryBox

GimpQueryBox — Some simple dialogs to enter a single int, double, string or boolean value.

Synopsis

 
 
 
-void        (*GimpQueryStringCallback)      (GtkWidget *query_box,
-                                             const gchar *string,
-                                             gpointer data);
-void        (*GimpQueryIntCallback)         (GtkWidget *query_box,
-                                             gint value,
-                                             gpointer data);
-void        (*GimpQueryDoubleCallback)      (GtkWidget *query_box,
-                                             gdouble value,
-                                             gpointer data);
-void        (*GimpQuerySizeCallback)        (GtkWidget *query_box,
-                                             gdouble size,
+void        (*GimpQueryStringCallback)      (GtkWidget *query_box,
+                                             const gchar *string,
+                                             gpointer data);
+void        (*GimpQueryIntCallback)         (GtkWidget *query_box,
+                                             gint value,
+                                             gpointer data);
+void        (*GimpQueryDoubleCallback)      (GtkWidget *query_box,
+                                             gdouble value,
+                                             gpointer data);
+void        (*GimpQuerySizeCallback)        (GtkWidget *query_box,
+                                             gdouble size,
                                              GimpUnit unit,
-                                             gpointer data);
-void        (*GimpQueryBooleanCallback)     (GtkWidget *query_box,
-                                             gboolean value,
-                                             gpointer data);
-GtkWidget*  gimp_query_string_box           (const gchar *title,
-                                             GtkWidget *parent,
+                                             gpointer data);
+void        (*GimpQueryBooleanCallback)     (GtkWidget *query_box,
+                                             gboolean value,
+                                             gpointer data);
+GtkWidget*  gimp_query_string_box           (const gchar *title,
+                                             GtkWidget *parent,
                                              GimpHelpFunc help_func,
-                                             const gchar *help_id,
-                                             const gchar *message,
-                                             const gchar *initial,
-                                             GObject *object,
-                                             const gchar *signal,
+                                             const gchar *help_id,
+                                             const gchar *message,
+                                             const gchar *initial,
+                                             GObject *object,
+                                             const gchar *signal,
                                              GimpQueryStringCallback callback,
-                                             gpointer data);
-GtkWidget*  gimp_query_int_box              (const gchar *title,
-                                             GtkWidget *parent,
+                                             gpointer data);
+GtkWidget*  gimp_query_int_box              (const gchar *title,
+                                             GtkWidget *parent,
                                              GimpHelpFunc help_func,
-                                             const gchar *help_id,
-                                             const gchar *message,
-                                             gint initial,
-                                             gint lower,
-                                             gint upper,
-                                             GObject *object,
-                                             const gchar *signal,
+                                             const gchar *help_id,
+                                             const gchar *message,
+                                             gint initial,
+                                             gint lower,
+                                             gint upper,
+                                             GObject *object,
+                                             const gchar *signal,
                                              GimpQueryIntCallback callback,
-                                             gpointer data);
-GtkWidget*  gimp_query_double_box           (const gchar *title,
-                                             GtkWidget *parent,
+                                             gpointer data);
+GtkWidget*  gimp_query_double_box           (const gchar *title,
+                                             GtkWidget *parent,
                                              GimpHelpFunc help_func,
-                                             const gchar *help_id,
-                                             const gchar *message,
-                                             gdouble initial,
-                                             gdouble lower,
-                                             gdouble upper,
-                                             gint digits,
-                                             GObject *object,
-                                             const gchar *signal,
+                                             const gchar *help_id,
+                                             const gchar *message,
+                                             gdouble initial,
+                                             gdouble lower,
+                                             gdouble upper,
+                                             gint digits,
+                                             GObject *object,
+                                             const gchar *signal,
                                              GimpQueryDoubleCallback callback,
-                                             gpointer data);
-GtkWidget*  gimp_query_size_box             (const gchar *title,
-                                             GtkWidget *parent,
+                                             gpointer data);
+GtkWidget*  gimp_query_size_box             (const gchar *title,
+                                             GtkWidget *parent,
                                              GimpHelpFunc help_func,
-                                             const gchar *help_id,
-                                             const gchar *message,
-                                             gdouble initial,
-                                             gdouble lower,
-                                             gdouble upper,
-                                             gint digits,
+                                             const gchar *help_id,
+                                             const gchar *message,
+                                             gdouble initial,
+                                             gdouble lower,
+                                             gdouble upper,
+                                             gint digits,
                                              GimpUnit unit,
-                                             gdouble resolution,
-                                             gboolean dot_for_dot,
-                                             GObject *object,
-                                             const gchar *signal,
+                                             gdouble resolution,
+                                             gboolean dot_for_dot,
+                                             GObject *object,
+                                             const gchar *signal,
                                              GimpQuerySizeCallback callback,
-                                             gpointer data);
-GtkWidget*  gimp_query_boolean_box          (const gchar *title,
-                                             GtkWidget *parent,
+                                             gpointer data);
+GtkWidget*  gimp_query_boolean_box          (const gchar *title,
+                                             GtkWidget *parent,
                                              GimpHelpFunc help_func,
-                                             const gchar *help_id,
-                                             const gchar *stock_id,
-                                             const gchar *message,
-                                             const gchar *true_button,
-                                             const gchar *false_button,
-                                             GObject *object,
-                                             const gchar *signal,
+                                             const gchar *help_id,
+                                             const gchar *stock_id,
+                                             const gchar *message,
+                                             const gchar *true_button,
+                                             const gchar *false_button,
+                                             GObject *object,
+                                             const gchar *signal,
                                              GimpQueryBooleanCallback callback,
-                                             gpointer data);
-#define     GIMP_QUERY_BOX_VBOX             (qbox)
-

Description

+ gpointer data); +#define GIMP_QUERY_BOX_VBOX (qbox) +

Description

These functions provide simple dialogs for entering a single string, integer, double, boolean or pixel size value.

-They return a pointer to a GtkDialog which has to be shown with -gtk_widget_show() by the caller. +They return a pointer to a GtkDialog which has to be shown with +gtk_widget_show() by the caller.

The dialogs contain an entry widget for the kind of value they ask for 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,
-                                             const gchar *string,
-                                             gpointer data);

-Note that you have to g_free() the returned string. +

Details

GimpQueryStringCallback ()

void        (*GimpQueryStringCallback)      (GtkWidget *query_box,
+                                             const gchar *string,
+                                             gpointer data);

+Note that you have to g_free() the returned string.

query_box:The query box.
string:The entered string.
data:The user data. -

GimpQueryIntCallback ()

void        (*GimpQueryIntCallback)         (GtkWidget *query_box,
-                                             gint value,
-                                             gpointer data);

+


GimpQueryIntCallback ()

void        (*GimpQueryIntCallback)         (GtkWidget *query_box,
+                                             gint value,
+                                             gpointer data);

query_box:The query box.
value:The entered integer value.
data:The user data. -

GimpQueryDoubleCallback ()

void        (*GimpQueryDoubleCallback)      (GtkWidget *query_box,
-                                             gdouble value,
-                                             gpointer data);

+


GimpQueryDoubleCallback ()

void        (*GimpQueryDoubleCallback)      (GtkWidget *query_box,
+                                             gdouble value,
+                                             gpointer data);

query_box:The query box.
value:The entered double value.
data:The user data. -

GimpQuerySizeCallback ()

void        (*GimpQuerySizeCallback)        (GtkWidget *query_box,
-                                             gdouble size,
+

GimpQuerySizeCallback ()

void        (*GimpQuerySizeCallback)        (GtkWidget *query_box,
+                                             gdouble size,
                                              GimpUnit unit,
-                                             gpointer data);

+ gpointer data);

query_box:The query box.
size:The entered size in pixels. @@ -167,26 +311,52 @@
data:The user data. -

GimpQueryBooleanCallback ()

void        (*GimpQueryBooleanCallback)     (GtkWidget *query_box,
-                                             gboolean value,
-                                             gpointer data);

+


GimpQueryBooleanCallback ()

void        (*GimpQueryBooleanCallback)     (GtkWidget *query_box,
+                                             gboolean value,
+                                             gpointer data);

query_box:The query box.
value:The entered boolean value.
data:The user data. -

gimp_query_string_box ()

GtkWidget*  gimp_query_string_box           (const gchar *title,
-                                             GtkWidget *parent,
+

gimp_query_string_box ()

GtkWidget*  gimp_query_string_box           (const gchar *title,
+                                             GtkWidget *parent,
                                              GimpHelpFunc help_func,
-                                             const gchar *help_id,
-                                             const gchar *message,
-                                             const gchar *initial,
-                                             GObject *object,
-                                             const gchar *signal,
+                                             const gchar *help_id,
+                                             const gchar *message,
+                                             const gchar *initial,
+                                             GObject *object,
+                                             const gchar *signal,
                                              GimpQueryStringCallback callback,
-                                             gpointer data);

-Creates a new GtkDialog that queries the user for a string value.

+ gpointer data);

+Creates a new GtkDialog that queries the user for a string value.

title: The query box dialog's title.
parent: The dialog's parent widget. @@ -198,20 +368,46 @@
signal: The object's signal which will cause the query box to be closed.
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,
-                                             GtkWidget *parent,
+Returns: A pointer to the new GtkDialog.
+

gimp_query_int_box ()

GtkWidget*  gimp_query_int_box              (const gchar *title,
+                                             GtkWidget *parent,
                                              GimpHelpFunc help_func,
-                                             const gchar *help_id,
-                                             const gchar *message,
-                                             gint initial,
-                                             gint lower,
-                                             gint upper,
-                                             GObject *object,
-                                             const gchar *signal,
+                                             const gchar *help_id,
+                                             const gchar *message,
+                                             gint initial,
+                                             gint lower,
+                                             gint upper,
+                                             GObject *object,
+                                             const gchar *signal,
                                              GimpQueryIntCallback callback,
-                                             gpointer data);

-Creates a new GtkDialog that queries the user for an integer value.

+ gpointer data);

+Creates a new GtkDialog that queries the user for an integer value.

title: The query box dialog's title.
parent: The dialog's parent widget. @@ -225,21 +421,49 @@
signal: The object's signal which will cause the query box to be closed.
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,
-                                             GtkWidget *parent,
+Returns: A pointer to the new GtkDialog.
+

gimp_query_double_box ()

GtkWidget*  gimp_query_double_box           (const gchar *title,
+                                             GtkWidget *parent,
                                              GimpHelpFunc help_func,
-                                             const gchar *help_id,
-                                             const gchar *message,
-                                             gdouble initial,
-                                             gdouble lower,
-                                             gdouble upper,
-                                             gint digits,
-                                             GObject *object,
-                                             const gchar *signal,
+                                             const gchar *help_id,
+                                             const gchar *message,
+                                             gdouble initial,
+                                             gdouble lower,
+                                             gdouble upper,
+                                             gint digits,
+                                             GObject *object,
+                                             const gchar *signal,
                                              GimpQueryDoubleCallback callback,
-                                             gpointer data);

-Creates a new GtkDialog that queries the user for a double value.

+ gpointer data);

+Creates a new GtkDialog that queries the user for a double value.

title: The query box dialog's title.
parent: The dialog's parent widget. @@ -249,31 +473,65 @@
initial: The initial value.
lower: The lower boundary of the range of possible values.
upper: The upper boundray of the range of possible values. -
digits: The number of decimal digits the GtkSpinButton will provide. +
digits: The number of decimal digits the GtkSpinButton will provide.
object: The object this query box is associated with.
signal: The object's signal which will cause the query box to be closed.
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,
-                                             GtkWidget *parent,
+Returns: A pointer to the new GtkDialog.
+

gimp_query_size_box ()

GtkWidget*  gimp_query_size_box             (const gchar *title,
+                                             GtkWidget *parent,
                                              GimpHelpFunc help_func,
-                                             const gchar *help_id,
-                                             const gchar *message,
-                                             gdouble initial,
-                                             gdouble lower,
-                                             gdouble upper,
-                                             gint digits,
+                                             const gchar *help_id,
+                                             const gchar *message,
+                                             gdouble initial,
+                                             gdouble lower,
+                                             gdouble upper,
+                                             gint digits,
                                              GimpUnit unit,
-                                             gdouble resolution,
-                                             gboolean dot_for_dot,
-                                             GObject *object,
-                                             const gchar *signal,
+                                             gdouble resolution,
+                                             gboolean dot_for_dot,
+                                             GObject *object,
+                                             const gchar *signal,
                                              GimpQuerySizeCallback callback,
-                                             gpointer data);

-Creates a new GtkDialog that queries the user for a size using a + gpointer data);

+Creates a new GtkDialog that queries the user for a size using a GimpSizeEntry.

title: The query box dialog's title. @@ -295,20 +553,46 @@ to be closed.
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,
-                                             GtkWidget *parent,
+Returns: A pointer to the new GtkDialog.
+

gimp_query_boolean_box ()

GtkWidget*  gimp_query_boolean_box          (const gchar *title,
+                                             GtkWidget *parent,
                                              GimpHelpFunc help_func,
-                                             const gchar *help_id,
-                                             const gchar *stock_id,
-                                             const gchar *message,
-                                             const gchar *true_button,
-                                             const gchar *false_button,
-                                             GObject *object,
-                                             const gchar *signal,
+                                             const gchar *help_id,
+                                             const gchar *stock_id,
+                                             const gchar *message,
+                                             const gchar *true_button,
+                                             const gchar *false_button,
+                                             GObject *object,
+                                             const gchar *signal,
                                              GimpQueryBooleanCallback callback,
-                                             gpointer data);

-Creates a new GtkDialog that asks the user to do a boolean decision.

+ gpointer data);

+Creates a new GtkDialog that asks the user to do a boolean decision.

title: The query box dialog's title.
parent: The dialog's parent widget. @@ -325,14 +609,18 @@
callback: The function which will be called when the user clicks one 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)

-A macro to access the GtkVBox in a GimpQueryBox. Useful if you want to add +Returns: A pointer to the new GtkDialog. +


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.4/devel-docs/libgimpwidgets/html/libgimpwidgets-GimpScrolledPreview.html gimp-2.2.5/devel-docs/libgimpwidgets/html/libgimpwidgets-GimpScrolledPreview.html --- gimp-2.2.4/devel-docs/libgimpwidgets/html/libgimpwidgets-GimpScrolledPreview.html 2005-02-22 23:13:30.000000000 +0100 +++ gimp-2.2.5/devel-docs/libgimpwidgets/html/libgimpwidgets-GimpScrolledPreview.html 2005-04-09 23:10:40.000000000 +0200 @@ -1,46 +1,14 @@ -GimpScrolledPreview

GimpScrolledPreview

GimpScrolledPreview — A widget providing a GimpPreview enhanced by scrolling capabilities.

Synopsis

+GimpScrolledPreview

GimpScrolledPreview

GimpScrolledPreview — A widget providing a GimpPreview enhanced by scrolling capabilities.

Description

+

Description

A widget providing a GimpPreview enhanced by scrolling capabilities. -

Details

struct GimpScrolledPreview

struct GimpScrolledPreview {
-
+

Details

GimpScrolledPreview

typedef struct {
   GimpPreview   parent_instance;
-
-};
+} GimpScrolledPreview;
 

diff -uraN gimp-2.2.4/devel-docs/libgimpwidgets/html/libgimpwidgets-GimpStock.html gimp-2.2.5/devel-docs/libgimpwidgets/html/libgimpwidgets-GimpStock.html --- gimp-2.2.4/devel-docs/libgimpwidgets/html/libgimpwidgets-GimpStock.html 2005-02-22 23:42:45.000000000 +0100 +++ gimp-2.2.5/devel-docs/libgimpwidgets/html/libgimpwidgets-GimpStock.html 2005-04-09 23:49:15.000000000 +0200 @@ -1,218 +1,188 @@ -GimpStock

GimpStock

GimpStock — Prebuilt common menu/toolbar items and corresponding icons

Synopsis

+GimpStock

GimpStock

GimpStock — Prebuilt common menu/toolbar items and corresponding icons

Synopsis

 
 
 
 void        gimp_stock_init                 (void);
 
-#define     GIMP_STOCK_ANCHOR
-#define     GIMP_STOCK_CENTER
-#define     GIMP_STOCK_DUPLICATE
-#define     GIMP_STOCK_EDIT
-#define     GIMP_STOCK_RESET
-#define     GIMP_STOCK_CLOSE
-#define     GIMP_STOCK_MENU_LEFT
-#define     GIMP_STOCK_MENU_RIGHT
-#define     GIMP_STOCK_MOVE_TO_SCREEN
-#define     GIMP_STOCK_INVERT
-#define     GIMP_STOCK_LAYER_TO_IMAGESIZE
-#define     GIMP_STOCK_MERGE_DOWN
-#define     GIMP_STOCK_NAVIGATION
-#define     GIMP_STOCK_PASTE_AS_NEW
-#define     GIMP_STOCK_PASTE_INTO
-#define     GIMP_STOCK_PATH_STROKE
-#define     GIMP_STOCK_PLUGIN
-#define     GIMP_STOCK_QMASK_OFF
-#define     GIMP_STOCK_QMASK_ON
-#define     GIMP_STOCK_HISTOGRAM
-#define     GIMP_STOCK_HISTOGRAM_LINEAR
-#define     GIMP_STOCK_HISTOGRAM_LOGARITHMIC
-#define     GIMP_STOCK_RESHOW_FILTER
-#define     GIMP_STOCK_RESIZE
-#define     GIMP_STOCK_FLIP_HORIZONTAL
-#define     GIMP_STOCK_FLIP_VERTICAL
-#define     GIMP_STOCK_ROTATE_180
-#define     GIMP_STOCK_ROTATE_270
-#define     GIMP_STOCK_ROTATE_90
-#define     GIMP_STOCK_SCALE
-#define     GIMP_STOCK_LINKED
-#define     GIMP_STOCK_VISIBLE
-#define     GIMP_STOCK_LIST
-#define     GIMP_STOCK_GRID
-#define     GIMP_STOCK_PORTRAIT
-#define     GIMP_STOCK_LANDSCAPE
-#define     GIMP_STOCK_VIDEO
-#define     GIMP_STOCK_WEB
-#define     GIMP_STOCK_IMAGE
-#define     GIMP_STOCK_LAYER
-#define     GIMP_STOCK_LAYER_MASK
-#define     GIMP_STOCK_CHANNEL
-#define     GIMP_STOCK_CHANNEL_RED
-#define     GIMP_STOCK_CHANNEL_GREEN
-#define     GIMP_STOCK_CHANNEL_BLUE
-#define     GIMP_STOCK_CHANNEL_GRAY
-#define     GIMP_STOCK_CHANNEL_INDEXED
-#define     GIMP_STOCK_CHANNEL_ALPHA
-#define     GIMP_STOCK_PATH
-#define     GIMP_STOCK_TEXT_LAYER
-#define     GIMP_STOCK_FLOATING_SELECTION
-#define     GIMP_STOCK_TEMPLATE
-#define     GIMP_STOCK_IMAGES
-#define     GIMP_STOCK_LAYERS
-#define     GIMP_STOCK_CHANNELS
-#define     GIMP_STOCK_PATHS
-#define     GIMP_STOCK_INDEXED_PALETTE
-#define     GIMP_STOCK_SHAPE_CIRCLE
-#define     GIMP_STOCK_SHAPE_SQUARE
-#define     GIMP_STOCK_SHAPE_DIAMOND
-#define     GIMP_STOCK_CAP_BUTT
-#define     GIMP_STOCK_CAP_ROUND
-#define     GIMP_STOCK_CAP_SQUARE
-#define     GIMP_STOCK_JOIN_MITER
-#define     GIMP_STOCK_JOIN_ROUND
-#define     GIMP_STOCK_JOIN_BEVEL
-#define     GIMP_STOCK_SELECTION
-#define     GIMP_STOCK_SELECTION_ALL
-#define     GIMP_STOCK_SELECTION_NONE
-#define     GIMP_STOCK_SELECTION_GROW
-#define     GIMP_STOCK_SELECTION_SHRINK
-#define     GIMP_STOCK_SELECTION_BORDER
-#define     GIMP_STOCK_SELECTION_ADD
-#define     GIMP_STOCK_SELECTION_SUBTRACT
-#define     GIMP_STOCK_SELECTION_REPLACE
-#define     GIMP_STOCK_SELECTION_INTERSECT
-#define     GIMP_STOCK_SELECTION_STROKE
-#define     GIMP_STOCK_SELECTION_TO_CHANNEL
-#define     GIMP_STOCK_SELECTION_TO_PATH
-#define     GIMP_STOCK_GRADIENT_LINEAR
-#define     GIMP_STOCK_GRADIENT_BILINEAR
-#define     GIMP_STOCK_GRADIENT_RADIAL
-#define     GIMP_STOCK_GRADIENT_SQUARE
-#define     GIMP_STOCK_GRADIENT_CONICAL_SYMMETRIC
-#define     GIMP_STOCK_GRADIENT_CONICAL_ASYMMETRIC
-#define     GIMP_STOCK_GRADIENT_SHAPEBURST_SPHERICAL
-#define     GIMP_STOCK_GRADIENT_SHAPEBURST_ANGULAR
-#define     GIMP_STOCK_GRADIENT_SHAPEBURST_DIMPLED
-#define     GIMP_STOCK_GRADIENT_SPIRAL_CLOCKWISE
-#define     GIMP_STOCK_GRADIENT_SPIRAL_ANTICLOCKWISE
-#define     GIMP_STOCK_GRAVITY_NORTH_WEST
-#define     GIMP_STOCK_GRAVITY_NORTH
-#define     GIMP_STOCK_GRAVITY_NORTH_EAST
-#define     GIMP_STOCK_GRAVITY_WEST
-#define     GIMP_STOCK_GRAVITY_EAST
-#define     GIMP_STOCK_GRAVITY_SOUTH_WEST
-#define     GIMP_STOCK_GRAVITY_SOUTH
-#define     GIMP_STOCK_GRAVITY_SOUTH_EAST
-#define     GIMP_STOCK_CHAR_PICKER
-#define     GIMP_STOCK_LETTER_SPACING
-#define     GIMP_STOCK_LINE_SPACING
-#define     GIMP_STOCK_TEXT_DIR_LTR
-#define     GIMP_STOCK_TEXT_DIR_RTL
-#define     GIMP_STOCK_PRINT_RESOLUTION
-#define     GIMP_STOCK_TOOLS
-#define     GIMP_STOCK_TOOL_OPTIONS
-#define     GIMP_STOCK_DEVICE_STATUS
-#define     GIMP_STOCK_DISPLAY_FILTER
-#define     GIMP_STOCK_CURVE_FREE
-#define     GIMP_STOCK_CURVE_SMOOTH
-#define     GIMP_STOCK_COLOR_PICKER_BLACK
-#define     GIMP_STOCK_COLOR_PICKER_GRAY
-#define     GIMP_STOCK_COLOR_PICKER_WHITE
-#define     GIMP_STOCK_COLOR_TRIANGLE
-#define     GIMP_STOCK_COLOR_PICK_FROM_SCREEN
-#define     GIMP_STOCK_CONVERT_GRAYSCALE
-#define     GIMP_STOCK_CONVERT_INDEXED
-#define     GIMP_STOCK_CONVERT_RGB
-#define     GIMP_STOCK_TRANSPARENCY
-#define     GIMP_STOCK_DEFAULT_COLORS
-#define     GIMP_STOCK_SWAP_COLORS
-#define     GIMP_STOCK_UNDO_HISTORY
-#define     GIMP_STOCK_TOOL_AIRBRUSH
-#define     GIMP_STOCK_TOOL_BLEND
-#define     GIMP_STOCK_TOOL_BLUR
-#define     GIMP_STOCK_TOOL_BRIGHTNESS_CONTRAST
-#define     GIMP_STOCK_TOOL_BUCKET_FILL
-#define     GIMP_STOCK_TOOL_BY_COLOR_SELECT
-#define     GIMP_STOCK_TOOL_CLONE
-#define     GIMP_STOCK_TOOL_COLOR_BALANCE
-#define     GIMP_STOCK_TOOL_COLOR_PICKER
-#define     GIMP_STOCK_TOOL_COLORIZE
-#define     GIMP_STOCK_TOOL_CROP
-#define     GIMP_STOCK_TOOL_CURVES
-#define     GIMP_STOCK_TOOL_DODGE
-#define     GIMP_STOCK_TOOL_ELLIPSE_SELECT
-#define     GIMP_STOCK_TOOL_ERASER
-#define     GIMP_STOCK_TOOL_FLIP
-#define     GIMP_STOCK_TOOL_FREE_SELECT
-#define     GIMP_STOCK_TOOL_FUZZY_SELECT
-#define     GIMP_STOCK_TOOL_HUE_SATURATION
-#define     GIMP_STOCK_TOOL_INK
-#define     GIMP_STOCK_TOOL_ISCISSORS
-#define     GIMP_STOCK_TOOL_LEVELS
-#define     GIMP_STOCK_TOOL_MEASURE
-#define     GIMP_STOCK_TOOL_MOVE
-#define     GIMP_STOCK_TOOL_PAINTBRUSH
-#define     GIMP_STOCK_TOOL_PATH
-#define     GIMP_STOCK_TOOL_PENCIL
-#define     GIMP_STOCK_TOOL_PERSPECTIVE
-#define     GIMP_STOCK_TOOL_POSTERIZE
-#define     GIMP_STOCK_TOOL_RECT_SELECT
-#define     GIMP_STOCK_TOOL_ROTATE
-#define     GIMP_STOCK_TOOL_SCALE
-#define     GIMP_STOCK_TOOL_SHEAR
-#define     GIMP_STOCK_TOOL_SMUDGE
-#define     GIMP_STOCK_TOOL_TEXT
-#define     GIMP_STOCK_TOOL_THRESHOLD
-#define     GIMP_STOCK_TOOL_ZOOM
-#define     GIMP_STOCK_HCHAIN
-#define     GIMP_STOCK_HCHAIN_BROKEN
-#define     GIMP_STOCK_VCHAIN
-#define     GIMP_STOCK_VCHAIN_BROKEN
-#define     GIMP_STOCK_TEXTURE
-#define     GIMP_STOCK_FRAME
-#define     GIMP_STOCK_ERROR
-#define     GIMP_STOCK_INFO
-#define     GIMP_STOCK_QUESTION
-#define     GIMP_STOCK_WARNING
-#define     GIMP_STOCK_WILBER
-#define     GIMP_STOCK_WILBER_EEK
-#define     GIMP_STOCK_BRUSH
-#define     GIMP_STOCK_BUFFER
-#define     GIMP_STOCK_FONT
-#define     GIMP_STOCK_GRADIENT
-#define     GIMP_STOCK_PALETTE
-#define     GIMP_STOCK_PATTERN
-#define     GIMP_STOCK_ZOOM_FOLLOW_WINDOW
-

Description

+#define GIMP_STOCK_ANCHOR +#define GIMP_STOCK_CENTER +#define GIMP_STOCK_DUPLICATE +#define GIMP_STOCK_EDIT +#define GIMP_STOCK_RESET +#define GIMP_STOCK_CLOSE +#define GIMP_STOCK_MENU_LEFT +#define GIMP_STOCK_MENU_RIGHT +#define GIMP_STOCK_MOVE_TO_SCREEN +#define GIMP_STOCK_INVERT +#define GIMP_STOCK_LAYER_TO_IMAGESIZE +#define GIMP_STOCK_MERGE_DOWN +#define GIMP_STOCK_NAVIGATION +#define GIMP_STOCK_PASTE_AS_NEW +#define GIMP_STOCK_PASTE_INTO +#define GIMP_STOCK_PATH_STROKE +#define GIMP_STOCK_PLUGIN +#define GIMP_STOCK_QMASK_OFF +#define GIMP_STOCK_QMASK_ON +#define GIMP_STOCK_HISTOGRAM +#define GIMP_STOCK_HISTOGRAM_LINEAR +#define GIMP_STOCK_HISTOGRAM_LOGARITHMIC +#define GIMP_STOCK_RESHOW_FILTER +#define GIMP_STOCK_RESIZE +#define GIMP_STOCK_FLIP_HORIZONTAL +#define GIMP_STOCK_FLIP_VERTICAL +#define GIMP_STOCK_ROTATE_180 +#define GIMP_STOCK_ROTATE_270 +#define GIMP_STOCK_ROTATE_90 +#define GIMP_STOCK_SCALE +#define GIMP_STOCK_LINKED +#define GIMP_STOCK_VISIBLE +#define GIMP_STOCK_LIST +#define GIMP_STOCK_GRID +#define GIMP_STOCK_PORTRAIT +#define GIMP_STOCK_LANDSCAPE +#define GIMP_STOCK_VIDEO +#define GIMP_STOCK_WEB +#define GIMP_STOCK_IMAGE +#define GIMP_STOCK_LAYER +#define GIMP_STOCK_LAYER_MASK +#define GIMP_STOCK_CHANNEL +#define GIMP_STOCK_CHANNEL_RED +#define GIMP_STOCK_CHANNEL_GREEN +#define GIMP_STOCK_CHANNEL_BLUE +#define GIMP_STOCK_CHANNEL_GRAY +#define GIMP_STOCK_CHANNEL_INDEXED +#define GIMP_STOCK_CHANNEL_ALPHA +#define GIMP_STOCK_PATH +#define GIMP_STOCK_TEXT_LAYER +#define GIMP_STOCK_FLOATING_SELECTION +#define GIMP_STOCK_TEMPLATE +#define GIMP_STOCK_IMAGES +#define GIMP_STOCK_LAYERS +#define GIMP_STOCK_CHANNELS +#define GIMP_STOCK_PATHS +#define GIMP_STOCK_INDEXED_PALETTE +#define GIMP_STOCK_SHAPE_CIRCLE +#define GIMP_STOCK_SHAPE_SQUARE +#define GIMP_STOCK_SHAPE_DIAMOND +#define GIMP_STOCK_CAP_BUTT +#define GIMP_STOCK_CAP_ROUND +#define GIMP_STOCK_CAP_SQUARE +#define GIMP_STOCK_JOIN_MITER +#define GIMP_STOCK_JOIN_ROUND +#define GIMP_STOCK_JOIN_BEVEL +#define GIMP_STOCK_SELECTION +#define GIMP_STOCK_SELECTION_ALL +#define GIMP_STOCK_SELECTION_NONE +#define GIMP_STOCK_SELECTION_GROW +#define GIMP_STOCK_SELECTION_SHRINK +#define GIMP_STOCK_SELECTION_BORDER +#define GIMP_STOCK_SELECTION_ADD +#define GIMP_STOCK_SELECTION_SUBTRACT +#define GIMP_STOCK_SELECTION_REPLACE +#define GIMP_STOCK_SELECTION_INTERSECT +#define GIMP_STOCK_SELECTION_STROKE +#define GIMP_STOCK_SELECTION_TO_CHANNEL +#define GIMP_STOCK_SELECTION_TO_PATH +#define GIMP_STOCK_GRADIENT_LINEAR +#define GIMP_STOCK_GRADIENT_BILINEAR +#define GIMP_STOCK_GRADIENT_RADIAL +#define GIMP_STOCK_GRADIENT_SQUARE +#define GIMP_STOCK_GRADIENT_CONICAL_SYMMETRIC +#define GIMP_STOCK_GRADIENT_CONICAL_ASYMMETRIC +#define GIMP_STOCK_GRADIENT_SHAPEBURST_SPHERICAL +#define GIMP_STOCK_GRADIENT_SHAPEBURST_ANGULAR +#define GIMP_STOCK_GRADIENT_SHAPEBURST_DIMPLED +#define GIMP_STOCK_GRADIENT_SPIRAL_CLOCKWISE +#define GIMP_STOCK_GRADIENT_SPIRAL_ANTICLOCKWISE +#define GIMP_STOCK_GRAVITY_NORTH_WEST +#define GIMP_STOCK_GRAVITY_NORTH +#define GIMP_STOCK_GRAVITY_NORTH_EAST +#define GIMP_STOCK_GRAVITY_WEST +#define GIMP_STOCK_GRAVITY_EAST +#define GIMP_STOCK_GRAVITY_SOUTH_WEST +#define GIMP_STOCK_GRAVITY_SOUTH +#define GIMP_STOCK_GRAVITY_SOUTH_EAST +#define GIMP_STOCK_CHAR_PICKER +#define GIMP_STOCK_LETTER_SPACING +#define GIMP_STOCK_LINE_SPACING +#define GIMP_STOCK_TEXT_DIR_LTR +#define GIMP_STOCK_TEXT_DIR_RTL +#define GIMP_STOCK_PRINT_RESOLUTION +#define GIMP_STOCK_TOOLS +#define GIMP_STOCK_TOOL_OPTIONS +#define GIMP_STOCK_DEVICE_STATUS +#define GIMP_STOCK_DISPLAY_FILTER +#define GIMP_STOCK_CURVE_FREE +#define GIMP_STOCK_CURVE_SMOOTH +#define GIMP_STOCK_COLOR_PICKER_BLACK +#define GIMP_STOCK_COLOR_PICKER_GRAY +#define GIMP_STOCK_COLOR_PICKER_WHITE +#define GIMP_STOCK_COLOR_TRIANGLE +#define GIMP_STOCK_COLOR_PICK_FROM_SCREEN +#define GIMP_STOCK_CONVERT_GRAYSCALE +#define GIMP_STOCK_CONVERT_INDEXED +#define GIMP_STOCK_CONVERT_RGB +#define GIMP_STOCK_TRANSPARENCY +#define GIMP_STOCK_DEFAULT_COLORS +#define GIMP_STOCK_SWAP_COLORS +#define GIMP_STOCK_UNDO_HISTORY +#define GIMP_STOCK_TOOL_AIRBRUSH +#define GIMP_STOCK_TOOL_BLEND +#define GIMP_STOCK_TOOL_BLUR +#define GIMP_STOCK_TOOL_BRIGHTNESS_CONTRAST +#define GIMP_STOCK_TOOL_BUCKET_FILL +#define GIMP_STOCK_TOOL_BY_COLOR_SELECT +#define GIMP_STOCK_TOOL_CLONE +#define GIMP_STOCK_TOOL_COLOR_BALANCE +#define GIMP_STOCK_TOOL_COLOR_PICKER +#define GIMP_STOCK_TOOL_COLORIZE +#define GIMP_STOCK_TOOL_CROP +#define GIMP_STOCK_TOOL_CURVES +#define GIMP_STOCK_TOOL_DODGE +#define GIMP_STOCK_TOOL_ELLIPSE_SELECT +#define GIMP_STOCK_TOOL_ERASER +#define GIMP_STOCK_TOOL_FLIP +#define GIMP_STOCK_TOOL_FREE_SELECT +#define GIMP_STOCK_TOOL_FUZZY_SELECT +#define GIMP_STOCK_TOOL_HUE_SATURATION +#define GIMP_STOCK_TOOL_INK +#define GIMP_STOCK_TOOL_ISCISSORS +#define GIMP_STOCK_TOOL_LEVELS +#define GIMP_STOCK_TOOL_MEASURE +#define GIMP_STOCK_TOOL_MOVE +#define GIMP_STOCK_TOOL_PAINTBRUSH +#define GIMP_STOCK_TOOL_PATH +#define GIMP_STOCK_TOOL_PENCIL +#define GIMP_STOCK_TOOL_PERSPECTIVE +#define GIMP_STOCK_TOOL_POSTERIZE +#define GIMP_STOCK_TOOL_RECT_SELECT +#define GIMP_STOCK_TOOL_ROTATE +#define GIMP_STOCK_TOOL_SCALE +#define GIMP_STOCK_TOOL_SHEAR +#define GIMP_STOCK_TOOL_SMUDGE +#define GIMP_STOCK_TOOL_TEXT +#define GIMP_STOCK_TOOL_THRESHOLD +#define GIMP_STOCK_TOOL_ZOOM +#define GIMP_STOCK_HCHAIN +#define GIMP_STOCK_HCHAIN_BROKEN +#define GIMP_STOCK_VCHAIN +#define GIMP_STOCK_VCHAIN_BROKEN +#define GIMP_STOCK_TEXTURE +#define GIMP_STOCK_FRAME +#define GIMP_STOCK_ERROR +#define GIMP_STOCK_INFO +#define GIMP_STOCK_QUESTION +#define GIMP_STOCK_WARNING +#define GIMP_STOCK_WILBER +#define GIMP_STOCK_WILBER_EEK +#define GIMP_STOCK_BRUSH +#define GIMP_STOCK_BUFFER +#define GIMP_STOCK_FONT +#define GIMP_STOCK_GRADIENT +#define GIMP_STOCK_PALETTE +#define GIMP_STOCK_PATTERN +#define GIMP_STOCK_ZOOM_FOLLOW_WINDOW +

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,7 +190,7 @@

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 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.4/devel-docs/libgimpwidgets/html/libgimpwidgets-GimpWidgets.html gimp-2.2.5/devel-docs/libgimpwidgets/html/libgimpwidgets-GimpWidgets.html --- gimp-2.2.4/devel-docs/libgimpwidgets/html/libgimpwidgets-GimpWidgets.html 2005-02-22 23:13:30.000000000 +0100 +++ gimp-2.2.5/devel-docs/libgimpwidgets/html/libgimpwidgets-GimpWidgets.html 2005-04-09 23:10:40.000000000 +0200 @@ -1,255 +1,561 @@ -GimpWidgets

GimpWidgets

GimpWidgets — A collection of convenient widget constructors, standard callbacks and -helper functions.

Synopsis

+GimpWidgets

GimpWidgets

GimpWidgets — A collection of convenient widget constructors, standard callbacks and +helper functions.

Synopsis

 
 
 
-GtkWidget*  gimp_radio_group_new            (gboolean in_frame,
-                                             const gchar *frame_title,
+GtkWidget*  gimp_radio_group_new            (gboolean in_frame,
+                                             const gchar *frame_title,
                                              ...);
-GtkWidget*  gimp_radio_group_new2           (gboolean in_frame,
-                                             const gchar *frame_title,
-                                             GCallback radio_button_callback,
-                                             gpointer radio_button_callback_data,
-                                             gpointer initial,
+GtkWidget*  gimp_radio_group_new2           (gboolean in_frame,
+                                             const gchar *frame_title,
+                                             GCallback radio_button_callback,
+                                             gpointer radio_button_callback_data,
+                                             gpointer initial,
                                              ...);
-void        gimp_radio_group_set_active     (GtkRadioButton *radio_button,
-                                             gpointer item_data);
-GtkWidget*  gimp_int_radio_group_new        (gboolean in_frame,
-                                             const gchar *frame_title,
-                                             GCallback radio_button_callback,
-                                             gpointer radio_button_callback_data,
-                                             gint initial,
+void        gimp_radio_group_set_active     (GtkRadioButton *radio_button,
+                                             gpointer item_data);
+GtkWidget*  gimp_int_radio_group_new        (gboolean in_frame,
+                                             const gchar *frame_title,
+                                             GCallback radio_button_callback,
+                                             gpointer radio_button_callback_data,
+                                             gint initial,
                                              ...);
-void        gimp_int_radio_group_set_active (GtkRadioButton *radio_button,
-                                             gint item_data);
-GtkWidget*  gimp_spin_button_new            (GtkObject **adjustment,
-                                             gdouble value,
-                                             gdouble lower,
-                                             gdouble upper,
-                                             gdouble step_increment,
-                                             gdouble page_increment,
-                                             gdouble page_size,
-                                             gdouble climb_rate,
-                                             guint digits);
-#define     GIMP_SCALE_ENTRY_LABEL          (adj)
-#define     GIMP_SCALE_ENTRY_SCALE          (adj)
-#define     GIMP_SCALE_ENTRY_SCALE_ADJ      (adj)
-#define     GIMP_SCALE_ENTRY_SPINBUTTON     (adj)
-#define     GIMP_SCALE_ENTRY_SPINBUTTON_ADJ (adj)
-GtkObject*  gimp_scale_entry_new            (GtkTable *table,
-                                             gint column,
-                                             gint row,
-                                             const gchar *text,
-                                             gint scale_width,
-                                             gint spinbutton_width,
-                                             gdouble value,
-                                             gdouble lower,
-                                             gdouble upper,
-                                             gdouble step_increment,
-                                             gdouble page_increment,
-                                             guint digits,
-                                             gboolean constrain,
-                                             gdouble unconstrained_lower,
-                                             gdouble unconstrained_upper,
-                                             const gchar *tooltip,
-                                             const gchar *help_id);
-void        gimp_scale_entry_set_sensitive  (GtkObject *adjustment,
-                                             gboolean sensitive);
+void        gimp_int_radio_group_set_active (GtkRadioButton *radio_button,
+                                             gint item_data);
+GtkWidget*  gimp_spin_button_new            (GtkObject **adjustment,
+                                             gdouble value,
+                                             gdouble lower,
+                                             gdouble upper,
+                                             gdouble step_increment,
+                                             gdouble page_increment,
+                                             gdouble page_size,
+                                             gdouble climb_rate,
+                                             guint digits);
+#define     GIMP_SCALE_ENTRY_LABEL          (adj)
+#define     GIMP_SCALE_ENTRY_SCALE          (adj)
+#define     GIMP_SCALE_ENTRY_SCALE_ADJ      (adj)
+#define     GIMP_SCALE_ENTRY_SPINBUTTON     (adj)
+#define     GIMP_SCALE_ENTRY_SPINBUTTON_ADJ (adj)
+GtkObject*  gimp_scale_entry_new            (GtkTable *table,
+                                             gint column,
+                                             gint row,
+                                             const gchar *text,
+                                             gint scale_width,
+                                             gint spinbutton_width,
+                                             gdouble value,
+                                             gdouble lower,
+                                             gdouble upper,
+                                             gdouble step_increment,
+                                             gdouble page_increment,
+                                             guint digits,
+                                             gboolean constrain,
+                                             gdouble unconstrained_lower,
+                                             gdouble unconstrained_upper,
+                                             const gchar *tooltip,
+                                             const gchar *help_id);
+void        gimp_scale_entry_set_sensitive  (GtkObject *adjustment,
+                                             gboolean sensitive);
 void        gimp_scale_entry_set_logarithmic
-                                            (GtkObject *adjustment,
-                                             gboolean logarithmic);
-gboolean    gimp_scale_entry_get_logarithmic
-                                            (GtkObject *adjustment);
-GtkObject*  gimp_color_scale_entry_new      (GtkTable *table,
-                                             gint column,
-                                             gint row,
-                                             const gchar *text,
-                                             gint scale_width,
-                                             gint spinbutton_width,
-                                             gdouble value,
-                                             gdouble lower,
-                                             gdouble upper,
-                                             gdouble step_increment,
-                                             gdouble page_increment,
-                                             guint digits,
-                                             const gchar *tooltip,
-                                             const gchar *help_id);
-#define     GIMP_RANDOM_SEED_SPINBUTTON     (hbox)
-#define     GIMP_RANDOM_SEED_SPINBUTTON_ADJ (hbox)
-#define     GIMP_RANDOM_SEED_TOGGLE         (hbox)
-GtkWidget*  gimp_random_seed_new            (guint32 *seed,
-                                             gboolean *random_seed);
-#define     GIMP_COORDINATES_CHAINBUTTON    (sizeentry)
-GtkWidget*  gimp_coordinates_new            (GtkObject *adjustment,
+                                             gboolean logarithmic);
+gboolean    gimp_scale_entry_get_logarithmic
+                                            (GtkObject *adjustment);
+GtkObject*  gimp_color_scale_entry_new      (GtkTable *table,
+                                             gint column,
+                                             gint row,
+                                             const gchar *text,
+                                             gint scale_width,
+                                             gint spinbutton_width,
+                                             gdouble value,
+                                             gdouble lower,
+                                             gdouble upper,
+                                             gdouble step_increment,
+                                             gdouble page_increment,
+                                             guint digits,
+                                             const gchar *tooltip,
+                                             const gchar *help_id);
+#define     GIMP_RANDOM_SEED_SPINBUTTON     (hbox)
+#define     GIMP_RANDOM_SEED_SPINBUTTON_ADJ (hbox)
+#define     GIMP_RANDOM_SEED_TOGGLE         (hbox)
+GtkWidget*  gimp_random_seed_new            (guint32 *seed,
+                                             gboolean *random_seed);
+#define     GIMP_COORDINATES_CHAINBUTTON    (sizeentry)
+GtkWidget*  gimp_coordinates_new            (GimpUnit unit,
-                                             const gchar *unit_format,
-                                             gboolean menu_show_pixels,
-                                             gboolean menu_show_percent,
-                                             gint spinbutton_width,
+                                             const gchar *unit_format,
+                                             gboolean menu_show_pixels,
+                                             gboolean menu_show_percent,
+                                             gint spinbutton_width,
                                              GimpSizeEntryUpdatePolicy update_policy,
-                                             gboolean chainbutton_active,
-                                             gboolean chain_constrains_ratio,
-                                             const gchar *xlabel,
-                                             gdouble x,
-                                             gdouble xres,
-                                             gdouble lower_boundary_x,
-                                             gdouble upper_boundary_x,
-                                             gdouble xsize_0,
-                                             gdouble xsize_100,
-                                             const gchar *ylabel,
-                                             gdouble y,
-                                             gdouble yres,
-                                             gdouble lower_boundary_y,
-                                             gdouble upper_boundary_y,
-                                             gdouble ysize_0,
-                                             gdouble ysize_100);
-GtkWidget*  gimp_pixmap_button_new          (gchar **xpm_data,
-                                             const gchar *text);
+                                             gboolean chainbutton_active,
+                                             gboolean chain_constrains_ratio,
+                                             const gchar *xlabel,
+                                             gdouble x,
+                                             gdouble xres,
+                                             gdouble lower_boundary_x,
+                                             gdouble upper_boundary_x,
+                                             gdouble xsize_0,
+                                             gdouble xsize_100,
+                                             const gchar *ylabel,
+                                             gdouble y,
+                                             gdouble yres,
+                                             gdouble lower_boundary_y,
+                                             gdouble upper_boundary_y,
+                                             gdouble ysize_0,
+                                             gdouble ysize_100);
+GtkWidget*  gimp_pixmap_button_new          (gchar **xpm_data,
+                                             const gchar *text);
 void        gimp_toggle_button_sensitive_update
-                                            (GtkToggleButton *toggle_button);
-void        gimp_toggle_button_update       (GtkWidget *widget,
-                                             gpointer data);
-void        gimp_radio_button_update        (GtkWidget *widget,
-                                             gpointer data);
-void        gimp_int_adjustment_update      (GtkAdjustment *adjustment,
-                                             gpointer data);
-void        gimp_uint_adjustment_update     (GtkAdjustment *adjustment,
-                                             gpointer data);
-void        gimp_float_adjustment_update    (GtkAdjustment *adjustment,
-                                             gpointer data);
-void        gimp_double_adjustment_update   (GtkAdjustment *adjustment,
-                                             gpointer data);
-void        gimp_unit_menu_update           (GtkWidget *widget,
-                                             gpointer data);
-GtkWidget*  gimp_table_attach_aligned       (GtkTable *table,
-                                             gint column,
-                                             gint row,
-                                             const gchar *label_text,
-                                             gfloat xalign,
-                                             gfloat yalign,
-                                             GtkWidget *widget,
-                                             gint colspan,
-                                             gboolean left_align);
-void        gimp_label_set_attributes       (GtkLabel *label,
+                                            (GtkToggleButton *toggle_button);
+void        gimp_toggle_button_update       (GtkWidget *widget,
+                                             gpointer data);
+void        gimp_radio_button_update        (GtkWidget *widget,
+                                             gpointer data);
+void        gimp_int_adjustment_update      (GtkAdjustment *adjustment,
+                                             gpointer data);
+void        gimp_uint_adjustment_update     (GtkAdjustment *adjustment,
+                                             gpointer data);
+void        gimp_float_adjustment_update    (GtkAdjustment *adjustment,
+                                             gpointer data);
+void        gimp_double_adjustment_update   (GtkAdjustment *adjustment,
+                                             gpointer data);
+void        gimp_unit_menu_update           (GtkWidget *widget,
+                                             gpointer data);
+GtkWidget*  gimp_table_attach_aligned       (GtkTable *table,
+                                             gint column,
+                                             gint row,
+                                             const gchar *label_text,
+                                             gfloat xalign,
+                                             gfloat yalign,
+                                             GtkWidget *widget,
+                                             gint colspan,
+                                             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,
-                                             const gchar *frame_title,
+

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 -a GtkFrame or GtkVbox.

- -

in_frame: TRUE if you want a GtkFrame around the radio button group. +a GtkFrame or GtkVbox.

+ +

in_frame: TRUE if you want a GtkFrame around the radio button group.
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,
-                                             const gchar *frame_title,
-                                             GCallback radio_button_callback,
-                                             gpointer radio_button_callback_data,
-                                             gpointer initial,
+
Returns: A GtkFrame or GtkVbox (depending on 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,
+                                             gpointer initial,
                                              ...);

Convenience function to create a group of radio buttons embedded into -a GtkFrame or GtkVbox.

- -

in_frame: TRUE if you want a GtkFrame around the +a GtkFrame or GtkVbox.

+ +

in_frame: TRUE if you want a GtkFrame around the radio button group.
frame_title: The title of the Frame or NULL if you don't want a title.
radio_button_callback: The callback each button's "toggled" signal will be connected with.
radio_button_callback_data: - The data which will be passed to g_signal_connect(). + The data which will be passed to g_signal_connect().
initial: The item_data of the initially pressed radio button.
...: 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,
-                                             gpointer item_data);

-Calls gtk_toggle_button_set_active() with the radio button that was +

Returns: A GtkFrame or GtkVbox (depending on in_frame). +

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. +

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,
-                                             const gchar *frame_title,
-                                             GCallback radio_button_callback,
-                                             gpointer radio_button_callback_data,
-                                             gint initial,
+

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,
+                                             gint initial,
                                              ...);

Convenience function to create a group of radio buttons embedded into -a GtkFrame or GtkVbox. This function does the same thing as +a GtkFrame or GtkVbox. This function does the same thing as gimp_radio_group_new2(), but it takes integers as item_data instead of pointers, since that is a very common case (mapping an enum to a radio group).

-

in_frame: TRUE if you want a GtkFrame around the +

in_frame: TRUE if you want a GtkFrame around the radio button group.
frame_title: The title of the Frame or NULL if you don't want a title.
radio_button_callback: The callback each button's "toggled" signal will be connected with.
radio_button_callback_data: - The data which will be passed to g_signal_connect(). + The data which will be passed to g_signal_connect().
initial: The item_data of the initially pressed radio button.
...: 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,
-                                             gint item_data);

-Calls gtk_toggle_button_set_active() with the radio button that was created +

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,
+                                             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 gimp_radio_group_set_active(), but takes integers as item_data instead of pointers.

-

radio_button: Pointer to a GtkRadioButton. +

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,
-                                             gdouble value,
-                                             gdouble lower,
-                                             gdouble upper,
-                                             gdouble step_increment,
-                                             gdouble page_increment,
-                                             gdouble page_size,
-                                             gdouble climb_rate,
-                                             guint digits);

-This function is a shortcut for gtk_adjustment_new() and a subsequent -gtk_spin_button_new() and does some more initialisation stuff like +


gimp_spin_button_new ()

GtkWidget*  gimp_spin_button_new            (GtkObject **adjustment,
+                                             gdouble value,
+                                             gdouble lower,
+                                             gdouble upper,
+                                             gdouble step_increment,
+                                             gdouble page_increment,
+                                             gdouble page_size,
+                                             gdouble climb_rate,
+                                             guint digits);

+This function is a shortcut for gtk_adjustment_new() and a subsequent +gtk_spin_button_new() and does some more initialisation stuff like setting a standard minimum horizontal size.

-

adjustment: Returns the spinbutton's GtkAdjustment. +

adjustment: Returns the spinbutton's GtkAdjustment.
value: The initial value of the spinbutton.
lower: The lower boundary.
upper: The uppper boundary. @@ -258,59 +564,139 @@
page_size: The spinbutton's page size.
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)

-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)

-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)

-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)

-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)

-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,
-                                             gint column,
-                                             gint row,
-                                             const gchar *text,
-                                             gint scale_width,
-                                             gint spinbutton_width,
-                                             gdouble value,
-                                             gdouble lower,
-                                             gdouble upper,
-                                             gdouble step_increment,
-                                             gdouble page_increment,
-                                             guint digits,
-                                             gboolean constrain,
-                                             gdouble unconstrained_lower,
-                                             gdouble unconstrained_upper,
-                                             const gchar *tooltip,
-                                             const gchar *help_id);

-This function creates a GtkLabel, a GtkHScale and a GtkSpinButton and -attaches them to a 3-column GtkTable.

- -

table: The GtkTable the widgets will be attached to. +
Returns: A GtkSpinbutton and it's GtkAdjustment. +

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)

+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)

+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)

+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)

+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,
+                                             gint column,
+                                             gint row,
+                                             const gchar *text,
+                                             gint scale_width,
+                                             gint spinbutton_width,
+                                             gdouble value,
+                                             gdouble lower,
+                                             gdouble upper,
+                                             gdouble step_increment,
+                                             gdouble page_increment,
+                                             guint digits,
+                                             gboolean constrain,
+                                             gdouble unconstrained_lower,
+                                             gdouble unconstrained_upper,
+                                             const gchar *tooltip,
+                                             const gchar *help_id);

+This function creates a GtkLabel, a GtkHScale and a GtkSpinButton and +attaches them to a 3-column GtkTable.

+ +

table: The GtkTable the widgets will be attached to.
column: The column to start with.
row: The row to attach the widgets. -
text: The text for the GtkLabel which will appear - left of the GtkHScale. -
scale_width: The minimum horizontal size of the GtkHScale. -
spinbutton_width: The minimum horizontal size of the GtkSpinButton. +
text: The text for the GtkLabel which will appear + left of the GtkHScale. +
scale_width: The minimum horizontal size of the GtkHScale. +
spinbutton_width: The minimum horizontal size of the GtkSpinButton.
value: The initial value.
lower: The lower boundary.
upper: The upper boundary. @@ -318,67 +704,145 @@
page_increment: The page increment.
digits: The number of decimal digits.
constrain: TRUE if the range of possible values of the - GtkSpinButton should be the same as of the GtkHScale. + GtkSpinButton should be the same as of the GtkHScale.
unconstrained_lower: The spinbutton's lower boundary if constrain == FALSE.
unconstrained_upper: The spinbutton's upper boundary if constrain == FALSE.
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,
-                                             gboolean sensitive);

-Sets the sensitivity of the scale_entry's GtkLabel, GtkHScale and +

Returns: The GtkSpinButton's GtkAdjustment. +

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.

-

adjustment: a GtkAdjustment returned by gimp_scale_entry_new() +

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
-                                            (GtkObject *adjustment,
-                                             gboolean logarithmic);

+ parameter of gtk_widget_set_sensitive() +


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 or logharithmic fashion. Useful when an entry has to attend large ranges, but smaller selections on that range require a finer adjustment.

-

adjustment: a GtkAdjustment as returned by gimp_scale_entry_new() +

adjustment: a GtkAdjustment as returned by gimp_scale_entry_new()
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
-                                            (GtkObject *adjustment);

+


gimp_scale_entry_get_logarithmic ()

gboolean    gimp_scale_entry_get_logarithmic
+                                            (GtkObject *adjustment);

-

adjustment: a GtkAdjustment as returned by gimp_scale_entry_new() -
Returns : TRUE if the the entry's scale widget will behave in +

adjustment: a GtkAdjustment as returned by gimp_scale_entry_new() +
Returns: TRUE if the the entry's scale widget will behave in logharithmic fashion, FALSE for linear behaviour.

Since GIMP 2.2 -


gimp_color_scale_entry_new ()

GtkObject*  gimp_color_scale_entry_new      (GtkTable *table,
-                                             gint column,
-                                             gint row,
-                                             const gchar *text,
-                                             gint scale_width,
-                                             gint spinbutton_width,
-                                             gdouble value,
-                                             gdouble lower,
-                                             gdouble upper,
-                                             gdouble step_increment,
-                                             gdouble page_increment,
-                                             guint digits,
-                                             const gchar *tooltip,
-                                             const gchar *help_id);

-This function creates a GtkLabel, a GimpColorScale and a -GtkSpinButton and attaches them to a 3-column GtkTable.

- -

table: The GtkTable the widgets will be attached to. +


gimp_color_scale_entry_new ()

GtkObject*  gimp_color_scale_entry_new      (GtkTable *table,
+                                             gint column,
+                                             gint row,
+                                             const gchar *text,
+                                             gint scale_width,
+                                             gint spinbutton_width,
+                                             gdouble value,
+                                             gdouble lower,
+                                             gdouble upper,
+                                             gdouble step_increment,
+                                             gdouble page_increment,
+                                             guint digits,
+                                             const gchar *tooltip,
+                                             const gchar *help_id);

+This function creates a GtkLabel, a GimpColorScale and a +GtkSpinButton and attaches them to a 3-column GtkTable.

+ +

table: The GtkTable the widgets will be attached to.
column: The column to start with.
row: The row to attach the widgets. -
text: The text for the GtkLabel which will appear - left of the GtkHScale. -
scale_width: The minimum horizontal size of the GtkHScale. -
spinbutton_width: The minimum horizontal size of the GtkSpinButton. +
text: The text for the GtkLabel which will appear + left of the GtkHScale. +
scale_width: The minimum horizontal size of the GtkHScale. +
spinbutton_width: The minimum horizontal size of the GtkSpinButton.
value: The initial value.
lower: The lower boundary.
upper: The upper boundary. @@ -387,61 +851,129 @@
digits: The number of decimal digits.
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)

-Returns the random_seed's GtkSpinButton. -

hbox:The GtkHBox returned by gimp_random_seed_new(). - +
Returns: The GtkSpinButton's GtkAdjustment. +

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)

+Returns the GtkAdjustment of 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)

-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,
-                                             gboolean *random_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.

seed: A pointer to the variable which stores the random seed.
random_seed: A pointer to a boolean indicating whether seed should be 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)

+

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)

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,
-                                             gboolean menu_show_pixels,
-                                             gboolean menu_show_percent,
-                                             gint spinbutton_width,
+                                             const gchar *unit_format,
+                                             gboolean menu_show_pixels,
+                                             gboolean menu_show_percent,
+                                             gint spinbutton_width,
                                              GimpSizeEntryUpdatePolicy update_policy,
-                                             gboolean chainbutton_active,
-                                             gboolean chain_constrains_ratio,
-                                             const gchar *xlabel,
-                                             gdouble x,
-                                             gdouble xres,
-                                             gdouble lower_boundary_x,
-                                             gdouble upper_boundary_x,
-                                             gdouble xsize_0,
-                                             gdouble xsize_100,
-                                             const gchar *ylabel,
-                                             gdouble y,
-                                             gdouble yres,
-                                             gdouble lower_boundary_y,
-                                             gdouble upper_boundary_y,
-                                             gdouble ysize_0,
-                                             gdouble ysize_100);

+ gboolean chainbutton_active, + gboolean chain_constrains_ratio, + const gchar *xlabel, + gdouble x, + gdouble xres, + gdouble lower_boundary_x, + gdouble upper_boundary_x, + gdouble xsize_0, + gdouble xsize_100, + const gchar *ylabel, + gdouble y, + gdouble yres, + gdouble lower_boundary_y, + gdouble upper_boundary_y, + gdouble ysize_0, + gdouble ysize_100);

Convenience function that creates a GimpSizeEntry with two fields for x/y coordinates/sizes with a GimpChainButton attached to constrain either the two fields' values or the ratio between them.

@@ -454,7 +986,9 @@ menu_show_percent: TRUE if the GimpUnitMenu should contain an item for GIMP_UNIT_PERCENT. spinbutton_width: The horizontal size of the GimpSizeEntry's - GtkSpinButton's. + GtkSpinButton's. update_policy: The update policy for the GimpSizeEntry. chainbutton_active: TRUE if the attached GimpChainButton should be active. @@ -475,19 +1009,39 @@ upper_boundary_y: The upper boundary of the Y coordinate. 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,
-                                             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.

+Returns: The new GimpSizeEntry. +


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.

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
-                                            (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 +Returns: The new GtkButton. +


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 the attached widget will be set according to the toggle button's "active" state.

@@ -498,59 +1052,129 @@ button's inverse "active" state by attaching widgets with the "inverse_sensitive" key.

-

toggle_button: The GtkToggleButton the "set_sensitive" and +

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,
-                                             gpointer data);

+


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,
-                                             gpointer data);

+

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,
+                                             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 +

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,
-                                             gpointer data);

-Note that the GtkAdjustment's value (which is a gdouble) will be +


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 RINT().

-

adjustment: A GtkAdjustment. -
data: A pointer to a gint variable which will store the +

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,
-                                             gpointer data);

-Note that the GtkAdjustment's value (which is a gdouble) will be rounded -with (guint) (value + 0.5).

- -

adjustment: A GtkAdjustment. -
data: A pointer to a guint variable which will store the +

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).

+ +

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,
-                                             gpointer data);

+


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: 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,
-                                             gpointer data);

+


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: 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,
-                                             gpointer data);

+


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 -as list of data pointers attached with g_object_set_data() with the +of GtkSpinButton's. To use this functionality, attach the spinbuttons +as list of data pointers attached with g_object_set_data() with the "set_digits" key.

See gimp_toggle_button_sensitive_update() for a description of how @@ -561,43 +1185,85 @@ 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,
-                                             gint column,
-                                             gint row,
-                                             const gchar *label_text,
-                                             gfloat xalign,
-                                             gfloat yalign,
-                                             GtkWidget *widget,
-                                             gint colspan,
-                                             gboolean left_align);

+


gimp_table_attach_aligned ()

GtkWidget*  gimp_table_attach_aligned       (GtkTable *table,
+                                             gint column,
+                                             gint row,
+                                             const gchar *label_text,
+                                             gfloat xalign,
+                                             gfloat yalign,
+                                             GtkWidget *widget,
+                                             gint colspan,
+                                             gboolean left_align);

Note that the label_text can be NULL and that the widget will be attached starting at (column + 1) in this case, too.

-

table: The GtkTable the widgets will be attached to. +

table: The GtkTable the widgets will be attached to.
column: The column to start with.
row: The row to attach the widgets. -
label_text: The text for the GtkLabel which will be attached left of +
label_text: The text for the GtkLabel which will be attached left of the widget. -
xalign: The horizontal alignment of the GtkLabel. -
yalign: The vertival alignment of the GtkLabel. -
widget: The GtkWidget to attach right of the label. +
xalign: The horizontal alignment of the GtkLabel. +
yalign: The vertival alignment of the GtkLabel. +
widget: The GtkWidget to attach right of the label.
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,
+
Returns: The created GtkLabel. +

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(). +Sets Pango attributes on a GtkLabel in a more convenient way than +gtk_label_set_attributes().

This function is useful if you want to change the font attributes -of a GtkLabel. This is an alternative to using PangoMarkup which +of a GtkLabel. This is an alternative to using PangoMarkup which is slow to parse and akward to handle in an i18n-friendly way.

The attributes are set on the complete label, from start to end. If you need to set attributes on part of the label, you will have to use the PangoAttributes API directly.

-

label: a GtkLabel +

label: a GtkLabel
...: a list of PangoAttrType and value pairs terminated by -1.

Since GIMP 2.2

diff -uraN gimp-2.2.4/devel-docs/libgimpwidgets/html/libgimpwidgets-hierarchy.html gimp-2.2.5/devel-docs/libgimpwidgets/html/libgimpwidgets-hierarchy.html --- gimp-2.2.4/devel-docs/libgimpwidgets/html/libgimpwidgets-hierarchy.html 2005-02-22 23:13:30.000000000 +0100 +++ gimp-2.2.5/devel-docs/libgimpwidgets/html/libgimpwidgets-hierarchy.html 2005-04-09 23:10:40.000000000 +0200 @@ -1,57 +1,55 @@ -Object Hierarchy

Object Hierarchy

-    GObject
-        GtkObject
-            GtkWidget
-                GtkContainer
-                    GtkBin
-                        GtkButton
+Object Hierarchy

Object Hierarchy

+    GObject
+        GtkObject
+            GtkWidget
+                GtkContainer
+                    GtkBin
+                        GtkButton
                             GimpButton
                                 GimpColorButton
                             GimpPickButton
-                            GtkOptionMenu
+                            GtkOptionMenu
                                 GimpUnitMenu
-                        GtkWindow
-                            GtkDialog
+                        GtkWindow
+                            GtkDialog
                                 GimpDialog
-                        GtkFrame
+                        GtkFrame
                             GimpFrame
-                        GtkComboBox
+                        GtkComboBox
                             GimpIntComboBox
-                    GtkTable
+                    GtkTable
                         GimpChainButton
                         GimpSizeEntry
-                    GtkBox
-                        GtkVBox
+                    GtkBox
+                        GtkVBox
                             GimpColorSelector
                                 GimpColorNotebook
                                 GimpColorScales
@@ -59,49 +57,48 @@
                             GimpColorSelection
                             GimpPathEditor
                             GimpPreview
-                        GtkHBox
+                        GtkHBox
                             GimpFileEntry
                             GimpMemsizeEntry
-                    GtkMenuShell
-                        GtkMenu
-                GtkDrawingArea
+                GtkDrawingArea
                     GimpColorArea
                     GimpOffsetArea
                     GimpPreviewArea
-                GtkEntry
+                GtkEntry
                     GimpColorHexEntry
-                GtkRange
-                    GtkScale
+                GtkRange
+                    GtkScale
                         GimpColorScale
-                GtkMisc
-                    GtkImage
+                GtkMisc
+                    GtkImage
                         GimpPixmap
-            GtkCellRenderer
+            GtkCellRenderer
                 GimpCellRendererColor
-                GtkCellRendererToggle
+                GtkCellRendererToggle
                     GimpCellRendererToggle
-            GtkAdjustment
         GimpColorDisplay
         GimpColorDisplayStack
         GimpController
-        GtkListStore
+        GtkListStore
             GimpIntStore
-        GtkStyle
-        GdkDragContext
-        GdkScreen
-        GtkSettings
-        GdkPixbuf
-        GdkDrawable
-            GdkPixmap
-        GdkImage
-        GdkPixbufAnimation
-    GInterface
-        AtkImplementorIface
-        GtkEditable
-        GtkCellEditable
-        GtkCellLayout
-        GtkTreeModel
-        GtkTreeDragSource
-        GtkTreeDragDest
-        GtkTreeSortable
 
diff -uraN gimp-2.2.4/devel-docs/libgimpwidgets/html/libgimpwidgets-utils.html gimp-2.2.5/devel-docs/libgimpwidgets/html/libgimpwidgets-utils.html --- gimp-2.2.4/devel-docs/libgimpwidgets/html/libgimpwidgets-utils.html 2005-02-22 23:13:30.000000000 +0100 +++ gimp-2.2.5/devel-docs/libgimpwidgets/html/libgimpwidgets-utils.html 2005-04-09 23:10:40.000000000 +0200 @@ -1,33 +1 @@ -PartV.GIMP Widgets Utilities

GIMP Widgets Utilities

Table of Contents

GimpHelpUI - Functions for setting GtkTooltips and help identifier used by GIMP help -system.
GimpQueryBox - Some simple dialogs to enter a single int, double, string or boolean value.
GimpSizeEntry - Widget for entering pixel values and resolutions.
GimpStock - Prebuilt common menu/toolbar items and corresponding icons
GimpWidgets - A collection of convenient widget constructors, standard callbacks and -helper functions.
+PartV.GIMP Widgets Utilities

GIMP Widgets Utilities

diff -uraN gimp-2.2.4/devel-docs/libgimpwidgets/html/libgimpwidgets-widgets.html gimp-2.2.5/devel-docs/libgimpwidgets/html/libgimpwidgets-widgets.html --- gimp-2.2.4/devel-docs/libgimpwidgets/html/libgimpwidgets-widgets.html 2005-02-22 23:13:30.000000000 +0100 +++ gimp-2.2.5/devel-docs/libgimpwidgets/html/libgimpwidgets-widgets.html 2005-04-09 23:10:40.000000000 +0200 @@ -1,32 +1 @@ -PartI.GIMP Widgets

GIMP Widgets

Table of Contents

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.
+PartI.GIMP Widgets

GIMP Widgets

diff -uraN gimp-2.2.4/devel-docs/libgimpwidgets/html/style.css gimp-2.2.5/devel-docs/libgimpwidgets/html/style.css --- gimp-2.2.4/devel-docs/libgimpwidgets/html/style.css 1970-01-01 01:00:00.000000000 +0100 +++ gimp-2.2.5/devel-docs/libgimpwidgets/html/style.css 2005-04-09 23:10:40.000000000 +0200 @@ -0,0 +1,66 @@ +.synopsis, .classsynopsis +{ + background: #eeeeee; + border: solid 1px #aaaaaa; + padding: 0.5em; +} +.programlisting +{ + background: #eeeeff; + border: solid 1px #aaaaff; + padding: 0.5em; +} +.variablelist +{ + padding: 4px; + margin-left: 3em; +} +.variablelist td:first-child +{ + vertical-align: top; +} +table.navigation +{ + background: #ffeeee; + border: solid 1px #ffaaaa; + margin-top: 0.5em; + margin-bottom: 0.5em; +} +.navigation a +{ + color: #770000; +} +.navigation a:visited +{ + color: #550000; +} +.navigation .title +{ + font-size: 200%; +} +div.refnamediv +{ + margin-top: 2em; +} +div.gallery-float +{ + float: left; + padding: 10px; +} +div.gallery-float img +{ + border-style: none; +} +div.gallery-spacer +{ + clear: both; +} +a +{ + text-decoration: none; +} +a:hover +{ + text-decoration: underline; + color: #FF0000; +} diff -uraN gimp-2.2.4/devel-docs/libgimpwidgets/xml/gimpbutton.xml gimp-2.2.5/devel-docs/libgimpwidgets/xml/gimpbutton.xml --- gimp-2.2.4/devel-docs/libgimpwidgets/xml/gimpbutton.xml 2005-02-22 23:13:30.000000000 +0100 +++ gimp-2.2.5/devel-docs/libgimpwidgets/xml/gimpbutton.xml 2005-04-09 23:10:40.000000000 +0200 @@ -19,7 +19,7 @@ -struct GimpButton; + GimpButton; GtkWidget* gimp_button_new (void); void gimp_button_extended_clicked (GimpButton *button, GdkModifierType state); @@ -79,8 +79,8 @@ Details -<anchor id="GimpButton-struct"/>struct GimpButton -GimpButtonstruct GimpButton; +<anchor id="GimpButton-struct"/>GimpButton +GimpButtontypedef struct _GimpButton GimpButton; @@ -92,7 +92,7 @@ -Returns : A pointer to the new GimpButton widget. +Returns : A pointer to the new GimpButton widget. @@ -108,7 +108,7 @@ a GimpButton. state : - a state as found in GdkEventButton->state, e.g. GDK_SHIFT_MASK. + a state as found in GdkEventButton->state, e.g. GDK_SHIFT_MASK. diff -uraN gimp-2.2.4/devel-docs/libgimpwidgets/xml/gimpcellrenderercolor.xml gimp-2.2.5/devel-docs/libgimpwidgets/xml/gimpcellrenderercolor.xml --- gimp-2.2.4/devel-docs/libgimpwidgets/xml/gimpcellrenderercolor.xml 2005-02-22 23:13:30.000000000 +0100 +++ gimp-2.2.5/devel-docs/libgimpwidgets/xml/gimpcellrenderercolor.xml 2005-04-09 23:10:40.000000000 +0200 @@ -19,7 +19,7 @@ -struct GimpCellRendererColor; + GimpCellRendererColor; GtkCellRenderer* gimp_cell_renderer_color_new (void); @@ -46,9 +46,9 @@ Properties - "color" GimpRGB : Read / Write - "icon-size" gint : Read / Write / Construct - "opaque" gboolean : Read / Write / Construct + "color" GimpRGB : Read / Write + "icon-size" gint : Read / Write / Construct + "opaque" gboolean : Read / Write / Construct @@ -64,21 +64,21 @@ Details -<anchor id="GimpCellRendererColor-struct"/>struct GimpCellRendererColor -GimpCellRendererColorstruct GimpCellRendererColor; +<anchor id="GimpCellRendererColor-struct"/>GimpCellRendererColor +GimpCellRendererColortypedef struct _GimpCellRendererColor GimpCellRendererColor; <anchor id="gimp-cell-renderer-color-new"/>gimp_cell_renderer_color_new () -gimp_cell_renderer_color_newGtkCellRenderer* gimp_cell_renderer_color_new +gimp_cell_renderer_color_newGtkCellRenderer* gimp_cell_renderer_color_new (void); Creates a GtkCellRenderer that displays a color. -Returns : a new GimpCellRendererColor +Returns : a new GimpCellRendererColor Since GIMP 2.2 @@ -87,21 +87,19 @@ Properties - -"color" (GimpRGB : Read / Write) - - - -"icon-size" (gint : Read / Write / Construct) - - - -"opaque" (gboolean : Read / Write / Construct) - - - +<anchor id="GimpCellRendererColor--color"/>The "<literal>color</literal>" property + "color" GimpRGB : Read / Write + +<anchor id="GimpCellRendererColor--icon-size"/>The "<literal>icon-size</literal>" property + "icon-size" gint : Read / Write / Construct +Allowed values: >= 0 +Default value: 1 + +<anchor id="GimpCellRendererColor--opaque"/>The "<literal>opaque</literal>" property + "opaque" gboolean : Read / Write / Construct +Default value: TRUE + - diff -uraN gimp-2.2.4/devel-docs/libgimpwidgets/xml/gimpcellrenderertoggle.xml gimp-2.2.5/devel-docs/libgimpwidgets/xml/gimpcellrenderertoggle.xml --- gimp-2.2.4/devel-docs/libgimpwidgets/xml/gimpcellrenderertoggle.xml 2005-02-22 23:13:30.000000000 +0100 +++ gimp-2.2.5/devel-docs/libgimpwidgets/xml/gimpcellrenderertoggle.xml 2005-04-09 23:10:40.000000000 +0200 @@ -19,7 +19,7 @@ -struct GimpCellRendererToggle; + GimpCellRendererToggle; GtkCellRenderer* gimp_cell_renderer_toggle_new (const gchar *stock_id); void gimp_cell_renderer_toggle_clicked @@ -51,8 +51,8 @@ Properties - "stock-id" gchararray : Read / Write / Construct - "stock-size" gint : Read / Write / Construct + "stock-id" gchararray : Read / Write / Construct + "stock-size" gint : Read / Write / Construct @@ -78,14 +78,14 @@ Details -<anchor id="GimpCellRendererToggle-struct"/>struct GimpCellRendererToggle -GimpCellRendererTogglestruct GimpCellRendererToggle; +<anchor id="GimpCellRendererToggle-struct"/>GimpCellRendererToggle +GimpCellRendererToggletypedef struct _GimpCellRendererToggle GimpCellRendererToggle; <anchor id="gimp-cell-renderer-toggle-new"/>gimp_cell_renderer_toggle_new () -gimp_cell_renderer_toggle_newGtkCellRenderer* gimp_cell_renderer_toggle_new +gimp_cell_renderer_toggle_newGtkCellRenderer* gimp_cell_renderer_toggle_new (const gchar *stock_id); Creates a custom version of the GtkCellRendererToggle. Instead of @@ -99,14 +99,14 @@ stock_id : the stock_id of the icon to use for the active state -Returns : a new GimpCellRendererToggle +Returns : a new GimpCellRendererToggle Since GIMP 2.2 <anchor id="gimp-cell-renderer-toggle-clicked"/>gimp_cell_renderer_toggle_clicked () -gimp_cell_renderer_toggle_clickedvoid gimp_cell_renderer_toggle_clicked +gimp_cell_renderer_toggle_clickedvoid gimp_cell_renderer_toggle_clicked (GimpCellRendererToggle *cell, const gchar *path, GdkModifierType state); @@ -130,17 +130,16 @@ Properties - -"stock-id" (gchararray : Read / Write / Construct) - - - -"stock-size" (gint : Read / Write / Construct) - - - +<anchor id="GimpCellRendererToggle--stock-id"/>The "<literal>stock-id</literal>" property + "stock-id" gchararray : Read / Write / Construct +Default value: NULL + +<anchor id="GimpCellRendererToggle--stock-size"/>The "<literal>stock-size</literal>" property + "stock-size" gint : Read / Write / Construct +Allowed values: >= 0 +Default value: 4 + - diff -uraN gimp-2.2.4/devel-docs/libgimpwidgets/xml/gimpchainbutton.xml gimp-2.2.5/devel-docs/libgimpwidgets/xml/gimpchainbutton.xml --- gimp-2.2.4/devel-docs/libgimpwidgets/xml/gimpchainbutton.xml 2005-02-22 23:13:30.000000000 +0100 +++ gimp-2.2.5/devel-docs/libgimpwidgets/xml/gimpchainbutton.xml 2005-04-09 23:10:40.000000000 +0200 @@ -19,7 +19,7 @@ -struct GimpChainButton; + GimpChainButton; enum GimpChainPosition; GtkWidget* gimp_chain_button_new (GimpChainPosition position); void gimp_chain_button_set_active (GimpChainButton *button, @@ -86,8 +86,8 @@ Details -<anchor id="GimpChainButton-struct"/>struct GimpChainButton -GimpChainButtonstruct GimpChainButton; +<anchor id="GimpChainButton-struct"/>GimpChainButton +GimpChainButtontypedef struct _GimpChainButton GimpChainButton; @@ -124,7 +124,7 @@ The position you are going to use for the button with respect to the widgets you want to chain. -Returns : Pointer to the new GimpChainButton, which is inactive +Returns : Pointer to the new GimpChainButton, which is inactive by default. Use gimp_chain_button_set_active() to change its state. @@ -157,7 +157,7 @@ button : Pointer to a GimpChainButton. -Returns : TRUE if the GimpChainButton is active (locked). +Returns : TRUE if the GimpChainButton is active (locked). diff -uraN gimp-2.2.4/devel-docs/libgimpwidgets/xml/gimpcolorarea.xml gimp-2.2.5/devel-docs/libgimpwidgets/xml/gimpcolorarea.xml --- gimp-2.2.4/devel-docs/libgimpwidgets/xml/gimpcolorarea.xml 2005-02-22 23:13:30.000000000 +0100 +++ gimp-2.2.5/devel-docs/libgimpwidgets/xml/gimpcolorarea.xml 2005-04-09 23:10:40.000000000 +0200 @@ -19,7 +19,7 @@ -struct GimpColorArea; + GimpColorArea; enum GimpColorAreaType; GtkWidget* gimp_color_area_new (const GimpRGB *color, GimpColorAreaType type, @@ -83,8 +83,8 @@ Details -<anchor id="GimpColorArea-struct"/>struct GimpColorArea -GimpColorAreastruct GimpColorArea; +<anchor id="GimpColorArea-struct"/>GimpColorArea +GimpColorAreatypedef struct _GimpColorArea GimpColorArea; @@ -123,7 +123,7 @@ drag_mask : The event_mask that should trigger drags. -Returns : Pointer to the new GimpColorArea widget. +Returns : Pointer to the new GimpColorArea widget. @@ -170,7 +170,7 @@ area : Pointer to a GimpColorArea. -Returns : TRUE if area shows transparency information, FALSE otherwise. +Returns : TRUE if area shows transparency information, FALSE otherwise. diff -uraN gimp-2.2.4/devel-docs/libgimpwidgets/xml/gimpcolorbutton.xml gimp-2.2.5/devel-docs/libgimpwidgets/xml/gimpcolorbutton.xml --- gimp-2.2.4/devel-docs/libgimpwidgets/xml/gimpcolorbutton.xml 2005-02-22 23:13:30.000000000 +0100 +++ gimp-2.2.5/devel-docs/libgimpwidgets/xml/gimpcolorbutton.xml 2005-04-09 23:10:40.000000000 +0200 @@ -19,7 +19,7 @@ -struct GimpColorButton; + GimpColorButton; GtkWidget* gimp_color_button_new (const gchar *title, gint width, gint height, @@ -95,8 +95,8 @@ Details -<anchor id="GimpColorButton-struct"/>struct GimpColorButton -GimpColorButtonstruct GimpColorButton; +<anchor id="GimpColorButton-struct"/>GimpColorButton +GimpColorButtontypedef struct _GimpColorButton GimpColorButton; @@ -134,7 +134,7 @@ type : -Returns : Pointer to the new GimpColorButton widget. +Returns : Pointer to the new GimpColorButton widget. @@ -174,7 +174,7 @@ gimp_color_button_set_updatevoid gimp_color_button_set_update (GimpColorButton *button, gboolean continuous); -When set to TRUE, the button will emit the "color_changed" +When set to TRUE, the button will emit the "color_changed" continuously while the color is changed in the color selection dialog. @@ -198,7 +198,7 @@ button : A GimpColorButton widget. -Returns : the continuous_update property. +Returns : the continuous_update property. @@ -212,7 +212,7 @@ button : Pointer to a GimpColorButton. -Returns : TRUE if the button shows transparency information, FALSE +Returns : TRUE if the button shows transparency information, FALSE otherwise. diff -uraN gimp-2.2.4/devel-docs/libgimpwidgets/xml/gimpcolordisplaystack.xml gimp-2.2.5/devel-docs/libgimpwidgets/xml/gimpcolordisplaystack.xml --- gimp-2.2.4/devel-docs/libgimpwidgets/xml/gimpcolordisplaystack.xml 2005-02-22 23:13:30.000000000 +0100 +++ gimp-2.2.5/devel-docs/libgimpwidgets/xml/gimpcolordisplaystack.xml 2005-04-09 23:10:40.000000000 +0200 @@ -19,7 +19,7 @@ -struct GimpColorDisplayStack; + GimpColorDisplayStack; GimpColorDisplayStack* gimp_color_display_stack_new (void); GimpColorDisplayStack* gimp_color_display_stack_clone @@ -93,8 +93,8 @@ Details -<anchor id="GimpColorDisplayStack-struct"/>struct GimpColorDisplayStack -GimpColorDisplayStackstruct GimpColorDisplayStack; +<anchor id="GimpColorDisplayStack-struct"/>GimpColorDisplayStack +GimpColorDisplayStacktypedef struct _GimpColorDisplayStack GimpColorDisplayStack; @@ -105,7 +105,7 @@ -Returns : +Returns : @@ -120,7 +120,7 @@ stack : -Returns : +Returns : diff -uraN gimp-2.2.4/devel-docs/libgimpwidgets/xml/gimpcolordisplay.xml gimp-2.2.5/devel-docs/libgimpwidgets/xml/gimpcolordisplay.xml --- gimp-2.2.4/devel-docs/libgimpwidgets/xml/gimpcolordisplay.xml 2005-02-22 23:13:30.000000000 +0100 +++ gimp-2.2.5/devel-docs/libgimpwidgets/xml/gimpcolordisplay.xml 2005-04-09 23:10:40.000000000 +0200 @@ -19,7 +19,7 @@ -struct GimpColorDisplay; + GimpColorDisplay; GimpColorDisplay* gimp_color_display_new (GType display_type); GimpColorDisplay* gimp_color_display_clone (GimpColorDisplay *display); void gimp_color_display_set_enabled (GimpColorDisplay *display, @@ -60,7 +60,7 @@ Properties - "enabled" gboolean : Read / Write / Construct + "enabled" gboolean : Read / Write / Construct @@ -85,8 +85,8 @@ Details -<anchor id="GimpColorDisplay-struct"/>struct GimpColorDisplay -GimpColorDisplaystruct GimpColorDisplay; +<anchor id="GimpColorDisplay-struct"/>GimpColorDisplay +GimpColorDisplaytypedef struct _GimpColorDisplay GimpColorDisplay; @@ -99,7 +99,7 @@ display_type : -Returns : +Returns : @@ -113,7 +113,7 @@ display : -Returns : +Returns : @@ -143,7 +143,7 @@ display : -Returns : +Returns : @@ -205,7 +205,7 @@ display : -Returns : +Returns : @@ -219,7 +219,7 @@ display : -Returns : +Returns : @@ -253,13 +253,11 @@ Properties - -"enabled" (gboolean : Read / Write / Construct) - - - +<anchor id="GimpColorDisplay--enabled"/>The "<literal>enabled</literal>" property + "enabled" gboolean : Read / Write / Construct +Default value: TRUE + - diff -uraN gimp-2.2.4/devel-docs/libgimpwidgets/xml/gimpcolorhexentry.xml gimp-2.2.5/devel-docs/libgimpwidgets/xml/gimpcolorhexentry.xml --- gimp-2.2.4/devel-docs/libgimpwidgets/xml/gimpcolorhexentry.xml 2005-02-22 23:13:30.000000000 +0100 +++ gimp-2.2.5/devel-docs/libgimpwidgets/xml/gimpcolorhexentry.xml 2005-04-09 23:10:40.000000000 +0200 @@ -19,7 +19,7 @@ -struct GimpColorHexEntry; + GimpColorHexEntry; GtkWidget* gimp_color_hex_entry_new (void); void gimp_color_hex_entry_set_color (GimpColorHexEntry *entry, const GimpRGB *color); @@ -75,27 +75,27 @@ Details -<anchor id="GimpColorHexEntry-struct"/>struct GimpColorHexEntry -GimpColorHexEntrystruct GimpColorHexEntry; +<anchor id="GimpColorHexEntry-struct"/>GimpColorHexEntry +GimpColorHexEntrytypedef struct _GimpColorHexEntry GimpColorHexEntry; <anchor id="gimp-color-hex-entry-new"/>gimp_color_hex_entry_new () -gimp_color_hex_entry_newGtkWidget* gimp_color_hex_entry_new (void); +gimp_color_hex_entry_newGtkWidget* gimp_color_hex_entry_new (void); -Returns : a new GimpColorHexEntry widget +Returns : a new GimpColorHexEntry widget Since GIMP 2.2 <anchor id="gimp-color-hex-entry-set-color"/>gimp_color_hex_entry_set_color () -gimp_color_hex_entry_set_colorvoid gimp_color_hex_entry_set_color (GimpColorHexEntry *entry, +gimp_color_hex_entry_set_colorvoid gimp_color_hex_entry_set_color (GimpColorHexEntry *entry, const GimpRGB *color); Sets the color displayed by a GimpColorHexEntry. If the new color @@ -114,7 +114,7 @@ <anchor id="gimp-color-hex-entry-get-color"/>gimp_color_hex_entry_get_color () -gimp_color_hex_entry_get_colorvoid gimp_color_hex_entry_get_color (GimpColorHexEntry *entry, +gimp_color_hex_entry_get_colorvoid gimp_color_hex_entry_get_color (GimpColorHexEntry *entry, GimpRGB *color); Retrieves the color value displayed by a GimpColorHexEntry. diff -uraN gimp-2.2.4/devel-docs/libgimpwidgets/xml/gimpcolornotebook.xml gimp-2.2.5/devel-docs/libgimpwidgets/xml/gimpcolornotebook.xml --- gimp-2.2.4/devel-docs/libgimpwidgets/xml/gimpcolornotebook.xml 2005-02-22 23:13:30.000000000 +0100 +++ gimp-2.2.5/devel-docs/libgimpwidgets/xml/gimpcolornotebook.xml 2005-04-09 23:10:40.000000000 +0200 @@ -19,7 +19,7 @@ -struct GimpColorNotebook; + GimpColorNotebook; GtkWidget* gimp_color_notebook_set_has_page (GimpColorNotebook *notebook, GType page_type, @@ -59,8 +59,8 @@ Style Properties - "tab-border" gint : Read - "tab-icon-size" GtkIconSize : Read + "tab-border" gint : Read + "tab-icon-size" GtkIconSize : Read @@ -77,8 +77,8 @@ Details -<anchor id="GimpColorNotebook-struct"/>struct GimpColorNotebook -GimpColorNotebookstruct GimpColorNotebook; +<anchor id="GimpColorNotebook-struct"/>GimpColorNotebook +GimpColorNotebooktypedef struct _GimpColorNotebook GimpColorNotebook; @@ -103,25 +103,24 @@ 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. +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. - +<anchor id="GimpColorNotebook--tab-border"/>The "<literal>tab-border</literal>" style property + "tab-border" gint : Read +Width of the border around the tab contents.Allowed values: >= 0 +Default value: 0 + +<anchor id="GimpColorNotebook--tab-icon-size"/>The "<literal>tab-icon-size</literal>" style property + "tab-icon-size" GtkIconSize : Read +Size for icons displayed in the tab.Default value: GTK_ICON_SIZE_BUTTON + - diff -uraN gimp-2.2.4/devel-docs/libgimpwidgets/xml/gimpcolorscales.xml gimp-2.2.5/devel-docs/libgimpwidgets/xml/gimpcolorscales.xml --- gimp-2.2.4/devel-docs/libgimpwidgets/xml/gimpcolorscales.xml 2005-02-22 23:13:30.000000000 +0100 +++ gimp-2.2.5/devel-docs/libgimpwidgets/xml/gimpcolorscales.xml 2005-04-09 23:10:40.000000000 +0200 @@ -19,7 +19,7 @@ -struct GimpColorScales; + GimpColorScales; @@ -66,8 +66,8 @@ Details -<anchor id="GimpColorScales-struct"/>struct GimpColorScales -GimpColorScalesstruct GimpColorScales; +<anchor id="GimpColorScales-struct"/>GimpColorScales +GimpColorScalestypedef struct _GimpColorScales GimpColorScales; diff -uraN gimp-2.2.4/devel-docs/libgimpwidgets/xml/gimpcolorscale.xml gimp-2.2.5/devel-docs/libgimpwidgets/xml/gimpcolorscale.xml --- gimp-2.2.4/devel-docs/libgimpwidgets/xml/gimpcolorscale.xml 2005-02-22 23:13:30.000000000 +0100 +++ gimp-2.2.5/devel-docs/libgimpwidgets/xml/gimpcolorscale.xml 2005-04-09 23:10:40.000000000 +0200 @@ -19,7 +19,7 @@ -struct GimpColorScale; + GimpColorScale; GtkWidget* gimp_color_scale_new (GtkOrientation orientation, GimpColorSelectorChannel channel); void gimp_color_scale_set_channel (GimpColorScale *scale, @@ -69,8 +69,8 @@ Details -<anchor id="GimpColorScale-struct"/>struct GimpColorScale -GimpColorScalestruct GimpColorScale; +<anchor id="GimpColorScale-struct"/>GimpColorScale +GimpColorScaletypedef struct _GimpColorScale GimpColorScale; @@ -89,7 +89,7 @@ channel : the scale's color channel -Returns : a new GimpColorScale widget +Returns : a new GimpColorScale widget diff -uraN gimp-2.2.4/devel-docs/libgimpwidgets/xml/gimpcolorselection.xml gimp-2.2.5/devel-docs/libgimpwidgets/xml/gimpcolorselection.xml --- gimp-2.2.4/devel-docs/libgimpwidgets/xml/gimpcolorselection.xml 2005-02-22 23:13:30.000000000 +0100 +++ gimp-2.2.5/devel-docs/libgimpwidgets/xml/gimpcolorselection.xml 2005-04-09 23:10:40.000000000 +0200 @@ -19,7 +19,7 @@ -struct GimpColorSelection; + GimpColorSelection; GtkWidget* gimp_color_selection_new (void); void gimp_color_selection_set_show_alpha (GimpColorSelection *selection, @@ -91,8 +91,8 @@ Details -<anchor id="GimpColorSelection-struct"/>struct GimpColorSelection -GimpColorSelectionstruct GimpColorSelection; +<anchor id="GimpColorSelection-struct"/>GimpColorSelection +GimpColorSelectiontypedef struct _GimpColorSelection GimpColorSelection; @@ -104,7 +104,7 @@ -Returns : The new GimpColorSelection widget. +Returns : The new GimpColorSelection widget. @@ -136,7 +136,7 @@ selection : A GimpColorSelection widget. -Returns : TRUE if the GimpColorSelection has alpha controls. +Returns : TRUE if the GimpColorSelection has alpha controls. diff -uraN gimp-2.2.4/devel-docs/libgimpwidgets/xml/gimpcolorselector.xml gimp-2.2.5/devel-docs/libgimpwidgets/xml/gimpcolorselector.xml --- gimp-2.2.4/devel-docs/libgimpwidgets/xml/gimpcolorselector.xml 2005-02-22 23:13:30.000000000 +0100 +++ gimp-2.2.5/devel-docs/libgimpwidgets/xml/gimpcolorselector.xml 2005-04-09 23:10:40.000000000 +0200 @@ -19,9 +19,9 @@ -struct GimpColorSelector; -#define GIMP_COLOR_SELECTOR_SIZE -#define GIMP_COLOR_SELECTOR_BAR_SIZE + GimpColorSelector; +#define GIMP_COLOR_SELECTOR_SIZE +#define GIMP_COLOR_SELECTOR_BAR_SIZE enum GimpColorSelectorChannel; GtkWidget* gimp_color_selector_new (GType selector_type, const GimpRGB *rgb, @@ -107,20 +107,20 @@ Details -<anchor id="GimpColorSelector-struct"/>struct GimpColorSelector -GimpColorSelectorstruct GimpColorSelector; +<anchor id="GimpColorSelector-struct"/>GimpColorSelector +GimpColorSelectortypedef struct _GimpColorSelector GimpColorSelector; -<anchor id="GIMP-COLOR-SELECTOR-SIZE-CAPS"/>GIMP_COLOR_SELECTOR_SIZE +<anchor id="GIMP-COLOR-SELECTOR-SIZE--CAPS"/>GIMP_COLOR_SELECTOR_SIZE GIMP_COLOR_SELECTOR_SIZE#define GIMP_COLOR_SELECTOR_SIZE 150 The suggested size for a color area in a GimpColorSelector implementation. -<anchor id="GIMP-COLOR-SELECTOR-BAR-SIZE-CAPS"/>GIMP_COLOR_SELECTOR_BAR_SIZE +<anchor id="GIMP-COLOR-SELECTOR-BAR-SIZE--CAPS"/>GIMP_COLOR_SELECTOR_BAR_SIZE GIMP_COLOR_SELECTOR_BAR_SIZE#define GIMP_COLOR_SELECTOR_BAR_SIZE 15 @@ -200,7 +200,7 @@ channel : -Returns : +Returns : diff -uraN gimp-2.2.4/devel-docs/libgimpwidgets/xml/gimpcolorselect.xml gimp-2.2.5/devel-docs/libgimpwidgets/xml/gimpcolorselect.xml --- gimp-2.2.4/devel-docs/libgimpwidgets/xml/gimpcolorselect.xml 2005-02-22 23:13:30.000000000 +0100 +++ gimp-2.2.5/devel-docs/libgimpwidgets/xml/gimpcolorselect.xml 2005-04-09 23:10:40.000000000 +0200 @@ -19,7 +19,7 @@ -struct GimpColorSelect; + GimpColorSelect; @@ -68,8 +68,8 @@ Details -<anchor id="GimpColorSelect-struct"/>struct GimpColorSelect -GimpColorSelectstruct GimpColorSelect; +<anchor id="GimpColorSelect-struct"/>GimpColorSelect +GimpColorSelecttypedef struct _GimpColorSelect GimpColorSelect; diff -uraN gimp-2.2.4/devel-docs/libgimpwidgets/xml/gimpcontroller.xml gimp-2.2.5/devel-docs/libgimpwidgets/xml/gimpcontroller.xml --- gimp-2.2.4/devel-docs/libgimpwidgets/xml/gimpcontroller.xml 2005-02-22 23:13:30.000000000 +0100 +++ gimp-2.2.5/devel-docs/libgimpwidgets/xml/gimpcontroller.xml 2005-04-09 23:10:40.000000000 +0200 @@ -20,11 +20,11 @@ enum GimpControllerEventType; -struct GimpControllerEventAny; -struct GimpControllerEventTrigger; -struct GimpControllerEventValue; + GimpControllerEventAny; + GimpControllerEventTrigger; + GimpControllerEventValue; union GimpControllerEvent; -struct GimpController; + GimpController; GimpController* gimp_controller_new (GType controller_type); gint gimp_controller_get_n_events (GimpController *controller); const gchar* gimp_controller_get_event_name (GimpController *controller, @@ -56,8 +56,8 @@ Properties - "name" gchararray : Read / Write / Construct - "state" gchararray : Read / Write / Construct + "name" gchararray : Read / Write / Construct + "state" gchararray : Read / Write / Construct @@ -93,38 +93,35 @@ -<anchor id="GimpControllerEventAny"/>struct GimpControllerEventAny -GimpControllerEventAnystruct GimpControllerEventAny { - +<anchor id="GimpControllerEventAny"/>GimpControllerEventAny +GimpControllerEventAnytypedef struct { GimpControllerEventType type; GimpController *source; gint event_id; -}; +} GimpControllerEventAny; -<anchor id="GimpControllerEventTrigger"/>struct GimpControllerEventTrigger -GimpControllerEventTriggerstruct GimpControllerEventTrigger { - +<anchor id="GimpControllerEventTrigger"/>GimpControllerEventTrigger +GimpControllerEventTriggertypedef struct { GimpControllerEventType type; GimpController *source; gint event_id; -}; +} GimpControllerEventTrigger; -<anchor id="GimpControllerEventValue"/>struct GimpControllerEventValue -GimpControllerEventValuestruct GimpControllerEventValue { - +<anchor id="GimpControllerEventValue"/>GimpControllerEventValue +GimpControllerEventValuetypedef struct { GimpControllerEventType type; GimpController *source; gint event_id; GValue value; -}; +} GimpControllerEventValue; @@ -143,8 +140,8 @@ -<anchor id="GimpController-struct"/>struct GimpController -GimpControllerstruct GimpController; +<anchor id="GimpController-struct"/>GimpController +GimpControllertypedef struct _GimpController GimpController; @@ -157,7 +154,7 @@ controller_type : -Returns : +Returns : @@ -171,7 +168,7 @@ controller : -Returns : +Returns : @@ -189,7 +186,7 @@ event_id : -Returns : +Returns : @@ -208,7 +205,7 @@ event_id : -Returns : +Returns : @@ -226,7 +223,7 @@ event : -Returns : +Returns : @@ -235,17 +232,15 @@ Properties - -"name" (gchararray : Read / Write / Construct) - - - -"state" (gchararray : Read / Write / Construct) - - - +<anchor id="GimpController--name"/>The "<literal>name</literal>" property + "name" gchararray : Read / Write / Construct +Default value: "Unnamed Controller" + +<anchor id="GimpController--state"/>The "<literal>state</literal>" property + "state" gchararray : Read / Write / Construct +Default value: "Unknown" + - @@ -265,7 +260,7 @@ user_data : user data set when the signal handler was connected. -Returns : +Returns : diff -uraN gimp-2.2.4/devel-docs/libgimpwidgets/xml/gimpdialog.xml gimp-2.2.5/devel-docs/libgimpwidgets/xml/gimpdialog.xml --- gimp-2.2.4/devel-docs/libgimpwidgets/xml/gimpdialog.xml 2005-02-22 23:13:30.000000000 +0100 +++ gimp-2.2.5/devel-docs/libgimpwidgets/xml/gimpdialog.xml 2005-04-09 23:10:40.000000000 +0200 @@ -20,7 +20,7 @@ -struct GimpDialog; + GimpDialog; GtkWidget* gimp_dialog_new (const gchar *title, const gchar *role, GtkWidget *parent, @@ -74,8 +74,8 @@ Properties - "help-func" gpointer : Read / Write / Construct Only - "help-id" gchararray : Read / Write / Construct Only + "help-func" gpointer : Read / Write / Construct Only + "help-id" gchararray : Read / Write / Construct Only @@ -91,8 +91,8 @@ Details -<anchor id="GimpDialog-struct"/>struct GimpDialog -GimpDialogstruct GimpDialog; +<anchor id="GimpDialog-struct"/>GimpDialog +GimpDialogtypedef struct _GimpDialog GimpDialog; @@ -142,7 +142,7 @@ A NULL-terminated va_list destribing the action_area buttons. -Returns : A GimpDialog. +Returns : A GimpDialog. @@ -187,7 +187,7 @@ args : A va_list destribing the action_area buttons. -Returns : A GimpDialog. +Returns : A GimpDialog. @@ -219,12 +219,12 @@ dialog : a GimpDialog -Returns : response ID +Returns : response ID <anchor id="gimp-dialogs-show-help-button"/>gimp_dialogs_show_help_button () -gimp_dialogs_show_help_buttonvoid gimp_dialogs_show_help_button (gboolean show); +gimp_dialogs_show_help_buttonvoid gimp_dialogs_show_help_button (gboolean show); This function is for internal use only. @@ -239,17 +239,14 @@ Properties - -"help-func" (gpointer : Read / Write / Construct Only) - - - -"help-id" (gchararray : Read / Write / Construct Only) - - - +<anchor id="GimpDialog--help-func"/>The "<literal>help-func</literal>" property + "help-func" gpointer : Read / Write / Construct Only + +<anchor id="GimpDialog--help-id"/>The "<literal>help-id</literal>" property + "help-id" gchararray : Read / Write / Construct Only +Default value: NULL + - diff -uraN gimp-2.2.4/devel-docs/libgimpwidgets/xml/gimpfileentry.xml gimp-2.2.5/devel-docs/libgimpwidgets/xml/gimpfileentry.xml --- gimp-2.2.4/devel-docs/libgimpwidgets/xml/gimpfileentry.xml 2005-02-22 23:13:30.000000000 +0100 +++ gimp-2.2.5/devel-docs/libgimpwidgets/xml/gimpfileentry.xml 2005-04-09 23:10:40.000000000 +0200 @@ -19,7 +19,7 @@ -struct GimpFileEntry; + GimpFileEntry; GtkWidget* gimp_file_entry_new (const gchar *title, const gchar *filename, gboolean dir_only, @@ -63,7 +63,7 @@ "filename-changed" - void user_function (GimpFileEntry *, + void user_function (GimpFileEntry *arg0, gpointer user_data); @@ -83,7 +83,7 @@ the filename listbox of the GtkFileSelection dialog will be hidden. -If you specify check_valid as TRUE in gimp_file_entry_new() +If you specify check_valid as TRUE in gimp_file_entry_new() the entered filename will be checked for validity and a pixmap will be shown which indicates if the file exists or not. @@ -96,8 +96,8 @@ Details -<anchor id="GimpFileEntry-struct"/>struct GimpFileEntry -GimpFileEntrystruct GimpFileEntry; +<anchor id="GimpFileEntry-struct"/>GimpFileEntry +GimpFileEntrytypedef struct _GimpFileEntry GimpFileEntry; @@ -125,7 +125,7 @@ TRUE if the widget should check if the entered file really exists. -Returns : A pointer to the new GimpFileEntry widget. +Returns : A pointer to the new GimpFileEntry widget. @@ -139,7 +139,7 @@ entry : The file entry you want to know the filename from. -Returns : The file or directory the user has entered. +Returns : The file or directory the user has entered. @@ -166,7 +166,7 @@ Signals <anchor id="GimpFileEntry-filename-changed"/>The "filename-changed" signal -void user_function (GimpFileEntry *, +void user_function (GimpFileEntry *arg0, gpointer user_data); This signal is emitted whenever the user changes the filename. diff -uraN gimp-2.2.4/devel-docs/libgimpwidgets/xml/gimpframe.xml gimp-2.2.5/devel-docs/libgimpwidgets/xml/gimpframe.xml --- gimp-2.2.4/devel-docs/libgimpwidgets/xml/gimpframe.xml 2005-02-22 23:13:30.000000000 +0100 +++ gimp-2.2.5/devel-docs/libgimpwidgets/xml/gimpframe.xml 2005-04-09 23:10:40.000000000 +0200 @@ -19,7 +19,7 @@ -struct GimpFrame; + GimpFrame; GtkWidget* gimp_frame_new (const gchar *label); @@ -55,8 +55,8 @@ Style Properties - "label-bold" gboolean : Read - "label-spacing" gint : Read + "label-bold" gboolean : Read + "label-spacing" gint : Read @@ -72,14 +72,14 @@ Details -<anchor id="GimpFrame-struct"/>struct GimpFrame -GimpFramestruct GimpFrame; +<anchor id="GimpFrame-struct"/>GimpFrame +GimpFrametypedef struct _GimpFrame GimpFrame; <anchor id="gimp-frame-new"/>gimp_frame_new () -gimp_frame_newGtkWidget* gimp_frame_new (const gchar *label); +gimp_frame_newGtkWidget* 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 @@ -92,7 +92,7 @@ label : text to set as the frame's title label (or NULL for no title) -Returns : a new GimpFrame widget +Returns : a new GimpFrame widget Since GIMP 2.2 @@ -101,17 +101,16 @@ Style Properties - -"label-bold" (gboolean : Read) - - - -"label-spacing" (gint : Read) - - - +<anchor id="GimpFrame--label-bold"/>The "<literal>label-bold</literal>" style property + "label-bold" gboolean : Read +Default value: TRUE + +<anchor id="GimpFrame--label-spacing"/>The "<literal>label-spacing</literal>" style property + "label-spacing" gint : Read +Allowed values: >= 0 +Default value: 6 + - diff -uraN gimp-2.2.4/devel-docs/libgimpwidgets/xml/gimphelpui.xml gimp-2.2.5/devel-docs/libgimpwidgets/xml/gimphelpui.xml --- gimp-2.2.4/devel-docs/libgimpwidgets/xml/gimphelpui.xml 2005-02-22 23:13:30.000000000 +0100 +++ gimp-2.2.5/devel-docs/libgimpwidgets/xml/gimphelpui.xml 2005-04-09 23:10:40.000000000 +0200 @@ -22,7 +22,7 @@ void (*GimpHelpFunc) (const gchar *help_id, gpointer help_data); -#define GIMP_HELP_ID +#define GIMP_HELP_ID void gimp_help_enable_tooltips (void); void gimp_help_disable_tooltips (void); void gimp_standard_help_func (const gchar *help_id, @@ -92,7 +92,7 @@ -<anchor id="GIMP-HELP-ID-CAPS"/>GIMP_HELP_ID +<anchor id="GIMP-HELP-ID--CAPS"/>GIMP_HELP_ID GIMP_HELP_ID#define GIMP_HELP_ID (gimp_help_id_quark ()) @@ -169,7 +169,7 @@ tooltip. -This function can be called with NULL for tooltip. Use this feature +This function can be called with NULL for tooltip. Use this feature if you want to set a help link for a widget which shouldn't have a visible tooltip. diff -uraN gimp-2.2.4/devel-docs/libgimpwidgets/xml/gimpintcombobox.xml gimp-2.2.5/devel-docs/libgimpwidgets/xml/gimpintcombobox.xml --- gimp-2.2.4/devel-docs/libgimpwidgets/xml/gimpintcombobox.xml 2005-02-22 23:13:30.000000000 +0100 +++ gimp-2.2.5/devel-docs/libgimpwidgets/xml/gimpintcombobox.xml 2005-04-09 23:10:40.000000000 +0200 @@ -19,7 +19,7 @@ -struct GimpIntComboBox; + GimpIntComboBox; GtkWidget* gimp_int_combo_box_new (const gchar *first_label, gint first_value, ...); @@ -65,7 +65,7 @@ Implemented Interfaces GimpIntComboBox implements - AtkImplementorIface and GtkCellLayout. + AtkImplementorIface, GtkCellEditable and GtkCellLayout. @@ -83,14 +83,14 @@ Details -<anchor id="GimpIntComboBox-struct"/>struct GimpIntComboBox -GimpIntComboBoxstruct GimpIntComboBox; +<anchor id="GimpIntComboBox-struct"/>GimpIntComboBox +GimpIntComboBoxtypedef struct _GimpIntComboBox GimpIntComboBox; <anchor id="gimp-int-combo-box-new"/>gimp_int_combo_box_new () -gimp_int_combo_box_newGtkWidget* gimp_int_combo_box_new (const gchar *first_label, +gimp_int_combo_box_newGtkWidget* gimp_int_combo_box_new (const gchar *first_label, gint first_value, ...); @@ -109,14 +109,14 @@ ... : a NULL terminated list of more label, value pairs -Returns : a new GimpIntComboBox. +Returns : a new GimpIntComboBox. Since GIMP 2.2 <anchor id="gimp-int-combo-box-new-valist"/>gimp_int_combo_box_new_valist () -gimp_int_combo_box_new_valistGtkWidget* gimp_int_combo_box_new_valist (const gchar *first_label, +gimp_int_combo_box_new_valistGtkWidget* gimp_int_combo_box_new_valist (const gchar *first_label, gint first_value, va_list values); @@ -134,14 +134,14 @@ values : a va_list with more values -Returns : a new GimpIntComboBox. +Returns : a new GimpIntComboBox. Since GIMP 2.2 <anchor id="gimp-int-combo-box-new-array"/>gimp_int_combo_box_new_array () -gimp_int_combo_box_new_arrayGtkWidget* gimp_int_combo_box_new_array (gint n_values, +gimp_int_combo_box_new_arrayGtkWidget* 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. @@ -155,14 +155,14 @@ labels : an array of labels (array length must be n_values) -Returns : a new GimpIntComboBox. +Returns : a new GimpIntComboBox. Since GIMP 2.2 <anchor id="gimp-int-combo-box-prepend"/>gimp_int_combo_box_prepend () -gimp_int_combo_box_prependvoid gimp_int_combo_box_prepend (GimpIntComboBox *combo_box, +gimp_int_combo_box_prependvoid gimp_int_combo_box_prepend (GimpIntComboBox *combo_box, ...); This function provides a convenient way to prepend items to a @@ -184,7 +184,7 @@ <anchor id="gimp-int-combo-box-append"/>gimp_int_combo_box_append () -gimp_int_combo_box_appendvoid gimp_int_combo_box_append (GimpIntComboBox *combo_box, +gimp_int_combo_box_appendvoid gimp_int_combo_box_append (GimpIntComboBox *combo_box, ...); This function provides a convenient way to append items to a @@ -206,7 +206,7 @@ <anchor id="gimp-int-combo-box-set-active"/>gimp_int_combo_box_set_active () -gimp_int_combo_box_set_activegboolean gimp_int_combo_box_set_active (GimpIntComboBox *combo_box, +gimp_int_combo_box_set_activegboolean 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 @@ -220,7 +220,7 @@ value : an integer value -Returns : TRUE on success or FALSE if there was no item for +Returns : TRUE on success or FALSE if there was no item for this value. @@ -228,7 +228,7 @@ <anchor id="gimp-int-combo-box-get-active"/>gimp_int_combo_box_get_active () -gimp_int_combo_box_get_activegboolean gimp_int_combo_box_get_active (GimpIntComboBox *combo_box, +gimp_int_combo_box_get_activegboolean gimp_int_combo_box_get_active (GimpIntComboBox *combo_box, gint *value); Retrieves the value of the selected (active) item in the combo_box. @@ -241,7 +241,7 @@ value : return location for the integer value -Returns : TRUE if value has been set or FALSE if no item was +Returns : TRUE if value has been set or FALSE if no item was active. @@ -249,7 +249,7 @@ <anchor id="gimp-int-combo-box-connect"/>gimp_int_combo_box_connect () -gimp_int_combo_box_connectgulong gimp_int_combo_box_connect (GimpIntComboBox *combo_box, +gimp_int_combo_box_connectgulong gimp_int_combo_box_connect (GimpIntComboBox *combo_box, gint value, GCallback callback, gpointer data); @@ -279,7 +279,7 @@ data : a pointer passed as data to g_signal_connect() -Returns : the signal handler ID as returned by g_signal_connect() +Returns : the signal handler ID as returned by g_signal_connect() Since GIMP 2.2 diff -uraN gimp-2.2.4/devel-docs/libgimpwidgets/xml/gimpintstore.xml gimp-2.2.5/devel-docs/libgimpwidgets/xml/gimpintstore.xml --- gimp-2.2.4/devel-docs/libgimpwidgets/xml/gimpintstore.xml 2005-02-22 23:13:30.000000000 +0100 +++ gimp-2.2.5/devel-docs/libgimpwidgets/xml/gimpintstore.xml 2005-04-09 23:10:40.000000000 +0200 @@ -19,7 +19,7 @@ -struct GimpIntStore; + GimpIntStore; enum GimpIntStoreColumns; GtkListStore* gimp_int_store_new (void); gboolean gimp_int_store_lookup_by_value (GtkTreeModel *model, @@ -64,8 +64,8 @@ Details -<anchor id="GimpIntStore-struct"/>struct GimpIntStore -GimpIntStorestruct GimpIntStore; +<anchor id="GimpIntStore-struct"/>GimpIntStore +GimpIntStoretypedef struct _GimpIntStore GimpIntStore; @@ -86,7 +86,7 @@ <anchor id="gimp-int-store-new"/>gimp_int_store_new () -gimp_int_store_newGtkListStore* gimp_int_store_new (void); +gimp_int_store_newGtkListStore* 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 @@ -94,14 +94,14 @@ -Returns : a new GimpIntStore. +Returns : a new GimpIntStore. Since GIMP 2.2 <anchor id="gimp-int-store-lookup-by-value"/>gimp_int_store_lookup_by_value () -gimp_int_store_lookup_by_valuegboolean gimp_int_store_lookup_by_value (GtkTreeModel *model, +gimp_int_store_lookup_by_valuegboolean gimp_int_store_lookup_by_value (GtkTreeModel *model, gint value, GtkTreeIter *iter); @@ -118,7 +118,7 @@ iter : return location for the iter of the given value -Returns : TRUE if the value has been located and iter is +Returns : TRUE if the value has been located and iter is valid, FALSE otherwise. diff -uraN gimp-2.2.4/devel-docs/libgimpwidgets/xml/gimpmemsizeentry.xml gimp-2.2.5/devel-docs/libgimpwidgets/xml/gimpmemsizeentry.xml --- gimp-2.2.4/devel-docs/libgimpwidgets/xml/gimpmemsizeentry.xml 2005-02-22 23:13:30.000000000 +0100 +++ gimp-2.2.5/devel-docs/libgimpwidgets/xml/gimpmemsizeentry.xml 2005-04-09 23:10:40.000000000 +0200 @@ -19,7 +19,7 @@ -struct GimpMemsizeEntry; + GimpMemsizeEntry; GtkWidget* gimp_memsize_entry_new (guint64 value, guint64 lower, guint64 upper); @@ -80,8 +80,8 @@ Details -<anchor id="GimpMemsizeEntry-struct"/>struct GimpMemsizeEntry -GimpMemsizeEntrystruct GimpMemsizeEntry; +<anchor id="GimpMemsizeEntry-struct"/>GimpMemsizeEntry +GimpMemsizeEntrytypedef struct _GimpMemsizeEntry GimpMemsizeEntry; The GimpSizeEntry struct is considered private. @@ -105,7 +105,7 @@ upper : the upper limit for the value (in Bytes) -Returns : Pointer to the new GimpMemsizeEntry. +Returns : Pointer to the new GimpMemsizeEntry. @@ -136,7 +136,7 @@ entry : a GimpMemsizeEntry -Returns : the current value of entry (in Bytes). +Returns : the current value of entry (in Bytes). diff -uraN gimp-2.2.4/devel-docs/libgimpwidgets/xml/gimpoffsetarea.xml gimp-2.2.5/devel-docs/libgimpwidgets/xml/gimpoffsetarea.xml --- gimp-2.2.4/devel-docs/libgimpwidgets/xml/gimpoffsetarea.xml 2005-02-22 23:13:30.000000000 +0100 +++ gimp-2.2.5/devel-docs/libgimpwidgets/xml/gimpoffsetarea.xml 2005-04-09 23:10:40.000000000 +0200 @@ -19,7 +19,7 @@ -struct GimpOffsetArea; + GimpOffsetArea; GtkWidget* gimp_offset_area_new (gint orig_width, gint orig_height); void gimp_offset_area_set_size (GimpOffsetArea *offset_area, @@ -82,8 +82,8 @@ Details -<anchor id="GimpOffsetArea-struct"/>struct GimpOffsetArea -GimpOffsetAreastruct GimpOffsetArea; +<anchor id="GimpOffsetArea-struct"/>GimpOffsetArea +GimpOffsetAreatypedef struct _GimpOffsetArea GimpOffsetArea; @@ -104,7 +104,7 @@ orig_height : the original height -Returns : the new GimpOffsetArea widget. +Returns : the new GimpOffsetArea widget. @@ -152,7 +152,7 @@ <anchor id="gimp-offset-area-set-pixbuf"/>gimp_offset_area_set_pixbuf () -gimp_offset_area_set_pixbufvoid gimp_offset_area_set_pixbuf (GimpOffsetArea *offset_area, +gimp_offset_area_set_pixbufvoid gimp_offset_area_set_pixbuf (GimpOffsetArea *offset_area, GdkPixbuf *pixbuf); Sets the pixbuf which represents the original image/drawable which diff -uraN gimp-2.2.4/devel-docs/libgimpwidgets/xml/gimpoldwidgets.xml gimp-2.2.5/devel-docs/libgimpwidgets/xml/gimpoldwidgets.xml --- gimp-2.2.4/devel-docs/libgimpwidgets/xml/gimpoldwidgets.xml 2005-02-22 23:13:30.000000000 +0100 +++ gimp-2.2.5/devel-docs/libgimpwidgets/xml/gimpoldwidgets.xml 2005-04-09 23:10:40.000000000 +0200 @@ -73,7 +73,7 @@ Details <anchor id="gimp-int-option-menu-new"/>gimp_int_option_menu_new () -gimp_int_option_menu_newGtkWidget* gimp_int_option_menu_new (gboolean menu_only, +gimp_int_option_menu_newGtkWidget* gimp_int_option_menu_new (gboolean menu_only, GCallback menu_item_callback, gpointer menu_item_callback_data, gint initial, @@ -105,12 +105,12 @@ ... : A NULL-terminated va_list describing the menu items. -Returns : A GtkOptionMenu or a GtkMenu (depending on menu_only). +Returns : A GtkOptionMenu or a GtkMenu (depending on menu_only). <anchor id="gimp-int-option-menu-set-history"/>gimp_int_option_menu_set_history () -gimp_int_option_menu_set_historyvoid gimp_int_option_menu_set_history +gimp_int_option_menu_set_historyvoid gimp_int_option_menu_set_history (GtkOptionMenu *option_menu, gint item_data); gimp_int_option_menu_set_history is deprecated and should not be used in newly-written code. @@ -132,7 +132,7 @@ <anchor id="GimpIntOptionMenuSensitivityCallback"/>GimpIntOptionMenuSensitivityCallback () -GimpIntOptionMenuSensitivityCallbackgboolean (*GimpIntOptionMenuSensitivityCallback) +GimpIntOptionMenuSensitivityCallbackgboolean (*GimpIntOptionMenuSensitivityCallback) (gint item_data, gpointer callback_data); GimpIntOptionMenuSensitivityCallback is deprecated and should not be used in newly-written code. @@ -145,14 +145,14 @@ callback_data : -Returns : +Returns : <anchor id="gimp-int-option-menu-set-sensitive"/>gimp_int_option_menu_set_sensitive () -gimp_int_option_menu_set_sensitivevoid gimp_int_option_menu_set_sensitive +gimp_int_option_menu_set_sensitivevoid gimp_int_option_menu_set_sensitive (GtkOptionMenu *option_menu, GimpIntOptionMenuSensitivityCallback callback, gpointer callback_data); @@ -180,7 +180,7 @@ <anchor id="gimp-option-menu-new"/>gimp_option_menu_new () -gimp_option_menu_newGtkWidget* gimp_option_menu_new (gboolean menu_only, +gimp_option_menu_newGtkWidget* gimp_option_menu_new (gboolean menu_only, ...); gimp_option_menu_new is deprecated and should not be used in newly-written code. @@ -194,12 +194,12 @@ ... : A NULL-terminated va_list describing the menu items. -Returns : A GtkOptionMenu or a GtkMenu (depending on menu_only). +Returns : A GtkOptionMenu or a GtkMenu (depending on menu_only). <anchor id="gimp-option-menu-new2"/>gimp_option_menu_new2 () -gimp_option_menu_new2GtkWidget* gimp_option_menu_new2 (gboolean menu_only, +gimp_option_menu_new2GtkWidget* gimp_option_menu_new2 (gboolean menu_only, GCallback menu_item_callback, gpointer menu_item_callback_data, gpointer initial, @@ -227,12 +227,12 @@ ... : A NULL-terminated va_list describing the menu items. -Returns : A GtkOptionMenu or a GtkMenu (depending on menu_only). +Returns : A GtkOptionMenu or a GtkMenu (depending on menu_only). <anchor id="gimp-option-menu-set-history"/>gimp_option_menu_set_history () -gimp_option_menu_set_historyvoid gimp_option_menu_set_history (GtkOptionMenu *option_menu, +gimp_option_menu_set_historyvoid gimp_option_menu_set_history (GtkOptionMenu *option_menu, gpointer item_data); gimp_option_menu_set_history is deprecated and should not be used in newly-written code. @@ -253,7 +253,7 @@ <anchor id="GimpOptionMenuSensitivityCallback"/>GimpOptionMenuSensitivityCallback () -GimpOptionMenuSensitivityCallbackgboolean (*GimpOptionMenuSensitivityCallback) +GimpOptionMenuSensitivityCallbackgboolean (*GimpOptionMenuSensitivityCallback) (gpointer item_data, gpointer callback_data); GimpOptionMenuSensitivityCallback is deprecated and should not be used in newly-written code. @@ -266,14 +266,14 @@ callback_data : -Returns : +Returns : <anchor id="gimp-option-menu-set-sensitive"/>gimp_option_menu_set_sensitive () -gimp_option_menu_set_sensitivevoid gimp_option_menu_set_sensitive (GtkOptionMenu *option_menu, +gimp_option_menu_set_sensitivevoid gimp_option_menu_set_sensitive (GtkOptionMenu *option_menu, GimpOptionMenuSensitivityCallback callback, gpointer callback_data); gimp_option_menu_set_sensitive is deprecated and should not be used in newly-written code. @@ -298,7 +298,7 @@ <anchor id="gimp-menu-item-update"/>gimp_menu_item_update () -gimp_menu_item_updatevoid gimp_menu_item_update (GtkWidget *widget, +gimp_menu_item_updatevoid gimp_menu_item_update (GtkWidget *widget, gpointer data); gimp_menu_item_update is deprecated and should not be used in newly-written code. diff -uraN gimp-2.2.4/devel-docs/libgimpwidgets/xml/gimppatheditor.xml gimp-2.2.5/devel-docs/libgimpwidgets/xml/gimppatheditor.xml --- gimp-2.2.4/devel-docs/libgimpwidgets/xml/gimppatheditor.xml 2005-02-22 23:13:30.000000000 +0100 +++ gimp-2.2.5/devel-docs/libgimpwidgets/xml/gimppatheditor.xml 2005-04-09 23:10:40.000000000 +0200 @@ -19,7 +19,7 @@ -struct GimpPathEditor; + GimpPathEditor; GtkWidget* gimp_path_editor_new (const gchar *filesel_title, const gchar *path); gchar* gimp_path_editor_get_path (GimpPathEditor *editor); @@ -73,10 +73,10 @@ "path-changed" - void user_function (GimpPathEditor *, + void user_function (GimpPathEditor *arg0, gpointer user_data); "writable-changed" - void user_function (GimpPathEditor *, + void user_function (GimpPathEditor *arg0, gpointer user_data); @@ -105,8 +105,8 @@ Details -<anchor id="GimpPathEditor-struct"/>struct GimpPathEditor -GimpPathEditorstruct GimpPathEditor; +<anchor id="GimpPathEditor-struct"/>GimpPathEditor +GimpPathEditortypedef struct _GimpPathEditor GimpPathEditor; @@ -119,7 +119,7 @@ The elements of the initial search path must be separated with the -G_SEARCHPATH_SEPARATOR character. +G_SEARCHPATH_SEPARATOR character. @@ -130,7 +130,7 @@ path : The initial search path. -Returns : A pointer to the new GimpPathEditor widget. +Returns : A pointer to the new GimpPathEditor widget. @@ -138,7 +138,7 @@ gimp_path_editor_get_pathgchar* gimp_path_editor_get_path (GimpPathEditor *editor); The elements of the returned search path string are separated with the -G_SEARCHPATH_SEPARATOR character. +G_SEARCHPATH_SEPARATOR character. Note that you have to g_free() the returned string. @@ -148,7 +148,7 @@ editor : The path editor you want to get the search path from. -Returns : The search path the user has selected in the path editor. +Returns : The search path the user has selected in the path editor. @@ -157,7 +157,7 @@ const gchar *path); The elements of the initial search path must be separated with the -G_SEARCHPATH_SEPARATOR character. +G_SEARCHPATH_SEPARATOR character. @@ -178,7 +178,7 @@ editor : -Returns : +Returns : @@ -214,7 +214,7 @@ directory : -Returns : +Returns : @@ -246,7 +246,7 @@ Signals <anchor id="GimpPathEditor-path-changed"/>The "path-changed" signal -void user_function (GimpPathEditor *, +void user_function (GimpPathEditor *arg0, gpointer user_data); This signal is emitted whenever the user adds, deletes, modifies @@ -257,7 +257,7 @@ user_data : user data set when the signal handler was connected. <anchor id="GimpPathEditor-writable-changed"/>The "writable-changed" signal -void user_function (GimpPathEditor *, +void user_function (GimpPathEditor *arg0, gpointer user_data); This signal is emitted whenever the "writable" column of a directory @@ -278,7 +278,7 @@ GimpFileEntry -G_SEARCHPATH_SEPARATOR +G_SEARCHPATH_SEPARATOR diff -uraN gimp-2.2.4/devel-docs/libgimpwidgets/xml/gimppickbutton.xml gimp-2.2.5/devel-docs/libgimpwidgets/xml/gimppickbutton.xml --- gimp-2.2.4/devel-docs/libgimpwidgets/xml/gimppickbutton.xml 2005-02-22 23:13:30.000000000 +0100 +++ gimp-2.2.5/devel-docs/libgimpwidgets/xml/gimppickbutton.xml 2005-04-09 23:10:40.000000000 +0200 @@ -19,7 +19,7 @@ -struct GimpPickButton; + GimpPickButton; GtkWidget* gimp_pick_button_new (void); @@ -76,8 +76,8 @@ Details -<anchor id="GimpPickButton-struct"/>struct GimpPickButton -GimpPickButtonstruct GimpPickButton; +<anchor id="GimpPickButton-struct"/>GimpPickButton +GimpPickButtontypedef struct _GimpPickButton GimpPickButton; @@ -89,7 +89,7 @@ -Returns : A new GimpPickButton widget. +Returns : A new GimpPickButton widget. diff -uraN gimp-2.2.4/devel-docs/libgimpwidgets/xml/gimppixmap.xml gimp-2.2.5/devel-docs/libgimpwidgets/xml/gimppixmap.xml --- gimp-2.2.4/devel-docs/libgimpwidgets/xml/gimppixmap.xml 2005-02-22 23:13:30.000000000 +0100 +++ gimp-2.2.5/devel-docs/libgimpwidgets/xml/gimppixmap.xml 2005-04-09 23:10:40.000000000 +0200 @@ -19,7 +19,7 @@ -struct GimpPixmap; + GimpPixmap; GtkWidget* gimp_pixmap_new (gchar **xpm_data); void gimp_pixmap_set (GimpPixmap *pixmap, gchar **xpm_data); @@ -74,15 +74,15 @@ Details -<anchor id="GimpPixmap-struct"/>struct GimpPixmap -GimpPixmapstruct GimpPixmap; +<anchor id="GimpPixmap-struct"/>GimpPixmap +GimpPixmaptypedef struct _GimpPixmap GimpPixmap; GimpPixmap is deprecated and should not be used in newly-written code. <anchor id="gimp-pixmap-new"/>gimp_pixmap_new () -gimp_pixmap_newGtkWidget* gimp_pixmap_new (gchar **xpm_data); +gimp_pixmap_newGtkWidget* gimp_pixmap_new (gchar **xpm_data); gimp_pixmap_new is deprecated and should not be used in newly-written code. Creates a new GimpPixmap widget. @@ -92,12 +92,12 @@ xpm_data : A pointer to a XPM data structure as found in XPM files. -Returns : A pointer to the new GimpPixmap widget. +Returns : A pointer to the new GimpPixmap widget. <anchor id="gimp-pixmap-set"/>gimp_pixmap_set () -gimp_pixmap_setvoid gimp_pixmap_set (GimpPixmap *pixmap, +gimp_pixmap_setvoid gimp_pixmap_set (GimpPixmap *pixmap, gchar **xpm_data); gimp_pixmap_set is deprecated and should not be used in newly-written code. diff -uraN gimp-2.2.4/devel-docs/libgimpwidgets/xml/gimppreviewarea.xml gimp-2.2.5/devel-docs/libgimpwidgets/xml/gimppreviewarea.xml --- gimp-2.2.4/devel-docs/libgimpwidgets/xml/gimppreviewarea.xml 2005-02-22 23:13:30.000000000 +0100 +++ gimp-2.2.5/devel-docs/libgimpwidgets/xml/gimppreviewarea.xml 2005-04-09 23:10:40.000000000 +0200 @@ -19,7 +19,7 @@ -struct GimpPreviewArea; + GimpPreviewArea; GtkWidget* gimp_preview_area_new (void); void gimp_preview_area_draw (GimpPreviewArea *area, gint x, @@ -103,8 +103,8 @@ Properties - "check-size" GimpCheckSize : Read / Write - "check-type" GimpCheckType : Read / Write + "check-size" GimpCheckSize : Read / Write + "check-type" GimpCheckType : Read / Write @@ -120,8 +120,8 @@ Details -<anchor id="GimpPreviewArea-struct"/>struct GimpPreviewArea -GimpPreviewAreastruct GimpPreviewArea; +<anchor id="GimpPreviewArea-struct"/>GimpPreviewArea +GimpPreviewAreatypedef struct _GimpPreviewArea GimpPreviewArea; @@ -133,7 +133,7 @@ -Returns : a new GimpPreviewArea widget. +Returns : a new GimpPreviewArea widget. Since GIMP 2.2 @@ -348,7 +348,7 @@ <anchor id="gimp-preview-area-set-offsets"/>gimp_preview_area_set_offsets () -gimp_preview_area_set_offsetsvoid gimp_preview_area_set_offsets (GimpPreviewArea *area, +gimp_preview_area_set_offsetsvoid gimp_preview_area_set_offsets (GimpPreviewArea *area, gint x, gint y); @@ -395,7 +395,7 @@ <anchor id="gimp-preview-area-set-max-size"/>gimp_preview_area_set_max_size () -gimp_preview_area_set_max_sizevoid gimp_preview_area_set_max_size (GimpPreviewArea *area, +gimp_preview_area_set_max_sizevoid gimp_preview_area_set_max_size (GimpPreviewArea *area, gint width, gint height); @@ -419,7 +419,7 @@ <anchor id="gimp-preview-area-menu-popup"/>gimp_preview_area_menu_popup () -gimp_preview_area_menu_popupvoid gimp_preview_area_menu_popup (GimpPreviewArea *area, +gimp_preview_area_menu_popupvoid gimp_preview_area_menu_popup (GimpPreviewArea *area, GdkEventButton *event); Creates a popup menu that allows to configure the size and type of @@ -439,17 +439,15 @@ Properties - -"check-size" (GimpCheckSize : Read / Write) - - - -"check-type" (GimpCheckType : Read / Write) - - - +<anchor id="GimpPreviewArea--check-size"/>The "<literal>check-size</literal>" property + "check-size" GimpCheckSize : Read / Write +Default value: GIMP_CHECK_SIZE_MEDIUM_CHECKS + +<anchor id="GimpPreviewArea--check-type"/>The "<literal>check-type</literal>" property + "check-type" GimpCheckType : Read / Write +Default value: GIMP_CHECK_TYPE_GRAY_CHECKS + - diff -uraN gimp-2.2.4/devel-docs/libgimpwidgets/xml/gimppreview.xml gimp-2.2.5/devel-docs/libgimpwidgets/xml/gimppreview.xml --- gimp-2.2.4/devel-docs/libgimpwidgets/xml/gimppreview.xml 2005-02-22 23:13:30.000000000 +0100 +++ gimp-2.2.5/devel-docs/libgimpwidgets/xml/gimppreview.xml 2005-04-09 23:10:40.000000000 +0200 @@ -19,7 +19,7 @@ -struct GimpPreview; + GimpPreview; gboolean gimp_preview_get_update (GimpPreview *preview); void gimp_preview_set_update (GimpPreview *preview, gboolean update); @@ -75,14 +75,14 @@ Properties - "update" gboolean : Read / Write / Construct + "update" gboolean : Read / Write / Construct Style Properties - "size" gint : Read + "size" gint : Read @@ -107,14 +107,14 @@ Details -<anchor id="GimpPreview-struct"/>struct GimpPreview -GimpPreviewstruct GimpPreview; +<anchor id="GimpPreview-struct"/>GimpPreview +GimpPreviewtypedef struct _GimpPreview GimpPreview; <anchor id="gimp-preview-get-update"/>gimp_preview_get_update () -gimp_preview_get_updategboolean gimp_preview_get_update (GimpPreview *preview); +gimp_preview_get_updategboolean gimp_preview_get_update (GimpPreview *preview); @@ -123,14 +123,14 @@ preview : a GimpPreview widget -Returns : the state of the "Preview" check button. +Returns : the state of the "Preview" check button. Since GIMP 2.2 <anchor id="gimp-preview-set-update"/>gimp_preview_set_update () -gimp_preview_set_updatevoid gimp_preview_set_update (GimpPreview *preview, +gimp_preview_set_updatevoid gimp_preview_set_update (GimpPreview *preview, gboolean update); Sets the state of the "Preview" check button. @@ -148,7 +148,7 @@ <anchor id="gimp-preview-set-bounds"/>gimp_preview_set_bounds () -gimp_preview_set_boundsvoid gimp_preview_set_bounds (GimpPreview *preview, +gimp_preview_set_boundsvoid gimp_preview_set_bounds (GimpPreview *preview, gint xmin, gint ymin, gint xmax, @@ -179,7 +179,7 @@ <anchor id="gimp-preview-get-size"/>gimp_preview_get_size () -gimp_preview_get_sizevoid gimp_preview_get_size (GimpPreview *preview, +gimp_preview_get_sizevoid gimp_preview_get_size (GimpPreview *preview, gint *width, gint *height); @@ -200,7 +200,7 @@ <anchor id="gimp-preview-get-position"/>gimp_preview_get_position () -gimp_preview_get_positionvoid gimp_preview_get_position (GimpPreview *preview, +gimp_preview_get_positionvoid gimp_preview_get_position (GimpPreview *preview, gint *x, gint *y); @@ -221,7 +221,7 @@ <anchor id="gimp-preview-draw"/>gimp_preview_draw () -gimp_preview_drawvoid gimp_preview_draw (GimpPreview *preview); +gimp_preview_drawvoid 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 @@ -240,7 +240,7 @@ <anchor id="gimp-preview-draw-buffer"/>gimp_preview_draw_buffer () -gimp_preview_draw_buffervoid gimp_preview_draw_buffer (GimpPreview *preview, +gimp_preview_draw_buffervoid gimp_preview_draw_buffer (GimpPreview *preview, const guchar *buffer, gint rowstride); @@ -263,7 +263,7 @@ <anchor id="gimp-preview-invalidate"/>gimp_preview_invalidate () -gimp_preview_invalidatevoid gimp_preview_invalidate (GimpPreview *preview); +gimp_preview_invalidatevoid 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 @@ -286,7 +286,7 @@ <anchor id="gimp-preview-set-default-cursor"/>gimp_preview_set_default_cursor () -gimp_preview_set_default_cursorvoid gimp_preview_set_default_cursor (GimpPreview *preview, +gimp_preview_set_default_cursorvoid gimp_preview_set_default_cursor (GimpPreview *preview, GdkCursor *cursor); Sets the default mouse cursor for the preview. Note that this will @@ -307,23 +307,20 @@ Properties - -"update" (gboolean : Read / Write / Construct) - - - +<anchor id="GimpPreview--update"/>The "<literal>update</literal>" property + "update" gboolean : Read / Write / Construct +Default value: TRUE + - Style Properties - -"size" (gint : Read) - - - +<anchor id="GimpPreview--size"/>The "<literal>size</literal>" style property + "size" gint : Read +Allowed values: [1,1024] +Default value: 150 + - diff -uraN gimp-2.2.4/devel-docs/libgimpwidgets/xml/gimpquerybox.xml gimp-2.2.5/devel-docs/libgimpwidgets/xml/gimpquerybox.xml --- gimp-2.2.4/devel-docs/libgimpwidgets/xml/gimpquerybox.xml 2005-02-22 23:13:30.000000000 +0100 +++ gimp-2.2.5/devel-docs/libgimpwidgets/xml/gimpquerybox.xml 2005-04-09 23:10:40.000000000 +0200 @@ -98,7 +98,7 @@ const gchar *signal, GimpQueryBooleanCallback callback, gpointer data); -#define GIMP_QUERY_BOX_VBOX (qbox) +#define GIMP_QUERY_BOX_VBOX (qbox) @@ -281,7 +281,7 @@ data : The callback's user data. -Returns : A pointer to the new GtkDialog. +Returns : A pointer to the new GtkDialog. @@ -339,7 +339,7 @@ data : The callback's user data. -Returns : A pointer to the new GtkDialog. +Returns : A pointer to the new GtkDialog. @@ -401,7 +401,7 @@ data : The callback's user data. -Returns : A pointer to the new GtkDialog. +Returns : A pointer to the new GtkDialog. @@ -479,7 +479,7 @@ data : The callback's user data. -Returns : A pointer to the new GtkDialog. +Returns : A pointer to the new GtkDialog. @@ -540,11 +540,11 @@ data : The callback's user data. -Returns : A pointer to the new GtkDialog. +Returns : A pointer to the new GtkDialog. -<anchor id="GIMP-QUERY-BOX-VBOX-CAPS"/>GIMP_QUERY_BOX_VBOX() +<anchor id="GIMP-QUERY-BOX-VBOX--CAPS"/>GIMP_QUERY_BOX_VBOX() 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 diff -uraN gimp-2.2.4/devel-docs/libgimpwidgets/xml/gimpscrolledpreview.xml gimp-2.2.5/devel-docs/libgimpwidgets/xml/gimpscrolledpreview.xml --- gimp-2.2.4/devel-docs/libgimpwidgets/xml/gimpscrolledpreview.xml 2005-02-22 23:13:30.000000000 +0100 +++ gimp-2.2.5/devel-docs/libgimpwidgets/xml/gimpscrolledpreview.xml 2005-04-09 23:10:40.000000000 +0200 @@ -19,7 +19,7 @@ -struct GimpScrolledPreview; + GimpScrolledPreview; @@ -42,12 +42,10 @@ Details -<anchor id="GimpScrolledPreview"/>struct GimpScrolledPreview -GimpScrolledPreviewstruct GimpScrolledPreview { - +<anchor id="GimpScrolledPreview"/>GimpScrolledPreview +GimpScrolledPreviewtypedef struct { GimpPreview parent_instance; - -}; +} GimpScrolledPreview; diff -uraN gimp-2.2.4/devel-docs/libgimpwidgets/xml/gimpsizeentry.xml gimp-2.2.5/devel-docs/libgimpwidgets/xml/gimpsizeentry.xml --- gimp-2.2.4/devel-docs/libgimpwidgets/xml/gimpsizeentry.xml 2005-02-22 23:13:30.000000000 +0100 +++ gimp-2.2.5/devel-docs/libgimpwidgets/xml/gimpsizeentry.xml 2005-04-09 23:10:40.000000000 +0200 @@ -19,8 +19,8 @@ -struct GimpSizeEntry; -struct GimpSizeEntryField; + GimpSizeEntry; + GimpSizeEntryField; enum GimpSizeEntryUpdatePolicy; GtkWidget* gimp_size_entry_new (gint number_of_fields, GimpUnit unit, @@ -142,7 +142,7 @@ For each field, there can be one or two GtkSpinButton's to enter -"value" and "reference value". If you specify show_refval as FALSE +"value" and "reference value". If you specify show_refval as FALSE in gimp_size_entry_new() there will be only one GtkSpinButton and the GimpUnitMenu will contain an item for selecting GIMP_UNIT_PIXEL. @@ -158,14 +158,14 @@ Details -<anchor id="GimpSizeEntry-struct"/>struct GimpSizeEntry -GimpSizeEntrystruct GimpSizeEntry; +<anchor id="GimpSizeEntry-struct"/>GimpSizeEntry +GimpSizeEntrytypedef struct _GimpSizeEntry GimpSizeEntry; -<anchor id="GimpSizeEntryField"/>struct GimpSizeEntryField -GimpSizeEntryFieldstruct GimpSizeEntryField; +<anchor id="GimpSizeEntryField"/>GimpSizeEntryField +GimpSizeEntryFieldtypedef struct _GimpSizeEntryField GimpSizeEntryField; @@ -261,7 +261,7 @@ How the automatic pixel <-> real-world-unit calculations should be done. -Returns : A Pointer to the new GimpSizeEntry widget. +Returns : A Pointer to the new GimpSizeEntry widget. @@ -317,7 +317,7 @@ alignment : The horizontal alignment of the label. -Returns : A pointer to the new GtkLabel widget. +Returns : A pointer to the new GtkLabel widget. @@ -331,11 +331,11 @@ The resolution passed will be clamped to fit in -[GIMP_MIN_RESOLUTION..GIMP_MAX_RESOLUTION]. +[GIMP_MIN_RESOLUTION..GIMP_MAX_RESOLUTION]. This function does nothing if the GimpSizeEntryUpdatePolicy specified in -gimp_size_entry_new() doesn't equal to GIMP_SIZE_ENTRY_UPDATE_SIZE. +gimp_size_entry_new() doesn't equal to GIMP_SIZE_ENTRY_UPDATE_SIZE. @@ -449,7 +449,7 @@ field : The index of the field you want to know the value of. -Returns : The value of the chosen field. +Returns : The value of the chosen field. @@ -525,8 +525,8 @@ If you don't specify this value explicitly, the reference value's number -of digits will equal to 0 for GIMP_SIZE_ENTRY_UPDATE_SIZE and to 2 for -GIMP_SIZE_ENTRY_UPDATE_RESOLUTION. +of digits will equal to 0 for GIMP_SIZE_ENTRY_UPDATE_SIZE and to 2 for +GIMP_SIZE_ENTRY_UPDATE_RESOLUTION. @@ -561,7 +561,7 @@ field : The index of the field you want to know the reference value of. -Returns : The reference value of the chosen field. +Returns : The reference value of the chosen field. @@ -601,7 +601,7 @@ gse : The sizeentry you want to know the unit of. -Returns : The sizeentry's unit. +Returns : The sizeentry's unit. @@ -671,7 +671,7 @@ field : the index of the widget you want to get a pointer to -Returns : a GtkWidget pointer that you can attach a tooltip to. +Returns : a GtkWidget pointer that you can attach a tooltip to. diff -uraN gimp-2.2.4/devel-docs/libgimpwidgets/xml/gimpstock.xml gimp-2.2.5/devel-docs/libgimpwidgets/xml/gimpstock.xml --- gimp-2.2.4/devel-docs/libgimpwidgets/xml/gimpstock.xml 2005-02-22 23:13:30.000000000 +0100 +++ gimp-2.2.5/devel-docs/libgimpwidgets/xml/gimpstock.xml 2005-04-09 23:10:40.000000000 +0200 @@ -21,184 +21,184 @@ void gimp_stock_init (void); -#define GIMP_STOCK_ANCHOR -#define GIMP_STOCK_CENTER -#define GIMP_STOCK_DUPLICATE -#define GIMP_STOCK_EDIT -#define GIMP_STOCK_RESET -#define GIMP_STOCK_CLOSE -#define GIMP_STOCK_MENU_LEFT -#define GIMP_STOCK_MENU_RIGHT -#define GIMP_STOCK_MOVE_TO_SCREEN -#define GIMP_STOCK_INVERT -#define GIMP_STOCK_LAYER_TO_IMAGESIZE -#define GIMP_STOCK_MERGE_DOWN -#define GIMP_STOCK_NAVIGATION -#define GIMP_STOCK_PASTE_AS_NEW -#define GIMP_STOCK_PASTE_INTO -#define GIMP_STOCK_PATH_STROKE -#define GIMP_STOCK_PLUGIN -#define GIMP_STOCK_QMASK_OFF -#define GIMP_STOCK_QMASK_ON -#define GIMP_STOCK_HISTOGRAM -#define GIMP_STOCK_HISTOGRAM_LINEAR -#define GIMP_STOCK_HISTOGRAM_LOGARITHMIC -#define GIMP_STOCK_RESHOW_FILTER -#define GIMP_STOCK_RESIZE -#define GIMP_STOCK_FLIP_HORIZONTAL -#define GIMP_STOCK_FLIP_VERTICAL -#define GIMP_STOCK_ROTATE_180 -#define GIMP_STOCK_ROTATE_270 -#define GIMP_STOCK_ROTATE_90 -#define GIMP_STOCK_SCALE -#define GIMP_STOCK_LINKED -#define GIMP_STOCK_VISIBLE -#define GIMP_STOCK_LIST -#define GIMP_STOCK_GRID -#define GIMP_STOCK_PORTRAIT -#define GIMP_STOCK_LANDSCAPE -#define GIMP_STOCK_VIDEO -#define GIMP_STOCK_WEB -#define GIMP_STOCK_IMAGE -#define GIMP_STOCK_LAYER -#define GIMP_STOCK_LAYER_MASK -#define GIMP_STOCK_CHANNEL -#define GIMP_STOCK_CHANNEL_RED -#define GIMP_STOCK_CHANNEL_GREEN -#define GIMP_STOCK_CHANNEL_BLUE -#define GIMP_STOCK_CHANNEL_GRAY -#define GIMP_STOCK_CHANNEL_INDEXED -#define GIMP_STOCK_CHANNEL_ALPHA -#define GIMP_STOCK_PATH -#define GIMP_STOCK_TEXT_LAYER -#define GIMP_STOCK_FLOATING_SELECTION -#define GIMP_STOCK_TEMPLATE -#define GIMP_STOCK_IMAGES -#define GIMP_STOCK_LAYERS -#define GIMP_STOCK_CHANNELS -#define GIMP_STOCK_PATHS -#define GIMP_STOCK_INDEXED_PALETTE -#define GIMP_STOCK_SHAPE_CIRCLE -#define GIMP_STOCK_SHAPE_SQUARE -#define GIMP_STOCK_SHAPE_DIAMOND -#define GIMP_STOCK_CAP_BUTT -#define GIMP_STOCK_CAP_ROUND -#define GIMP_STOCK_CAP_SQUARE -#define GIMP_STOCK_JOIN_MITER -#define GIMP_STOCK_JOIN_ROUND -#define GIMP_STOCK_JOIN_BEVEL -#define GIMP_STOCK_SELECTION -#define GIMP_STOCK_SELECTION_ALL -#define GIMP_STOCK_SELECTION_NONE -#define GIMP_STOCK_SELECTION_GROW -#define GIMP_STOCK_SELECTION_SHRINK -#define GIMP_STOCK_SELECTION_BORDER -#define GIMP_STOCK_SELECTION_ADD -#define GIMP_STOCK_SELECTION_SUBTRACT -#define GIMP_STOCK_SELECTION_REPLACE -#define GIMP_STOCK_SELECTION_INTERSECT -#define GIMP_STOCK_SELECTION_STROKE -#define GIMP_STOCK_SELECTION_TO_CHANNEL -#define GIMP_STOCK_SELECTION_TO_PATH -#define GIMP_STOCK_GRADIENT_LINEAR -#define GIMP_STOCK_GRADIENT_BILINEAR -#define GIMP_STOCK_GRADIENT_RADIAL -#define GIMP_STOCK_GRADIENT_SQUARE -#define GIMP_STOCK_GRADIENT_CONICAL_SYMMETRIC -#define GIMP_STOCK_GRADIENT_CONICAL_ASYMMETRIC -#define GIMP_STOCK_GRADIENT_SHAPEBURST_SPHERICAL -#define GIMP_STOCK_GRADIENT_SHAPEBURST_ANGULAR -#define GIMP_STOCK_GRADIENT_SHAPEBURST_DIMPLED -#define GIMP_STOCK_GRADIENT_SPIRAL_CLOCKWISE -#define GIMP_STOCK_GRADIENT_SPIRAL_ANTICLOCKWISE -#define GIMP_STOCK_GRAVITY_NORTH_WEST -#define GIMP_STOCK_GRAVITY_NORTH -#define GIMP_STOCK_GRAVITY_NORTH_EAST -#define GIMP_STOCK_GRAVITY_WEST -#define GIMP_STOCK_GRAVITY_EAST -#define GIMP_STOCK_GRAVITY_SOUTH_WEST -#define GIMP_STOCK_GRAVITY_SOUTH -#define GIMP_STOCK_GRAVITY_SOUTH_EAST -#define GIMP_STOCK_CHAR_PICKER -#define GIMP_STOCK_LETTER_SPACING -#define GIMP_STOCK_LINE_SPACING -#define GIMP_STOCK_TEXT_DIR_LTR -#define GIMP_STOCK_TEXT_DIR_RTL -#define GIMP_STOCK_PRINT_RESOLUTION -#define GIMP_STOCK_TOOLS -#define GIMP_STOCK_TOOL_OPTIONS -#define GIMP_STOCK_DEVICE_STATUS -#define GIMP_STOCK_DISPLAY_FILTER -#define GIMP_STOCK_CURVE_FREE -#define GIMP_STOCK_CURVE_SMOOTH -#define GIMP_STOCK_COLOR_PICKER_BLACK -#define GIMP_STOCK_COLOR_PICKER_GRAY -#define GIMP_STOCK_COLOR_PICKER_WHITE -#define GIMP_STOCK_COLOR_TRIANGLE -#define GIMP_STOCK_COLOR_PICK_FROM_SCREEN -#define GIMP_STOCK_CONVERT_GRAYSCALE -#define GIMP_STOCK_CONVERT_INDEXED -#define GIMP_STOCK_CONVERT_RGB -#define GIMP_STOCK_TRANSPARENCY -#define GIMP_STOCK_DEFAULT_COLORS -#define GIMP_STOCK_SWAP_COLORS -#define GIMP_STOCK_UNDO_HISTORY -#define GIMP_STOCK_TOOL_AIRBRUSH -#define GIMP_STOCK_TOOL_BLEND -#define GIMP_STOCK_TOOL_BLUR -#define GIMP_STOCK_TOOL_BRIGHTNESS_CONTRAST -#define GIMP_STOCK_TOOL_BUCKET_FILL -#define GIMP_STOCK_TOOL_BY_COLOR_SELECT -#define GIMP_STOCK_TOOL_CLONE -#define GIMP_STOCK_TOOL_COLOR_BALANCE -#define GIMP_STOCK_TOOL_COLOR_PICKER -#define GIMP_STOCK_TOOL_COLORIZE -#define GIMP_STOCK_TOOL_CROP -#define GIMP_STOCK_TOOL_CURVES -#define GIMP_STOCK_TOOL_DODGE -#define GIMP_STOCK_TOOL_ELLIPSE_SELECT -#define GIMP_STOCK_TOOL_ERASER -#define GIMP_STOCK_TOOL_FLIP -#define GIMP_STOCK_TOOL_FREE_SELECT -#define GIMP_STOCK_TOOL_FUZZY_SELECT -#define GIMP_STOCK_TOOL_HUE_SATURATION -#define GIMP_STOCK_TOOL_INK -#define GIMP_STOCK_TOOL_ISCISSORS -#define GIMP_STOCK_TOOL_LEVELS -#define GIMP_STOCK_TOOL_MEASURE -#define GIMP_STOCK_TOOL_MOVE -#define GIMP_STOCK_TOOL_PAINTBRUSH -#define GIMP_STOCK_TOOL_PATH -#define GIMP_STOCK_TOOL_PENCIL -#define GIMP_STOCK_TOOL_PERSPECTIVE -#define GIMP_STOCK_TOOL_POSTERIZE -#define GIMP_STOCK_TOOL_RECT_SELECT -#define GIMP_STOCK_TOOL_ROTATE -#define GIMP_STOCK_TOOL_SCALE -#define GIMP_STOCK_TOOL_SHEAR -#define GIMP_STOCK_TOOL_SMUDGE -#define GIMP_STOCK_TOOL_TEXT -#define GIMP_STOCK_TOOL_THRESHOLD -#define GIMP_STOCK_TOOL_ZOOM -#define GIMP_STOCK_HCHAIN -#define GIMP_STOCK_HCHAIN_BROKEN -#define GIMP_STOCK_VCHAIN -#define GIMP_STOCK_VCHAIN_BROKEN -#define GIMP_STOCK_TEXTURE -#define GIMP_STOCK_FRAME -#define GIMP_STOCK_ERROR -#define GIMP_STOCK_INFO -#define GIMP_STOCK_QUESTION -#define GIMP_STOCK_WARNING -#define GIMP_STOCK_WILBER -#define GIMP_STOCK_WILBER_EEK -#define GIMP_STOCK_BRUSH -#define GIMP_STOCK_BUFFER -#define GIMP_STOCK_FONT -#define GIMP_STOCK_GRADIENT -#define GIMP_STOCK_PALETTE -#define GIMP_STOCK_PATTERN -#define GIMP_STOCK_ZOOM_FOLLOW_WINDOW +#define GIMP_STOCK_ANCHOR +#define GIMP_STOCK_CENTER +#define GIMP_STOCK_DUPLICATE +#define GIMP_STOCK_EDIT +#define GIMP_STOCK_RESET +#define GIMP_STOCK_CLOSE +#define GIMP_STOCK_MENU_LEFT +#define GIMP_STOCK_MENU_RIGHT +#define GIMP_STOCK_MOVE_TO_SCREEN +#define GIMP_STOCK_INVERT +#define GIMP_STOCK_LAYER_TO_IMAGESIZE +#define GIMP_STOCK_MERGE_DOWN +#define GIMP_STOCK_NAVIGATION +#define GIMP_STOCK_PASTE_AS_NEW +#define GIMP_STOCK_PASTE_INTO +#define GIMP_STOCK_PATH_STROKE +#define GIMP_STOCK_PLUGIN +#define GIMP_STOCK_QMASK_OFF +#define GIMP_STOCK_QMASK_ON +#define GIMP_STOCK_HISTOGRAM +#define GIMP_STOCK_HISTOGRAM_LINEAR +#define GIMP_STOCK_HISTOGRAM_LOGARITHMIC +#define GIMP_STOCK_RESHOW_FILTER +#define GIMP_STOCK_RESIZE +#define GIMP_STOCK_FLIP_HORIZONTAL +#define GIMP_STOCK_FLIP_VERTICAL +#define GIMP_STOCK_ROTATE_180 +#define GIMP_STOCK_ROTATE_270 +#define GIMP_STOCK_ROTATE_90 +#define GIMP_STOCK_SCALE +#define GIMP_STOCK_LINKED +#define GIMP_STOCK_VISIBLE +#define GIMP_STOCK_LIST +#define GIMP_STOCK_GRID +#define GIMP_STOCK_PORTRAIT +#define GIMP_STOCK_LANDSCAPE +#define GIMP_STOCK_VIDEO +#define GIMP_STOCK_WEB +#define GIMP_STOCK_IMAGE +#define GIMP_STOCK_LAYER +#define GIMP_STOCK_LAYER_MASK +#define GIMP_STOCK_CHANNEL +#define GIMP_STOCK_CHANNEL_RED +#define GIMP_STOCK_CHANNEL_GREEN +#define GIMP_STOCK_CHANNEL_BLUE +#define GIMP_STOCK_CHANNEL_GRAY +#define GIMP_STOCK_CHANNEL_INDEXED +#define GIMP_STOCK_CHANNEL_ALPHA +#define GIMP_STOCK_PATH +#define GIMP_STOCK_TEXT_LAYER +#define GIMP_STOCK_FLOATING_SELECTION +#define GIMP_STOCK_TEMPLATE +#define GIMP_STOCK_IMAGES +#define GIMP_STOCK_LAYERS +#define GIMP_STOCK_CHANNELS +#define GIMP_STOCK_PATHS +#define GIMP_STOCK_INDEXED_PALETTE +#define GIMP_STOCK_SHAPE_CIRCLE +#define GIMP_STOCK_SHAPE_SQUARE +#define GIMP_STOCK_SHAPE_DIAMOND +#define GIMP_STOCK_CAP_BUTT +#define GIMP_STOCK_CAP_ROUND +#define GIMP_STOCK_CAP_SQUARE +#define GIMP_STOCK_JOIN_MITER +#define GIMP_STOCK_JOIN_ROUND +#define GIMP_STOCK_JOIN_BEVEL +#define GIMP_STOCK_SELECTION +#define GIMP_STOCK_SELECTION_ALL +#define GIMP_STOCK_SELECTION_NONE +#define GIMP_STOCK_SELECTION_GROW +#define GIMP_STOCK_SELECTION_SHRINK +#define GIMP_STOCK_SELECTION_BORDER +#define GIMP_STOCK_SELECTION_ADD +#define GIMP_STOCK_SELECTION_SUBTRACT +#define GIMP_STOCK_SELECTION_REPLACE +#define GIMP_STOCK_SELECTION_INTERSECT +#define GIMP_STOCK_SELECTION_STROKE +#define GIMP_STOCK_SELECTION_TO_CHANNEL +#define GIMP_STOCK_SELECTION_TO_PATH +#define GIMP_STOCK_GRADIENT_LINEAR +#define GIMP_STOCK_GRADIENT_BILINEAR +#define GIMP_STOCK_GRADIENT_RADIAL +#define GIMP_STOCK_GRADIENT_SQUARE +#define GIMP_STOCK_GRADIENT_CONICAL_SYMMETRIC +#define GIMP_STOCK_GRADIENT_CONICAL_ASYMMETRIC +#define GIMP_STOCK_GRADIENT_SHAPEBURST_SPHERICAL +#define GIMP_STOCK_GRADIENT_SHAPEBURST_ANGULAR +#define GIMP_STOCK_GRADIENT_SHAPEBURST_DIMPLED +#define GIMP_STOCK_GRADIENT_SPIRAL_CLOCKWISE +#define GIMP_STOCK_GRADIENT_SPIRAL_ANTICLOCKWISE +#define GIMP_STOCK_GRAVITY_NORTH_WEST +#define GIMP_STOCK_GRAVITY_NORTH +#define GIMP_STOCK_GRAVITY_NORTH_EAST +#define GIMP_STOCK_GRAVITY_WEST +#define GIMP_STOCK_GRAVITY_EAST +#define GIMP_STOCK_GRAVITY_SOUTH_WEST +#define GIMP_STOCK_GRAVITY_SOUTH +#define GIMP_STOCK_GRAVITY_SOUTH_EAST +#define GIMP_STOCK_CHAR_PICKER +#define GIMP_STOCK_LETTER_SPACING +#define GIMP_STOCK_LINE_SPACING +#define GIMP_STOCK_TEXT_DIR_LTR +#define GIMP_STOCK_TEXT_DIR_RTL +#define GIMP_STOCK_PRINT_RESOLUTION +#define GIMP_STOCK_TOOLS +#define GIMP_STOCK_TOOL_OPTIONS +#define GIMP_STOCK_DEVICE_STATUS +#define GIMP_STOCK_DISPLAY_FILTER +#define GIMP_STOCK_CURVE_FREE +#define GIMP_STOCK_CURVE_SMOOTH +#define GIMP_STOCK_COLOR_PICKER_BLACK +#define GIMP_STOCK_COLOR_PICKER_GRAY +#define GIMP_STOCK_COLOR_PICKER_WHITE +#define GIMP_STOCK_COLOR_TRIANGLE +#define GIMP_STOCK_COLOR_PICK_FROM_SCREEN +#define GIMP_STOCK_CONVERT_GRAYSCALE +#define GIMP_STOCK_CONVERT_INDEXED +#define GIMP_STOCK_CONVERT_RGB +#define GIMP_STOCK_TRANSPARENCY +#define GIMP_STOCK_DEFAULT_COLORS +#define GIMP_STOCK_SWAP_COLORS +#define GIMP_STOCK_UNDO_HISTORY +#define GIMP_STOCK_TOOL_AIRBRUSH +#define GIMP_STOCK_TOOL_BLEND +#define GIMP_STOCK_TOOL_BLUR +#define GIMP_STOCK_TOOL_BRIGHTNESS_CONTRAST +#define GIMP_STOCK_TOOL_BUCKET_FILL +#define GIMP_STOCK_TOOL_BY_COLOR_SELECT +#define GIMP_STOCK_TOOL_CLONE +#define GIMP_STOCK_TOOL_COLOR_BALANCE +#define GIMP_STOCK_TOOL_COLOR_PICKER +#define GIMP_STOCK_TOOL_COLORIZE +#define GIMP_STOCK_TOOL_CROP +#define GIMP_STOCK_TOOL_CURVES +#define GIMP_STOCK_TOOL_DODGE +#define GIMP_STOCK_TOOL_ELLIPSE_SELECT +#define GIMP_STOCK_TOOL_ERASER +#define GIMP_STOCK_TOOL_FLIP +#define GIMP_STOCK_TOOL_FREE_SELECT +#define GIMP_STOCK_TOOL_FUZZY_SELECT +#define GIMP_STOCK_TOOL_HUE_SATURATION +#define GIMP_STOCK_TOOL_INK +#define GIMP_STOCK_TOOL_ISCISSORS +#define GIMP_STOCK_TOOL_LEVELS +#define GIMP_STOCK_TOOL_MEASURE +#define GIMP_STOCK_TOOL_MOVE +#define GIMP_STOCK_TOOL_PAINTBRUSH +#define GIMP_STOCK_TOOL_PATH +#define GIMP_STOCK_TOOL_PENCIL +#define GIMP_STOCK_TOOL_PERSPECTIVE +#define GIMP_STOCK_TOOL_POSTERIZE +#define GIMP_STOCK_TOOL_RECT_SELECT +#define GIMP_STOCK_TOOL_ROTATE +#define GIMP_STOCK_TOOL_SCALE +#define GIMP_STOCK_TOOL_SHEAR +#define GIMP_STOCK_TOOL_SMUDGE +#define GIMP_STOCK_TOOL_TEXT +#define GIMP_STOCK_TOOL_THRESHOLD +#define GIMP_STOCK_TOOL_ZOOM +#define GIMP_STOCK_HCHAIN +#define GIMP_STOCK_HCHAIN_BROKEN +#define GIMP_STOCK_VCHAIN +#define GIMP_STOCK_VCHAIN_BROKEN +#define GIMP_STOCK_TEXTURE +#define GIMP_STOCK_FRAME +#define GIMP_STOCK_ERROR +#define GIMP_STOCK_INFO +#define GIMP_STOCK_QUESTION +#define GIMP_STOCK_WARNING +#define GIMP_STOCK_WILBER +#define GIMP_STOCK_WILBER_EEK +#define GIMP_STOCK_BRUSH +#define GIMP_STOCK_BUFFER +#define GIMP_STOCK_FONT +#define GIMP_STOCK_GRADIENT +#define GIMP_STOCK_PALETTE +#define GIMP_STOCK_PATTERN +#define GIMP_STOCK_ZOOM_FOLLOW_WINDOW @@ -239,14 +239,14 @@ -<anchor id="GIMP-STOCK-ANCHOR-CAPS"/>GIMP_STOCK_ANCHOR +<anchor id="GIMP-STOCK-ANCHOR--CAPS"/>GIMP_STOCK_ANCHOR GIMP_STOCK_ANCHOR#define GIMP_STOCK_ANCHOR "gimp-anchor" -<anchor id="GIMP-STOCK-CENTER-CAPS"/>GIMP_STOCK_CENTER +<anchor id="GIMP-STOCK-CENTER--CAPS"/>GIMP_STOCK_CENTER GIMP_STOCK_CENTER#define GIMP_STOCK_CENTER "gimp-center" @@ -254,35 +254,35 @@ -<anchor id="GIMP-STOCK-DUPLICATE-CAPS"/>GIMP_STOCK_DUPLICATE +<anchor id="GIMP-STOCK-DUPLICATE--CAPS"/>GIMP_STOCK_DUPLICATE GIMP_STOCK_DUPLICATE#define GIMP_STOCK_DUPLICATE "gimp-duplicate" -<anchor id="GIMP-STOCK-EDIT-CAPS"/>GIMP_STOCK_EDIT +<anchor id="GIMP-STOCK-EDIT--CAPS"/>GIMP_STOCK_EDIT GIMP_STOCK_EDIT#define GIMP_STOCK_EDIT "gimp-edit" -<anchor id="GIMP-STOCK-RESET-CAPS"/>GIMP_STOCK_RESET +<anchor id="GIMP-STOCK-RESET--CAPS"/>GIMP_STOCK_RESET GIMP_STOCK_RESET#define GIMP_STOCK_RESET "gimp-reset" -<anchor id="GIMP-STOCK-CLOSE-CAPS"/>GIMP_STOCK_CLOSE +<anchor id="GIMP-STOCK-CLOSE--CAPS"/>GIMP_STOCK_CLOSE GIMP_STOCK_CLOSE#define GIMP_STOCK_CLOSE "gimp-close" -<anchor id="GIMP-STOCK-MENU-LEFT-CAPS"/>GIMP_STOCK_MENU_LEFT +<anchor id="GIMP-STOCK-MENU-LEFT--CAPS"/>GIMP_STOCK_MENU_LEFT GIMP_STOCK_MENU_LEFT#define GIMP_STOCK_MENU_LEFT "gimp-menu-left" @@ -291,7 +291,7 @@ -<anchor id="GIMP-STOCK-MENU-RIGHT-CAPS"/>GIMP_STOCK_MENU_RIGHT +<anchor id="GIMP-STOCK-MENU-RIGHT--CAPS"/>GIMP_STOCK_MENU_RIGHT GIMP_STOCK_MENU_RIGHT#define GIMP_STOCK_MENU_RIGHT "gimp-menu-right" @@ -300,7 +300,7 @@ -<anchor id="GIMP-STOCK-MOVE-TO-SCREEN-CAPS"/>GIMP_STOCK_MOVE_TO_SCREEN +<anchor id="GIMP-STOCK-MOVE-TO-SCREEN--CAPS"/>GIMP_STOCK_MOVE_TO_SCREEN GIMP_STOCK_MOVE_TO_SCREEN#define GIMP_STOCK_MOVE_TO_SCREEN "gimp_move-to-screen" @@ -308,77 +308,77 @@ -<anchor id="GIMP-STOCK-INVERT-CAPS"/>GIMP_STOCK_INVERT +<anchor id="GIMP-STOCK-INVERT--CAPS"/>GIMP_STOCK_INVERT GIMP_STOCK_INVERT#define GIMP_STOCK_INVERT "gimp-invert" -<anchor id="GIMP-STOCK-LAYER-TO-IMAGESIZE-CAPS"/>GIMP_STOCK_LAYER_TO_IMAGESIZE +<anchor id="GIMP-STOCK-LAYER-TO-IMAGESIZE--CAPS"/>GIMP_STOCK_LAYER_TO_IMAGESIZE GIMP_STOCK_LAYER_TO_IMAGESIZE#define GIMP_STOCK_LAYER_TO_IMAGESIZE "gimp-layer-to-imagesize" -<anchor id="GIMP-STOCK-MERGE-DOWN-CAPS"/>GIMP_STOCK_MERGE_DOWN +<anchor id="GIMP-STOCK-MERGE-DOWN--CAPS"/>GIMP_STOCK_MERGE_DOWN GIMP_STOCK_MERGE_DOWN#define GIMP_STOCK_MERGE_DOWN "gimp-merge-down" -<anchor id="GIMP-STOCK-NAVIGATION-CAPS"/>GIMP_STOCK_NAVIGATION +<anchor id="GIMP-STOCK-NAVIGATION--CAPS"/>GIMP_STOCK_NAVIGATION GIMP_STOCK_NAVIGATION#define GIMP_STOCK_NAVIGATION "gimp-navigation" -<anchor id="GIMP-STOCK-PASTE-AS-NEW-CAPS"/>GIMP_STOCK_PASTE_AS_NEW +<anchor id="GIMP-STOCK-PASTE-AS-NEW--CAPS"/>GIMP_STOCK_PASTE_AS_NEW GIMP_STOCK_PASTE_AS_NEW#define GIMP_STOCK_PASTE_AS_NEW "gimp-paste-as-new" -<anchor id="GIMP-STOCK-PASTE-INTO-CAPS"/>GIMP_STOCK_PASTE_INTO +<anchor id="GIMP-STOCK-PASTE-INTO--CAPS"/>GIMP_STOCK_PASTE_INTO GIMP_STOCK_PASTE_INTO#define GIMP_STOCK_PASTE_INTO "gimp-paste-into" -<anchor id="GIMP-STOCK-PATH-STROKE-CAPS"/>GIMP_STOCK_PATH_STROKE +<anchor id="GIMP-STOCK-PATH-STROKE--CAPS"/>GIMP_STOCK_PATH_STROKE GIMP_STOCK_PATH_STROKE#define GIMP_STOCK_PATH_STROKE "gimp-path-stroke" -<anchor id="GIMP-STOCK-PLUGIN-CAPS"/>GIMP_STOCK_PLUGIN +<anchor id="GIMP-STOCK-PLUGIN--CAPS"/>GIMP_STOCK_PLUGIN GIMP_STOCK_PLUGIN#define GIMP_STOCK_PLUGIN "gimp-plugin" -<anchor id="GIMP-STOCK-QMASK-OFF-CAPS"/>GIMP_STOCK_QMASK_OFF +<anchor id="GIMP-STOCK-QMASK-OFF--CAPS"/>GIMP_STOCK_QMASK_OFF GIMP_STOCK_QMASK_OFF#define GIMP_STOCK_QMASK_OFF "gimp-qmask-off" -<anchor id="GIMP-STOCK-QMASK-ON-CAPS"/>GIMP_STOCK_QMASK_ON +<anchor id="GIMP-STOCK-QMASK-ON--CAPS"/>GIMP_STOCK_QMASK_ON GIMP_STOCK_QMASK_ON#define GIMP_STOCK_QMASK_ON "gimp-qmask-on" -<anchor id="GIMP-STOCK-HISTOGRAM-CAPS"/>GIMP_STOCK_HISTOGRAM +<anchor id="GIMP-STOCK-HISTOGRAM--CAPS"/>GIMP_STOCK_HISTOGRAM GIMP_STOCK_HISTOGRAM#define GIMP_STOCK_HISTOGRAM "gimp-histogram" @@ -386,77 +386,77 @@ -<anchor id="GIMP-STOCK-HISTOGRAM-LINEAR-CAPS"/>GIMP_STOCK_HISTOGRAM_LINEAR +<anchor id="GIMP-STOCK-HISTOGRAM-LINEAR--CAPS"/>GIMP_STOCK_HISTOGRAM_LINEAR GIMP_STOCK_HISTOGRAM_LINEAR#define GIMP_STOCK_HISTOGRAM_LINEAR "gimp-histogram-linear" -<anchor id="GIMP-STOCK-HISTOGRAM-LOGARITHMIC-CAPS"/>GIMP_STOCK_HISTOGRAM_LOGARITHMIC +<anchor id="GIMP-STOCK-HISTOGRAM-LOGARITHMIC--CAPS"/>GIMP_STOCK_HISTOGRAM_LOGARITHMIC GIMP_STOCK_HISTOGRAM_LOGARITHMIC#define GIMP_STOCK_HISTOGRAM_LOGARITHMIC "gimp-histogram-logarithmic" -<anchor id="GIMP-STOCK-RESHOW-FILTER-CAPS"/>GIMP_STOCK_RESHOW_FILTER +<anchor id="GIMP-STOCK-RESHOW-FILTER--CAPS"/>GIMP_STOCK_RESHOW_FILTER GIMP_STOCK_RESHOW_FILTER#define GIMP_STOCK_RESHOW_FILTER "gimp-reshow-filter" -<anchor id="GIMP-STOCK-RESIZE-CAPS"/>GIMP_STOCK_RESIZE +<anchor id="GIMP-STOCK-RESIZE--CAPS"/>GIMP_STOCK_RESIZE GIMP_STOCK_RESIZE#define GIMP_STOCK_RESIZE "gimp-resize" -<anchor id="GIMP-STOCK-FLIP-HORIZONTAL-CAPS"/>GIMP_STOCK_FLIP_HORIZONTAL +<anchor id="GIMP-STOCK-FLIP-HORIZONTAL--CAPS"/>GIMP_STOCK_FLIP_HORIZONTAL GIMP_STOCK_FLIP_HORIZONTAL#define GIMP_STOCK_FLIP_HORIZONTAL "gimp-flip-horizontal" -<anchor id="GIMP-STOCK-FLIP-VERTICAL-CAPS"/>GIMP_STOCK_FLIP_VERTICAL +<anchor id="GIMP-STOCK-FLIP-VERTICAL--CAPS"/>GIMP_STOCK_FLIP_VERTICAL GIMP_STOCK_FLIP_VERTICAL#define GIMP_STOCK_FLIP_VERTICAL "gimp-flip-vertical" -<anchor id="GIMP-STOCK-ROTATE-180-CAPS"/>GIMP_STOCK_ROTATE_180 +<anchor id="GIMP-STOCK-ROTATE-180--CAPS"/>GIMP_STOCK_ROTATE_180 GIMP_STOCK_ROTATE_180#define GIMP_STOCK_ROTATE_180 "gimp-rotate-180" -<anchor id="GIMP-STOCK-ROTATE-270-CAPS"/>GIMP_STOCK_ROTATE_270 +<anchor id="GIMP-STOCK-ROTATE-270--CAPS"/>GIMP_STOCK_ROTATE_270 GIMP_STOCK_ROTATE_270#define GIMP_STOCK_ROTATE_270 "gimp-rotate-270" -<anchor id="GIMP-STOCK-ROTATE-90-CAPS"/>GIMP_STOCK_ROTATE_90 +<anchor id="GIMP-STOCK-ROTATE-90--CAPS"/>GIMP_STOCK_ROTATE_90 GIMP_STOCK_ROTATE_90#define GIMP_STOCK_ROTATE_90 "gimp-rotate-90" -<anchor id="GIMP-STOCK-SCALE-CAPS"/>GIMP_STOCK_SCALE +<anchor id="GIMP-STOCK-SCALE--CAPS"/>GIMP_STOCK_SCALE GIMP_STOCK_SCALE#define GIMP_STOCK_SCALE "gimp-scale" -<anchor id="GIMP-STOCK-LINKED-CAPS"/>GIMP_STOCK_LINKED +<anchor id="GIMP-STOCK-LINKED--CAPS"/>GIMP_STOCK_LINKED GIMP_STOCK_LINKED#define GIMP_STOCK_LINKED "gimp-linked" @@ -464,7 +464,7 @@ -<anchor id="GIMP-STOCK-VISIBLE-CAPS"/>GIMP_STOCK_VISIBLE +<anchor id="GIMP-STOCK-VISIBLE--CAPS"/>GIMP_STOCK_VISIBLE GIMP_STOCK_VISIBLE#define GIMP_STOCK_VISIBLE "gimp-visible" @@ -472,35 +472,35 @@ -<anchor id="GIMP-STOCK-LIST-CAPS"/>GIMP_STOCK_LIST +<anchor id="GIMP-STOCK-LIST--CAPS"/>GIMP_STOCK_LIST GIMP_STOCK_LIST#define GIMP_STOCK_LIST "gimp-list" -<anchor id="GIMP-STOCK-GRID-CAPS"/>GIMP_STOCK_GRID +<anchor id="GIMP-STOCK-GRID--CAPS"/>GIMP_STOCK_GRID GIMP_STOCK_GRID#define GIMP_STOCK_GRID "gimp-grid" -<anchor id="GIMP-STOCK-PORTRAIT-CAPS"/>GIMP_STOCK_PORTRAIT +<anchor id="GIMP-STOCK-PORTRAIT--CAPS"/>GIMP_STOCK_PORTRAIT GIMP_STOCK_PORTRAIT#define GIMP_STOCK_PORTRAIT "gimp-portrait" -<anchor id="GIMP-STOCK-LANDSCAPE-CAPS"/>GIMP_STOCK_LANDSCAPE +<anchor id="GIMP-STOCK-LANDSCAPE--CAPS"/>GIMP_STOCK_LANDSCAPE GIMP_STOCK_LANDSCAPE#define GIMP_STOCK_LANDSCAPE "gimp-landscape" -<anchor id="GIMP-STOCK-VIDEO-CAPS"/>GIMP_STOCK_VIDEO +<anchor id="GIMP-STOCK-VIDEO--CAPS"/>GIMP_STOCK_VIDEO GIMP_STOCK_VIDEO#define GIMP_STOCK_VIDEO "gimp-video" @@ -508,7 +508,7 @@ -<anchor id="GIMP-STOCK-WEB-CAPS"/>GIMP_STOCK_WEB +<anchor id="GIMP-STOCK-WEB--CAPS"/>GIMP_STOCK_WEB GIMP_STOCK_WEB#define GIMP_STOCK_WEB "gimp-web" @@ -516,7 +516,7 @@ -<anchor id="GIMP-STOCK-IMAGE-CAPS"/>GIMP_STOCK_IMAGE +<anchor id="GIMP-STOCK-IMAGE--CAPS"/>GIMP_STOCK_IMAGE GIMP_STOCK_IMAGE#define GIMP_STOCK_IMAGE "gimp-image" @@ -526,7 +526,7 @@ -<anchor id="GIMP-STOCK-LAYER-CAPS"/>GIMP_STOCK_LAYER +<anchor id="GIMP-STOCK-LAYER--CAPS"/>GIMP_STOCK_LAYER GIMP_STOCK_LAYER#define GIMP_STOCK_LAYER "gimp-layer" @@ -536,7 +536,7 @@ -<anchor id="GIMP-STOCK-LAYER-MASK-CAPS"/>GIMP_STOCK_LAYER_MASK +<anchor id="GIMP-STOCK-LAYER-MASK--CAPS"/>GIMP_STOCK_LAYER_MASK GIMP_STOCK_LAYER_MASK#define GIMP_STOCK_LAYER_MASK "gimp-layer-mask" @@ -546,7 +546,7 @@ -<anchor id="GIMP-STOCK-CHANNEL-CAPS"/>GIMP_STOCK_CHANNEL +<anchor id="GIMP-STOCK-CHANNEL--CAPS"/>GIMP_STOCK_CHANNEL GIMP_STOCK_CHANNEL#define GIMP_STOCK_CHANNEL "gimp-channel" @@ -556,7 +556,7 @@ -<anchor id="GIMP-STOCK-CHANNEL-RED-CAPS"/>GIMP_STOCK_CHANNEL_RED +<anchor id="GIMP-STOCK-CHANNEL-RED--CAPS"/>GIMP_STOCK_CHANNEL_RED GIMP_STOCK_CHANNEL_RED#define GIMP_STOCK_CHANNEL_RED "gimp-channel-red" @@ -566,7 +566,7 @@ -<anchor id="GIMP-STOCK-CHANNEL-GREEN-CAPS"/>GIMP_STOCK_CHANNEL_GREEN +<anchor id="GIMP-STOCK-CHANNEL-GREEN--CAPS"/>GIMP_STOCK_CHANNEL_GREEN GIMP_STOCK_CHANNEL_GREEN#define GIMP_STOCK_CHANNEL_GREEN "gimp-channel-green" @@ -576,7 +576,7 @@ -<anchor id="GIMP-STOCK-CHANNEL-BLUE-CAPS"/>GIMP_STOCK_CHANNEL_BLUE +<anchor id="GIMP-STOCK-CHANNEL-BLUE--CAPS"/>GIMP_STOCK_CHANNEL_BLUE GIMP_STOCK_CHANNEL_BLUE#define GIMP_STOCK_CHANNEL_BLUE "gimp-channel-blue" @@ -586,7 +586,7 @@ -<anchor id="GIMP-STOCK-CHANNEL-GRAY-CAPS"/>GIMP_STOCK_CHANNEL_GRAY +<anchor id="GIMP-STOCK-CHANNEL-GRAY--CAPS"/>GIMP_STOCK_CHANNEL_GRAY GIMP_STOCK_CHANNEL_GRAY#define GIMP_STOCK_CHANNEL_GRAY "gimp-channel-gray" @@ -596,7 +596,7 @@ -<anchor id="GIMP-STOCK-CHANNEL-INDEXED-CAPS"/>GIMP_STOCK_CHANNEL_INDEXED +<anchor id="GIMP-STOCK-CHANNEL-INDEXED--CAPS"/>GIMP_STOCK_CHANNEL_INDEXED GIMP_STOCK_CHANNEL_INDEXED#define GIMP_STOCK_CHANNEL_INDEXED "gimp-channel-indexed" @@ -606,7 +606,7 @@ -<anchor id="GIMP-STOCK-CHANNEL-ALPHA-CAPS"/>GIMP_STOCK_CHANNEL_ALPHA +<anchor id="GIMP-STOCK-CHANNEL-ALPHA--CAPS"/>GIMP_STOCK_CHANNEL_ALPHA GIMP_STOCK_CHANNEL_ALPHA#define GIMP_STOCK_CHANNEL_ALPHA "gimp-channel-alpha" @@ -616,7 +616,7 @@ -<anchor id="GIMP-STOCK-PATH-CAPS"/>GIMP_STOCK_PATH +<anchor id="GIMP-STOCK-PATH--CAPS"/>GIMP_STOCK_PATH GIMP_STOCK_PATH#define GIMP_STOCK_PATH "gimp-path" @@ -624,7 +624,7 @@ -<anchor id="GIMP-STOCK-TEXT-LAYER-CAPS"/>GIMP_STOCK_TEXT_LAYER +<anchor id="GIMP-STOCK-TEXT-LAYER--CAPS"/>GIMP_STOCK_TEXT_LAYER GIMP_STOCK_TEXT_LAYER#define GIMP_STOCK_TEXT_LAYER "gimp-text-layer" @@ -634,7 +634,7 @@ -<anchor id="GIMP-STOCK-FLOATING-SELECTION-CAPS"/>GIMP_STOCK_FLOATING_SELECTION +<anchor id="GIMP-STOCK-FLOATING-SELECTION--CAPS"/>GIMP_STOCK_FLOATING_SELECTION GIMP_STOCK_FLOATING_SELECTION#define GIMP_STOCK_FLOATING_SELECTION "gimp-floating-selection" @@ -644,7 +644,7 @@ -<anchor id="GIMP-STOCK-TEMPLATE-CAPS"/>GIMP_STOCK_TEMPLATE +<anchor id="GIMP-STOCK-TEMPLATE--CAPS"/>GIMP_STOCK_TEMPLATE GIMP_STOCK_TEMPLATE#define GIMP_STOCK_TEMPLATE "gimp-template" @@ -652,7 +652,7 @@ -<anchor id="GIMP-STOCK-IMAGES-CAPS"/>GIMP_STOCK_IMAGES +<anchor id="GIMP-STOCK-IMAGES--CAPS"/>GIMP_STOCK_IMAGES GIMP_STOCK_IMAGES#define GIMP_STOCK_IMAGES "gimp-images" @@ -660,7 +660,7 @@ -<anchor id="GIMP-STOCK-LAYERS-CAPS"/>GIMP_STOCK_LAYERS +<anchor id="GIMP-STOCK-LAYERS--CAPS"/>GIMP_STOCK_LAYERS GIMP_STOCK_LAYERS#define GIMP_STOCK_LAYERS "gimp-layers" @@ -668,7 +668,7 @@ -<anchor id="GIMP-STOCK-CHANNELS-CAPS"/>GIMP_STOCK_CHANNELS +<anchor id="GIMP-STOCK-CHANNELS--CAPS"/>GIMP_STOCK_CHANNELS GIMP_STOCK_CHANNELS#define GIMP_STOCK_CHANNELS "gimp-channels" @@ -676,7 +676,7 @@ -<anchor id="GIMP-STOCK-PATHS-CAPS"/>GIMP_STOCK_PATHS +<anchor id="GIMP-STOCK-PATHS--CAPS"/>GIMP_STOCK_PATHS GIMP_STOCK_PATHS#define GIMP_STOCK_PATHS "gimp-paths" @@ -684,7 +684,7 @@ -<anchor id="GIMP-STOCK-INDEXED-PALETTE-CAPS"/>GIMP_STOCK_INDEXED_PALETTE +<anchor id="GIMP-STOCK-INDEXED-PALETTE--CAPS"/>GIMP_STOCK_INDEXED_PALETTE GIMP_STOCK_INDEXED_PALETTE#define GIMP_STOCK_INDEXED_PALETTE "gimp-indexed-palette" @@ -692,329 +692,329 @@ -<anchor id="GIMP-STOCK-SHAPE-CIRCLE-CAPS"/>GIMP_STOCK_SHAPE_CIRCLE +<anchor id="GIMP-STOCK-SHAPE-CIRCLE--CAPS"/>GIMP_STOCK_SHAPE_CIRCLE GIMP_STOCK_SHAPE_CIRCLE#define GIMP_STOCK_SHAPE_CIRCLE "gimp-shape-circle" -<anchor id="GIMP-STOCK-SHAPE-SQUARE-CAPS"/>GIMP_STOCK_SHAPE_SQUARE +<anchor id="GIMP-STOCK-SHAPE-SQUARE--CAPS"/>GIMP_STOCK_SHAPE_SQUARE GIMP_STOCK_SHAPE_SQUARE#define GIMP_STOCK_SHAPE_SQUARE "gimp-shape-square" -<anchor id="GIMP-STOCK-SHAPE-DIAMOND-CAPS"/>GIMP_STOCK_SHAPE_DIAMOND +<anchor id="GIMP-STOCK-SHAPE-DIAMOND--CAPS"/>GIMP_STOCK_SHAPE_DIAMOND GIMP_STOCK_SHAPE_DIAMOND#define GIMP_STOCK_SHAPE_DIAMOND "gimp-shape-diamond" -<anchor id="GIMP-STOCK-CAP-BUTT-CAPS"/>GIMP_STOCK_CAP_BUTT +<anchor id="GIMP-STOCK-CAP-BUTT--CAPS"/>GIMP_STOCK_CAP_BUTT GIMP_STOCK_CAP_BUTT#define GIMP_STOCK_CAP_BUTT "gimp-cap-butt" -<anchor id="GIMP-STOCK-CAP-ROUND-CAPS"/>GIMP_STOCK_CAP_ROUND +<anchor id="GIMP-STOCK-CAP-ROUND--CAPS"/>GIMP_STOCK_CAP_ROUND GIMP_STOCK_CAP_ROUND#define GIMP_STOCK_CAP_ROUND "gimp-cap-round" -<anchor id="GIMP-STOCK-CAP-SQUARE-CAPS"/>GIMP_STOCK_CAP_SQUARE +<anchor id="GIMP-STOCK-CAP-SQUARE--CAPS"/>GIMP_STOCK_CAP_SQUARE GIMP_STOCK_CAP_SQUARE#define GIMP_STOCK_CAP_SQUARE "gimp-cap-square" -<anchor id="GIMP-STOCK-JOIN-MITER-CAPS"/>GIMP_STOCK_JOIN_MITER +<anchor id="GIMP-STOCK-JOIN-MITER--CAPS"/>GIMP_STOCK_JOIN_MITER GIMP_STOCK_JOIN_MITER#define GIMP_STOCK_JOIN_MITER "gimp-join-miter" -<anchor id="GIMP-STOCK-JOIN-ROUND-CAPS"/>GIMP_STOCK_JOIN_ROUND +<anchor id="GIMP-STOCK-JOIN-ROUND--CAPS"/>GIMP_STOCK_JOIN_ROUND GIMP_STOCK_JOIN_ROUND#define GIMP_STOCK_JOIN_ROUND "gimp-join-round" -<anchor id="GIMP-STOCK-JOIN-BEVEL-CAPS"/>GIMP_STOCK_JOIN_BEVEL +<anchor id="GIMP-STOCK-JOIN-BEVEL--CAPS"/>GIMP_STOCK_JOIN_BEVEL GIMP_STOCK_JOIN_BEVEL#define GIMP_STOCK_JOIN_BEVEL "gimp-join-bevel" -<anchor id="GIMP-STOCK-SELECTION-CAPS"/>GIMP_STOCK_SELECTION +<anchor id="GIMP-STOCK-SELECTION--CAPS"/>GIMP_STOCK_SELECTION GIMP_STOCK_SELECTION#define GIMP_STOCK_SELECTION "gimp-selection" -<anchor id="GIMP-STOCK-SELECTION-ALL-CAPS"/>GIMP_STOCK_SELECTION_ALL +<anchor id="GIMP-STOCK-SELECTION-ALL--CAPS"/>GIMP_STOCK_SELECTION_ALL GIMP_STOCK_SELECTION_ALL#define GIMP_STOCK_SELECTION_ALL "gimp-selection-all" -<anchor id="GIMP-STOCK-SELECTION-NONE-CAPS"/>GIMP_STOCK_SELECTION_NONE +<anchor id="GIMP-STOCK-SELECTION-NONE--CAPS"/>GIMP_STOCK_SELECTION_NONE GIMP_STOCK_SELECTION_NONE#define GIMP_STOCK_SELECTION_NONE "gimp-selection-none" -<anchor id="GIMP-STOCK-SELECTION-GROW-CAPS"/>GIMP_STOCK_SELECTION_GROW +<anchor id="GIMP-STOCK-SELECTION-GROW--CAPS"/>GIMP_STOCK_SELECTION_GROW GIMP_STOCK_SELECTION_GROW#define GIMP_STOCK_SELECTION_GROW "gimp-selection-grow" -<anchor id="GIMP-STOCK-SELECTION-SHRINK-CAPS"/>GIMP_STOCK_SELECTION_SHRINK +<anchor id="GIMP-STOCK-SELECTION-SHRINK--CAPS"/>GIMP_STOCK_SELECTION_SHRINK GIMP_STOCK_SELECTION_SHRINK#define GIMP_STOCK_SELECTION_SHRINK "gimp-selection-shrink" -<anchor id="GIMP-STOCK-SELECTION-BORDER-CAPS"/>GIMP_STOCK_SELECTION_BORDER +<anchor id="GIMP-STOCK-SELECTION-BORDER--CAPS"/>GIMP_STOCK_SELECTION_BORDER GIMP_STOCK_SELECTION_BORDER#define GIMP_STOCK_SELECTION_BORDER "gimp-selection-border" -<anchor id="GIMP-STOCK-SELECTION-ADD-CAPS"/>GIMP_STOCK_SELECTION_ADD +<anchor id="GIMP-STOCK-SELECTION-ADD--CAPS"/>GIMP_STOCK_SELECTION_ADD GIMP_STOCK_SELECTION_ADD#define GIMP_STOCK_SELECTION_ADD "gimp-selection-add" -<anchor id="GIMP-STOCK-SELECTION-SUBTRACT-CAPS"/>GIMP_STOCK_SELECTION_SUBTRACT +<anchor id="GIMP-STOCK-SELECTION-SUBTRACT--CAPS"/>GIMP_STOCK_SELECTION_SUBTRACT GIMP_STOCK_SELECTION_SUBTRACT#define GIMP_STOCK_SELECTION_SUBTRACT "gimp-selection-subtract" -<anchor id="GIMP-STOCK-SELECTION-REPLACE-CAPS"/>GIMP_STOCK_SELECTION_REPLACE +<anchor id="GIMP-STOCK-SELECTION-REPLACE--CAPS"/>GIMP_STOCK_SELECTION_REPLACE GIMP_STOCK_SELECTION_REPLACE#define GIMP_STOCK_SELECTION_REPLACE "gimp-selection-replace" -<anchor id="GIMP-STOCK-SELECTION-INTERSECT-CAPS"/>GIMP_STOCK_SELECTION_INTERSECT +<anchor id="GIMP-STOCK-SELECTION-INTERSECT--CAPS"/>GIMP_STOCK_SELECTION_INTERSECT GIMP_STOCK_SELECTION_INTERSECT#define GIMP_STOCK_SELECTION_INTERSECT "gimp-selection-intersect" -<anchor id="GIMP-STOCK-SELECTION-STROKE-CAPS"/>GIMP_STOCK_SELECTION_STROKE +<anchor id="GIMP-STOCK-SELECTION-STROKE--CAPS"/>GIMP_STOCK_SELECTION_STROKE GIMP_STOCK_SELECTION_STROKE#define GIMP_STOCK_SELECTION_STROKE "gimp-selection-stroke" -<anchor id="GIMP-STOCK-SELECTION-TO-CHANNEL-CAPS"/>GIMP_STOCK_SELECTION_TO_CHANNEL +<anchor id="GIMP-STOCK-SELECTION-TO-CHANNEL--CAPS"/>GIMP_STOCK_SELECTION_TO_CHANNEL GIMP_STOCK_SELECTION_TO_CHANNEL#define GIMP_STOCK_SELECTION_TO_CHANNEL "gimp-selection-to-channel" -<anchor id="GIMP-STOCK-SELECTION-TO-PATH-CAPS"/>GIMP_STOCK_SELECTION_TO_PATH +<anchor id="GIMP-STOCK-SELECTION-TO-PATH--CAPS"/>GIMP_STOCK_SELECTION_TO_PATH GIMP_STOCK_SELECTION_TO_PATH#define GIMP_STOCK_SELECTION_TO_PATH "gimp-selection-to-path" -<anchor id="GIMP-STOCK-GRADIENT-LINEAR-CAPS"/>GIMP_STOCK_GRADIENT_LINEAR +<anchor id="GIMP-STOCK-GRADIENT-LINEAR--CAPS"/>GIMP_STOCK_GRADIENT_LINEAR GIMP_STOCK_GRADIENT_LINEAR#define GIMP_STOCK_GRADIENT_LINEAR "gimp-gradient-linear" -<anchor id="GIMP-STOCK-GRADIENT-BILINEAR-CAPS"/>GIMP_STOCK_GRADIENT_BILINEAR +<anchor id="GIMP-STOCK-GRADIENT-BILINEAR--CAPS"/>GIMP_STOCK_GRADIENT_BILINEAR GIMP_STOCK_GRADIENT_BILINEAR#define GIMP_STOCK_GRADIENT_BILINEAR "gimp-gradient-bilinear" -<anchor id="GIMP-STOCK-GRADIENT-RADIAL-CAPS"/>GIMP_STOCK_GRADIENT_RADIAL +<anchor id="GIMP-STOCK-GRADIENT-RADIAL--CAPS"/>GIMP_STOCK_GRADIENT_RADIAL GIMP_STOCK_GRADIENT_RADIAL#define GIMP_STOCK_GRADIENT_RADIAL "gimp-gradient-radial" -<anchor id="GIMP-STOCK-GRADIENT-SQUARE-CAPS"/>GIMP_STOCK_GRADIENT_SQUARE +<anchor id="GIMP-STOCK-GRADIENT-SQUARE--CAPS"/>GIMP_STOCK_GRADIENT_SQUARE GIMP_STOCK_GRADIENT_SQUARE#define GIMP_STOCK_GRADIENT_SQUARE "gimp-gradient-square" -<anchor id="GIMP-STOCK-GRADIENT-CONICAL-SYMMETRIC-CAPS"/>GIMP_STOCK_GRADIENT_CONICAL_SYMMETRIC +<anchor id="GIMP-STOCK-GRADIENT-CONICAL-SYMMETRIC--CAPS"/>GIMP_STOCK_GRADIENT_CONICAL_SYMMETRIC GIMP_STOCK_GRADIENT_CONICAL_SYMMETRIC#define GIMP_STOCK_GRADIENT_CONICAL_SYMMETRIC "gimp-gradient-conical-symmetric" -<anchor id="GIMP-STOCK-GRADIENT-CONICAL-ASYMMETRIC-CAPS"/>GIMP_STOCK_GRADIENT_CONICAL_ASYMMETRIC +<anchor id="GIMP-STOCK-GRADIENT-CONICAL-ASYMMETRIC--CAPS"/>GIMP_STOCK_GRADIENT_CONICAL_ASYMMETRIC GIMP_STOCK_GRADIENT_CONICAL_ASYMMETRIC#define GIMP_STOCK_GRADIENT_CONICAL_ASYMMETRIC "gimp-gradient-conical-asymmetric" -<anchor id="GIMP-STOCK-GRADIENT-SHAPEBURST-SPHERICAL-CAPS"/>GIMP_STOCK_GRADIENT_SHAPEBURST_SPHERICAL +<anchor id="GIMP-STOCK-GRADIENT-SHAPEBURST-SPHERICAL--CAPS"/>GIMP_STOCK_GRADIENT_SHAPEBURST_SPHERICAL GIMP_STOCK_GRADIENT_SHAPEBURST_SPHERICAL#define GIMP_STOCK_GRADIENT_SHAPEBURST_SPHERICAL "gimp-gradient-shapeburst-spherical" -<anchor id="GIMP-STOCK-GRADIENT-SHAPEBURST-ANGULAR-CAPS"/>GIMP_STOCK_GRADIENT_SHAPEBURST_ANGULAR +<anchor id="GIMP-STOCK-GRADIENT-SHAPEBURST-ANGULAR--CAPS"/>GIMP_STOCK_GRADIENT_SHAPEBURST_ANGULAR GIMP_STOCK_GRADIENT_SHAPEBURST_ANGULAR#define GIMP_STOCK_GRADIENT_SHAPEBURST_ANGULAR "gimp-gradient-shapeburst-angular" -<anchor id="GIMP-STOCK-GRADIENT-SHAPEBURST-DIMPLED-CAPS"/>GIMP_STOCK_GRADIENT_SHAPEBURST_DIMPLED +<anchor id="GIMP-STOCK-GRADIENT-SHAPEBURST-DIMPLED--CAPS"/>GIMP_STOCK_GRADIENT_SHAPEBURST_DIMPLED GIMP_STOCK_GRADIENT_SHAPEBURST_DIMPLED#define GIMP_STOCK_GRADIENT_SHAPEBURST_DIMPLED "gimp-gradient-shapeburst-dimpled" -<anchor id="GIMP-STOCK-GRADIENT-SPIRAL-CLOCKWISE-CAPS"/>GIMP_STOCK_GRADIENT_SPIRAL_CLOCKWISE +<anchor id="GIMP-STOCK-GRADIENT-SPIRAL-CLOCKWISE--CAPS"/>GIMP_STOCK_GRADIENT_SPIRAL_CLOCKWISE GIMP_STOCK_GRADIENT_SPIRAL_CLOCKWISE#define GIMP_STOCK_GRADIENT_SPIRAL_CLOCKWISE "gimp-gradient-spiral-clockwise" -<anchor id="GIMP-STOCK-GRADIENT-SPIRAL-ANTICLOCKWISE-CAPS"/>GIMP_STOCK_GRADIENT_SPIRAL_ANTICLOCKWISE +<anchor id="GIMP-STOCK-GRADIENT-SPIRAL-ANTICLOCKWISE--CAPS"/>GIMP_STOCK_GRADIENT_SPIRAL_ANTICLOCKWISE GIMP_STOCK_GRADIENT_SPIRAL_ANTICLOCKWISE#define GIMP_STOCK_GRADIENT_SPIRAL_ANTICLOCKWISE "gimp-gradient-spiral-anticlockwise" -<anchor id="GIMP-STOCK-GRAVITY-NORTH-WEST-CAPS"/>GIMP_STOCK_GRAVITY_NORTH_WEST +<anchor id="GIMP-STOCK-GRAVITY-NORTH-WEST--CAPS"/>GIMP_STOCK_GRAVITY_NORTH_WEST GIMP_STOCK_GRAVITY_NORTH_WEST#define GIMP_STOCK_GRAVITY_NORTH_WEST "gimp-gravity-north-west" -<anchor id="GIMP-STOCK-GRAVITY-NORTH-CAPS"/>GIMP_STOCK_GRAVITY_NORTH +<anchor id="GIMP-STOCK-GRAVITY-NORTH--CAPS"/>GIMP_STOCK_GRAVITY_NORTH GIMP_STOCK_GRAVITY_NORTH#define GIMP_STOCK_GRAVITY_NORTH "gimp-gravity-north" -<anchor id="GIMP-STOCK-GRAVITY-NORTH-EAST-CAPS"/>GIMP_STOCK_GRAVITY_NORTH_EAST +<anchor id="GIMP-STOCK-GRAVITY-NORTH-EAST--CAPS"/>GIMP_STOCK_GRAVITY_NORTH_EAST GIMP_STOCK_GRAVITY_NORTH_EAST#define GIMP_STOCK_GRAVITY_NORTH_EAST "gimp-gravity-north-east" -<anchor id="GIMP-STOCK-GRAVITY-WEST-CAPS"/>GIMP_STOCK_GRAVITY_WEST +<anchor id="GIMP-STOCK-GRAVITY-WEST--CAPS"/>GIMP_STOCK_GRAVITY_WEST GIMP_STOCK_GRAVITY_WEST#define GIMP_STOCK_GRAVITY_WEST "gimp-gravity-west" -<anchor id="GIMP-STOCK-GRAVITY-EAST-CAPS"/>GIMP_STOCK_GRAVITY_EAST +<anchor id="GIMP-STOCK-GRAVITY-EAST--CAPS"/>GIMP_STOCK_GRAVITY_EAST GIMP_STOCK_GRAVITY_EAST#define GIMP_STOCK_GRAVITY_EAST "gimp-gravity-east" -<anchor id="GIMP-STOCK-GRAVITY-SOUTH-WEST-CAPS"/>GIMP_STOCK_GRAVITY_SOUTH_WEST +<anchor id="GIMP-STOCK-GRAVITY-SOUTH-WEST--CAPS"/>GIMP_STOCK_GRAVITY_SOUTH_WEST GIMP_STOCK_GRAVITY_SOUTH_WEST#define GIMP_STOCK_GRAVITY_SOUTH_WEST "gimp-gravity-south-west" -<anchor id="GIMP-STOCK-GRAVITY-SOUTH-CAPS"/>GIMP_STOCK_GRAVITY_SOUTH +<anchor id="GIMP-STOCK-GRAVITY-SOUTH--CAPS"/>GIMP_STOCK_GRAVITY_SOUTH GIMP_STOCK_GRAVITY_SOUTH#define GIMP_STOCK_GRAVITY_SOUTH "gimp-gravity-south" -<anchor id="GIMP-STOCK-GRAVITY-SOUTH-EAST-CAPS"/>GIMP_STOCK_GRAVITY_SOUTH_EAST +<anchor id="GIMP-STOCK-GRAVITY-SOUTH-EAST--CAPS"/>GIMP_STOCK_GRAVITY_SOUTH_EAST GIMP_STOCK_GRAVITY_SOUTH_EAST#define GIMP_STOCK_GRAVITY_SOUTH_EAST "gimp-gravity-south-east" -<anchor id="GIMP-STOCK-CHAR-PICKER-CAPS"/>GIMP_STOCK_CHAR_PICKER +<anchor id="GIMP-STOCK-CHAR-PICKER--CAPS"/>GIMP_STOCK_CHAR_PICKER GIMP_STOCK_CHAR_PICKER#define GIMP_STOCK_CHAR_PICKER "gimp-char-picker" -<anchor id="GIMP-STOCK-LETTER-SPACING-CAPS"/>GIMP_STOCK_LETTER_SPACING +<anchor id="GIMP-STOCK-LETTER-SPACING--CAPS"/>GIMP_STOCK_LETTER_SPACING GIMP_STOCK_LETTER_SPACING#define GIMP_STOCK_LETTER_SPACING "gimp-letter-spacing" -<anchor id="GIMP-STOCK-LINE-SPACING-CAPS"/>GIMP_STOCK_LINE_SPACING +<anchor id="GIMP-STOCK-LINE-SPACING--CAPS"/>GIMP_STOCK_LINE_SPACING GIMP_STOCK_LINE_SPACING#define GIMP_STOCK_LINE_SPACING "gimp-line-spacing" -<anchor id="GIMP-STOCK-TEXT-DIR-LTR-CAPS"/>GIMP_STOCK_TEXT_DIR_LTR +<anchor id="GIMP-STOCK-TEXT-DIR-LTR--CAPS"/>GIMP_STOCK_TEXT_DIR_LTR GIMP_STOCK_TEXT_DIR_LTR#define GIMP_STOCK_TEXT_DIR_LTR "gimp-text-dir-ltr" -<anchor id="GIMP-STOCK-TEXT-DIR-RTL-CAPS"/>GIMP_STOCK_TEXT_DIR_RTL +<anchor id="GIMP-STOCK-TEXT-DIR-RTL--CAPS"/>GIMP_STOCK_TEXT_DIR_RTL GIMP_STOCK_TEXT_DIR_RTL#define GIMP_STOCK_TEXT_DIR_RTL "gimp-text-dir-rtl" -<anchor id="GIMP-STOCK-PRINT-RESOLUTION-CAPS"/>GIMP_STOCK_PRINT_RESOLUTION +<anchor id="GIMP-STOCK-PRINT-RESOLUTION--CAPS"/>GIMP_STOCK_PRINT_RESOLUTION GIMP_STOCK_PRINT_RESOLUTION#define GIMP_STOCK_PRINT_RESOLUTION "gimp-print-resolution" @@ -1022,7 +1022,7 @@ -<anchor id="GIMP-STOCK-TOOLS-CAPS"/>GIMP_STOCK_TOOLS +<anchor id="GIMP-STOCK-TOOLS--CAPS"/>GIMP_STOCK_TOOLS GIMP_STOCK_TOOLS#define GIMP_STOCK_TOOLS "gimp-tools" @@ -1030,7 +1030,7 @@ -<anchor id="GIMP-STOCK-TOOL-OPTIONS-CAPS"/>GIMP_STOCK_TOOL_OPTIONS +<anchor id="GIMP-STOCK-TOOL-OPTIONS--CAPS"/>GIMP_STOCK_TOOL_OPTIONS GIMP_STOCK_TOOL_OPTIONS#define GIMP_STOCK_TOOL_OPTIONS "gimp-tool-options" @@ -1038,7 +1038,7 @@ -<anchor id="GIMP-STOCK-DEVICE-STATUS-CAPS"/>GIMP_STOCK_DEVICE_STATUS +<anchor id="GIMP-STOCK-DEVICE-STATUS--CAPS"/>GIMP_STOCK_DEVICE_STATUS GIMP_STOCK_DEVICE_STATUS#define GIMP_STOCK_DEVICE_STATUS "gimp-device-status" @@ -1046,7 +1046,7 @@ -<anchor id="GIMP-STOCK-DISPLAY-FILTER-CAPS"/>GIMP_STOCK_DISPLAY_FILTER +<anchor id="GIMP-STOCK-DISPLAY-FILTER--CAPS"/>GIMP_STOCK_DISPLAY_FILTER GIMP_STOCK_DISPLAY_FILTER#define GIMP_STOCK_DISPLAY_FILTER "gimp-display-filter" @@ -1054,105 +1054,105 @@ -<anchor id="GIMP-STOCK-CURVE-FREE-CAPS"/>GIMP_STOCK_CURVE_FREE +<anchor id="GIMP-STOCK-CURVE-FREE--CAPS"/>GIMP_STOCK_CURVE_FREE GIMP_STOCK_CURVE_FREE#define GIMP_STOCK_CURVE_FREE "gimp-curve-free" -<anchor id="GIMP-STOCK-CURVE-SMOOTH-CAPS"/>GIMP_STOCK_CURVE_SMOOTH +<anchor id="GIMP-STOCK-CURVE-SMOOTH--CAPS"/>GIMP_STOCK_CURVE_SMOOTH GIMP_STOCK_CURVE_SMOOTH#define GIMP_STOCK_CURVE_SMOOTH "gimp-curve-smooth" -<anchor id="GIMP-STOCK-COLOR-PICKER-BLACK-CAPS"/>GIMP_STOCK_COLOR_PICKER_BLACK +<anchor id="GIMP-STOCK-COLOR-PICKER-BLACK--CAPS"/>GIMP_STOCK_COLOR_PICKER_BLACK GIMP_STOCK_COLOR_PICKER_BLACK#define GIMP_STOCK_COLOR_PICKER_BLACK "gimp-color-picker-black" -<anchor id="GIMP-STOCK-COLOR-PICKER-GRAY-CAPS"/>GIMP_STOCK_COLOR_PICKER_GRAY +<anchor id="GIMP-STOCK-COLOR-PICKER-GRAY--CAPS"/>GIMP_STOCK_COLOR_PICKER_GRAY GIMP_STOCK_COLOR_PICKER_GRAY#define GIMP_STOCK_COLOR_PICKER_GRAY "gimp-color-picker-gray" -<anchor id="GIMP-STOCK-COLOR-PICKER-WHITE-CAPS"/>GIMP_STOCK_COLOR_PICKER_WHITE +<anchor id="GIMP-STOCK-COLOR-PICKER-WHITE--CAPS"/>GIMP_STOCK_COLOR_PICKER_WHITE GIMP_STOCK_COLOR_PICKER_WHITE#define GIMP_STOCK_COLOR_PICKER_WHITE "gimp-color-picker-white" -<anchor id="GIMP-STOCK-COLOR-TRIANGLE-CAPS"/>GIMP_STOCK_COLOR_TRIANGLE +<anchor id="GIMP-STOCK-COLOR-TRIANGLE--CAPS"/>GIMP_STOCK_COLOR_TRIANGLE GIMP_STOCK_COLOR_TRIANGLE#define GIMP_STOCK_COLOR_TRIANGLE "gimp-color-triangle" -<anchor id="GIMP-STOCK-COLOR-PICK-FROM-SCREEN-CAPS"/>GIMP_STOCK_COLOR_PICK_FROM_SCREEN +<anchor id="GIMP-STOCK-COLOR-PICK-FROM-SCREEN--CAPS"/>GIMP_STOCK_COLOR_PICK_FROM_SCREEN GIMP_STOCK_COLOR_PICK_FROM_SCREEN#define GIMP_STOCK_COLOR_PICK_FROM_SCREEN "gimp-color-pick-from-screen" -<anchor id="GIMP-STOCK-CONVERT-GRAYSCALE-CAPS"/>GIMP_STOCK_CONVERT_GRAYSCALE +<anchor id="GIMP-STOCK-CONVERT-GRAYSCALE--CAPS"/>GIMP_STOCK_CONVERT_GRAYSCALE GIMP_STOCK_CONVERT_GRAYSCALE#define GIMP_STOCK_CONVERT_GRAYSCALE "gimp-convert-grayscale" -<anchor id="GIMP-STOCK-CONVERT-INDEXED-CAPS"/>GIMP_STOCK_CONVERT_INDEXED +<anchor id="GIMP-STOCK-CONVERT-INDEXED--CAPS"/>GIMP_STOCK_CONVERT_INDEXED GIMP_STOCK_CONVERT_INDEXED#define GIMP_STOCK_CONVERT_INDEXED "gimp-convert-indexed" -<anchor id="GIMP-STOCK-CONVERT-RGB-CAPS"/>GIMP_STOCK_CONVERT_RGB +<anchor id="GIMP-STOCK-CONVERT-RGB--CAPS"/>GIMP_STOCK_CONVERT_RGB GIMP_STOCK_CONVERT_RGB#define GIMP_STOCK_CONVERT_RGB "gimp-convert-rgb" -<anchor id="GIMP-STOCK-TRANSPARENCY-CAPS"/>GIMP_STOCK_TRANSPARENCY +<anchor id="GIMP-STOCK-TRANSPARENCY--CAPS"/>GIMP_STOCK_TRANSPARENCY GIMP_STOCK_TRANSPARENCY#define GIMP_STOCK_TRANSPARENCY "gimp-transparency" -<anchor id="GIMP-STOCK-DEFAULT-COLORS-CAPS"/>GIMP_STOCK_DEFAULT_COLORS +<anchor id="GIMP-STOCK-DEFAULT-COLORS--CAPS"/>GIMP_STOCK_DEFAULT_COLORS GIMP_STOCK_DEFAULT_COLORS#define GIMP_STOCK_DEFAULT_COLORS "gimp-default-colors" -<anchor id="GIMP-STOCK-SWAP-COLORS-CAPS"/>GIMP_STOCK_SWAP_COLORS +<anchor id="GIMP-STOCK-SWAP-COLORS--CAPS"/>GIMP_STOCK_SWAP_COLORS GIMP_STOCK_SWAP_COLORS#define GIMP_STOCK_SWAP_COLORS "gimp-swap-colors" -<anchor id="GIMP-STOCK-UNDO-HISTORY-CAPS"/>GIMP_STOCK_UNDO_HISTORY +<anchor id="GIMP-STOCK-UNDO-HISTORY--CAPS"/>GIMP_STOCK_UNDO_HISTORY GIMP_STOCK_UNDO_HISTORY#define GIMP_STOCK_UNDO_HISTORY "gimp-undo-history" -<anchor id="GIMP-STOCK-TOOL-AIRBRUSH-CAPS"/>GIMP_STOCK_TOOL_AIRBRUSH +<anchor id="GIMP-STOCK-TOOL-AIRBRUSH--CAPS"/>GIMP_STOCK_TOOL_AIRBRUSH GIMP_STOCK_TOOL_AIRBRUSH#define GIMP_STOCK_TOOL_AIRBRUSH "gimp-tool-airbrush" @@ -1160,7 +1160,7 @@ -<anchor id="GIMP-STOCK-TOOL-BLEND-CAPS"/>GIMP_STOCK_TOOL_BLEND +<anchor id="GIMP-STOCK-TOOL-BLEND--CAPS"/>GIMP_STOCK_TOOL_BLEND GIMP_STOCK_TOOL_BLEND#define GIMP_STOCK_TOOL_BLEND "gimp-tool-blend" @@ -1168,7 +1168,7 @@ -<anchor id="GIMP-STOCK-TOOL-BLUR-CAPS"/>GIMP_STOCK_TOOL_BLUR +<anchor id="GIMP-STOCK-TOOL-BLUR--CAPS"/>GIMP_STOCK_TOOL_BLUR GIMP_STOCK_TOOL_BLUR#define GIMP_STOCK_TOOL_BLUR "gimp-tool-blur" @@ -1176,7 +1176,7 @@ -<anchor id="GIMP-STOCK-TOOL-BRIGHTNESS-CONTRAST-CAPS"/>GIMP_STOCK_TOOL_BRIGHTNESS_CONTRAST +<anchor id="GIMP-STOCK-TOOL-BRIGHTNESS-CONTRAST--CAPS"/>GIMP_STOCK_TOOL_BRIGHTNESS_CONTRAST GIMP_STOCK_TOOL_BRIGHTNESS_CONTRAST#define GIMP_STOCK_TOOL_BRIGHTNESS_CONTRAST "gimp-tool-brightness-contrast" @@ -1184,7 +1184,7 @@ -<anchor id="GIMP-STOCK-TOOL-BUCKET-FILL-CAPS"/>GIMP_STOCK_TOOL_BUCKET_FILL +<anchor id="GIMP-STOCK-TOOL-BUCKET-FILL--CAPS"/>GIMP_STOCK_TOOL_BUCKET_FILL GIMP_STOCK_TOOL_BUCKET_FILL#define GIMP_STOCK_TOOL_BUCKET_FILL "gimp-tool-bucket-fill" @@ -1192,7 +1192,7 @@ -<anchor id="GIMP-STOCK-TOOL-BY-COLOR-SELECT-CAPS"/>GIMP_STOCK_TOOL_BY_COLOR_SELECT +<anchor id="GIMP-STOCK-TOOL-BY-COLOR-SELECT--CAPS"/>GIMP_STOCK_TOOL_BY_COLOR_SELECT GIMP_STOCK_TOOL_BY_COLOR_SELECT#define GIMP_STOCK_TOOL_BY_COLOR_SELECT "gimp-tool-by-color-select" @@ -1200,7 +1200,7 @@ -<anchor id="GIMP-STOCK-TOOL-CLONE-CAPS"/>GIMP_STOCK_TOOL_CLONE +<anchor id="GIMP-STOCK-TOOL-CLONE--CAPS"/>GIMP_STOCK_TOOL_CLONE GIMP_STOCK_TOOL_CLONE#define GIMP_STOCK_TOOL_CLONE "gimp-tool-clone" @@ -1208,7 +1208,7 @@ -<anchor id="GIMP-STOCK-TOOL-COLOR-BALANCE-CAPS"/>GIMP_STOCK_TOOL_COLOR_BALANCE +<anchor id="GIMP-STOCK-TOOL-COLOR-BALANCE--CAPS"/>GIMP_STOCK_TOOL_COLOR_BALANCE GIMP_STOCK_TOOL_COLOR_BALANCE#define GIMP_STOCK_TOOL_COLOR_BALANCE "gimp-tool-color-balance" @@ -1216,7 +1216,7 @@ -<anchor id="GIMP-STOCK-TOOL-COLOR-PICKER-CAPS"/>GIMP_STOCK_TOOL_COLOR_PICKER +<anchor id="GIMP-STOCK-TOOL-COLOR-PICKER--CAPS"/>GIMP_STOCK_TOOL_COLOR_PICKER GIMP_STOCK_TOOL_COLOR_PICKER#define GIMP_STOCK_TOOL_COLOR_PICKER "gimp-tool-color-picker" @@ -1224,7 +1224,7 @@ -<anchor id="GIMP-STOCK-TOOL-COLORIZE-CAPS"/>GIMP_STOCK_TOOL_COLORIZE +<anchor id="GIMP-STOCK-TOOL-COLORIZE--CAPS"/>GIMP_STOCK_TOOL_COLORIZE GIMP_STOCK_TOOL_COLORIZE#define GIMP_STOCK_TOOL_COLORIZE "gimp-tool-colorize" @@ -1232,7 +1232,7 @@ -<anchor id="GIMP-STOCK-TOOL-CROP-CAPS"/>GIMP_STOCK_TOOL_CROP +<anchor id="GIMP-STOCK-TOOL-CROP--CAPS"/>GIMP_STOCK_TOOL_CROP GIMP_STOCK_TOOL_CROP#define GIMP_STOCK_TOOL_CROP "gimp-tool-crop" @@ -1240,7 +1240,7 @@ -<anchor id="GIMP-STOCK-TOOL-CURVES-CAPS"/>GIMP_STOCK_TOOL_CURVES +<anchor id="GIMP-STOCK-TOOL-CURVES--CAPS"/>GIMP_STOCK_TOOL_CURVES GIMP_STOCK_TOOL_CURVES#define GIMP_STOCK_TOOL_CURVES "gimp-tool-curves" @@ -1248,7 +1248,7 @@ -<anchor id="GIMP-STOCK-TOOL-DODGE-CAPS"/>GIMP_STOCK_TOOL_DODGE +<anchor id="GIMP-STOCK-TOOL-DODGE--CAPS"/>GIMP_STOCK_TOOL_DODGE GIMP_STOCK_TOOL_DODGE#define GIMP_STOCK_TOOL_DODGE "gimp-tool-dodge" @@ -1256,7 +1256,7 @@ -<anchor id="GIMP-STOCK-TOOL-ELLIPSE-SELECT-CAPS"/>GIMP_STOCK_TOOL_ELLIPSE_SELECT +<anchor id="GIMP-STOCK-TOOL-ELLIPSE-SELECT--CAPS"/>GIMP_STOCK_TOOL_ELLIPSE_SELECT GIMP_STOCK_TOOL_ELLIPSE_SELECT#define GIMP_STOCK_TOOL_ELLIPSE_SELECT "gimp-tool-ellipse-select" @@ -1264,7 +1264,7 @@ -<anchor id="GIMP-STOCK-TOOL-ERASER-CAPS"/>GIMP_STOCK_TOOL_ERASER +<anchor id="GIMP-STOCK-TOOL-ERASER--CAPS"/>GIMP_STOCK_TOOL_ERASER GIMP_STOCK_TOOL_ERASER#define GIMP_STOCK_TOOL_ERASER "gimp-tool-eraser" @@ -1272,7 +1272,7 @@ -<anchor id="GIMP-STOCK-TOOL-FLIP-CAPS"/>GIMP_STOCK_TOOL_FLIP +<anchor id="GIMP-STOCK-TOOL-FLIP--CAPS"/>GIMP_STOCK_TOOL_FLIP GIMP_STOCK_TOOL_FLIP#define GIMP_STOCK_TOOL_FLIP "gimp-tool-flip" @@ -1280,7 +1280,7 @@ -<anchor id="GIMP-STOCK-TOOL-FREE-SELECT-CAPS"/>GIMP_STOCK_TOOL_FREE_SELECT +<anchor id="GIMP-STOCK-TOOL-FREE-SELECT--CAPS"/>GIMP_STOCK_TOOL_FREE_SELECT GIMP_STOCK_TOOL_FREE_SELECT#define GIMP_STOCK_TOOL_FREE_SELECT "gimp-tool-free-select" @@ -1288,7 +1288,7 @@ -<anchor id="GIMP-STOCK-TOOL-FUZZY-SELECT-CAPS"/>GIMP_STOCK_TOOL_FUZZY_SELECT +<anchor id="GIMP-STOCK-TOOL-FUZZY-SELECT--CAPS"/>GIMP_STOCK_TOOL_FUZZY_SELECT GIMP_STOCK_TOOL_FUZZY_SELECT#define GIMP_STOCK_TOOL_FUZZY_SELECT "gimp-tool-fuzzy-select" @@ -1296,7 +1296,7 @@ -<anchor id="GIMP-STOCK-TOOL-HUE-SATURATION-CAPS"/>GIMP_STOCK_TOOL_HUE_SATURATION +<anchor id="GIMP-STOCK-TOOL-HUE-SATURATION--CAPS"/>GIMP_STOCK_TOOL_HUE_SATURATION GIMP_STOCK_TOOL_HUE_SATURATION#define GIMP_STOCK_TOOL_HUE_SATURATION "gimp-tool-hue-saturation" @@ -1304,7 +1304,7 @@ -<anchor id="GIMP-STOCK-TOOL-INK-CAPS"/>GIMP_STOCK_TOOL_INK +<anchor id="GIMP-STOCK-TOOL-INK--CAPS"/>GIMP_STOCK_TOOL_INK GIMP_STOCK_TOOL_INK#define GIMP_STOCK_TOOL_INK "gimp-tool-ink" @@ -1312,7 +1312,7 @@ -<anchor id="GIMP-STOCK-TOOL-ISCISSORS-CAPS"/>GIMP_STOCK_TOOL_ISCISSORS +<anchor id="GIMP-STOCK-TOOL-ISCISSORS--CAPS"/>GIMP_STOCK_TOOL_ISCISSORS GIMP_STOCK_TOOL_ISCISSORS#define GIMP_STOCK_TOOL_ISCISSORS "gimp-tool-iscissors" @@ -1320,7 +1320,7 @@ -<anchor id="GIMP-STOCK-TOOL-LEVELS-CAPS"/>GIMP_STOCK_TOOL_LEVELS +<anchor id="GIMP-STOCK-TOOL-LEVELS--CAPS"/>GIMP_STOCK_TOOL_LEVELS GIMP_STOCK_TOOL_LEVELS#define GIMP_STOCK_TOOL_LEVELS "gimp-tool-levels" @@ -1328,7 +1328,7 @@ -<anchor id="GIMP-STOCK-TOOL-MEASURE-CAPS"/>GIMP_STOCK_TOOL_MEASURE +<anchor id="GIMP-STOCK-TOOL-MEASURE--CAPS"/>GIMP_STOCK_TOOL_MEASURE GIMP_STOCK_TOOL_MEASURE#define GIMP_STOCK_TOOL_MEASURE "gimp-tool-measure" @@ -1336,7 +1336,7 @@ -<anchor id="GIMP-STOCK-TOOL-MOVE-CAPS"/>GIMP_STOCK_TOOL_MOVE +<anchor id="GIMP-STOCK-TOOL-MOVE--CAPS"/>GIMP_STOCK_TOOL_MOVE GIMP_STOCK_TOOL_MOVE#define GIMP_STOCK_TOOL_MOVE "gimp-tool-move" @@ -1344,7 +1344,7 @@ -<anchor id="GIMP-STOCK-TOOL-PAINTBRUSH-CAPS"/>GIMP_STOCK_TOOL_PAINTBRUSH +<anchor id="GIMP-STOCK-TOOL-PAINTBRUSH--CAPS"/>GIMP_STOCK_TOOL_PAINTBRUSH GIMP_STOCK_TOOL_PAINTBRUSH#define GIMP_STOCK_TOOL_PAINTBRUSH "gimp-tool-paintbrush" @@ -1352,7 +1352,7 @@ -<anchor id="GIMP-STOCK-TOOL-PATH-CAPS"/>GIMP_STOCK_TOOL_PATH +<anchor id="GIMP-STOCK-TOOL-PATH--CAPS"/>GIMP_STOCK_TOOL_PATH GIMP_STOCK_TOOL_PATH#define GIMP_STOCK_TOOL_PATH "gimp-tool-path" @@ -1360,7 +1360,7 @@ -<anchor id="GIMP-STOCK-TOOL-PENCIL-CAPS"/>GIMP_STOCK_TOOL_PENCIL +<anchor id="GIMP-STOCK-TOOL-PENCIL--CAPS"/>GIMP_STOCK_TOOL_PENCIL GIMP_STOCK_TOOL_PENCIL#define GIMP_STOCK_TOOL_PENCIL "gimp-tool-pencil" @@ -1368,7 +1368,7 @@ -<anchor id="GIMP-STOCK-TOOL-PERSPECTIVE-CAPS"/>GIMP_STOCK_TOOL_PERSPECTIVE +<anchor id="GIMP-STOCK-TOOL-PERSPECTIVE--CAPS"/>GIMP_STOCK_TOOL_PERSPECTIVE GIMP_STOCK_TOOL_PERSPECTIVE#define GIMP_STOCK_TOOL_PERSPECTIVE "gimp-tool-perspective" @@ -1376,7 +1376,7 @@ -<anchor id="GIMP-STOCK-TOOL-POSTERIZE-CAPS"/>GIMP_STOCK_TOOL_POSTERIZE +<anchor id="GIMP-STOCK-TOOL-POSTERIZE--CAPS"/>GIMP_STOCK_TOOL_POSTERIZE GIMP_STOCK_TOOL_POSTERIZE#define GIMP_STOCK_TOOL_POSTERIZE "gimp-tool-posterize" @@ -1384,7 +1384,7 @@ -<anchor id="GIMP-STOCK-TOOL-RECT-SELECT-CAPS"/>GIMP_STOCK_TOOL_RECT_SELECT +<anchor id="GIMP-STOCK-TOOL-RECT-SELECT--CAPS"/>GIMP_STOCK_TOOL_RECT_SELECT GIMP_STOCK_TOOL_RECT_SELECT#define GIMP_STOCK_TOOL_RECT_SELECT "gimp-tool-rect-select" @@ -1392,7 +1392,7 @@ -<anchor id="GIMP-STOCK-TOOL-ROTATE-CAPS"/>GIMP_STOCK_TOOL_ROTATE +<anchor id="GIMP-STOCK-TOOL-ROTATE--CAPS"/>GIMP_STOCK_TOOL_ROTATE GIMP_STOCK_TOOL_ROTATE#define GIMP_STOCK_TOOL_ROTATE "gimp-tool-rotate" @@ -1400,7 +1400,7 @@ -<anchor id="GIMP-STOCK-TOOL-SCALE-CAPS"/>GIMP_STOCK_TOOL_SCALE +<anchor id="GIMP-STOCK-TOOL-SCALE--CAPS"/>GIMP_STOCK_TOOL_SCALE GIMP_STOCK_TOOL_SCALE#define GIMP_STOCK_TOOL_SCALE "gimp-tool-scale" @@ -1408,7 +1408,7 @@ -<anchor id="GIMP-STOCK-TOOL-SHEAR-CAPS"/>GIMP_STOCK_TOOL_SHEAR +<anchor id="GIMP-STOCK-TOOL-SHEAR--CAPS"/>GIMP_STOCK_TOOL_SHEAR GIMP_STOCK_TOOL_SHEAR#define GIMP_STOCK_TOOL_SHEAR "gimp-tool-shear" @@ -1416,7 +1416,7 @@ -<anchor id="GIMP-STOCK-TOOL-SMUDGE-CAPS"/>GIMP_STOCK_TOOL_SMUDGE +<anchor id="GIMP-STOCK-TOOL-SMUDGE--CAPS"/>GIMP_STOCK_TOOL_SMUDGE GIMP_STOCK_TOOL_SMUDGE#define GIMP_STOCK_TOOL_SMUDGE "gimp-tool-smudge" @@ -1424,7 +1424,7 @@ -<anchor id="GIMP-STOCK-TOOL-TEXT-CAPS"/>GIMP_STOCK_TOOL_TEXT +<anchor id="GIMP-STOCK-TOOL-TEXT--CAPS"/>GIMP_STOCK_TOOL_TEXT GIMP_STOCK_TOOL_TEXT#define GIMP_STOCK_TOOL_TEXT "gimp-tool-text" @@ -1432,7 +1432,7 @@ -<anchor id="GIMP-STOCK-TOOL-THRESHOLD-CAPS"/>GIMP_STOCK_TOOL_THRESHOLD +<anchor id="GIMP-STOCK-TOOL-THRESHOLD--CAPS"/>GIMP_STOCK_TOOL_THRESHOLD GIMP_STOCK_TOOL_THRESHOLD#define GIMP_STOCK_TOOL_THRESHOLD "gimp-tool-threshold" @@ -1440,7 +1440,7 @@ -<anchor id="GIMP-STOCK-TOOL-ZOOM-CAPS"/>GIMP_STOCK_TOOL_ZOOM +<anchor id="GIMP-STOCK-TOOL-ZOOM--CAPS"/>GIMP_STOCK_TOOL_ZOOM GIMP_STOCK_TOOL_ZOOM#define GIMP_STOCK_TOOL_ZOOM "gimp-tool-zoom" @@ -1448,56 +1448,56 @@ -<anchor id="GIMP-STOCK-HCHAIN-CAPS"/>GIMP_STOCK_HCHAIN +<anchor id="GIMP-STOCK-HCHAIN--CAPS"/>GIMP_STOCK_HCHAIN GIMP_STOCK_HCHAIN#define GIMP_STOCK_HCHAIN "gimp-hchain" -<anchor id="GIMP-STOCK-HCHAIN-BROKEN-CAPS"/>GIMP_STOCK_HCHAIN_BROKEN +<anchor id="GIMP-STOCK-HCHAIN-BROKEN--CAPS"/>GIMP_STOCK_HCHAIN_BROKEN GIMP_STOCK_HCHAIN_BROKEN#define GIMP_STOCK_HCHAIN_BROKEN "gimp-hchain-broken" -<anchor id="GIMP-STOCK-VCHAIN-CAPS"/>GIMP_STOCK_VCHAIN +<anchor id="GIMP-STOCK-VCHAIN--CAPS"/>GIMP_STOCK_VCHAIN GIMP_STOCK_VCHAIN#define GIMP_STOCK_VCHAIN "gimp-vchain" -<anchor id="GIMP-STOCK-VCHAIN-BROKEN-CAPS"/>GIMP_STOCK_VCHAIN_BROKEN +<anchor id="GIMP-STOCK-VCHAIN-BROKEN--CAPS"/>GIMP_STOCK_VCHAIN_BROKEN GIMP_STOCK_VCHAIN_BROKEN#define GIMP_STOCK_VCHAIN_BROKEN "gimp-vchain-broken" -<anchor id="GIMP-STOCK-TEXTURE-CAPS"/>GIMP_STOCK_TEXTURE +<anchor id="GIMP-STOCK-TEXTURE--CAPS"/>GIMP_STOCK_TEXTURE GIMP_STOCK_TEXTURE#define GIMP_STOCK_TEXTURE "gimp-texture" -<anchor id="GIMP-STOCK-FRAME-CAPS"/>GIMP_STOCK_FRAME +<anchor id="GIMP-STOCK-FRAME--CAPS"/>GIMP_STOCK_FRAME GIMP_STOCK_FRAME#define GIMP_STOCK_FRAME "gimp-frame" -<anchor id="GIMP-STOCK-ERROR-CAPS"/>GIMP_STOCK_ERROR +<anchor id="GIMP-STOCK-ERROR--CAPS"/>GIMP_STOCK_ERROR GIMP_STOCK_ERROR#define GIMP_STOCK_ERROR "gimp-error" -<anchor id="GIMP-STOCK-INFO-CAPS"/>GIMP_STOCK_INFO +<anchor id="GIMP-STOCK-INFO--CAPS"/>GIMP_STOCK_INFO GIMP_STOCK_INFO#define GIMP_STOCK_INFO "gimp-info" @@ -1506,14 +1506,14 @@ -<anchor id="GIMP-STOCK-QUESTION-CAPS"/>GIMP_STOCK_QUESTION +<anchor id="GIMP-STOCK-QUESTION--CAPS"/>GIMP_STOCK_QUESTION GIMP_STOCK_QUESTION#define GIMP_STOCK_QUESTION "gimp-question" -<anchor id="GIMP-STOCK-WARNING-CAPS"/>GIMP_STOCK_WARNING +<anchor id="GIMP-STOCK-WARNING--CAPS"/>GIMP_STOCK_WARNING GIMP_STOCK_WARNING#define GIMP_STOCK_WARNING "gimp-warning" @@ -1522,7 +1522,7 @@ -<anchor id="GIMP-STOCK-WILBER-CAPS"/>GIMP_STOCK_WILBER +<anchor id="GIMP-STOCK-WILBER--CAPS"/>GIMP_STOCK_WILBER GIMP_STOCK_WILBER#define GIMP_STOCK_WILBER "gimp-wilber" @@ -1530,56 +1530,56 @@ -<anchor id="GIMP-STOCK-WILBER-EEK-CAPS"/>GIMP_STOCK_WILBER_EEK +<anchor id="GIMP-STOCK-WILBER-EEK--CAPS"/>GIMP_STOCK_WILBER_EEK GIMP_STOCK_WILBER_EEK#define GIMP_STOCK_WILBER_EEK "gimp-wilber-eek" -<anchor id="GIMP-STOCK-BRUSH-CAPS"/>GIMP_STOCK_BRUSH +<anchor id="GIMP-STOCK-BRUSH--CAPS"/>GIMP_STOCK_BRUSH GIMP_STOCK_BRUSH#define GIMP_STOCK_BRUSH GIMP_STOCK_TOOL_PAINTBRUSH -<anchor id="GIMP-STOCK-BUFFER-CAPS"/>GIMP_STOCK_BUFFER +<anchor id="GIMP-STOCK-BUFFER--CAPS"/>GIMP_STOCK_BUFFER GIMP_STOCK_BUFFER#define GIMP_STOCK_BUFFER GTK_STOCK_PASTE -<anchor id="GIMP-STOCK-FONT-CAPS"/>GIMP_STOCK_FONT +<anchor id="GIMP-STOCK-FONT--CAPS"/>GIMP_STOCK_FONT GIMP_STOCK_FONT#define GIMP_STOCK_FONT GTK_STOCK_SELECT_FONT -<anchor id="GIMP-STOCK-GRADIENT-CAPS"/>GIMP_STOCK_GRADIENT +<anchor id="GIMP-STOCK-GRADIENT--CAPS"/>GIMP_STOCK_GRADIENT GIMP_STOCK_GRADIENT#define GIMP_STOCK_GRADIENT GIMP_STOCK_TOOL_BLEND -<anchor id="GIMP-STOCK-PALETTE-CAPS"/>GIMP_STOCK_PALETTE +<anchor id="GIMP-STOCK-PALETTE--CAPS"/>GIMP_STOCK_PALETTE GIMP_STOCK_PALETTE#define GIMP_STOCK_PALETTE GTK_STOCK_SELECT_COLOR -<anchor id="GIMP-STOCK-PATTERN-CAPS"/>GIMP_STOCK_PATTERN +<anchor id="GIMP-STOCK-PATTERN--CAPS"/>GIMP_STOCK_PATTERN GIMP_STOCK_PATTERN#define GIMP_STOCK_PATTERN GIMP_STOCK_TOOL_BUCKET_FILL -<anchor id="GIMP-STOCK-ZOOM-FOLLOW-WINDOW-CAPS"/>GIMP_STOCK_ZOOM_FOLLOW_WINDOW +<anchor id="GIMP-STOCK-ZOOM-FOLLOW-WINDOW--CAPS"/>GIMP_STOCK_ZOOM_FOLLOW_WINDOW GIMP_STOCK_ZOOM_FOLLOW_WINDOW#define GIMP_STOCK_ZOOM_FOLLOW_WINDOW "gimp-zoom-follow-window" diff -uraN gimp-2.2.4/devel-docs/libgimpwidgets/xml/gimpunitmenu.xml gimp-2.2.5/devel-docs/libgimpwidgets/xml/gimpunitmenu.xml --- gimp-2.2.4/devel-docs/libgimpwidgets/xml/gimpunitmenu.xml 2005-02-22 23:13:30.000000000 +0100 +++ gimp-2.2.5/devel-docs/libgimpwidgets/xml/gimpunitmenu.xml 2005-04-09 23:10:40.000000000 +0200 @@ -19,7 +19,7 @@ -struct GimpUnitMenu; + GimpUnitMenu; GtkWidget* gimp_unit_menu_new (const gchar *format, GimpUnit unit, gboolean show_pixels, @@ -68,7 +68,7 @@ "unit-changed" - void user_function (GimpUnitMenu *, + void user_function (GimpUnitMenu *arg0, gpointer user_data); @@ -97,8 +97,8 @@ Details -<anchor id="GimpUnitMenu-struct"/>struct GimpUnitMenu -GimpUnitMenustruct GimpUnitMenu; +<anchor id="GimpUnitMenu-struct"/>GimpUnitMenu +GimpUnitMenutypedef struct _GimpUnitMenu GimpUnitMenu; @@ -168,7 +168,7 @@ 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. +Returns : A pointer to the new GimpUnitMenu widget. @@ -198,7 +198,7 @@ menu : The unit menu you want to know the unit of. -Returns : The unit the user has selected. +Returns : The unit the user has selected. @@ -213,7 +213,7 @@ menu : a GimpUnitMenu -Returns : the configured number of digits for a pixel size +Returns : the configured number of digits for a pixel size @@ -247,7 +247,7 @@ Signals <anchor id="GimpUnitMenu-unit-changed"/>The "unit-changed" signal -void user_function (GimpUnitMenu *, +void user_function (GimpUnitMenu *arg0, gpointer user_data); This signal is emitted whenever the user selects a GimpUnit from diff -uraN gimp-2.2.4/devel-docs/libgimpwidgets/xml/gimpwidgets.xml gimp-2.2.5/devel-docs/libgimpwidgets/xml/gimpwidgets.xml --- gimp-2.2.4/devel-docs/libgimpwidgets/xml/gimpwidgets.xml 2005-02-22 23:13:30.000000000 +0100 +++ gimp-2.2.5/devel-docs/libgimpwidgets/xml/gimpwidgets.xml 2005-04-09 23:10:40.000000000 +0200 @@ -48,11 +48,11 @@ gdouble page_size, gdouble climb_rate, guint digits); -#define GIMP_SCALE_ENTRY_LABEL (adj) -#define GIMP_SCALE_ENTRY_SCALE (adj) -#define GIMP_SCALE_ENTRY_SCALE_ADJ (adj) -#define GIMP_SCALE_ENTRY_SPINBUTTON (adj) -#define GIMP_SCALE_ENTRY_SPINBUTTON_ADJ (adj) +#define GIMP_SCALE_ENTRY_LABEL (adj) +#define GIMP_SCALE_ENTRY_SCALE (adj) +#define GIMP_SCALE_ENTRY_SCALE_ADJ (adj) +#define GIMP_SCALE_ENTRY_SPINBUTTON (adj) +#define GIMP_SCALE_ENTRY_SPINBUTTON_ADJ (adj) GtkObject* gimp_scale_entry_new (GtkTable *table, gint column, gint row, @@ -91,12 +91,12 @@ guint digits, const gchar *tooltip, const gchar *help_id); -#define GIMP_RANDOM_SEED_SPINBUTTON (hbox) -#define GIMP_RANDOM_SEED_SPINBUTTON_ADJ (hbox) -#define GIMP_RANDOM_SEED_TOGGLE (hbox) +#define GIMP_RANDOM_SEED_SPINBUTTON (hbox) +#define GIMP_RANDOM_SEED_SPINBUTTON_ADJ (hbox) +#define GIMP_RANDOM_SEED_TOGGLE (hbox) GtkWidget* gimp_random_seed_new (guint32 *seed, gboolean *random_seed); -#define GIMP_COORDINATES_CHAINBUTTON (sizeentry) +#define GIMP_COORDINATES_CHAINBUTTON (sizeentry) GtkWidget* gimp_coordinates_new (GimpUnit unit, const gchar *unit_format, gboolean menu_show_pixels, @@ -188,7 +188,7 @@ ... : A NULL-terminated va_list describing the radio buttons. -Returns : A GtkFrame or GtkVbox (depending on in_frame). +Returns : A GtkFrame or GtkVbox (depending on in_frame). @@ -228,7 +228,7 @@ A NULL-terminated va_list describing the radio buttons. -Returns : A GtkFrame or GtkVbox (depending on in_frame). +Returns : A GtkFrame or GtkVbox (depending on in_frame). @@ -288,7 +288,7 @@ A NULL-terminated va_list describing the radio buttons. -Returns : A GtkFrame or GtkVbox (depending on in_frame). +Returns : A GtkFrame or GtkVbox (depending on in_frame). @@ -355,11 +355,11 @@ digits : The spinbutton's number of decimal digits. -Returns : A GtkSpinbutton and it's GtkAdjustment. +Returns : A GtkSpinbutton and it's GtkAdjustment. -<anchor id="GIMP-SCALE-ENTRY-LABEL-CAPS"/>GIMP_SCALE_ENTRY_LABEL() +<anchor id="GIMP-SCALE-ENTRY-LABEL--CAPS"/>GIMP_SCALE_ENTRY_LABEL() GIMP_SCALE_ENTRY_LABEL#define GIMP_SCALE_ENTRY_LABEL(adj) Returns the scale_entry's GtkLabel. @@ -371,7 +371,7 @@ -<anchor id="GIMP-SCALE-ENTRY-SCALE-CAPS"/>GIMP_SCALE_ENTRY_SCALE() +<anchor id="GIMP-SCALE-ENTRY-SCALE--CAPS"/>GIMP_SCALE_ENTRY_SCALE() GIMP_SCALE_ENTRY_SCALE#define GIMP_SCALE_ENTRY_SCALE(adj) Returns the scale_entry's GtkHScale. @@ -383,7 +383,7 @@ -<anchor id="GIMP-SCALE-ENTRY-SCALE-ADJ-CAPS"/>GIMP_SCALE_ENTRY_SCALE_ADJ() +<anchor id="GIMP-SCALE-ENTRY-SCALE-ADJ--CAPS"/>GIMP_SCALE_ENTRY_SCALE_ADJ() GIMP_SCALE_ENTRY_SCALE_ADJ#define GIMP_SCALE_ENTRY_SCALE_ADJ(adj) Returns the GtkAdjustment of the scale_entry's GtkHScale. @@ -395,7 +395,7 @@ -<anchor id="GIMP-SCALE-ENTRY-SPINBUTTON-CAPS"/>GIMP_SCALE_ENTRY_SPINBUTTON() +<anchor id="GIMP-SCALE-ENTRY-SPINBUTTON--CAPS"/>GIMP_SCALE_ENTRY_SPINBUTTON() GIMP_SCALE_ENTRY_SPINBUTTON#define GIMP_SCALE_ENTRY_SPINBUTTON(adj) Returns the scale_entry's GtkSpinButton. @@ -407,7 +407,7 @@ -<anchor id="GIMP-SCALE-ENTRY-SPINBUTTON-ADJ-CAPS"/>GIMP_SCALE_ENTRY_SPINBUTTON_ADJ() +<anchor id="GIMP-SCALE-ENTRY-SPINBUTTON-ADJ--CAPS"/>GIMP_SCALE_ENTRY_SPINBUTTON_ADJ() GIMP_SCALE_ENTRY_SPINBUTTON_ADJ#define GIMP_SCALE_ENTRY_SPINBUTTON_ADJ(adj) Returns the GtkAdjustment of the scale_entry's GtkSpinButton. @@ -498,7 +498,7 @@ help_id : The widgets' help_id (see gimp_help_set_help_data()). -Returns : The GtkSpinButton's GtkAdjustment. +Returns : The GtkSpinButton's GtkAdjustment. @@ -521,7 +521,7 @@ <anchor id="gimp-scale-entry-set-logarithmic"/>gimp_scale_entry_set_logarithmic () -gimp_scale_entry_set_logarithmicvoid gimp_scale_entry_set_logarithmic +gimp_scale_entry_set_logarithmicvoid gimp_scale_entry_set_logarithmic (GtkObject *adjustment, gboolean logarithmic); @@ -543,7 +543,7 @@ <anchor id="gimp-scale-entry-get-logarithmic"/>gimp_scale_entry_get_logarithmic () -gimp_scale_entry_get_logarithmicgboolean gimp_scale_entry_get_logarithmic +gimp_scale_entry_get_logarithmicgboolean gimp_scale_entry_get_logarithmic (GtkObject *adjustment); @@ -553,7 +553,7 @@ adjustment : a GtkAdjustment as returned by gimp_scale_entry_new() -Returns : TRUE if the the entry's scale widget will behave in +Returns : TRUE if the the entry's scale widget will behave in logharithmic fashion, FALSE for linear behaviour. @@ -624,11 +624,11 @@ help_id : The widgets' help_id (see gimp_help_set_help_data()). -Returns : The GtkSpinButton's GtkAdjustment. +Returns : The GtkSpinButton's GtkAdjustment. -<anchor id="GIMP-RANDOM-SEED-SPINBUTTON-CAPS"/>GIMP_RANDOM_SEED_SPINBUTTON() +<anchor id="GIMP-RANDOM-SEED-SPINBUTTON--CAPS"/>GIMP_RANDOM_SEED_SPINBUTTON() GIMP_RANDOM_SEED_SPINBUTTON#define GIMP_RANDOM_SEED_SPINBUTTON(hbox) Returns the random_seed's GtkSpinButton. @@ -640,7 +640,7 @@ -<anchor id="GIMP-RANDOM-SEED-SPINBUTTON-ADJ-CAPS"/>GIMP_RANDOM_SEED_SPINBUTTON_ADJ() +<anchor id="GIMP-RANDOM-SEED-SPINBUTTON-ADJ--CAPS"/>GIMP_RANDOM_SEED_SPINBUTTON_ADJ() GIMP_RANDOM_SEED_SPINBUTTON_ADJ#define GIMP_RANDOM_SEED_SPINBUTTON_ADJ(hbox) Returns the GtkAdjustment of the random_seed's GtkSpinButton. @@ -652,7 +652,7 @@ -<anchor id="GIMP-RANDOM-SEED-TOGGLE-CAPS"/>GIMP_RANDOM_SEED_TOGGLE() +<anchor id="GIMP-RANDOM-SEED-TOGGLE--CAPS"/>GIMP_RANDOM_SEED_TOGGLE() GIMP_RANDOM_SEED_TOGGLE#define GIMP_RANDOM_SEED_TOGGLE(hbox) @@ -680,12 +680,12 @@ A pointer to a boolean indicating whether seed should be initialised randomly or not. -Returns : A GtkHBox containing a GtkSpinButton for the seed and +Returns : A GtkHBox containing a GtkSpinButton for the seed and a GtkButton for setting a random seed. -<anchor id="GIMP-COORDINATES-CHAINBUTTON-CAPS"/>GIMP_COORDINATES_CHAINBUTTON() +<anchor id="GIMP-COORDINATES-CHAINBUTTON--CAPS"/>GIMP_COORDINATES_CHAINBUTTON() GIMP_COORDINATES_CHAINBUTTON#define GIMP_COORDINATES_CHAINBUTTON(sizeentry) Returns the GimpChainButton which is attached to the GimpSizeEntry. @@ -800,12 +800,12 @@ ysize_100 : The Y value which will be treated as 100%. -Returns : The new GimpSizeEntry. +Returns : The new GimpSizeEntry. <anchor id="gimp-pixmap-button-new"/>gimp_pixmap_button_new () -gimp_pixmap_button_newGtkWidget* gimp_pixmap_button_new (gchar **xpm_data, +gimp_pixmap_button_newGtkWidget* gimp_pixmap_button_new (gchar **xpm_data, const gchar *text); gimp_pixmap_button_new is deprecated and should not be used in newly-written code. @@ -820,7 +820,7 @@ text : An optional text which will appear right of the pixmap. -Returns : The new GtkButton. +Returns : The new GtkButton. @@ -889,7 +889,7 @@ gpointer data); Note that the GtkAdjustment's value (which is a gdouble) will be -rounded with RINT(). +rounded with RINT(). @@ -1022,12 +1022,12 @@ left_align : TRUE if the widget should be left-aligned. -Returns : The created GtkLabel. +Returns : The created GtkLabel. <anchor id="gimp-label-set-attributes"/>gimp_label_set_attributes () -gimp_label_set_attributesvoid gimp_label_set_attributes (GtkLabel *label, +gimp_label_set_attributesvoid gimp_label_set_attributes (GtkLabel *label, ...); Sets Pango attributes on a GtkLabel in a more convenient way than diff -uraN gimp-2.2.4/docs/gimp.1.in gimp-2.2.5/docs/gimp.1.in --- gimp-2.2.4/docs/gimp.1.in 2004-12-17 10:04:24.000000000 +0100 +++ gimp-2.2.5/docs/gimp.1.in 2005-04-07 14:00:42.000000000 +0200 @@ -104,7 +104,7 @@ If the PDB should provide aliases for deprecated functions. .TP 8 .B \-\-batch-interpreter \fI\fP -Speficies the procedure to use to process batch events. The default is +Specifies the procedure to use to process batch events. The default is to let Script-Fu evaluate the commands. .TP 8 .B \-b, \-\-batch \fI\fP @@ -154,8 +154,8 @@ \fB$HOME\fP/@gimpdir@/menurc - user's set of keybindings. -\fB$HOME\fP/@gimpdir@/parasiterc - Description of all available GIMP -parasites. This is file is recreated everytime GIMP starts up. +\fB$HOME\fP/@gimpdir@/parasiterc - Stores all persistent GIMP +parasites. This file will be rewritten every time you quit the GIMP. \fB$HOME\fP/@gimpdir@/sessionrc - This file takes session-specific info (that is info, you want to keep between two GIMP sessions). You @@ -247,7 +247,7 @@ GIMP comes with a default image for the splash screen but it allows system administrators and users to customize the splash screen by providing other images. The image to be used with the splash screen is -choosen as follows: +chosen as follows: .IP 1. GIMP tries to load a random splash screen from the directory diff -uraN gimp-2.2.4/etc/controllerrc gimp-2.2.5/etc/controllerrc --- gimp-2.2.4/etc/controllerrc 2004-08-11 11:16:36.000000000 +0200 +++ gimp-2.2.5/etc/controllerrc 2005-03-22 10:41:55.000000000 +0100 @@ -7,14 +7,14 @@ (mapping (map "scroll-up-alt" "context-opacity-increase-skip") (map "scroll-down-alt" "context-opacity-decrease-skip") - (map "scroll-up-control-alt" "context-gradient-next") - (map "scroll-down-control-alt" "context-gradient-previous") - (map "scroll-up-shift-alt" "context-pattern-next") - (map "scroll-down-shift-alt" "context-pattern-previous") - (map "scroll-up-shift-control" "context-brush-next") - (map "scroll-down-shift-control" "context-brush-previous") - (map "scroll-up-shift-control-alt" "context-font-next") - (map "scroll-down-shift-control-alt" "context-font-previous"))) + (map "scroll-up-control-alt" "context-gradient-select-next") + (map "scroll-down-control-alt" "context-gradient-select-previous") + (map "scroll-up-shift-alt" "context-pattern-select-next") + (map "scroll-down-shift-alt" "context-pattern-select-previous") + (map "scroll-up-shift-control" "context-brush-select-next") + (map "scroll-down-shift-control" "context-brush-select-previous") + (map "scroll-up-shift-control-alt" "context-font-select-next") + (map "scroll-down-shift-control-alt" "context-font-select-previous"))) (GimpControllerInfo "Main Keyboard" (enabled yes) diff -uraN gimp-2.2.4/libgimpbase/gimpversion.h gimp-2.2.5/libgimpbase/gimpversion.h --- gimp-2.2.4/libgimpbase/gimpversion.h 2005-02-12 14:37:59.000000000 +0100 +++ gimp-2.2.5/libgimpbase/gimpversion.h 2005-02-24 11:33:58.000000000 +0100 @@ -11,8 +11,8 @@ #define GIMP_MAJOR_VERSION (2) #define GIMP_MINOR_VERSION (2) -#define GIMP_MICRO_VERSION (4) -#define GIMP_VERSION "2.2.4" +#define GIMP_MICRO_VERSION (5) +#define GIMP_VERSION "2.2.5" #define GIMP_API_VERSION "2.0" #define GIMP_CHECK_VERSION(major, minor, micro) \ (GIMP_MAJOR_VERSION > (major) || \ diff -uraN gimp-2.2.4/libgimpwidgets/gimpbutton.c gimp-2.2.5/libgimpwidgets/gimpbutton.c --- gimp-2.2.4/libgimpwidgets/gimpbutton.c 2003-12-05 16:55:14.000000000 +0100 +++ gimp-2.2.5/libgimpwidgets/gimpbutton.c 2005-02-24 11:32:44.000000000 +0100 @@ -153,7 +153,7 @@ button = GIMP_BUTTON (widget); - if (bevent->type == GDK_BUTTON_PRESS && bevent->button == 1) + if (bevent->button == 1) { button->press_state = bevent->state; } @@ -165,7 +165,7 @@ if (GTK_WIDGET_CLASS (parent_class)->button_press_event) return GTK_WIDGET_CLASS (parent_class)->button_press_event (widget, bevent); - return FALSE; + return TRUE; } static gboolean diff -uraN gimp-2.2.4/libgimpwidgets/gimpcolorscales.c gimp-2.2.5/libgimpwidgets/gimpcolorscales.c --- gimp-2.2.4/libgimpwidgets/gimpcolorscales.c 2004-08-18 23:50:25.000000000 +0200 +++ gimp-2.2.5/libgimpwidgets/gimpcolorscales.c 2005-03-21 11:21:13.000000000 +0100 @@ -376,8 +376,16 @@ &selector->rgb, &selector->hsv); } + g_signal_handlers_block_by_func (scales->hex_entry, + gimp_color_scales_entry_changed, + scales); + gimp_color_hex_entry_set_color (GIMP_COLOR_HEX_ENTRY (scales->hex_entry), &selector->rgb); + + g_signal_handlers_unblock_by_func (scales->hex_entry, + gimp_color_scales_entry_changed, + scales); } static void diff -uraN gimp-2.2.4/libgimpwidgets/gimpcontroller.c gimp-2.2.5/libgimpwidgets/gimpcontroller.c --- gimp-2.2.4/libgimpwidgets/gimpcontroller.c 2004-11-24 03:17:12.000000000 +0100 +++ gimp-2.2.5/libgimpwidgets/gimpcontroller.c 2005-04-07 12:54:32.000000000 +0200 @@ -48,6 +48,7 @@ static void gimp_controller_class_init (GimpControllerClass *klass); +static void gimp_controller_finalize (GObject *object); static void gimp_controller_set_property (GObject *object, guint property_id, const GValue *value, @@ -114,6 +115,7 @@ parent_class = g_type_class_peek_parent (klass); + object_class->finalize = gimp_controller_finalize; object_class->set_property = gimp_controller_set_property; object_class->get_property = gimp_controller_get_property; @@ -149,6 +151,20 @@ } static void +gimp_controller_finalize (GObject *object) +{ + GimpController *controller = GIMP_CONTROLLER (object); + + if (controller->name) + g_free (controller->name); + + if (controller->state) + g_free (controller->state); + + G_OBJECT_CLASS (parent_class)->finalize (object); +} + +static void gimp_controller_set_property (GObject *object, guint property_id, const GValue *value, diff -uraN gimp-2.2.4/libgimpwidgets/gimpwidgets.c gimp-2.2.5/libgimpwidgets/gimpwidgets.c --- gimp-2.2.4/libgimpwidgets/gimpwidgets.c 2005-01-19 12:45:14.000000000 +0100 +++ gimp-2.2.5/libgimpwidgets/gimpwidgets.c 2005-04-01 12:21:08.000000000 +0200 @@ -1711,7 +1711,7 @@ break; case PANGO_ATTR_SIZE: - attr = pango_attr_stretch_new (va_arg (args, gint)); + attr = pango_attr_size_new (va_arg (args, gint)); break; case PANGO_ATTR_FONT_DESC: diff -uraN gimp-2.2.4/libgimpwidgets/gimpwidgets-private.c gimp-2.2.5/libgimpwidgets/gimpwidgets-private.c --- gimp-2.2.4/libgimpwidgets/gimpwidgets-private.c 2003-11-15 23:53:28.000000000 +0100 +++ gimp-2.2.5/libgimpwidgets/gimpwidgets-private.c 2005-03-17 11:19:25.000000000 +0100 @@ -49,9 +49,10 @@ { static gboolean gimp_widgets_initialized = FALSE; - GdkPixbuf *pixbuf; - GList *icon_list = NULL; - gint i; + GdkPixbuf *pixbuf; + GList *icon_list = NULL; + gint i; + GtkSettings *settings; const guint8 *inline_pixbufs[] = { @@ -84,6 +85,12 @@ g_list_foreach (icon_list, (GFunc) g_object_unref, NULL); g_list_free (icon_list); + /* Disable button order settings because our code doesn't honor it */ + settings = gtk_settings_get_for_screen (gdk_screen_get_default ()); + if (g_object_class_find_property (G_OBJECT_GET_CLASS (settings), + "gtk-alternative-button-order") != NULL) + g_object_set (settings, "gtk-alternative-button-order", FALSE, NULL); + _gimp_help_init (); gimp_widgets_initialized = TRUE; diff -uraN gimp-2.2.4/menus/Makefile.am gimp-2.2.5/menus/Makefile.am --- gimp-2.2.4/menus/Makefile.am 2004-11-04 15:24:32.000000000 +0100 +++ gimp-2.2.5/menus/Makefile.am 2005-04-09 23:07:42.000000000 +0200 @@ -53,7 +53,8 @@ validate: $(menudata_DATA) if HAVE_XMLLINT - @for menu in $(menudata_DATA); do \ + @cd $(srcdir); \ + for menu in $(menudata_DATA); do \ $(XMLLINT) --noout --valid $$menu || \ ( echo "* $$menu INVALID *"; exit 1; ) ; \ done diff -uraN gimp-2.2.4/menus/Makefile.in gimp-2.2.5/menus/Makefile.in --- gimp-2.2.4/menus/Makefile.in 2005-02-22 23:11:14.000000000 +0100 +++ gimp-2.2.5/menus/Makefile.in 2005-04-09 23:09:46.000000000 +0200 @@ -588,7 +588,8 @@ @HAVE_XSLTPROC_FALSE@ @echo "xsltproc is needed to build the menus XML files"; exit 1; validate: $(menudata_DATA) -@HAVE_XMLLINT_TRUE@ @for menu in $(menudata_DATA); do \ +@HAVE_XMLLINT_TRUE@ @cd $(srcdir); \ +@HAVE_XMLLINT_TRUE@ for menu in $(menudata_DATA); do \ @HAVE_XMLLINT_TRUE@ $(XMLLINT) --noout --valid $$menu || \ @HAVE_XMLLINT_TRUE@ ( echo "* $$menu INVALID *"; exit 1; ) ; \ @HAVE_XMLLINT_TRUE@ done diff -uraN gimp-2.2.4/NEWS gimp-2.2.5/NEWS --- gimp-2.2.4/NEWS 2005-02-22 23:02:54.000000000 +0100 +++ gimp-2.2.5/NEWS 2005-04-09 21:46:14.000000000 +0200 @@ -1,4 +1,4 @@ -The GNU Image Manipulation Program Version 2.2 +2The GNU Image Manipulation Program Version 2.2 ---------------------------------------------- This is the stable branch of GIMP 2.2. Only bug-fixes are applied @@ -6,6 +6,52 @@ released as GIMP version 2.4. +Bugs fixed in GIMP 2.2.5 +======================== +- fixed double-click behaviour of GimpButton +- properly handle 302 redirect output from wget in URL plug-in (bug #168322) +- fixed loading of layer masks in PSD plug-in (bug #166976) +- fixed bugs in PSD save plug-in (bugs #167139 and #121871) +- fixed Reset in Scale and Resize dialogs (bug #169011) +- fixed filename encoding issues when loading Script-Fu scripts (bug #165002) +- fixed i18n build quirks (bug #169274) +- improve autoscrolling with tablets in Windows (bug #167960) +- fixed setup of size entries in tool-options (bug #169066) +- when opening images as layers, do it interactively (bug #168936) +- fixed precondition checks in gimp_drawable_transform_scale (bug #170195) +- fixed handling of resolution unit in Print Size dialog (bug #170200) +- disable "gtk-alternative-button-order" setting because our code + doesn't honor it (bug #170543) +- fixed behaviour of selection tool when dragging from top-right (bug #143887) +- speed up conversion of grayscale images to indexed colors (bug #170801) +- fixed bug in grayscale to indexed color conversion (bug #170825) +- don't offer empty palettes for conversion to indexed color (bug #170973) +- disable search in container tree-views since it interferes with global + accelerators (bug #169339) +- corrected mousewheel section of default controllerrc (bug #171083) +- fixed build on amd64/gcc-4.0 (bug #300227) +- unset Keep Transparency from Color to Alpha plug-in. +- fixed crash caused by Histogram dockable in RGB mode (bug #170116) +- fixed statusbar display for negative moves (bug #171497) +- fixed a couple of problems in the BMP plug-in (bug #171306, bug #171453 + and bug #171562) +- fixed bug in Resize dialog if previews are turned off (bug #171827) +- fixed disappearing previews in Rotate Colormap plug-in (bug #172284) +- fixed deletion of fractals in Fractal Explorer plug-in (bug #172347) +- fixed preview in Deinterlace plug-in (bug #172589) +- fixed crashes on exit in some locales (bug #172581) +- fixed installation directories for message catalogs (bug #169274) +- handle deletion of layers and channels that have a floating selection + attached (bug #168582) +- plugged some smaller memory leaks +- fixed preview in Gaussian Blur plug-in for zero radii (bug #173039) +- fixed a couple of problems in the Winicon plug-in +- fixed bug in GIF loader that was triggered with a broken GIF (bug #173119) +- fixed crash in Ink tool (bug #164272) +- let the text tool remember the last-used font (bug #171024) +- quote the print command used in the Print plug-in (bug #169909) + + Bugs fixed in GIMP 2.2.4 ======================== - fixed an out-of-bounds read access in the Edge plug-in (bug #164963) diff -uraN gimp-2.2.4/plug-ins/bmp/bmp.h gimp-2.2.5/plug-ins/bmp/bmp.h --- gimp-2.2.4/plug-ins/bmp/bmp.h 2005-01-14 11:00:51.000000000 +0100 +++ gimp-2.2.5/plug-ins/bmp/bmp.h 2005-03-30 16:14:55.000000000 +0200 @@ -45,7 +45,7 @@ extern struct Bitmap_Head_Struct { - gulong biWidth; /* 12 */ + glong biWidth; /* 12 */ glong biHeight; /* 16 */ gushort biPlanes; /* 1A */ gushort biBitCnt; /* 1C */ diff -uraN gimp-2.2.4/plug-ins/bmp/bmpread.c gimp-2.2.5/plug-ins/bmp/bmpread.c --- gimp-2.2.4/plug-ins/bmp/bmpread.c 2005-01-14 11:00:51.000000000 +0100 +++ gimp-2.2.5/plug-ins/bmp/bmpread.c 2005-03-30 16:14:55.000000000 +0200 @@ -302,6 +302,13 @@ return -1; } + if (Bitmap_Head.biWidth < 0) + { + g_message (_("'%s' is not a valid BMP file"), + gimp_filename_to_utf8 (filename)); + return -1; + } + if (Bitmap_Head.biPlanes != 1) { g_message (_("Error reading BMP file header from '%s'"), gimp_filename_to_utf8 (filename)); @@ -429,7 +436,8 @@ guchar gimp_cmap[768]; gushort rgb; glong rowstride, channels; - gint i, j, cur_progress, max_progress; + gint i, i_max, j, cur_progress, max_progress; + gint total_bytes_read; GimpImageBaseType base_type; GimpImageType image_type; @@ -488,7 +496,10 @@ gimp_image_add_layer (image, layer, 0); drawable = gimp_drawable_get (layer); - dest = g_malloc (drawable->width * drawable->height * channels); + /* use g_malloc0 to initialize the dest buffer so that unspecified + pixels in RLE bitmaps show up as the zeroth element in the palette. + */ + dest = g_malloc0 (drawable->width * drawable->height * channels); buffer = g_malloc (rowbytes); rowstride = drawable->width * channels; @@ -570,6 +581,7 @@ case 1: { if (compression == 0) + /* no compression */ { while (ReadOK (fd, &v, 1)) { @@ -600,12 +612,17 @@ } else { + /* compressed image (either RLE8 or RLE4) */ while (ypos >= 0 && xpos <= width) { ReadOK (fd, buffer, 2); if ((guchar) buffer[0] != 0) /* Count + Color - record */ { + /* encoded mode run - + buffer[0] == run_length + buffer[1] == pixel data + */ for (j = 0; ((guchar) j < (guchar) buffer[0]) && (xpos < width);) { #ifdef DEBUG2 @@ -628,14 +645,25 @@ /* uncompressed record */ { n = buffer[1]; + total_bytes_read = 0; for (j = 0; j < n; j += (8 / bpp)) { - ReadOK (fd, &v, 1); + /* read the next byte in the record */ + ReadOK (fd, &v, 1); + total_bytes_read++; + + /* read all pixels from that byte */ + i_max = 8 / bpp; + if (n - j < i_max) + { + i_max = n - j; + } + i = 1; - while ((i <= (8 / bpp)) && (xpos < width)) + while ((i <= i_max) && (xpos < width)) { temp = dest + (ypos * rowstride) + (xpos * channels); - *temp = (v & (((1<> (8-(i*bpp)); + *temp = (v >> (8-(i*bpp))) & ((1<width, drawable->height, TRUE, FALSE); + 0, 0, drawable->width, drawable->height, TRUE, FALSE); gimp_pixel_rgn_set_rect (&pixel_rgn, dest, - 0, 0, drawable->width, drawable->height); + 0, 0, drawable->width, drawable->height); if ((!grey) && (bpp<= 8)) gimp_image_set_colormap (image, gimp_cmap, ncols); diff -uraN gimp-2.2.4/plug-ins/common/colortoalpha.c gimp-2.2.5/plug-ins/common/colortoalpha.c --- gimp-2.2.4/plug-ins/common/colortoalpha.c 2004-12-27 20:42:16.000000000 +0100 +++ gimp-2.2.5/plug-ins/common/colortoalpha.c 2005-03-23 19:06:08.000000000 +0100 @@ -166,33 +166,36 @@ break; } - if (status == GIMP_PDB_SUCCESS) + if (status == GIMP_PDB_SUCCESS && + gimp_drawable_is_rgb (drawable->drawable_id) && + gimp_drawable_is_layer (drawable->drawable_id)) { + gboolean preserve_trans; + gimp_image_undo_group_start (image_ID); /* Add alpha if not present */ gimp_layer_add_alpha (drawable->drawable_id); + + /* Reget the drawable, bpp might have changed */ drawable = gimp_drawable_get (drawable->drawable_id); - /* Make sure that the drawable is RGB color */ - if (gimp_drawable_is_rgb (drawable->drawable_id) && - gimp_drawable_is_layer (drawable->drawable_id)) - { - gimp_progress_init (_("Removing color...")); - gimp_rgn_iterate2 (drawable, 0 /* unused */, to_alpha_func, NULL); - } + /* Unset 'Keep transparency' */ + preserve_trans = gimp_layer_get_preserve_trans (drawable->drawable_id); + gimp_layer_set_preserve_trans (drawable->drawable_id, FALSE); + + gimp_progress_init (_("Removing color...")); + gimp_rgn_iterate2 (drawable, 0 /* unused */, to_alpha_func, NULL); - gimp_drawable_detach (drawable); + gimp_layer_set_preserve_trans (drawable->drawable_id, preserve_trans); gimp_image_undo_group_end (image_ID); if (run_mode != GIMP_RUN_NONINTERACTIVE) gimp_displays_flush (); } - else - { - gimp_drawable_detach (drawable); - } + + gimp_drawable_detach (drawable); if (run_mode == GIMP_RUN_INTERACTIVE) gimp_set_data ("plug_in_colortoalpha", &pvals, sizeof (pvals)); diff -uraN gimp-2.2.4/plug-ins/common/deinterlace.c gimp-2.2.5/plug-ins/common/deinterlace.c --- gimp-2.2.4/plug-ins/common/deinterlace.c 2004-10-12 23:48:38.000000000 +0200 +++ gimp-2.2.5/plug-ins/common/deinterlace.c 2005-04-04 14:21:46.000000000 +0200 @@ -184,76 +184,84 @@ GimpPreview *preview) { GimpPixelRgn srcPR, destPR; - gint width, height; - gint bytes; gboolean has_alpha; guchar *dest; guchar *dest_buffer = NULL; guchar *upper; guchar *lower; gint row, col; - gint x1, y1, x2, y2; + gint x, y; + gint width, height; + gint bytes; - bytes = drawable->bpp; + bytes = drawable->bpp; if (preview) { - gimp_preview_get_position (preview, &x1, &y1); + gimp_preview_get_position (preview, &x, &y); gimp_preview_get_size (preview, &width, &height); - dest_buffer = dest = g_new (guchar, width * height * bytes); + dest_buffer = g_new (guchar, width * height * bytes); + dest = dest_buffer; } else { - gimp_drawable_mask_bounds (drawable->drawable_id, &x1, &y1, &x2, &y2); - width = x2 - x1; - height = y2 - y1; - dest = g_new (guchar, width * height * bytes); + gint x2, y2; + + gimp_drawable_mask_bounds (drawable->drawable_id, &x, &y, &x2, &y2); + + width = x2 - x; + height = y2 - y; + + dest = g_new (guchar, width * bytes); + + gimp_pixel_rgn_init (&destPR, drawable, x, y, width, height, TRUE, TRUE); } + gimp_pixel_rgn_init (&srcPR, drawable, + x, MAX (y - 1, 0), + width, MIN (height + 1, drawable->height), + FALSE, FALSE); has_alpha = gimp_drawable_has_alpha (drawable->drawable_id); + /* allocate row buffers */ upper = g_new (guchar, width * bytes); lower = g_new (guchar, width * bytes); - /* initialize the 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); - - /* loop through the rows, performing our magic*/ - for (row = y1; row < y1 + height; row++) + /* loop through the rows, performing our magic */ + for (row = y; row < y + height; row++) { - gimp_pixel_rgn_get_row (&srcPR, dest, x1, row, width); + gimp_pixel_rgn_get_row (&srcPR, dest, x, row, width); - /* Only do interpolation if the row: - (1) Isn't one we want to keep - (2) Has both an upper and a lower row - Otherwise, just duplicate the source row - */ - if (!((row % 2 == devals.evenness) || - (row - 1 < 0) || - (row + 1 >= height))) + /* Only do interpolation if the row: + * (1) Isn't one we want to keep + * (2) Has both an upper and a lower row + * Otherwise, just duplicate the source row + */ + if ((row % 2 != devals.evenness) && + (row - 1 >= 0) && (row + 1 < drawable->height)) { - gimp_pixel_rgn_get_row (&srcPR, upper, x1, row - 1, width); - gimp_pixel_rgn_get_row (&srcPR, lower, x1, row + 1, width); + gimp_pixel_rgn_get_row (&srcPR, upper, x, row - 1, width); + gimp_pixel_rgn_get_row (&srcPR, lower, x, row + 1, width); if (has_alpha) { - guchar *upix = upper; - guchar *lpix = lower; - guchar *dpix = dest; + const guchar *upix = upper; + const guchar *lpix = lower; + guchar *dpix = dest; for (col = 0; col < width; col++) { - gint b; - guint ualpha = upix[bytes-1]; - guint lalpha = lpix[bytes-1]; + guint ualpha = upix[bytes - 1]; + guint lalpha = lpix[bytes - 1]; guint alpha = ualpha + lalpha; - if ((dpix[bytes-1] = (alpha >> 1))) + if ((dpix[bytes - 1] = (alpha >> 1))) { - for (b = 0; b < bytes-1; b++) + gint b; + + for (b = 0; b < bytes - 1; b++) dpix[b] = (upix[b] * ualpha + lpix[b] * lalpha) / alpha; } @@ -265,16 +273,17 @@ else { for (col = 0; col < width * bytes; col++) - dest[col] = (upper[col] + lower[col]) / 2; + dest[col] = ((guint) upper[col] + (guint) lower[col]) / 2; } } + if (preview) { dest += width * bytes; } else { - gimp_pixel_rgn_set_row (&destPR, dest, x1, row, width); + gimp_pixel_rgn_set_row (&destPR, dest, x, row, width); if ((row % 5) == 0) gimp_progress_update ((double) row / (double) (height)); @@ -291,7 +300,7 @@ /* update the deinterlaced region */ gimp_drawable_flush (drawable); gimp_drawable_merge_shadow (drawable->drawable_id, TRUE); - gimp_drawable_update (drawable->drawable_id, x1, y1, width, height); + gimp_drawable_update (drawable->drawable_id, x, y, width, height); } g_free (lower); diff -uraN gimp-2.2.4/plug-ins/common/gauss.c gimp-2.2.5/plug-ins/common/gauss.c --- gimp-2.2.4/plug-ins/common/gauss.c 2004-12-27 20:42:16.000000000 +0100 +++ gimp-2.2.5/plug-ins/common/gauss.c 2005-04-08 14:22:53.000000000 +0200 @@ -669,7 +669,7 @@ return; bytes = drawable->bpp; - has_alpha = gimp_drawable_has_alpha(drawable->drawable_id); + has_alpha = gimp_drawable_has_alpha (drawable->drawable_id); switch (method) { @@ -869,6 +869,11 @@ drawable, 0, 0, drawable->width, drawable->height, FALSE, TRUE); } + else if (preview) + { + gimp_pixel_rgn_get_rect (&src_rgn, + preview_buffer1, x1, y1, width, height); + } /* Now the horizontal pass */ if (horz > 0.0) @@ -1039,6 +1044,10 @@ } } } + else if (preview) + { + memcpy (preview_buffer2, preview_buffer1, width * height * bytes); + } if (preview) { diff -uraN gimp-2.2.4/plug-ins/common/gifload.c gimp-2.2.5/plug-ins/common/gifload.c --- gimp-2.2.4/plug-ins/common/gifload.c 2004-11-02 13:00:24.000000000 +0100 +++ gimp-2.2.5/plug-ins/common/gifload.c 2005-04-09 21:46:23.000000000 +0200 @@ -603,8 +603,7 @@ { static unsigned char buf[280]; static int curbit, lastbit, done, last_byte; - int i, j, ret; - unsigned char count; + int i, j, ret, count; if (flag) { diff -uraN gimp-2.2.4/plug-ins/common/psd.c gimp-2.2.5/plug-ins/common/psd.c --- gimp-2.2.4/plug-ins/common/psd.c 2004-11-10 09:23:05.000000000 +0100 +++ gimp-2.2.5/plug-ins/common/psd.c 2005-03-08 16:47:59.000000000 +0100 @@ -1997,9 +1997,10 @@ /* Add alpha - otherwise cannot add layer mask */ gimp_layer_add_alpha (layer_ID); +#endif /* PANOTOOLS_FIX */ /* Add layer mask */ gimp_layer_add_mask (layer_ID, mask_id); -#endif /* PANOTOOLS_FIX */ + drawable = gimp_drawable_get (mask_id); gimp_pixel_rgn_init (&pixel_rgn, drawable, 0, 0, diff -uraN gimp-2.2.4/plug-ins/common/psd_save.c gimp-2.2.5/plug-ins/common/psd_save.c --- gimp-2.2.4/plug-ins/common/psd_save.c 2004-11-14 03:45:11.000000000 +0100 +++ gimp-2.2.5/plug-ins/common/psd_save.c 2005-03-08 16:47:59.000000000 +0100 @@ -41,10 +41,17 @@ * - Cleaned up and GNUstylized. * - Translated all comments and vars in Spanish to English. * + * 2005-2-11 Jay Cox + * Rewrote all the code that deals with pixels to be stingy with + * memory and opperate on tile-size chunks. Create a flattened + * copy of the image when necessary. Fixes file corruption bug + * #167139 and memory bug #121871 */ /* * TODO: + * Save preview + * Save layer masks */ /* @@ -143,6 +150,10 @@ static void write_gchar (FILE *fd, unsigned char val, gchar *why); static void write_gshort (FILE *fd, gshort val, gchar *why); static void write_glong (FILE *fd, glong val, gchar *why); + +static void write_pixel_data (FILE *fd, gint32 drawableID, + gint32 *ChanLenPosition, + glong rowlenOffset); GimpPlugInInfo PLUG_IN_INFO = @@ -429,10 +440,6 @@ write_glong (FILE *fd, glong val, gchar *why) { unsigned char b[4]; - /* b[0] = val & 255; - b[1] = (val >> 8) & 255; - b[2] = (val >> 16) & 255; - b[3] = (val >> 24) & 255;*/ b[3] = val & 255; b[2] = (val >> 8) & 255; @@ -447,45 +454,41 @@ } -static void -pack_pb_line (guchar *start, guchar *end, - guchar *dest_ptr, gshort *length) +static glong +pack_pb_line (guchar *start, glong length, glong stride, + guchar *dest_ptr) { gint i,j; - gint32 remaining; - - remaining = end - start; - *length = 0; - + glong remaining; + remaining = length; + length = 0; while (remaining > 0) { /* Look for characters matching the first */ i = 0; while ((i < 128) && - (start + i < end) && - (start[0] == start[i])) + (remaining - i > 0) && + (start[0] == start[i*stride])) i++; if (i > 1) /* Match found */ { - IF_DEEP_DBG printf ("Repetition: '%d', %d times ------------> ", *start, i); - IF_DEEP_DBG printf ("Writing: '%d' %d\n", -(i - 1), *start); *dest_ptr++ = -(i - 1); *dest_ptr++ = *start; - start += i; + start += i*stride; remaining -= i; - *length += 2; + length += 2; } else /* Look for characters different from the previous */ { i = 0; - while ((i < 128) && - (start + i + 1 <= end) && - (start[i] != start[i + 1] || - start + i + 2 >= end || start[i] != start[i+2])) + while ((i < 128) && + (remaining - (i + 1) > 0) && + (start[i*stride] != start[(i + 1)*stride] || + remaining - (i + 2) <= 0 || start[i*stride] != start[(i+2)*stride])) i++; /* If there's only 1 remaining, the previous WHILE stmt doesn't @@ -493,135 +496,26 @@ if (remaining == 1) { - IF_DEEP_DBG printf ("1 Remaining:\t"); i = 1; } if (i > 0) /* Some distinct ones found */ { - IF_DEEP_DBG printf ("%d distinct ------------> Writing: '%d' ", i, i - 1); - *dest_ptr++ = i - 1; for (j = 0; j < i; j++) { - IF_DEEP_DBG printf ("%d ", start[j]); - *dest_ptr++ = start[j]; + *dest_ptr++ = start[j*stride]; } - - IF_DEEP_DBG printf ("\n"); - - start += i; + start += i*stride; remaining -= i; - *length += i + 1; + length += i + 1; } } - - IF_DEEP_DBG printf ("Remaining: %d\n", remaining); - } - - IF_DEEP_DBG printf ("\nTotal length: %d\n", *length); - -/* if (*length & 1) // length is odd, NOP added (128) - { - *length += 1; - *dest_ptr++ = 128; - - IF_DEEP_DBG printf ("Total modified length: %d\n", *length); - } */ -} - - -static void -GRAYA_to_chans (guchar *greyA, gint numpix, guchar **grey, guchar **alpha) -{ - gint i; - gint nPix; - - if (greyA == NULL) - { - IFDBG printf ("greyA is a null channel"); - *grey = NULL; - *alpha = NULL; - return; - } - - nPix = numpix / 2; - *grey = xmalloc (nPix); - *alpha = xmalloc (nPix); - - for (i = 0; i < nPix; i++) - { - (*grey)[i] = greyA[i * 2]; - (*alpha)[i] = greyA[i * 2 + 1]; - } -} - - -static void -RGB_to_chans (guchar *rgb, gint numpix, - guchar **red, guchar **green, guchar **blue) -{ - gint i; - gint nPix; - - if (rgb == NULL) - { - IFDBG printf ("rgb is a null channel"); - *red = NULL; - *green = NULL; - *blue = NULL; - return; - } - - nPix = numpix / 3; - *red = xmalloc (nPix); - *green = xmalloc (nPix); - *blue = xmalloc (nPix); - - for (i = 0; i < nPix; i++) - { - (*red)[i] = rgb[i * 3]; - (*green)[i] = rgb[i * 3 + 1]; - (*blue)[i] = rgb[i * 3 + 2]; - } -} - - -static void -RGBA_to_chans (guchar *rgbA, gint numpix, - guchar **red, guchar **green, guchar **blue, - guchar **alpha) -{ - gint i; - gint nPix; - - if (rgbA == NULL) - { - IFDBG printf ("rgb is a null channel"); - *red = NULL; - *green = NULL; - *blue = NULL; - *alpha = NULL; - return; - } - - nPix = numpix / 4; - *red = xmalloc (nPix); - *green = xmalloc (nPix); - *blue = xmalloc (nPix); - *alpha = xmalloc (nPix); - - for (i = 0; i < nPix; i++) - { - (*red)[i] = rgbA[i * 4]; - (*green)[i] = rgbA[i * 4 + 1]; - (*blue)[i] = rgbA[i * 4 + 2]; - (*alpha)[i] = rgbA[i * 4 + 3]; } + return length; } - static gint gimpBaseTypeToPsdMode (GimpImageBaseType gimpBaseType) { @@ -774,7 +668,6 @@ save_resources (FILE *fd, gint32 image_id) { gint i; - gchar **chName = NULL; /* Channel names */ gchar *fileName; /* Image file name */ gint32 idActLayer; /* Id of the active layer */ guint nActiveLayer = 0; /* Number of the active layer */ @@ -791,16 +684,6 @@ IFDBG printf (" Function: save_resources\n"); - /* Get channel names */ - - if (PSDImageData.nChannels > 0) - chName = (char **) xmalloc(sizeof (char *) * PSDImageData.nChannels); - - for (i = 0; i < PSDImageData.nChannels; i++) - { - chName[i] = gimp_drawable_get_name (PSDImageData.lChannels[i]); - IFDBG printf (" Channel %d name: %s\n", i, chName[i]); - } /* Get the image title from its filename */ @@ -853,9 +736,11 @@ /* Write all strings */ for (i = PSDImageData.nChannels - 1; i >= 0; i--) - /*write_pascalstring (fd, chName[i], 2, "chanel name"); */ - write_string (fd, chName[i], "channel name"); - + { + char *chName = gimp_drawable_get_name (PSDImageData.lChannels[i]); + write_string (fd, chName, "channel name"); + g_free (chName); + } /* Calculate and write actual resource's length */ eof_pos = ftell (fd); @@ -875,6 +760,45 @@ write_gchar (fd, 0, "pad byte"); } + /* --------------- Write Guides --------------- */ + if (gimp_image_find_next_guide(image_id, 0)) + { + gint n_guides = 0; + gint guide_id =0; + + /* Count the guides */ + while ((guide_id = gimp_image_find_next_guide(image_id, guide_id))) + n_guides++; + + xfwrite (fd, "8BIM", 4, "imageresources signature"); + write_gshort (fd, 0x0408, "0x0408 Id (Guides)"); + /* write_pascalstring (fd, Name, "Id name"); */ + write_gshort (fd, 0, "Id name"); /* Set to null string (two zeros) */ + write_glong (fd, 16 + 5 * n_guides, "0x0408 resource size"); + /* Save grid and guide header */ + write_glong (fd, 1, "grid/guide header version"); + write_glong (fd, 576, "grid custom spacing horizontal");/* dpi*32/4??*/ + write_glong (fd, 576, "grid custom spacing vertical"); /* dpi*32/4??*/ + write_glong (fd, n_guides, "number of guides"); + + /* write the guides */ + while ((guide_id = gimp_image_find_next_guide(image_id, guide_id))) + { + gchar orientation; + glong position; + orientation = gimp_image_get_guide_orientation(image_id, guide_id); + position = 32 * gimp_image_get_guide_position(image_id, guide_id); + orientation ^= 1; /* in the psd vert =0 , horiz = 1 */ + write_glong (fd, position, "Position of guide"); + write_gchar (fd, orientation, "Orientation of guide"); + n_guides--; + } + if ((ftell(fd) & 1)) + write_gchar(fd, 0, "pad byte"); + if (n_guides != 0) + g_warning("Screwed up guide resource:: wrong number of guides\n"); + IFDBG printf (" Total length of 0x0400 resource: %d\n", (int) sizeof (gshort)); + } /* --------------- Write Active Layer Number --------------- */ @@ -906,126 +830,40 @@ /* Return to EOF to continue writing */ fseek (fd, eof_pos, SEEK_SET); - - g_free (chName); } -static void + +static int get_compress_channel_data (guchar *channel_data, - gint32 channel_cols, - gint32 channel_rows, - gshort **LengthsTable, - guchar **remdata, - glong *TotalCompressedLen) + gint32 channel_cols, + gint32 channel_rows, + gint32 stride, + gshort *LengthsTable, + guchar *remdata) { gint i; - gint32 len; /* Length of compressed data */ - gshort rowlen; /* Length of current row */ - guchar *start; /* Starting position of a row in channel_data */ - guchar *end; /* End position of a row in channel_data */ - gint32 channel_length; /* Total channel's length */ - + gint32 len; /* Length of compressed data */ + guchar *start; /* Starting position of a row in channel_data */ + gint32 channel_length; /* Total channel's length */ channel_length = channel_cols * channel_rows; - *remdata = g_new (guchar, channel_length * 2); - *LengthsTable = g_new (gshort, channel_rows); /* For every row in the channel */ len = 0; for (i = 0; i < channel_rows; i++) { - start = channel_data + (i * channel_cols); - end = start + channel_cols; + start = channel_data + (i * channel_cols * stride); /* Create packed data for this row */ - pack_pb_line (start, end, (*remdata) + len, &rowlen); - (*LengthsTable)[i] = rowlen; - len += rowlen; + LengthsTable[i] = pack_pb_line (start, channel_cols, stride, + &remdata[len]); + len += LengthsTable[i]; } - *TotalCompressedLen = ((len + channel_rows * sizeof (gshort)) - + sizeof (gshort)); -} - - -static void -save_channel_data (FILE *fd, - guchar *channel_data, - gint32 channel_cols, - gint32 channel_rows, - gint32 posLong, - gchar *why) -{ - gint i; - gint32 len; /* Length of compressed data */ - glong TotalRawLen; /* Total length of raw data */ - glong TotalCompressedLen; /* Total length of compressed data */ - gshort *LengthsTable; /* Lengths of every compressed row */ - gshort rowlen; /* Length of row currently being handled */ - guchar *remdata; /* Compressed data from a row */ - guchar *start; /* Start position of a row in channel_data */ - guchar *end; /* End position of a row in channel_data */ - gint32 channel_length; /* Total channel's length */ - - - channel_length = channel_cols * channel_rows; - remdata = g_new (guchar, channel_length * 2); - LengthsTable = g_new (gshort, channel_rows); - - /* For every row in the channel */ - - len = 0; - for (i = 0; i < channel_rows; i++) - { - start = channel_data + (i * channel_cols); - end = start + channel_cols; - - /* Create compressed data for this row */ - pack_pb_line (start, end, remdata + len, &rowlen); - LengthsTable[i] = rowlen; - len += rowlen; - } - - /* Calculate total lengths of both kinds */ - - TotalRawLen = (channel_rows * channel_cols) + sizeof (gshort); - TotalCompressedLen = ((len + channel_rows * sizeof (gshort)) - + sizeof (gshort)); - -/* IFDBG printf ("\nCompressed length: %ld\n", TotalCompressedLen); - IFDBG printf ("\nRaw length: %ld\n", TotalRawLen); */ - - if (TotalCompressedLen < TotalRawLen) - { - IFDBG printf (" Saving data (RLE): %ld\n", TotalCompressedLen); - - write_gshort (fd, 1, "Compression"); /* Write compression type */ - - /* Write compressed lengths table */ - - for (i = 0; i < channel_rows; i++) - write_gshort (fd, LengthsTable[i], "RLE length"); - - xfwrite (fd, remdata, len, why); /* Write compressed data */ - - /* Update total compressed length */ - - fseek (fd, posLong, SEEK_SET); - write_glong (fd, TotalCompressedLen, "channel data length"); - fseek (fd, 0, SEEK_END); - } - else - { - IFDBG printf (" Write raw data: %ld\n", TotalRawLen); - - write_gshort (fd, 0, "Compression"); /* Save compression type */ - - xfwrite (fd, channel_data, channel_length, why); /* Save raw data */ - } - g_free (remdata); - g_free (LengthsTable); + /* return((len + channel_rows * sizeof (gshort)) + sizeof (gshort));*/ + return len; } @@ -1129,7 +967,7 @@ ChanSize = sizeof (gshort) + (PSDImageData.layersDim[i].width * PSDImageData.layersDim[i].height); - write_glong (fd, ChanSize, "Channel ID"); + write_glong (fd, ChanSize, "Channel Size"); IFDBG printf (" Length: %d\n", ChanSize); } @@ -1158,9 +996,28 @@ ExtraDataPos = ftell (fd); /* Position of Extra Data size */ write_glong (fd, 0, "Extra data size"); +#ifdef SAVELAYERMASK + mask = gimp_layer_get_mask (PSDImageData.lLayers[i]); + if (mask >= 0) + { + write_glong (fd, 14, "Layer mask size"); + write_glong (fd, 0, "Layer mask top"); + write_glong (fd, 0, "Layer mask left"); + write_glong (fd, gimp_drawable_height(mask),"Layer mask bottom"); + write_glong (fd, gimp_drawable_width(mask), "Layer mask right"); + write_gchar (fd, 0, "lmask default color"); + flags = (1 | /* relative */ + (gimp_layer_mask_is_disabled(mask) << 1) | /* disabled?*/ + (0 << 2) /* invert */); + write_gchar (fd, flags, "layer mask flags"); + write_gshort (fd, 0, "Layer mask Padding"); + } + else +#else /* NOTE Writing empty Layer mask / adjustment layer data */ write_glong (fd, 0, "Layer mask size"); IFDBG printf ("\n Layer mask size: %d\n", 0); +#endif /* NOTE Writing empty Layer blending ranges data */ write_glong (fd, 0, "Layer blending size"); @@ -1190,116 +1047,9 @@ for (i = PSDImageData.nLayers - 1; i >= 0; i--) { - gint nChannel; - GimpDrawable *drawable; - GimpPixelRgn region; /* Image region */ - guchar *data; /* Full layer data including all channels */ - guchar *red; /* R channel data */ - guchar *green; /* G channel data */ - guchar *blue; /* B channel data */ - guchar *gray; /* Gray channel data */ - guchar *alpha; /* Alpha channel data */ - gint32 ChanSize; /* Length of channel data */ - - IFDBG printf ("\n Channels image data. Layer: %d\n", i); - - ChanSize = (PSDImageData.layersDim[i].width * - PSDImageData.layersDim[i].height); - nChannelsLayer = nChansLayer (PSDImageData.baseType, - gimp_drawable_has_alpha (PSDImageData.lLayers[i])); - data = g_new (guchar, ChanSize * nChannelsLayer); - - drawable = gimp_drawable_get (PSDImageData.lLayers[i]); - - gimp_pixel_rgn_init (®ion, drawable, 0, 0, - PSDImageData.layersDim[i].width, - PSDImageData.layersDim[i].height, FALSE, FALSE); - - gimp_pixel_rgn_get_rect (®ion, data, 0, 0, - PSDImageData.layersDim[i].width, - PSDImageData.layersDim[i].height); - - IFDBG printf (" Channeel size: %d\n", ChanSize); - - nChannel = 0; - switch (PSDImageData.baseType) - { - case GIMP_RGB: - - if (gimp_drawable_has_alpha (PSDImageData.lLayers[i])) - { - RGBA_to_chans (data, ChanSize * nChannelsLayer, &red, &green, &blue, &alpha); - IFDBG printf (" Writing alpha channel...\n"); - - save_channel_data (fd, alpha, PSDImageData.layersDim[i].width, - PSDImageData.layersDim[i].height, - ChannelLengthPos[i][nChannel++], - "alpha channel"); - } - else - RGB_to_chans (data, ChanSize * nChannelsLayer, &red, &green, &blue); - - IFDBG printf (" Writing red channel...\n"); - save_channel_data (fd, red,PSDImageData.layersDim[i].width, - PSDImageData.layersDim[i].height, - ChannelLengthPos[i][nChannel++], - "red channel"); - - IFDBG printf (" Writing green channel...\n"); - save_channel_data (fd, green, PSDImageData.layersDim[i].width, - PSDImageData.layersDim[i].height, - ChannelLengthPos[i][nChannel++], - "green channel"); - - IFDBG printf (" Writing blue channel...\n"); - save_channel_data (fd, blue, PSDImageData.layersDim[i].width, - PSDImageData.layersDim[i].height, - ChannelLengthPos[i][nChannel++], - "blue channel"); - break; - - case GIMP_GRAY: - - if (gimp_drawable_has_alpha (PSDImageData.lLayers[i])) - { - GRAYA_to_chans (data, ChanSize * nChannelsLayer, &gray, &alpha); - - IFDBG printf (" Writing alpha channel...\n"); - save_channel_data (fd, alpha, PSDImageData.layersDim[i].width, - PSDImageData.layersDim[i].height, - ChannelLengthPos[i][nChannel++], - "alpha channel"); - - IFDBG printf (" Writing gray channel...\n"); - save_channel_data (fd, gray, PSDImageData.layersDim[i].width, - PSDImageData.layersDim[i].height, - ChannelLengthPos[i][nChannel++], - "gray channel"); - } - else - { - IFDBG printf (" Writing gray channel...\n"); - save_channel_data (fd, data, PSDImageData.layersDim[i].width, - PSDImageData.layersDim[i].height, - ChannelLengthPos[i][nChannel++], - "gray channel"); - } - - break; - - case GIMP_INDEXED: - IFDBG printf (" Writing indexed channel...\n"); - save_channel_data (fd, data, PSDImageData.layersDim[i].width, - PSDImageData.layersDim[i].height, - ChannelLengthPos[i][nChannel++], - "indexed channel"); - break; - } - - + write_pixel_data(fd, PSDImageData.lLayers[i], ChannelLengthPos[i], 0); } - eof_pos = ftell (fd); /* Write actual size of Layer info section */ @@ -1324,187 +1074,185 @@ static void -save_data (FILE *fd, gint32 image_id) +write_pixel_data (FILE *fd, gint32 drawableID, gint32 *ChanLenPosition, + glong ltable_offset) { - gint ChanCount; - gint i, j; - gint nChannel; - gint offset_x; /* X offset for each layer */ - gint offset_y; /* Y offset for each layer */ - gint32 layerWidth; /* Width of each layer */ - gint32 layerHeight; /* Height of each layer */ - GimpDrawable *drawable; - GimpPixelRgn region; /* Image region */ - guchar *data; /* Full layer data including all channels */ - guchar *red; /* R channel data */ - guchar *green; /* G channel data */ - guchar *blue; /* B channel data */ - guchar *gray_indexed = NULL; /* Gray/indexed channel data */ - gint32 ChanSize; /* Length of channel data */ - gint nChannelsLayer; /* Number of channels in a layer */ - - gshort **TLdataCompress; - guchar **dataCompress; - glong *CompressDataSize; - glong TotalSize; + GimpPixelRgn region; /* Image region */ + guchar *data; /* Temporary copy of pixel data */ + gint32 tile_height = gimp_tile_height(); - IFDBG printf ("\n Function: save_data\n"); + GimpDrawable *drawable = gimp_drawable_get (drawableID); - ChanCount = (PSDImageData.nChannels + - nChansLayer (PSDImageData.baseType, 0)); - TLdataCompress = g_new (gshort *, ChanCount); - dataCompress = g_new (guchar *, ChanCount); - CompressDataSize = g_new (glong, ChanCount); + gint32 height = drawable->height; + gint32 width = drawable->width; + gint32 bytes = drawable->bpp; + gint32 colors = bytes; /* fixed up down below */ + gint32 y; - i = PSDImageData.nLayers - 1; /* Channel to be written */ - IFDBG printf (" Processing layer %d\n", i); + glong len; /* Length of compressed data */ + gshort *LengthsTable; /* Lengths of every compressed row */ + guchar *rledata; /* Compressed data from a region */ + gint32 length_table_pos; /* position in file of the length table */ + int i, j; - gimp_drawable_offsets (PSDImageData.lLayers[i], &offset_x, &offset_y); - layerHeight = gimp_drawable_height (PSDImageData.lLayers[i]); - layerWidth = gimp_drawable_width (PSDImageData.lLayers[i]); - - ChanSize = layerWidth * layerHeight; - nChannelsLayer = nChansLayer (PSDImageData.baseType, - gimp_drawable_has_alpha (PSDImageData.lLayers[i])); - data = g_new (guchar, ChanSize * nChannelsLayer); - - drawable = gimp_drawable_get (PSDImageData.lLayers[i]); - gimp_pixel_rgn_init (®ion, drawable, 0, 0, layerWidth, layerHeight, FALSE, FALSE); - gimp_pixel_rgn_get_rect (®ion, data, 0, 0, layerWidth, layerHeight); + if ( gimp_drawable_has_alpha (drawableID) && + !gimp_drawable_is_indexed (drawableID)) + colors -= 1; + gimp_tile_cache_ntiles (2* (drawable->width / gimp_tile_width () + 1)); - nChannel = 0; - switch (PSDImageData.baseType) - { - case GIMP_RGB: - RGB_to_chans (data, ChanSize * nChannelsLayer, &red, &green, &blue); + LengthsTable = g_new (gshort, height); + rledata = g_new (gchar, (MIN(height, tile_height) * + (width + 10 + (width/100)))); - get_compress_channel_data (red, layerWidth, layerHeight, - &(TLdataCompress[nChannel]), &(dataCompress[nChannel]), - &(CompressDataSize[nChannel])); - IFDBG printf (" Compressed length of red channel: %ld\n", - CompressDataSize[nChannel]); - nChannel++; - - get_compress_channel_data (green, layerWidth, layerHeight, - &(TLdataCompress[nChannel]), &(dataCompress[nChannel]), - &(CompressDataSize[nChannel])); - IFDBG printf (" Compressed length of green channel: %ld\n", - CompressDataSize[nChannel]); - nChannel++; - - get_compress_channel_data (blue, layerWidth, layerHeight, - &(TLdataCompress[nChannel]), &(dataCompress[nChannel]), - &(CompressDataSize[nChannel])); - IFDBG printf (" Compressed length of blue channel: %ld\n", - CompressDataSize[nChannel]); - nChannel++; - break; - case GIMP_GRAY: - case GIMP_INDEXED: - gray_indexed = data; - get_compress_channel_data (gray_indexed, layerWidth, layerHeight, - &(TLdataCompress[nChannel]), &(dataCompress[nChannel]), - &(CompressDataSize[nChannel])); - IFDBG printf (" Compressed length for gray or indexed channel: %ld\n", - CompressDataSize[nChannel]); - nChannel++; - break; - } + data = g_new (guchar, MIN(height, tile_height) * width * bytes); + gimp_pixel_rgn_init (®ion, drawable, 0, 0, + width, height, FALSE, FALSE); - for (i = PSDImageData.nChannels - 1; i >= 0; i--) + for (i = 0; i < bytes; i++) { - ChanSize = (PSDImageData.image_width * - PSDImageData.image_height); + int chan; + len = 0; + if (bytes != colors) /* Need to write alpha channel first */ + { + if (i == 0) + { + if (ltable_offset > 0) + continue; + chan = bytes - 1; + } + else + chan = i - 1; + } + else + chan = i; + if (ChanLenPosition) + { + write_gshort (fd, 1, "Compression type (RLE)"); + len += 2; + } - drawable = gimp_drawable_get (PSDImageData.lChannels[i]); + if (ltable_offset > 0) + { + length_table_pos = ltable_offset + 2 * chan * height; + } + else + { + length_table_pos = ftell(fd); - gimp_pixel_rgn_init (®ion, drawable, 0, 0, - PSDImageData.image_width, - PSDImageData.image_height, FALSE, FALSE); + xfwrite (fd, LengthsTable, height * sizeof(gshort), + "Dummy RLE length"); + len += height * 2; + } - gimp_pixel_rgn_get_rect (®ion, data, 0, 0, - PSDImageData.image_width, - PSDImageData.image_height); + for (y = 0; y < height; y += tile_height) + { + int tlen; + gimp_pixel_rgn_get_rect (®ion, data, 0, y, + width, MIN(height - y, tile_height)); + tlen = get_compress_channel_data (&data[chan], + width, + MIN(height - y, tile_height), + bytes, + &LengthsTable[y], + rledata); + len += tlen; + xfwrite (fd, rledata, tlen, "Compressed pixel data"); + } - get_compress_channel_data (data, layerWidth, layerHeight, - &(TLdataCompress[nChannel]), &(dataCompress[nChannel]), - &(CompressDataSize[nChannel])); - IFDBG printf (" Compressed length of user-defined channel: %ld\n", - CompressDataSize[nChannel]); - nChannel++; + /* Write compressed lengths table */ + fseek (fd, length_table_pos, SEEK_SET); + for (j = 0; j < height; j++) /* write real length table */ + write_gshort (fd, LengthsTable[j], "RLE length"); + + if (ChanLenPosition) /* Update total compressed length */ + { + fseek (fd, ChanLenPosition[i], SEEK_SET); + write_glong (fd, len, "channel data length"); + } + fseek (fd, 0, SEEK_END); } - /* Calculate length of all compressed channels */ + gimp_drawable_detach (drawable); - TotalSize = 0; - for (i = 0; i < ChanCount; i++) - TotalSize += CompressDataSize[i]; + g_free (data); + g_free (rledata); + g_free (LengthsTable); +} - IFDBG printf ("\n Total size of compressed data: %ld\n", TotalSize); - IFDBG printf (" Total size of raw data: %d\n", ChanCount * ChanSize); - /* Decide whether to write compressed or raw data */ - if (TotalSize < ChanCount * ChanSize) /* Write compressed data */ - { - IFDBG printf ("\n Writing compressed data\n"); - write_gshort (fd, 1, "RLE compression"); +static void +save_data (FILE *fd, gint32 image_id) +{ + gint ChanCount; + gint i, j; + gint nChannel; + gint32 imageHeight; /* Height of image */ + glong offset; /* offset in file of rle lengths */ + gint chan; + gint32 bottom_layer; - /* Write all line lengths first */ + IFDBG printf ("\n Function: save_data\n"); - for (i = 0; i < ChanCount; i++) - for (j = 0; j < layerHeight; j++) - write_gshort (fd, TLdataCompress[i][j], "line lengths"); + ChanCount = (PSDImageData.nChannels + + nChansLayer (PSDImageData.baseType, 0)); - /* Now compressed data */ + i = PSDImageData.nLayers - 1; /* Channel to be written */ + IFDBG printf (" Processing layer %d\n", i); - for (i = 0; i < ChanCount; i++) - { - TotalSize = 0; - for (j = 0; j < layerHeight; j++) - TotalSize += TLdataCompress[i][j]; + imageHeight = gimp_image_height (image_id); - xfwrite (fd, dataCompress[i], TotalSize, "channel data"); - } - } - else /* Write raw */ - { - IFDBG printf ("\n Writing raw data\n"); - write_gshort (fd, 0, "RLE compression"); + nChannel = 0; - switch (PSDImageData.baseType) - { - case GIMP_RGB: - xfwrite (fd, red, ChanSize, "red channel data"); - xfwrite (fd, green, ChanSize, "green channel data"); - xfwrite (fd, blue, ChanSize, "blue channel data"); - break; - case GIMP_GRAY: - case GIMP_INDEXED: - xfwrite (fd, gray_indexed, ChanSize, "gray or indexed channel data"); - break; - } + write_gshort (fd, 1, "RLE compression"); + + /* All line lengths go before the rle pixel data */ - /* Now for user channels */ + offset = ftell(fd); /* Offset in file of line lengths */ - for (i = PSDImageData.nChannels - 1; i >= 0; i--) - { - drawable = gimp_drawable_get (PSDImageData.lChannels[i]); + for (i = 0; i < ChanCount; i++) + for (j = 0; j < imageHeight; j++) + write_gshort (fd, 0, "junk line lengths"); + + bottom_layer = PSDImageData.lLayers[PSDImageData.nLayers - 1]; + + if (PSDImageData.nLayers != 1 || + gimp_drawable_width (bottom_layer) != gimp_image_width (image_id) || + gimp_drawable_height (bottom_layer) != gimp_image_height (image_id)) + { + gint32 flat_image; + gint32 flat_drawable; + + IFDBG printf ("\n Creating flattened image\n"); + flat_image = gimp_image_duplicate (image_id); + gimp_image_undo_disable (flat_image); + flat_drawable = gimp_image_flatten (flat_image); - gimp_pixel_rgn_init (®ion, drawable, 0, 0, - PSDImageData.image_width, - PSDImageData.image_height, FALSE, FALSE); + IFDBG printf ("\n Writing compressed flattened image data\n"); + write_pixel_data (fd, flat_drawable, NULL, offset); - gimp_pixel_rgn_get_rect (®ion, data, 0, 0, - PSDImageData.image_width, - PSDImageData.image_height); + gimp_image_delete (flat_image); + } + else + { + IFDBG printf ("\n Writing compressed image data\n"); + write_pixel_data (fd, PSDImageData.lLayers[PSDImageData.nLayers - 1], + NULL, offset); + } - xfwrite (fd, data, ChanSize, "channel data"); - } + chan = nChansLayer (PSDImageData.baseType, 0); + + for (i = PSDImageData.nChannels - 1; i >= 0; i--) + { + IFDBG printf ("\n Writing compressed channel data for channel %d\n", + i); + write_pixel_data (fd, PSDImageData.lChannels[i], NULL, + offset + 2*imageHeight*chan); + chan++; } } @@ -1549,11 +1297,11 @@ save_image (const gchar *filename, gint32 image_id) { - FILE *fd; - gchar *name_buf; + FILE *fd; gint32 *layers; - int nlayers; - int i; + gint nlayers; + gint i; + char *name_buf; GimpDrawable *drawable; IFDBG printf (" Function: save_image\n"); @@ -1565,7 +1313,7 @@ gimp_filename_to_utf8 (filename)); return FALSE; } - + /* Need to check each of the layers size individually also */ layers = gimp_image_get_layers (image_id, &nlayers); for (i = 0; i < nlayers; i++) diff -uraN gimp-2.2.4/plug-ins/common/url.c gimp-2.2.5/plug-ins/common/url.c --- gimp-2.2.4/plug-ins/common/url.c 2004-11-09 01:06:46.000000000 +0100 +++ gimp-2.2.5/plug-ins/common/url.c 2005-03-14 11:00:40.000000000 +0100 @@ -83,7 +83,7 @@ "Spencer Kimball & Peter Mattis", "1995-1997", N_("URL"), - NULL, + NULL, GIMP_PLUGIN, G_N_ELEMENTS (load_args), G_N_ELEMENTS (load_return_vals), @@ -92,8 +92,8 @@ gimp_plugin_icon_register ("file_url_load", GIMP_ICON_TYPE_STOCK_ID, GIMP_STOCK_WEB); gimp_register_load_handler ("file_url_load", - "", - "http:,https:,ftp:"); + "", + "http:,https:,ftp:"); } static void @@ -120,12 +120,12 @@ image_ID = load_image (param[2].data.d_string, run_mode, &status); if (image_ID != -1 && - status == GIMP_PDB_SUCCESS) - { - *nreturn_vals = 2; - values[1].type = GIMP_PDB_IMAGE; - values[1].data.d_image = image_ID; - } + status == GIMP_PDB_SUCCESS) + { + *nreturn_vals = 2; + values[1].type = GIMP_PDB_IMAGE; + values[1].data.d_image = image_ID; + } } else { @@ -137,8 +137,8 @@ static gint32 load_image (const gchar *filename, - GimpRunMode run_mode, - GimpPDBStatusType *status) + GimpRunMode run_mode, + GimpPDBStatusType *status) { gint32 image_ID; gchar *ext = strrchr (filename, '.'); @@ -186,7 +186,8 @@ putenv ("LANG=C"); #endif - execlp ("wget", "wget", "-T", TIMEOUT, filename, "-O", tmpname, NULL); + execlp ("wget", "wget", "-e", "server-response=off", "-T", TIMEOUT, + filename, "-O", tmpname, NULL); g_message ("exec() failed: wget: %s", g_strerror (errno)); g_free (tmpname); _exit (127); @@ -197,9 +198,11 @@ gchar buf[BUFSIZE]; gboolean seen_resolve = FALSE; gboolean connected = FALSE; + gboolean redirect = FALSE; gboolean file_found = FALSE; gchar sizestr[32]; gint size = 0; + gchar *size_msg; gchar *message; gint i, j; gchar dot; @@ -216,6 +219,18 @@ /* hardcoded and not-really-foolproof scanning of wget putput */ + wget_begin: + /* Eat any Location lines */ + if (redirect && fgets (buf, BUFSIZE, input) == NULL) + { + g_message ("wget exited abnormally on URL '%s'", filename); + g_free (tmpname); + *status = GIMP_PDB_EXECUTION_ERROR; + return -1; + } + + redirect = FALSE; + if (fgets (buf, BUFSIZE, input) == NULL) { /* no message here because failing on the first line means @@ -285,6 +300,16 @@ *status = GIMP_PDB_EXECUTION_ERROR; return -1; } + else if (strstr (buf, "302 Found")) + { + DEBUG (buf); + + connected = FALSE; + seen_resolve = FALSE; + + redirect = TRUE; + goto wget_begin; + } DEBUG (buf); @@ -335,11 +360,17 @@ size = atoi (sizestr); + if (size > 0) + size_msg = g_strdup_printf ("%d bytes", size); + else + size_msg = g_strdup ("unknown amount"); + /* Start the actual download... */ - message = g_strdup_printf ("Downloading %d bytes of image data... " - "(timeout is "TIMEOUT" seconds)", size); + message = g_strdup_printf ("Downloading %s of image data... " + "(timeout is "TIMEOUT" seconds)", size_msg); gimp_progress_init (message); g_free (message); + g_free (size_msg); /* Switch to byte parsing wget's output... */ @@ -359,8 +390,10 @@ if (dot == '.') /* one kilobyte */ { kilobytes++; - gimp_progress_update ((gdouble) (kilobytes * 1024) / - (gdouble) size); + + if (size > 0) + gimp_progress_update ((gdouble) (kilobytes * 1024) / + (gdouble) size); } else if (dot == ':') /* the time string contains a ':' */ { @@ -398,9 +431,9 @@ { *status = GIMP_PDB_SUCCESS; if (name_image) - gimp_image_set_filename (image_ID, filename); + gimp_image_set_filename (image_ID, filename); else - gimp_image_set_filename (image_ID, ""); + gimp_image_set_filename (image_ID, ""); } else *status = GIMP_PDB_EXECUTION_ERROR; diff -uraN gimp-2.2.4/plug-ins/FractalExplorer/FractalExplorer.c gimp-2.2.5/plug-ins/FractalExplorer/FractalExplorer.c --- gimp-2.2.4/plug-ins/FractalExplorer/FractalExplorer.c 2004-12-27 20:42:16.000000000 +0100 +++ gimp-2.2.5/plug-ins/FractalExplorer/FractalExplorer.c 2005-04-04 12:19:36.000000000 +0200 @@ -1080,7 +1080,7 @@ list_item = fractalexplorer_list_item_new_with_label_and_pixmap (g, g->draw_name, list_pix); - g_object_set_data (G_OBJECT (list_item), "factralexplorer", g); + g_object_set_data (G_OBJECT (list_item), "fractalexplorer", g); gtk_list_append_items (GTK_LIST (list), g_list_append (NULL, list_item)); g_signal_connect (list_item, "button_press_event", diff -uraN gimp-2.2.4/plug-ins/print/print.c gimp-2.2.5/plug-ins/print/print.c --- gimp-2.2.4/plug-ins/print/print.c 2004-11-14 03:47:27.000000000 +0100 +++ gimp-2.2.5/plug-ins/print/print.c 2005-04-09 21:46:23.000000000 +0200 @@ -1,5 +1,5 @@ /* - * "$Id: print.c,v 1.66 2004/11/14 02:47:27 yosh Exp $" + * "$Id: print.c,v 1.66.2.1 2005/04/09 19:42:31 neo Exp $" * * Print plug-in for the GIMP. * @@ -429,7 +429,7 @@ close (pipefd[0]); close (pipefd[1]); execl ("/bin/sh", "/bin/sh", "-c", - stp_get_output_to (vars), NULL); + g_shell_quote (stp_get_output_to (vars)), NULL); /* NOTREACHED */ exit (1); } else { @@ -1103,14 +1103,14 @@ char *ptr; /* Pointer into line */ char name[128]; /* Printer name from status command */ - static const char *lpcs[] = /* Possible locations of LPC... */ - { - "/etc" - "/usr/bsd", - "/usr/etc", - "/usr/libexec", - "/usr/sbin" - }; + static const char *lpcs[] = /* Possible locations of LPC... */ + { + "/etc" + "/usr/bsd", + "/usr/etc", + "/usr/libexec", + "/usr/sbin" + }; /* * Setup defaults... @@ -1240,5 +1240,5 @@ } /* - * End of "$Id: print.c,v 1.66 2004/11/14 02:47:27 yosh Exp $". + * End of "$Id: print.c,v 1.66.2.1 2005/04/09 19:42:31 neo Exp $". */ diff -uraN gimp-2.2.4/plug-ins/pygimp/gimpfu.py gimp-2.2.5/plug-ins/pygimp/gimpfu.py --- gimp-2.2.4/plug-ins/pygimp/gimpfu.py 2004-12-13 20:40:52.000000000 +0100 +++ gimp-2.2.5/plug-ins/pygimp/gimpfu.py 2005-03-08 16:47:59.000000000 +0100 @@ -1,3 +1,20 @@ +# Gimp-Python - allows the writing of Gimp plugins in Python. +# Copyright (C) 1997 James Henstridge +# +# 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. + '''Simple interface to writing GIMP plugins in python. Instead of worrying about all the user interaction, saving last used values diff -uraN gimp-2.2.4/plug-ins/pygimp/gimpplugin.py gimp-2.2.5/plug-ins/pygimp/gimpplugin.py --- gimp-2.2.4/plug-ins/pygimp/gimpplugin.py 2004-09-30 01:09:30.000000000 +0200 +++ gimp-2.2.5/plug-ins/pygimp/gimpplugin.py 2005-03-08 16:47:59.000000000 +0100 @@ -13,7 +13,7 @@ # # 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. +# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. # plugin.py -- helper for writing gimp plugins # Copyright (C) 1997, James Henstridge. diff -uraN gimp-2.2.4/plug-ins/pygimp/gimpshelf.py gimp-2.2.5/plug-ins/pygimp/gimpshelf.py --- gimp-2.2.4/plug-ins/pygimp/gimpshelf.py 2004-09-30 01:09:30.000000000 +0200 +++ gimp-2.2.5/plug-ins/pygimp/gimpshelf.py 2005-03-08 16:47:59.000000000 +0100 @@ -1,7 +1,7 @@ # Gimp-Python - allows the writing of Gimp plugins in Python. # Copyright (C) 1997 James Henstridge # -# This program is free software; you can redistribute it and/or modify +# 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. @@ -13,7 +13,7 @@ # # 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. +# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. # gimpshelf.py -- a simple module to help gimp modules written in Python # store persistent data. diff -uraN gimp-2.2.4/plug-ins/pygimp/gimpui.py gimp-2.2.5/plug-ins/pygimp/gimpui.py --- gimp-2.2.4/plug-ins/pygimp/gimpui.py 2004-11-17 04:14:13.000000000 +0100 +++ gimp-2.2.5/plug-ins/pygimp/gimpui.py 2005-03-08 16:47:59.000000000 +0100 @@ -1,3 +1,20 @@ +# Gimp-Python - allows the writing of Gimp plugins in Python. +# Copyright (C) 1997 James Henstridge +# +# 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. + '''This module implements the UI items found in the libgimpui library. It requires pygtk to work. These functions take use to callbacks -- one is a constraint function, and the other is the callback object. The diff -uraN gimp-2.2.4/plug-ins/pygimp/plug-ins/clothify.py gimp-2.2.5/plug-ins/pygimp/plug-ins/clothify.py --- gimp-2.2.4/plug-ins/pygimp/plug-ins/clothify.py 2005-01-03 16:06:49.000000000 +0100 +++ gimp-2.2.5/plug-ins/pygimp/plug-ins/clothify.py 2005-03-08 16:47:59.000000000 +0100 @@ -3,7 +3,7 @@ # Gimp-Python - allows the writing of Gimp plugins in Python. # Copyright (C) 1997 James Henstridge # -# This program is free software; you can redistribute it and/or modify +# 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. @@ -15,7 +15,7 @@ # # 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. +# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. import math from gimpfu import * diff -uraN gimp-2.2.4/plug-ins/pygimp/plug-ins/colorxhtml.py gimp-2.2.5/plug-ins/pygimp/plug-ins/colorxhtml.py --- gimp-2.2.4/plug-ins/pygimp/plug-ins/colorxhtml.py 2004-11-27 23:57:57.000000000 +0100 +++ gimp-2.2.5/plug-ins/pygimp/plug-ins/colorxhtml.py 2005-03-08 16:47:59.000000000 +0100 @@ -1,5 +1,22 @@ #!/usr/bin/env python +# Gimp-Python - allows the writing of Gimp plugins in Python. +# Copyright (C) 2003, 2005 Manish Singh +# +# 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. + import string import struct import inspect diff -uraN gimp-2.2.4/plug-ins/pygimp/plug-ins/foggify.py gimp-2.2.5/plug-ins/pygimp/plug-ins/foggify.py --- gimp-2.2.4/plug-ins/pygimp/plug-ins/foggify.py 2005-01-03 16:06:49.000000000 +0100 +++ gimp-2.2.5/plug-ins/pygimp/plug-ins/foggify.py 2005-03-08 16:47:59.000000000 +0100 @@ -1,5 +1,22 @@ #!/usr/bin/env python +# Gimp-Python - allows the writing of Gimp plugins in Python. +# Copyright (C) 1997 James Henstridge +# +# 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. + from gimpfu import * import time diff -uraN gimp-2.2.4/plug-ins/pygimp/plug-ins/gimpcons.py gimp-2.2.5/plug-ins/pygimp/plug-ins/gimpcons.py --- gimp-2.2.4/plug-ins/pygimp/plug-ins/gimpcons.py 2005-02-09 11:52:21.000000000 +0100 +++ gimp-2.2.5/plug-ins/pygimp/plug-ins/gimpcons.py 2005-03-08 16:47:59.000000000 +0100 @@ -3,7 +3,7 @@ # Gimp-Python - allows the writing of Gimp plugins in Python. # Copyright (C) 1997 James Henstridge # -# This program is free software; you can redistribute it and/or modify +# 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. @@ -15,7 +15,7 @@ # # 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. +# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. from gimpfu import * diff -uraN gimp-2.2.4/plug-ins/pygimp/plug-ins/gtkcons.py gimp-2.2.5/plug-ins/pygimp/plug-ins/gtkcons.py --- gimp-2.2.4/plug-ins/pygimp/plug-ins/gtkcons.py 2004-09-30 01:04:31.000000000 +0200 +++ gimp-2.2.5/plug-ins/pygimp/plug-ins/gtkcons.py 2005-03-08 16:47:59.000000000 +0100 @@ -3,7 +3,7 @@ # Interactive Python-GTK Console # Copyright (C), 1998 James Henstridge # -# This program is free software; you can redistribute it and/or modify +# 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. @@ -15,7 +15,7 @@ # # 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. +# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. # This module implements an interactive python session in a GTK window. To # start the session, use the gtk_console command. Its specification is: diff -uraN gimp-2.2.4/plug-ins/pygimp/plug-ins/pdbbrowse.py gimp-2.2.5/plug-ins/pygimp/plug-ins/pdbbrowse.py --- gimp-2.2.4/plug-ins/pygimp/plug-ins/pdbbrowse.py 2005-02-09 11:52:21.000000000 +0100 +++ gimp-2.2.5/plug-ins/pygimp/plug-ins/pdbbrowse.py 2005-03-08 16:47:59.000000000 +0100 @@ -3,7 +3,7 @@ # Gimp-Python - allows the writing of Gimp plugins in Python. # Copyright (C) 1997 James Henstridge # -# This program is free software; you can redistribute it and/or modify +# 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. @@ -15,7 +15,7 @@ # # 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. +# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. from gimpfu import * diff -uraN gimp-2.2.4/plug-ins/pygimp/plug-ins/py-slice.py gimp-2.2.5/plug-ins/pygimp/plug-ins/py-slice.py --- gimp-2.2.4/plug-ins/pygimp/plug-ins/py-slice.py 2005-02-21 14:15:06.000000000 +0100 +++ gimp-2.2.5/plug-ins/pygimp/plug-ins/py-slice.py 2005-03-08 16:47:59.000000000 +0100 @@ -1,5 +1,22 @@ #!/usr/bin/env python +# Gimp-Python - allows the writing of Gimp plugins in Python. +# Copyright (C) 2003, 2005 Manish Singh +# +# 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. + import os import gimp diff -uraN gimp-2.2.4/plug-ins/pygimp/plug-ins/shadow_bevel.py gimp-2.2.5/plug-ins/pygimp/plug-ins/shadow_bevel.py --- gimp-2.2.4/plug-ins/pygimp/plug-ins/shadow_bevel.py 2004-09-30 01:04:31.000000000 +0200 +++ gimp-2.2.5/plug-ins/pygimp/plug-ins/shadow_bevel.py 2005-03-08 16:47:59.000000000 +0100 @@ -1,5 +1,22 @@ #!/usr/bin/env python +# Gimp-Python - allows the writing of Gimp plugins in Python. +# Copyright (C) 1997 James Henstridge +# +# 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. + from gimpfu import * def shadow_bevel(img, drawable, blur, bevel, do_shadow, drop_x, drop_y): diff -uraN gimp-2.2.4/plug-ins/pygimp/plug-ins/sphere.py gimp-2.2.5/plug-ins/pygimp/plug-ins/sphere.py --- gimp-2.2.4/plug-ins/pygimp/plug-ins/sphere.py 2005-02-09 11:52:21.000000000 +0100 +++ gimp-2.2.5/plug-ins/pygimp/plug-ins/sphere.py 2005-03-08 16:48:00.000000000 +0100 @@ -3,7 +3,7 @@ # Gimp-Python - allows the writing of Gimp plugins in Python. # Copyright (C) 1997 James Henstridge # -# This program is free software; you can redistribute it and/or modify +# 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. @@ -15,7 +15,7 @@ # # 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. +# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. import math from gimpfu import * diff -uraN gimp-2.2.4/plug-ins/pygimp/plug-ins/whirlpinch.py gimp-2.2.5/plug-ins/pygimp/plug-ins/whirlpinch.py --- gimp-2.2.4/plug-ins/pygimp/plug-ins/whirlpinch.py 2004-09-30 01:04:31.000000000 +0200 +++ gimp-2.2.5/plug-ins/pygimp/plug-ins/whirlpinch.py 2005-03-08 16:48:00.000000000 +0100 @@ -3,7 +3,7 @@ # Gimp-Python - allows the writing of Gimp plugins in Python. # Copyright (C) 1997 James Henstridge # -# This program is free software; you can redistribute it and/or modify +# 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. @@ -15,7 +15,7 @@ # # 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. +# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. # Algorithms stolen from the whirl and pinch plugin distributed with Gimp, # by Federico Mena Quintero and Scott Goehring diff -uraN gimp-2.2.4/plug-ins/rcm/rcm_dialog.c gimp-2.2.5/plug-ins/rcm/rcm_dialog.c --- gimp-2.2.4/plug-ins/rcm/rcm_dialog.c 2004-11-17 11:44:01.000000000 +0100 +++ gimp-2.2.5/plug-ins/rcm/rcm_dialog.c 2005-04-01 12:21:14.000000000 +0200 @@ -74,21 +74,26 @@ /* Previews: create one preview */ -static void +static GtkWidget * rcm_create_one_preview (GtkWidget **preview, - GtkWidget **frame, - gint previewWidth, - gint previewHeight) + gint width, + gint height) { - *frame = gtk_frame_new (NULL); - gtk_frame_set_shadow_type (GTK_FRAME (*frame), GTK_SHADOW_IN); - gtk_widget_show (*frame); + GtkWidget *align = gtk_alignment_new (0.5, 0.5, 0.0, 0.0); + GtkWidget *frame; + + frame = gtk_frame_new (NULL); + gtk_frame_set_shadow_type (GTK_FRAME (frame), GTK_SHADOW_IN); + gtk_container_add (GTK_CONTAINER (align), frame); + gtk_widget_show (frame); *preview = gimp_preview_area_new (); - gtk_widget_set_size_request (*preview, previewWidth, previewHeight); - gtk_container_add (GTK_CONTAINER (*frame), *preview); + gtk_widget_set_size_request (*preview, width, height); + gtk_container_add (GTK_CONTAINER (frame), *preview); gtk_widget_show (*preview); + + return align; } @@ -115,8 +120,9 @@ gtk_box_pack_start (GTK_BOX (vbox), label, FALSE, FALSE, 0); gtk_widget_show (label); - rcm_create_one_preview (&Current.Bna->before, &frame, - Current.reduced->width, Current.reduced->height); + frame = rcm_create_one_preview (&Current.Bna->before, + Current.reduced->width, + Current.reduced->height); gtk_box_pack_start (GTK_BOX (vbox), frame, FALSE, FALSE, 0); gtk_widget_show (frame); @@ -128,8 +134,9 @@ gtk_box_pack_start (GTK_BOX (vbox), label, FALSE, FALSE, 0); gtk_widget_show (label); - rcm_create_one_preview (&Current.Bna->after, &frame, - Current.reduced->width, Current.reduced->height); + frame = rcm_create_one_preview (&Current.Bna->after, + Current.reduced->width, + Current.reduced->height); gtk_box_pack_start (GTK_BOX (vbox), frame, FALSE, FALSE, 0); gtk_widget_show (frame); diff -uraN gimp-2.2.4/plug-ins/script-fu/script-fu-scripts.c gimp-2.2.5/plug-ins/script-fu/script-fu-scripts.c --- gimp-2.2.4/plug-ins/script-fu/script-fu-scripts.c 2004-11-27 17:23:43.000000000 +0100 +++ gimp-2.2.5/plug-ins/script-fu/script-fu-scripts.c 2005-03-08 16:48:00.000000000 +0100 @@ -98,7 +98,9 @@ void script_fu_find_scripts (void) { - gchar *path_str; + gchar *path_str; + gchar *path; + GError *error = NULL; /* Make sure to clear any existing scripts */ if (script_tree != NULL) @@ -113,15 +115,24 @@ path_str = gimp_gimprc_query ("script-fu-path"); - if (path_str == NULL) + if (! path_str) return; - gimp_datafiles_read_directories (path_str, G_FILE_TEST_IS_REGULAR, + path = g_filename_from_utf8 (path_str, -1, NULL, NULL, &error); + g_free (path_str); + + if (! path) + { + g_warning ("Can't convert script-fu-path to filesystem encoding: %s", + error->message); + g_error_free (error); + return; + } + + gimp_datafiles_read_directories (path, G_FILE_TEST_IS_REGULAR, script_fu_load_script, NULL); - g_free (path_str); - /* Now that all scripts are read in and sorted, tell gimp about them */ g_tree_foreach (script_tree, (GTraverseFunc) script_fu_install_script, diff -uraN gimp-2.2.4/plug-ins/winicon/icodialog.c gimp-2.2.5/plug-ins/winicon/icodialog.c --- gimp-2.2.4/plug-ins/winicon/icodialog.c 2004-11-26 18:37:26.000000000 +0100 +++ gimp-2.2.5/plug-ins/winicon/icodialog.c 2005-04-09 21:46:23.000000000 +0200 @@ -34,60 +34,26 @@ #include "libgimp/stdplugins-intl.h" -static GtkWidget *ico_preview_new (gint32 layer); -static void ico_fill_preview_with_thumb (GtkWidget *widget, - gint32 drawable_ID); -static void combo_bpp_changed (GtkWidget *combo, - GObject *hbox); +static GtkWidget * ico_preview_new (gint32 layer); +static void combo_bpp_changed (GtkWidget *combo, + GObject *hbox); static GtkWidget * ico_preview_new (gint32 layer) { - GtkWidget *icon_preview; + GtkWidget *image; + GdkPixbuf *pixbuf; + gint width = gimp_drawable_width (layer); + gint height = gimp_drawable_height (layer); + + pixbuf = gimp_drawable_get_thumbnail (layer, + MIN (width, 128), MIN (height, 128), + GIMP_PIXBUF_SMALL_CHECKS); + image = gtk_image_new_from_pixbuf (pixbuf); + g_object_unref (pixbuf); - icon_preview = gimp_preview_area_new (); - ico_fill_preview_with_thumb (icon_preview, layer); - - return icon_preview; -} - - -static void -ico_fill_preview_with_thumb (GtkWidget *widget, - gint32 drawable_ID) -{ - guchar *drawable_data; - gint bpp; - gint width; - gint height; - - width = gimp_drawable_width (drawable_ID); - height = gimp_drawable_height (drawable_ID); - bpp = 0; /* Only returned */ - - if (width > 128) - width = 128; - if (height > 128) - height = 128; - - drawable_data = - gimp_drawable_get_thumbnail_data (drawable_ID, &width, &height, &bpp); - - if (width < 1 || height < 1) - return; - - gtk_widget_set_size_request (widget, width, height); - GIMP_PREVIEW_AREA (widget)->width = width; - GIMP_PREVIEW_AREA (widget)->height = height; - - gimp_preview_area_draw (GIMP_PREVIEW_AREA (widget), - 0, 0, width, height, - gimp_drawable_type (drawable_ID), - drawable_data, - bpp * width); - - g_free (drawable_data); + return image; } @@ -199,7 +165,7 @@ GtkWidget *icon_hbox; gchar key[MAXLEN]; - g_snprintf (key, MAXLEN, "layer_%i_hbox", layer); + g_snprintf (key, sizeof (key), "layer_%i_hbox", layer); icon_hbox = g_object_get_data (G_OBJECT (dialog), key); if (!icon_hbox) @@ -219,7 +185,6 @@ return preview; } - void ico_specs_dialog_add_icon (GtkWidget *dialog, gint32 layer, @@ -238,67 +203,78 @@ gtk_widget_show (hbox); /* Let's make the hbox accessible through the layer ID */ - g_snprintf (key, MAXLEN, "layer_%i_hbox", layer); + g_snprintf (key, sizeof (key), "layer_%i_hbox", layer); g_object_set_data (G_OBJECT (dialog), key, hbox); } - void ico_specs_dialog_update_icon_preview (GtkWidget *dialog, gint32 layer, gint bpp) { - GtkWidget *preview; - GimpPixelRgn src_pixel_rgn, dst_pixel_rgn; - gint32 tmp_image; - gint32 tmp_layer; - gint w, h; - guchar *buffer; - gboolean result; - GimpDrawable *drawable = gimp_drawable_get (layer); - GimpDrawable *tmp; - - tmp_image = gimp_image_new (gimp_drawable_width (layer), - gimp_drawable_height (layer), - GIMP_RGB); - - w = gimp_drawable_width (layer); - h = gimp_drawable_height (layer); - - tmp_layer = gimp_layer_new (tmp_image, "temporary", w, h, - GIMP_RGBA_IMAGE, 100, GIMP_NORMAL_MODE); - gimp_image_add_layer (tmp_image, tmp_layer, 0); - - tmp = gimp_drawable_get (tmp_layer); - - gimp_pixel_rgn_init (&src_pixel_rgn, drawable, 0, 0, w, h, FALSE, FALSE); - gimp_pixel_rgn_init (&dst_pixel_rgn, tmp, 0, 0, w, h, TRUE, FALSE); - - buffer = g_malloc (w * h * 4); - gimp_pixel_rgn_get_rect (&src_pixel_rgn, buffer, 0, 0, w, h); - gimp_pixel_rgn_set_rect (&dst_pixel_rgn, buffer, 0, 0, w, h); + GtkWidget *preview = ico_specs_dialog_get_layer_preview (dialog, layer); + GdkPixbuf *pixbuf; + gint w = gimp_drawable_width (layer); + gint h = gimp_drawable_height (layer); - gimp_drawable_detach (tmp); - gimp_drawable_detach (drawable); + if (! preview) + return; - if (bpp < 32) - { - result = gimp_image_convert_indexed (tmp_image, - GIMP_FS_DITHER, - GIMP_MAKE_PALETTE, - 1 << bpp, - TRUE, - FALSE, - "dummy"); - } + g_printerr ("ico_specs_dialog_update_icon_preview: %d\n", bpp); - gimp_image_delete (tmp_image); + if (bpp <= 8) + { + GimpDrawable *drawable; + GimpDrawable *tmp; + GimpPixelRgn src_pixel_rgn, dst_pixel_rgn; + gint32 image; + gint32 tmp_image; + gint32 tmp_layer; + guchar *buffer; + + image = gimp_drawable_get_image (layer); + tmp_image = gimp_image_new (w, h, gimp_image_base_type (image)); + tmp_layer = gimp_layer_new (tmp_image, "temporary", w, h, + gimp_drawable_type (layer), + 100, GIMP_NORMAL_MODE); + gimp_image_add_layer (tmp_image, tmp_layer, 0); + + drawable = gimp_drawable_get (layer); + tmp = gimp_drawable_get (tmp_layer); + + gimp_pixel_rgn_init (&src_pixel_rgn, drawable, 0, 0, w, h, FALSE, FALSE); + gimp_pixel_rgn_init (&dst_pixel_rgn, tmp, 0, 0, w, h, TRUE, FALSE); + + buffer = g_malloc (w * h * 4); + gimp_pixel_rgn_get_rect (&src_pixel_rgn, buffer, 0, 0, w, h); + gimp_pixel_rgn_set_rect (&dst_pixel_rgn, buffer, 0, 0, w, h); + g_free (buffer); + + gimp_drawable_detach (tmp); + gimp_drawable_detach (drawable); + + if (gimp_drawable_is_indexed (layer)) + gimp_image_convert_rgb (tmp_image); + + gimp_image_convert_indexed (tmp_image, + GIMP_FS_DITHER, GIMP_MAKE_PALETTE, + 1 << bpp, TRUE, FALSE, "dummy"); + + pixbuf = gimp_drawable_get_thumbnail (tmp_layer, + MIN (w, 128), MIN (h, 128), + GIMP_PIXBUF_SMALL_CHECKS); - preview = ico_specs_dialog_get_layer_preview (dialog, layer); - ico_fill_preview_with_thumb (preview, tmp_layer); - gtk_widget_queue_draw (preview); + gimp_image_delete (tmp_image); + } + else + { + pixbuf = gimp_drawable_get_thumbnail (layer, + MIN (w, 128), MIN (h, 128), + GIMP_PIXBUF_SMALL_CHECKS); + } - g_free (buffer); + gtk_image_set_from_pixbuf (GTK_IMAGE (preview), pixbuf); + g_object_unref (pixbuf); } static void diff -uraN gimp-2.2.4/plug-ins/winicon/icosave.c gimp-2.2.5/plug-ins/winicon/icosave.c --- gimp-2.2.4/plug-ins/winicon/icosave.c 2005-02-08 14:42:50.000000000 +0100 +++ gimp-2.2.5/plug-ins/winicon/icosave.c 2005-04-09 21:46:24.000000000 +0200 @@ -353,7 +353,7 @@ guchar *palette; gint i; - g_return_val_if_fail (cmap != NULL, NULL); + g_return_val_if_fail (cmap != NULL || num_colors_used == 0, NULL); g_return_val_if_fail (num_colors_used <= num_colors, NULL); palette = g_new0 (guchar, num_colors * 4); @@ -640,7 +640,7 @@ gint i; gint offset; - layers = gimp_image_get_layers(image, &num_icons); + layers = gimp_image_get_layers (image, &num_icons); /* Set up icon entries */ for (i = 0; i < num_icons; i++) @@ -739,59 +739,93 @@ return FALSE; } - -static void -ico_free_color_item (gpointer data1, - gpointer data2, - gpointer data3) -{ - g_free (data1); - - /* Shut up warnings: */ - data2 = NULL; - data3 = NULL; -} - static gint ico_get_layer_num_colors (gint32 layer, gboolean *uses_alpha_levels) { GimpPixelRgn pixel_rgn; - gint x, y, w, h, alpha, num_colors = 0; - guint32 *buffer = NULL, *color; + gint w, h; + gint bpp; + gint num_colors = 0; + guint num_pixels; + guchar *buffer; + guchar *src; + guint32 *colors; + guint32 *c; GHashTable *hash; GimpDrawable *drawable = gimp_drawable_get (layer); w = gimp_drawable_width (layer); h = gimp_drawable_height (layer); - buffer = g_new (gint32, w * h); + + num_pixels = w * h; + + bpp = gimp_drawable_bpp (layer); + + buffer = src = g_new (guchar, num_pixels * bpp); gimp_pixel_rgn_init (&pixel_rgn, drawable, 0, 0, w, h, FALSE, FALSE); - gimp_pixel_rgn_get_rect (&pixel_rgn, (guchar*) buffer, 0, 0, w, h); + gimp_pixel_rgn_get_rect (&pixel_rgn, buffer, 0, 0, w, h); gimp_drawable_detach (drawable); hash = g_hash_table_new (g_int_hash, g_int_equal); *uses_alpha_levels = FALSE; - for (y = 0; y < h; y++) - for (x = 0; x < w; x++) - { - color = g_new0 (guint32, 1); - *color = buffer[y * w + x]; - alpha = ((guint8*) color)[3]; + colors = c = g_new (guint32, num_pixels); - if (alpha != 0 && alpha != 255) - *uses_alpha_levels = TRUE; + switch (bpp) + { + case 1: + while (num_pixels--) + { + *c = *src; + g_hash_table_insert (hash, c, c); + src++; + c++; + } + break; - g_hash_table_insert (hash, color, color); - } + case 2: + while (num_pixels--) + { + *c = (src[1] << 8) | src[0]; + if (src[1] != 0 && src[1] != 255) + *uses_alpha_levels = TRUE; + g_hash_table_insert (hash, c, c); + src += 2; + c++; + } + break; + + case 3: + while (num_pixels--) + { + *c = (src[2] << 16) | (src[1] << 8) | src[0]; + g_hash_table_insert (hash, c, c); + src += 3; + c++; + } + break; + + case 4: + while (num_pixels--) + { + *c = (src[3] << 24) | (src[2] << 16) | (src[1] << 8) | src[0]; + if (src[3] != 0 && src[3] != 255) + *uses_alpha_levels = TRUE; + g_hash_table_insert (hash, c, c); + src += 4; + c++; + } + break; + } num_colors = g_hash_table_size (hash); - g_hash_table_foreach (hash, ico_free_color_item, NULL); g_hash_table_destroy (hash); + g_free (colors); g_free (buffer); return num_colors; @@ -805,9 +839,9 @@ for (i = 0; i < num_colors; i++) { - if ((cmap[3*i] == 0) && - (cmap[3*i+1] == 0) && - (cmap[3*i+2] == 0)) + if ((cmap[3 * i ] == 0) && + (cmap[3 * i + 1] == 0) && + (cmap[3 * i + 2] == 0)) { return TRUE; } @@ -867,12 +901,8 @@ if (bpp <= 8) { gimp_image_convert_indexed (tmp_image, - GIMP_FS_DITHER, - GIMP_MAKE_PALETTE, - 1 << bpp, - TRUE, - FALSE, - "dummy"); + GIMP_FS_DITHER, GIMP_MAKE_PALETTE, + 1 << bpp, TRUE, FALSE, "dummy"); cmap = gimp_image_get_colormap (tmp_image, num_colors); @@ -892,13 +922,9 @@ gimp_drawable_detach (tmp); gimp_image_convert_indexed (tmp_image, - GIMP_FS_DITHER, - GIMP_MAKE_PALETTE, - (1 << bpp) - 1, - TRUE, - FALSE, - "dummy"); - + GIMP_FS_DITHER, GIMP_MAKE_PALETTE, + (1 << bpp) - 1, TRUE, FALSE, "dummy"); + g_free (cmap); cmap = gimp_image_get_colormap (tmp_image, num_colors); } @@ -944,12 +970,6 @@ return GIMP_PDB_EXECUTION_ERROR; } - if (gimp_image_base_type (image) != GIMP_RGB) - { - if (! gimp_image_convert_rgb (image)) - return GIMP_PDB_EXECUTION_ERROR; - } - /* First, set up the icon specs dialog and show it: */ if ((icon_depths = ico_show_icon_dialog (image, &num_icons)) == NULL) return GIMP_PDB_CANCEL; diff -uraN gimp-2.2.4/po/bg.gmo gimp-2.2.5/po/bg.gmo --- gimp-2.2.4/po/bg.gmo 2005-02-21 14:18:37.000000000 +0100 +++ gimp-2.2.5/po/bg.gmo 2005-02-24 11:33:59.000000000 +0100 @@ -1,79 +1,96 @@ -a$5,&323-437b3 3 3 -3 -33333 3 4 4 -!4 -,4 74 D4 P4 \4h4 m4z45555 !5+5:5P5a5j5 551535 +<\0x@2y@-@7@ A A +&A +1A8S8 p8"8888 8 -8!8.9@9S9f9~99999999 99 :: +: 8:E: U:b:q:::: ::: :: ; ;'; 6;D;T; -Y; -d; o; };";&;; ;#;<!< 0<><X<u<<<<< < -< < <==,=?=S=f=}=======> ->#> 3>A>T> -e>p> x>>> >>> ->O>? ??? ?????@@ @0@ A@ K@U@d@i@o@v@{@@@@@ @ @@@@@HA!OAqA1xAA AA -A -AA A( B -4B -?BJB QB]BlB{BB BBB B6B "C 0C QC/rCC'CCCD!D*D:D MDYD_D -oD zDD DD@D DDE E *E6EMEVE^E vE EEE EEEE EF F -FF-FDFKF^FcF iF sF }F F FF F F,FFBGVGhGoGGGG -GG GGG GGH+H CH MHWH_HnH~H HH H HHHH HHH II%IBI4_III-I J JJJJK KK *K8KVGFV%VVVV -V VV VV# -W.W 6WDWMWSWZWcW uWW WWW W WWWWW W X XX 3X AXOX_XuXXXXXXXXXX XYY YY 'Y -1Yl5m7.Dm&Ҙ=170iD4ߙ#88V2$š" .$G2l"=›78;T!4Ϝ)5.d - TL@9=z?N GT tu 0(3Y 3Š - @"X { BHڢN#:r=23.%b$Ĥ 5CZ'z$<,7Sdɦ'ۦ P ]]cӨ`vFͩީ.2RpNrʫ -̫ ׫x:\(Ҭ)%=S]c.ح (8,H u =ծ -; K#l!,/߯!'1<Y%-ΰ*(?0h. ȱ ұܱ $CU gs&ڲ  &+Coѳ -9A1]̴# 1= B-P3~1At&PO><{2gַN>M۸ "<T p~ǹ ˹׹0 twHK)a7U8!DH-# r 0Ij*Rb>B)/e{YYW<=-f:6O! S]Vn k@x5h\NFL0-X~m2"V{|&oL}`qR'k?E17pV,#zJM Pw`K&Y$(4G_?f/MQ]9<Sd!_=REPgx iI6[T^Dn^:1C y;+=[Qh F27Z&1/ '03AXQe_"ZqApM:G)K}r>s*d]X^oBzA<2%[LUDl,9TmJN+i.5E%@83N?J6.gu \Gu5, -l - .c4"yjI -@3stv#Tb4aa>vS+c\B$ZC(F$*CO'O%;(;PWUWH`~98|   -f, --no-fonts Do not load any fonts. +RR,R?R WR(eR +R +RR RRRRRR S#S9S US6cS S S S/ST+TiEiYisiziiii +i i +i iiKiH,j!ujj jj)j(j2k8kRkWkfklk kk k kkkk kk +k l ll,l ;lHl\laljl ol |lll lll#l m!m'm.mKmFTmm +m +mm!m!m n &n+2n5^nnnnnn nn6noooooGo%op pp +p %p1p :pDp#Vpzp pppppp ppp ppp q qq/q6q>q Fq +Tq_q oq }qq q qqqqqq rr!r0rBr Sr]rer krwr}rrr r r +r +rrrrrrr r +sss s(s 7sAsJsRsesus{s +s s +s s s ss ssss sst t t+t 4t BtPtVt[tctitzttt4t1t/uHu^ufulu#}u uuu uu +uv vv#v)v +0v;vAvGv\vdvhvnvrv +xv +v vvv vvivL3xNx=x y y%y5yGy"]y +y +yy y y y +y +y y z z z$z)zGz zz{{&{-E{Bs{-{+{ +|3|O|!k|e|c|W} i} s} }.})}}$~'~.~E~d~w~ ~ +~ ~ ~ +~ ~~  + +?%RxC<,:JQ׀? /K<{Ojz *΂&F 5g9c׃;$Ty:τBD/Btr7*'b. φ 0Po.#!߇ ( HIP"$"+ N(o &>57U8Ɗ׊-+H*t!΋ %(N&e$,*ތB L8[A4֍ ( LI%$Ŏ@2+8^4?̏ (?Uj!y=*-".P6,7.:&i ?5ޒ%1Dv*&08Nb +v + Ȕ<eۖ3*P"{(&/;kǘ И +  *K\ +nyK37WfTUf~b l,*ۜ,<(@eF0H(g,Ԟ*"+B"n#.ԟ5!9[[<נ*~?**32H6{2,' +ALk0tã ڣ@i>1ڤ@8"K0nե +*J8]8 Ϧ$ܦ"1$5V$"9ԧ:-I/w*¨  4$K.p70ש>.G3vªܪ /IOYFԫt;Ǭ&ܬ:,KBx 5ܭ$"71Z76Į $/T qׯ +!B8{ ǰQQ:i $ATfu+ϴ76Tos B ,*2W09"&&?af5ȷ**)@T*H@ Jh]Yƹ 3A+u2:Ժ&%'L)t4"2 ^<?Eۼ>!D`>&=+1i0D̾4zF#Qu82$$!7'Y1+/93I)}!'1+#/O93)#);3e-1;55+k!'1+/?9o3)";;T,$2"2=U7;;#!_4)452hh%) +D +O ZTg+?-(<V%+L<2%o+@'=*+h?-?NB+  u +n)y 03I] u3 + " 7ABS HNsg:&+R=b273 &?6f%$--Me  + &')Q$k<,S8g' P ]]w`vZ.23fN + x:p()9Qg]w. 0<L,\  =5; O] m-#!,/>!n'<%--[*s(0.' 7 AKc u! *BZ&j  &&4+[ ++6Q Yc1#6 S_ dr-31AtXPO>n2gNpM  9E T`v %)? CO`s 0oWn mh[dZq}*:06P&T[XVM8jVgm+?uGF#"6mUG?7yf#8pQ|y@Q:"ro~t3a E] .L;&?N#xzwu-$iBqu%H:l^\=E;yC_2dt "Z+Aw % bBWnJv2,L\H~-c D',!jS8O,pSCrv/F{/Cz-OtFK!~479@. 9LBPX)o(2A\k5RsO0.&j' s(]eHf M5x` *l>Se1NQRN{=/scZ<i(hAg3<c`4ha^RV'+npWK_09_ xGP%`)v!DlEYd] +=D1I T}rUIM>1K35k>6I;Yzwb$q^}gkUf)$ Y@Je4*7|b  +JT<i{|a[ +X -f, --no-fonts Do not load any fonts. -h, --help Output this help. -v, --version Output version information. -%d Layers%d layers%d minutes%d seconds(%0.3f, %0.3f, %0.3f)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%)4:1 (400%)8:1 (800%)<%s>The GIMP - GNU Image Manipulation Program +%d Layers%d layers%d minutes%d seconds(%0.3f, %0.3f, %0.3f)(invalid UTF-8 string)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%)4:1 (400%)8:1 (800%)<%s>The GIMP - GNU Image Manipulation Program Copyright (C) 1995-2004 -Spencer Kimball, Peter Mattis and the GIMP Development Team.A_ngleAbout The GIMPActionAddAdd LayerAdd Text LayerAdd text to the imageAdvanced optionsAirbrushAirbrush with variable pressureAll FilesAll Files (*.*)Allow completely transparent regions to be filledAllow completely transparent regions to be selectedAn_imationAngle:AppearanceAuthor:AutoloadAutomatically DetectedB_rightness-Contrast...BackgroundBackground colorBackground color set to:Background: %d, %d, %dBlack & whiteBlack:BlueBlue:Brightness-ContrastBrushBrush EditorBrush FoldersBrush:BrushesBrushes MenuBucket FillBy ExtensionC_olumns:CancelCannot create folder '%s': %sCannot create previewChange Background ColorChange grid background colorCircleCl_earClearClear errorsClose %sColo_rsColorColor:Columns:Comme_nt:CommentCon_trast:Configure G_rid...Configure GridConfigure Image GridConfigure Keyboard ShortcutsConfigure _Keyboard Shortcuts...Confirm closing of unsa_ved imagesContinueContributions byConvertConvert imageCopyright:Could not find GIMP help browser.Could not start the GIMP help browser plug-in.Create a New ImageCreate a New LayerCreating folder '%s'...Current _StatusCurrent height:Current layer onlyCurrent statusCurrent width:D_uplicate LayerDashedDate:Default GridDefault Image GridDelete ObjectDelete TemplateDelete brushDelete colorDelete gradientDelete layerDelete paletteDelete saved options...Delete the selected templateDelete this imageDeleting "%s" failed: %sDescriptionDevicesDialogsDialogs MenuDocument Histor_yDocument HistoryDocumentsDocuments MenuDouble dashedDuplicate layerEditEdit brushEdit colorEdit gradientEdit paletteEnter a name for the saved optionsEnter a new name for the saved optionsEnter location (URI):EnvironmentErase to background or transparencyEraserError Co_nsoleError ConsoleError saving XCF file: %sError while reading '%s': %sError while writing '%s': %sError writing XCF: %sError writing file '%s': -%sErrorsEventExposure:ExtensionsFile existsFill Type %sFill transparent areasFill whole selectionFill with BG ColorFill with B_G ColorFill with FG ColorFill with TransparencyFill with WhiteFill with _FG ColorFill with _background colorFill with a color gradientFilte_rsFinding Contiguous RegionsFinding Similar ColorsFlipFlip LayerFlip Text LayerFlip Type %sFlip _HorizontallyFlip _VerticallyFlip imageFlip...Flipping...FolderFoldersFont FoldersFont:FontsFonts MenuFor a proper GIMP installation, a folder named '%s' needs to be created.Foreground & background colors. The black and white squares reset colors. The arrows swap colors. Double click to open the color selection dialog.Fullscr_eenGIMPGIMP ExtensionGIMP Plug-InGIMP Text EditorGIMP Tip of the DayGIMP XCF imageGIMP help browserGeneralGradientGradient EditorGradient FoldersGradient:GradientsGradients MenuGrayGreenGreen:GridH_eight:H_elp browser to use:HeightHeight:HelpHelp BrowserHelp SystemHelp browser doesn't startHelp browser not foundHex:HistoryHorizontal offset of the first grid line; this may be a negative number.Horizontal spacing of grid lines.I_mageIf you quit GIMP now, these changes will be lost.ImageImage EditorImage InformationImage MenuImage SizeImage Window AppearanceImage WindowsImage doesn't contain any visible layersImage fileImage sizeImagesImages MenuImport OptionsImport PaletteImport a New PaletteImport paletteInfo WindowInitializing Plug-insInitializing plug-in: '%s' -Input DevicesInstallation successful. Click "Continue" to proceed.Invalid UTF-8Invalid UTF-8 data in file '%s'.Invalid UTF-8 string in XCF fileInvalid width or height. Both must be positive.Is this what you want to do?It seems you have used GIMP 2.0 before.Keep TransparencyKeep aspect ratio %sKeep transparencyKeyboardKeyboard EventsKeyboard ShortcutsLast Error:LayerLayer Fill TypeLayer SizeLayer _Name:LayersLayers MenuLayers Merge OptionsLet GIMP try to restore your last saved session on each startup.Line _Style:Line style used for the grid.LoadLocation:Long dashesLooking for data filesM_agnifyMagnifyManage Loadable ModulesMerge LayersMerge PaletteMerge Visible LayersMerge Visible _Layers...Merge layersMerge palettesModule FoldersModule ManagerModule pathModulesMoveMove LayerMove Text LayerMove the current layerMove: N_umber of colors:NameName:New ImageNew LayerNew brushNew gradientNew layerNew layer with last valuesNew layer...New paletteNo brushes available for use with this tool.No longer availableNot enough visible layers for a merge. There must be at least two.Number of layers:OffsetOp_en as Layer...OpacityOpacity:OpenOpen ImageOpen Image as LayerOpen LocationOpen Text File (UTF-8)Open _Location...Open _RecentOpen the selected entryOpening '%s' failed: +Spencer Kimball, Peter Mattis and the GIMP Development Team.A_ngleAbout The GIMPActionAddAdd LayerAdd Text LayerAdd text to the imageAdding theme '%s' (%s) +Advanced optionsAirbrushAirbrush with variable pressureAll FilesAll Files (*.*)Allow completely transparent regions to be filledAllow completely transparent regions to be selectedAn_imationAngle:AppearanceAuthor:AutoloadAutomatically DetectedAvailable Types:B_rightness-Contrast...BackgroundBackground colorBackground color set to:Background: %d, %d, %dBlack & whiteBlack:BlueBlue:Brightness-ContrastBrushBrush EditorBrush FoldersBrush:BrushesBrushes MenuBucket FillBy ExtensionC_olumns:CancelCannot create folder '%s': %sCannot create previewChange Background ColorChange grid background colorChange perspective of the layer or selectionCircleCl_earClearClear Undo HistoryClear all textClear errorsClick to update preview +%s Click to force update even if preview is up-to-dateClose %sColo_rsColorColor:Columns:Comme_nt:CommentCon_trast:Configure G_rid...Configure GridConfigure Image GridConfigure Keyboard ShortcutsConfigure _Keyboard Shortcuts...Confirm closing of unsa_ved imagesContinueContributions byConvertConvert imageCopyright:Could not find GIMP help browser.Could not open '%s' for reading: %sCould not open '%s' for writing: %sCould not start the GIMP help browser plug-in.Create a New ImageCreate a New LayerCreating folder '%s'...Crosshair onlyCurrent _StatusCurrent height:Current layer onlyCurrent statusCurrent width:Cursor _mode:Cursor re_ndering:Custom colorD_uplicate LayerDashedDate:Default GridDefault Image GridDefault _layer & channel preview size:Delete ObjectDelete TemplateDelete brushDelete colorDelete gradientDelete layerDelete paletteDelete saved options...Delete the selected templateDelete this imageDeleting "%s" failed: %sDescriptionDevicesDialogsDialogs MenuDistance:Do_n't saveDocument Histor_yDocument HistoryDocumentsDocuments MenuDouble dashedDuplicate layerE_xtra SmallEdge-De_tectEditEdit brushEdit colorEdit gradientEdit paletteEnable to display tooltips.EnormousEnter a name for the saved optionsEnter a new name for the saved optionsEnter location (URI):EnvironmentEnvironment FoldersErase to background or transparencyEraserError Co_nsoleError ConsoleError saving XCF file: %sError while reading '%s': %sError while writing '%s': %sError writing XCF: %sError writing file '%s': +%sErrorsEventEx_tra LargeExposure:ExtensionsFancyFile existsFill Type %sFill transparent areasFill whole selectionFill with BG ColorFill with B_G ColorFill with FG ColorFill with TransparencyFill with WhiteFill with _FG ColorFill with _background colorFill with a color gradientFilte_rsFinding Contiguous RegionsFinding Similar ColorsFlipFlip LayerFlip Text LayerFlip Type %sFlip _HorizontallyFlip _VerticallyFlip imageFlip the layer or selectionFlip...Flipping...FolderFoldersFont FoldersFont:FontsFonts MenuFor a proper GIMP installation, a folder named '%s' needs to be created.Foreground & background colors. The black and white squares reset colors. The arrows swap colors. Double click to open the color selection dialog.From _ThemeFrom themeFullscr_eenGIMPGIMP ExtensionGIMP MessageGIMP Plug-InGIMP Text EditorGIMP Tip of the DayGIMP XCF imageGIMP help browserGeneralGiganticGradientGradient EditorGradient Editor MenuGradient FoldersGradient:GradientsGradients MenuGrayGrayscaleGreenGreen:GridH_eight:H_elp browser to use:HeightHeight:HelpHelp BrowserHelp SystemHelp browser doesn't startHelp browser not foundHex:HistoryHorizontal offset of the first grid line; this may be a negative number.Horizontal spacing of grid lines.HugeI_mageIf you don't save the image, changes from the last %s will be lost.If you quit GIMP now, these changes will be lost.ImageImage EditorImage InformationImage MenuImage SizeImage Statusbar FormatImage Title FormatImage Window AppearanceImage WindowsImage doesn't contain any visible layersImage fileImage sizeImagesImages MenuImport OptionsImport PaletteImport a New PaletteImport paletteIndentation of the first lineInfo WindowInitializing Plug-insInitializing plug-in: '%s' +Input DevicesInstallation successful. Click "Continue" to proceed.Invalid UTF-8Invalid UTF-8 data in file '%s'.Invalid UTF-8 string in XCF fileInvalid width or height. Both must be positive.Invert SelectionInvert selectionIs this what you want to do?Keep TransparencyKeep aspect ratio %sKeep transparencyKeyboardKeyboard EventsKeyboard ShortcutsLargeLast Error:LayerLayer Fill TypeLayer SizeLayer _Name:LayersLayers MenuLayers Merge OptionsLet GIMP try to restore your last saved session on each startup.Line +spacing:Line _Style:Line style used for the grid.LoadLoad CurvesLoad text from fileLocation:Long dashesLooking for data filesM_agnifyMagnifyManage Loadable ModulesMeasureMeasure Distances and AnglesMeasure distances and anglesMediumMerge LayersMerge PaletteMerge Visible LayersMerge Visible _Layers...Merge layersMerge palettesMessage repeated %d times.Message repeated once.Modify Selected ColorModify all colorsModule FoldersModule ManagerModule pathModulesMouse CursorsMoveMove LayerMove SelectionMove Text LayerMove ToolMove layers & selectionsMove selectionMove the current layerMove: N_umber of colors:NameName:New ImageNew LayerNew brushNew gradientNew layerNew layer with last valuesNew layer...New paletteNo brushes available for use with this tool.No longer availableNot enough visible layers for a merge. There must be at least two.Number of layers:OffsetOp_en as Layer...OpacityOpacity:OpenOpen ImageOpen Image as LayerOpen LocationOpen Text File (UTF-8)Open _Location...Open _RecentOpen the selected entryOpening '%s' failed: %sOpening '%s' failed: %sOptions: -Pal_ettesPalettePalette EditorPalette FoldersPalette _Name:Palette _filePalettesPalettes MenuPasted LayerPe_ncilPencilPersonal GIMP FolderPerspectivePerspective...Please wait...Plug-InPlug-In FoldersPlug-In could not open imagePlug-In could not save imagePlug-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.PreferencesPressure:PreviewPreview:PreviewsPurpose:QualityQuerying new Plug-insQuit The GIMPRGBRGB (%0.3f, %0.3f, %0.3f)RGB (%d, %d, %d)RGB ColorRe_name Saved OptionsRedRed:Refresh brushesRefresh gradientsRefresh palettesRemove LayerRemove _EntryRename LayerRename Saved Tool OptionsRename Text LayerRename itemRescan font listReset all tool optionsReset to default valuesRestore options from...RotateRotate 90 degrees CC_WRotate 90 degrees _CWRotate LayerRotate Text LayerRotate _180 degreesRotate imageRotating...S_wap ColorsSaveSave '%s' as POV-RaySave ImageSave Input Device Settings _NowSave Keyboard Shortcuts _NowSave Tool OptionsSave Window Positions _NowSave _All Errors to File...Save _as...Save a Cop_y...Save a Copy of the ImageSave all errorsSave as _POV-Ray...Save gradient as POV-RaySave options to...Saved OptionsSaving '%s' +Pal_ettesPalettePalette EditorPalette FoldersPalette _Name:Palette _filePalettesPalettes MenuPasted LayerPe_ncilPencilPersonal GIMP FolderPerspectivePerspective Transform InformationPerspective...Please wait...Plug-InPlug-In FoldersPlug-In could not open imagePlug-In could not save imagePlug-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.PreferencesPressure:PreviewPreview:PreviewsPurpose:QualityQuerying new Plug-insQuick LoadQuick SaveQuit The GIMPRGBRGB (%0.3f, %0.3f, %0.3f)RGB (%d, %d, %d)RGB ColorRadius:Re_name Saved OptionsRedRed:RedoRefresh brushesRefresh gradientsRefresh palettesReload C_urrent ThemeRemove LayerRemove _EntryRename LayerRename Saved Tool OptionsRename Text LayerRename itemRepeat LastRescan font listReset all tool optionsReset to default valuesRestore options from...RotateRotate 90 degrees CC_WRotate 90 degrees _CWRotate LayerRotate Text LayerRotate _180 degreesRotate imageRotate the layer or selectionRotating...Rotation InformationS_how GridS_wap ColorsSaveSave '%s' as POV-RaySave CurvesSave ImageSave Input Device Settings _NowSave Keyboard Shortcuts _NowSave 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 gradient as POV-RaySave 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' Saving '%s' failed: -%sSaving ImagesScript-Fu FoldersScriptsSelectSelect AllSelect ColorSelect Zoom RatioSelect _Previous LayerSelect allSelect contiguous regionsSelect elliptical regionsSelect hand-drawn regionsSelect transparent areasSelect web browserSensitivitySet OpacitySet background colorSets the browser used by the help system.Shadow typeShadowsShortcutShortcut "%s" is already taken by "%s" from the "%s" group.Show _foreground & background colorShow active _imageShow help _buttonsShow tip next time GIMP startsShow tips on _startupSizeSize in memory:Size:Skipping '%s': wrong GIMP protocol version.SolidSpacingSpeed:Starting ExtensionsStarting extension: '%s' +%sSaving ImagesScript-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 ColorSelect Primary Color to ModifySelect ThemeSelect Theme FoldersSelect Zoom RatioSelect _Previous LayerSelect allSelect contiguous regionsSelect elliptical regionsSelect hand-drawn regionsSelect rectangular regionsSelect transparent areasSelect web browserSensitivitySet OpacitySet background colorSet foreground colorSets the browser used by the help system.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 text to appear in image window status bars.Sets the text to appear in image window titles.Shadow typeShadowsShapeShortcutShortcut "%s" is already taken by "%s" from the "%s" group.Show R_ulersShow S_tatusbarShow Scroll_barsShow _Layer BoundaryShow _MenubarShow _SelectionShow _foreground & background colorShow _layer boundaryShow _menubarShow _rulersShow active _imageShow gri_dShow help _buttonsShow s_electionShow s_tatusbarShow scroll_barsShow tip next time GIMP startsShow tips on _startupShow tool _tipsSizeSize in memory:Size:Skipping '%s': wrong GIMP protocol version.SmallSna_p to GridSolidSourceSpacingSpeed:Starting ExtensionsStarting extension: '%s' State:T_oolsTe_xtTerminating plug-in: '%s' -TextText ColorText EditorText LayerText modifiedThe GIMPThe GIMP help browser plug-in appears to be missing from your installation.The background color of the grid; only used in double dashed line style.The foreground color of the grid.There are %d images with unsaved changes:There is one image with unsaved changes:This tool has no options.To_ysToo many error messages!Tool OptionsTool _OptionsTool_boxToolboxToolsTools MenuTr_ansparencyTransformTransforming...Translation byTransparencyTransparency _type:Undo _HistoryUnitsUnknown file typeUnknown type of palette file: -%sUntitledUse _web browser insteadUse black and white (1-bit) paletteValueValue:Version %s brought to you byVersion:Vertical offset of the first grid line; this may be a negative number.Vertical spacing of grid lines.ViewWarning: Failed to load data: +TextText ColorText EditorText LayerText modifiedThe GIMPThe GIMP help browser plug-in appears to be missing from your installation.The background color of the grid; only used in double dashed line style.The foreground color of the grid.ThemeTheme FoldersThemesThere are %d images with unsaved changes:There is one image with unsaved changes:This folder is searched for user-installed themes.This tool has no options.TinyTitle & StatusTo_ysToo many error messages!Tool OptionsTool Options MenuTool _OptionsTool iconTool icon with crosshairTool_boxToolboxToolbox MenuToolsTools MenuTr_ansparencyTransformTransforming...Translation byTransparencyTransparency _type:TypeType %sUndoUndo HistoryUndo _HistoryUnitsUnknown file typeUnknown type of palette file: +%sUntitledUse _web browser insteadUse black and white (1-bit) paletteUse color from gradientValueValue:Version %s brought to you byVersion:Vertical offset of the first grid line; this may be a negative number.Vertical spacing of grid lines.Very largeVery smallViewWarning: Failed to load data: %sWarning: Failed to save data: @@ -81,10 +98,10 @@ The GIMP %d.%d User InstallationWhen enabled, pressing F1 will open the help browser.WhiteWidthWidth:Window ManagementWindow 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 will have to restart GIMP for the following changes to take effect:Your GIMP installation is incomplete:Zoom 1:1Zoom InZoom OutZoom RatioZoom Ratio:Zoom _InZoom _OutZoom factor: %d:1Zoom image when window size changesZoom inZoom in & outZoom outZoom:_About_Acquire_Advanced Options_Airbrush_Background color:_Brightness:_Brush_Brushes_Bucket Fill_Clear Errors_Clear Undo History_Close_Clouds_Colors_Context Help_Delete Brush_Delete Color_Delete Gradient..._Delete Image_Delete Layer_Delete Palette_Delete Saved Options_Delete Template_Dialogs_Discard Changes_Edit_Edit Brush..._Edit Color..._Edit Gradient..._Edit Palette..._Eraser_File_Fill with:_Flip_Font_Fonts_Foreground color:_Gradient_Gradients_Help_Image_Images_Import_Import Palette..._Info Window_Layer_Layers_Manually_Merge Palettes..._Module Manager_Move_Name:_New Brush_New Gradient_New Layer_New Layer..._New Palette_New View_New..._Next tip_Noise_Opacity_Open Image_Open..._Palette_Perspective_Preferences_Preview_Preview Size_Previous tip_Quit_RGB_Radius_Refresh Brushes_Refresh Gradients_Refresh Palettes_Rescan Font List_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_Rotate_Save_Save Options to_Save input device settings on exit_Save keyboard shortcuts on exit_Save window positions on exit_Select_Sinusoidal_Template:_Text_Tip of the Day_Tools_Transform_View_Web browser to use:_Width:_X:_Xtns_Y:_Zoom_Zoom (%s)millimetermillimeterstips-locale:Ctranslator-creditsProject-Id-Version: GIMP 2.2 +Substituting grayscale map.YYellowYellow:You will have to restart GIMP for the following changes to take effect:Your GIMP installation is incomplete:Zoom 1:1Zoom InZoom OutZoom RatioZoom Ratio:Zoom _InZoom _OutZoom factor: %d:1Zoom image when window size changesZoom inZoom in & outZoom outZoom:_About_Acquire_Advanced Options_Airbrush_All_Background color:_Brightness:_Brush_Brushes_Bucket Fill_Clear Errors_Clear Undo History_Close_Clouds_Colors_Context Help_Curves..._Default Colors_Delete Brush_Delete Color_Delete Gradient..._Delete Image_Delete Layer_Delete Palette_Delete Saved Options_Delete Template_Dialogs_Discard Changes_Edit_Edit Brush..._Edit Color..._Edit Gradient..._Edit Palette..._Enormous_Eraser_File_Fill with:_Flip_Font_Fonts_Foreground color:_Gigantic_Gradient_Gradients_Grayscale_Help_Huge_Image_Images_Import_Import Palette..._Info Window_Invert_Large_Layer_Layers_Light Effects_Manually_Measure_Medium_Merge Palettes..._Module Manager_Move_Name:_New Brush_New Gradient_New Layer_New Layer..._New Palette_New View_New..._Next tip_Noise_None_Opacity_Open Image_Open..._Palette_Perspective_Preferences_Preview_Preview Size_Previous tip_Quit_RGB_Radius_Redo_Refresh Brushes_Refresh Gradients_Refresh Palettes_Rescan Font List_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_Rotate_Save_Save Options to_Save input device settings on exit_Save keyboard shortcuts on exit_Save window positions on exit_Select_Sinusoidal_Small_Template:_Text_Tiny_Tip of the Day_Tool_Tools_Transform_Undo_View_Web browser to use:_Width:_X:_Xtns_Y:_Zoom_Zoom (%s)millimetermillimetersminutesecondtips-locale:Ctranslator-creditsProject-Id-Version: GIMP 2.2 Report-Msgid-Bugs-To: -POT-Creation-Date: 2005-02-18 19:44+0200 -PO-Revision-Date: 2005-02-18 19:40+0200 +POT-Creation-Date: 2005-02-23 12:40+0200 +PO-Revision-Date: 2005-02-23 11:42+0200 Last-Translator: Iassen Pramatarov Language-Team: Bulgarian MIME-Version: 1.0 @@ -94,20 +111,23 @@ -f, --no-fonts Без зареждане на шрифтове. -h, --help Показва този помощен текст. -v, --version Данни за версията. -%d слоя%d слоя%d минути%d секунди(%0.3f, %0.3f, %0.3f)1 слой1 слойПрез 15 градуса %s16:1 (1600%)1:1 (100%)1:16 (6.25%)1:2 (50%)1:4 (25%)1:8 (12.5%)2:1 (200%)4:1 (400%)8:1 (800%)<%s><Липсват модули>The GIMP - GNU Image Manipulation Program +%d слоя%d слоя%d минути%d секунди(%0.3f, %0.3f, %0.3f)(грешен уникод низ)1 слой1 слойПрез 15 градуса %s16:1 (1600%)1:1 (100%)1:16 (6.25%)1:2 (50%)1:4 (25%)1:8 (12.5%)2:1 (200%)4:1 (400%)8:1 (800%)<%s><Липсват модули>The GIMP - GNU Image Manipulation Program Copyright (C) 1995-2004 -Spencer Kimball, Peter Mattis и екипът за разработка на the GIMP_ЪгълОтносно GIMPДействиеДобавянеДобавяне на слойДобавяне на текстов слойДобавяне на текст към изображениетоДопълнителни настройкиСпрейСпрей с променливо наляганеВсички файловеВсички файлове (*.*)Разрешаване запълването на изцяло прозрачните областиРазрешаване избирането на изцяло прозрачните областиАни_мацияЪгъл:ИзгледАвтор:Зареждане при стартиранеАвтоматично откриванеЯр_кост и контраст...ФонЦвят на фонаЦветът на фона е:Фон: %d, %d, %dЧерно-бялоЧерно:СиньоСиньо:Яркост и контрастЧеткаРедактор на четкиПапки с четкиЧетка:ЧеткиМеню ЧеткиЗапълванеСпоред разширениетоКо_лони:ПрекъсванеГрешка при създаване на папката "%s": %sГрешка при създаване на прегледаПромяна на цвета на фонаПромяна фоновия цвят на мрежатаКръг_ИзчистванеИзчистванеИзчистване на прозореца с грешкиЗатваряне на %sЦве_товеЦвятЦвят:Колони:Беле_жки:БележкиКон_траст:Настройка на м_режата...Настройка на мрежатаНастройка на мрежата на изображениетоНастройка на бързите клавишиНастройка на _бързите клавиши...Потвърждаване затварянето на не_запазени изображенияПродължаванеСъс съдействието наПреобразуванеПреобразуване на изображениетоАвторски права:Не е открит четецът за помощта на GIMP.Не може да бъде пусната приставката за четене на помощта на GIMP.Създаване на ново изображениеСъздаване на нов слойСъздаване на папката '%s'...Текущо _състояниеТекуща височина:Само текущия слойТекущо състояниеТекуща широчина:_Дублиране на слояПунктираниДата:Мрежа по подразбиранеМрежа на изображението по подразбиранеИзтриване на обектИзтриване на шаблонИзтриване на четкаИзтриване на цвятИзтриване на преливкаИзтриване на слояИзтриване на палитраИзтриване на запазени настройки...Изтриване на избрания шаблонИзтриване на това изображениеГрешка при изтриването на "%s": %sОписаниеУстройстваПрозорциМеню ПрозорциИстория на _документитеИстория на документитеДокументиМеню ДокументиДвойно пунктираниДублиране на слояРедактиранеРедактиране на четкаРедактиране на цвятРедактиране на преливкаРедактиране на палитраВъведете име за тези настройкиВъведете ново име за тези настройкиВъведете местоположенеи (URI):ОбкръжениеИзтриване с фонов цвят или до прозрачностГума_Съобщения за грешкиСъобщения за грешкиГрешка при запазването на XCF файл: %sГрешка при четенето на "%s": %sГрешка при записването на "%s": %sГрешка при запис на XCF файл: %sГрешка при записване на файла "%s": -%sГрешкиСъбитиеЕкспозиция:РазширенияФайлът съществуваВид запълване %sЗапълване на прозрачните областиЗапълване на избранотоЗапълване с фоновия цвятЗапълване с _фоновия цвятЗапълване с цвета за рисуванеЗапълване с прозрачностЗапълване с бялоЗапълване с цвета за _рисуванеЗапълване с _фоновия цвятЗапълване с преливка_ФилтриОткриване на непрекъснати областиОткриване на подобни цветовеОбръщанеОбръщане на слояОбръщане на текстовия слойВид обръщане %s_Хоризонтално обръщане_Вертикално обръщанеОбръщане на изображениетоОбръщане...Обръщане...ПапкаПапкиПапки с шрифтовеШрифт:ШрифтовеМеню ШрифтовеЗа правилната инсталация на GIMP трябва да бъде създадена папката '%s'.Цветове на предния план и фона. Черният и белият квадрат изчистват настройките. Стрелките разменят цветовете. Двойното натискане с мишката отваря прозорец за избор на цвят.Пълен _екранGIMPРазширение на GIMPПриставка на GIMPРедактор на текст на GIMPСъвет за деня от GIMPGIMP XCF изображениеЧетец за помощта на GIMPОбщиПреливкаРедактор на преливкиПапки с преливкиПреливка:ПреливкиМеню ПреливкиСивоЗеленоЗелено:МрежаВисо_чина:Четец за _помощта:ВисочинаВисочина:ПомощЧетец за помощтаСистема за помощЧетецът за помощта не може да бъде пуснатНе е открит четец за помощтаШестнадесетично:ИсторияХоризонтално отстояние на първата черта на мрежата. Може да бъде отрицателно число.Хоризонтално отстояние на чертите на мрежата.Изо_бражениеАко напуснете GIMP сега, тези промени ще бъдат изгубени.ИзображениеРедактор на изображенияДанни за изображениетоМеню ИзображениеРазмер на изображениетоИзглед на прозорците на изображениятаПрозорци на изображениятаИзображението не съдържа видими слоевеФайл на изображениетоРазмер на изображениетоИзображенияМеню ИзображенияНастройки на внасянетоВнасяне на палитраВнасяне на нова палитраВнасяне на палитраПрозорец с данниЗареждане на приставкитеЗареждане на приставката: '%s' -Входни устройстваИнсталацията е успешна. Натиснете "Продължаване".Невалиден уникодГрешни уникод данни във файла "%s".Грешен UTF-8 низ в XCFфайлаГрешна широчина или височина. И двете трябва да са положителни числа.това ли искате да направите?Изглежда преди сте използвали GIMP версия 2.0.Запазване на прозрачносттаЗапазване на съотношението %sЗапазване на прозрачносттаКлавиатураСъбития от клавиатуратаБързи клавишиПоследна грешка:СлойВид на запълването на слояРазмери на слоя:_Име на слоя:СлоевеМеню СлоевеНастройки на сливането на слоеветеВъзстановяване на последната ви сесия в GIMP при зареждане._Вид на чертите:Вид на чертите, изграждащи мрежата.ЗарежданеМетсоположение:Дълги тиретаТърсене на данниУве_личениеУевличениеУправление на модулитеСливане на слоеветеСливане на палитраСливане на видимите слоевеСливане на видимите _слоеве...Сливане на слоеветеСливане на палитриПапки с модулиуправление на модулитеПът до модулаМодулиПреместванеПреместване на слояПреместване на текстовия слойПреместване на текущия слойПреместване:_Брой цветове:ИмеИме:Ново изображениеНов слойНова четкаНова преливкаНов слойНов слой с последно използваните стойностиНов слой...Нова палитраНяма налични четки за този инструмент.Вече не е наличноНяма достатъчно видими слоеве за сливане. Трябва да са поне два.Брой слоеве:ОтместванеОт_варяне като слой...НепрозрачностНепрозрачност:ОтварянеОтваряне на изображениеОтваряне на изображението като слойОтваряне на адресОтваряне на текстов файл (UTF-8)Отваряне на _адрес..._Наскоро зарежданиОтваряне на избрания обектГрешка при отварянето на '%s': +Spencer Kimball, Peter Mattis и екипът за разработка на the GIMP_ЪгълОтносно GIMPДействиеДобавянеДобавяне на слойДобавяне на текстов слойДобавяне на текст към изображениетоДобавяне на изглед "%s" (%s) +Допълнителни настройкиСпрейСпрей с променливо наляганеВсички файловеВсички файлове (*.*)Разрешаване запълването на изцяло прозрачните областиРазрешаване избирането на изцяло прозрачните областиАни_мацияЪгъл:ИзгледАвтор:Зареждане при стартиранеАвтоматично откриванеНалични видове:Яр_кост и контраст...ФонЦвят на фонаЦветът на фона е:Фон: %d, %d, %dЧерно-бялоЧерно:СиньоСиньо:Яркост и контрастЧеткаРедактор на четкиПапки с четкиЧетка:ЧеткиМеню ЧеткиЗапълванеСпоред разширениетоКо_лони:ПрекъсванеГрешка при създаване на папката "%s": %sГрешка при създаване на прегледаПромяна на цвета на фонаПромяна фоновия цвят на мрежатаПромяна перспективата на слоя или избранотоКръг_ИзчистванеИзчистванеИзчистване историята на променитеИзчистване на целия текстИзчистване на прозореца с грешкиНатиснете за обновяване на прегледа +%s Натиснете за силово обновяване на прегледаЗатваряне на %sЦве_товеЦвятЦвят:Колони:Беле_жки:БележкиКон_траст:Настройка на м_режата...Настройка на мрежатаНастройка на мрежата на изображениетоНастройка на бързите клавишиНастройка на _бързите клавиши...Потвърждаване затварянето на не_запазени изображенияПродължаванеСъс съдействието наПреобразуванеПреобразуване на изображениетоАвторски права:Не е открит четецът за помощта на GIMP.Грешка при отваряне на "%s" за четене: %sГрешка при отваряне на "%s" за запис: %sНе може да бъде пусната приставката за четене на помощта на GIMP.Създаване на ново изображениеСъздаване на нов слойСъздаване на папката '%s'...Само мерникТекущо _състояниеТекуща височина:Само текущия слойТекущо състояниеТекуща широчина:_Вид на курсора:_Изобразяване на курсора:Потребителски цвят_Дублиране на слояПунктираниДата:Мрежа по подразбиранеМрежа на изображението по подразбиранеПреглед по под_разбиране на слоеве и канали:Изтриване на обектИзтриване на шаблонИзтриване на четкаИзтриване на цвятИзтриване на преливкаИзтриване на слояИзтриване на палитраИзтриване на запазени настройки...Изтриване на избрания шаблонИзтриване на това изображениеГрешка при изтриването на "%s": %sОписаниеУстройстваПрозорциМеню ПрозорциРазстояние:_Без запазванеИстория на _документитеИстория на документитеДокументиМеню ДокументиДвойно пунктираниДублиране на слояМ_ного малъкОткриване на _ръбовеРедактиранеРедактиране на четкаРедактиране на цвятРедактиране на преливкаРедактиране на палитраВключване показването на подсказки.ОгроменВъведете име за тези настройкиВъведете ново име за тези настройкиВъведете местоположенеи (URI):ОбкръжениеПапки на обкръжениетоИзтриване с фонов цвят или до прозрачностГума_Съобщения за грешкиСъобщения за грешкиГрешка при запазването на XCF файл: %sГрешка при четенето на "%s": %sГрешка при записването на "%s": %sГрешка при запис на XCF файл: %sГрешка при записване на файла "%s": +%sГрешкиСъбитиеМног_о голямЕкспозиция:РазширенияКрасивоФайлът съществуваВид запълване %sЗапълване на прозрачните областиЗапълване на избранотоЗапълване с фоновия цвятЗапълване с _фоновия цвятЗапълване с цвета за рисуванеЗапълване с прозрачностЗапълване с бялоЗапълване с цвета за _рисуванеЗапълване с _фоновия цвятЗапълване с преливка_ФилтриОткриване на непрекъснати областиОткриване на подобни цветовеОбръщанеОбръщане на слояОбръщане на текстовия слойВид обръщане %s_Хоризонтално обръщане_Вертикално обръщанеОбръщане на изображениетоОбръщане на слоя или избранотоОбръщане...Обръщане...ПапкаПапкиПапки с шрифтовеШрифт:ШрифтовеМеню ШрифтовеЗа правилната инсталация на GIMP трябва да бъде създадена папката '%s'.Цветове на предния план и фона. Черният и белият квадрат изчистват настройките. Стрелките разменят цветовете. Двойното натискане с мишката отваря прозорец за избор на цвят.Според _изгледаСпоред изгледаПълен _екранGIMPРазширение на GIMPСъобщение от GIMPПриставка на GIMPРедактор на текст на GIMPСъвет за деня от GIMPGIMP XCF изображениеЧетец за помощта на GIMPОбщиГигантскиПреливкаРедактор на преливкиМеню Редактор на преливкиПапки с преливкиПреливка:ПреливкиМеню ПреливкиСивоСтепени на сивотоЗеленоЗелено:МрежаВисо_чина:Четец за _помощта:ВисочинаВисочина:ПомощЧетец за помощтаСистема за помощЧетецът за помощта не може да бъде пуснатНе е открит четец за помощтаШестнадесетично:ИсторияХоризонтално отстояние на първата черта на мрежата. Може да бъде отрицателно число.Хоризонтално отстояние на чертите на мрежата.ГрамаденИзо_бражениеАко не запазите изображението, промените от последната %s ще бъдат загубени.Ако напуснете GIMP сега, тези промени ще бъдат изгубени.ИзображениеРедактор на изображенияДанни за изображениетоМеню ИзображениеРазмер на изображениетоФормат на ивицата за състояниетоФормат на заглавието на прозорцитеИзглед на прозорците на изображениятаПрозорци на изображениятаИзображението не съдържа видими слоевеФайл на изображениетоРазмер на изображениетоИзображенияМеню ИзображенияНастройки на внасянетоВнасяне на палитраВнасяне на нова палитраВнасяне на палитраОтстъп на първи редПрозорец с данниЗареждане на приставкитеЗареждане на приставката: '%s' +Входни устройстваИнсталацията е успешна. Натиснете "Продължаване".Невалиден уникодГрешни уникод данни във файла "%s".Грешен UTF-8 низ в XCFфайлаГрешна широчина или височина. И двете трябва да са положителни числа.Обръщане на избиранетоОбръщане на избиранетотова ли искате да направите?Запазване на прозрачносттаЗапазване на съотношението %sЗапазване на прозрачносттаКлавиатураСъбития от клавиатуратаБързи клавишиГолямПоследна грешка:СлойВид на запълването на слояРазмери на слоя:_Име на слоя:СлоевеМеню СлоевеНастройки на сливането на слоеветеВъзстановяване на последната ви сесия в GIMP при зареждане.Разстояние +между редовете:_Вид на чертите:Вид на чертите, изграждащи мрежата.ЗарежданеЗареждане на кривиЗареждане на текст от файлМетсоположение:Дълги тиретаТърсене на данниУве_личениеУевличениеУправление на модулитеИзмерванеИзмерване на разстояния и ъглиИзмерване на разстояния и ъглиСреденСливане на слоеветеСливане на палитраСливане на видимите слоевеСливане на видимите _слоеве...Сливане на слоеветеСливане на палитриСъобщението е повторено %d пъти.Съобщението е повторено веднъж.Промяна на избрания цвятПромяна на всички цветовеПапки с модулиуправление на модулитеПът до модулаМодулиКурсор на мишкатаПреместванеПреместване на слояПреместване на избранотоПреместване на текстовия слойИнструмент за преместванеПреместване на слоеве и избиранияПреместване на избранотоПреместване на текущия слойПреместване:_Брой цветове:ИмеИме:Ново изображениеНов слойНова четкаНова преливкаНов слойНов слой с последно използваните стойностиНов слой...Нова палитраНяма налични четки за този инструмент.Вече не е наличноНяма достатъчно видими слоеве за сливане. Трябва да са поне два.Брой слоеве:ОтместванеОт_варяне като слой...НепрозрачностНепрозрачност:ОтварянеОтваряне на изображениеОтваряне на изображението като слойОтваряне на адресОтваряне на текстов файл (UTF-8)Отваряне на _адрес..._Наскоро зарежданиОтваряне на избрания обектГрешка при отварянето на '%s': %sГрешка при отварянето на '%s': %sНастройки: -Па_литриПалитраРедактор на палитриПапки с палитриИме _на палитрата:Файл на _палитраПалитриМеню ПалитриВмъкнат слойМо_ливМоливЛична GIMP папкаПерспективаПерспектива...Моля изчакайте...ПриставкаПапки с приставкиПриставката не може да отвори изображениетоПриставката не може да запише изображениетоПриставката върна съобщение SUCCESS, но не върна изображениеПриставкиПриставкаПриставките и разширенията са външни програми, изпълнявани от GIMP за предоставяне на допълнителна функционалност. Те се откриват при зареждане на GIMP и данните за функционалността и версиите им се записват в този файл. Този файл е предназначен за четене само от GIMP и не трябва да бъде редактиран ръчно.НастройкиНалягане:ПрегледПреглед:Предварителни прегледиПредназначение:КачествоПретърсване за нови приставкиИзлизане от GIMPRGBRGB (%0.3f, %0.3f, %0.3f)RGB (%d, %d, %d)RGB цвятПре_именуване на запазени настройкиЧервеноЧервено:Презареждане на четкитеПрезареждане на преливкитеПрезареждане на палитритеПремахване на слойПремахване на записаПреименуване на слояПреименуване на запазени настройки на инструментитеПреименуване на текстов слойПреименуване на обектаПрезареждане на списъка с шрифтове- за всички инструментиВръщане на стойностите по подразбиранеВъзстановяване на настройките от...ЗавъртанеЗавъртане на 90 градуса _обратно на часовниковата стрелкаЗавъртане на 90 градуса _по часовниковата стрелкаЗавъртане на слояЗавъртане на текстовия слойЗавъртане на _180 градусаЗавъртане на изображениетоЗавъртане...Обръ_щане на цветоветеЗапазванеЗапазване на '%s' в POV-Ray форматЗапазване на изображениетоЗапазване настройките на входното устройство _сегаЗапазване на бързите клавиши _сегаЗапазване настройките на инструментаЗапомняне на разположението _сегаЗапазване на всички грешки във файл...Запазване _като...Запазване на _копие...Запазване копие на изображениетоЗапазване на всички грешкиЗапазване като _POV-Ray файл...Запазване на преливката в POV-Ray форматЗапазване на настройките в...Запазени настройкиЗапазване на '%s' +Па_литриПалитраРедактор на палитриПапки с палитриИме _на палитрата:Файл на _палитраПалитриМеню ПалитриВмъкнат слойМо_ливМоливЛична GIMP папкаПерспективаДанни за промяната на перспективатаПерспектива...Моля изчакайте...ПриставкаПапки с приставкиПриставката не може да отвори изображениетоПриставката не може да запише изображениетоПриставката върна съобщение SUCCESS, но не върна изображениеПриставкиПриставкаПриставките и разширенията са външни програми, изпълнявани от GIMP за предоставяне на допълнителна функционалност. Те се откриват при зареждане на GIMP и данните за функционалността и версиите им се записват в този файл. Този файл е предназначен за четене само от GIMP и не трябва да бъде редактиран ръчно.НастройкиНалягане:ПрегледПреглед:Предварителни прегледиПредназначение:КачествоПретърсване за нови приставкиБързо зарежданеБързо запазванеИзлизане от GIMPRGBRGB (%0.3f, %0.3f, %0.3f)RGB (%d, %d, %d)RGB цвятРадиус:Пре_именуване на запазени настройкиЧервеноЧервено:ВръщанеПрезареждане на четкитеПрезареждане на преливкитеПрезареждане на палитритеПрезареждане на текущия изгледПремахване на слойПремахване на записаПреименуване на слояПреименуване на запазени настройки на инструментитеПреименуване на текстов слойПреименуване на обектаПовтаряне на последнияПрезареждане на списъка с шрифтове- за всички инструментиВръщане на стойностите по подразбиранеВъзстановяване на настройките от...ЗавъртанеЗавъртане на 90 градуса _обратно на часовниковата стрелкаЗавъртане на 90 градуса _по часовниковата стрелкаЗавъртане на слояЗавъртане на текстовия слойЗавъртане на _180 градусаЗавъртане на изображениетоЗавъртане на слоя или избранотоЗавъртане...Данни за завъртанетоПоказване на _мрежатаОбръ_щане на цветоветеЗапазванеЗапазване на '%s' в POV-Ray форматЗапазване на кривиЗапазване на изображениетоЗапазване настройките на входното устройство _сегаЗапазване на бързите клавиши _сегаЗапазване настройките на инструментаЗапомняне на разположението _сегаЗапазване на всички грешки във файл...Запазване на _избраното във файл...Запазване _като...Запазване на _копие...Запазване копие на изображениетоЗапазване на всички грешкиЗапазване като _POV-Ray файл...Запазване на преливката в POV-Ray форматЗапазване на настройките в...Да бъдат ли запазени промените в изображението "%s" преди затваряне?Запазване разположението и размерите на основните прозорци при спиране на GIMP.Запазени настройкиЗапазване на '%s' Грешка при запазването на '%s' -%sЗапазване на изображениятаПапки със скриптовеСкриптовеИзбиранеИзбиране на всичкоИзбор на цвятИзбор на увеличениеИзбиране на _предишния слойИзбиране на всичкоИзбиране на непрекъснати областиИзбиране на елиптични областиРъчно избиранеИзбиране на прозрачните областиИзбор на уеб-четецЧувствителностЗадаване на непрозрачносттаЗадаване цвета на фонаЗадаване на четец за помощта.Вид на сенкитеСенкиКлавишКлавишът "%s" вече е запазен за "%s" от групата "%s".Показване на _цвета на предния план и фонаПоказване на текущото _изображениеПоказване на _бутоните на помощтаПоказване на съвет и следващия пътПоказване на съвети при начално _зарежданеРазмерРазмер в паметта:Размер:Пропускане на '%s': несъответствие на версията на протокола на GIMP.ПлътниОтстоянияСкорост:Зареждане на разширениятаЗареждане на разширение: '%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 не може да създаде прегледите, ако прегледите на слоевете са забранени.Определя текста, който ще се появява в ивицата за състояние на прозорците с изображения.Определя текста, който ще се появява в заглавията на прозорците с изображения.Вид на сенкитеСенкиФормаКлавишКлавишът "%s" вече е запазен за "%s" от групата "%s".Показване на _линийкитеПоказване на ивицата за _състояниеПоказване на _плъзгачитеПоказване _границите на слоеветеПоказване на _менютоПоказване на _избранотоПоказване на _цвета на предния план и фонаПоказване _границите на слоеветеПоказване на _менютоПоказване на _линийкитеПоказване на текущото _изображениеПоказване на _мрежатаПоказване на _бутоните на помощтаПоказване на из_бранотоПоказване на ивицата за с_ъстояниеПоказване на _плъзгачитеПоказване на съвет и следващия пътПоказване на съвети при начално _зарежданеПоказване на _подсказкиРазмерРазмер в паметта:Размер:Пропускане на '%s': несъответствие на версията на протокола на GIMP.МалъкПре_лепяне към прежатаПлътниИзточникОтстоянияСкорост:Зареждане на разширениятаЗареждане на разширение: '%s' Състояние:Ин_струментиТе_кстПрекъсване на приставка: '%s' -ТекстЦвят на текстаРедактор на текстТекстов слойТекстът е промененThe·GIMPПриставката за четене на помощта на GIMP изглежда липсва в инсталацията ви.Фонов цвят на мрежата; използва се само при мрежа с двойно пунктирани линии.Цвят на чертите, изграждащи мрежата.Има %d изображения с незапазени промени:Има едно изображение с незапазени промени:Този инструмент няма настройки.Иг_рачкиТвърде много съобщения за грешки!Настройки на инструментитеНастройки на _инструментите_Кутия с инструментиКутия с инструментиИнструментиМеню Инструменти_ПрозрачностПреобразуванеПреобразуване...Превод:ПрозрачностВид _прозрачност:История на _променитеМерни единициНеизвестен вид файлНеизвестен вид файл на палитра: -%sНеозаглавеноИзползване на _уеб-четецИзползване на черно-бяла (еднобитова) палитраСтойностСтойност:Версия %s създадена отВерсия:Вертикално отстояние на първата черта на мрежата. Може да бъде отрицателно число.Вертикално отстояние на чертите на мрежата.ИзгледПредупреждение: Грешка при зареждане на данните: +ТекстЦвят на текстаРедактор на текстТекстов слойТекстът е промененThe·GIMPПриставката за четене на помощта на GIMP изглежда липсва в инсталацията ви.Фонов цвят на мрежата; използва се само при мрежа с двойно пунктирани линии.Цвят на чертите, изграждащи мрежата.ИзгледПапки с изгледиИзгледиИма %d изображения с незапазени промени:Има едно изображение с незапазени промени:Тази папка се претърсва за инсталирани от потребителя изгледи.Този инструмент няма настройки.МиниатюренЗаглавие и състояниеИг_рачкиТвърде много съобщения за грешки!Настройки на инструментитеМеню Настройки на интсрументаНастройки на _инструментитеИкона на инструментаИкона на инструмента с мерник_Кутия с инструментиКутия с инструментиМеню Кутия с инструментиИнструментиМеню Инструменти_ПрозрачностПреобразуванеПреобразуване...Превод:ПрозрачностВид _прозрачност:ВидВид %sОтмянаИстория на променитеИстория на _променитеМерни единициНеизвестен вид файлНеизвестен вид файл на палитра: +%sНеозаглавеноИзползване на _уеб-четецИзползване на черно-бяла (еднобитова) палитраИзползване на цвят от преливкаСтойностСтойност:Версия %s създадена отВерсия:Вертикално отстояние на първата черта на мрежата. Може да бъде отрицателно число.Вертикално отстояние на чертите на мрежата.Много голямМного малъкИзгледПредупреждение: Грешка при зареждане на данните: %sПредупреждение: Грешка при запазване на данните: @@ -116,4 +136,4 @@ XXCF грешка: неподдържана версия %d на XCF файлаПредупреждение за XCF: Версията 0 на файловия формат XCF не запазва правилно индексирани цветови карти. -Замяна с цветова карта на степени на сивото.YЖълтоЖълто:Трябва да изпълните отново GIMP, за да се приложат следните промени:Инсталацията ви на GIMP е непълна:Мащаб 1:1УвеличаванеНамаляванеМащаб на увеличениетоМащаб на увеличението:_Увеличаване_НамаляванеМащаб %d:1Промяна на мащаба при промяна размера на прозорецаУвеличаванеНамаляване и увеличаванеНамаляванеМащаб:_Относно_Снимане_Допълнителни настройки_Спрей_Цвят на фона:_Яркост:_Четка_Четки_Запълване_Изчистване на прозореца с грешкиИз__Затваряне_Облаци_Цветове_Контекстна помощ_Изтриване на четка_Изтриване на цвят_Изтриване на преливка..._Изтриване на изображение_Изтриване на слоя_Изтриване на палитра_Изтриване на запазени настройки_Изтриване на шаблон_ПрозорциОт_хвърляне на промените_Редактиране_Редактиране на четка..._Редактиране на цвят..._Редактиране на преливка..._Редактиране на палитра..._Гума_Файл_Запълване с:_Обръщане_Шрифт_ШрифтовеЦвят на _чертите:_Преливка_Преливки_Помощ_Изображение_Изображения_Внасяне_Внасяне на палитра...Прзорец с _данни_Слой_Слоеве_Ръчно_Сливане на палитри..._Управление на модулите_Преместване_Име:_Нова четка_Нова преливка_Нов слой_Нов слой..._Нова палитра_Нов изглед_Нов..._Следващ съвет_Шум_Непрозрачност_Отваряне на изображението_Отваряне..._Палитра_Перспектива_Настройки_ПрегледРазмер на _прегледа_Предишен съвет_Изход_RGB_Радиус_Презареждане на четките_Презареждане на преливките_Презареждане на палитрите_Презареждане на списъка с шрифтове_Връщане на подразбиращите се настройки на входните устройства_Връщане на подразбиращите се бързи клавиши_Връщане на подразбиращите се разположения_Възстановяване на настройките от_Завъртане_Запазване_Запазване на настройките в_Запазване настройките на входното устройство при изход_Запазване на бързите клавиши при излизане_Запомняне на разположението при излизане_Избиране_Синусоидално_Шаблон:_Текст_Съвет за деня_Инструменти_Преобразуване_Изглед_Използване на:_Широчина:_X:_Допълнения_Y:_Мащаб_Мащаб (%s)милиметърмилиметриtips-locale:bgЯсен Праматаров \ No newline at end of file +Замяна с цветова карта на степени на сивото.YЖълтоЖълто:Трябва да изпълните отново GIMP, за да се приложат следните промени:Инсталацията ви на GIMP е непълна:Мащаб 1:1УвеличаванеНамаляванеМащаб на увеличениетоМащаб на увеличението:_Увеличаване_НамаляванеМащаб %d:1Промяна на мащаба при промяна размера на прозорецаУвеличаванеНамаляване и увеличаванеНамаляванеМащаб:_Относно_Снимане_Допълнителни настройки_Спрей_Всичко_Цвят на фона:_Яркост:_Четка_Четки_Запълване_Изчистване на прозореца с грешкиИз__Затваряне_Облаци_Цветове_Контекстна помощ_Криви..._Цветове по подразбиране_Изтриване на четка_Изтриване на цвят_Изтриване на преливка..._Изтриване на изображение_Изтриване на слоя_Изтриване на палитра_Изтриване на запазени настройки_Изтриване на шаблон_ПрозорциОт_хвърляне на промените_Редактиране_Редактиране на четка..._Редактиране на цвят..._Редактиране на преливка..._Редактиране на палитра...Ог_ромен_Гума_Файл_Запълване с:_Обръщане_Шрифт_ШрифтовеЦвят на _чертите:Гига_нтски_Преливка_ПреливкиСтепени на _сивото_ПомощГрам_аден_Изображение_Изображения_Внасяне_Внасяне на палитра...Прзорец с _данни_Обръщане_Голям_Слой_Слоеве_Светлинни ефекти_Ръчно_Измерване_Среден_Сливане на палитри..._Управление на модулите_Преместване_Име:_Нова четка_Нова преливка_Нов слой_Нов слой..._Нова палитра_Нов изглед_Нов..._Следващ съвет_Шум_Нищо_Непрозрачност_Отваряне на изображението_Отваряне..._Палитра_Перспектива_Настройки_ПрегледРазмер на _прегледа_Предишен съвет_Изход_RGB_Радиус_Връщане_Презареждане на четките_Презареждане на преливките_Презареждане на палитрите_Презареждане на списъка с шрифтове_Връщане на подразбиращите се настройки на входните устройства_Връщане на подразбиращите се бързи клавиши_Връщане на подразбиращите се разположения_Възстановяване на настройките от_Завъртане_Запазване_Запазване на настройките в_Запазване настройките на входното устройство при изход_Запазване на бързите клавиши при излизане_Запомняне на разположението при излизане_Избиране_СинусоидалноМа_лък_Шаблон:_Текст_Миниатюрен_Съвет за деня_Инструмент_Инструменти_Преобразуване_Отмяна_Изглед_Използване на:_Широчина:_X:_Допълнения_Y:_Мащаб_Мащаб (%s)милиметърмилиметриминутасекундаtips-locale:bgЯсен Праматаров \ No newline at end of file diff -uraN gimp-2.2.4/po/bg.po gimp-2.2.5/po/bg.po --- gimp-2.2.4/po/bg.po 2005-02-18 18:54:34.000000000 +0100 +++ gimp-2.2.5/po/bg.po 2005-02-23 18:44:43.000000000 +0100 @@ -8,8 +8,8 @@ msgstr "" "Project-Id-Version: GIMP 2.2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-02-18 19:44+0200\n" -"PO-Revision-Date: 2005-02-18 19:40+0200\n" +"POT-Creation-Date: 2005-02-23 12:40+0200\n" +"PO-Revision-Date: 2005-02-23 11:42+0200\n" "Last-Translator: Iassen Pramatarov \n" "Language-Team: Bulgarian \n" "MIME-Version: 1.0\n" @@ -17,18 +17,18 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -#: app/app_procs.c:144 +#: ../app/app_procs.c:144 msgid "(This console window will close in ten seconds)\n" msgstr "" -#: app/app_procs.c:238 +#: ../app/app_procs.c:238 msgid "" "GIMP is not properly installed for the current user.\n" "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 "" -#: app/app_procs.c:289 +#: ../app/app_procs.c:289 #, c-format msgid "" "Unable to open a test swap file. To avoid data loss please check the " @@ -36,43 +36,43 @@ "(currently \"%s\")." msgstr "" -#: app/app_procs.c:348 app/core/gimppalette-import.c:441 +#: ../app/app_procs.c:348 ../app/core/gimppalette-import.c:441 #, c-format msgid "Opening '%s' failed: %s" msgstr "Грешка при отварянето на '%s': %s" -#: app/batch.c:84 app/batch.c:101 +#: ../app/batch.c:84 ../app/batch.c:101 #, c-format msgid "The batch interpreter '%s' is not available, batch mode disabled." msgstr "" -#: app/main.c:211 +#: ../app/main.c:211 msgid "" "GIMP could not initialize the graphical user interface.\n" "Make sure a proper setup for your display environment exists." msgstr "" -#: app/main.c:222 app/widgets/gimptoolbox.c:559 -#: data/misc/gimp.desktop.in.in.h:3 +#: ../app/main.c:222 ../app/widgets/gimptoolbox.c:559 +#: ../data/misc/gimp.desktop.in.in.h:3 msgid "The GIMP" msgstr "The·GIMP" #. #. * anything else starting with a '-' is an error. #. -#: app/main.c:422 +#: ../app/main.c:422 #, c-format msgid "" "\n" "Invalid option \"%s\"\n" msgstr "" -#: app/main.c:501 +#: ../app/main.c:501 #, fuzzy msgid "GIMP version" msgstr "Разширение на GIMP" -#: app/main.c:509 +#: ../app/main.c:509 #, c-format msgid "" "\n" @@ -80,109 +80,111 @@ "\n" msgstr "" -#: app/main.c:511 +#: ../app/main.c:511 msgid "Options:\n" msgstr "Настройки:\n" -#: app/main.c:512 +#: ../app/main.c:512 msgid " -h, --help Output this help.\n" msgstr " -h, --help Показва този помощен текст.\n" -#: app/main.c:513 +#: ../app/main.c:513 msgid " -v, --version Output version information.\n" msgstr " -v, --version Данни за версията.\n" -#: app/main.c:514 +#: ../app/main.c:514 msgid " --verbose Show startup messages.\n" msgstr "" -#: app/main.c:515 +#: ../app/main.c:515 #, fuzzy msgid "" " --no-shm Do not use shared memory between GIMP and " "plugins.\n" msgstr "Да не се споделя паметта между GIMP и приставките" -#: app/main.c:516 +#: ../app/main.c:516 msgid " --no-cpu-accel Do not use special CPU accelerations.\n" msgstr "" -#: app/main.c:517 +#: ../app/main.c:517 #, fuzzy msgid "" " -d, --no-data Do not load brushes, gradients, palettes, " "patterns.\n" msgstr " -f, --no-fonts Без зареждане на шрифтове.\n" -#: app/main.c:518 +#: ../app/main.c:518 msgid " -f, --no-fonts Do not load any fonts.\n" msgstr " -f, --no-fonts Без зареждане на шрифтове.\n" -#: app/main.c:519 +#: ../app/main.c:519 msgid " -i, --no-interface Run without a user interface.\n" msgstr "" -#: app/main.c:520 +#: ../app/main.c:520 msgid " --display Use the designated X display.\n" msgstr "" -#: app/main.c:521 +#: ../app/main.c:521 #, fuzzy msgid " -s, --no-splash Do not show the startup window.\n" msgstr " -f, --no-fonts Без зареждане на шрифтове.\n" -#: app/main.c:522 +#: ../app/main.c:522 #, fuzzy msgid " --session Use an alternate sessionrc file.\n" msgstr "Използване на различен файл на сесия (sessionrc)" -#: app/main.c:523 +#: ../app/main.c:523 +#, fuzzy msgid " -g, --gimprc Use an alternate gimprc file.\n" -msgstr "" +msgstr "Използване на различен файл gimprc с потребителски настройки" -#: app/main.c:524 +#: ../app/main.c:524 +#, fuzzy msgid " --system-gimprc Use an alternate system gimprc file.\n" -msgstr "" +msgstr "Използване на различен файл gimprc със системни настройки" -#: app/main.c:525 +#: ../app/main.c:525 msgid "" " --dump-gimprc Output a gimprc file with default settings.\n" msgstr "" -#: app/main.c:526 +#: ../app/main.c:526 msgid "" " -c, --console-messages Display warnings to console instead of a dialog " "box.\n" msgstr "" -#: app/main.c:527 +#: ../app/main.c:527 msgid "" " --debug-handlers Enable non-fatal debugging signal handlers.\n" msgstr "" -#: app/main.c:528 +#: ../app/main.c:528 msgid "" " --stack-trace-mode \n" " Debugging mode for fatal signals.\n" msgstr "" -#: app/main.c:530 +#: ../app/main.c:530 msgid "" " --pdb-compat-mode \n" " Procedural Database compatibility mode.\n" msgstr "" -#: app/main.c:532 +#: ../app/main.c:532 msgid "" " --batch-interpreter \n" " The procedure to process batch commands with.\n" msgstr "" -#: app/main.c:534 +#: ../app/main.c:534 msgid " -b, --batch Process commands in batch mode.\n" msgstr "" -#: app/sanity.c:194 +#: ../app/sanity.c:194 #, c-format msgid "" "The configured filename encoding cannot be converted to UTF-8: %s\n" @@ -190,7 +192,7 @@ "Please check the value of the environment variable G_FILENAME_ENCODING." msgstr "" -#: app/sanity.c:213 +#: ../app/sanity.c:213 #, c-format msgid "" "The name of the directory holding the GIMP user configuration cannot be " @@ -202,806 +204,818 @@ msgstr "" #. initialize the list of gimp brushes -#: app/actions/actions.c:93 app/core/gimp.c:856 app/dialogs/dialogs.c:138 -#: app/dialogs/preferences-dialog.c:2297 app/pdb/internal_procs.c:92 +#: ../app/actions/actions.c:93 ../app/core/gimp.c:856 +#: ../app/dialogs/dialogs.c:138 ../app/dialogs/preferences-dialog.c:2297 +#: ../app/pdb/internal_procs.c:92 msgid "Brushes" msgstr "Четки" -#: app/actions/actions.c:96 app/dialogs/dialogs.c:150 +#: ../app/actions/actions.c:96 ../app/dialogs/dialogs.c:150 msgid "Buffers" msgstr "" -#: app/actions/actions.c:99 app/dialogs/dialogs.c:163 +#: ../app/actions/actions.c:99 ../app/dialogs/dialogs.c:163 msgid "Channels" msgstr "" -#: app/actions/actions.c:102 +#: ../app/actions/actions.c:102 msgid "Colormap Editor" msgstr "" -#: app/actions/actions.c:105 app/pdb/internal_procs.c:101 +#: ../app/actions/actions.c:105 ../app/pdb/internal_procs.c:101 msgid "Context" msgstr "" -#: app/actions/actions.c:108 +#: ../app/actions/actions.c:108 msgid "Debug" msgstr "" -#: app/actions/actions.c:111 +#: ../app/actions/actions.c:111 msgid "Dialogs" msgstr "Прозорци" -#: app/actions/actions.c:114 +#: ../app/actions/actions.c:114 msgid "Dockable" msgstr "" -#: app/actions/actions.c:117 app/dialogs/dialogs.c:152 +#: ../app/actions/actions.c:117 ../app/dialogs/dialogs.c:152 msgid "Document History" msgstr "История на документите" -#: app/actions/actions.c:120 app/core/core-enums.c:1041 -#: app/core/core-enums.c:1071 +#: ../app/actions/actions.c:120 ../app/core/core-enums.c:1041 +#: ../app/core/core-enums.c:1071 msgid "Drawable" msgstr "" -#: app/actions/actions.c:123 app/tools/tools-enums.c:144 +#: ../app/actions/actions.c:123 ../app/tools/tools-enums.c:144 msgid "Edit" msgstr "Редактиране" -#: app/actions/actions.c:126 app/dialogs/dialogs.c:131 +#: ../app/actions/actions.c:126 ../app/dialogs/dialogs.c:131 msgid "Error Console" msgstr "Съобщения за грешки" -#: app/actions/actions.c:129 +#: ../app/actions/actions.c:129 msgid "File" msgstr "" #. initialize the list of gimp fonts -#: app/actions/actions.c:132 app/core/gimp.c:872 app/dialogs/dialogs.c:146 -#: app/dialogs/preferences-dialog.c:2313 app/pdb/internal_procs.c:128 +#: ../app/actions/actions.c:132 ../app/core/gimp.c:872 +#: ../app/dialogs/dialogs.c:146 ../app/dialogs/preferences-dialog.c:2313 +#: ../app/pdb/internal_procs.c:128 msgid "Fonts" msgstr "Шрифтове" -#: app/actions/actions.c:135 app/dialogs/dialogs.c:205 +#: ../app/actions/actions.c:135 ../app/dialogs/dialogs.c:205 msgid "Gradient Editor" msgstr "Редактор на преливки" #. initialize the list of gimp gradients -#: app/actions/actions.c:138 app/core/gimp.c:868 app/dialogs/dialogs.c:142 -#: app/dialogs/preferences-dialog.c:2309 app/pdb/internal_procs.c:140 +#: ../app/actions/actions.c:138 ../app/core/gimp.c:868 +#: ../app/dialogs/dialogs.c:142 ../app/dialogs/preferences-dialog.c:2309 +#: ../app/pdb/internal_procs.c:140 msgid "Gradients" msgstr "Преливки" -#: app/actions/actions.c:141 +#: ../app/actions/actions.c:141 msgid "Help" msgstr "Помощ" -#: app/actions/actions.c:144 app/pdb/internal_procs.c:149 -#: app/tools/tools-enums.c:176 +#: ../app/actions/actions.c:144 ../app/pdb/internal_procs.c:149 +#: ../app/tools/tools-enums.c:176 msgid "Image" msgstr "Изображение" #. list & grid views -#: app/actions/actions.c:147 app/dialogs/dialogs.c:136 +#: ../app/actions/actions.c:147 ../app/dialogs/dialogs.c:136 msgid "Images" msgstr "Изображения" -#: app/actions/actions.c:150 app/dialogs/dialogs.c:159 +#: ../app/actions/actions.c:150 ../app/dialogs/dialogs.c:159 msgid "Layers" msgstr "Слоеве" -#: app/actions/actions.c:153 app/dialogs/dialogs.c:209 +#: ../app/actions/actions.c:153 ../app/dialogs/dialogs.c:209 msgid "Palette Editor" msgstr "Редактор на палитри" #. initialize the list of gimp palettes -#: app/actions/actions.c:156 app/core/gimp.c:864 app/dialogs/dialogs.c:144 -#: app/dialogs/preferences-dialog.c:2305 app/pdb/internal_procs.c:170 +#: ../app/actions/actions.c:156 ../app/core/gimp.c:864 +#: ../app/dialogs/dialogs.c:144 ../app/dialogs/preferences-dialog.c:2305 +#: ../app/pdb/internal_procs.c:170 msgid "Palettes" msgstr "Палитри" #. initialize the list of gimp patterns -#: app/actions/actions.c:159 app/core/gimp.c:860 app/dialogs/dialogs.c:140 -#: app/dialogs/preferences-dialog.c:2301 app/pdb/internal_procs.c:185 +#: ../app/actions/actions.c:159 ../app/core/gimp.c:860 +#: ../app/dialogs/dialogs.c:140 ../app/dialogs/preferences-dialog.c:2301 +#: ../app/pdb/internal_procs.c:185 msgid "Patterns" msgstr "" -#: app/actions/actions.c:162 app/dialogs/preferences-dialog.c:2317 +#: ../app/actions/actions.c:162 ../app/dialogs/preferences-dialog.c:2317 msgid "Plug-Ins" msgstr "Приставки" -#: app/actions/actions.c:165 +#: ../app/actions/actions.c:165 msgid "QuickMask" msgstr "" -#: app/actions/actions.c:168 +#: ../app/actions/actions.c:168 msgid "Select" msgstr "Избиране" #. initialize the template list -#: app/actions/actions.c:171 app/core/gimp.c:880 app/dialogs/dialogs.c:154 +#: ../app/actions/actions.c:171 ../app/core/gimp.c:880 +#: ../app/dialogs/dialogs.c:154 msgid "Templates" msgstr "" -#: app/actions/actions.c:174 +#: ../app/actions/actions.c:174 msgid "Text Editor" msgstr "Редактор на текст" -#: app/actions/actions.c:177 app/dialogs/dialogs.c:123 -#: app/dialogs/preferences-dialog.c:1585 app/dialogs/preferences-dialog.c:1588 -#: app/gui/gui.c:410 +#: ../app/actions/actions.c:177 ../app/dialogs/dialogs.c:123 +#: ../app/dialogs/preferences-dialog.c:1585 +#: ../app/dialogs/preferences-dialog.c:1588 ../app/gui/gui.c:410 msgid "Tool Options" msgstr "Настройки на инструментите" -#: app/actions/actions.c:180 app/dialogs/dialogs.c:148 +#: ../app/actions/actions.c:180 ../app/dialogs/dialogs.c:148 msgid "Tools" msgstr "Инструменти" -#: app/actions/actions.c:183 app/dialogs/dialogs.c:167 -#: app/pdb/internal_procs.c:176 app/tools/gimpvectortool.c:160 +#: ../app/actions/actions.c:183 ../app/dialogs/dialogs.c:167 +#: ../app/pdb/internal_procs.c:176 ../app/tools/gimpvectortool.c:160 msgid "Paths" msgstr "" -#: app/actions/actions.c:186 +#: ../app/actions/actions.c:186 msgid "View" msgstr "Изглед" -#: app/actions/brushes-actions.c:43 +#: ../app/actions/brushes-actions.c:43 msgid "Brushes Menu" msgstr "Меню Четки" -#: app/actions/brushes-actions.c:47 +#: ../app/actions/brushes-actions.c:47 msgid "_New Brush" msgstr "_Нова четка" -#: app/actions/brushes-actions.c:48 +#: ../app/actions/brushes-actions.c:48 msgid "New brush" msgstr "Нова четка" -#: app/actions/brushes-actions.c:53 +#: ../app/actions/brushes-actions.c:53 msgid "D_uplicate Brush" msgstr "" -#: app/actions/brushes-actions.c:54 +#: ../app/actions/brushes-actions.c:54 msgid "Duplicate brush" msgstr "" -#: app/actions/brushes-actions.c:59 +#: ../app/actions/brushes-actions.c:59 msgid "_Delete Brush" msgstr "_Изтриване на четка" -#: app/actions/brushes-actions.c:60 +#: ../app/actions/brushes-actions.c:60 msgid "Delete brush" msgstr "Изтриване на четка" -#: app/actions/brushes-actions.c:65 +#: ../app/actions/brushes-actions.c:65 msgid "_Refresh Brushes" msgstr "_Презареждане на четките" -#: app/actions/brushes-actions.c:66 +#: ../app/actions/brushes-actions.c:66 msgid "Refresh brushes" msgstr "Презареждане на четките" -#: app/actions/brushes-actions.c:74 +#: ../app/actions/brushes-actions.c:74 msgid "_Edit Brush..." msgstr "_Редактиране на четка..." -#: app/actions/brushes-actions.c:75 +#: ../app/actions/brushes-actions.c:75 msgid "Edit brush" msgstr "Редактиране на четка" -#: app/actions/buffers-actions.c:42 +#: ../app/actions/buffers-actions.c:42 msgid "Buffers Menu" msgstr "" -#: app/actions/buffers-actions.c:46 +#: ../app/actions/buffers-actions.c:46 msgid "_Paste Buffer" msgstr "" -#: app/actions/buffers-actions.c:47 +#: ../app/actions/buffers-actions.c:47 msgid "Paste the selected buffer" msgstr "" -#: app/actions/buffers-actions.c:52 +#: ../app/actions/buffers-actions.c:52 msgid "Paste Buffer _Into" msgstr "" -#: app/actions/buffers-actions.c:53 +#: ../app/actions/buffers-actions.c:53 msgid "Paste the selected buffer into the selection" msgstr "" -#: app/actions/buffers-actions.c:58 +#: ../app/actions/buffers-actions.c:58 msgid "Paste Buffer as _New" msgstr "" -#: app/actions/buffers-actions.c:59 +#: ../app/actions/buffers-actions.c:59 msgid "Paste the selected buffer as new image" msgstr "" -#: app/actions/buffers-actions.c:64 +#: ../app/actions/buffers-actions.c:64 msgid "_Delete Buffer" msgstr "" -#: app/actions/buffers-actions.c:65 +#: ../app/actions/buffers-actions.c:65 msgid "Delete the selected buffer" msgstr "" -#: app/actions/channels-actions.c:44 +#: ../app/actions/channels-actions.c:44 msgid "Channels Menu" msgstr "" -#: app/actions/channels-actions.c:48 +#: ../app/actions/channels-actions.c:48 msgid "_Edit Channel Attributes..." msgstr "" -#: app/actions/channels-actions.c:49 +#: ../app/actions/channels-actions.c:49 msgid "Edit channel attributes" msgstr "" -#: app/actions/channels-actions.c:54 +#: ../app/actions/channels-actions.c:54 msgid "_New Channel..." msgstr "" -#: app/actions/channels-actions.c:55 +#: ../app/actions/channels-actions.c:55 msgid "New channel..." msgstr "" -#: app/actions/channels-actions.c:60 +#: ../app/actions/channels-actions.c:60 msgid "_New Channel" msgstr "" -#: app/actions/channels-actions.c:61 +#: ../app/actions/channels-actions.c:61 msgid "New channel with last values" msgstr "" -#: app/actions/channels-actions.c:66 +#: ../app/actions/channels-actions.c:66 msgid "D_uplicate Channel" msgstr "" -#: app/actions/channels-actions.c:67 +#: ../app/actions/channels-actions.c:67 msgid "Duplicate channel" msgstr "" -#: app/actions/channels-actions.c:72 +#: ../app/actions/channels-actions.c:72 msgid "_Delete Channel" msgstr "" -#: app/actions/channels-actions.c:73 app/core/core-enums.c:1089 +#: ../app/actions/channels-actions.c:73 ../app/core/core-enums.c:1089 msgid "Delete channel" msgstr "" -#: app/actions/channels-actions.c:78 +#: ../app/actions/channels-actions.c:78 msgid "_Raise Channel" msgstr "" -#: app/actions/channels-actions.c:79 +#: ../app/actions/channels-actions.c:79 msgid "Raise channel" msgstr "" -#: app/actions/channels-actions.c:84 +#: ../app/actions/channels-actions.c:84 msgid "Raise Channel to _Top" msgstr "" -#: app/actions/channels-actions.c:85 +#: ../app/actions/channels-actions.c:85 msgid "Raise channel to top" msgstr "" -#: app/actions/channels-actions.c:90 +#: ../app/actions/channels-actions.c:90 msgid "_Lower Channel" msgstr "" -#: app/actions/channels-actions.c:91 +#: ../app/actions/channels-actions.c:91 msgid "Lower channel" msgstr "" -#: app/actions/channels-actions.c:96 +#: ../app/actions/channels-actions.c:96 msgid "Lower Channel to _Bottom" msgstr "" -#: app/actions/channels-actions.c:97 +#: ../app/actions/channels-actions.c:97 msgid "Lower channel to bottom" msgstr "" -#: app/actions/channels-actions.c:105 +#: ../app/actions/channels-actions.c:105 msgid "Channel to Sele_ction" msgstr "" -#: app/actions/channels-actions.c:106 +#: ../app/actions/channels-actions.c:106 msgid "Channel to selection" msgstr "" -#: app/actions/channels-actions.c:111 app/actions/layers-actions.c:226 -#: app/actions/vectors-actions.c:173 +#: ../app/actions/channels-actions.c:111 ../app/actions/layers-actions.c:226 +#: ../app/actions/vectors-actions.c:173 msgid "_Add to Selection" msgstr "" -#: app/actions/channels-actions.c:112 app/actions/vectors-actions.c:174 +#: ../app/actions/channels-actions.c:112 ../app/actions/vectors-actions.c:174 msgid "Add" msgstr "Добавяне" -#: app/actions/channels-actions.c:117 app/actions/layers-actions.c:231 -#: app/actions/layers-actions.c:254 app/actions/vectors-actions.c:179 +#: ../app/actions/channels-actions.c:117 ../app/actions/layers-actions.c:231 +#: ../app/actions/layers-actions.c:254 ../app/actions/vectors-actions.c:179 msgid "_Subtract from Selection" msgstr "" -#: app/actions/channels-actions.c:118 app/actions/vectors-actions.c:180 -#: app/widgets/gimpwidgets-constructors.c:69 -#: app/widgets/gimpwidgets-constructors.c:102 +#: ../app/actions/channels-actions.c:118 ../app/actions/vectors-actions.c:180 +#: ../app/widgets/gimpwidgets-constructors.c:69 +#: ../app/widgets/gimpwidgets-constructors.c:102 msgid "Subtract" msgstr "" -#: app/actions/channels-actions.c:123 app/actions/layers-actions.c:236 -#: app/actions/layers-actions.c:259 app/actions/vectors-actions.c:185 +#: ../app/actions/channels-actions.c:123 ../app/actions/layers-actions.c:236 +#: ../app/actions/layers-actions.c:259 ../app/actions/vectors-actions.c:185 msgid "_Intersect with Selection" msgstr "" -#: app/actions/channels-actions.c:124 app/actions/vectors-actions.c:186 +#: ../app/actions/channels-actions.c:124 ../app/actions/vectors-actions.c:186 msgid "Intersect" msgstr "" -#: app/actions/channels-commands.c:86 app/actions/channels-commands.c:383 +#: ../app/actions/channels-commands.c:86 +#: ../app/actions/channels-commands.c:383 msgid "Channel Attributes" msgstr "" -#: app/actions/channels-commands.c:89 +#: ../app/actions/channels-commands.c:89 msgid "Edit Channel Attributes" msgstr "" -#: app/actions/channels-commands.c:91 +#: ../app/actions/channels-commands.c:91 msgid "Edit Channel Color" msgstr "" -#: app/actions/channels-commands.c:92 app/actions/channels-commands.c:124 +#: ../app/actions/channels-commands.c:92 +#: ../app/actions/channels-commands.c:124 msgid "Fill Opacity:" msgstr "" -#: app/actions/channels-commands.c:117 app/actions/channels-commands.c:118 -#: app/actions/channels-commands.c:159 app/actions/channels-commands.c:163 -#: app/widgets/gimpchanneltreeview.c:256 +#: ../app/actions/channels-commands.c:117 +#: ../app/actions/channels-commands.c:118 +#: ../app/actions/channels-commands.c:159 +#: ../app/actions/channels-commands.c:163 +#: ../app/widgets/gimpchanneltreeview.c:256 msgid "New Channel" msgstr "" -#: app/actions/channels-commands.c:121 +#: ../app/actions/channels-commands.c:121 msgid "New Channel Options" msgstr "" -#: app/actions/channels-commands.c:123 +#: ../app/actions/channels-commands.c:123 msgid "New Channel Color" msgstr "" -#: app/actions/channels-commands.c:246 +#: ../app/actions/channels-commands.c:246 #, c-format msgid "%s Channel Copy" msgstr "" -#: app/actions/channels-commands.c:311 app/core/gimpselection.c:595 -#: app/pdb/selection_cmds.c:921 app/pdb/selection_cmds.c:1045 +#: ../app/actions/channels-commands.c:311 ../app/core/gimpselection.c:595 +#: ../app/pdb/selection_cmds.c:921 ../app/pdb/selection_cmds.c:1045 msgid "Channel to Selection" msgstr "" -#: app/actions/colormap-editor-actions.c:43 +#: ../app/actions/colormap-editor-actions.c:43 msgid "Colormap Menu" msgstr "" -#: app/actions/colormap-editor-actions.c:47 -#: app/actions/palette-editor-actions.c:47 +#: ../app/actions/colormap-editor-actions.c:47 +#: ../app/actions/palette-editor-actions.c:47 msgid "_Edit Color..." msgstr "_Редактиране на цвят..." -#: app/actions/colormap-editor-actions.c:48 -#: app/actions/palette-editor-actions.c:48 +#: ../app/actions/colormap-editor-actions.c:48 +#: ../app/actions/palette-editor-actions.c:48 msgid "Edit color" msgstr "Редактиране на цвят" -#: app/actions/colormap-editor-actions.c:56 +#: ../app/actions/colormap-editor-actions.c:56 msgid "_Add Color from FG" msgstr "" -#: app/actions/colormap-editor-actions.c:57 +#: ../app/actions/colormap-editor-actions.c:57 msgid "Add color from FG" msgstr "" -#: app/actions/colormap-editor-actions.c:62 +#: ../app/actions/colormap-editor-actions.c:62 msgid "_Add Color from BG" msgstr "" -#: app/actions/colormap-editor-actions.c:63 +#: ../app/actions/colormap-editor-actions.c:63 msgid "Add color from BG" msgstr "" -#: app/actions/colormap-editor-commands.c:70 +#: ../app/actions/colormap-editor-commands.c:70 #, c-format msgid "Edit colormap entry #%d" msgstr "" -#: app/actions/colormap-editor-commands.c:76 +#: ../app/actions/colormap-editor-commands.c:76 msgid "Edit Colormap Entry" msgstr "" -#: app/actions/context-actions.c:46 +#: ../app/actions/context-actions.c:46 msgid "_Context" msgstr "" -#: app/actions/context-actions.c:47 app/actions/layers-actions.c:53 -#: app/actions/plug-in-actions.c:64 +#: ../app/actions/context-actions.c:47 ../app/actions/layers-actions.c:53 +#: ../app/actions/plug-in-actions.c:64 msgid "_Colors" msgstr "_Цветове" -#: app/actions/context-actions.c:48 app/actions/layers-actions.c:59 +#: ../app/actions/context-actions.c:48 ../app/actions/layers-actions.c:59 msgid "_Opacity" msgstr "_Непрозрачност" -#: app/actions/context-actions.c:49 +#: ../app/actions/context-actions.c:49 msgid "Paint _Mode" msgstr "" -#: app/actions/context-actions.c:50 +#: ../app/actions/context-actions.c:50 msgid "_Tool" -msgstr "" +msgstr "_Инструмент" -#: app/actions/context-actions.c:51 app/dialogs/preferences-dialog.c:1627 +#: ../app/actions/context-actions.c:51 +#: ../app/dialogs/preferences-dialog.c:1627 msgid "_Brush" msgstr "_Четка" -#: app/actions/context-actions.c:52 app/actions/plug-in-actions.c:78 -#: app/dialogs/preferences-dialog.c:1630 +#: ../app/actions/context-actions.c:52 ../app/actions/plug-in-actions.c:78 +#: ../app/dialogs/preferences-dialog.c:1630 msgid "_Pattern" msgstr "" -#: app/actions/context-actions.c:53 +#: ../app/actions/context-actions.c:53 msgid "_Palette" msgstr "_Палитра" -#: app/actions/context-actions.c:54 app/dialogs/palette-import-dialog.c:219 -#: app/dialogs/preferences-dialog.c:1633 +#: ../app/actions/context-actions.c:54 +#: ../app/dialogs/palette-import-dialog.c:219 +#: ../app/dialogs/preferences-dialog.c:1633 msgid "_Gradient" msgstr "_Преливка" -#: app/actions/context-actions.c:55 +#: ../app/actions/context-actions.c:55 msgid "_Font" msgstr "_Шрифт" -#: app/actions/context-actions.c:57 +#: ../app/actions/context-actions.c:57 msgid "_Shape" msgstr "" -#: app/actions/context-actions.c:58 +#: ../app/actions/context-actions.c:58 msgid "_Radius" msgstr "_Радиус" -#: app/actions/context-actions.c:59 +#: ../app/actions/context-actions.c:59 msgid "S_pikes" msgstr "" -#: app/actions/context-actions.c:60 +#: ../app/actions/context-actions.c:60 msgid "_Hardness" msgstr "" -#: app/actions/context-actions.c:61 +#: ../app/actions/context-actions.c:61 msgid "_Aspect" msgstr "" -#: app/actions/context-actions.c:62 +#: ../app/actions/context-actions.c:62 msgid "A_ngle" msgstr "_Ъгъл" -#: app/actions/context-actions.c:65 +#: ../app/actions/context-actions.c:65 msgid "_Default Colors" -msgstr "" +msgstr "_Цветове по подразбиране" -#: app/actions/context-actions.c:70 +#: ../app/actions/context-actions.c:70 msgid "S_wap Colors" msgstr "Обръ_щане на цветовете" -#: app/actions/data-commands.c:79 app/core/gimpimage.c:1283 -#: app/core/gimppalette-import.c:219 app/core/gimppalette.c:523 -#: app/core/gimppalette.c:634 app/dialogs/palette-import-dialog.c:684 -#: app/pdb/image_cmds.c:3760 +#: ../app/actions/data-commands.c:79 ../app/core/gimpimage.c:1283 +#: ../app/core/gimppalette-import.c:219 ../app/core/gimppalette.c:523 +#: ../app/core/gimppalette.c:634 ../app/dialogs/palette-import-dialog.c:684 +#: ../app/pdb/image_cmds.c:3760 msgid "Untitled" msgstr "Неозаглавено" -#: app/actions/data-commands.c:149 +#: ../app/actions/data-commands.c:149 msgid "Delete Object" msgstr "Изтриване на обект" -#: app/actions/data-commands.c:167 +#: ../app/actions/data-commands.c:167 #, c-format msgid "Are you sure you want to delete '%s' from the list and from disk?" msgstr "" -#: app/actions/dialogs-actions.c:38 +#: ../app/actions/dialogs-actions.c:38 msgid "_Dialogs" msgstr "_Прозорци" -#: app/actions/dialogs-actions.c:39 +#: ../app/actions/dialogs-actions.c:39 msgid "Create New Doc_k" msgstr "" -#: app/actions/dialogs-actions.c:42 +#: ../app/actions/dialogs-actions.c:42 msgid "_Layers, Channels & Paths" msgstr "" -#: app/actions/dialogs-actions.c:47 +#: ../app/actions/dialogs-actions.c:47 msgid "_Brushes, Patterns & Gradients" msgstr "" -#: app/actions/dialogs-actions.c:52 +#: ../app/actions/dialogs-actions.c:52 msgid "_Misc. Stuff" msgstr "" -#: app/actions/dialogs-actions.c:57 +#: ../app/actions/dialogs-actions.c:57 msgid "Tool_box" msgstr "_Кутия с инструменти" -#: app/actions/dialogs-actions.c:65 +#: ../app/actions/dialogs-actions.c:65 msgid "Tool _Options" msgstr "Настройки на _инструментите" -#: app/actions/dialogs-actions.c:70 +#: ../app/actions/dialogs-actions.c:70 msgid "_Device Status" msgstr "" -#: app/actions/dialogs-actions.c:75 +#: ../app/actions/dialogs-actions.c:75 msgid "_Layers" msgstr "_Слоеве" -#: app/actions/dialogs-actions.c:80 +#: ../app/actions/dialogs-actions.c:80 msgid "_Channels" msgstr "" -#: app/actions/dialogs-actions.c:85 app/tools/gimpvectortool.c:162 +#: ../app/actions/dialogs-actions.c:85 ../app/tools/gimpvectortool.c:162 msgid "_Paths" msgstr "" -#: app/actions/dialogs-actions.c:90 +#: ../app/actions/dialogs-actions.c:90 msgid "Color_map" msgstr "" -#: app/actions/dialogs-actions.c:95 +#: ../app/actions/dialogs-actions.c:95 msgid "Histogra_m" msgstr "" -#: app/actions/dialogs-actions.c:100 +#: ../app/actions/dialogs-actions.c:100 msgid "_Selection Editor" msgstr "" -#: app/actions/dialogs-actions.c:105 +#: ../app/actions/dialogs-actions.c:105 msgid "Na_vigation" msgstr "" -#: app/actions/dialogs-actions.c:110 +#: ../app/actions/dialogs-actions.c:110 msgid "Undo _History" msgstr "История на _промените" -#: app/actions/dialogs-actions.c:115 +#: ../app/actions/dialogs-actions.c:115 msgid "Colo_rs" msgstr "Цве_тове" -#: app/actions/dialogs-actions.c:120 +#: ../app/actions/dialogs-actions.c:120 msgid "_Brushes" msgstr "_Четки" -#: app/actions/dialogs-actions.c:125 +#: ../app/actions/dialogs-actions.c:125 msgid "P_atterns" msgstr "" -#: app/actions/dialogs-actions.c:130 +#: ../app/actions/dialogs-actions.c:130 msgid "_Gradients" msgstr "_Преливки" -#: app/actions/dialogs-actions.c:135 +#: ../app/actions/dialogs-actions.c:135 msgid "Pal_ettes" msgstr "Па_литри" -#: app/actions/dialogs-actions.c:140 +#: ../app/actions/dialogs-actions.c:140 msgid "_Fonts" msgstr "_Шрифтове" -#: app/actions/dialogs-actions.c:145 +#: ../app/actions/dialogs-actions.c:145 msgid "B_uffers" msgstr "" -#: app/actions/dialogs-actions.c:150 +#: ../app/actions/dialogs-actions.c:150 msgid "_Images" msgstr "_Изображения" -#: app/actions/dialogs-actions.c:155 +#: ../app/actions/dialogs-actions.c:155 msgid "Document Histor_y" msgstr "История на _документите" -#: app/actions/dialogs-actions.c:160 +#: ../app/actions/dialogs-actions.c:160 msgid "_Templates" msgstr "" -#: app/actions/dialogs-actions.c:165 +#: ../app/actions/dialogs-actions.c:165 msgid "T_ools" msgstr "Ин_струменти" -#: app/actions/dialogs-actions.c:170 +#: ../app/actions/dialogs-actions.c:170 msgid "Error Co_nsole" msgstr "_Съобщения за грешки" -#: app/actions/dialogs-actions.c:180 +#: ../app/actions/dialogs-actions.c:180 msgid "_Preferences" msgstr "_Настройки" -#: app/actions/dialogs-actions.c:185 +#: ../app/actions/dialogs-actions.c:185 msgid "_Module Manager" msgstr "_Управление на модулите" -#: app/actions/dialogs-actions.c:190 +#: ../app/actions/dialogs-actions.c:190 msgid "_Tip of the Day" msgstr "_Съвет за деня" -#: app/actions/dialogs-actions.c:195 +#: ../app/actions/dialogs-actions.c:195 msgid "_About" msgstr "_Относно" -#: app/actions/dockable-actions.c:49 +#: ../app/actions/dockable-actions.c:49 msgid "Dialogs Menu" msgstr "Меню Прозорци" -#: app/actions/dockable-actions.c:53 +#: ../app/actions/dockable-actions.c:53 msgid "_Add Tab" msgstr "" -#: app/actions/dockable-actions.c:54 +#: ../app/actions/dockable-actions.c:54 msgid "_Preview Size" msgstr "Размер на _прегледа" -#: app/actions/dockable-actions.c:55 +#: ../app/actions/dockable-actions.c:55 msgid "_Tab Style" msgstr "" -#: app/actions/dockable-actions.c:58 +#: ../app/actions/dockable-actions.c:58 msgid "_Close Tab" msgstr "" -#: app/actions/dockable-actions.c:63 +#: ../app/actions/dockable-actions.c:63 msgid "_Detach Tab" msgstr "" -#: app/actions/dockable-actions.c:68 +#: ../app/actions/dockable-actions.c:68 msgid "M_ove to Screen..." msgstr "" -#: app/actions/dockable-actions.c:76 +#: ../app/actions/dockable-actions.c:76 msgid "_Show Image Selection" msgstr "" -#: app/actions/dockable-actions.c:82 +#: ../app/actions/dockable-actions.c:82 msgid "Auto _Follow Active Image" msgstr "" -#: app/actions/dockable-actions.c:101 +#: ../app/actions/dockable-actions.c:101 msgid "_Tiny" -msgstr "" +msgstr "_Миниатюрен" -#: app/actions/dockable-actions.c:102 +#: ../app/actions/dockable-actions.c:102 msgid "E_xtra Small" -msgstr "" +msgstr "М_ного малък" -#: app/actions/dockable-actions.c:103 +#: ../app/actions/dockable-actions.c:103 msgid "_Small" -msgstr "" +msgstr "Ма_лък" -#: app/actions/dockable-actions.c:104 +#: ../app/actions/dockable-actions.c:104 msgid "_Medium" -msgstr "" +msgstr "_Среден" -#: app/actions/dockable-actions.c:105 +#: ../app/actions/dockable-actions.c:105 msgid "_Large" -msgstr "" +msgstr "_Голям" -#: app/actions/dockable-actions.c:106 +#: ../app/actions/dockable-actions.c:106 msgid "Ex_tra Large" -msgstr "" +msgstr "Мног_о голям" -#: app/actions/dockable-actions.c:107 +#: ../app/actions/dockable-actions.c:107 msgid "_Huge" -msgstr "" +msgstr "Грам_аден" -#: app/actions/dockable-actions.c:108 +#: ../app/actions/dockable-actions.c:108 msgid "_Enormous" -msgstr "" +msgstr "Ог_ромен" -#: app/actions/dockable-actions.c:109 +#: ../app/actions/dockable-actions.c:109 msgid "_Gigantic" -msgstr "" +msgstr "Гига_нтски" -#: app/actions/dockable-actions.c:114 +#: ../app/actions/dockable-actions.c:114 msgid "_Icon" msgstr "" -#: app/actions/dockable-actions.c:115 +#: ../app/actions/dockable-actions.c:115 msgid "Current _Status" msgstr "Текущо _състояние" -#: app/actions/dockable-actions.c:116 +#: ../app/actions/dockable-actions.c:116 msgid "_Text" msgstr "_Текст" -#: app/actions/dockable-actions.c:117 +#: ../app/actions/dockable-actions.c:117 msgid "I_con & Text" msgstr "" -#: app/actions/dockable-actions.c:118 +#: ../app/actions/dockable-actions.c:118 msgid "St_atus & Text" msgstr "" -#: app/actions/dockable-actions.c:127 +#: ../app/actions/dockable-actions.c:127 msgid "View as _List" msgstr "" -#: app/actions/dockable-actions.c:132 +#: ../app/actions/dockable-actions.c:132 msgid "View as _Grid" msgstr "" -#: app/actions/documents-actions.c:42 +#: ../app/actions/documents-actions.c:42 msgid "Documents Menu" msgstr "Меню Документи" -#: app/actions/documents-actions.c:46 +#: ../app/actions/documents-actions.c:46 msgid "_Open Image" msgstr "_Отваряне на изображението" -#: app/actions/documents-actions.c:47 +#: ../app/actions/documents-actions.c:47 msgid "Open the selected entry" msgstr "Отваряне на избрания обект" -#: app/actions/documents-actions.c:52 +#: ../app/actions/documents-actions.c:52 msgid "_Raise or Open Image" msgstr "" -#: app/actions/documents-actions.c:53 +#: ../app/actions/documents-actions.c:53 msgid "Raise window if already open" msgstr "" -#: app/actions/documents-actions.c:58 +#: ../app/actions/documents-actions.c:58 msgid "File Open _Dialog" msgstr "" -#: app/actions/documents-actions.c:59 +#: ../app/actions/documents-actions.c:59 msgid "Open image dialog" msgstr "" -#: app/actions/documents-actions.c:64 +#: ../app/actions/documents-actions.c:64 msgid "Remove _Entry" msgstr "Премахване на записа" -#: app/actions/documents-actions.c:65 +#: ../app/actions/documents-actions.c:65 msgid "Remove the selected entry" msgstr "" -#: app/actions/documents-actions.c:70 +#: ../app/actions/documents-actions.c:70 msgid "Recreate _Preview" msgstr "" -#: app/actions/documents-actions.c:71 +#: ../app/actions/documents-actions.c:71 msgid "Recreate preview" msgstr "" -#: app/actions/documents-actions.c:76 +#: ../app/actions/documents-actions.c:76 msgid "Reload _all Previews" msgstr "" -#: app/actions/documents-actions.c:77 +#: ../app/actions/documents-actions.c:77 msgid "Reload all previews" msgstr "" -#: app/actions/documents-actions.c:82 +#: ../app/actions/documents-actions.c:82 msgid "Remove Dangling E_ntries" msgstr "" -#: app/actions/documents-actions.c:83 +#: ../app/actions/documents-actions.c:83 msgid "Remove dangling entries" msgstr "" -#: app/actions/documents-commands.c:251 app/actions/file-commands.c:170 -#: app/dialogs/file-open-dialog.c:198 app/dialogs/file-open-dialog.c:249 -#: app/dialogs/file-open-location-dialog.c:195 -#: app/display/gimpdisplayshell-dnd.c:334 app/widgets/gimplayertreeview.c:804 -#: app/widgets/gimptoolbox-dnd.c:125 +#: ../app/actions/documents-commands.c:251 ../app/actions/file-commands.c:170 +#: ../app/dialogs/file-open-dialog.c:198 ../app/dialogs/file-open-dialog.c:249 +#: ../app/dialogs/file-open-location-dialog.c:195 +#: ../app/display/gimpdisplayshell-dnd.c:334 +#: ../app/widgets/gimplayertreeview.c:804 ../app/widgets/gimptoolbox-dnd.c:125 #, c-format msgid "" "Opening '%s' failed:\n" @@ -1012,236 +1026,236 @@ "\n" "%s" -#: app/actions/drawable-actions.c:45 +#: ../app/actions/drawable-actions.c:45 msgid "_Desaturate" msgstr "" -#: app/actions/drawable-actions.c:50 +#: ../app/actions/drawable-actions.c:50 msgid "_Equalize" msgstr "" -#: app/actions/drawable-actions.c:55 +#: ../app/actions/drawable-actions.c:55 msgid "In_vert" msgstr "" -#: app/actions/drawable-actions.c:60 +#: ../app/actions/drawable-actions.c:60 msgid "_White Balance" msgstr "" -#: app/actions/drawable-actions.c:65 +#: ../app/actions/drawable-actions.c:65 msgid "_Offset..." msgstr "" -#: app/actions/drawable-actions.c:73 app/actions/vectors-actions.c:153 +#: ../app/actions/drawable-actions.c:73 ../app/actions/vectors-actions.c:153 msgid "_Linked" msgstr "" -#: app/actions/drawable-actions.c:79 app/actions/vectors-actions.c:147 +#: ../app/actions/drawable-actions.c:79 ../app/actions/vectors-actions.c:147 msgid "_Visible" msgstr "" -#: app/actions/drawable-actions.c:88 app/actions/image-actions.c:141 +#: ../app/actions/drawable-actions.c:88 ../app/actions/image-actions.c:141 msgid "Flip _Horizontally" msgstr "_Хоризонтално обръщане" -#: app/actions/drawable-actions.c:93 app/actions/image-actions.c:146 +#: ../app/actions/drawable-actions.c:93 ../app/actions/image-actions.c:146 msgid "Flip _Vertically" msgstr "_Вертикално обръщане" #. please use the degree symbol in the translation -#: app/actions/drawable-actions.c:101 app/actions/image-actions.c:155 +#: ../app/actions/drawable-actions.c:101 ../app/actions/image-actions.c:155 msgid "Rotate 90 degrees _CW" msgstr "Завъртане на 90 градуса _по часовниковата стрелка" -#: app/actions/drawable-actions.c:106 app/actions/image-actions.c:160 +#: ../app/actions/drawable-actions.c:106 ../app/actions/image-actions.c:160 msgid "Rotate _180 degrees" msgstr "Завъртане на _180 градуса" -#: app/actions/drawable-actions.c:111 app/actions/image-actions.c:165 +#: ../app/actions/drawable-actions.c:111 ../app/actions/image-actions.c:165 msgid "Rotate 90 degrees CC_W" msgstr "Завъртане на 90 градуса _обратно на часовниковата стрелка" -#: app/actions/drawable-commands.c:58 +#: ../app/actions/drawable-commands.c:58 msgid "Desaturate operates only on RGB color layers." msgstr "" -#: app/actions/drawable-commands.c:76 +#: ../app/actions/drawable-commands.c:76 msgid "Equalize does not operate on indexed layers." msgstr "" -#: app/actions/drawable-commands.c:94 +#: ../app/actions/drawable-commands.c:94 msgid "Invert does not operate on indexed layers." msgstr "" -#: app/actions/drawable-commands.c:114 +#: ../app/actions/drawable-commands.c:114 msgid "White Balance operates only on RGB color layers." msgstr "" -#: app/actions/edit-actions.c:61 +#: ../app/actions/edit-actions.c:61 msgid "_Edit" msgstr "_Редактиране" -#: app/actions/edit-actions.c:62 +#: ../app/actions/edit-actions.c:62 msgid "_Buffer" msgstr "" -#: app/actions/edit-actions.c:65 app/actions/edit-actions.c:230 +#: ../app/actions/edit-actions.c:65 ../app/actions/edit-actions.c:230 msgid "_Undo" -msgstr "" +msgstr "_Отмяна" -#: app/actions/edit-actions.c:66 app/dialogs/dialogs.c:183 -#: app/pdb/internal_procs.c:209 +#: ../app/actions/edit-actions.c:66 ../app/dialogs/dialogs.c:183 +#: ../app/pdb/internal_procs.c:209 msgid "Undo" -msgstr "" +msgstr "Отмяна" -#: app/actions/edit-actions.c:71 app/actions/edit-actions.c:231 +#: ../app/actions/edit-actions.c:71 ../app/actions/edit-actions.c:231 msgid "_Redo" -msgstr "" +msgstr "_Връщане" -#: app/actions/edit-actions.c:72 +#: ../app/actions/edit-actions.c:72 msgid "Redo" -msgstr "" +msgstr "Връщане" -#: app/actions/edit-actions.c:77 +#: ../app/actions/edit-actions.c:77 msgid "_Clear Undo History" msgstr "Из_" -#: app/actions/edit-actions.c:78 +#: ../app/actions/edit-actions.c:78 msgid "Clear undo history..." msgstr "" -#: app/actions/edit-actions.c:83 +#: ../app/actions/edit-actions.c:83 msgid "Cu_t" msgstr "" -#: app/actions/edit-actions.c:88 +#: ../app/actions/edit-actions.c:88 msgid "_Copy" msgstr "" #. GIMP_STOCK_COPY_VISIBLE, -#: app/actions/edit-actions.c:93 +#: ../app/actions/edit-actions.c:93 msgid "Copy _Visible" msgstr "" -#: app/actions/edit-actions.c:98 +#: ../app/actions/edit-actions.c:98 msgid "_Paste" msgstr "" -#: app/actions/edit-actions.c:103 +#: ../app/actions/edit-actions.c:103 msgid "Paste _Into" msgstr "" -#: app/actions/edit-actions.c:108 +#: ../app/actions/edit-actions.c:108 msgid "Paste as _New" msgstr "" -#: app/actions/edit-actions.c:113 +#: ../app/actions/edit-actions.c:113 msgid "Cu_t Named..." msgstr "" -#: app/actions/edit-actions.c:118 +#: ../app/actions/edit-actions.c:118 msgid "_Copy Named..." msgstr "" -#: app/actions/edit-actions.c:123 +#: ../app/actions/edit-actions.c:123 msgid "_Paste Named..." msgstr "" -#: app/actions/edit-actions.c:128 +#: ../app/actions/edit-actions.c:128 msgid "Cl_ear" msgstr "_Изчистване" -#: app/actions/edit-actions.c:136 +#: ../app/actions/edit-actions.c:136 msgid "Fill with _FG Color" msgstr "Запълване с цвета за _рисуване" -#: app/actions/edit-actions.c:141 +#: ../app/actions/edit-actions.c:141 msgid "Fill with B_G Color" msgstr "Запълване с _фоновия цвят" -#: app/actions/edit-actions.c:146 +#: ../app/actions/edit-actions.c:146 msgid "Fill with P_attern" msgstr "" -#: app/actions/edit-actions.c:214 +#: ../app/actions/edit-actions.c:214 #, c-format msgid "_Undo %s" msgstr "" -#: app/actions/edit-actions.c:219 +#: ../app/actions/edit-actions.c:219 #, c-format msgid "_Redo %s" msgstr "" -#: app/actions/edit-commands.c:104 +#: ../app/actions/edit-commands.c:104 msgid "Clear Undo History" -msgstr "" +msgstr "Изчистване историята на промените" -#: app/actions/edit-commands.c:122 +#: ../app/actions/edit-commands.c:122 msgid "Really clear image's undo history?" msgstr "" -#: app/actions/edit-commands.c:210 +#: ../app/actions/edit-commands.c:210 msgid "Cut Named" msgstr "" -#: app/actions/edit-commands.c:213 app/actions/edit-commands.c:233 +#: ../app/actions/edit-commands.c:213 ../app/actions/edit-commands.c:233 msgid "Enter a name for this buffer" msgstr "" -#: app/actions/edit-commands.c:230 +#: ../app/actions/edit-commands.c:230 msgid "Copy Named" msgstr "" -#: app/actions/edit-commands.c:337 +#: ../app/actions/edit-commands.c:337 msgid "There is no active layer or channel to cut from." msgstr "" -#: app/actions/edit-commands.c:349 app/actions/edit-commands.c:386 +#: ../app/actions/edit-commands.c:349 ../app/actions/edit-commands.c:386 msgid "(Unnamed Buffer)" msgstr "" -#: app/actions/edit-commands.c:374 +#: ../app/actions/edit-commands.c:374 msgid "There is no active layer or channel to copy from." msgstr "" -#: app/actions/error-console-actions.c:40 +#: ../app/actions/error-console-actions.c:40 msgid "Error Console Menu" msgstr "" -#: app/actions/error-console-actions.c:44 +#: ../app/actions/error-console-actions.c:44 msgid "_Clear Errors" msgstr "_Изчистване на прозореца с грешки" -#: app/actions/error-console-actions.c:45 +#: ../app/actions/error-console-actions.c:45 msgid "Clear errors" msgstr "Изчистване на прозореца с грешки" -#: app/actions/error-console-actions.c:53 +#: ../app/actions/error-console-actions.c:53 msgid "Save _All Errors to File..." msgstr "Запазване на всички грешки във файл..." -#: app/actions/error-console-actions.c:54 +#: ../app/actions/error-console-actions.c:54 msgid "Save all errors" msgstr "Запазване на всички грешки" -#: app/actions/error-console-actions.c:59 +#: ../app/actions/error-console-actions.c:59 msgid "Save _Selection to File..." -msgstr "" +msgstr "Запазване на _избраното във файл..." -#: app/actions/error-console-actions.c:60 +#: ../app/actions/error-console-actions.c:60 msgid "Save selection" msgstr "" -#: app/actions/error-console-commands.c:69 +#: ../app/actions/error-console-commands.c:69 msgid "Cannot save. Nothing is selected." msgstr "" -#: app/actions/error-console-commands.c:80 +#: ../app/actions/error-console-commands.c:80 msgid "Save Error Log to File" msgstr "" -#: app/actions/error-console-commands.c:132 +#: ../app/actions/error-console-commands.c:132 #, c-format msgid "" "Error writing file '%s':\n" @@ -1250,55 +1264,55 @@ "Грешка при записване на файла \"%s\":\n" "%s" -#: app/actions/file-actions.c:61 +#: ../app/actions/file-actions.c:61 msgid "_File" msgstr "_Файл" -#: app/actions/file-actions.c:62 +#: ../app/actions/file-actions.c:62 msgid "Open _Recent" msgstr "_Наскоро зареждани" -#: app/actions/file-actions.c:63 +#: ../app/actions/file-actions.c:63 msgid "_Acquire" msgstr "_Снимане" -#: app/actions/file-actions.c:66 app/actions/file-actions.c:71 +#: ../app/actions/file-actions.c:66 ../app/actions/file-actions.c:71 msgid "_Open..." msgstr "_Отваряне..." -#: app/actions/file-actions.c:76 +#: ../app/actions/file-actions.c:76 msgid "Op_en as Layer..." msgstr "От_варяне като слой..." -#: app/actions/file-actions.c:81 +#: ../app/actions/file-actions.c:81 msgid "Open _Location..." msgstr "Отваряне на _адрес..." -#: app/actions/file-actions.c:86 +#: ../app/actions/file-actions.c:86 msgid "_Save" msgstr "_Запазване" -#: app/actions/file-actions.c:91 +#: ../app/actions/file-actions.c:91 msgid "Save _as..." msgstr "Запазване _като..." -#: app/actions/file-actions.c:96 +#: ../app/actions/file-actions.c:96 msgid "Save a Cop_y..." msgstr "Запазване на _копие..." -#: app/actions/file-actions.c:101 +#: ../app/actions/file-actions.c:101 msgid "Save as _Template..." msgstr "" -#: app/actions/file-actions.c:106 +#: ../app/actions/file-actions.c:106 msgid "Re_vert..." msgstr "" -#: app/actions/file-actions.c:111 +#: ../app/actions/file-actions.c:111 msgid "_Quit" msgstr "_Изход" -#: app/actions/file-commands.c:215 app/dialogs/file-save-dialog.c:282 +#: ../app/actions/file-commands.c:215 ../app/dialogs/file-save-dialog.c:282 #, c-format msgid "" "Saving '%s' failed:\n" @@ -1309,54 +1323,54 @@ "\n" "%s" -#: app/actions/file-commands.c:238 app/dialogs/file-save-dialog.c:78 +#: ../app/actions/file-commands.c:238 ../app/dialogs/file-save-dialog.c:78 msgid "Save Image" msgstr "Запазване на изображението" -#: app/actions/file-commands.c:254 +#: ../app/actions/file-commands.c:254 msgid "Save a Copy of the Image" msgstr "Запазване копие на изображението" -#: app/actions/file-commands.c:265 +#: ../app/actions/file-commands.c:265 msgid "Create New Template" msgstr "" -#: app/actions/file-commands.c:269 +#: ../app/actions/file-commands.c:269 msgid "Enter a name for this template" msgstr "" -#: app/actions/file-commands.c:291 +#: ../app/actions/file-commands.c:291 msgid "Revert failed. No file name associated with this image." msgstr "" -#: app/actions/file-commands.c:303 +#: ../app/actions/file-commands.c:303 msgid "Revert Image" msgstr "" -#: app/actions/file-commands.c:324 +#: ../app/actions/file-commands.c:324 #, c-format msgid "Revert '%s' to '%s'?" msgstr "" -#: app/actions/file-commands.c:330 +#: ../app/actions/file-commands.c:330 msgid "" "By reverting the image to the state saved on disk, you will lose all " "changes, including all undo information." msgstr "" -#: app/actions/file-commands.c:380 +#: ../app/actions/file-commands.c:380 msgid "Open Image as Layer" msgstr "Отваряне на изображението като слой" -#: app/actions/file-commands.c:385 app/dialogs/file-open-dialog.c:74 +#: ../app/actions/file-commands.c:385 ../app/dialogs/file-open-dialog.c:74 msgid "Open Image" msgstr "Отваряне на изображение" -#: app/actions/file-commands.c:451 +#: ../app/actions/file-commands.c:451 msgid "(Unnamed Template)" msgstr "" -#: app/actions/file-commands.c:500 +#: ../app/actions/file-commands.c:500 #, c-format msgid "" "Reverting to '%s' failed:\n" @@ -1364,1842 +1378,1848 @@ "%s" msgstr "" -#: app/actions/fonts-actions.c:44 +#: ../app/actions/fonts-actions.c:44 msgid "Fonts Menu" msgstr "Меню Шрифтове" -#: app/actions/fonts-actions.c:48 +#: ../app/actions/fonts-actions.c:48 msgid "_Rescan Font List" msgstr "_Презареждане на списъка с шрифтове" -#: app/actions/fonts-actions.c:49 +#: ../app/actions/fonts-actions.c:49 msgid "Rescan font list" msgstr "Презареждане на списъка с шрифтове" -#: app/actions/gradient-editor-actions.c:46 +#: ../app/actions/gradient-editor-actions.c:46 msgid "Gradient Editor Menu" -msgstr "" +msgstr "Меню Редактор на преливки" -#: app/actions/gradient-editor-actions.c:50 +#: ../app/actions/gradient-editor-actions.c:50 msgid "_Load Left Color From" msgstr "" -#: app/actions/gradient-editor-actions.c:52 +#: ../app/actions/gradient-editor-actions.c:52 msgid "_Save Left Color To" msgstr "" -#: app/actions/gradient-editor-actions.c:55 +#: ../app/actions/gradient-editor-actions.c:55 msgid "Load Right Color Fr_om" msgstr "" -#: app/actions/gradient-editor-actions.c:57 +#: ../app/actions/gradient-editor-actions.c:57 msgid "Sa_ve Right Color To" msgstr "" -#: app/actions/gradient-editor-actions.c:63 +#: ../app/actions/gradient-editor-actions.c:63 msgid "L_eft Endpoint's Color..." msgstr "" -#: app/actions/gradient-editor-actions.c:68 +#: ../app/actions/gradient-editor-actions.c:68 msgid "R_ight Endpoint's Color..." msgstr "" -#: app/actions/gradient-editor-actions.c:108 +#: ../app/actions/gradient-editor-actions.c:108 msgid "Ble_nd Endpoints' Colors" msgstr "" -#: app/actions/gradient-editor-actions.c:113 +#: ../app/actions/gradient-editor-actions.c:113 msgid "Blend Endpoints' Opacit_y" msgstr "" -#: app/actions/gradient-editor-actions.c:143 +#: ../app/actions/gradient-editor-actions.c:143 msgid "_Left Neighbor's Right Endpoint" msgstr "" -#: app/actions/gradient-editor-actions.c:148 +#: ../app/actions/gradient-editor-actions.c:148 msgid "_Right Endpoint" msgstr "" -#: app/actions/gradient-editor-actions.c:153 -#: app/actions/gradient-editor-actions.c:201 +#: ../app/actions/gradient-editor-actions.c:153 +#: ../app/actions/gradient-editor-actions.c:201 msgid "_FG Color" msgstr "" -#: app/actions/gradient-editor-actions.c:158 -#: app/actions/gradient-editor-actions.c:206 +#: ../app/actions/gradient-editor-actions.c:158 +#: ../app/actions/gradient-editor-actions.c:206 msgid "_BG Color" msgstr "" -#: app/actions/gradient-editor-actions.c:191 +#: ../app/actions/gradient-editor-actions.c:191 msgid "_Right Neighbor's Left Endpoint" msgstr "" -#: app/actions/gradient-editor-actions.c:196 +#: ../app/actions/gradient-editor-actions.c:196 msgid "_Left Endpoint" msgstr "" -#: app/actions/gradient-editor-actions.c:245 +#: ../app/actions/gradient-editor-actions.c:245 msgid "_Linear" msgstr "" -#: app/actions/gradient-editor-actions.c:250 +#: ../app/actions/gradient-editor-actions.c:250 msgid "_Curved" msgstr "" -#: app/actions/gradient-editor-actions.c:255 +#: ../app/actions/gradient-editor-actions.c:255 msgid "_Sinusoidal" msgstr "_Синусоидално" -#: app/actions/gradient-editor-actions.c:260 +#: ../app/actions/gradient-editor-actions.c:260 msgid "Spherical (i_ncreasing)" msgstr "" -#: app/actions/gradient-editor-actions.c:265 +#: ../app/actions/gradient-editor-actions.c:265 msgid "Spherical (_decreasing)" msgstr "" -#: app/actions/gradient-editor-actions.c:270 -#: app/actions/gradient-editor-actions.c:293 +#: ../app/actions/gradient-editor-actions.c:270 +#: ../app/actions/gradient-editor-actions.c:293 msgid "(Varies)" msgstr "" -#: app/actions/gradient-editor-actions.c:278 app/actions/image-actions.c:123 +#: ../app/actions/gradient-editor-actions.c:278 +#: ../app/actions/image-actions.c:123 msgid "_RGB" msgstr "_RGB" -#: app/actions/gradient-editor-actions.c:283 +#: ../app/actions/gradient-editor-actions.c:283 msgid "HSV (_counter-clockwise hue)" msgstr "" -#: app/actions/gradient-editor-actions.c:288 +#: ../app/actions/gradient-editor-actions.c:288 msgid "HSV (clockwise _hue)" msgstr "" -#: app/actions/gradient-editor-actions.c:301 +#: ../app/actions/gradient-editor-actions.c:301 msgid "Zoom In" msgstr "Увеличаване" -#: app/actions/gradient-editor-actions.c:302 -#: app/actions/palette-editor-actions.c:78 app/actions/view-actions.c:216 -#: app/widgets/widgets-enums.c:353 +#: ../app/actions/gradient-editor-actions.c:302 +#: ../app/actions/palette-editor-actions.c:78 +#: ../app/actions/view-actions.c:216 ../app/widgets/widgets-enums.c:353 msgid "Zoom in" msgstr "Увеличаване" -#: app/actions/gradient-editor-actions.c:307 +#: ../app/actions/gradient-editor-actions.c:307 msgid "Zoom Out" msgstr "Намаляване" -#: app/actions/gradient-editor-actions.c:308 -#: app/actions/palette-editor-actions.c:84 app/actions/view-actions.c:210 -#: app/widgets/widgets-enums.c:354 +#: ../app/actions/gradient-editor-actions.c:308 +#: ../app/actions/palette-editor-actions.c:84 +#: ../app/actions/view-actions.c:210 ../app/widgets/widgets-enums.c:354 msgid "Zoom out" msgstr "Намаляване" -#: app/actions/gradient-editor-actions.c:313 +#: ../app/actions/gradient-editor-actions.c:313 msgid "Zoom All" msgstr "" -#: app/actions/gradient-editor-actions.c:314 -#: app/actions/palette-editor-actions.c:90 +#: ../app/actions/gradient-editor-actions.c:314 +#: ../app/actions/palette-editor-actions.c:90 msgid "Zoom all" msgstr "" -#: app/actions/gradient-editor-actions.c:589 +#: ../app/actions/gradient-editor-actions.c:589 msgid "_Blending Function for Segment" msgstr "" -#: app/actions/gradient-editor-actions.c:591 +#: ../app/actions/gradient-editor-actions.c:591 msgid "Coloring _Type for Segment" msgstr "" -#: app/actions/gradient-editor-actions.c:594 +#: ../app/actions/gradient-editor-actions.c:594 msgid "_Flip Segment" msgstr "" -#: app/actions/gradient-editor-actions.c:596 +#: ../app/actions/gradient-editor-actions.c:596 msgid "_Replicate Segment..." msgstr "" -#: app/actions/gradient-editor-actions.c:598 +#: ../app/actions/gradient-editor-actions.c:598 msgid "Split Segment at _Midpoint" msgstr "" -#: app/actions/gradient-editor-actions.c:600 +#: ../app/actions/gradient-editor-actions.c:600 msgid "Split Segment _Uniformly..." msgstr "" -#: app/actions/gradient-editor-actions.c:602 +#: ../app/actions/gradient-editor-actions.c:602 msgid "_Delete Segment" msgstr "" -#: app/actions/gradient-editor-actions.c:604 +#: ../app/actions/gradient-editor-actions.c:604 msgid "Re-_center Segment's Midpoint" msgstr "" -#: app/actions/gradient-editor-actions.c:606 +#: ../app/actions/gradient-editor-actions.c:606 msgid "Re-distribute _Handles in Segment" msgstr "" -#: app/actions/gradient-editor-actions.c:611 +#: ../app/actions/gradient-editor-actions.c:611 msgid "_Blending Function for Selection" msgstr "" -#: app/actions/gradient-editor-actions.c:613 +#: ../app/actions/gradient-editor-actions.c:613 msgid "Coloring _Type for Selection" msgstr "" -#: app/actions/gradient-editor-actions.c:616 +#: ../app/actions/gradient-editor-actions.c:616 msgid "_Flip Selection" msgstr "" -#: app/actions/gradient-editor-actions.c:618 +#: ../app/actions/gradient-editor-actions.c:618 msgid "_Replicate Selection..." msgstr "" -#: app/actions/gradient-editor-actions.c:620 +#: ../app/actions/gradient-editor-actions.c:620 msgid "Split Segments at _Midpoints" msgstr "" -#: app/actions/gradient-editor-actions.c:622 +#: ../app/actions/gradient-editor-actions.c:622 msgid "Split Segments _Uniformly..." msgstr "" -#: app/actions/gradient-editor-actions.c:624 +#: ../app/actions/gradient-editor-actions.c:624 msgid "_Delete Selection" msgstr "" -#: app/actions/gradient-editor-actions.c:626 +#: ../app/actions/gradient-editor-actions.c:626 msgid "Re-_center Midpoints in Selection" msgstr "" -#: app/actions/gradient-editor-actions.c:628 +#: ../app/actions/gradient-editor-actions.c:628 msgid "Re-distribute _Handles in Selection" msgstr "" -#: app/actions/gradient-editor-commands.c:85 +#: ../app/actions/gradient-editor-commands.c:85 msgid "Left Endpoint Color" msgstr "" -#: app/actions/gradient-editor-commands.c:87 +#: ../app/actions/gradient-editor-commands.c:87 msgid "Gradient Segment's Left Endpoint Color" msgstr "" -#: app/actions/gradient-editor-commands.c:189 +#: ../app/actions/gradient-editor-commands.c:189 msgid "Right Endpoint Color" msgstr "" -#: app/actions/gradient-editor-commands.c:191 +#: ../app/actions/gradient-editor-commands.c:191 msgid "Gradient Segment's Right Endpoint Color" msgstr "" -#: app/actions/gradient-editor-commands.c:358 +#: ../app/actions/gradient-editor-commands.c:358 msgid "Replicate Segment" msgstr "" -#: app/actions/gradient-editor-commands.c:359 +#: ../app/actions/gradient-editor-commands.c:359 msgid "Replicate Gradient Segment" msgstr "" -#: app/actions/gradient-editor-commands.c:363 +#: ../app/actions/gradient-editor-commands.c:363 msgid "Replicate Selection" msgstr "" -#: app/actions/gradient-editor-commands.c:364 +#: ../app/actions/gradient-editor-commands.c:364 msgid "Replicate Gradient Selection" msgstr "" -#: app/actions/gradient-editor-commands.c:376 +#: ../app/actions/gradient-editor-commands.c:376 msgid "Replicate" msgstr "" -#: app/actions/gradient-editor-commands.c:391 +#: ../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:394 +#: ../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:452 +#: ../app/actions/gradient-editor-commands.c:452 msgid "Split Segment Uniformly" msgstr "" -#: app/actions/gradient-editor-commands.c:453 +#: ../app/actions/gradient-editor-commands.c:453 msgid "Split Gradient Segment Uniformly" msgstr "" -#: app/actions/gradient-editor-commands.c:457 +#: ../app/actions/gradient-editor-commands.c:457 msgid "Split Segments Uniformly" msgstr "" -#: app/actions/gradient-editor-commands.c:458 +#: ../app/actions/gradient-editor-commands.c:458 msgid "Split Gradient Segments Uniformly" msgstr "" -#: app/actions/gradient-editor-commands.c:470 +#: ../app/actions/gradient-editor-commands.c:470 msgid "Split" msgstr "" -#: app/actions/gradient-editor-commands.c:486 +#: ../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:489 +#: ../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 "" -#: app/actions/gradients-actions.c:44 +#: ../app/actions/gradients-actions.c:44 msgid "Gradients Menu" msgstr "Меню Преливки" -#: app/actions/gradients-actions.c:48 +#: ../app/actions/gradients-actions.c:48 msgid "_New Gradient" msgstr "_Нова преливка" -#: app/actions/gradients-actions.c:49 +#: ../app/actions/gradients-actions.c:49 msgid "New gradient" msgstr "Нова преливка" -#: app/actions/gradients-actions.c:54 +#: ../app/actions/gradients-actions.c:54 msgid "D_uplicate Gradient" msgstr "" -#: app/actions/gradients-actions.c:55 +#: ../app/actions/gradients-actions.c:55 msgid "Duplicate gradient" msgstr "" -#: app/actions/gradients-actions.c:60 +#: ../app/actions/gradients-actions.c:60 msgid "Save as _POV-Ray..." msgstr "Запазване като _POV-Ray файл..." -#: app/actions/gradients-actions.c:61 +#: ../app/actions/gradients-actions.c:61 msgid "Save gradient as POV-Ray" msgstr "Запазване на преливката в POV-Ray формат" -#: app/actions/gradients-actions.c:66 +#: ../app/actions/gradients-actions.c:66 msgid "_Delete Gradient..." msgstr "_Изтриване на преливка..." -#: app/actions/gradients-actions.c:67 +#: ../app/actions/gradients-actions.c:67 msgid "Delete gradient" msgstr "Изтриване на преливка" -#: app/actions/gradients-actions.c:72 +#: ../app/actions/gradients-actions.c:72 msgid "_Refresh Gradients" msgstr "_Презареждане на преливките" -#: app/actions/gradients-actions.c:73 +#: ../app/actions/gradients-actions.c:73 msgid "Refresh gradients" msgstr "Презареждане на преливките" -#: app/actions/gradients-actions.c:81 +#: ../app/actions/gradients-actions.c:81 msgid "_Edit Gradient..." msgstr "_Редактиране на преливка..." -#: app/actions/gradients-actions.c:82 +#: ../app/actions/gradients-actions.c:82 msgid "Edit gradient" msgstr "Редактиране на преливка" -#: app/actions/gradients-commands.c:65 +#: ../app/actions/gradients-commands.c:65 #, c-format msgid "Save '%s' as POV-Ray" msgstr "Запазване на '%s' в POV-Ray формат" -#: app/actions/help-actions.c:38 app/actions/help-actions.c:41 +#: ../app/actions/help-actions.c:38 ../app/actions/help-actions.c:41 msgid "_Help" msgstr "_Помощ" -#: app/actions/help-actions.c:46 +#: ../app/actions/help-actions.c:46 msgid "_Context Help" msgstr "_Контекстна помощ" -#: app/actions/image-actions.c:47 +#: ../app/actions/image-actions.c:47 msgid "Toolbox Menu" -msgstr "" +msgstr "Меню Кутия с инструменти" -#: app/actions/image-actions.c:51 app/actions/image-actions.c:55 +#: ../app/actions/image-actions.c:51 ../app/actions/image-actions.c:55 msgid "Image Menu" msgstr "Меню Изображение" -#: app/actions/image-actions.c:58 +#: ../app/actions/image-actions.c:58 msgid "_Xtns" msgstr "_Допълнения" -#: app/actions/image-actions.c:59 +#: ../app/actions/image-actions.c:59 msgid "_Image" msgstr "_Изображение" -#: app/actions/image-actions.c:60 +#: ../app/actions/image-actions.c:60 msgid "_Mode" msgstr "" -#: app/actions/image-actions.c:61 app/actions/layers-actions.c:57 +#: ../app/actions/image-actions.c:61 ../app/actions/layers-actions.c:57 msgid "_Transform" msgstr "_Преобразуване" -#: app/actions/image-actions.c:62 +#: ../app/actions/image-actions.c:62 msgid "_Guides" msgstr "" -#: app/actions/image-actions.c:65 app/actions/image-actions.c:70 +#: ../app/actions/image-actions.c:65 ../app/actions/image-actions.c:70 msgid "_New..." msgstr "_Нов..." -#: app/actions/image-actions.c:75 +#: ../app/actions/image-actions.c:75 msgid "Can_vas Size..." msgstr "" -#: app/actions/image-actions.c:80 +#: ../app/actions/image-actions.c:80 msgid "F_it Canvas to Layers" msgstr "" -#: app/actions/image-actions.c:85 +#: ../app/actions/image-actions.c:85 msgid "_Print Size..." msgstr "" -#: app/actions/image-actions.c:90 +#: ../app/actions/image-actions.c:90 msgid "_Scale Image..." msgstr "" -#: app/actions/image-actions.c:95 +#: ../app/actions/image-actions.c:95 msgid "_Crop Image" msgstr "" -#: app/actions/image-actions.c:100 +#: ../app/actions/image-actions.c:100 msgid "_Duplicate" msgstr "" -#: app/actions/image-actions.c:105 +#: ../app/actions/image-actions.c:105 msgid "Merge Visible _Layers..." msgstr "Сливане на видимите _слоеве..." -#: app/actions/image-actions.c:110 app/actions/layers-actions.c:138 +#: ../app/actions/image-actions.c:110 ../app/actions/layers-actions.c:138 msgid "_Flatten Image" msgstr "" -#: app/actions/image-actions.c:115 +#: ../app/actions/image-actions.c:115 msgid "Configure G_rid..." msgstr "Настройка на м_режата..." -#: app/actions/image-actions.c:128 +#: ../app/actions/image-actions.c:128 msgid "_Grayscale" -msgstr "" +msgstr "Степени на _сивото" -#: app/actions/image-actions.c:133 +#: ../app/actions/image-actions.c:133 msgid "_Indexed..." msgstr "" -#: app/actions/image-commands.c:192 +#: ../app/actions/image-commands.c:192 msgid "Set Image Canvas Size" msgstr "" -#: app/actions/image-commands.c:219 app/actions/image-commands.c:449 +#: ../app/actions/image-commands.c:219 ../app/actions/image-commands.c:449 msgid "Resizing..." msgstr "" -#: app/actions/image-commands.c:242 +#: ../app/actions/image-commands.c:242 msgid "Set Image Print Resolution" msgstr "" -#: app/actions/image-commands.c:289 +#: ../app/actions/image-commands.c:289 msgid "Flipping..." msgstr "Обръщане..." -#: app/actions/image-commands.c:310 app/pdb/drawable_transform_cmds.c:1035 -#: app/pdb/drawable_transform_cmds.c:1193 app/pdb/transform_tools_cmds.c:339 -#: app/tools/gimprotatetool.c:159 +#: ../app/actions/image-commands.c:310 +#: ../app/pdb/drawable_transform_cmds.c:1035 +#: ../app/pdb/drawable_transform_cmds.c:1193 +#: ../app/pdb/transform_tools_cmds.c:339 ../app/tools/gimprotatetool.c:159 msgid "Rotating..." msgstr "Завъртане..." -#: app/actions/image-commands.c:332 app/actions/layers-commands.c:535 +#: ../app/actions/image-commands.c:332 ../app/actions/layers-commands.c:535 msgid "Cannot crop because the current selection is empty." msgstr "" -#: app/actions/image-commands.c:484 +#: ../app/actions/image-commands.c:484 msgid "Change Print Size" msgstr "" -#: app/actions/image-commands.c:508 app/core/gimpimage-scale.c:71 -#: app/dialogs/image-scale-dialog.c:91 +#: ../app/actions/image-commands.c:508 ../app/core/gimpimage-scale.c:71 +#: ../app/dialogs/image-scale-dialog.c:91 msgid "Scale Image" msgstr "" -#: app/actions/image-commands.c:521 app/actions/layers-commands.c:959 -#: app/pdb/drawable_transform_cmds.c:1346 -#: app/pdb/drawable_transform_cmds.c:1503 app/pdb/transform_tools_cmds.c:458 -#: app/tools/gimpscaletool.c:153 +#: ../app/actions/image-commands.c:521 ../app/actions/layers-commands.c:959 +#: ../app/pdb/drawable_transform_cmds.c:1346 +#: ../app/pdb/drawable_transform_cmds.c:1503 +#: ../app/pdb/transform_tools_cmds.c:458 ../app/tools/gimpscaletool.c:153 msgid "Scaling..." msgstr "" -#: app/actions/images-actions.c:43 +#: ../app/actions/images-actions.c:43 msgid "Images Menu" msgstr "Меню Изображения" -#: app/actions/images-actions.c:47 +#: ../app/actions/images-actions.c:47 msgid "_Raise Views" msgstr "" -#: app/actions/images-actions.c:48 +#: ../app/actions/images-actions.c:48 msgid "Raise this image's displays" msgstr "" -#: app/actions/images-actions.c:53 app/actions/view-actions.c:68 +#: ../app/actions/images-actions.c:53 ../app/actions/view-actions.c:68 msgid "_New View" msgstr "_Нов изглед" -#: app/actions/images-actions.c:54 +#: ../app/actions/images-actions.c:54 msgid "Create a new display for this image" msgstr "" -#: app/actions/images-actions.c:59 +#: ../app/actions/images-actions.c:59 msgid "_Delete Image" msgstr "_Изтриване на изображение" -#: app/actions/images-actions.c:60 +#: ../app/actions/images-actions.c:60 msgid "Delete this image" msgstr "Изтриване на това изображение" -#: app/actions/layers-actions.c:48 +#: ../app/actions/layers-actions.c:48 msgid "Layers Menu" msgstr "Меню Слоеве" -#: app/actions/layers-actions.c:51 +#: ../app/actions/layers-actions.c:51 msgid "_Layer" msgstr "_Слой" -#: app/actions/layers-actions.c:52 +#: ../app/actions/layers-actions.c:52 msgid "Stac_k" msgstr "" -#: app/actions/layers-actions.c:54 app/tools/gimplevelstool.c:665 +#: ../app/actions/layers-actions.c:54 ../app/tools/gimplevelstool.c:665 msgid "_Auto" msgstr "" -#: app/actions/layers-actions.c:55 +#: ../app/actions/layers-actions.c:55 msgid "_Mask" msgstr "" -#: app/actions/layers-actions.c:56 +#: ../app/actions/layers-actions.c:56 msgid "Tr_ansparency" msgstr "_Прозрачност" -#: app/actions/layers-actions.c:58 +#: ../app/actions/layers-actions.c:58 msgid "_Properties" msgstr "" -#: app/actions/layers-actions.c:60 +#: ../app/actions/layers-actions.c:60 msgid "Layer _Mode" msgstr "" -#: app/actions/layers-actions.c:63 +#: ../app/actions/layers-actions.c:63 msgid "Te_xt Tool" msgstr "" -#: app/actions/layers-actions.c:68 +#: ../app/actions/layers-actions.c:68 msgid "_Edit Layer Attributes..." msgstr "" -#: app/actions/layers-actions.c:69 +#: ../app/actions/layers-actions.c:69 msgid "Edit layer attributes" msgstr "" -#: app/actions/layers-actions.c:74 +#: ../app/actions/layers-actions.c:74 msgid "_New Layer..." msgstr "_Нов слой..." -#: app/actions/layers-actions.c:75 +#: ../app/actions/layers-actions.c:75 msgid "New layer..." msgstr "Нов слой..." -#: app/actions/layers-actions.c:80 +#: ../app/actions/layers-actions.c:80 msgid "_New Layer" msgstr "_Нов слой" -#: app/actions/layers-actions.c:81 +#: ../app/actions/layers-actions.c:81 msgid "New layer with last values" msgstr "Нов слой с последно използваните стойности" -#: app/actions/layers-actions.c:86 +#: ../app/actions/layers-actions.c:86 msgid "D_uplicate Layer" msgstr "_Дублиране на слоя" -#: app/actions/layers-actions.c:87 +#: ../app/actions/layers-actions.c:87 msgid "Duplicate layer" msgstr "Дублиране на слоя" -#: app/actions/layers-actions.c:92 +#: ../app/actions/layers-actions.c:92 msgid "_Delete Layer" msgstr "_Изтриване на слоя" -#: app/actions/layers-actions.c:93 app/core/core-enums.c:1079 +#: ../app/actions/layers-actions.c:93 ../app/core/core-enums.c:1079 msgid "Delete layer" msgstr "Изтриване на слоя" -#: app/actions/layers-actions.c:98 +#: ../app/actions/layers-actions.c:98 msgid "_Raise Layer" msgstr "" -#: app/actions/layers-actions.c:99 +#: ../app/actions/layers-actions.c:99 msgid "Raise layer" msgstr "" -#: app/actions/layers-actions.c:104 +#: ../app/actions/layers-actions.c:104 msgid "Layer to _Top" msgstr "" -#: app/actions/layers-actions.c:105 +#: ../app/actions/layers-actions.c:105 msgid "Raise layer to top" msgstr "" -#: app/actions/layers-actions.c:110 +#: ../app/actions/layers-actions.c:110 msgid "_Lower Layer" msgstr "" -#: app/actions/layers-actions.c:111 +#: ../app/actions/layers-actions.c:111 msgid "Lower layer" msgstr "" -#: app/actions/layers-actions.c:116 +#: ../app/actions/layers-actions.c:116 msgid "Layer to _Bottom" msgstr "" -#: app/actions/layers-actions.c:117 +#: ../app/actions/layers-actions.c:117 msgid "Lower layer to bottom" msgstr "" -#: app/actions/layers-actions.c:122 +#: ../app/actions/layers-actions.c:122 msgid "_Anchor Layer" msgstr "" -#: app/actions/layers-actions.c:123 +#: ../app/actions/layers-actions.c:123 msgid "Anchor floating layer" msgstr "" -#: app/actions/layers-actions.c:128 +#: ../app/actions/layers-actions.c:128 msgid "Merge Do_wn" msgstr "" -#: app/actions/layers-actions.c:133 +#: ../app/actions/layers-actions.c:133 msgid "Merge _Visible Layers..." msgstr "" -#: app/actions/layers-actions.c:143 +#: ../app/actions/layers-actions.c:143 msgid "_Discard Text Information" msgstr "" -#: app/actions/layers-actions.c:148 +#: ../app/actions/layers-actions.c:148 msgid "Layer B_oundary Size..." msgstr "" -#: app/actions/layers-actions.c:153 +#: ../app/actions/layers-actions.c:153 msgid "Layer to _Image Size" msgstr "" -#: app/actions/layers-actions.c:158 +#: ../app/actions/layers-actions.c:158 msgid "_Scale Layer..." msgstr "" -#: app/actions/layers-actions.c:163 +#: ../app/actions/layers-actions.c:163 msgid "Cr_op Layer" msgstr "" -#: app/actions/layers-actions.c:168 +#: ../app/actions/layers-actions.c:168 msgid "Add La_yer Mask..." msgstr "" -#: app/actions/layers-actions.c:173 +#: ../app/actions/layers-actions.c:173 msgid "Add Alpha C_hannel" msgstr "" -#: app/actions/layers-actions.c:181 +#: ../app/actions/layers-actions.c:181 msgid "Keep Transparency" msgstr "Запазване на прозрачността" -#: app/actions/layers-actions.c:187 +#: ../app/actions/layers-actions.c:187 msgid "Edit Layer Mask" msgstr "" -#: app/actions/layers-actions.c:193 +#: ../app/actions/layers-actions.c:193 msgid "Show Layer Mask" msgstr "" -#: app/actions/layers-actions.c:199 +#: ../app/actions/layers-actions.c:199 msgid "Disable Layer Mask" msgstr "" -#: app/actions/layers-actions.c:208 +#: ../app/actions/layers-actions.c:208 msgid "Apply Layer _Mask" msgstr "" -#: app/actions/layers-actions.c:213 +#: ../app/actions/layers-actions.c:213 msgid "Delete Layer Mas_k" msgstr "" -#: app/actions/layers-actions.c:221 +#: ../app/actions/layers-actions.c:221 msgid "_Mask to Selection" msgstr "" -#: app/actions/layers-actions.c:244 +#: ../app/actions/layers-actions.c:244 msgid "Al_pha to Selection" msgstr "" -#: app/actions/layers-actions.c:249 +#: ../app/actions/layers-actions.c:249 msgid "A_dd to Selection" msgstr "" -#: app/actions/layers-actions.c:267 +#: ../app/actions/layers-actions.c:267 msgid "Select _Top Layer" msgstr "" -#: app/actions/layers-actions.c:272 +#: ../app/actions/layers-actions.c:272 msgid "Select _Bottom Layer" msgstr "" -#: app/actions/layers-actions.c:277 +#: ../app/actions/layers-actions.c:277 msgid "Select _Previous Layer" msgstr "Избиране на _предишния слой" -#: app/actions/layers-actions.c:282 +#: ../app/actions/layers-actions.c:282 msgid "Select _Next Layer" msgstr "" -#: app/actions/layers-actions.c:290 +#: ../app/actions/layers-actions.c:290 msgid "Set Opacity" msgstr "Задаване на непрозрачността" -#: app/actions/layers-commands.c:196 +#: ../app/actions/layers-commands.c:196 msgid "Layer Attributes" msgstr "" -#: app/actions/layers-commands.c:199 +#: ../app/actions/layers-commands.c:199 msgid "Edit Layer Attributes" msgstr "" -#: 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:842 +#: ../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:842 msgid "New Layer" msgstr "Нов слой" -#: app/actions/layers-commands.c:237 +#: ../app/actions/layers-commands.c:237 msgid "Create a New Layer" msgstr "Създаване на нов слой" -#: app/actions/layers-commands.c:470 +#: ../app/actions/layers-commands.c:470 msgid "Set Layer Boundary Size" msgstr "" -#: app/actions/layers-commands.c:512 app/core/gimplayer.c:253 +#: ../app/actions/layers-commands.c:512 ../app/core/gimplayer.c:253 msgid "Scale Layer" msgstr "" -#: app/actions/layers-commands.c:545 +#: ../app/actions/layers-commands.c:545 msgid "Crop Layer" msgstr "" -#: app/actions/layers-commands.c:683 +#: ../app/actions/layers-commands.c:683 msgid "Layer Mask to Selection" msgstr "" -#: app/actions/layers-commands.c:904 app/core/gimplayer.c:1065 -#: app/dialogs/layer-add-mask-dialog.c:62 +#: ../app/actions/layers-commands.c:904 ../app/core/gimplayer.c:1065 +#: ../app/dialogs/layer-add-mask-dialog.c:62 msgid "Add Layer Mask" msgstr "" -#: app/actions/layers-commands.c:975 app/actions/layers-commands.c:1007 +#: ../app/actions/layers-commands.c:975 ../app/actions/layers-commands.c:1007 msgid "Invalid width or height. Both must be positive." msgstr "Грешна широчина или височина. И двете трябва да са положителни числа." -#: app/actions/palette-editor-actions.c:43 +#: ../app/actions/palette-editor-actions.c:43 msgid "Palette Editor Menu" msgstr "" -#: app/actions/palette-editor-actions.c:53 +#: ../app/actions/palette-editor-actions.c:53 msgid "_Delete Color" msgstr "_Изтриване на цвят" -#: app/actions/palette-editor-actions.c:54 +#: ../app/actions/palette-editor-actions.c:54 msgid "Delete color" msgstr "Изтриване на цвят" -#: app/actions/palette-editor-actions.c:62 +#: ../app/actions/palette-editor-actions.c:62 msgid "New Color from _FG" msgstr "" -#: app/actions/palette-editor-actions.c:63 +#: ../app/actions/palette-editor-actions.c:63 msgid "New color from FG" msgstr "" -#: app/actions/palette-editor-actions.c:68 +#: ../app/actions/palette-editor-actions.c:68 msgid "New Color from _BG" msgstr "" -#: app/actions/palette-editor-actions.c:69 +#: ../app/actions/palette-editor-actions.c:69 msgid "New color from BG" msgstr "" -#: app/actions/palette-editor-actions.c:77 app/actions/view-actions.c:215 +#: ../app/actions/palette-editor-actions.c:77 +#: ../app/actions/view-actions.c:215 msgid "Zoom _In" msgstr "_Увеличаване" -#: app/actions/palette-editor-actions.c:83 app/actions/view-actions.c:209 +#: ../app/actions/palette-editor-actions.c:83 +#: ../app/actions/view-actions.c:209 msgid "Zoom _Out" msgstr "_Намаляване" -#: app/actions/palette-editor-actions.c:89 +#: ../app/actions/palette-editor-actions.c:89 msgid "Zoom _All" msgstr "" -#: app/actions/palette-editor-commands.c:68 +#: ../app/actions/palette-editor-commands.c:68 msgid "Edit Palette Color" msgstr "" -#: app/actions/palette-editor-commands.c:70 +#: ../app/actions/palette-editor-commands.c:70 msgid "Edit Color Palette Entry" msgstr "" -#: app/actions/palettes-actions.c:44 +#: ../app/actions/palettes-actions.c:44 msgid "Palettes Menu" msgstr "Меню Палитри" -#: app/actions/palettes-actions.c:48 +#: ../app/actions/palettes-actions.c:48 msgid "_New Palette" msgstr "_Нова палитра" -#: app/actions/palettes-actions.c:49 +#: ../app/actions/palettes-actions.c:49 msgid "New palette" msgstr "Нова палитра" -#: app/actions/palettes-actions.c:54 +#: ../app/actions/palettes-actions.c:54 msgid "_Import Palette..." msgstr "_Внасяне на палитра..." -#: app/actions/palettes-actions.c:55 +#: ../app/actions/palettes-actions.c:55 msgid "Import palette" msgstr "Внасяне на палитра" -#: app/actions/palettes-actions.c:60 +#: ../app/actions/palettes-actions.c:60 msgid "D_uplicate Palette" msgstr "" -#: app/actions/palettes-actions.c:61 +#: ../app/actions/palettes-actions.c:61 msgid "Duplicate palette" msgstr "" -#: app/actions/palettes-actions.c:66 +#: ../app/actions/palettes-actions.c:66 msgid "_Merge Palettes..." msgstr "_Сливане на палитри..." -#: app/actions/palettes-actions.c:67 +#: ../app/actions/palettes-actions.c:67 msgid "Merge palettes" msgstr "Сливане на палитри" -#: app/actions/palettes-actions.c:72 +#: ../app/actions/palettes-actions.c:72 msgid "_Delete Palette" msgstr "_Изтриване на палитра" -#: app/actions/palettes-actions.c:73 +#: ../app/actions/palettes-actions.c:73 msgid "Delete palette" msgstr "Изтриване на палитра" -#: app/actions/palettes-actions.c:78 +#: ../app/actions/palettes-actions.c:78 msgid "_Refresh Palettes" msgstr "_Презареждане на палитрите" -#: app/actions/palettes-actions.c:79 +#: ../app/actions/palettes-actions.c:79 msgid "Refresh palettes" msgstr "Презареждане на палитрите" -#: app/actions/palettes-actions.c:87 +#: ../app/actions/palettes-actions.c:87 msgid "_Edit Palette..." msgstr "_Редактиране на палитра..." -#: app/actions/palettes-actions.c:88 +#: ../app/actions/palettes-actions.c:88 msgid "Edit palette" msgstr "Редактиране на палитра" -#: app/actions/palettes-commands.c:72 +#: ../app/actions/palettes-commands.c:72 msgid "Merge Palette" msgstr "Сливане на палитра" -#: app/actions/palettes-commands.c:76 +#: ../app/actions/palettes-commands.c:76 msgid "Enter a name for the merged palette" msgstr "" -#: app/actions/patterns-actions.c:43 +#: ../app/actions/patterns-actions.c:43 msgid "Patterns Menu" msgstr "" -#: app/actions/patterns-actions.c:47 +#: ../app/actions/patterns-actions.c:47 msgid "_New Pattern" msgstr "" -#: app/actions/patterns-actions.c:48 +#: ../app/actions/patterns-actions.c:48 msgid "New pattern" msgstr "" -#: app/actions/patterns-actions.c:53 +#: ../app/actions/patterns-actions.c:53 msgid "D_uplicate Pattern" msgstr "" -#: app/actions/patterns-actions.c:54 +#: ../app/actions/patterns-actions.c:54 msgid "Duplicate pattern" msgstr "" -#: app/actions/patterns-actions.c:59 +#: ../app/actions/patterns-actions.c:59 msgid "_Delete Pattern..." msgstr "" -#: app/actions/patterns-actions.c:60 +#: ../app/actions/patterns-actions.c:60 msgid "Delete pattern" msgstr "" -#: app/actions/patterns-actions.c:65 +#: ../app/actions/patterns-actions.c:65 msgid "_Refresh Patterns" msgstr "" -#: app/actions/patterns-actions.c:66 +#: ../app/actions/patterns-actions.c:66 msgid "Refresh patterns" msgstr "" -#: app/actions/patterns-actions.c:74 +#: ../app/actions/patterns-actions.c:74 msgid "_Edit Pattern..." msgstr "" -#: app/actions/patterns-actions.c:75 +#: ../app/actions/patterns-actions.c:75 msgid "Edit pattern" msgstr "" -#: app/actions/plug-in-actions.c:62 +#: ../app/actions/plug-in-actions.c:62 msgid "Filte_rs" msgstr "_Филтри" -#: app/actions/plug-in-actions.c:63 +#: ../app/actions/plug-in-actions.c:63 msgid "_Blur" msgstr "" -#: app/actions/plug-in-actions.c:65 +#: ../app/actions/plug-in-actions.c:65 msgid "Ma_p" msgstr "" -#: app/actions/plug-in-actions.c:66 +#: ../app/actions/plug-in-actions.c:66 msgid "_Noise" msgstr "_Шум" -#: app/actions/plug-in-actions.c:67 +#: ../app/actions/plug-in-actions.c:67 msgid "Edge-De_tect" -msgstr "" +msgstr "Откриване на _ръбове" -#: app/actions/plug-in-actions.c:68 +#: ../app/actions/plug-in-actions.c:68 msgid "En_hance" msgstr "" -#: app/actions/plug-in-actions.c:69 +#: ../app/actions/plug-in-actions.c:69 msgid "_Generic" msgstr "" -#: app/actions/plug-in-actions.c:70 +#: ../app/actions/plug-in-actions.c:70 msgid "Gla_ss Effects" msgstr "" -#: app/actions/plug-in-actions.c:71 +#: ../app/actions/plug-in-actions.c:71 msgid "_Light Effects" -msgstr "" +msgstr "_Светлинни ефекти" -#: app/actions/plug-in-actions.c:72 +#: ../app/actions/plug-in-actions.c:72 msgid "_Distorts" msgstr "" -#: app/actions/plug-in-actions.c:73 +#: ../app/actions/plug-in-actions.c:73 msgid "_Artistic" msgstr "" -#: app/actions/plug-in-actions.c:74 +#: ../app/actions/plug-in-actions.c:74 msgid "_Map" msgstr "" -#: app/actions/plug-in-actions.c:75 +#: ../app/actions/plug-in-actions.c:75 msgid "_Render" msgstr "" -#: app/actions/plug-in-actions.c:76 +#: ../app/actions/plug-in-actions.c:76 msgid "_Clouds" msgstr "_Облаци" -#: app/actions/plug-in-actions.c:77 +#: ../app/actions/plug-in-actions.c:77 msgid "_Nature" msgstr "" -#: app/actions/plug-in-actions.c:79 +#: ../app/actions/plug-in-actions.c:79 msgid "_Web" msgstr "" -#: app/actions/plug-in-actions.c:80 +#: ../app/actions/plug-in-actions.c:80 msgid "An_imation" msgstr "Ани_мация" -#: app/actions/plug-in-actions.c:81 +#: ../app/actions/plug-in-actions.c:81 msgid "C_ombine" msgstr "" -#: app/actions/plug-in-actions.c:82 +#: ../app/actions/plug-in-actions.c:82 msgid "To_ys" msgstr "Иг_рачки" -#: app/actions/plug-in-actions.c:85 +#: ../app/actions/plug-in-actions.c:85 msgid "Reset all Filters..." msgstr "" -#: app/actions/plug-in-actions.c:93 app/actions/plug-in-actions.c:363 +#: ../app/actions/plug-in-actions.c:93 ../app/actions/plug-in-actions.c:363 msgid "Repeat Last" -msgstr "" +msgstr "Повтаряне на последния" -#: app/actions/plug-in-actions.c:98 app/actions/plug-in-actions.c:365 +#: ../app/actions/plug-in-actions.c:98 ../app/actions/plug-in-actions.c:365 msgid "Re-Show Last" msgstr "" -#: app/actions/plug-in-actions.c:349 +#: ../app/actions/plug-in-actions.c:349 #, c-format msgid "Re_peat \"%s\"" msgstr "" -#: app/actions/plug-in-actions.c:350 +#: ../app/actions/plug-in-actions.c:350 #, c-format msgid "R_e-show \"%s\"" msgstr "" -#: app/actions/plug-in-commands.c:193 +#: ../app/actions/plug-in-commands.c:193 msgid "Reset all Filters" msgstr "" -#: app/actions/plug-in-commands.c:207 +#: ../app/actions/plug-in-commands.c:207 msgid "Do you really want to reset all filters to default values?" msgstr "" -#: app/actions/qmask-actions.c:42 +#: ../app/actions/qmask-actions.c:42 msgid "Quick Mask Menu" msgstr "" -#: app/actions/qmask-actions.c:46 +#: ../app/actions/qmask-actions.c:46 msgid "_Configure Color and Opacity..." msgstr "" -#: app/actions/qmask-actions.c:54 +#: ../app/actions/qmask-actions.c:54 msgid "_Quick Mask Active" msgstr "" -#: app/actions/qmask-actions.c:60 +#: ../app/actions/qmask-actions.c:60 msgid "Toggle _Quick Mask" msgstr "" -#: app/actions/qmask-actions.c:70 +#: ../app/actions/qmask-actions.c:70 msgid "Mask _Selected Areas" msgstr "" -#: app/actions/qmask-actions.c:75 +#: ../app/actions/qmask-actions.c:75 msgid "Mask _Unselected Areas" msgstr "" -#: app/actions/qmask-commands.c:106 +#: ../app/actions/qmask-commands.c:106 msgid "Quick Mask Attributes" msgstr "" -#: app/actions/qmask-commands.c:109 +#: ../app/actions/qmask-commands.c:109 msgid "Edit Quick Mask Attributes" msgstr "" -#: app/actions/qmask-commands.c:111 +#: ../app/actions/qmask-commands.c:111 msgid "Edit Quick Mask Color" msgstr "" -#: app/actions/qmask-commands.c:112 +#: ../app/actions/qmask-commands.c:112 msgid "Mask Opacity:" msgstr "" -#: app/actions/select-actions.c:44 +#: ../app/actions/select-actions.c:44 msgid "Selection Editor Menu" msgstr "" -#: app/actions/select-actions.c:47 +#: ../app/actions/select-actions.c:47 msgid "_Select" msgstr "_Избиране" -#: app/actions/select-actions.c:50 +#: ../app/actions/select-actions.c:50 msgid "_All" -msgstr "" +msgstr "_Всичко" -#: app/actions/select-actions.c:51 +#: ../app/actions/select-actions.c:51 msgid "Select all" msgstr "Избиране на всичко" -#: app/actions/select-actions.c:56 +#: ../app/actions/select-actions.c:56 msgid "_None" -msgstr "" +msgstr "_Нищо" -#: app/actions/select-actions.c:57 +#: ../app/actions/select-actions.c:57 msgid "Select none" msgstr "" -#: app/actions/select-actions.c:62 +#: ../app/actions/select-actions.c:62 msgid "_Invert" -msgstr "" +msgstr "_Обръщане" -#: app/actions/select-actions.c:63 +#: ../app/actions/select-actions.c:63 msgid "Invert selection" -msgstr "" +msgstr "Обръщане на избирането" -#: app/actions/select-actions.c:68 +#: ../app/actions/select-actions.c:68 msgid "_Float" msgstr "" -#: app/actions/select-actions.c:73 +#: ../app/actions/select-actions.c:73 msgid "Fea_ther..." msgstr "" -#: app/actions/select-actions.c:78 +#: ../app/actions/select-actions.c:78 msgid "_Sharpen" msgstr "" -#: app/actions/select-actions.c:83 +#: ../app/actions/select-actions.c:83 msgid "S_hrink..." msgstr "" -#: app/actions/select-actions.c:88 +#: ../app/actions/select-actions.c:88 msgid "_Grow..." msgstr "" -#: app/actions/select-actions.c:93 +#: ../app/actions/select-actions.c:93 msgid "Bo_rder..." msgstr "" -#: app/actions/select-actions.c:98 +#: ../app/actions/select-actions.c:98 msgid "Save to _Channel" msgstr "" -#: app/actions/select-actions.c:99 +#: ../app/actions/select-actions.c:99 msgid "Save selection to channel" msgstr "" -#: app/actions/select-actions.c:104 +#: ../app/actions/select-actions.c:104 msgid "_Stroke Selection..." msgstr "" -#: app/actions/select-actions.c:105 +#: ../app/actions/select-actions.c:105 msgid "Stroke selection..." msgstr "" -#: app/actions/select-actions.c:110 +#: ../app/actions/select-actions.c:110 msgid "_Stroke Selection" msgstr "" -#: app/actions/select-actions.c:111 +#: ../app/actions/select-actions.c:111 msgid "Stroke selection with last values" msgstr "" -#: app/actions/select-commands.c:136 app/core/gimpselection.c:201 +#: ../app/actions/select-commands.c:136 ../app/core/gimpselection.c:201 msgid "Feather Selection" msgstr "" -#: app/actions/select-commands.c:140 +#: ../app/actions/select-commands.c:140 msgid "Feather selection by" msgstr "" -#: app/actions/select-commands.c:171 app/core/gimpselection.c:208 +#: ../app/actions/select-commands.c:171 ../app/core/gimpselection.c:208 msgid "Shrink Selection" msgstr "" -#: app/actions/select-commands.c:175 +#: ../app/actions/select-commands.c:175 msgid "Shrink selection by" msgstr "" -#: app/actions/select-commands.c:184 +#: ../app/actions/select-commands.c:184 msgid "Shrink from image border" msgstr "" -#: app/actions/select-commands.c:205 app/core/gimpselection.c:207 +#: ../app/actions/select-commands.c:205 ../app/core/gimpselection.c:207 msgid "Grow Selection" msgstr "" -#: app/actions/select-commands.c:209 +#: ../app/actions/select-commands.c:209 msgid "Grow selection by" msgstr "" -#: app/actions/select-commands.c:228 app/core/gimpselection.c:206 +#: ../app/actions/select-commands.c:228 ../app/core/gimpselection.c:206 msgid "Border Selection" msgstr "" -#: app/actions/select-commands.c:232 +#: ../app/actions/select-commands.c:232 msgid "Border selection by" msgstr "" -#: app/actions/select-commands.c:275 app/actions/select-commands.c:301 -#: app/actions/vectors-commands.c:365 app/actions/vectors-commands.c:392 -#: app/dialogs/stroke-dialog.c:275 +#: ../app/actions/select-commands.c:275 ../app/actions/select-commands.c:301 +#: ../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 "" -#: app/actions/select-commands.c:280 app/core/gimpselection.c:184 +#: ../app/actions/select-commands.c:280 ../app/core/gimpselection.c:184 msgid "Stroke Selection" msgstr "" -#: app/actions/templates-actions.c:42 +#: ../app/actions/templates-actions.c:42 msgid "Templates Menu" msgstr "" -#: app/actions/templates-actions.c:46 +#: ../app/actions/templates-actions.c:46 msgid "_Create Image from Template..." msgstr "" -#: app/actions/templates-actions.c:47 +#: ../app/actions/templates-actions.c:47 msgid "Create a new image from the selected template" msgstr "" -#: app/actions/templates-actions.c:52 +#: ../app/actions/templates-actions.c:52 msgid "_New Template..." msgstr "" -#: app/actions/templates-actions.c:53 +#: ../app/actions/templates-actions.c:53 msgid "Create a new template" msgstr "" -#: app/actions/templates-actions.c:58 +#: ../app/actions/templates-actions.c:58 msgid "D_uplicate Template..." msgstr "" -#: app/actions/templates-actions.c:59 +#: ../app/actions/templates-actions.c:59 msgid "Duplicate the selected template" msgstr "" -#: app/actions/templates-actions.c:64 +#: ../app/actions/templates-actions.c:64 msgid "_Edit Template..." msgstr "" -#: app/actions/templates-actions.c:65 +#: ../app/actions/templates-actions.c:65 msgid "Edit the selected template" msgstr "" -#: app/actions/templates-actions.c:70 +#: ../app/actions/templates-actions.c:70 msgid "_Delete Template" msgstr "_Изтриване на шаблон" -#: app/actions/templates-actions.c:71 +#: ../app/actions/templates-actions.c:71 msgid "Delete the selected template" msgstr "Изтриване на избрания шаблон" -#: app/actions/templates-commands.c:123 +#: ../app/actions/templates-commands.c:123 msgid "New Template" msgstr "" -#: app/actions/templates-commands.c:126 +#: ../app/actions/templates-commands.c:126 msgid "Create a New Template" msgstr "" -#: app/actions/templates-commands.c:185 app/actions/templates-commands.c:188 +#: ../app/actions/templates-commands.c:185 +#: ../app/actions/templates-commands.c:188 msgid "Edit Template" msgstr "" -#: app/actions/templates-commands.c:224 +#: ../app/actions/templates-commands.c:224 msgid "Delete Template" msgstr "Изтриване на шаблон" -#: app/actions/templates-commands.c:243 +#: ../app/actions/templates-commands.c:243 #, c-format msgid "" "Are you sure you want to delete template '%s' from the list and from disk?" msgstr "" -#: app/actions/text-editor-actions.c:44 +#: ../app/actions/text-editor-actions.c:44 msgid "Open" msgstr "Отваряне" -#: app/actions/text-editor-actions.c:45 +#: ../app/actions/text-editor-actions.c:45 msgid "Load text from file" -msgstr "" +msgstr "Зареждане на текст от файл" -#: app/actions/text-editor-actions.c:50 app/core/gimp-edit.c:350 +#: ../app/actions/text-editor-actions.c:50 ../app/core/gimp-edit.c:350 msgid "Clear" msgstr "Изчистване" -#: app/actions/text-editor-actions.c:51 +#: ../app/actions/text-editor-actions.c:51 msgid "Clear all text" -msgstr "" +msgstr "Изчистване на целия текст" -#: app/actions/text-editor-actions.c:59 +#: ../app/actions/text-editor-actions.c:59 msgid "LTR" msgstr "" -#: app/actions/text-editor-actions.c:60 app/text/text-enums.c:51 +#: ../app/actions/text-editor-actions.c:60 ../app/text/text-enums.c:51 msgid "From left to right" msgstr "" -#: app/actions/text-editor-actions.c:65 +#: ../app/actions/text-editor-actions.c:65 msgid "RTL" msgstr "" -#: app/actions/text-editor-actions.c:66 app/text/text-enums.c:52 +#: ../app/actions/text-editor-actions.c:66 ../app/text/text-enums.c:52 msgid "From right to left" msgstr "" -#: app/actions/text-editor-commands.c:60 +#: ../app/actions/text-editor-commands.c:60 msgid "Open Text File (UTF-8)" 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: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 +#: ../app/actions/text-editor-commands.c:132 +#: ../app/config/gimpconfig-utils.c:552 ../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 "" +msgstr "Грешка при отваряне на \"%s\" за четене: %s" -#: app/actions/tool-options-actions.c:56 +#: ../app/actions/tool-options-actions.c:56 msgid "Tool Options Menu" -msgstr "" +msgstr "Меню Настройки на интсрумента" -#: app/actions/tool-options-actions.c:60 +#: ../app/actions/tool-options-actions.c:60 msgid "_Save Options to" msgstr "_Запазване на настройките в" -#: app/actions/tool-options-actions.c:64 +#: ../app/actions/tool-options-actions.c:64 msgid "_Restore Options from" msgstr "_Възстановяване на настройките от" -#: app/actions/tool-options-actions.c:68 +#: ../app/actions/tool-options-actions.c:68 msgid "Re_name Saved Options" msgstr "Пре_именуване на запазени настройки" -#: app/actions/tool-options-actions.c:72 +#: ../app/actions/tool-options-actions.c:72 msgid "_Delete Saved Options" msgstr "_Изтриване на запазени настройки" -#: app/actions/tool-options-actions.c:76 +#: ../app/actions/tool-options-actions.c:76 msgid "_New Entry..." msgstr "" -#: app/actions/tool-options-actions.c:81 +#: ../app/actions/tool-options-actions.c:81 msgid "R_eset Tool Options" msgstr "" -#: app/actions/tool-options-actions.c:82 +#: ../app/actions/tool-options-actions.c:82 msgid "Reset to default values" msgstr "Връщане на стойностите по подразбиране" -#: app/actions/tool-options-actions.c:87 +#: ../app/actions/tool-options-actions.c:87 msgid "Reset _all Tool Options..." msgstr "" -#: app/actions/tool-options-actions.c:88 +#: ../app/actions/tool-options-actions.c:88 msgid "Reset all tool options" msgstr "- за всички инструменти" -#: app/actions/tool-options-commands.c:73 +#: ../app/actions/tool-options-commands.c:73 msgid "Save Tool Options" msgstr "Запазване настройките на инструмента" -#: app/actions/tool-options-commands.c:77 +#: ../app/actions/tool-options-commands.c:77 msgid "Enter a name for the saved options" msgstr "Въведете име за тези настройки" -#: app/actions/tool-options-commands.c:78 -#: app/actions/tool-options-commands.c:251 -#: app/actions/tool-options-commands.c:269 +#: ../app/actions/tool-options-commands.c:78 +#: ../app/actions/tool-options-commands.c:251 +#: ../app/actions/tool-options-commands.c:269 msgid "Saved Options" msgstr "Запазени настройки" -#: app/actions/tool-options-commands.c:146 +#: ../app/actions/tool-options-commands.c:146 msgid "Rename Saved Tool Options" msgstr "Преименуване на запазени настройки на инструментите" -#: app/actions/tool-options-commands.c:150 +#: ../app/actions/tool-options-commands.c:150 msgid "Enter a new name for the saved options" msgstr "Въведете ново име за тези настройки" -#: app/actions/tool-options-commands.c:215 +#: ../app/actions/tool-options-commands.c:215 msgid "Reset Tool Options" msgstr "" -#: app/actions/tool-options-commands.c:233 +#: ../app/actions/tool-options-commands.c:233 msgid "Do you really want to reset all tool options to default values?" msgstr "" -#: app/actions/tools-actions.c:47 +#: ../app/actions/tools-actions.c:47 msgid "Tools Menu" msgstr "Меню Инструменти" -#: app/actions/tools-actions.c:50 +#: ../app/actions/tools-actions.c:50 msgid "_Tools" msgstr "_Инструменти" -#: app/actions/tools-actions.c:51 +#: ../app/actions/tools-actions.c:51 msgid "_Selection Tools" msgstr "" -#: app/actions/tools-actions.c:52 +#: ../app/actions/tools-actions.c:52 msgid "_Paint Tools" msgstr "" -#: app/actions/tools-actions.c:53 +#: ../app/actions/tools-actions.c:53 msgid "_Transform Tools" msgstr "" -#: app/actions/tools-actions.c:54 +#: ../app/actions/tools-actions.c:54 msgid "_Color Tools" msgstr "" -#: app/actions/tools-actions.c:57 +#: ../app/actions/tools-actions.c:57 msgid "_Reset Order & Visibility" msgstr "" -#: app/actions/tools-actions.c:58 +#: ../app/actions/tools-actions.c:58 msgid "Reset tool order and visibility" msgstr "" -#: app/actions/tools-actions.c:66 +#: ../app/actions/tools-actions.c:66 msgid "_Show in Toolbox" msgstr "" -#: app/actions/tools-actions.c:75 +#: ../app/actions/tools-actions.c:75 msgid "_By Color" msgstr "" -#: app/actions/tools-actions.c:80 +#: ../app/actions/tools-actions.c:80 msgid "_Arbitrary Rotation..." msgstr "" -#: app/actions/vectors-actions.c:44 +#: ../app/actions/vectors-actions.c:44 msgid "Paths Menu" msgstr "" -#: app/actions/vectors-actions.c:48 +#: ../app/actions/vectors-actions.c:48 msgid "Path _Tool" msgstr "" -#: app/actions/vectors-actions.c:53 +#: ../app/actions/vectors-actions.c:53 msgid "_Edit Path Attributes..." msgstr "" -#: app/actions/vectors-actions.c:54 +#: ../app/actions/vectors-actions.c:54 msgid "Edit path attributes" msgstr "" -#: app/actions/vectors-actions.c:59 +#: ../app/actions/vectors-actions.c:59 msgid "_New Path..." msgstr "" -#: app/actions/vectors-actions.c:60 +#: ../app/actions/vectors-actions.c:60 msgid "New path..." msgstr "" -#: app/actions/vectors-actions.c:65 +#: ../app/actions/vectors-actions.c:65 msgid "_New Path" msgstr "" -#: app/actions/vectors-actions.c:66 +#: ../app/actions/vectors-actions.c:66 msgid "New path with last values" msgstr "" -#: app/actions/vectors-actions.c:71 +#: ../app/actions/vectors-actions.c:71 msgid "D_uplicate Path" msgstr "" -#: app/actions/vectors-actions.c:72 +#: ../app/actions/vectors-actions.c:72 msgid "Duplicate path" msgstr "" -#: app/actions/vectors-actions.c:77 +#: ../app/actions/vectors-actions.c:77 msgid "_Delete Path" msgstr "" -#: app/actions/vectors-actions.c:78 +#: ../app/actions/vectors-actions.c:78 msgid "Delete path" msgstr "" -#: app/actions/vectors-actions.c:83 +#: ../app/actions/vectors-actions.c:83 msgid "Merge _Visible Paths" msgstr "" -#: app/actions/vectors-actions.c:88 +#: ../app/actions/vectors-actions.c:88 msgid "_Raise Path" msgstr "" -#: app/actions/vectors-actions.c:89 +#: ../app/actions/vectors-actions.c:89 msgid "Raise path" msgstr "" -#: app/actions/vectors-actions.c:94 +#: ../app/actions/vectors-actions.c:94 msgid "Raise Path to _Top" msgstr "" -#: app/actions/vectors-actions.c:95 +#: ../app/actions/vectors-actions.c:95 msgid "Raise path to top" msgstr "" -#: app/actions/vectors-actions.c:100 +#: ../app/actions/vectors-actions.c:100 msgid "_Lower Path" msgstr "" -#: app/actions/vectors-actions.c:101 +#: ../app/actions/vectors-actions.c:101 msgid "Lower path" msgstr "" -#: app/actions/vectors-actions.c:106 +#: ../app/actions/vectors-actions.c:106 msgid "Lower Path to _Bottom" msgstr "" -#: app/actions/vectors-actions.c:107 +#: ../app/actions/vectors-actions.c:107 msgid "Lower path to bottom" msgstr "" -#: app/actions/vectors-actions.c:112 +#: ../app/actions/vectors-actions.c:112 msgid "Stro_ke Path..." msgstr "" -#: app/actions/vectors-actions.c:113 +#: ../app/actions/vectors-actions.c:113 msgid "Stroke path..." msgstr "" -#: app/actions/vectors-actions.c:118 +#: ../app/actions/vectors-actions.c:118 msgid "Stro_ke Path" msgstr "" -#: app/actions/vectors-actions.c:119 +#: ../app/actions/vectors-actions.c:119 msgid "Stroke path with last values" msgstr "" -#: app/actions/vectors-actions.c:124 +#: ../app/actions/vectors-actions.c:124 msgid "Co_py Path" msgstr "" -#: app/actions/vectors-actions.c:129 +#: ../app/actions/vectors-actions.c:129 msgid "Paste Pat_h" msgstr "" -#: app/actions/vectors-actions.c:134 +#: ../app/actions/vectors-actions.c:134 msgid "I_mport Path..." msgstr "" -#: app/actions/vectors-actions.c:139 +#: ../app/actions/vectors-actions.c:139 msgid "E_xport Path..." msgstr "" -#: app/actions/vectors-actions.c:162 +#: ../app/actions/vectors-actions.c:162 msgid "Path to Sele_ction" msgstr "" -#: app/actions/vectors-actions.c:163 app/tools/gimpvectortool.c:1893 +#: ../app/actions/vectors-actions.c:163 ../app/tools/gimpvectortool.c:1893 msgid "Path to selection" msgstr "" -#: app/actions/vectors-actions.c:168 +#: ../app/actions/vectors-actions.c:168 msgid "Fr_om Path" msgstr "" -#: app/actions/vectors-actions.c:194 +#: ../app/actions/vectors-actions.c:194 msgid "Selecti_on to Path" msgstr "" -#: app/actions/vectors-actions.c:195 +#: ../app/actions/vectors-actions.c:195 msgid "Selection to path" msgstr "" -#: app/actions/vectors-actions.c:200 +#: ../app/actions/vectors-actions.c:200 msgid "To _Path" msgstr "" -#: app/actions/vectors-actions.c:205 +#: ../app/actions/vectors-actions.c:205 msgid "Selection to Path (_Advanced)" msgstr "" -#: app/actions/vectors-actions.c:206 +#: ../app/actions/vectors-actions.c:206 msgid "Advanced options" msgstr "Допълнителни настройки" -#: app/actions/vectors-commands.c:140 +#: ../app/actions/vectors-commands.c:140 msgid "Path Attributes" msgstr "" -#: app/actions/vectors-commands.c:143 +#: ../app/actions/vectors-commands.c:143 msgid "Edit Path Attributes" msgstr "" -#: app/actions/vectors-commands.c:167 app/actions/vectors-commands.c:168 -#: app/actions/vectors-commands.c:190 +#: ../app/actions/vectors-commands.c:167 ../app/actions/vectors-commands.c:168 +#: ../app/actions/vectors-commands.c:190 msgid "New Path" msgstr "" -#: app/actions/vectors-commands.c:171 +#: ../app/actions/vectors-commands.c:171 msgid "New Path Options" msgstr "" -#: app/actions/vectors-commands.c:299 app/pdb/paths_cmds.c:1210 +#: ../app/actions/vectors-commands.c:299 ../app/pdb/paths_cmds.c:1210 msgid "Path to Selection" msgstr "" -#: app/actions/vectors-commands.c:370 app/tools/gimpvectortool.c:1923 -#: app/vectors/gimpvectors.c:237 +#: ../app/actions/vectors-commands.c:370 ../app/tools/gimpvectortool.c:1923 +#: ../app/vectors/gimpvectors.c:237 msgid "Stroke Path" msgstr "" -#: app/actions/view-actions.c:63 +#: ../app/actions/view-actions.c:63 msgid "_View" msgstr "_Изглед" -#: app/actions/view-actions.c:64 +#: ../app/actions/view-actions.c:64 msgid "_Zoom" msgstr "_Мащаб" -#: app/actions/view-actions.c:65 +#: ../app/actions/view-actions.c:65 msgid "_Padding Color" msgstr "" -#: app/actions/view-actions.c:73 +#: ../app/actions/view-actions.c:73 msgid "_Close" msgstr "_Затваряне" -#: app/actions/view-actions.c:78 +#: ../app/actions/view-actions.c:78 msgid "_Fit Image in Window" msgstr "" -#: app/actions/view-actions.c:79 +#: ../app/actions/view-actions.c:79 msgid "Fit image in window" msgstr "" -#: app/actions/view-actions.c:84 +#: ../app/actions/view-actions.c:84 msgid "Fit Image to Window" msgstr "" -#: app/actions/view-actions.c:85 +#: ../app/actions/view-actions.c:85 msgid "Fit image to window" msgstr "" -#: app/actions/view-actions.c:90 +#: ../app/actions/view-actions.c:90 msgid "_Info Window" msgstr "Прзорец с _данни" -#: app/actions/view-actions.c:95 +#: ../app/actions/view-actions.c:95 msgid "Na_vigation Window" msgstr "" -#: app/actions/view-actions.c:100 +#: ../app/actions/view-actions.c:100 msgid "Display _Filters..." msgstr "" -#: app/actions/view-actions.c:105 +#: ../app/actions/view-actions.c:105 msgid "Shrink _Wrap" msgstr "" -#: app/actions/view-actions.c:106 +#: ../app/actions/view-actions.c:106 msgid "Shrink wrap" msgstr "" -#: app/actions/view-actions.c:111 +#: ../app/actions/view-actions.c:111 msgid "Move to Screen..." msgstr "" -#: app/actions/view-actions.c:119 +#: ../app/actions/view-actions.c:119 msgid "_Dot for Dot" msgstr "" -#: app/actions/view-actions.c:125 +#: ../app/actions/view-actions.c:125 msgid "Show _Selection" -msgstr "" +msgstr "Показване на _избраното" -#: app/actions/view-actions.c:131 +#: ../app/actions/view-actions.c:131 msgid "Show _Layer Boundary" -msgstr "" +msgstr "Показване _границите на слоевете" -#: app/actions/view-actions.c:137 +#: ../app/actions/view-actions.c:137 msgid "Show _Guides" msgstr "" -#: app/actions/view-actions.c:143 +#: ../app/actions/view-actions.c:143 msgid "Sn_ap to Guides" msgstr "" -#: app/actions/view-actions.c:149 +#: ../app/actions/view-actions.c:149 msgid "S_how Grid" -msgstr "" +msgstr "Показване на _мрежата" -#: app/actions/view-actions.c:155 +#: ../app/actions/view-actions.c:155 msgid "Sna_p to Grid" -msgstr "" +msgstr "Пре_лепяне към прежата" -#: app/actions/view-actions.c:161 +#: ../app/actions/view-actions.c:161 msgid "Show _Menubar" -msgstr "" +msgstr "Показване на _менюто" -#: app/actions/view-actions.c:167 +#: ../app/actions/view-actions.c:167 msgid "Show R_ulers" -msgstr "" +msgstr "Показване на _линийките" -#: app/actions/view-actions.c:173 +#: ../app/actions/view-actions.c:173 msgid "Show Scroll_bars" -msgstr "" +msgstr "Показване на _плъзгачите" -#: app/actions/view-actions.c:179 +#: ../app/actions/view-actions.c:179 msgid "Show S_tatusbar" -msgstr "" +msgstr "Показване на ивицата за _състояние" -#: app/actions/view-actions.c:185 +#: ../app/actions/view-actions.c:185 msgid "Fullscr_een" msgstr "Пълен _екран" -#: app/actions/view-actions.c:234 +#: ../app/actions/view-actions.c:234 msgid "16:1 (1600%)" msgstr "16:1 (1600%)" -#: app/actions/view-actions.c:239 +#: ../app/actions/view-actions.c:239 msgid "8:1 (800%)" msgstr "8:1 (800%)" -#: app/actions/view-actions.c:244 +#: ../app/actions/view-actions.c:244 msgid "4:1 (400%)" msgstr "4:1 (400%)" -#: app/actions/view-actions.c:249 +#: ../app/actions/view-actions.c:249 msgid "2:1 (200%)" msgstr "2:1 (200%)" -#: app/actions/view-actions.c:254 +#: ../app/actions/view-actions.c:254 msgid "1:1 (100%)" msgstr "1:1 (100%)" -#: app/actions/view-actions.c:255 +#: ../app/actions/view-actions.c:255 msgid "Zoom 1:1" msgstr "Мащаб 1:1" -#: app/actions/view-actions.c:260 +#: ../app/actions/view-actions.c:260 msgid "1:2 (50%)" msgstr "1:2 (50%)" -#: app/actions/view-actions.c:265 +#: ../app/actions/view-actions.c:265 msgid "1:4 (25%)" msgstr "1:4 (25%)" -#: app/actions/view-actions.c:270 +#: ../app/actions/view-actions.c:270 msgid "1:8 (12.5%)" msgstr "1:8 (12.5%)" -#: app/actions/view-actions.c:275 +#: ../app/actions/view-actions.c:275 msgid "1:16 (6.25%)" msgstr "1:16 (6.25%)" -#: app/actions/view-actions.c:280 +#: ../app/actions/view-actions.c:280 msgid "O_ther..." msgstr "" -#: app/actions/view-actions.c:288 +#: ../app/actions/view-actions.c:288 msgid "From _Theme" -msgstr "" +msgstr "Според _изгледа" -#: app/actions/view-actions.c:293 +#: ../app/actions/view-actions.c:293 msgid "_Light Check Color" msgstr "" -#: app/actions/view-actions.c:298 +#: ../app/actions/view-actions.c:298 msgid "_Dark Check Color" msgstr "" -#: app/actions/view-actions.c:303 +#: ../app/actions/view-actions.c:303 msgid "Select _Custom Color..." msgstr "" -#: app/actions/view-actions.c:308 +#: ../app/actions/view-actions.c:308 msgid "As in _Preferences" msgstr "" -#: app/actions/view-actions.c:592 +#: ../app/actions/view-actions.c:592 #, c-format msgid "Other (%s) ..." msgstr "" -#: app/actions/view-actions.c:601 +#: ../app/actions/view-actions.c:601 #, c-format msgid "_Zoom (%s)" msgstr "_Мащаб (%s)" -#: app/actions/view-commands.c:572 +#: ../app/actions/view-commands.c:572 msgid "Set Canvas Padding Color" msgstr "" -#: app/actions/view-commands.c:574 +#: ../app/actions/view-commands.c:574 msgid "Set Custom Canvas Padding Color" msgstr "" -#: app/base/base-enums.c:23 +#: ../app/base/base-enums.c:23 msgid "Smooth" msgstr "" -#: app/base/base-enums.c:24 +#: ../app/base/base-enums.c:24 msgid "Freehand" msgstr "" -#: app/base/base-enums.c:55 app/widgets/gimpwidgets-constructors.c:76 -#: app/widgets/gimpwidgets-constructors.c:109 +#: ../app/base/base-enums.c:55 ../app/widgets/gimpwidgets-constructors.c:76 +#: ../app/widgets/gimpwidgets-constructors.c:109 msgid "Value" msgstr "Стойност" -#: app/base/base-enums.c:56 app/core/core-enums.c:157 -#: app/tools/gimpcolorbalancetool.c:301 +#: ../app/base/base-enums.c:56 ../app/core/core-enums.c:157 +#: ../app/tools/gimpcolorbalancetool.c:301 msgid "Red" msgstr "Червено" -#: app/base/base-enums.c:57 app/core/core-enums.c:158 -#: app/tools/gimpcolorbalancetool.c:308 +#: ../app/base/base-enums.c:57 ../app/core/core-enums.c:158 +#: ../app/tools/gimpcolorbalancetool.c:308 msgid "Green" msgstr "Зелено" -#: app/base/base-enums.c:58 app/core/core-enums.c:159 -#: app/tools/gimpcolorbalancetool.c:315 +#: ../app/base/base-enums.c:58 ../app/core/core-enums.c:159 +#: ../app/tools/gimpcolorbalancetool.c:315 msgid "Blue" msgstr "Синьо" -#: app/base/base-enums.c:59 app/core/core-enums.c:162 +#: ../app/base/base-enums.c:59 ../app/core/core-enums.c:162 msgid "Alpha" msgstr "" -#: app/base/base-enums.c:60 app/display/gimpdisplayshell-title.c:234 -#: app/widgets/widgets-enums.c:114 +#: ../app/base/base-enums.c:60 ../app/display/gimpdisplayshell-title.c:234 +#: ../app/widgets/widgets-enums.c:114 msgid "RGB" msgstr "RGB" -#: app/base/base-enums.c:88 +#: ../app/base/base-enums.c:88 msgid "None (Fastest)" msgstr "" -#: app/base/base-enums.c:89 app/core/core-enums.c:370 -#: app/widgets/widgets-enums.c:227 +#: ../app/base/base-enums.c:89 ../app/core/core-enums.c:370 +#: ../app/widgets/widgets-enums.c:227 msgid "Linear" msgstr "" -#: app/base/base-enums.c:90 +#: ../app/base/base-enums.c:90 msgid "Cubic (Best)" msgstr "" -#: app/base/base-enums.c:188 +#: ../app/base/base-enums.c:188 msgid "Shadows" msgstr "Сенки" -#: app/base/base-enums.c:189 +#: ../app/base/base-enums.c:189 msgid "Midtones" msgstr "" -#: app/base/base-enums.c:190 +#: ../app/base/base-enums.c:190 #, fuzzy msgid "Highlights" msgstr "Височина" -#: app/base/tile-swap.c:456 +#: ../app/base/tile-swap.c:456 msgid "" "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 " @@ -3207,109 +3227,109 @@ "swap directory in your Preferences." msgstr "" -#: app/config/gimpconfig-deserialize.c:100 +#: ../app/config/gimpconfig-deserialize.c:100 #, c-format msgid "value for token %s is not a valid UTF-8 string" msgstr "" -#: app/config/gimpconfig-deserialize.c:217 app/config/gimpconfig.c:424 -#: app/config/gimpconfig.c:437 app/config/gimpscanner.c:417 -#: app/config/gimpscanner.c:489 app/core/gimp-modules.c:132 -#: app/core/gimp-units.c:169 app/gui/session.c:158 -#: app/plug-in/plug-in-rc.c:183 +#: ../app/config/gimpconfig-deserialize.c:217 ../app/config/gimpconfig.c:424 +#: ../app/config/gimpconfig.c:437 ../app/config/gimpscanner.c:417 +#: ../app/config/gimpscanner.c:489 ../app/core/gimp-modules.c:132 +#: ../app/core/gimp-units.c:169 ../app/gui/session.c:158 +#: ../app/plug-in/plug-in-rc.c:183 msgid "fatal parse error" msgstr "" #. please don't translate 'yes' and 'no' -#: app/config/gimpconfig-deserialize.c:467 +#: ../app/config/gimpconfig-deserialize.c:467 #, c-format msgid "expected 'yes' or 'no' for boolean token %s, got '%s'" msgstr "" -#: app/config/gimpconfig-deserialize.c:541 +#: ../app/config/gimpconfig-deserialize.c:541 #, c-format msgid "invalid value '%s' for token %s" msgstr "" -#: app/config/gimpconfig-deserialize.c:556 +#: ../app/config/gimpconfig-deserialize.c:556 #, c-format msgid "invalid value '%ld' for token %s" msgstr "" -#: app/config/gimpconfig-deserialize.c:625 +#: ../app/config/gimpconfig-deserialize.c:625 #, fuzzy, c-format msgid "while parsing token '%s': %s" msgstr "Грешка при записването на \"%s\": %s" -#: app/config/gimpconfig-path.c:177 +#: ../app/config/gimpconfig-path.c:177 #, c-format msgid "Cannot expand ${%s}" msgstr "" -#: app/config/gimpconfig-utils.c:561 app/config/gimpconfigwriter.c:143 -#: app/core/gimpbrushgenerated.c:255 app/core/gimpgradient-save.c:51 -#: app/core/gimpgradient-save.c:142 app/core/gimppalette.c:567 -#: app/gui/themes.c:238 app/tools/gimpimagemaptool.c:607 -#: app/vectors/gimpvectors-export.c:83 app/xcf/xcf.c:348 +#: ../app/config/gimpconfig-utils.c:561 ../app/config/gimpconfigwriter.c:143 +#: ../app/core/gimpbrushgenerated.c:255 ../app/core/gimpgradient-save.c:51 +#: ../app/core/gimpgradient-save.c:142 ../app/core/gimppalette.c:567 +#: ../app/gui/themes.c:238 ../app/tools/gimpimagemaptool.c:607 +#: ../app/vectors/gimpvectors-export.c:83 ../app/xcf/xcf.c:348 #, c-format msgid "Could not open '%s' for writing: %s" -msgstr "" +msgstr "Грешка при отваряне на \"%s\" за запис: %s" -#: app/config/gimpconfig-utils.c:572 app/config/gimpconfig-utils.c:595 -#: app/vectors/gimpvectors-export.c:96 +#: ../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\": %s" -#: app/config/gimpconfig-utils.c:583 +#: ../app/config/gimpconfig-utils.c:583 #, c-format msgid "Error while reading '%s': %s" msgstr "Грешка при четенето на \"%s\": %s" -#: app/config/gimpconfig-utils.c:625 +#: ../app/config/gimpconfig-utils.c:625 #, c-format msgid "" "There was an error parsing your '%s' file. Default values will be used. A " "backup of your configuration has been created at '%s'." msgstr "" -#: app/config/gimpconfigwriter.c:130 +#: ../app/config/gimpconfigwriter.c:130 #, fuzzy, c-format msgid "Could not create temporary file for '%s': %s" msgstr "Грешка при създаване на папката \"%s\": %s" -#: app/config/gimpconfigwriter.c:617 +#: ../app/config/gimpconfigwriter.c:617 #, c-format msgid "" "Error writing to temporary file for '%s': %s\n" "The original file has not been touched." msgstr "" -#: app/config/gimpconfigwriter.c:625 +#: ../app/config/gimpconfigwriter.c:625 #, c-format msgid "" "Error writing to temporary file for '%s': %s\n" "No file has been created." msgstr "" -#: app/config/gimpconfigwriter.c:636 +#: ../app/config/gimpconfigwriter.c:636 #, fuzzy, c-format msgid "Error writing to '%s': %s" msgstr "" "Грешка при записване на файла \"%s\":\n" "%s" -#: app/config/gimpconfigwriter.c:654 +#: ../app/config/gimpconfigwriter.c:654 #, fuzzy, c-format msgid "Could not create '%s': %s" msgstr "Грешка при създаване на папката \"%s\": %s" -#: app/config/gimprc.c:335 app/config/gimprc.c:348 +#: ../app/config/gimprc.c:335 ../app/config/gimprc.c:348 #, c-format msgid "Parsing '%s'\n" msgstr "" -#: app/config/gimprc.c:595 +#: ../app/config/gimprc.c:595 #, c-format msgid "Saving '%s'\n" msgstr "Запазване на '%s'\n" @@ -3318,52 +3338,52 @@ #. * (the preferences dialog mainly) and only those that are should #. * be marked for translation. #. -#: app/config/gimprc-blurbs.h:13 +#: ../app/config/gimprc-blurbs.h:13 msgid "" "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" "\"." msgstr "" -#: app/config/gimprc-blurbs.h:23 +#: ../app/config/gimprc-blurbs.h:23 msgid "Specifies how the area around the image should be drawn." msgstr "" -#: app/config/gimprc-blurbs.h:26 +#: ../app/config/gimprc-blurbs.h:26 msgid "" "Sets the canvas padding color used if the padding mode is set to custom " "color." msgstr "" -#: app/config/gimprc-blurbs.h:30 +#: ../app/config/gimprc-blurbs.h:30 msgid "Ask for confirmation before closing an image without saving." msgstr "" -#: app/config/gimprc-blurbs.h:33 +#: ../app/config/gimprc-blurbs.h:33 msgid "Sets the pixel format of cursors the GIMP will use." msgstr "" -#: app/config/gimprc-blurbs.h:36 +#: ../app/config/gimprc-blurbs.h:36 msgid "Sets the mode of cursor the GIMP will use." msgstr "" -#: app/config/gimprc-blurbs.h:39 +#: ../app/config/gimprc-blurbs.h:39 msgid "" "Context-dependent cursors are cool. They are enabled by default. However, " "they require overhead that you may want to do without." msgstr "" -#: app/config/gimprc-blurbs.h:47 +#: ../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 "" -#: app/config/gimprc-blurbs.h:73 +#: ../app/config/gimprc-blurbs.h:73 msgid "This is the distance in pixels where Guide and Grid snapping activates." msgstr "" -#: app/config/gimprc-blurbs.h:77 +#: ../app/config/gimprc-blurbs.h:77 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 " @@ -3372,116 +3392,120 @@ "the default threshold." msgstr "" -#: app/config/gimprc-blurbs.h:90 +#: ../app/config/gimprc-blurbs.h:90 msgid "" "The window type hint that is set on dock windows. This may affect the way " "your window manager decorates and handles dock windows." msgstr "" -#: app/config/gimprc-blurbs.h:121 +#: ../app/config/gimprc-blurbs.h:121 msgid "When enabled, the selected brush will be used for all tools." msgstr "" -#: app/config/gimprc-blurbs.h:127 +#: ../app/config/gimprc-blurbs.h:127 msgid "When enabled, the selected gradient will be used for all tools." msgstr "" -#: app/config/gimprc-blurbs.h:130 +#: ../app/config/gimprc-blurbs.h:130 msgid "When enabled, the selected pattern will be used for all tools." msgstr "" -#: app/config/gimprc-blurbs.h:146 +#: ../app/config/gimprc-blurbs.h:146 msgid "Sets the browser used by the help system." msgstr "Задаване на четец за помощта." -#: app/config/gimprc-blurbs.h:154 +#: ../app/config/gimprc-blurbs.h:154 msgid "Sets the text to appear in image window status bars." msgstr "" +"Определя текста, който ще се появява в ивицата за състояние на прозорците с " +"изображения." -#: app/config/gimprc-blurbs.h:157 +#: ../app/config/gimprc-blurbs.h:157 msgid "Sets the text to appear in image window titles." msgstr "" +"Определя текста, който ще се появява в заглавията на прозорците с " +"изображения." -#: app/config/gimprc-blurbs.h:160 +#: ../app/config/gimprc-blurbs.h:160 msgid "When enabled, the GIMP will use a different info window per image view." msgstr "" -#: app/config/gimprc-blurbs.h:163 +#: ../app/config/gimprc-blurbs.h:163 msgid "" "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." msgstr "" -#: app/config/gimprc-blurbs.h:167 +#: ../app/config/gimprc-blurbs.h:167 msgid "" "Install a private colormap; might be useful on 8-bit (256 colors) displays." msgstr "" -#: app/config/gimprc-blurbs.h:170 +#: ../app/config/gimprc-blurbs.h:170 msgid "" "Sets the level of interpolation used for scaling and other transformations." msgstr "" -#: app/config/gimprc-blurbs.h:174 +#: ../app/config/gimprc-blurbs.h:174 msgid "How many recently opened image filenames to keep on the File menu." msgstr "" -#: app/config/gimprc-blurbs.h:177 +#: ../app/config/gimprc-blurbs.h:177 msgid "" "Speed of marching ants in the selection outline. This value is in " "milliseconds (less time indicates faster marching)." msgstr "" -#: app/config/gimprc-blurbs.h:181 +#: ../app/config/gimprc-blurbs.h:181 msgid "" "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 "" -#: app/config/gimprc-blurbs.h:185 +#: ../app/config/gimprc-blurbs.h:185 msgid "When enabled, GIMP will show mnemonics in menus." msgstr "" -#: app/config/gimprc-blurbs.h:188 +#: ../app/config/gimprc-blurbs.h:188 msgid "" "Generally only a concern for 8-bit displays, this sets the minimum number of " "system colors allocated for the GIMP." msgstr "" -#: app/config/gimprc-blurbs.h:199 +#: ../app/config/gimprc-blurbs.h:199 msgid "" "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." msgstr "" -#: app/config/gimprc-blurbs.h:204 +#: ../app/config/gimprc-blurbs.h:204 msgid "" "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." msgstr "" -#: app/config/gimprc-blurbs.h:209 +#: ../app/config/gimprc-blurbs.h:209 msgid "" "If 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." msgstr "" -#: app/config/gimprc-blurbs.h:214 +#: ../app/config/gimprc-blurbs.h:214 msgid "" "Sets the size of the navigation preview available in the lower right corner " "of the image window." msgstr "" -#: app/config/gimprc-blurbs.h:218 +#: ../app/config/gimprc-blurbs.h:218 msgid "" "On multiprocessor machines, if GIMP has been compiled with --enable-mp this " "sets how many processors GIMP should use simultaneously." msgstr "" -#: app/config/gimprc-blurbs.h:232 +#: ../app/config/gimprc-blurbs.h:232 msgid "" "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 " @@ -3490,127 +3514,129 @@ "painting." msgstr "" -#: app/config/gimprc-blurbs.h:245 +#: ../app/config/gimprc-blurbs.h:245 msgid "" "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." msgstr "" -#: app/config/gimprc-blurbs.h:250 +#: ../app/config/gimprc-blurbs.h:250 msgid "" "Sets the preview size used for layers and channel previews in newly created " "dialogs." msgstr "" -#: app/config/gimprc-blurbs.h:254 +#: ../app/config/gimprc-blurbs.h:254 msgid "" "When enabled, the image window will automatically resize itself, whenever " "the physical image size changes." msgstr "" -#: app/config/gimprc-blurbs.h:258 +#: ../app/config/gimprc-blurbs.h:258 msgid "" "When enabled, the image window will automatically resize itself, when " "zooming into and out of images." msgstr "" -#: app/config/gimprc-blurbs.h:262 +#: ../app/config/gimprc-blurbs.h:262 msgid "Let GIMP try to restore your last saved session on each startup." msgstr "Възстановяване на последната ви сесия в GIMP при зареждане." -#: app/config/gimprc-blurbs.h:265 +#: ../app/config/gimprc-blurbs.h:265 msgid "" "Remember the current tool, pattern, color, and brush across GIMP sessions." msgstr "" -#: app/config/gimprc-blurbs.h:269 +#: ../app/config/gimprc-blurbs.h:269 msgid "Save the positions and sizes of the main dialogs when the GIMP exits." msgstr "" +"Запазване разположението и размерите на основните прозорци при спиране на " +"GIMP." -#: app/config/gimprc-blurbs.h:275 +#: ../app/config/gimprc-blurbs.h:275 msgid "" "When enabled, all paint tools will show a preview of the current brush's " "outline." msgstr "" -#: app/config/gimprc-blurbs.h:279 +#: ../app/config/gimprc-blurbs.h:279 msgid "" "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." msgstr "" -#: app/config/gimprc-blurbs.h:284 +#: ../app/config/gimprc-blurbs.h:284 msgid "" "When enabled, the cursor will be shown over the image while using a paint " "tool." msgstr "" -#: app/config/gimprc-blurbs.h:288 +#: ../app/config/gimprc-blurbs.h:288 msgid "" "When enabled, the menubar is visible by default. This can also be toggled " "with the \"View->Show Menubar\" command." msgstr "" -#: app/config/gimprc-blurbs.h:292 +#: ../app/config/gimprc-blurbs.h:292 msgid "" "When enabled, the rulers are visible by default. This can also be toggled " "with the \"View->Show Rulers\" command." msgstr "" -#: app/config/gimprc-blurbs.h:296 +#: ../app/config/gimprc-blurbs.h:296 msgid "" "When enabled, the scrollbars are visible by default. This can also be " "toggled with the \"View->Show Scrollbars\" command." msgstr "" -#: app/config/gimprc-blurbs.h:300 +#: ../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 "" -#: app/config/gimprc-blurbs.h:304 +#: ../app/config/gimprc-blurbs.h:304 msgid "" "When enabled, the selection is visible by default. This can also be toggled " "with the \"View->Show Selection\" command." msgstr "" -#: app/config/gimprc-blurbs.h:308 +#: ../app/config/gimprc-blurbs.h:308 msgid "" "When enabled, the layer boundary is visible by default. This can also be " "toggled with the \"View->Show Layer Boundary\" command." msgstr "" -#: app/config/gimprc-blurbs.h:312 +#: ../app/config/gimprc-blurbs.h:312 msgid "" "When enabled, the guides are visible by default. This can also be toggled " "with the \"View->Show Guides\" command." msgstr "" -#: app/config/gimprc-blurbs.h:316 +#: ../app/config/gimprc-blurbs.h:316 msgid "" "When enabled, the grid is visible by default. This can also be toggled with " "the \"View->Show Grid\" command." msgstr "" -#: app/config/gimprc-blurbs.h:320 +#: ../app/config/gimprc-blurbs.h:320 msgid "Enable to display a handy GIMP tip on startup." msgstr "" -#: app/config/gimprc-blurbs.h:323 +#: ../app/config/gimprc-blurbs.h:323 msgid "Enable to display tooltips." -msgstr "" +msgstr "Включване показването на подсказки." -#: app/config/gimprc-blurbs.h:326 +#: ../app/config/gimprc-blurbs.h:326 msgid "" "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." msgstr "" -#: app/config/gimprc-blurbs.h:331 +#: ../app/config/gimprc-blurbs.h:331 msgid "" "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 " @@ -3620,25 +3646,25 @@ "reasons, it may be desirable to put your swap file in \"/tmp\"." msgstr "" -#: app/config/gimprc-blurbs.h:340 +#: ../app/config/gimprc-blurbs.h:340 msgid "When enabled, menus can be torn off." msgstr "" -#: app/config/gimprc-blurbs.h:343 +#: ../app/config/gimprc-blurbs.h:343 msgid "" "When enabled, you can change keyboard shortcuts for menu items by hitting a " "key combination while the menu item is highlighted." msgstr "" -#: app/config/gimprc-blurbs.h:347 +#: ../app/config/gimprc-blurbs.h:347 msgid "Save changed keyboard shortcuts when the GIMP exits." msgstr "" -#: app/config/gimprc-blurbs.h:350 +#: ../app/config/gimprc-blurbs.h:350 msgid "Restore saved keyboard shortcuts on each GIMP startup." msgstr "" -#: app/config/gimprc-blurbs.h:353 +#: ../app/config/gimprc-blurbs.h:353 msgid "" "Sets the temporary storage directory. Files will appear here during the " "course of running the GIMP. Most files will disappear when the GIMP exits, " @@ -3646,19 +3672,22 @@ "one that is shared by other users." msgstr "" -#: app/config/gimprc-blurbs.h:365 +#: ../app/config/gimprc-blurbs.h:365 msgid "" "Sets the size of the thumbnail shown in the Open dialog. Note that GIMP can " "not create thumbnails if layer previews are disabled." msgstr "" +"Определя размера на прегледите в прозореца за отваряне на изображение. " +"Забележете, че GIMP не може да създаде прегледите, ако прегледите на " +"слоевете са забранени." -#: app/config/gimprc-blurbs.h:369 +#: ../app/config/gimprc-blurbs.h:369 msgid "" "The thumbnail in the Open dialog will be automatically updated if the file " "being previewed is smaller than the size set here." msgstr "" -#: app/config/gimprc-blurbs.h:373 +#: ../app/config/gimprc-blurbs.h:373 msgid "" "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 " @@ -3666,48 +3695,48 @@ "smaller cache size causes the GIMP to use more swap space and less memory." msgstr "" -#: app/config/gimprc-blurbs.h:384 +#: ../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 "" -#: app/config/gimprc-blurbs.h:388 +#: ../app/config/gimprc-blurbs.h:388 msgid "Sets the manner in which transparency is displayed in images." msgstr "" -#: app/config/gimprc-blurbs.h:391 +#: ../app/config/gimprc-blurbs.h:391 msgid "Sets the size of the checkerboard used to display transparency." msgstr "" -#: app/config/gimprc-blurbs.h:394 +#: ../app/config/gimprc-blurbs.h:394 msgid "" "When enabled, the GIMP will not save if the image is unchanged since opening " "it." msgstr "" -#: app/config/gimprc-blurbs.h:398 +#: ../app/config/gimprc-blurbs.h:398 msgid "" "Sets the minimal number of operations that can be undone. More undo levels " "are kept available until the undo-size limit is reached." msgstr "" -#: app/config/gimprc-blurbs.h:402 +#: ../app/config/gimprc-blurbs.h:402 msgid "" "Sets 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." msgstr "" -#: app/config/gimprc-blurbs.h:407 +#: ../app/config/gimprc-blurbs.h:407 msgid "Sets the size of the previews in the Undo History." -msgstr "" +msgstr "Определя размера на прегледите в историята на промените." -#: app/config/gimprc-blurbs.h:410 +#: ../app/config/gimprc-blurbs.h:410 msgid "When enabled, pressing F1 will open the help browser." msgstr "Ако е зададено, при натискане на F1 ще се отваря четеца за помощта." -#: app/config/gimprc-blurbs.h:413 +#: ../app/config/gimprc-blurbs.h:413 #, c-format msgid "" "Sets the external web browser to be used. This can be an absolute path or " @@ -3716,897 +3745,901 @@ "appended to the command with a space separating the two." msgstr "" -#: app/config/gimpscanner.c:220 +#: ../app/config/gimpscanner.c:220 #, fuzzy msgid "invalid UTF-8 string" -msgstr "Грешен UTF-8 низ в XCFфайла" +msgstr "(грешен уникод низ)" -#: app/config/gimpscanner.c:516 +#: ../app/config/gimpscanner.c:516 #, fuzzy, c-format msgid "Error while parsing '%s' in line %d: %s" msgstr "Грешка при записването на \"%s\": %s" -#: app/core/core-enums.c:27 +#: ../app/core/core-enums.c:27 msgid "_White (full opacity)" msgstr "" -#: app/core/core-enums.c:28 +#: ../app/core/core-enums.c:28 #, fuzzy msgid "_Black (full transparency)" msgstr "Запълване с прозрачност" -#: app/core/core-enums.c:29 +#: ../app/core/core-enums.c:29 msgid "Layer's _alpha channel" msgstr "" -#: app/core/core-enums.c:30 +#: ../app/core/core-enums.c:30 msgid "_Transfer layer's alpha channel" msgstr "" -#: app/core/core-enums.c:31 +#: ../app/core/core-enums.c:31 #, fuzzy msgid "_Selection" msgstr "_Избиране" -#: app/core/core-enums.c:32 +#: ../app/core/core-enums.c:32 msgid "_Grayscale copy of layer" msgstr "" -#: app/core/core-enums.c:61 app/core/gimp-gradients.c:70 +#: ../app/core/core-enums.c:61 ../app/core/gimp-gradients.c:70 msgid "FG to BG (RGB)" msgstr "" -#: app/core/core-enums.c:62 +#: ../app/core/core-enums.c:62 msgid "FG to BG (HSV)" msgstr "" -#: app/core/core-enums.c:63 +#: ../app/core/core-enums.c:63 #, fuzzy msgid "FG to transparent" msgstr "Запълване на прозрачните области" -#: app/core/core-enums.c:64 +#: ../app/core/core-enums.c:64 #, fuzzy msgid "Custom gradient" msgstr "Редактиране на преливка" -#: app/core/core-enums.c:92 +#: ../app/core/core-enums.c:92 msgid "FG color fill" msgstr "" -#: app/core/core-enums.c:93 +#: ../app/core/core-enums.c:93 msgid "BG color fill" msgstr "" -#: app/core/core-enums.c:94 +#: ../app/core/core-enums.c:94 #, fuzzy msgid "Pattern fill" msgstr "Файл на _палитра" -#: app/core/core-enums.c:123 +#: ../app/core/core-enums.c:123 #, fuzzy msgid "Add to the current selection" msgstr "Преместване на текущия слой" -#: app/core/core-enums.c:124 +#: ../app/core/core-enums.c:124 +#, fuzzy msgid "Subtract from the current selection" -msgstr "" +msgstr "Завъртане на слоя или избраното" -#: app/core/core-enums.c:125 +#: ../app/core/core-enums.c:125 #, fuzzy msgid "Replace the current selection" -msgstr "Преместване на текущия слой" +msgstr "Завъртане на слоя или избраното" -#: app/core/core-enums.c:126 +#: ../app/core/core-enums.c:126 +#, fuzzy msgid "Intersect with the current selection" -msgstr "" +msgstr "Промяна перспективата на слоя или избраното" -#: app/core/core-enums.c:160 +#: ../app/core/core-enums.c:160 msgid "Gray" msgstr "Сиво" -#: app/core/core-enums.c:161 +#: ../app/core/core-enums.c:161 msgid "Indexed" msgstr "" -#: app/core/core-enums.c:219 app/core/core-enums.c:334 -#: app/core/core-enums.c:766 app/tools/gimptransformoptions.c:457 +#: ../app/core/core-enums.c:219 ../app/core/core-enums.c:334 +#: ../app/core/core-enums.c:766 ../app/tools/gimptransformoptions.c:457 msgid "None" msgstr "" -#: app/core/core-enums.c:220 +#: ../app/core/core-enums.c:220 msgid "Floyd-Steinberg (normal)" msgstr "" -#: app/core/core-enums.c:221 +#: ../app/core/core-enums.c:221 msgid "Floyd-Steinberg (reduced color bleeding)" msgstr "" -#: app/core/core-enums.c:222 +#: ../app/core/core-enums.c:222 msgid "Positioned" msgstr "" -#: app/core/core-enums.c:251 +#: ../app/core/core-enums.c:251 msgid "Generate optimum palette" msgstr "" -#: app/core/core-enums.c:252 +#: ../app/core/core-enums.c:252 msgid "Use web-optimized palette" msgstr "" -#: app/core/core-enums.c:253 +#: ../app/core/core-enums.c:253 msgid "Use black and white (1-bit) palette" msgstr "Използване на черно-бяла (еднобитова) палитра" -#: app/core/core-enums.c:254 +#: ../app/core/core-enums.c:254 msgid "Use custom palette" msgstr "" -#: app/core/core-enums.c:329 +#: ../app/core/core-enums.c:329 msgid "Foreground color" msgstr "" -#: app/core/core-enums.c:330 +#: ../app/core/core-enums.c:330 msgid "Background color" msgstr "Цвят на фона" -#: app/core/core-enums.c:331 +#: ../app/core/core-enums.c:331 msgid "White" msgstr "Бял цвят" #. Transparency -#: app/core/core-enums.c:332 app/dialogs/preferences-dialog.c:1918 +#: ../app/core/core-enums.c:332 ../app/dialogs/preferences-dialog.c:1918 msgid "Transparency" msgstr "Прозрачност" -#: app/core/core-enums.c:333 app/core/core-enums.c:470 -#: app/pdb/internal_procs.c:179 +#: ../app/core/core-enums.c:333 ../app/core/core-enums.c:470 +#: ../app/pdb/internal_procs.c:179 msgid "Pattern" msgstr "" -#: app/core/core-enums.c:371 +#: ../app/core/core-enums.c:371 msgid "Bi-linear" msgstr "" -#: app/core/core-enums.c:372 +#: ../app/core/core-enums.c:372 #, fuzzy msgid "Radial" msgstr "_Радиус" -#: app/core/core-enums.c:373 app/core/core-enums.c:530 -#: app/core/core-enums.c:635 +#: ../app/core/core-enums.c:373 ../app/core/core-enums.c:530 +#: ../app/core/core-enums.c:635 msgid "Square" msgstr "" -#: app/core/core-enums.c:374 +#: ../app/core/core-enums.c:374 msgid "Conical (sym)" msgstr "" -#: app/core/core-enums.c:375 +#: ../app/core/core-enums.c:375 msgid "Conical (asym)" msgstr "" -#: app/core/core-enums.c:376 +#: ../app/core/core-enums.c:376 msgid "Shaped (angular)" msgstr "" -#: app/core/core-enums.c:377 +#: ../app/core/core-enums.c:377 msgid "Shaped (spherical)" msgstr "" -#: app/core/core-enums.c:378 +#: ../app/core/core-enums.c:378 msgid "Shaped (dimpled)" msgstr "" -#: app/core/core-enums.c:379 +#: ../app/core/core-enums.c:379 msgid "Spiral (cw)" msgstr "" -#: app/core/core-enums.c:380 +#: ../app/core/core-enums.c:380 msgid "Spiral (ccw)" msgstr "" -#: app/core/core-enums.c:410 +#: ../app/core/core-enums.c:410 msgid "Intersections (dots)" msgstr "" -#: app/core/core-enums.c:411 +#: ../app/core/core-enums.c:411 msgid "Intersections (crosshairs)" msgstr "" -#: app/core/core-enums.c:412 +#: ../app/core/core-enums.c:412 msgid "Dashed" msgstr "Пунктирани" -#: app/core/core-enums.c:413 +#: ../app/core/core-enums.c:413 msgid "Double dashed" msgstr "Двойно пунктирани" -#: app/core/core-enums.c:414 app/core/core-enums.c:469 +#: ../app/core/core-enums.c:414 ../app/core/core-enums.c:469 msgid "Solid" msgstr "Плътни" -#: app/core/core-enums.c:441 +#: ../app/core/core-enums.c:441 msgid "Stroke line" msgstr "" -#: app/core/core-enums.c:442 +#: ../app/core/core-enums.c:442 msgid "Stroke with a paint tool" msgstr "" -#: app/core/core-enums.c:498 +#: ../app/core/core-enums.c:498 msgid "Miter" msgstr "" -#: app/core/core-enums.c:499 app/core/core-enums.c:529 +#: ../app/core/core-enums.c:499 ../app/core/core-enums.c:529 msgid "Round" msgstr "" -#: app/core/core-enums.c:500 +#: ../app/core/core-enums.c:500 msgid "Bevel" msgstr "" -#: app/core/core-enums.c:528 +#: ../app/core/core-enums.c:528 msgid "Butt" msgstr "" -#: app/core/core-enums.c:566 app/dialogs/preferences-dialog.c:1804 +#: ../app/core/core-enums.c:566 ../app/dialogs/preferences-dialog.c:1804 msgid "Custom" msgstr "" -#: app/core/core-enums.c:567 +#: ../app/core/core-enums.c:567 msgid "Line" msgstr "" -#: app/core/core-enums.c:568 +#: ../app/core/core-enums.c:568 msgid "Long dashes" msgstr "Дълги тирета" -#: app/core/core-enums.c:569 +#: ../app/core/core-enums.c:569 msgid "Medium dashes" msgstr "" -#: app/core/core-enums.c:570 +#: ../app/core/core-enums.c:570 msgid "Short dashes" msgstr "" -#: app/core/core-enums.c:571 +#: ../app/core/core-enums.c:571 msgid "Sparse dots" msgstr "" -#: app/core/core-enums.c:572 +#: ../app/core/core-enums.c:572 msgid "Normal dots" msgstr "" -#: app/core/core-enums.c:573 +#: ../app/core/core-enums.c:573 msgid "Dense dots" msgstr "" -#: app/core/core-enums.c:574 +#: ../app/core/core-enums.c:574 msgid "Stipples" msgstr "" -#: app/core/core-enums.c:575 +#: ../app/core/core-enums.c:575 msgid "Dash dot..." msgstr "" -#: app/core/core-enums.c:576 +#: ../app/core/core-enums.c:576 msgid "Dash dot dot..." msgstr "" -#: app/core/core-enums.c:604 +#: ../app/core/core-enums.c:604 msgid "Stock ID" msgstr "" -#: app/core/core-enums.c:605 +#: ../app/core/core-enums.c:605 msgid "Inline pixbuf" msgstr "" -#: app/core/core-enums.c:606 +#: ../app/core/core-enums.c:606 msgid "Image file" msgstr "Файл на изображението" -#: app/core/core-enums.c:634 +#: ../app/core/core-enums.c:634 msgid "Circle" msgstr "Кръг" -#: app/core/core-enums.c:636 +#: ../app/core/core-enums.c:636 msgid "Diamond" msgstr "" -#: app/core/core-enums.c:664 app/dialogs/preferences-dialog.c:1950 +#: ../app/core/core-enums.c:664 ../app/dialogs/preferences-dialog.c:1950 msgid "Horizontal" msgstr "" -#: app/core/core-enums.c:665 app/dialogs/preferences-dialog.c:1952 +#: ../app/core/core-enums.c:665 ../app/dialogs/preferences-dialog.c:1952 msgid "Vertical" msgstr "" -#: app/core/core-enums.c:666 +#: ../app/core/core-enums.c:666 msgid "Unknown" msgstr "" -#: app/core/core-enums.c:730 +#: ../app/core/core-enums.c:730 msgid "Tiny" -msgstr "" +msgstr "Миниатюрен" -#: app/core/core-enums.c:731 +#: ../app/core/core-enums.c:731 msgid "Very small" -msgstr "" +msgstr "Много малък" -#: app/core/core-enums.c:732 +#: ../app/core/core-enums.c:732 msgid "Small" -msgstr "" +msgstr "Малък" -#: app/core/core-enums.c:733 +#: ../app/core/core-enums.c:733 msgid "Medium" -msgstr "" +msgstr "Среден" -#: app/core/core-enums.c:734 +#: ../app/core/core-enums.c:734 msgid "Large" -msgstr "" +msgstr "Голям" -#: app/core/core-enums.c:735 +#: ../app/core/core-enums.c:735 msgid "Very large" -msgstr "" +msgstr "Много голям" -#: app/core/core-enums.c:736 +#: ../app/core/core-enums.c:736 msgid "Huge" -msgstr "" +msgstr "Грамаден" -#: app/core/core-enums.c:737 +#: ../app/core/core-enums.c:737 msgid "Enormous" -msgstr "" +msgstr "Огромен" -#: app/core/core-enums.c:738 +#: ../app/core/core-enums.c:738 msgid "Gigantic" -msgstr "" +msgstr "Гигантски" -#: app/core/core-enums.c:767 +#: ../app/core/core-enums.c:767 msgid "Sawtooth wave" msgstr "" -#: app/core/core-enums.c:768 +#: ../app/core/core-enums.c:768 msgid "Triangular wave" msgstr "" -#: app/core/core-enums.c:830 +#: ../app/core/core-enums.c:830 msgid "No thumbnails" msgstr "" -#: app/core/core-enums.c:831 +#: ../app/core/core-enums.c:831 msgid "Normal (128x128)" msgstr "" -#: app/core/core-enums.c:832 +#: ../app/core/core-enums.c:832 msgid "Large (256x256)" msgstr "" -#: app/core/core-enums.c:859 +#: ../app/core/core-enums.c:859 msgid "Forward (traditional)" msgstr "" -#: app/core/core-enums.c:860 +#: ../app/core/core-enums.c:860 msgid "Backward (corrective)" msgstr "" -#: app/core/core-enums.c:1029 +#: ../app/core/core-enums.c:1029 msgid "<>" msgstr "" -#: app/core/core-enums.c:1030 +#: ../app/core/core-enums.c:1030 msgid "Scale image" msgstr "" -#: app/core/core-enums.c:1031 +#: ../app/core/core-enums.c:1031 msgid "Resize image" msgstr "" -#: app/core/core-enums.c:1032 +#: ../app/core/core-enums.c:1032 msgid "Flip image" msgstr "Обръщане на изображението" -#: app/core/core-enums.c:1033 +#: ../app/core/core-enums.c:1033 msgid "Rotate image" msgstr "Завъртане на изображението" -#: app/core/core-enums.c:1034 +#: ../app/core/core-enums.c:1034 msgid "Crop image" msgstr "" -#: app/core/core-enums.c:1035 +#: ../app/core/core-enums.c:1035 msgid "Convert image" msgstr "Преобразуване на изображението" -#: app/core/core-enums.c:1036 +#: ../app/core/core-enums.c:1036 msgid "Merge layers" msgstr "Сливане на слоевете" -#: app/core/core-enums.c:1037 +#: ../app/core/core-enums.c:1037 msgid "Merge vectors" msgstr "" -#: app/core/core-enums.c:1038 app/core/gimpchannel.c:383 +#: ../app/core/core-enums.c:1038 ../app/core/gimpchannel.c:383 msgid "Quick Mask" msgstr "" -#: app/core/core-enums.c:1039 app/core/core-enums.c:1068 -#: app/core/gimpimage-grid.c:59 app/dialogs/grid-dialog.c:144 -#: app/tools/tools-enums.c:175 +#: ../app/core/core-enums.c:1039 ../app/core/core-enums.c:1068 +#: ../app/core/gimpimage-grid.c:59 ../app/dialogs/grid-dialog.c:144 +#: ../app/tools/tools-enums.c:175 msgid "Grid" msgstr "Мрежа" -#: app/core/core-enums.c:1040 app/core/core-enums.c:1069 +#: ../app/core/core-enums.c:1040 ../app/core/core-enums.c:1069 msgid "Guide" msgstr "" -#: app/core/core-enums.c:1042 app/core/core-enums.c:1072 +#: ../app/core/core-enums.c:1042 ../app/core/core-enums.c:1072 msgid "Drawable mod" msgstr "" -#: app/core/core-enums.c:1043 app/core/core-enums.c:1073 +#: ../app/core/core-enums.c:1043 ../app/core/core-enums.c:1073 msgid "Selection mask" msgstr "" -#: app/core/core-enums.c:1044 app/core/core-enums.c:1076 +#: ../app/core/core-enums.c:1044 ../app/core/core-enums.c:1076 msgid "Item visibility" msgstr "" -#: app/core/core-enums.c:1045 +#: ../app/core/core-enums.c:1045 msgid "Linked item" msgstr "" -#: app/core/core-enums.c:1046 +#: ../app/core/core-enums.c:1046 msgid "Item properties" msgstr "" -#: app/core/core-enums.c:1047 app/core/core-enums.c:1075 +#: ../app/core/core-enums.c:1047 ../app/core/core-enums.c:1075 msgid "Move item" msgstr "" -#: app/core/core-enums.c:1048 +#: ../app/core/core-enums.c:1048 msgid "Scale item" msgstr "" -#: app/core/core-enums.c:1049 +#: ../app/core/core-enums.c:1049 msgid "Resize item" msgstr "" -#: app/core/core-enums.c:1050 app/core/core-enums.c:1080 +#: ../app/core/core-enums.c:1050 ../app/core/core-enums.c:1080 msgid "Add layer mask" msgstr "" -#: app/core/core-enums.c:1051 +#: ../app/core/core-enums.c:1051 msgid "Apply layer mask" msgstr "" -#: app/core/core-enums.c:1052 +#: ../app/core/core-enums.c:1052 msgid "Floating selection to layer" msgstr "" -#: app/core/core-enums.c:1053 +#: ../app/core/core-enums.c:1053 msgid "Float selection" msgstr "" -#: app/core/core-enums.c:1054 +#: ../app/core/core-enums.c:1054 msgid "Anchor floating selection" msgstr "" -#: app/core/core-enums.c:1055 +#: ../app/core/core-enums.c:1055 msgid "Remove floating selection" msgstr "" -#: app/core/core-enums.c:1056 app/core/gimp-edit.c:267 +#: ../app/core/core-enums.c:1056 ../app/core/gimp-edit.c:267 msgid "Paste" msgstr "" -#: app/core/core-enums.c:1057 app/core/gimp-edit.c:418 +#: ../app/core/core-enums.c:1057 ../app/core/gimp-edit.c:418 msgid "Cut" msgstr "" -#: app/core/core-enums.c:1058 app/core/core-enums.c:1086 -#: app/tools/gimptexttool.c:142 app/widgets/widgets-enums.c:263 +#: ../app/core/core-enums.c:1058 ../app/core/core-enums.c:1086 +#: ../app/tools/gimptexttool.c:144 ../app/widgets/widgets-enums.c:263 msgid "Text" msgstr "Текст" -#: app/core/core-enums.c:1059 app/core/core-enums.c:1099 -#: app/core/gimpdrawable-transform.c:867 +#: ../app/core/core-enums.c:1059 ../app/core/core-enums.c:1099 +#: ../app/core/gimpdrawable-transform.c:867 msgid "Transform" msgstr "Преобразуване" -#: app/core/core-enums.c:1060 app/core/core-enums.c:1100 -#: app/paint/gimppaintcore.c:345 +#: ../app/core/core-enums.c:1060 ../app/core/core-enums.c:1100 +#: ../app/paint/gimppaintcore.c:345 msgid "Paint" msgstr "" -#: app/core/core-enums.c:1061 app/core/core-enums.c:1102 +#: ../app/core/core-enums.c:1061 ../app/core/core-enums.c:1102 msgid "Attach parasite" msgstr "" -#: app/core/core-enums.c:1062 app/core/core-enums.c:1103 +#: ../app/core/core-enums.c:1062 ../app/core/core-enums.c:1103 msgid "Remove parasite" msgstr "" -#: app/core/core-enums.c:1063 +#: ../app/core/core-enums.c:1063 msgid "Import paths" msgstr "" -#: app/core/core-enums.c:1064 app/pdb/drawable_cmds.c:1693 +#: ../app/core/core-enums.c:1064 ../app/pdb/drawable_cmds.c:1693 msgid "Plug-In" msgstr "Приставка" -#: app/core/core-enums.c:1065 +#: ../app/core/core-enums.c:1065 msgid "Image type" msgstr "" -#: app/core/core-enums.c:1066 +#: ../app/core/core-enums.c:1066 msgid "Image size" msgstr "Размер на изображението" -#: app/core/core-enums.c:1067 +#: ../app/core/core-enums.c:1067 msgid "Resolution change" msgstr "" -#: app/core/core-enums.c:1070 +#: ../app/core/core-enums.c:1070 msgid "Change indexed palette" msgstr "" -#: app/core/core-enums.c:1074 +#: ../app/core/core-enums.c:1074 msgid "Rename item" msgstr "Преименуване на обекта" -#: app/core/core-enums.c:1077 +#: ../app/core/core-enums.c:1077 msgid "Set item linked" msgstr "" -#: app/core/core-enums.c:1078 +#: ../app/core/core-enums.c:1078 msgid "New layer" msgstr "Нов слой" -#: app/core/core-enums.c:1081 +#: ../app/core/core-enums.c:1081 msgid "Delete layer mask" msgstr "" -#: app/core/core-enums.c:1082 +#: ../app/core/core-enums.c:1082 msgid "Reposition layer" msgstr "" -#: app/core/core-enums.c:1083 +#: ../app/core/core-enums.c:1083 msgid "Set layer mode" msgstr "" -#: app/core/core-enums.c:1084 +#: ../app/core/core-enums.c:1084 msgid "Set layer opacity" msgstr "" -#: app/core/core-enums.c:1085 +#: ../app/core/core-enums.c:1085 msgid "Set preserve trans" msgstr "" -#: app/core/core-enums.c:1087 +#: ../app/core/core-enums.c:1087 msgid "Text modified" msgstr "Текстът е променен" -#: app/core/core-enums.c:1088 +#: ../app/core/core-enums.c:1088 msgid "New channel" msgstr "" -#: app/core/core-enums.c:1090 +#: ../app/core/core-enums.c:1090 msgid "Reposition channel" msgstr "" -#: app/core/core-enums.c:1091 +#: ../app/core/core-enums.c:1091 msgid "Channel color" msgstr "" -#: app/core/core-enums.c:1092 +#: ../app/core/core-enums.c:1092 msgid "New vectors" msgstr "" -#: app/core/core-enums.c:1093 +#: ../app/core/core-enums.c:1093 msgid "Delete vectors" msgstr "" -#: app/core/core-enums.c:1094 +#: ../app/core/core-enums.c:1094 msgid "Vectors mod" msgstr "" -#: app/core/core-enums.c:1095 +#: ../app/core/core-enums.c:1095 msgid "Reposition vectors" msgstr "" -#: app/core/core-enums.c:1096 +#: ../app/core/core-enums.c:1096 msgid "FS to layer" msgstr "" -#: app/core/core-enums.c:1097 +#: ../app/core/core-enums.c:1097 msgid "FS rigor" msgstr "" -#: app/core/core-enums.c:1098 +#: ../app/core/core-enums.c:1098 msgid "FS relax" msgstr "" -#: app/core/core-enums.c:1101 app/paint/gimpink.c:102 -#: app/tools/gimpinktool.c:62 +#: ../app/core/core-enums.c:1101 ../app/paint/gimpink.c:102 +#: ../app/tools/gimpinktool.c:62 msgid "Ink" msgstr "" -#: app/core/core-enums.c:1104 +#: ../app/core/core-enums.c:1104 msgid "EEK: can't undo" msgstr "" -#: app/core/gimp-edit.c:109 app/core/gimpselection.c:668 +#: ../app/core/gimp-edit.c:109 ../app/core/gimpselection.c:668 msgid "Unable to cut or copy because the selected region is empty." msgstr "" -#: app/core/gimp-edit.c:195 app/core/gimp-edit.c:319 +#: ../app/core/gimp-edit.c:195 ../app/core/gimp-edit.c:319 msgid "Pasted Layer" msgstr "Вмъкнат слой" -#: app/core/gimp-edit.c:369 +#: ../app/core/gimp-edit.c:369 msgid "Fill with FG Color" msgstr "Запълване с цвета за рисуване" -#: app/core/gimp-edit.c:373 app/core/gimp-edit.c:394 +#: ../app/core/gimp-edit.c:373 ../app/core/gimp-edit.c:394 msgid "Fill with BG Color" msgstr "Запълване с фоновия цвят" -#: app/core/gimp-edit.c:377 +#: ../app/core/gimp-edit.c:377 msgid "Fill with White" msgstr "Запълване с бяло" -#: app/core/gimp-edit.c:381 +#: ../app/core/gimp-edit.c:381 msgid "Fill with Transparency" msgstr "Запълване с прозрачност" -#: app/core/gimp-edit.c:385 +#: ../app/core/gimp-edit.c:385 msgid "Fill with Pattern" msgstr "" -#: app/core/gimp-gradients.c:75 +#: ../app/core/gimp-gradients.c:75 msgid "FG to BG (HSV counter-clockwise)" msgstr "" -#: app/core/gimp-gradients.c:80 +#: ../app/core/gimp-gradients.c:80 msgid "FG to BG (HSV clockwise hue)" msgstr "" -#: app/core/gimp-gradients.c:85 +#: ../app/core/gimp-gradients.c:85 msgid "FG to Transparent" msgstr "" -#: app/core/gimp-gui.c:153 +#: ../app/core/gimp-gui.c:153 msgid "GIMP" msgstr "GIMP" #. register all internal procedures -#: app/core/gimp.c:638 +#: ../app/core/gimp.c:638 msgid "Procedural Database" msgstr "" -#: app/core/gimp.c:641 +#: ../app/core/gimp.c:641 msgid "Plug-In Environment" msgstr "" #. initialize the global parasite table -#: app/core/gimp.c:852 +#: ../app/core/gimp.c:852 msgid "Looking for data files" msgstr "Търсене на данни" -#: app/core/gimp.c:852 +#: ../app/core/gimp.c:852 msgid "Parasites" msgstr "" #. initialize the document history -#: app/core/gimp.c:876 +#: ../app/core/gimp.c:876 msgid "Documents" msgstr "Документи" #. initialize the module list -#: app/core/gimp.c:884 app/dialogs/preferences-dialog.c:2325 +#: ../app/core/gimp.c:884 ../app/dialogs/preferences-dialog.c:2325 msgid "Modules" msgstr "Модули" -#: app/core/gimpbrush.c:534 +#: ../app/core/gimpbrush.c:534 #, c-format msgid "Could not read %d bytes from '%s': %s" msgstr "" -#: app/core/gimpbrush.c:554 +#: ../app/core/gimpbrush.c:554 #, c-format msgid "Fatal parse error in brush file '%s': Width = 0." msgstr "" -#: app/core/gimpbrush.c:563 +#: ../app/core/gimpbrush.c:563 #, c-format msgid "Fatal parse error in brush file '%s': Height = 0." msgstr "" -#: app/core/gimpbrush.c:572 +#: ../app/core/gimpbrush.c:572 #, c-format msgid "Fatal parse error in brush file '%s': Bytes = 0." msgstr "" -#: app/core/gimpbrush.c:596 +#: ../app/core/gimpbrush.c:596 #, c-format msgid "Fatal parse error in brush file '%s': Unknown depth %d." msgstr "" -#: app/core/gimpbrush.c:609 +#: ../app/core/gimpbrush.c:609 #, c-format msgid "Fatal parse error in brush file '%s': Unknown version %d." msgstr "" -#: app/core/gimpbrush.c:625 app/core/gimpbrush.c:745 +#: ../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:633 app/core/gimpbrushgenerated.c:648 -#: app/core/gimpbrushpipe.c:354 +#: ../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:640 app/core/gimpcontext.c:1299 -#: app/core/gimpitem.c:475 app/core/gimppattern.c:400 -#: app/dialogs/template-options-dialog.c:80 app/tools/gimpvectortool.c:339 +#: ../app/core/gimpbrush.c:640 ../app/core/gimpcontext.c:1299 +#: ../app/core/gimpitem.c:475 ../app/core/gimppattern.c:400 +#: ../app/dialogs/template-options-dialog.c:80 +#: ../app/tools/gimpvectortool.c:339 msgid "Unnamed" msgstr "" -#: app/core/gimpbrush.c:734 +#: ../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 "" -#: app/core/gimpbrushgenerated.c:614 +#: ../app/core/gimpbrushgenerated.c:614 #, c-format msgid "Fatal parse error in brush file '%s': Not a GIMP brush file." msgstr "" -#: app/core/gimpbrushgenerated.c:630 +#: ../app/core/gimpbrushgenerated.c:630 #, c-format msgid "Fatal parse error in brush file '%s': Unknown GIMP brush version." msgstr "" -#: app/core/gimpbrushgenerated.c:669 +#: ../app/core/gimpbrushgenerated.c:669 #, c-format msgid "Fatal parse error in brush file '%s': Unknown GIMP brush shape." msgstr "" -#: app/core/gimpbrushgenerated.c:750 +#: ../app/core/gimpbrushgenerated.c:750 #, c-format msgid "Error while reading brush file '%s': %s" msgstr "" -#: app/core/gimpbrushgenerated.c:752 +#: ../app/core/gimpbrushgenerated.c:752 msgid "File is truncated" msgstr "" -#: app/core/gimpbrushpipe.c:369 app/core/gimpbrushpipe.c:389 -#: app/core/gimpbrushpipe.c:479 +#: ../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 "" -#: app/core/gimpchannel.c:280 app/pdb/internal_procs.c:95 +#: ../app/core/gimpchannel.c:280 ../app/pdb/internal_procs.c:95 msgid "Channel" msgstr "" -#: app/core/gimpchannel.c:281 +#: ../app/core/gimpchannel.c:281 msgid "Rename Channel" msgstr "" -#: app/core/gimpchannel.c:282 +#: ../app/core/gimpchannel.c:282 msgid "Move Channel" msgstr "" -#: app/core/gimpchannel.c:283 +#: ../app/core/gimpchannel.c:283 msgid "Scale Channel" msgstr "" -#: app/core/gimpchannel.c:284 +#: ../app/core/gimpchannel.c:284 msgid "Resize Channel" msgstr "" -#: app/core/gimpchannel.c:285 +#: ../app/core/gimpchannel.c:285 msgid "Flip Channel" msgstr "" -#: app/core/gimpchannel.c:286 +#: ../app/core/gimpchannel.c:286 msgid "Rotate Channel" msgstr "" -#: app/core/gimpchannel.c:287 app/core/gimpdrawable-transform.c:1121 +#: ../app/core/gimpchannel.c:287 ../app/core/gimpdrawable-transform.c:1121 msgid "Transform Channel" msgstr "" -#: app/core/gimpchannel.c:288 +#: ../app/core/gimpchannel.c:288 msgid "Stroke Channel" msgstr "" -#: app/core/gimpchannel.c:310 +#: ../app/core/gimpchannel.c:310 msgid "Feather Channel" msgstr "" -#: app/core/gimpchannel.c:311 +#: ../app/core/gimpchannel.c:311 msgid "Sharpen Channel" msgstr "" -#: app/core/gimpchannel.c:312 +#: ../app/core/gimpchannel.c:312 msgid "Clear Channel" msgstr "" -#: app/core/gimpchannel.c:313 +#: ../app/core/gimpchannel.c:313 msgid "Fill Channel" msgstr "" -#: app/core/gimpchannel.c:314 +#: ../app/core/gimpchannel.c:314 msgid "Invert Channel" msgstr "" -#: app/core/gimpchannel.c:315 +#: ../app/core/gimpchannel.c:315 msgid "Border Channel" msgstr "" -#: app/core/gimpchannel.c:316 +#: ../app/core/gimpchannel.c:316 msgid "Grow Channel" msgstr "" -#: app/core/gimpchannel.c:317 +#: ../app/core/gimpchannel.c:317 msgid "Shrink Channel" msgstr "" -#: app/core/gimpchannel.c:631 +#: ../app/core/gimpchannel.c:631 msgid "Cannot stroke empty channel." msgstr "" -#: app/core/gimpchannel.c:1527 +#: ../app/core/gimpchannel.c:1527 msgid "Set Channel Color" msgstr "" -#: app/core/gimpchannel.c:1575 +#: ../app/core/gimpchannel.c:1575 msgid "Set Channel Opacity" msgstr "" -#: app/core/gimpchannel.c:1644 app/core/gimpselection.c:563 +#: ../app/core/gimpchannel.c:1644 ../app/core/gimpselection.c:563 msgid "Selection Mask" msgstr "" -#: app/core/gimpchannel-select.c:56 app/tools/gimprectselecttool.c:96 +#: ../app/core/gimpchannel-select.c:56 ../app/tools/gimprectselecttool.c:96 msgid "Rect Select" msgstr "" -#: app/core/gimpchannel-select.c:107 app/tools/gimpellipseselecttool.c:71 +#: ../app/core/gimpchannel-select.c:107 +#: ../app/tools/gimpellipseselecttool.c:71 msgid "Ellipse Select" msgstr "" -#: app/core/gimpchannel-select.c:373 +#: ../app/core/gimpchannel-select.c:373 msgid "Alpha to Selection" msgstr "" -#: app/core/gimpchannel-select.c:414 +#: ../app/core/gimpchannel-select.c:414 #, c-format msgid "%s Channel to Selection" msgstr "" -#: app/core/gimpchannel-select.c:460 app/tools/gimpfuzzyselecttool.c:97 +#: ../app/core/gimpchannel-select.c:460 ../app/tools/gimpfuzzyselecttool.c:97 msgid "Fuzzy Select" msgstr "" -#: app/core/gimpchannel-select.c:505 +#: ../app/core/gimpchannel-select.c:505 msgid "Select by Color" msgstr "" -#: app/core/gimpdata.c:314 +#: ../app/core/gimpdata.c:314 #, c-format msgid "Could not delete '%s': %s" msgstr "" -#: app/core/gimpdatafactory.c:291 app/core/gimpdatafactory.c:511 +#: ../app/core/gimpdatafactory.c:291 ../app/core/gimpdatafactory.c:511 #, c-format msgid "" "Warning: Failed to save data:\n" @@ -4617,17 +4650,17 @@ "\n" "%s" -#: app/core/gimpdatafactory.c:411 app/core/gimpdatafactory.c:414 -#: app/core/gimpitem.c:272 app/core/gimpitem.c:275 +#: ../app/core/gimpdatafactory.c:411 ../app/core/gimpdatafactory.c:414 +#: ../app/core/gimpitem.c:272 ../app/core/gimpitem.c:275 msgid "copy" msgstr "" -#: app/core/gimpdatafactory.c:423 app/core/gimpitem.c:284 +#: ../app/core/gimpdatafactory.c:423 ../app/core/gimpitem.c:284 #, c-format msgid "%s copy" msgstr "" -#: app/core/gimpdatafactory.c:614 +#: ../app/core/gimpdatafactory.c:614 #, c-format msgid "" "Warning: Failed to load data:\n" @@ -4638,546 +4671,548 @@ "\n" "%s" -#: app/core/gimpdrawable-blend.c:238 app/tools/gimpblendtool.c:101 +#: ../app/core/gimpdrawable-blend.c:238 ../app/tools/gimpblendtool.c:101 msgid "Blend" msgstr "" -#: app/core/gimpdrawable-bucket-fill.c:85 app/paint/gimpclone.c:183 +#: ../app/core/gimpdrawable-bucket-fill.c:85 ../app/paint/gimpclone.c:183 msgid "No patterns available for this operation." msgstr "" -#: app/core/gimpdrawable-bucket-fill.c:272 app/tools/gimpbucketfilltool.c:91 +#: ../app/core/gimpdrawable-bucket-fill.c:272 +#: ../app/tools/gimpbucketfilltool.c:91 msgid "Bucket Fill" msgstr "Запълване" -#: app/core/gimpdrawable-desaturate.c:98 +#: ../app/core/gimpdrawable-desaturate.c:98 msgid "Desaturate" msgstr "" -#: app/core/gimpdrawable-equalize.c:80 +#: ../app/core/gimpdrawable-equalize.c:80 msgid "Equalize" msgstr "" -#: app/core/gimpdrawable-invert.c:61 +#: ../app/core/gimpdrawable-invert.c:61 msgid "Invert" msgstr "" -#: app/core/gimpdrawable-levels.c:112 app/core/gimpdrawable-levels.c:162 -#: app/tools/gimplevelstool.c:160 +#: ../app/core/gimpdrawable-levels.c:112 ../app/core/gimpdrawable-levels.c:162 +#: ../app/tools/gimplevelstool.c:160 msgid "Levels" msgstr "" -#: app/core/gimpdrawable-offset.c:316 +#: ../app/core/gimpdrawable-offset.c:316 msgid "Offset Drawable" msgstr "" -#: app/core/gimpdrawable-stroke.c:319 +#: ../app/core/gimpdrawable-stroke.c:319 msgid "Render Stroke" msgstr "" #. Start a transform undo group -#: app/core/gimpdrawable-transform.c:928 app/tools/gimpfliptool.c:82 +#: ../app/core/gimpdrawable-transform.c:928 ../app/tools/gimpfliptool.c:82 msgid "Flip" msgstr "Обръщане" #. Start a transform undo group -#: app/core/gimpdrawable-transform.c:1009 app/tools/gimprotatetool.c:97 +#: ../app/core/gimpdrawable-transform.c:1009 ../app/tools/gimprotatetool.c:97 msgid "Rotate" msgstr "Завъртане" -#: app/core/gimpdrawable-transform.c:1119 app/core/gimplayer.c:257 +#: ../app/core/gimpdrawable-transform.c:1119 ../app/core/gimplayer.c:257 msgid "Transform Layer" msgstr "" -#: app/core/gimpdrawable-transform.c:1134 +#: ../app/core/gimpdrawable-transform.c:1134 msgid "Transformation" msgstr "" -#: app/core/gimpenvirontable.c:285 +#: ../app/core/gimpenvirontable.c:285 #, c-format msgid "Empty variable name in environment file %s" msgstr "" -#: app/core/gimpenvirontable.c:303 +#: ../app/core/gimpenvirontable.c:303 #, c-format msgid "Illegal variable name in environment file %s: %s" msgstr "" -#: app/core/gimpgradient-load.c:72 +#: ../app/core/gimpgradient-load.c:72 #, c-format msgid "Fatal parse error in gradient file '%s': Not a GIMP gradient file." msgstr "" -#: app/core/gimpgradient-load.c:87 +#: ../app/core/gimpgradient-load.c:87 #, c-format msgid "Invalid UTF-8 string in gradient file '%s'." msgstr "" -#: app/core/gimpgradient-load.c:115 +#: ../app/core/gimpgradient-load.c:115 #, c-format msgid "Fatal parse error in gradient file '%s': File is corrupt." msgstr "" -#: app/core/gimpgradient-load.c:172 +#: ../app/core/gimpgradient-load.c:172 #, c-format msgid "Corrupt segment %d in gradient file '%s'." msgstr "" -#: app/core/gimpgradient-load.c:183 app/core/gimpgradient-load.c:197 +#: ../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 "" -#: app/core/gimpgradient-load.c:281 +#: ../app/core/gimpgradient-load.c:281 #, c-format msgid "No linear gradients found in '%s'" msgstr "" -#: app/core/gimpgradient-load.c:291 +#: ../app/core/gimpgradient-load.c:291 #, c-format msgid "Failed to import gradients from '%s': %s" msgstr "" -#: app/core/gimpgrid.c:128 +#: ../app/core/gimpgrid.c:128 msgid "Line style used for the grid." msgstr "Вид на чертите, изграждащи мрежата." -#: app/core/gimpgrid.c:134 +#: ../app/core/gimpgrid.c:134 msgid "The foreground color of the grid." msgstr "Цвят на чертите, изграждащи мрежата." -#: app/core/gimpgrid.c:139 +#: ../app/core/gimpgrid.c:139 msgid "" "The background color of the grid; only used in double dashed line style." msgstr "" "Фонов цвят на мрежата; използва се само при мрежа с двойно пунктирани линии." -#: app/core/gimpgrid.c:145 +#: ../app/core/gimpgrid.c:145 msgid "Horizontal spacing of grid lines." msgstr "Хоризонтално отстояние на чертите на мрежата." -#: app/core/gimpgrid.c:150 +#: ../app/core/gimpgrid.c:150 msgid "Vertical spacing of grid lines." msgstr "Вертикално отстояние на чертите на мрежата." -#: app/core/gimpgrid.c:159 +#: ../app/core/gimpgrid.c:159 msgid "" "Horizontal offset of the first grid line; this may be a negative number." msgstr "" "Хоризонтално отстояние на първата черта на мрежата. Може да бъде отрицателно " "число." -#: app/core/gimpgrid.c:166 +#: ../app/core/gimpgrid.c:166 msgid "Vertical offset of the first grid line; this may be a negative number." msgstr "" "Вертикално отстояние на първата черта на мрежата. Може да бъде отрицателно " "число." -#: app/core/gimpimage-colormap.c:63 +#: ../app/core/gimpimage-colormap.c:63 msgid "Set Colormap" msgstr "" -#: app/core/gimpimage-colormap.c:115 +#: ../app/core/gimpimage-colormap.c:115 msgid "Change Colormap entry" msgstr "" -#: app/core/gimpimage-colormap.c:135 +#: ../app/core/gimpimage-colormap.c:135 msgid "Add Color to Colormap" msgstr "" -#: app/core/gimpimage-convert.c:789 +#: ../app/core/gimpimage-convert.c:789 msgid "Convert Image to RGB" msgstr "" -#: app/core/gimpimage-convert.c:793 +#: ../app/core/gimpimage-convert.c:793 msgid "Convert Image to Grayscale" msgstr "" -#: app/core/gimpimage-convert.c:797 +#: ../app/core/gimpimage-convert.c:797 msgid "Convert Image to Indexed" msgstr "" -#: app/core/gimpimage-convert.c:879 +#: ../app/core/gimpimage-convert.c:879 msgid "Converting to indexed (stage 2)..." msgstr "" -#: app/core/gimpimage-convert.c:923 +#: ../app/core/gimpimage-convert.c:923 msgid "Converting to indexed (stage 3)..." msgstr "" -#: app/core/gimpimage-crop.c:123 +#: ../app/core/gimpimage-crop.c:123 msgid "Crop Image" msgstr "" -#: app/core/gimpimage-crop.c:126 app/core/gimpimage-resize.c:67 +#: ../app/core/gimpimage-crop.c:126 ../app/core/gimpimage-resize.c:67 msgid "Resize Image" msgstr "" -#: app/core/gimpimage-guides.c:53 +#: ../app/core/gimpimage-guides.c:53 msgid "Add Horizontal Guide" msgstr "" -#: app/core/gimpimage-guides.c:80 +#: ../app/core/gimpimage-guides.c:80 msgid "Add Vertical Guide" msgstr "" -#: app/core/gimpimage-guides.c:143 app/tools/gimpmovetool.c:570 +#: ../app/core/gimpimage-guides.c:143 ../app/tools/gimpmovetool.c:570 msgid "Remove Guide" msgstr "" -#: app/core/gimpimage-guides.c:167 +#: ../app/core/gimpimage-guides.c:167 msgid "Move Guide" msgstr "" -#: app/core/gimpimage-merge.c:91 +#: ../app/core/gimpimage-merge.c:91 msgid "Merge Visible Layers" msgstr "Сливане на видимите слоеве" -#: app/core/gimpimage-merge.c:107 +#: ../app/core/gimpimage-merge.c:107 msgid "Not enough visible layers for a merge. There must be at least two." msgstr "Няма достатъчно видими слоеве за сливане. Трябва да са поне два." -#: app/core/gimpimage-merge.c:142 +#: ../app/core/gimpimage-merge.c:142 msgid "Flatten Image" msgstr "" -#: app/core/gimpimage-merge.c:193 +#: ../app/core/gimpimage-merge.c:193 msgid "Merge Down" msgstr "" -#: app/core/gimpimage-merge.c:202 +#: ../app/core/gimpimage-merge.c:202 msgid "There are not enough visible layers for a merge down." msgstr "" -#: app/core/gimpimage-merge.c:543 +#: ../app/core/gimpimage-merge.c:543 msgid "Merge Visible Paths" msgstr "" -#: app/core/gimpimage-merge.c:580 +#: ../app/core/gimpimage-merge.c:580 msgid "Not enough visible paths for a merge. There must be at least two." msgstr "" -#: app/core/gimpimage-qmask.c:67 +#: ../app/core/gimpimage-qmask.c:67 msgid "Enable Quick Mask" msgstr "" -#: app/core/gimpimage-qmask.c:117 +#: ../app/core/gimpimage-qmask.c:117 msgid "Disable Quick Mask" msgstr "" -#: app/core/gimpimage-undo-push.c:3055 +#: ../app/core/gimpimage-undo-push.c:3055 #, c-format msgid "Can't undo %s" msgstr "" -#: app/core/gimpimage.c:1357 +#: ../app/core/gimpimage.c:1357 msgid "Change Image Resolution" msgstr "" -#: app/core/gimpimage.c:1397 +#: ../app/core/gimpimage.c:1397 msgid "Change Image Unit" msgstr "" -#: app/core/gimpimage.c:2177 +#: ../app/core/gimpimage.c:2177 msgid "Attach Parasite to Image" msgstr "" -#: app/core/gimpimage.c:2210 +#: ../app/core/gimpimage.c:2210 msgid "Remove Parasite from Image" msgstr "" -#: app/core/gimpimage.c:2678 +#: ../app/core/gimpimage.c:2678 msgid "Add Layer" msgstr "Добавяне на слой" -#: app/core/gimpimage.c:2745 +#: ../app/core/gimpimage.c:2745 msgid "Remove Layer" msgstr "Премахване на слой" -#: app/core/gimpimage.c:2816 +#: ../app/core/gimpimage.c:2816 msgid "Layer cannot be raised higher." msgstr "" -#: app/core/gimpimage.c:2822 app/core/gimpimage.c:2872 +#: ../app/core/gimpimage.c:2822 ../app/core/gimpimage.c:2872 msgid "Cannot raise a layer without alpha." msgstr "" -#: app/core/gimpimage.c:2827 +#: ../app/core/gimpimage.c:2827 msgid "Raise Layer" msgstr "" -#: app/core/gimpimage.c:2844 +#: ../app/core/gimpimage.c:2844 msgid "Layer cannot be lowered more." msgstr "" -#: app/core/gimpimage.c:2849 +#: ../app/core/gimpimage.c:2849 msgid "Lower Layer" msgstr "" -#: app/core/gimpimage.c:2866 +#: ../app/core/gimpimage.c:2866 msgid "Layer is already on top." msgstr "" -#: app/core/gimpimage.c:2877 +#: ../app/core/gimpimage.c:2877 msgid "Raise Layer to Top" msgstr "" -#: app/core/gimpimage.c:2897 +#: ../app/core/gimpimage.c:2897 msgid "Layer is already on the bottom." msgstr "" -#: app/core/gimpimage.c:2902 +#: ../app/core/gimpimage.c:2902 msgid "Lower Layer to Bottom" msgstr "" -#: app/core/gimpimage.c:2941 +#: ../app/core/gimpimage.c:2941 #, c-format msgid "Layer '%s' has no alpha. Layer was placed above it." msgstr "" -#: app/core/gimpimage.c:2993 +#: ../app/core/gimpimage.c:2993 msgid "Add Channel" msgstr "" -#: app/core/gimpimage.c:3038 +#: ../app/core/gimpimage.c:3038 msgid "Remove Channel" msgstr "" -#: app/core/gimpimage.c:3082 +#: ../app/core/gimpimage.c:3082 msgid "Channel cannot be raised higher." msgstr "" -#: app/core/gimpimage.c:3087 +#: ../app/core/gimpimage.c:3087 msgid "Raise Channel" msgstr "" -#: app/core/gimpimage.c:3104 +#: ../app/core/gimpimage.c:3104 msgid "Channel is already on top." msgstr "" -#: app/core/gimpimage.c:3109 +#: ../app/core/gimpimage.c:3109 msgid "Raise Channel to Top" msgstr "" -#: app/core/gimpimage.c:3126 +#: ../app/core/gimpimage.c:3126 msgid "Channel cannot be lowered more." msgstr "" -#: app/core/gimpimage.c:3131 +#: ../app/core/gimpimage.c:3131 msgid "Lower Channel" msgstr "" -#: app/core/gimpimage.c:3151 +#: ../app/core/gimpimage.c:3151 msgid "Channel is already on the bottom." msgstr "" -#: app/core/gimpimage.c:3156 +#: ../app/core/gimpimage.c:3156 msgid "Lower Channel to Bottom" msgstr "" -#: app/core/gimpimage.c:3231 +#: ../app/core/gimpimage.c:3231 msgid "Add Path" msgstr "" -#: app/core/gimpimage.c:3276 +#: ../app/core/gimpimage.c:3276 msgid "Remove Path" msgstr "" -#: app/core/gimpimage.c:3320 +#: ../app/core/gimpimage.c:3320 msgid "Path cannot be raised higher." msgstr "" -#: app/core/gimpimage.c:3325 +#: ../app/core/gimpimage.c:3325 msgid "Raise Path" msgstr "" -#: app/core/gimpimage.c:3342 +#: ../app/core/gimpimage.c:3342 msgid "Path is already on top." msgstr "" -#: app/core/gimpimage.c:3347 +#: ../app/core/gimpimage.c:3347 msgid "Raise Path to Top" msgstr "" -#: app/core/gimpimage.c:3364 +#: ../app/core/gimpimage.c:3364 msgid "Path cannot be lowered more." msgstr "" -#: app/core/gimpimage.c:3369 +#: ../app/core/gimpimage.c:3369 msgid "Lower Path" msgstr "" -#: app/core/gimpimage.c:3389 +#: ../app/core/gimpimage.c:3389 msgid "Path is already on the bottom." msgstr "" -#: app/core/gimpimage.c:3394 +#: ../app/core/gimpimage.c:3394 msgid "Lower Path to Bottom" msgstr "" -#: app/core/gimpimagefile.c:568 +#: ../app/core/gimpimagefile.c:568 #, fuzzy msgid "Remote image" msgstr "Завъртане на изображението" -#: app/core/gimpimagefile.c:573 app/dialogs/preferences-dialog.c:1472 +#: ../app/core/gimpimagefile.c:573 ../app/dialogs/preferences-dialog.c:1472 msgid "Folder" msgstr "Папка" -#: app/core/gimpimagefile.c:578 +#: ../app/core/gimpimagefile.c:578 msgid "Special File" msgstr "" -#: app/core/gimpimagefile.c:605 +#: ../app/core/gimpimagefile.c:605 msgid "Click to create preview" msgstr "" -#: app/core/gimpimagefile.c:609 +#: ../app/core/gimpimagefile.c:609 msgid "Loading preview ..." msgstr "" -#: app/core/gimpimagefile.c:613 +#: ../app/core/gimpimagefile.c:613 msgid "Preview is out of date" msgstr "" -#: app/core/gimpimagefile.c:617 +#: ../app/core/gimpimagefile.c:617 msgid "Cannot create preview" msgstr "Грешка при създаване на прегледа" #. pixel size -#: app/core/gimpimagefile.c:624 app/dialogs/info-window.c:552 -#: app/widgets/gimpsizebox.c:432 app/widgets/gimptemplateeditor.c:637 -#: app/widgets/gimptemplateeditor.c:675 +#: ../app/core/gimpimagefile.c:624 ../app/dialogs/info-window.c:552 +#: ../app/widgets/gimpsizebox.c:432 ../app/widgets/gimptemplateeditor.c:637 +#: ../app/widgets/gimptemplateeditor.c:675 #, c-format msgid "%d x %d pixels" msgstr "" -#: app/core/gimpimagefile.c:639 +#: ../app/core/gimpimagefile.c:639 msgid "1 Layer" msgstr "1 слой" -#: app/core/gimpimagefile.c:641 +#: ../app/core/gimpimagefile.c:641 #, c-format msgid "%d Layers" msgstr "%d слоя" -#: app/core/gimpimagefile.c:682 +#: ../app/core/gimpimagefile.c:682 #, c-format msgid "Could not open thumbnail '%s': %s" msgstr "" -#: app/core/gimpitem.c:1091 +#: ../app/core/gimpitem.c:1091 msgid "Attach Parasite" msgstr "" -#: app/core/gimpitem.c:1101 +#: ../app/core/gimpitem.c:1101 msgid "Attach Parasite to Item" msgstr "" -#: app/core/gimpitem.c:1140 app/core/gimpitem.c:1147 +#: ../app/core/gimpitem.c:1140 ../app/core/gimpitem.c:1147 msgid "Remove Parasite from Item" msgstr "" -#: app/core/gimplayer-floating-sel.c:98 +#: ../app/core/gimplayer-floating-sel.c:98 msgid "Remove Floating Selection" msgstr "" -#: app/core/gimplayer-floating-sel.c:129 +#: ../app/core/gimplayer-floating-sel.c:129 msgid "Cannot anchor this layer because it is not a floating selection." msgstr "" -#: app/core/gimplayer-floating-sel.c:136 +#: ../app/core/gimplayer-floating-sel.c:136 msgid "Anchor Floating Selection" msgstr "" -#: app/core/gimplayer-floating-sel.c:209 +#: ../app/core/gimplayer-floating-sel.c:209 msgid "" "Cannot create a new layer from the floating selection because it belongs to " "a layer mask or channel." msgstr "" -#: app/core/gimplayer-floating-sel.c:215 +#: ../app/core/gimplayer-floating-sel.c:215 msgid "Floating Selection to Layer" msgstr "" -#: app/core/gimplayer.c:250 app/pdb/internal_procs.c:152 +#: ../app/core/gimplayer.c:250 ../app/pdb/internal_procs.c:152 msgid "Layer" msgstr "Слой" -#: app/core/gimplayer.c:251 +#: ../app/core/gimplayer.c:251 msgid "Rename Layer" msgstr "Преименуване на слоя" -#: app/core/gimplayer.c:252 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:254 +#: ../app/core/gimplayer.c:254 msgid "Resize Layer" msgstr "" -#: app/core/gimplayer.c:255 +#: ../app/core/gimplayer.c:255 msgid "Flip Layer" msgstr "Обръщане на слоя" -#: app/core/gimplayer.c:256 +#: ../app/core/gimplayer.c:256 msgid "Rotate Layer" msgstr "Завъртане на слоя" -#: app/core/gimplayer.c:339 app/core/gimplayer.c:1109 -#: app/core/gimplayermask.c:236 +#: ../app/core/gimplayer.c:339 ../app/core/gimplayer.c:1109 +#: ../app/core/gimplayermask.c:236 #, c-format msgid "%s mask" msgstr "" -#: app/core/gimplayer.c:385 +#: ../app/core/gimplayer.c:385 #, c-format msgid "" "Floating Selection\n" "(%s)" msgstr "" -#: app/core/gimplayer.c:1035 +#: ../app/core/gimplayer.c:1035 msgid "Cannot add layer mask to layer which is not part of an image." msgstr "" -#: app/core/gimplayer.c:1042 +#: ../app/core/gimplayer.c:1042 msgid "Unable to add a layer mask since the layer already has one." msgstr "" -#: app/core/gimplayer.c:1049 +#: ../app/core/gimplayer.c:1049 msgid "Cannot add layer mask to a layer with no alpha channel." msgstr "" -#: app/core/gimplayer.c:1059 +#: ../app/core/gimplayer.c:1059 msgid "Cannot add layer mask of different dimensions than specified layer." msgstr "" -#: app/core/gimplayer.c:1163 +#: ../app/core/gimplayer.c:1163 msgid "Transfer Alpha to Mask" msgstr "" -#: app/core/gimplayer.c:1323 +#: ../app/core/gimplayer.c:1323 msgid "Apply Layer Mask" msgstr "" -#: app/core/gimplayer.c:1324 +#: ../app/core/gimplayer.c:1324 msgid "Delete Layer Mask" msgstr "" -#: app/core/gimplayer.c:1425 +#: ../app/core/gimplayer.c:1425 msgid "Add Alpha Channel" msgstr "" -#: app/core/gimplayer.c:1447 +#: ../app/core/gimplayer.c:1447 msgid "Layer to Image Size" msgstr "" -#: app/core/gimplayermask.c:132 +#: ../app/core/gimplayermask.c:132 msgid "Move Layer Mask" msgstr "" -#: app/core/gimppalette-import.c:490 +#: ../app/core/gimppalette-import.c:490 #, c-format msgid "" "Unknown type of palette file:\n" @@ -5186,30 +5221,30 @@ "Неизвестен вид файл на палитра:\n" "%s" -#: app/core/gimppalette.c:375 +#: ../app/core/gimppalette.c:375 #, c-format msgid "" "Fatal parse error in palette file '%s': Missing magic header.\n" "Does this file need converting from DOS?" msgstr "" -#: app/core/gimppalette.c:381 +#: ../app/core/gimppalette.c:381 #, c-format msgid "Fatal parse error in palette file '%s': Missing magic header." msgstr "" -#: app/core/gimppalette.c:395 app/core/gimppalette.c:420 -#: app/core/gimppalette.c:450 app/core/gimppalette.c:536 +#: ../app/core/gimppalette.c:395 ../app/core/gimppalette.c:420 +#: ../app/core/gimppalette.c:450 ../app/core/gimppalette.c:536 #, c-format msgid "Fatal parse error in palette file '%s': Read error in line %d." msgstr "" -#: app/core/gimppalette.c:410 +#: ../app/core/gimppalette.c:410 #, c-format msgid "Invalid UTF-8 string in palette file '%s'" msgstr "" -#: app/core/gimppalette.c:438 +#: ../app/core/gimppalette.c:438 #, c-format msgid "" "Reading palette file '%s': Invalid number of columns in line %d. Using " @@ -5217,373 +5252,375 @@ msgstr "" #. maybe we should just abort? -#: app/core/gimppalette.c:484 +#: ../app/core/gimppalette.c:484 #, c-format msgid "Reading palette file '%s': Missing RED component in line %d." msgstr "" -#: app/core/gimppalette.c:492 +#: ../app/core/gimppalette.c:492 #, c-format msgid "Reading palette '%s': Missing GREEN component in line %d." msgstr "" -#: app/core/gimppalette.c:500 +#: ../app/core/gimppalette.c:500 #, c-format msgid "Reading palette file '%s': Missing BLUE component in line %d." msgstr "" -#: app/core/gimppalette.c:510 +#: ../app/core/gimppalette.c:510 #, c-format msgid "Reading palette file '%s': RGB value out of range in line %d." msgstr "" -#: app/core/gimppattern.c:337 app/core/gimppattern.c:384 -#: app/core/gimppattern.c:415 +#: ../app/core/gimppattern.c:337 ../app/core/gimppattern.c:384 +#: ../app/core/gimppattern.c:415 #, c-format msgid "Fatal parse error in pattern file '%s': Could not read %d bytes: %s" msgstr "" -#: app/core/gimppattern.c:357 +#: ../app/core/gimppattern.c:357 #, c-format msgid "" "Fatal parse error in pattern file '%s': Unknown pattern format version %d." msgstr "" -#: app/core/gimppattern.c:367 +#: ../app/core/gimppattern.c:367 #, c-format msgid "" "Fatal parse error in pattern file '%s: Unsupported pattern depth %d.\n" "GIMP Patterns must be GRAY or RGB." msgstr "" -#: app/core/gimppattern.c:393 +#: ../app/core/gimppattern.c:393 #, c-format msgid "Invalid UTF-8 string in pattern file '%s'." msgstr "" -#: app/core/gimppdbprogress.c:260 app/widgets/gimppdbdialog.c:320 +#: ../app/core/gimppdbprogress.c:260 ../app/widgets/gimppdbdialog.c:320 #, c-format msgid "Unable to run %s callback. The corresponding plug-in may have crashed." msgstr "" -#: app/core/gimpprogress.c:107 app/core/gimpprogress.c:154 +#: ../app/core/gimpprogress.c:107 ../app/core/gimpprogress.c:154 msgid "Please wait..." msgstr "Моля изчакайте..." -#: app/core/gimpselection.c:183 app/tools/gimpeditselectiontool.c:258 +#: ../app/core/gimpselection.c:183 ../app/tools/gimpeditselectiontool.c:258 msgid "Move Selection" -msgstr "" +msgstr "Преместване на избраното" -#: app/core/gimpselection.c:202 +#: ../app/core/gimpselection.c:202 msgid "Sharpen Selection" msgstr "" -#: app/core/gimpselection.c:203 +#: ../app/core/gimpselection.c:203 msgid "Select None" msgstr "" -#: app/core/gimpselection.c:204 +#: ../app/core/gimpselection.c:204 msgid "Select All" msgstr "Избиране на всичко" -#: app/core/gimpselection.c:205 +#: ../app/core/gimpselection.c:205 msgid "Invert Selection" -msgstr "" +msgstr "Обръщане на избирането" -#: app/core/gimpselection.c:307 +#: ../app/core/gimpselection.c:307 msgid "No selection to stroke." msgstr "" -#: app/core/gimpselection.c:815 +#: ../app/core/gimpselection.c:815 msgid "Cannot float selection because the selected region is empty." msgstr "" -#: app/core/gimpselection.c:822 +#: ../app/core/gimpselection.c:822 msgid "Float Selection" msgstr "" -#: app/core/gimpselection.c:839 +#: ../app/core/gimpselection.c:839 msgid "Floated Layer" msgstr "" -#: app/core/gimptemplate.c:158 +#: ../app/core/gimptemplate.c:158 msgid "The unit used for coordinate display when not in dot-for-dot mode." msgstr "" -#: app/core/gimptemplate.c:165 +#: ../app/core/gimptemplate.c:165 msgid "The horizontal image resolution." msgstr "" -#: app/core/gimptemplate.c:170 +#: ../app/core/gimptemplate.c:170 msgid "The vertical image resolution." msgstr "" -#: app/core/gimptemplate.c:450 app/widgets/widgets-enums.c:24 +#: ../app/core/gimptemplate.c:450 ../app/widgets/widgets-enums.c:24 msgid "Background" msgstr "Фон" #. pseudo unit -#: app/core/gimpunit.c:55 +#: ../app/core/gimpunit.c:55 msgid "pixel" msgstr "" -#: app/core/gimpunit.c:55 app/tools/gimpmeasuretool.c:787 -#: app/tools/gimpmeasuretool.c:875 app/tools/gimppainttool.c:681 +#: ../app/core/gimpunit.c:55 ../app/tools/gimpmeasuretool.c:787 +#: ../app/tools/gimpmeasuretool.c:875 ../app/tools/gimppainttool.c:681 msgid "pixels" msgstr "" #. standard units -#: app/core/gimpunit.c:58 +#: ../app/core/gimpunit.c:58 msgid "inch" msgstr "" -#: app/core/gimpunit.c:58 +#: ../app/core/gimpunit.c:58 msgid "inches" msgstr "" -#: app/core/gimpunit.c:59 +#: ../app/core/gimpunit.c:59 msgid "millimeter" msgstr "милиметър" -#: app/core/gimpunit.c:59 +#: ../app/core/gimpunit.c:59 msgid "millimeters" msgstr "милиметри" #. professional units -#: app/core/gimpunit.c:62 +#: ../app/core/gimpunit.c:62 msgid "point" msgstr "" -#: app/core/gimpunit.c:62 +#: ../app/core/gimpunit.c:62 msgid "points" msgstr "" -#: app/core/gimpunit.c:63 +#: ../app/core/gimpunit.c:63 msgid "pica" msgstr "" -#: app/core/gimpunit.c:63 +#: ../app/core/gimpunit.c:63 msgid "picas" msgstr "" -#: app/core/gimpunit.c:70 +#: ../app/core/gimpunit.c:70 msgid "percent" msgstr "" -#: app/dialogs/about-dialog.c:45 +#: ../app/dialogs/about-dialog.c:45 #, c-format msgid "Version %s brought to you by" msgstr "Версия %s създадена от" -#: app/dialogs/about-dialog.c:51 +#: ../app/dialogs/about-dialog.c:51 msgid "Translation by" msgstr "Превод:" #. Translators: insert your names here, separated by newline #. we'd prefer just the names, please no email addresses. -#: app/dialogs/about-dialog.c:54 +#: ../app/dialogs/about-dialog.c:54 msgid "translator-credits" msgstr "Ясен Праматаров " -#: app/dialogs/about-dialog.c:59 +#: ../app/dialogs/about-dialog.c:59 msgid "Contributions by" msgstr "Със съдействието на" -#: app/dialogs/about-dialog.c:153 +#: ../app/dialogs/about-dialog.c:153 msgid "About The GIMP" msgstr "Относно GIMP" -#: app/dialogs/channel-options-dialog.c:138 +#: ../app/dialogs/channel-options-dialog.c:138 msgid "Channel Name:" msgstr "" -#: app/dialogs/convert-dialog.c:121 +#: ../app/dialogs/convert-dialog.c:121 msgid "Indexed Color Conversion" msgstr "" -#: app/dialogs/convert-dialog.c:124 +#: ../app/dialogs/convert-dialog.c:124 msgid "Convert Image to Indexed Colors" msgstr "" -#: app/dialogs/convert-dialog.c:165 app/dialogs/dialogs.c:171 +#: ../app/dialogs/convert-dialog.c:165 ../app/dialogs/dialogs.c:171 msgid "Colormap" msgstr "" -#: app/dialogs/convert-dialog.c:179 +#: ../app/dialogs/convert-dialog.c:179 msgid "_Maximum number of colors:" msgstr "" -#: app/dialogs/convert-dialog.c:206 +#: ../app/dialogs/convert-dialog.c:206 msgid "_Remove unused colors from final palette" msgstr "" #. dithering -#: app/dialogs/convert-dialog.c:221 app/tools/gimpblendoptions.c:269 +#: ../app/dialogs/convert-dialog.c:221 ../app/tools/gimpblendoptions.c:269 msgid "Dithering" msgstr "" -#: app/dialogs/convert-dialog.c:233 +#: ../app/dialogs/convert-dialog.c:233 msgid "Color _dithering:" msgstr "" -#: app/dialogs/convert-dialog.c:248 +#: ../app/dialogs/convert-dialog.c:248 msgid "Enable dithering of _transparency" msgstr "" -#: app/dialogs/convert-dialog.c:274 +#: ../app/dialogs/convert-dialog.c:274 msgid "Converting to indexed..." msgstr "" -#: app/dialogs/convert-dialog.c:382 +#: ../app/dialogs/convert-dialog.c:382 msgid "Cannot convert to a palette with more than 256 colors." msgstr "" -#: app/dialogs/dialogs-constructors.c:164 app/gui/gui.c:161 +#: ../app/dialogs/dialogs-constructors.c:164 ../app/gui/gui.c:161 msgid "GIMP Message" -msgstr "" +msgstr "Съобщение от GIMP" -#: app/dialogs/dialogs.c:127 +#: ../app/dialogs/dialogs.c:127 msgid "Devices" msgstr "Устройства" -#: app/dialogs/dialogs.c:127 +#: ../app/dialogs/dialogs.c:127 msgid "Device Status" msgstr "" -#: app/dialogs/dialogs.c:131 +#: ../app/dialogs/dialogs.c:131 msgid "Errors" msgstr "Грешки" -#: app/dialogs/dialogs.c:152 +#: ../app/dialogs/dialogs.c:152 msgid "History" msgstr "История" -#: app/dialogs/dialogs.c:154 +#: ../app/dialogs/dialogs.c:154 msgid "Image Templates" msgstr "" -#: app/dialogs/dialogs.c:175 +#: ../app/dialogs/dialogs.c:175 msgid "Histogram" msgstr "" -#: app/dialogs/dialogs.c:179 +#: ../app/dialogs/dialogs.c:179 msgid "Selection" msgstr "" -#: app/dialogs/dialogs.c:179 +#: ../app/dialogs/dialogs.c:179 msgid "Selection Editor" msgstr "" -#: app/dialogs/dialogs.c:183 +#: ../app/dialogs/dialogs.c:183 msgid "Undo History" -msgstr "" +msgstr "История на промените" -#: app/dialogs/dialogs.c:189 +#: ../app/dialogs/dialogs.c:189 msgid "Navigation" msgstr "" -#: app/dialogs/dialogs.c:189 +#: ../app/dialogs/dialogs.c:189 msgid "Display Navigation" msgstr "" -#: app/dialogs/dialogs.c:195 +#: ../app/dialogs/dialogs.c:195 msgid "FG/BG" msgstr "" -#: app/dialogs/dialogs.c:195 +#: ../app/dialogs/dialogs.c:195 msgid "FG/BG Color" msgstr "" -#: app/dialogs/dialogs.c:201 +#: ../app/dialogs/dialogs.c:201 msgid "Brush Editor" msgstr "Редактор на четки" -#: app/dialogs/file-open-location-dialog.c:71 +#: ../app/dialogs/file-open-location-dialog.c:71 msgid "Open Location" msgstr "Отваряне на адрес" -#: app/dialogs/file-open-location-dialog.c:104 +#: ../app/dialogs/file-open-location-dialog.c:104 msgid "Enter location (URI):" msgstr "Въведете местоположенеи (URI):" -#: app/dialogs/file-save-dialog.c:185 +#: ../app/dialogs/file-save-dialog.c:185 msgid "File exists" msgstr "Файлът съществува" -#: app/dialogs/file-save-dialog.c:190 +#: ../app/dialogs/file-save-dialog.c:190 msgid "_Replace" msgstr "" -#: app/dialogs/file-save-dialog.c:200 +#: ../app/dialogs/file-save-dialog.c:200 #, c-format msgid "A file named '%s' already exists." msgstr "" -#: app/dialogs/file-save-dialog.c:205 +#: ../app/dialogs/file-save-dialog.c:205 msgid "Do you want to replace it with the image you are saving?" msgstr "" -#: app/dialogs/grid-dialog.c:81 +#: ../app/dialogs/grid-dialog.c:81 msgid "Configure Grid" msgstr "Настройка на мрежата" -#: app/dialogs/grid-dialog.c:82 +#: ../app/dialogs/grid-dialog.c:82 msgid "Configure Image Grid" msgstr "Настройка на мрежата на изображението" -#: app/dialogs/image-merge-layers-dialog.c:60 +#: ../app/dialogs/image-merge-layers-dialog.c:60 msgid "Merge Layers" msgstr "Сливане на слоевете" -#: app/dialogs/image-merge-layers-dialog.c:62 +#: ../app/dialogs/image-merge-layers-dialog.c:62 msgid "Layers Merge Options" msgstr "Настройки на сливането на слоевете" -#: app/dialogs/image-merge-layers-dialog.c:77 +#: ../app/dialogs/image-merge-layers-dialog.c:77 msgid "Final, Merged Layer should be:" msgstr "" -#: app/dialogs/image-merge-layers-dialog.c:81 +#: ../app/dialogs/image-merge-layers-dialog.c:81 msgid "Expanded as necessary" msgstr "" -#: app/dialogs/image-merge-layers-dialog.c:84 +#: ../app/dialogs/image-merge-layers-dialog.c:84 msgid "Clipped to image" msgstr "" -#: app/dialogs/image-merge-layers-dialog.c:87 +#: ../app/dialogs/image-merge-layers-dialog.c:87 msgid "Clipped to bottom layer" msgstr "" -#: app/dialogs/image-new-dialog.c:95 +#: ../app/dialogs/image-new-dialog.c:95 msgid "Create a New Image" msgstr "Създаване на ново изображение" -#: app/dialogs/image-new-dialog.c:130 app/dialogs/preferences-dialog.c:1313 +#: ../app/dialogs/image-new-dialog.c:130 +#: ../app/dialogs/preferences-dialog.c:1313 msgid "_Template:" msgstr "_Шаблон:" -#: app/dialogs/image-new-dialog.c:265 +#: ../app/dialogs/image-new-dialog.c:265 msgid "Confirm Image Size" msgstr "" -#: app/dialogs/image-new-dialog.c:282 app/dialogs/image-scale-dialog.c:193 +#: ../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 "" -#: app/dialogs/image-new-dialog.c:289 +#: ../app/dialogs/image-new-dialog.c:289 #, c-format msgid "" "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 "" -#: app/dialogs/image-scale-dialog.c:164 +#: ../app/dialogs/image-scale-dialog.c:164 msgid "Confirm Scaling" msgstr "" -#: app/dialogs/image-scale-dialog.c:199 +#: ../app/dialogs/image-scale-dialog.c:199 #, c-format msgid "" "Scaling the image to the choosen size will make it use more memory than what " @@ -5591,1131 +5628,1145 @@ "%s)." msgstr "" -#: app/dialogs/image-scale-dialog.c:214 +#: ../app/dialogs/image-scale-dialog.c:214 msgid "" "Scaling the image to the choosen size will shrink some layers completely " "away." msgstr "" -#: app/dialogs/image-scale-dialog.c:218 +#: ../app/dialogs/image-scale-dialog.c:218 msgid "Is this what you want to do?" msgstr "това ли искате да направите?" #. General -#: app/dialogs/info-dialog.c:377 app/dialogs/preferences-dialog.c:1543 -#: app/dialogs/preferences-dialog.c:1697 -#: app/widgets/gimpcontrollereditor.c:197 +#: ../app/dialogs/info-dialog.c:377 ../app/dialogs/preferences-dialog.c:1543 +#: ../app/dialogs/preferences-dialog.c:1697 +#: ../app/widgets/gimpcontrollereditor.c:197 msgid "General" msgstr "Общи" -#: app/dialogs/info-window.c:83 +#: ../app/dialogs/info-window.c:83 msgid "Static Gray" msgstr "" -#: app/dialogs/info-window.c:84 app/dialogs/info-window.c:610 +#: ../app/dialogs/info-window.c:84 ../app/dialogs/info-window.c:610 msgid "Grayscale" -msgstr "" +msgstr "Степени на сивото" -#: app/dialogs/info-window.c:85 +#: ../app/dialogs/info-window.c:85 msgid "Static Color" msgstr "" -#: app/dialogs/info-window.c:86 +#: ../app/dialogs/info-window.c:86 msgid "Pseudo Color" msgstr "" -#: app/dialogs/info-window.c:87 +#: ../app/dialogs/info-window.c:87 msgid "True Color" msgstr "" -#: app/dialogs/info-window.c:88 +#: ../app/dialogs/info-window.c:88 msgid "Direct Color" msgstr "" -#: app/dialogs/info-window.c:131 +#: ../app/dialogs/info-window.c:131 msgid "Cursor" msgstr "" -#: app/dialogs/info-window.c:141 app/dialogs/preferences-dialog.c:1932 -#: app/widgets/gimpgrideditor.c:267 app/widgets/gimpgrideditor.c:299 +#: ../app/dialogs/info-window.c:141 ../app/dialogs/preferences-dialog.c:1932 +#: ../app/widgets/gimpgrideditor.c:267 ../app/widgets/gimpgrideditor.c:299 msgid "Pixels" msgstr "" -#: app/dialogs/info-window.c:151 app/dialogs/info-window.c:157 -#: app/dialogs/info-window.c:173 app/dialogs/info-window.c:179 -#: app/dialogs/info-window.c:425 app/dialogs/info-window.c:426 -#: app/dialogs/info-window.c:427 app/dialogs/info-window.c:428 -#: app/widgets/gimpcolorframe.c:338 +#: ../app/dialogs/info-window.c:151 ../app/dialogs/info-window.c:157 +#: ../app/dialogs/info-window.c:173 ../app/dialogs/info-window.c:179 +#: ../app/dialogs/info-window.c:425 ../app/dialogs/info-window.c:426 +#: ../app/dialogs/info-window.c:427 ../app/dialogs/info-window.c:428 +#: ../app/widgets/gimpcolorframe.c:338 msgid "n/a" msgstr "" -#: app/dialogs/info-window.c:154 app/dialogs/info-window.c:176 +#: ../app/dialogs/info-window.c:154 ../app/dialogs/info-window.c:176 msgid "X" msgstr "X" -#: app/dialogs/info-window.c:160 app/dialogs/info-window.c:182 +#: ../app/dialogs/info-window.c:160 ../app/dialogs/info-window.c:182 msgid "Y" msgstr "Y" -#: app/dialogs/info-window.c:163 app/pdb/internal_procs.c:212 +#: ../app/dialogs/info-window.c:163 ../app/pdb/internal_procs.c:212 msgid "Units" msgstr "Мерни единици" -#: app/dialogs/info-window.c:228 +#: ../app/dialogs/info-window.c:228 msgid "Comment" msgstr "Бележки" -#: app/dialogs/info-window.c:248 app/dialogs/info-window.c:634 -#: app/display/gimpdisplayshell-title.c:337 -#: app/display/gimpdisplayshell-title.c:349 app/widgets/gimpactiongroup.c:806 +#: ../app/dialogs/info-window.c:248 ../app/dialogs/info-window.c:634 +#: ../app/display/gimpdisplayshell-title.c:337 +#: ../app/display/gimpdisplayshell-title.c:349 +#: ../app/widgets/gimpactiongroup.c:806 msgid "(none)" msgstr "" -#: app/dialogs/info-window.c:275 +#: ../app/dialogs/info-window.c:275 msgid "Info Window" msgstr "Прозорец с данни" -#: app/dialogs/info-window.c:277 +#: ../app/dialogs/info-window.c:277 msgid "Image Information" msgstr "Данни за изображението" #. add the information fields -#: app/dialogs/info-window.c:294 +#: ../app/dialogs/info-window.c:294 msgid "Pixel dimensions:" msgstr "" -#: app/dialogs/info-window.c:296 +#: ../app/dialogs/info-window.c:296 msgid "Print size:" msgstr "" -#: app/dialogs/info-window.c:298 +#: ../app/dialogs/info-window.c:298 msgid "Resolution:" msgstr "" -#: app/dialogs/info-window.c:300 +#: ../app/dialogs/info-window.c:300 msgid "Scale ratio:" msgstr "" -#: app/dialogs/info-window.c:302 +#: ../app/dialogs/info-window.c:302 msgid "Number of layers:" msgstr "Брой слоеве:" -#: app/dialogs/info-window.c:304 +#: ../app/dialogs/info-window.c:304 msgid "Size in memory:" msgstr "Размер в паметта:" -#: app/dialogs/info-window.c:306 +#: ../app/dialogs/info-window.c:306 msgid "Display type:" msgstr "" -#: app/dialogs/info-window.c:308 +#: ../app/dialogs/info-window.c:308 msgid "Visual class:" msgstr "" -#: app/dialogs/info-window.c:310 +#: ../app/dialogs/info-window.c:310 msgid "Visual depth:" msgstr "" -#: app/dialogs/info-window.c:575 +#: ../app/dialogs/info-window.c:575 #, c-format msgid "pixels/%s" msgstr "" -#: app/dialogs/info-window.c:577 +#: ../app/dialogs/info-window.c:577 #, c-format msgid "%g x %g %s" msgstr "" -#: app/dialogs/info-window.c:580 app/dialogs/preferences-dialog.c:1954 +#: ../app/dialogs/info-window.c:580 ../app/dialogs/preferences-dialog.c:1954 msgid "dpi" msgstr "" -#: app/dialogs/info-window.c:607 +#: ../app/dialogs/info-window.c:607 msgid "RGB Color" msgstr "RGB цвят" -#: app/dialogs/info-window.c:614 +#: ../app/dialogs/info-window.c:614 msgid "Indexed Color" msgstr "" -#: app/dialogs/info-window.c:614 +#: ../app/dialogs/info-window.c:614 msgid "colors" msgstr "" -#: app/dialogs/layer-add-mask-dialog.c:64 +#: ../app/dialogs/layer-add-mask-dialog.c:64 msgid "Add a Mask to the Layer" msgstr "" -#: app/dialogs/layer-add-mask-dialog.c:86 +#: ../app/dialogs/layer-add-mask-dialog.c:86 msgid "Initialize Layer Mask to:" msgstr "" -#: app/dialogs/layer-add-mask-dialog.c:96 +#: ../app/dialogs/layer-add-mask-dialog.c:96 msgid "In_vert Mask" msgstr "" -#: app/dialogs/layer-options-dialog.c:116 +#: ../app/dialogs/layer-options-dialog.c:116 msgid "Layer _Name:" msgstr "_Име на слоя:" #. The size labels -#: app/dialogs/layer-options-dialog.c:127 app/tools/gimpcroptool.c:1046 -#: app/tools/gimpselectionoptions.c:529 +#: ../app/dialogs/layer-options-dialog.c:127 ../app/tools/gimpcroptool.c:1046 +#: ../app/tools/gimpselectionoptions.c:529 msgid "Width:" msgstr "Широчина:" -#: app/dialogs/layer-options-dialog.c:133 app/tools/gimpcroptool.c:1050 -#: app/tools/gimpscaletool.c:166 app/tools/gimpselectionoptions.c:537 +#: ../app/dialogs/layer-options-dialog.c:133 ../app/tools/gimpcroptool.c:1050 +#: ../app/tools/gimpscaletool.c:166 ../app/tools/gimpselectionoptions.c:537 msgid "Height:" msgstr "Височина:" -#: app/dialogs/layer-options-dialog.c:190 +#: ../app/dialogs/layer-options-dialog.c:190 msgid "Layer Fill Type" msgstr "Вид на запълването на слоя" -#: app/dialogs/layer-options-dialog.c:205 +#: ../app/dialogs/layer-options-dialog.c:205 msgid "Set Name from _Text" msgstr "" -#: app/dialogs/module-dialog.c:122 +#: ../app/dialogs/module-dialog.c:122 msgid "Module Manager" msgstr "управление на модулите" -#: app/dialogs/module-dialog.c:124 +#: ../app/dialogs/module-dialog.c:124 msgid "Manage Loadable Modules" msgstr "Управление на модулите" -#: app/dialogs/module-dialog.c:168 +#: ../app/dialogs/module-dialog.c:168 msgid "Autoload" msgstr "Зареждане при стартиране" -#: app/dialogs/module-dialog.c:175 +#: ../app/dialogs/module-dialog.c:175 msgid "Module path" msgstr "Път до модула" -#: app/dialogs/module-dialog.c:418 +#: ../app/dialogs/module-dialog.c:418 msgid "" msgstr "<Липсват модули>" -#: app/dialogs/module-dialog.c:430 app/dialogs/module-dialog.c:439 +#: ../app/dialogs/module-dialog.c:430 ../app/dialogs/module-dialog.c:439 msgid "On disk" msgstr "" -#: app/dialogs/module-dialog.c:430 +#: ../app/dialogs/module-dialog.c:430 msgid "Only in memory" msgstr "" -#: app/dialogs/module-dialog.c:439 +#: ../app/dialogs/module-dialog.c:439 msgid "No longer available" msgstr "Вече не е налично" -#: app/dialogs/module-dialog.c:475 +#: ../app/dialogs/module-dialog.c:475 msgid "Load" msgstr "Зареждане" -#: app/dialogs/module-dialog.c:477 +#: ../app/dialogs/module-dialog.c:477 msgid "Query" msgstr "" -#: app/dialogs/module-dialog.c:484 +#: ../app/dialogs/module-dialog.c:484 msgid "Unload" msgstr "" -#: app/dialogs/module-dialog.c:499 +#: ../app/dialogs/module-dialog.c:499 msgid "Purpose:" msgstr "Предназначение:" -#: app/dialogs/module-dialog.c:500 +#: ../app/dialogs/module-dialog.c:500 msgid "Author:" msgstr "Автор:" -#: app/dialogs/module-dialog.c:501 +#: ../app/dialogs/module-dialog.c:501 msgid "Version:" msgstr "Версия:" -#: app/dialogs/module-dialog.c:502 +#: ../app/dialogs/module-dialog.c:502 msgid "Copyright:" msgstr "Авторски права:" -#: app/dialogs/module-dialog.c:503 +#: ../app/dialogs/module-dialog.c:503 msgid "Date:" msgstr "Дата:" -#: app/dialogs/module-dialog.c:504 +#: ../app/dialogs/module-dialog.c:504 msgid "Location:" msgstr "Метсоположение:" -#: app/dialogs/module-dialog.c:505 app/widgets/gimpcontrollereditor.c:242 +#: ../app/dialogs/module-dialog.c:505 +#: ../app/widgets/gimpcontrollereditor.c:242 msgid "State:" msgstr "Състояние:" -#: app/dialogs/module-dialog.c:506 +#: ../app/dialogs/module-dialog.c:506 msgid "Last Error:" msgstr "Последна грешка:" -#: app/dialogs/module-dialog.c:507 +#: ../app/dialogs/module-dialog.c:507 msgid "Available Types:" -msgstr "" +msgstr "Налични видове:" -#: app/dialogs/offset-dialog.c:98 +#: ../app/dialogs/offset-dialog.c:98 msgid "Offset Layer" msgstr "" -#: app/dialogs/offset-dialog.c:100 +#: ../app/dialogs/offset-dialog.c:100 msgid "Offset Layer Mask" msgstr "" -#: app/dialogs/offset-dialog.c:102 +#: ../app/dialogs/offset-dialog.c:102 msgid "Offset Channel" msgstr "" #. The offset frame -#: app/dialogs/offset-dialog.c:108 app/dialogs/offset-dialog.c:136 -#: app/dialogs/resize-dialog.c:185 app/widgets/gimpgrideditor.c:274 +#: ../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 "Отместване" -#: app/dialogs/offset-dialog.c:168 app/dialogs/resize-dialog.c:214 +#: ../app/dialogs/offset-dialog.c:168 ../app/dialogs/resize-dialog.c:214 msgid "_X:" msgstr "_X:" -#: app/dialogs/offset-dialog.c:170 app/dialogs/resize-dialog.c:215 +#: ../app/dialogs/offset-dialog.c:170 ../app/dialogs/resize-dialog.c:215 msgid "_Y:" msgstr "_Y:" -#: app/dialogs/offset-dialog.c:197 +#: ../app/dialogs/offset-dialog.c:197 msgid "Offset by x/_2, y/2" msgstr "" #. The edge behaviour frame -#: app/dialogs/offset-dialog.c:206 +#: ../app/dialogs/offset-dialog.c:206 msgid "Edge Behaviour" msgstr "" -#: app/dialogs/offset-dialog.c:210 +#: ../app/dialogs/offset-dialog.c:210 msgid "_Wrap around" msgstr "" -#: app/dialogs/offset-dialog.c:213 +#: ../app/dialogs/offset-dialog.c:213 msgid "Fill with _background color" msgstr "Запълване с _фоновия цвят" -#: app/dialogs/offset-dialog.c:216 +#: ../app/dialogs/offset-dialog.c:216 msgid "Make _transparent" msgstr "" -#: app/dialogs/palette-import-dialog.c:171 +#: ../app/dialogs/palette-import-dialog.c:171 msgid "Import Palette" msgstr "Внасяне на палитра" -#: app/dialogs/palette-import-dialog.c:173 +#: ../app/dialogs/palette-import-dialog.c:173 msgid "Import a New Palette" msgstr "Внасяне на нова палитра" -#: app/dialogs/palette-import-dialog.c:179 +#: ../app/dialogs/palette-import-dialog.c:179 msgid "_Import" msgstr "_Внасяне" #. The "Source" frame -#: app/dialogs/palette-import-dialog.c:208 +#: ../app/dialogs/palette-import-dialog.c:208 msgid "Select Source" msgstr "" -#: app/dialogs/palette-import-dialog.c:231 +#: ../app/dialogs/palette-import-dialog.c:231 msgid "I_mage" msgstr "Изо_бражение" -#: app/dialogs/palette-import-dialog.c:246 +#: ../app/dialogs/palette-import-dialog.c:246 msgid "Palette _file" msgstr "Файл на _палитра" -#: app/dialogs/palette-import-dialog.c:273 +#: ../app/dialogs/palette-import-dialog.c:273 msgid "Select palette file" msgstr "" #. The "Import" frame -#: app/dialogs/palette-import-dialog.c:304 +#: ../app/dialogs/palette-import-dialog.c:304 msgid "Import Options" msgstr "Настройки на внасянето" -#: app/dialogs/palette-import-dialog.c:317 +#: ../app/dialogs/palette-import-dialog.c:317 msgid "New import" msgstr "" -#: app/dialogs/palette-import-dialog.c:319 +#: ../app/dialogs/palette-import-dialog.c:319 msgid "Palette _Name:" msgstr "Име _на палитрата:" -#: app/dialogs/palette-import-dialog.c:325 +#: ../app/dialogs/palette-import-dialog.c:325 msgid "N_umber of colors:" msgstr "_Брой цветове:" -#: app/dialogs/palette-import-dialog.c:338 +#: ../app/dialogs/palette-import-dialog.c:338 msgid "C_olumns:" msgstr "Ко_лони:" -#: app/dialogs/palette-import-dialog.c:350 +#: ../app/dialogs/palette-import-dialog.c:350 msgid "I_nterval:" msgstr "" #. The "Preview" frame -#: app/dialogs/palette-import-dialog.c:362 +#: ../app/dialogs/palette-import-dialog.c:362 msgid "Preview" msgstr "Преглед" -#: app/dialogs/preferences-dialog.c:294 +#: ../app/dialogs/preferences-dialog.c:294 msgid "You will have to restart GIMP for the following changes to take effect:" msgstr "Трябва да изпълните отново GIMP, за да се приложат следните промени:" -#: app/dialogs/preferences-dialog.c:501 +#: ../app/dialogs/preferences-dialog.c:501 msgid "Configure Keyboard Shortcuts" msgstr "Настройка на бързите клавиши" -#: app/dialogs/preferences-dialog.c:551 +#: ../app/dialogs/preferences-dialog.c:551 msgid "" "To edit a shortcut key, click on the corresponding row and type a new " "accelerator, or press backspace to clear." msgstr "" -#: app/dialogs/preferences-dialog.c:595 +#: ../app/dialogs/preferences-dialog.c:595 msgid "" "Your keyboard shortcuts will be reset to default values the next time you " "start GIMP." msgstr "" -#: app/dialogs/preferences-dialog.c:629 +#: ../app/dialogs/preferences-dialog.c:629 msgid "" "Your window setup will be reset to default values the next time you start " "GIMP." msgstr "" -#: app/dialogs/preferences-dialog.c:663 +#: ../app/dialogs/preferences-dialog.c:663 msgid "" "Your input device settings will be reset to default values the next time you " "start GIMP." msgstr "" -#: app/dialogs/preferences-dialog.c:1082 +#: ../app/dialogs/preferences-dialog.c:1082 msgid "Show _menubar" -msgstr "" +msgstr "Показване на _менюто" -#: app/dialogs/preferences-dialog.c:1085 +#: ../app/dialogs/preferences-dialog.c:1085 msgid "Show _rulers" -msgstr "" +msgstr "Показване на _линийките" -#: app/dialogs/preferences-dialog.c:1088 +#: ../app/dialogs/preferences-dialog.c:1088 msgid "Show scroll_bars" -msgstr "" +msgstr "Показване на _плъзгачите" -#: app/dialogs/preferences-dialog.c:1091 +#: ../app/dialogs/preferences-dialog.c:1091 msgid "Show s_tatusbar" -msgstr "" +msgstr "Показване на ивицата за с_ъстояние" -#: app/dialogs/preferences-dialog.c:1099 +#: ../app/dialogs/preferences-dialog.c:1099 msgid "Show s_election" -msgstr "" +msgstr "Показване на из_браното" -#: app/dialogs/preferences-dialog.c:1102 +#: ../app/dialogs/preferences-dialog.c:1102 msgid "Show _layer boundary" -msgstr "" +msgstr "Показване _границите на слоевете" -#: app/dialogs/preferences-dialog.c:1105 +#: ../app/dialogs/preferences-dialog.c:1105 msgid "Show _guides" msgstr "" -#: app/dialogs/preferences-dialog.c:1108 +#: ../app/dialogs/preferences-dialog.c:1108 msgid "Show gri_d" -msgstr "" +msgstr "Показване на _мрежата" -#: app/dialogs/preferences-dialog.c:1114 +#: ../app/dialogs/preferences-dialog.c:1114 msgid "Canvas _padding mode:" msgstr "" -#: app/dialogs/preferences-dialog.c:1119 +#: ../app/dialogs/preferences-dialog.c:1119 msgid "Custom p_adding color:" msgstr "" -#: app/dialogs/preferences-dialog.c:1120 +#: ../app/dialogs/preferences-dialog.c:1120 msgid "Select custom canvas padding color" msgstr "" -#: app/dialogs/preferences-dialog.c:1191 +#: ../app/dialogs/preferences-dialog.c:1191 msgid "Preferences" msgstr "Настройки" -#: app/dialogs/preferences-dialog.c:1294 app/dialogs/preferences-dialog.c:1297 +#: ../app/dialogs/preferences-dialog.c:1294 +#: ../app/dialogs/preferences-dialog.c:1297 msgid "New Image" msgstr "Ново изображение" -#: app/dialogs/preferences-dialog.c:1335 +#: ../app/dialogs/preferences-dialog.c:1335 msgid "Default Image Grid" msgstr "Мрежа на изображението по подразбиране" -#: app/dialogs/preferences-dialog.c:1338 +#: ../app/dialogs/preferences-dialog.c:1338 msgid "Default Grid" msgstr "Мрежа по подразбиране" -#: app/dialogs/preferences-dialog.c:1358 +#: ../app/dialogs/preferences-dialog.c:1358 msgid "User Interface" msgstr "" -#: app/dialogs/preferences-dialog.c:1361 +#: ../app/dialogs/preferences-dialog.c:1361 msgid "Interface" msgstr "" #. Previews -#: app/dialogs/preferences-dialog.c:1368 +#: ../app/dialogs/preferences-dialog.c:1368 msgid "Previews" msgstr "Предварителни прегледи" -#: app/dialogs/preferences-dialog.c:1371 +#: ../app/dialogs/preferences-dialog.c:1371 msgid "_Enable layer & channel previews" msgstr "" -#: app/dialogs/preferences-dialog.c:1377 +#: ../app/dialogs/preferences-dialog.c:1377 msgid "Default _layer & channel preview size:" -msgstr "" +msgstr "Преглед по под_разбиране на слоеве и канали:" -#: app/dialogs/preferences-dialog.c:1380 +#: ../app/dialogs/preferences-dialog.c:1380 msgid "Na_vigation preview size:" msgstr "" #. Keyboard Shortcuts -#: app/dialogs/preferences-dialog.c:1384 +#: ../app/dialogs/preferences-dialog.c:1384 msgid "Keyboard Shortcuts" msgstr "Бързи клавиши" -#: app/dialogs/preferences-dialog.c:1388 +#: ../app/dialogs/preferences-dialog.c:1388 msgid "Show menu _mnemonics (access keys)" msgstr "" -#: app/dialogs/preferences-dialog.c:1391 +#: ../app/dialogs/preferences-dialog.c:1391 msgid "Use _dynamic keyboard shortcuts" msgstr "" -#: app/dialogs/preferences-dialog.c:1395 +#: ../app/dialogs/preferences-dialog.c:1395 msgid "Configure _Keyboard Shortcuts..." msgstr "Настройка на _бързите клавиши..." -#: app/dialogs/preferences-dialog.c:1402 +#: ../app/dialogs/preferences-dialog.c:1402 msgid "_Save keyboard shortcuts on exit" msgstr "_Запазване на бързите клавиши при излизане" -#: app/dialogs/preferences-dialog.c:1406 +#: ../app/dialogs/preferences-dialog.c:1406 msgid "Save Keyboard Shortcuts _Now" msgstr "Запазване на бързите клавиши _сега" -#: app/dialogs/preferences-dialog.c:1413 +#: ../app/dialogs/preferences-dialog.c:1413 msgid "_Reset Saved Keyboard Shortcuts to Default Values" msgstr "_Връщане на подразбиращите се бързи клавиши" -#: app/dialogs/preferences-dialog.c:1428 app/dialogs/preferences-dialog.c:1431 -#: app/dialogs/preferences-dialog.c:1467 +#: ../app/dialogs/preferences-dialog.c:1428 +#: ../app/dialogs/preferences-dialog.c:1431 +#: ../app/dialogs/preferences-dialog.c:1467 msgid "Theme" -msgstr "" +msgstr "Изглед" -#: app/dialogs/preferences-dialog.c:1437 +#: ../app/dialogs/preferences-dialog.c:1437 msgid "Select Theme" -msgstr "" +msgstr "Избор на изглед" -#: app/dialogs/preferences-dialog.c:1519 +#: ../app/dialogs/preferences-dialog.c:1519 msgid "Reload C_urrent Theme" -msgstr "" +msgstr "Презареждане на текущия изглед" -#: app/dialogs/preferences-dialog.c:1531 app/dialogs/preferences-dialog.c:1534 +#: ../app/dialogs/preferences-dialog.c:1531 +#: ../app/dialogs/preferences-dialog.c:1534 msgid "Help System" msgstr "Система за помощ" -#: app/dialogs/preferences-dialog.c:1546 +#: ../app/dialogs/preferences-dialog.c:1546 msgid "Show tool _tips" -msgstr "" +msgstr "Показване на _подсказки" -#: app/dialogs/preferences-dialog.c:1549 +#: ../app/dialogs/preferences-dialog.c:1549 msgid "Show help _buttons" msgstr "Показване на _бутоните на помощта" -#: app/dialogs/preferences-dialog.c:1552 +#: ../app/dialogs/preferences-dialog.c:1552 msgid "Show tips on _startup" msgstr "Показване на съвети при начално _зареждане" #. Help Browser -#: app/dialogs/preferences-dialog.c:1556 +#: ../app/dialogs/preferences-dialog.c:1556 msgid "Help Browser" msgstr "Четец за помощта" -#: app/dialogs/preferences-dialog.c:1560 +#: ../app/dialogs/preferences-dialog.c:1560 msgid "H_elp browser to use:" msgstr "Четец за _помощта:" -#: app/dialogs/preferences-dialog.c:1565 +#: ../app/dialogs/preferences-dialog.c:1565 msgid "Web Browser" msgstr "Уеб-четец" -#: app/dialogs/preferences-dialog.c:1569 +#: ../app/dialogs/preferences-dialog.c:1569 msgid "Select web browser" msgstr "Избор на уеб-четец" -#: app/dialogs/preferences-dialog.c:1572 +#: ../app/dialogs/preferences-dialog.c:1572 msgid "_Web browser to use:" msgstr "_Използване на:" #. Snapping Distance -#: app/dialogs/preferences-dialog.c:1597 +#: ../app/dialogs/preferences-dialog.c:1597 msgid "Guide and Grid Snapping" msgstr "" -#: app/dialogs/preferences-dialog.c:1602 +#: ../app/dialogs/preferences-dialog.c:1602 msgid "_Snap distance:" msgstr "" #. Contiguous Regions -#: app/dialogs/preferences-dialog.c:1606 +#: ../app/dialogs/preferences-dialog.c:1606 msgid "Finding Contiguous Regions" msgstr "Откриване на непрекъснати области" -#: app/dialogs/preferences-dialog.c:1611 +#: ../app/dialogs/preferences-dialog.c:1611 msgid "Default _threshold:" msgstr "" #. Scaling -#: app/dialogs/preferences-dialog.c:1615 +#: ../app/dialogs/preferences-dialog.c:1615 msgid "Scaling" msgstr "" -#: app/dialogs/preferences-dialog.c:1619 +#: ../app/dialogs/preferences-dialog.c:1619 msgid "Default _interpolation:" msgstr "" #. Global Brush, Pattern, ... -#: app/dialogs/preferences-dialog.c:1623 +#: ../app/dialogs/preferences-dialog.c:1623 msgid "Paint Options Shared Between Tools" msgstr "" -#: app/dialogs/preferences-dialog.c:1636 +#: ../app/dialogs/preferences-dialog.c:1636 msgid "Move Tool" -msgstr "" +msgstr "Инструмент за преместване" -#: app/dialogs/preferences-dialog.c:1640 +#: ../app/dialogs/preferences-dialog.c:1640 msgid "Change current layer or path" msgstr "" -#: app/dialogs/preferences-dialog.c:1653 app/dialogs/preferences-dialog.c:1656 +#: ../app/dialogs/preferences-dialog.c:1653 +#: ../app/dialogs/preferences-dialog.c:1656 msgid "Toolbox" msgstr "Кутия с инструменти" #. Appearance -#: app/dialogs/preferences-dialog.c:1663 app/dialogs/preferences-dialog.c:1760 -#: app/widgets/gimpgrideditor.c:206 +#: ../app/dialogs/preferences-dialog.c:1663 +#: ../app/dialogs/preferences-dialog.c:1760 +#: ../app/widgets/gimpgrideditor.c:206 msgid "Appearance" msgstr "Изглед" -#: app/dialogs/preferences-dialog.c:1667 +#: ../app/dialogs/preferences-dialog.c:1667 msgid "Show _foreground & background color" msgstr "Показване на _цвета на предния план и фона" -#: app/dialogs/preferences-dialog.c:1671 +#: ../app/dialogs/preferences-dialog.c:1671 msgid "Show active _brush, pattern & gradient" msgstr "" -#: app/dialogs/preferences-dialog.c:1675 +#: ../app/dialogs/preferences-dialog.c:1675 msgid "Show active _image" msgstr "Показване на текущото _изображение" -#: app/dialogs/preferences-dialog.c:1685 app/dialogs/preferences-dialog.c:1688 +#: ../app/dialogs/preferences-dialog.c:1685 +#: ../app/dialogs/preferences-dialog.c:1688 msgid "Image Windows" msgstr "Прозорци на изображенията" -#: app/dialogs/preferences-dialog.c:1700 +#: ../app/dialogs/preferences-dialog.c:1700 msgid "Use \"_Dot for dot\" by default" msgstr "" -#: app/dialogs/preferences-dialog.c:1706 +#: ../app/dialogs/preferences-dialog.c:1706 msgid "Marching _ants speed:" msgstr "" #. Zoom & Resize Behavior -#: app/dialogs/preferences-dialog.c:1710 +#: ../app/dialogs/preferences-dialog.c:1710 msgid "Zoom & Resize Behavior" msgstr "" -#: app/dialogs/preferences-dialog.c:1714 +#: ../app/dialogs/preferences-dialog.c:1714 msgid "Resize window on _zoom" msgstr "" -#: app/dialogs/preferences-dialog.c:1717 +#: ../app/dialogs/preferences-dialog.c:1717 msgid "Resize window on image _size change" msgstr "" -#: app/dialogs/preferences-dialog.c:1723 +#: ../app/dialogs/preferences-dialog.c:1723 msgid "Fit to window" msgstr "" -#: app/dialogs/preferences-dialog.c:1725 +#: ../app/dialogs/preferences-dialog.c:1725 msgid "Initial zoom _ratio:" msgstr "" #. Mouse Cursors -#: app/dialogs/preferences-dialog.c:1729 +#: ../app/dialogs/preferences-dialog.c:1729 msgid "Mouse Cursors" -msgstr "" +msgstr "Курсор на мишката" -#: app/dialogs/preferences-dialog.c:1733 +#: ../app/dialogs/preferences-dialog.c:1733 msgid "Show _brush outline" msgstr "" -#: app/dialogs/preferences-dialog.c:1736 +#: ../app/dialogs/preferences-dialog.c:1736 msgid "Show paint _tool cursor" msgstr "" -#: app/dialogs/preferences-dialog.c:1742 +#: ../app/dialogs/preferences-dialog.c:1742 msgid "Cursor _mode:" -msgstr "" +msgstr "_Вид на курсора:" -#: app/dialogs/preferences-dialog.c:1745 +#: ../app/dialogs/preferences-dialog.c:1745 msgid "Cursor re_ndering:" -msgstr "" +msgstr "_Изобразяване на курсора:" -#: app/dialogs/preferences-dialog.c:1757 +#: ../app/dialogs/preferences-dialog.c:1757 msgid "Image Window Appearance" msgstr "Изглед на прозорците на изображенията" -#: app/dialogs/preferences-dialog.c:1768 +#: ../app/dialogs/preferences-dialog.c:1768 msgid "Default Appearance in Normal Mode" msgstr "" -#: app/dialogs/preferences-dialog.c:1773 +#: ../app/dialogs/preferences-dialog.c:1773 msgid "Default Appearance in Fullscreen Mode" msgstr "" -#: app/dialogs/preferences-dialog.c:1782 +#: ../app/dialogs/preferences-dialog.c:1782 msgid "Image Title & Statusbar Format" msgstr "" -#: app/dialogs/preferences-dialog.c:1785 +#: ../app/dialogs/preferences-dialog.c:1785 msgid "Title & Status" -msgstr "" +msgstr "Заглавие и състояние" -#: app/dialogs/preferences-dialog.c:1805 +#: ../app/dialogs/preferences-dialog.c:1805 msgid "Standard" msgstr "" -#: app/dialogs/preferences-dialog.c:1806 +#: ../app/dialogs/preferences-dialog.c:1806 msgid "Show zoom percentage" msgstr "" -#: app/dialogs/preferences-dialog.c:1807 +#: ../app/dialogs/preferences-dialog.c:1807 msgid "Show zoom ratio" msgstr "" -#: app/dialogs/preferences-dialog.c:1808 +#: ../app/dialogs/preferences-dialog.c:1808 msgid "Show image size" msgstr "" -#: app/dialogs/preferences-dialog.c:1809 +#: ../app/dialogs/preferences-dialog.c:1809 +#, fuzzy msgid "Show memory usage" -msgstr "" +msgstr "Показване на _менюто" -#: app/dialogs/preferences-dialog.c:1820 +#: ../app/dialogs/preferences-dialog.c:1820 msgid "Image Title Format" -msgstr "" +msgstr "Формат на заглавието на прозорците" -#: app/dialogs/preferences-dialog.c:1821 +#: ../app/dialogs/preferences-dialog.c:1821 msgid "Image Statusbar Format" -msgstr "" +msgstr "Формат на ивицата за състоянието" -#: app/dialogs/preferences-dialog.c:1906 app/dialogs/preferences-dialog.c:1909 +#: ../app/dialogs/preferences-dialog.c:1906 +#: ../app/dialogs/preferences-dialog.c:1909 msgid "Display" msgstr "" -#: app/dialogs/preferences-dialog.c:1922 +#: ../app/dialogs/preferences-dialog.c:1922 msgid "Transparency _type:" msgstr "Вид _прозрачност:" -#: app/dialogs/preferences-dialog.c:1925 +#: ../app/dialogs/preferences-dialog.c:1925 msgid "Check _size:" msgstr "" -#: app/dialogs/preferences-dialog.c:1928 +#: ../app/dialogs/preferences-dialog.c:1928 msgid "Get Monitor Resolution" msgstr "" -#: app/dialogs/preferences-dialog.c:1970 +#: ../app/dialogs/preferences-dialog.c:1970 #, c-format msgid "From _windowing system (currently %d x %d dpi)" msgstr "" -#: app/dialogs/preferences-dialog.c:1993 +#: ../app/dialogs/preferences-dialog.c:1993 msgid "_Manually" msgstr "_Ръчно" -#: app/dialogs/preferences-dialog.c:2008 +#: ../app/dialogs/preferences-dialog.c:2008 msgid "C_alibrate..." msgstr "" -#: app/dialogs/preferences-dialog.c:2028 app/dialogs/preferences-dialog.c:2031 +#: ../app/dialogs/preferences-dialog.c:2028 +#: ../app/dialogs/preferences-dialog.c:2031 msgid "Input Devices" msgstr "Входни устройства" #. Extended Input Devices -#: app/dialogs/preferences-dialog.c:2038 +#: ../app/dialogs/preferences-dialog.c:2038 msgid "Extended Input Devices" msgstr "" -#: app/dialogs/preferences-dialog.c:2042 +#: ../app/dialogs/preferences-dialog.c:2042 msgid "Configure E_xtended Input Devices..." msgstr "" -#: app/dialogs/preferences-dialog.c:2049 +#: ../app/dialogs/preferences-dialog.c:2049 msgid "_Save input device settings on exit" msgstr "_Запазване настройките на входното устройство при изход" -#: app/dialogs/preferences-dialog.c:2053 +#: ../app/dialogs/preferences-dialog.c:2053 msgid "Save Input Device Settings _Now" msgstr "Запазване настройките на входното устройство _сега" -#: app/dialogs/preferences-dialog.c:2060 +#: ../app/dialogs/preferences-dialog.c:2060 msgid "_Reset Saved Input Device Settings to Default Values" msgstr "_Връщане на подразбиращите се настройки на входните устройства" -#: app/dialogs/preferences-dialog.c:2075 +#: ../app/dialogs/preferences-dialog.c:2075 msgid "Additional Input Controllers" msgstr "" -#: app/dialogs/preferences-dialog.c:2078 +#: ../app/dialogs/preferences-dialog.c:2078 msgid "Input Controllers" msgstr "" -#: app/dialogs/preferences-dialog.c:2119 app/dialogs/preferences-dialog.c:2122 +#: ../app/dialogs/preferences-dialog.c:2119 +#: ../app/dialogs/preferences-dialog.c:2122 msgid "Window Management" msgstr "Управление на прозорците" -#: app/dialogs/preferences-dialog.c:2128 +#: ../app/dialogs/preferences-dialog.c:2128 msgid "Window Manager Hints" msgstr "" -#: app/dialogs/preferences-dialog.c:2134 +#: ../app/dialogs/preferences-dialog.c:2134 msgid "Hint for the _toolbox:" msgstr "" -#: app/dialogs/preferences-dialog.c:2138 +#: ../app/dialogs/preferences-dialog.c:2138 msgid "Hint for the _docks:" msgstr "" -#: app/dialogs/preferences-dialog.c:2141 +#: ../app/dialogs/preferences-dialog.c:2141 msgid "Focus" msgstr "" -#: app/dialogs/preferences-dialog.c:2145 +#: ../app/dialogs/preferences-dialog.c:2145 msgid "Activate the _focused image" msgstr "" #. Window Positions -#: app/dialogs/preferences-dialog.c:2149 +#: ../app/dialogs/preferences-dialog.c:2149 msgid "Window Positions" msgstr "Разположение на прозорците" -#: app/dialogs/preferences-dialog.c:2152 +#: ../app/dialogs/preferences-dialog.c:2152 msgid "_Save window positions on exit" msgstr "_Запомняне на разположението при излизане" -#: app/dialogs/preferences-dialog.c:2156 +#: ../app/dialogs/preferences-dialog.c:2156 msgid "Save Window Positions _Now" msgstr "Запомняне на разположението _сега" -#: app/dialogs/preferences-dialog.c:2163 +#: ../app/dialogs/preferences-dialog.c:2163 msgid "_Reset Saved Window Positions to Default Values" msgstr "_Връщане на подразбиращите се разположения" -#: app/dialogs/preferences-dialog.c:2178 app/dialogs/preferences-dialog.c:2181 -#: app/dialogs/preferences-dialog.c:2329 +#: ../app/dialogs/preferences-dialog.c:2178 +#: ../app/dialogs/preferences-dialog.c:2181 +#: ../app/dialogs/preferences-dialog.c:2329 msgid "Environment" msgstr "Обкръжение" -#: app/dialogs/preferences-dialog.c:2189 +#: ../app/dialogs/preferences-dialog.c:2189 msgid "Resource Consumption" msgstr "" -#: app/dialogs/preferences-dialog.c:2199 +#: ../app/dialogs/preferences-dialog.c:2199 msgid "Minimal number of _undo levels:" msgstr "" -#: app/dialogs/preferences-dialog.c:2202 +#: ../app/dialogs/preferences-dialog.c:2202 msgid "Maximum undo _memory:" msgstr "" -#: app/dialogs/preferences-dialog.c:2205 +#: ../app/dialogs/preferences-dialog.c:2205 msgid "Tile cache _size:" msgstr "" -#: app/dialogs/preferences-dialog.c:2208 +#: ../app/dialogs/preferences-dialog.c:2208 msgid "Maximum _new image size:" msgstr "" -#: app/dialogs/preferences-dialog.c:2213 +#: ../app/dialogs/preferences-dialog.c:2213 msgid "Number of _processors to use:" msgstr "" #. Image Thumbnails -#: app/dialogs/preferences-dialog.c:2218 +#: ../app/dialogs/preferences-dialog.c:2218 msgid "Image Thumbnails" msgstr "" -#: app/dialogs/preferences-dialog.c:2223 +#: ../app/dialogs/preferences-dialog.c:2223 msgid "Size of _thumbnails:" msgstr "" -#: app/dialogs/preferences-dialog.c:2227 +#: ../app/dialogs/preferences-dialog.c:2227 msgid "Maximum _filesize for thumbnailing:" msgstr "" #. File Saving -#: app/dialogs/preferences-dialog.c:2231 +#: ../app/dialogs/preferences-dialog.c:2231 msgid "Saving Images" msgstr "Запазване на изображенията" -#: app/dialogs/preferences-dialog.c:2234 +#: ../app/dialogs/preferences-dialog.c:2234 msgid "Confirm closing of unsa_ved images" msgstr "Потвърждаване затварянето на не_запазени изображения" -#: app/dialogs/preferences-dialog.c:2245 app/dialogs/preferences-dialog.c:2248 +#: ../app/dialogs/preferences-dialog.c:2245 +#: ../app/dialogs/preferences-dialog.c:2248 msgid "Folders" msgstr "Папки" -#: app/dialogs/preferences-dialog.c:2263 +#: ../app/dialogs/preferences-dialog.c:2263 msgid "Temp folder:" msgstr "" -#: app/dialogs/preferences-dialog.c:2263 +#: ../app/dialogs/preferences-dialog.c:2263 msgid "Select Temp Folder" msgstr "" -#: app/dialogs/preferences-dialog.c:2264 -#: app/dialogs/user-install-dialog.c:1403 +#: ../app/dialogs/preferences-dialog.c:2264 +#: ../app/dialogs/user-install-dialog.c:1403 msgid "Swap folder:" msgstr "" -#: app/dialogs/preferences-dialog.c:2264 +#: ../app/dialogs/preferences-dialog.c:2264 msgid "Select Swap Folder" msgstr "" -#: app/dialogs/preferences-dialog.c:2297 +#: ../app/dialogs/preferences-dialog.c:2297 msgid "Brush Folders" msgstr "Папки с четки" -#: app/dialogs/preferences-dialog.c:2299 +#: ../app/dialogs/preferences-dialog.c:2299 msgid "Select Brush Folders" msgstr "" -#: app/dialogs/preferences-dialog.c:2301 +#: ../app/dialogs/preferences-dialog.c:2301 msgid "Pattern Folders" msgstr "" -#: app/dialogs/preferences-dialog.c:2303 +#: ../app/dialogs/preferences-dialog.c:2303 msgid "Select Pattern Folders" msgstr "" -#: app/dialogs/preferences-dialog.c:2305 +#: ../app/dialogs/preferences-dialog.c:2305 msgid "Palette Folders" msgstr "Папки с палитри" -#: app/dialogs/preferences-dialog.c:2307 +#: ../app/dialogs/preferences-dialog.c:2307 msgid "Select Palette Folders" msgstr "" -#: app/dialogs/preferences-dialog.c:2309 +#: ../app/dialogs/preferences-dialog.c:2309 msgid "Gradient Folders" msgstr "Папки с преливки" -#: app/dialogs/preferences-dialog.c:2311 +#: ../app/dialogs/preferences-dialog.c:2311 msgid "Select Gradient Folders" msgstr "" -#: app/dialogs/preferences-dialog.c:2313 +#: ../app/dialogs/preferences-dialog.c:2313 msgid "Font Folders" msgstr "Папки с шрифтове" -#: app/dialogs/preferences-dialog.c:2315 +#: ../app/dialogs/preferences-dialog.c:2315 msgid "Select Font Folders" msgstr "" -#: app/dialogs/preferences-dialog.c:2317 +#: ../app/dialogs/preferences-dialog.c:2317 msgid "Plug-In Folders" msgstr "Папки с приставки" -#: app/dialogs/preferences-dialog.c:2319 +#: ../app/dialogs/preferences-dialog.c:2319 msgid "Select Plug-In Folders" msgstr "" -#: app/dialogs/preferences-dialog.c:2321 +#: ../app/dialogs/preferences-dialog.c:2321 msgid "Scripts" msgstr "Скриптове" -#: app/dialogs/preferences-dialog.c:2321 +#: ../app/dialogs/preferences-dialog.c:2321 msgid "Script-Fu Folders" msgstr "Папки със скриптове" -#: app/dialogs/preferences-dialog.c:2323 +#: ../app/dialogs/preferences-dialog.c:2323 msgid "Select Script-Fu Folders" msgstr "" -#: app/dialogs/preferences-dialog.c:2325 +#: ../app/dialogs/preferences-dialog.c:2325 msgid "Module Folders" msgstr "Папки с модули" -#: app/dialogs/preferences-dialog.c:2327 +#: ../app/dialogs/preferences-dialog.c:2327 msgid "Select Module Folders" msgstr "" -#: app/dialogs/preferences-dialog.c:2329 +#: ../app/dialogs/preferences-dialog.c:2329 msgid "Environment Folders" -msgstr "" +msgstr "Папки на обкръжението" -#: app/dialogs/preferences-dialog.c:2331 +#: ../app/dialogs/preferences-dialog.c:2331 msgid "Select Environment Folders" msgstr "" -#: app/dialogs/preferences-dialog.c:2333 +#: ../app/dialogs/preferences-dialog.c:2333 msgid "Themes" -msgstr "" +msgstr "Изгледи" -#: app/dialogs/preferences-dialog.c:2333 +#: ../app/dialogs/preferences-dialog.c:2333 msgid "Theme Folders" -msgstr "" +msgstr "Папки с изгледи" -#: app/dialogs/preferences-dialog.c:2335 +#: ../app/dialogs/preferences-dialog.c:2335 msgid "Select Theme Folders" -msgstr "" +msgstr "Избор на папки с изгледи" -#: app/dialogs/print-size-dialog.c:128 +#: ../app/dialogs/print-size-dialog.c:128 msgid "Print Size" msgstr "" #. the image size labels -#: app/dialogs/print-size-dialog.c:155 app/widgets/gimpsizebox.c:223 -#: app/widgets/gimptemplateeditor.c:236 +#: ../app/dialogs/print-size-dialog.c:155 ../app/widgets/gimpsizebox.c:223 +#: ../app/widgets/gimptemplateeditor.c:236 msgid "_Width:" msgstr "_Широчина:" -#: app/dialogs/print-size-dialog.c:162 app/widgets/gimpsizebox.c:227 -#: app/widgets/gimptemplateeditor.c:243 +#: ../app/dialogs/print-size-dialog.c:162 ../app/widgets/gimpsizebox.c:227 +#: ../app/widgets/gimptemplateeditor.c:243 msgid "H_eight:" msgstr "Висо_чина:" #. the resolution labels -#: app/dialogs/print-size-dialog.c:210 app/widgets/gimpsizebox.c:276 -#: app/widgets/gimptemplateeditor.c:363 +#: ../app/dialogs/print-size-dialog.c:210 ../app/widgets/gimpsizebox.c:276 +#: ../app/widgets/gimptemplateeditor.c:363 msgid "_X resolution:" msgstr "" -#: app/dialogs/print-size-dialog.c:217 app/widgets/gimpsizebox.c:279 -#: app/widgets/gimptemplateeditor.c:370 +#: ../app/dialogs/print-size-dialog.c:217 ../app/widgets/gimpsizebox.c:279 +#: ../app/widgets/gimptemplateeditor.c:370 msgid "_Y resolution:" msgstr "" -#: app/dialogs/print-size-dialog.c:228 app/widgets/gimpsizebox.c:272 -#: app/widgets/gimptemplateeditor.c:383 +#: ../app/dialogs/print-size-dialog.c:228 ../app/widgets/gimpsizebox.c:272 +#: ../app/widgets/gimptemplateeditor.c:383 #, c-format msgid "pixels/%a" msgstr "" -#: app/dialogs/quit-dialog.c:84 +#: ../app/dialogs/quit-dialog.c:84 msgid "Quit The GIMP" msgstr "Излизане от GIMP" -#: app/dialogs/quit-dialog.c:126 +#: ../app/dialogs/quit-dialog.c:126 msgid "If you quit GIMP now, these changes will be lost." msgstr "Ако напуснете GIMP сега, тези промени ще бъдат изгубени." -#: app/dialogs/quit-dialog.c:164 +#: ../app/dialogs/quit-dialog.c:164 msgid "There is one image with unsaved changes:" msgstr "Има едно изображение с незапазени промени:" -#: app/dialogs/quit-dialog.c:167 +#: ../app/dialogs/quit-dialog.c:167 #, c-format msgid "There are %d images with unsaved changes:" msgstr "Има %d изображения с незапазени промени:" -#: app/dialogs/quit-dialog.c:183 +#: ../app/dialogs/quit-dialog.c:183 msgid "_Discard Changes" msgstr "От_хвърляне на промените" -#: app/dialogs/resize-dialog.c:115 +#: ../app/dialogs/resize-dialog.c:115 msgid "Canvas Size" msgstr "" -#: app/dialogs/resize-dialog.c:126 app/dialogs/scale-dialog.c:107 +#: ../app/dialogs/resize-dialog.c:126 ../app/dialogs/scale-dialog.c:107 msgid "Layer Size" msgstr "Размери на слоя:" -#: app/dialogs/resolution-calibrate-dialog.c:67 +#: ../app/dialogs/resolution-calibrate-dialog.c:67 msgid "Calibrate Monitor Resolution" msgstr "" -#: app/dialogs/resolution-calibrate-dialog.c:120 +#: ../app/dialogs/resolution-calibrate-dialog.c:120 msgid "Measure the rulers and enter their lengths:" msgstr "" -#: app/dialogs/resolution-calibrate-dialog.c:145 +#: ../app/dialogs/resolution-calibrate-dialog.c:145 msgid "_Horizontal:" msgstr "" -#: app/dialogs/resolution-calibrate-dialog.c:150 +#: ../app/dialogs/resolution-calibrate-dialog.c:150 msgid "_Vertical:" msgstr "" #. Image size frame -#: app/dialogs/scale-dialog.c:96 app/widgets/gimptemplateeditor.c:214 +#: ../app/dialogs/scale-dialog.c:96 ../app/widgets/gimptemplateeditor.c:214 msgid "Image Size" msgstr "Размер на изображението" -#: app/dialogs/scale-dialog.c:166 +#: ../app/dialogs/scale-dialog.c:166 msgid "Quality" msgstr "Качество" -#: app/dialogs/scale-dialog.c:178 +#: ../app/dialogs/scale-dialog.c:178 msgid "I_nterpolation:" msgstr "" -#: app/dialogs/scale-dialog.c:192 +#: ../app/dialogs/scale-dialog.c:192 msgid "" "Indexed color layers are always scaled without interpolation. The chosen " "interpolation type will affect channels and masks only." msgstr "" -#: app/dialogs/stroke-dialog.c:104 +#: ../app/dialogs/stroke-dialog.c:104 msgid "Choose Stroke Style" msgstr "" -#: app/dialogs/stroke-dialog.c:209 +#: ../app/dialogs/stroke-dialog.c:209 msgid "Paint Tool:" msgstr "" -#: app/dialogs/tips-dialog.c:90 +#: ../app/dialogs/tips-dialog.c:90 msgid "Your GIMP tips file appears to be missing!" msgstr "" -#: app/dialogs/tips-dialog.c:92 +#: ../app/dialogs/tips-dialog.c:92 #, c-format msgid "There should be a file called '%s'. Please check your installation." msgstr "" -#: app/dialogs/tips-dialog.c:98 +#: ../app/dialogs/tips-dialog.c:98 msgid "The GIMP tips file could not be parsed!" msgstr "" -#: app/dialogs/tips-dialog.c:131 +#: ../app/dialogs/tips-dialog.c:131 msgid "GIMP Tip of the Day" msgstr "Съвет за деня от GIMP" -#: app/dialogs/tips-dialog.c:195 +#: ../app/dialogs/tips-dialog.c:195 msgid "Show tip next time GIMP starts" msgstr "Показване на съвет и следващия път" -#: app/dialogs/tips-dialog.c:219 +#: ../app/dialogs/tips-dialog.c:219 msgid "_Previous tip" msgstr "_Предишен съвет" -#: app/dialogs/tips-dialog.c:228 +#: ../app/dialogs/tips-dialog.c:228 msgid "_Next tip" msgstr "_Следващ съвет" @@ -6724,24 +6775,24 @@ #. according to the name of the po file used for gimp-tips.xml. #. E.g. for the german translation, that would be "tips-locale:de". #. -#: app/dialogs/tips-parser.c:165 +#: ../app/dialogs/tips-parser.c:165 msgid "tips-locale:C" msgstr "tips-locale:bg" -#: app/dialogs/user-install-dialog.c:134 +#: ../app/dialogs/user-install-dialog.c:134 msgid "" "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." msgstr "" -#: app/dialogs/user-install-dialog.c:143 +#: ../app/dialogs/user-install-dialog.c:143 msgid "" "GIMP uses an additional gtkrc file so you can configure it to look " "differently than other GTK apps." msgstr "" -#: app/dialogs/user-install-dialog.c:149 +#: ../app/dialogs/user-install-dialog.c:149 msgid "" "Plug-ins and extensions are external programs run by the GIMP which provide " "additional functionality. These programs are searched for at run-time and " @@ -6754,7 +6805,7 @@ "Този файл е предназначен за четене само от GIMP и не трябва да бъде " "редактиран ръчно." -#: app/dialogs/user-install-dialog.c:159 +#: ../app/dialogs/user-install-dialog.c:159 msgid "" "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 " @@ -6762,20 +6813,20 @@ "from within The GIMP. Deleting this file will restore the default shortcuts." msgstr "" -#: app/dialogs/user-install-dialog.c:169 +#: ../app/dialogs/user-install-dialog.c:169 msgid "" "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." msgstr "" -#: app/dialogs/user-install-dialog.c:176 +#: ../app/dialogs/user-install-dialog.c:176 msgid "" "This file holds a collection of standard media sizes that serve as image " "templates." msgstr "" -#: app/dialogs/user-install-dialog.c:182 +#: ../app/dialogs/user-install-dialog.c:182 msgid "" "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, " @@ -6783,14 +6834,14 @@ "the GIMP." msgstr "" -#: app/dialogs/user-install-dialog.c:191 +#: ../app/dialogs/user-install-dialog.c:191 msgid "" "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." msgstr "" -#: app/dialogs/user-install-dialog.c:199 +#: ../app/dialogs/user-install-dialog.c:199 msgid "" "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 " @@ -6798,35 +6849,35 @@ "have GIMP-only fonts, otherwise put things in your global font directory." msgstr "" -#: app/dialogs/user-install-dialog.c:209 +#: ../app/dialogs/user-install-dialog.c:209 msgid "" "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." msgstr "" -#: app/dialogs/user-install-dialog.c:216 +#: ../app/dialogs/user-install-dialog.c:216 msgid "" "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." msgstr "" -#: app/dialogs/user-install-dialog.c:223 +#: ../app/dialogs/user-install-dialog.c:223 msgid "" "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." msgstr "" -#: app/dialogs/user-install-dialog.c:230 +#: ../app/dialogs/user-install-dialog.c:230 msgid "" "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." msgstr "" -#: app/dialogs/user-install-dialog.c:238 +#: ../app/dialogs/user-install-dialog.c:238 msgid "" "This folder is used to store user created, temporary, or otherwise non-" "system-supported DLL modules. The GIMP checks this folder in addition to " @@ -6834,7 +6885,7 @@ "initialization." msgstr "" -#: app/dialogs/user-install-dialog.c:247 +#: ../app/dialogs/user-install-dialog.c:247 msgid "" "This folder is used to store user created, temporary, or otherwise non-" "system-supported additions to the plug-in environment. The GIMP checks this " @@ -6842,22 +6893,22 @@ "for plug-in environment modification files." msgstr "" -#: app/dialogs/user-install-dialog.c:257 +#: ../app/dialogs/user-install-dialog.c:257 msgid "" "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." msgstr "" -#: app/dialogs/user-install-dialog.c:265 +#: ../app/dialogs/user-install-dialog.c:265 msgid "This folder is searched for image templates." msgstr "" -#: app/dialogs/user-install-dialog.c:270 +#: ../app/dialogs/user-install-dialog.c:270 msgid "This folder is searched for user-installed themes." -msgstr "" +msgstr "Тази папка се претърсва за инсталирани от потребителя изгледи." -#: app/dialogs/user-install-dialog.c:275 +#: ../app/dialogs/user-install-dialog.c:275 msgid "" "This folder is used to temporarily store undo buffers to reduce memory " "usage. If The GIMP is unceremoniously killed, files of the form: gimp<#>." @@ -6865,37 +6916,37 @@ "sessions and can be destroyed with impunity." msgstr "" -#: app/dialogs/user-install-dialog.c:284 +#: ../app/dialogs/user-install-dialog.c:284 msgid "This folder is used to store tool options." msgstr "" -#: app/dialogs/user-install-dialog.c:289 +#: ../app/dialogs/user-install-dialog.c:289 msgid "This folder is used to store parameter files for the Curves tool." msgstr "" -#: app/dialogs/user-install-dialog.c:294 +#: ../app/dialogs/user-install-dialog.c:294 msgid "This folder is used to store parameter files for the Levels tool." msgstr "" -#: app/dialogs/user-install-dialog.c:390 +#: ../app/dialogs/user-install-dialog.c:390 msgid "Installation successful. Click \"Continue\" to proceed." msgstr "Инсталацията е успешна. Натиснете \"Продължаване\"." -#: app/dialogs/user-install-dialog.c:396 +#: ../app/dialogs/user-install-dialog.c:396 msgid "Installation failed. Contact system administrator." msgstr "" -#: app/dialogs/user-install-dialog.c:609 +#: ../app/dialogs/user-install-dialog.c:609 msgid "GIMP User Installation" msgstr "" -#: app/dialogs/user-install-dialog.c:614 +#: ../app/dialogs/user-install-dialog.c:614 msgid "Continue" msgstr "Продължаване" #. GPL_PAGE #. version number -#: app/dialogs/user-install-dialog.c:765 +#: ../app/dialogs/user-install-dialog.c:765 #, c-format msgid "" "Welcome to\n" @@ -6904,11 +6955,11 @@ "Добре дошли\n" "в потребителската инсталация на The GIMP %d.%d" -#: app/dialogs/user-install-dialog.c:771 +#: ../app/dialogs/user-install-dialog.c:771 msgid "Click \"Continue\" to enter the GIMP user installation." msgstr "" -#: app/dialogs/user-install-dialog.c:778 +#: ../app/dialogs/user-install-dialog.c:778 msgid "" "The GIMP - GNU Image Manipulation Program\n" "Copyright (C) 1995-2004\n" @@ -6918,7 +6969,7 @@ "Copyright (C) 1995-2004\n" "Spencer Kimball, Peter Mattis и екипът за разработка на the GIMP" -#: app/dialogs/user-install-dialog.c:788 +#: ../app/dialogs/user-install-dialog.c:788 msgid "" "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 " @@ -6926,7 +6977,7 @@ "any later version." msgstr "" -#: app/dialogs/user-install-dialog.c:794 +#: ../app/dialogs/user-install-dialog.c:794 msgid "" "This program is distributed in the hope that it will be useful, but WITHOUT " "ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or " @@ -6934,42 +6985,43 @@ "more details." msgstr "" -#: app/dialogs/user-install-dialog.c:800 +#: ../app/dialogs/user-install-dialog.c:800 msgid "" "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." msgstr "" -#: app/dialogs/user-install-dialog.c:810 +#: ../app/dialogs/user-install-dialog.c:810 msgid "Migrate User Settings" msgstr "" -#: app/dialogs/user-install-dialog.c:811 +#: ../app/dialogs/user-install-dialog.c:811 msgid "Click \"Continue\" to proceed with the user installation." msgstr "" -#: app/dialogs/user-install-dialog.c:816 +#: ../app/dialogs/user-install-dialog.c:816 +#, fuzzy msgid "It seems you have used GIMP 2.0 before." -msgstr "Изглежда преди сте използвали GIMP версия 2.0." +msgstr "Изглежда преди сте използвали GIMP версия %s." -#: app/dialogs/user-install-dialog.c:820 +#: ../app/dialogs/user-install-dialog.c:820 msgid "_Migrate GIMP 2.0 user settings" msgstr "" -#: app/dialogs/user-install-dialog.c:823 +#: ../app/dialogs/user-install-dialog.c:823 msgid "Do a _fresh user installation" msgstr "" -#: app/dialogs/user-install-dialog.c:851 +#: ../app/dialogs/user-install-dialog.c:851 msgid "Personal GIMP Folder" msgstr "Лична GIMP папка" -#: app/dialogs/user-install-dialog.c:852 +#: ../app/dialogs/user-install-dialog.c:852 msgid "Click \"Continue\" to create your personal GIMP folder." msgstr "" -#: app/dialogs/user-install-dialog.c:896 +#: ../app/dialogs/user-install-dialog.c:896 #, c-format msgid "" "For a proper GIMP installation, a folder named '%s' needs to be " @@ -6978,60 +7030,60 @@ "За правилната инсталация на GIMP трябва да бъде създадена папката '%s'." -#: app/dialogs/user-install-dialog.c:903 +#: ../app/dialogs/user-install-dialog.c:903 msgid "" "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." msgstr "" -#: app/dialogs/user-install-dialog.c:991 +#: ../app/dialogs/user-install-dialog.c:991 msgid "User Installation Log" msgstr "" -#: app/dialogs/user-install-dialog.c:992 +#: ../app/dialogs/user-install-dialog.c:992 msgid "Please wait while your personal GIMP folder is being created..." msgstr "" -#: app/dialogs/user-install-dialog.c:999 +#: ../app/dialogs/user-install-dialog.c:999 msgid "GIMP Performance Tuning" msgstr "" -#: app/dialogs/user-install-dialog.c:1000 +#: ../app/dialogs/user-install-dialog.c:1000 msgid "Click \"Continue\" to accept the settings above." msgstr "" -#: app/dialogs/user-install-dialog.c:1005 +#: ../app/dialogs/user-install-dialog.c:1005 msgid "" "For optimal GIMP performance, some settings may have to be adjusted." msgstr "" -#: app/dialogs/user-install-dialog.c:1065 +#: ../app/dialogs/user-install-dialog.c:1065 #, c-format msgid "Copying file '%s' from '%s'..." msgstr "" -#: app/dialogs/user-install-dialog.c:1084 +#: ../app/dialogs/user-install-dialog.c:1084 #, c-format msgid "Creating folder '%s'..." msgstr "Създаване на папката '%s'..." -#: app/dialogs/user-install-dialog.c:1098 +#: ../app/dialogs/user-install-dialog.c:1098 #, c-format msgid "Cannot create folder '%s': %s" msgstr "Грешка при създаване на папката \"%s\": %s" -#: app/dialogs/user-install-dialog.c:1362 +#: ../app/dialogs/user-install-dialog.c:1362 msgid "" "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." msgstr "" -#: app/dialogs/user-install-dialog.c:1375 +#: ../app/dialogs/user-install-dialog.c:1375 msgid "Tile cache size:" msgstr "" -#: app/dialogs/user-install-dialog.c:1387 +#: ../app/dialogs/user-install-dialog.c:1387 msgid "" "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 " @@ -7039,567 +7091,573 @@ "to use the system-wide temp-dir (\"/tmp\" or \"/var/tmp\")." msgstr "" -#: app/dialogs/user-install-dialog.c:1398 +#: ../app/dialogs/user-install-dialog.c:1398 msgid "Select swap dir" msgstr "" -#: app/dialogs/vectors-export-dialog.c:53 +#: ../app/dialogs/vectors-export-dialog.c:53 msgid "Export Path to SVG" msgstr "" -#: app/dialogs/vectors-export-dialog.c:78 +#: ../app/dialogs/vectors-export-dialog.c:78 msgid "Export the active path" msgstr "" -#: app/dialogs/vectors-export-dialog.c:79 +#: ../app/dialogs/vectors-export-dialog.c:79 msgid "Export all paths from this image" msgstr "" -#: app/dialogs/vectors-import-dialog.c:57 +#: ../app/dialogs/vectors-import-dialog.c:57 msgid "Import Paths from SVG" msgstr "" -#: app/dialogs/vectors-import-dialog.c:83 +#: ../app/dialogs/vectors-import-dialog.c:83 msgid "All Files (*.*)" msgstr "Всички файлове (*.*)" -#: app/dialogs/vectors-import-dialog.c:88 +#: ../app/dialogs/vectors-import-dialog.c:88 msgid "Scalable SVG image (*.svg)" msgstr "" -#: app/dialogs/vectors-import-dialog.c:99 +#: ../app/dialogs/vectors-import-dialog.c:99 msgid "_Merge imported paths" msgstr "" -#: app/dialogs/vectors-import-dialog.c:109 +#: ../app/dialogs/vectors-import-dialog.c:109 msgid "_Scale imported paths to fit image" msgstr "" -#: app/dialogs/vectors-options-dialog.c:113 +#: ../app/dialogs/vectors-options-dialog.c:113 msgid "Path Name:" msgstr "" -#: app/display/display-enums.c:24 +#: ../app/display/display-enums.c:24 msgid "Tool icon" -msgstr "" +msgstr "Икона на инструмента" -#: app/display/display-enums.c:25 +#: ../app/display/display-enums.c:25 msgid "Tool icon with crosshair" -msgstr "" +msgstr "Икона на инструмента с мерник" -#: app/display/display-enums.c:26 +#: ../app/display/display-enums.c:26 msgid "Crosshair only" -msgstr "" +msgstr "Само мерник" -#: app/display/display-enums.c:55 +#: ../app/display/display-enums.c:55 msgid "From theme" -msgstr "" +msgstr "Според изгледа" -#: app/display/display-enums.c:56 +#: ../app/display/display-enums.c:56 msgid "Light check color" msgstr "" -#: app/display/display-enums.c:57 +#: ../app/display/display-enums.c:57 msgid "Dark check color" msgstr "" -#: app/display/display-enums.c:58 +#: ../app/display/display-enums.c:58 msgid "Custom color" -msgstr "" +msgstr "Потребителски цвят" -#: app/display/gimpdisplayshell.c:943 +#: ../app/display/gimpdisplayshell.c:943 msgid "Zoom image when window size changes" msgstr "Промяна на мащаба при промяна размера на прозореца" -#: app/display/gimpdisplayshell.c:963 +#: ../app/display/gimpdisplayshell.c:963 msgid "Toggle Quick Mask" msgstr "" -#: app/display/gimpdisplayshell-close.c:122 -#: app/display/gimpdisplayshell-close.c:185 +#: ../app/display/gimpdisplayshell-close.c:122 +#: ../app/display/gimpdisplayshell-close.c:185 #, c-format msgid "Close %s" msgstr "Затваряне на %s" -#: app/display/gimpdisplayshell-close.c:131 +#: ../app/display/gimpdisplayshell-close.c:131 msgid "Do_n't save" -msgstr "" +msgstr "_Без запазване" -#: app/display/gimpdisplayshell-close.c:192 +#: ../app/display/gimpdisplayshell-close.c:192 #, c-format msgid "Save the changes to image '%s' before closing?" -msgstr "" +msgstr "Да бъдат ли запазени промените в изображението \"%s\" преди затваряне?" -#: app/display/gimpdisplayshell-close.c:209 +#: ../app/display/gimpdisplayshell-close.c:209 #, c-format msgid "If you don't save the image, changes from the last %s will be lost." msgstr "" +"Ако не запазите изображението, промените от последната %s ще бъдат загубени." #. one second, the time period -#: app/display/gimpdisplayshell-close.c:266 +#: ../app/display/gimpdisplayshell-close.c:266 msgid "second" -msgstr "" +msgstr "секунда" -#: app/display/gimpdisplayshell-close.c:269 +#: ../app/display/gimpdisplayshell-close.c:269 #, c-format msgid "%d seconds" msgstr "%d секунди" -#: app/display/gimpdisplayshell-close.c:275 +#: ../app/display/gimpdisplayshell-close.c:275 msgid "minute" -msgstr "" +msgstr "минута" -#: app/display/gimpdisplayshell-close.c:277 +#: ../app/display/gimpdisplayshell-close.c:277 #, c-format msgid "%d minutes" msgstr "%d минути" -#: app/display/gimpdisplayshell-dnd.c:98 +#: ../app/display/gimpdisplayshell-dnd.c:98 msgid "Drop New Layer" msgstr "" -#: app/display/gimpdisplayshell-dnd.c:142 +#: ../app/display/gimpdisplayshell-dnd.c:142 msgid "Drop New Path" msgstr "" -#: app/display/gimpdisplayshell-filter-dialog.c:73 +#: ../app/display/gimpdisplayshell-filter-dialog.c:73 msgid "Color Display Filters" msgstr "" -#: app/display/gimpdisplayshell-filter-dialog.c:76 +#: ../app/display/gimpdisplayshell-filter-dialog.c:76 msgid "Configure Color Display Filters" msgstr "" -#: app/display/gimpdisplayshell-layer-select.c:122 +#: ../app/display/gimpdisplayshell-layer-select.c:122 msgid "Layer Select" msgstr "" -#: app/display/gimpdisplayshell-scale.c:537 +#: ../app/display/gimpdisplayshell-scale.c:537 msgid "Zoom Ratio" msgstr "Мащаб на увеличението" -#: app/display/gimpdisplayshell-scale.c:539 +#: ../app/display/gimpdisplayshell-scale.c:539 msgid "Select Zoom Ratio" msgstr "Избор на увеличение" -#: app/display/gimpdisplayshell-scale.c:574 +#: ../app/display/gimpdisplayshell-scale.c:574 msgid "Zoom Ratio:" msgstr "Мащаб на увеличението:" -#: app/display/gimpdisplayshell-scale.c:601 +#: ../app/display/gimpdisplayshell-scale.c:601 msgid "Zoom:" msgstr "Мащаб:" -#: app/display/gimpdisplayshell-title.c:234 +#: ../app/display/gimpdisplayshell-title.c:234 msgid "RGB-empty" msgstr "" -#: app/display/gimpdisplayshell-title.c:237 +#: ../app/display/gimpdisplayshell-title.c:237 msgid "grayscale-empty" msgstr "" -#: app/display/gimpdisplayshell-title.c:237 +#: ../app/display/gimpdisplayshell-title.c:237 msgid "grayscale" msgstr "" -#: app/display/gimpdisplayshell-title.c:240 +#: ../app/display/gimpdisplayshell-title.c:240 msgid "indexed-empty" msgstr "" -#: app/display/gimpdisplayshell-title.c:240 +#: ../app/display/gimpdisplayshell-title.c:240 msgid "indexed" msgstr "" -#: app/display/gimpdisplayshell-title.c:292 +#: ../app/display/gimpdisplayshell-title.c:292 msgid "(modified)" msgstr "" -#: app/display/gimpdisplayshell-title.c:298 +#: ../app/display/gimpdisplayshell-title.c:298 msgid "(clean)" msgstr "" -#: app/display/gimpdisplayshell-title.c:325 +#: ../app/display/gimpdisplayshell-title.c:325 msgid "1 layer" msgstr "1 слой" -#: app/display/gimpdisplayshell-title.c:325 +#: ../app/display/gimpdisplayshell-title.c:325 #, c-format msgid "%d layers" msgstr "%d слоя" -#: app/display/gimpstatusbar.c:142 +#: ../app/display/gimpstatusbar.c:142 msgid "Shadow type" msgstr "Вид на сенките" -#: app/display/gimpstatusbar.c:143 +#: ../app/display/gimpstatusbar.c:143 msgid "Style of bevel around the statusbar text" msgstr "" -#: app/display/gimpstatusbar.c:218 +#: ../app/display/gimpstatusbar.c:222 msgid "Cancel" msgstr "Прекъсване" -#: app/file/file-open.c:105 app/file/file-save.c:132 +#: ../app/file/file-open.c:105 ../app/file/file-save.c:132 msgid "Unknown file type" msgstr "Неизвестен вид файл" -#: app/file/file-open.c:120 app/file/file-save.c:146 +#: ../app/file/file-open.c:120 ../app/file/file-save.c:146 msgid "Not a regular file" msgstr "" -#: app/file/file-open.c:173 +#: ../app/file/file-open.c:173 msgid "Plug-In returned SUCCESS but did not return an image" msgstr "Приставката върна съобщение SUCCESS, но не върна изображение" -#: app/file/file-open.c:181 +#: ../app/file/file-open.c:181 msgid "Plug-In could not open image" msgstr "Приставката не може да отвори изображението" -#: app/file/file-open.c:417 +#: ../app/file/file-open.c:417 msgid "Image doesn't contain any visible layers" msgstr "Изображението не съдържа видими слоеве" -#: app/file/file-save.c:220 +#: ../app/file/file-save.c:220 msgid "Plug-In could not save image" msgstr "Приставката не може да запише изображението" -#: app/file/file-utils.c:107 +#: ../app/file/file-utils.c:107 msgid "Invalid character sequence in URI" msgstr "" -#: app/gui/session.c:247 app/menus/menus.c:351 app/widgets/gimpdevices.c:218 +#: ../app/gui/session.c:247 ../app/menus/menus.c:351 +#: ../app/widgets/gimpdevices.c:218 #, c-format msgid "Deleting \"%s\" failed: %s" msgstr "Грешка при изтриването на \"%s\": %s" -#: app/gui/splash.c:118 +#: ../app/gui/splash.c:118 msgid "GIMP Startup" msgstr "" -#: app/gui/themes.c:231 app/plug-in/plug-ins.c:254 +#: ../app/gui/themes.c:231 ../app/plug-in/plug-ins.c:254 #, c-format msgid "Writing '%s'\n" msgstr "Записване на '%s'\n" -#: app/gui/themes.c:284 +#: ../app/gui/themes.c:284 #, c-format msgid "Adding theme '%s' (%s)\n" -msgstr "" +msgstr "Добавяне на изглед \"%s\" (%s)\n" -#: app/paint/gimpairbrush.c:69 app/tools/gimpairbrushtool.c:55 +#: ../app/paint/gimpairbrush.c:69 ../app/tools/gimpairbrushtool.c:55 msgid "Airbrush" msgstr "Спрей" -#: app/paint/gimpbrushcore.c:369 +#: ../app/paint/gimpbrushcore.c:369 msgid "No brushes available for use with this tool." msgstr "Няма налични четки за този инструмент." -#: app/paint/gimpclone.c:89 app/tools/gimpclonetool.c:89 +#: ../app/paint/gimpclone.c:89 ../app/tools/gimpclonetool.c:89 msgid "Clone" msgstr "" -#: app/paint/gimpconvolve.c:121 app/tools/gimpconvolvetool.c:70 +#: ../app/paint/gimpconvolve.c:121 ../app/tools/gimpconvolvetool.c:70 msgid "Convolve" msgstr "" -#: app/paint/gimpdodgeburn.c:87 app/tools/gimpdodgeburntool.c:70 +#: ../app/paint/gimpdodgeburn.c:87 ../app/tools/gimpdodgeburntool.c:70 msgid "Dodge/Burn" msgstr "" -#: app/paint/gimperaser.c:64 app/tools/gimperasertool.c:70 +#: ../app/paint/gimperaser.c:64 ../app/tools/gimperasertool.c:70 msgid "Eraser" msgstr "Гума" -#: app/paint/gimppaintbrush.c:65 app/tools/gimppaintbrushtool.c:51 +#: ../app/paint/gimppaintbrush.c:65 ../app/tools/gimppaintbrushtool.c:51 msgid "Paintbrush" msgstr "" -#: app/paint/gimppencil.c:38 app/tools/gimppenciltool.c:51 +#: ../app/paint/gimppencil.c:38 ../app/tools/gimppenciltool.c:51 msgid "Pencil" msgstr "Молив" -#: app/paint/gimpsmudge.c:78 app/tools/gimpsmudgetool.c:54 +#: ../app/paint/gimpsmudge.c:78 ../app/tools/gimpsmudgetool.c:54 msgid "Smudge" msgstr "" -#: app/paint/paint-enums.c:23 +#: ../app/paint/paint-enums.c:23 #, fuzzy msgid "Image source" msgstr "Размер на изображението" -#: app/paint/paint-enums.c:24 +#: ../app/paint/paint-enums.c:24 msgid "Pattern source" msgstr "" -#: app/paint/paint-enums.c:52 +#: ../app/paint/paint-enums.c:52 msgid "Non-aligned" msgstr "" -#: app/paint/paint-enums.c:53 +#: ../app/paint/paint-enums.c:53 msgid "Aligned" msgstr "" -#: app/paint/paint-enums.c:54 +#: ../app/paint/paint-enums.c:54 msgid "Registered" msgstr "" -#: app/paint/paint-enums.c:81 app/widgets/gimpwidgets-constructors.c:60 -#: app/widgets/gimpwidgets-constructors.c:93 +#: ../app/paint/paint-enums.c:81 ../app/widgets/gimpwidgets-constructors.c:60 +#: ../app/widgets/gimpwidgets-constructors.c:93 msgid "Dodge" msgstr "" -#: app/paint/paint-enums.c:82 app/widgets/gimpwidgets-constructors.c:61 -#: app/widgets/gimpwidgets-constructors.c:94 +#: ../app/paint/paint-enums.c:82 ../app/widgets/gimpwidgets-constructors.c:61 +#: ../app/widgets/gimpwidgets-constructors.c:94 msgid "Burn" msgstr "" -#: app/paint/paint-enums.c:109 +#: ../app/paint/paint-enums.c:109 msgid "Blur" msgstr "" -#: app/paint/paint-enums.c:110 +#: ../app/paint/paint-enums.c:110 msgid "Sharpen" msgstr "" -#: app/paint/paint-enums.c:167 +#: ../app/paint/paint-enums.c:167 #, fuzzy msgid "Constant" msgstr "Кон_траст:" -#: app/paint/paint-enums.c:168 app/tools/gimppaintoptions-gui.c:163 +#: ../app/paint/paint-enums.c:168 ../app/tools/gimppaintoptions-gui.c:163 msgid "Incremental" msgstr "" -#: app/pdb/color_cmds.c:140 app/tools/gimpbrightnesscontrasttool.c:85 +#: ../app/pdb/color_cmds.c:140 ../app/tools/gimpbrightnesscontrasttool.c:85 msgid "Brightness-Contrast" msgstr "Яркост и контраст" -#: app/pdb/color_cmds.c:457 app/tools/gimpposterizetool.c:78 +#: ../app/pdb/color_cmds.c:457 ../app/tools/gimpposterizetool.c:78 msgid "Posterize" msgstr "" -#: app/pdb/color_cmds.c:745 app/pdb/color_cmds.c:870 -#: app/tools/gimpcurvestool.c:141 +#: ../app/pdb/color_cmds.c:745 ../app/pdb/color_cmds.c:870 +#: ../app/tools/gimpcurvestool.c:141 msgid "Curves" msgstr "" -#: app/pdb/color_cmds.c:995 app/tools/gimpcolorbalancetool.c:96 +#: ../app/pdb/color_cmds.c:995 ../app/tools/gimpcolorbalancetool.c:96 msgid "Color Balance" msgstr "" -#: app/pdb/color_cmds.c:1120 app/tools/gimpcolorizetool.c:96 +#: ../app/pdb/color_cmds.c:1120 ../app/tools/gimpcolorizetool.c:96 msgid "Colorize" msgstr "" -#: app/pdb/color_cmds.c:1399 app/tools/gimphuesaturationtool.c:110 +#: ../app/pdb/color_cmds.c:1399 ../app/tools/gimphuesaturationtool.c:110 msgid "Hue-Saturation" msgstr "" -#: app/pdb/color_cmds.c:1506 app/tools/gimpthresholdtool.c:92 +#: ../app/pdb/color_cmds.c:1506 ../app/tools/gimpthresholdtool.c:92 msgid "Threshold" msgstr "" -#: app/pdb/drawable_transform_cmds.c:249 app/pdb/drawable_transform_cmds.c:404 +#: ../app/pdb/drawable_transform_cmds.c:249 +#: ../app/pdb/drawable_transform_cmds.c:404 msgid "Flip..." msgstr "Обръщане..." -#: app/pdb/drawable_transform_cmds.c:563 app/pdb/drawable_transform_cmds.c:746 -#: app/pdb/transform_tools_cmds.c:197 app/tools/gimpperspectivetool.c:141 +#: ../app/pdb/drawable_transform_cmds.c:563 +#: ../app/pdb/drawable_transform_cmds.c:746 +#: ../app/pdb/transform_tools_cmds.c:197 +#: ../app/tools/gimpperspectivetool.c:141 msgid "Perspective..." msgstr "Перспектива..." -#: app/pdb/drawable_transform_cmds.c:1650 -#: app/pdb/drawable_transform_cmds.c:1791 app/pdb/transform_tools_cmds.c:586 -#: app/tools/gimpsheartool.c:158 +#: ../app/pdb/drawable_transform_cmds.c:1650 +#: ../app/pdb/drawable_transform_cmds.c:1791 +#: ../app/pdb/transform_tools_cmds.c:586 ../app/tools/gimpsheartool.c:158 msgid "Shearing..." msgstr "" -#: app/pdb/drawable_transform_cmds.c:1943 -#: 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 +#: ../app/pdb/drawable_transform_cmds.c:1943 +#: ../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 msgid "2D Transform..." msgstr "" -#: app/pdb/edit_cmds.c:673 app/tools/gimpblendtool.c:249 +#: ../app/pdb/edit_cmds.c:673 ../app/tools/gimpblendtool.c:249 msgid "Blending..." msgstr "" -#: app/pdb/image_cmds.c:3756 app/text/gimptext-parasite.c:168 +#: ../app/pdb/image_cmds.c:3756 ../app/text/gimptext-parasite.c:168 msgid "(invalid UTF-8 string)" -msgstr "" +msgstr "(грешен уникод низ)" -#: app/pdb/image_cmds.c:3898 +#: ../app/pdb/image_cmds.c:3898 msgid "" "Image resolution is out of bounds, using the default resolution instead." msgstr "" -#: app/pdb/internal_procs.c:86 +#: ../app/pdb/internal_procs.c:86 msgid "Internal Procedures" msgstr "" -#: app/pdb/internal_procs.c:86 +#: ../app/pdb/internal_procs.c:86 msgid "Brush" msgstr "Четка" -#: app/pdb/internal_procs.c:89 +#: ../app/pdb/internal_procs.c:89 msgid "Brush UI" msgstr "" -#: app/pdb/internal_procs.c:98 app/tools/gimppaintoptions-gui.c:283 -#: app/widgets/gimpwidgets-constructors.c:75 -#: app/widgets/gimpwidgets-constructors.c:108 +#: ../app/pdb/internal_procs.c:98 ../app/tools/gimppaintoptions-gui.c:283 +#: ../app/widgets/gimpwidgets-constructors.c:75 +#: ../app/widgets/gimpwidgets-constructors.c:108 msgid "Color" msgstr "Цвят" -#: app/pdb/internal_procs.c:104 +#: ../app/pdb/internal_procs.c:104 msgid "Convert" msgstr "Преобразуване" -#: app/pdb/internal_procs.c:107 +#: ../app/pdb/internal_procs.c:107 msgid "Display procedures" msgstr "" -#: app/pdb/internal_procs.c:110 +#: ../app/pdb/internal_procs.c:110 msgid "Drawable procedures" msgstr "" -#: app/pdb/internal_procs.c:113 +#: ../app/pdb/internal_procs.c:113 msgid "Transformation procedures" msgstr "" -#: app/pdb/internal_procs.c:116 +#: ../app/pdb/internal_procs.c:116 msgid "Edit procedures" msgstr "" -#: app/pdb/internal_procs.c:119 +#: ../app/pdb/internal_procs.c:119 msgid "File Operations" msgstr "" -#: app/pdb/internal_procs.c:122 +#: ../app/pdb/internal_procs.c:122 msgid "Floating selections" msgstr "" -#: app/pdb/internal_procs.c:125 +#: ../app/pdb/internal_procs.c:125 msgid "Font UI" msgstr "" -#: app/pdb/internal_procs.c:131 +#: ../app/pdb/internal_procs.c:131 msgid "Gimprc procedures" msgstr "" -#: app/pdb/internal_procs.c:134 +#: ../app/pdb/internal_procs.c:134 msgid "Gradient" msgstr "Преливка" -#: app/pdb/internal_procs.c:137 +#: ../app/pdb/internal_procs.c:137 msgid "Gradient UI" msgstr "" -#: app/pdb/internal_procs.c:143 +#: ../app/pdb/internal_procs.c:143 msgid "Guide procedures" msgstr "" -#: app/pdb/internal_procs.c:146 +#: ../app/pdb/internal_procs.c:146 msgid "Help procedures" msgstr "" -#: app/pdb/internal_procs.c:155 +#: ../app/pdb/internal_procs.c:155 msgid "Message procedures" msgstr "" -#: app/pdb/internal_procs.c:158 +#: ../app/pdb/internal_procs.c:158 msgid "Miscellaneous" msgstr "" -#: app/pdb/internal_procs.c:161 +#: ../app/pdb/internal_procs.c:161 msgid "Paint Tool procedures" msgstr "" -#: app/pdb/internal_procs.c:164 +#: ../app/pdb/internal_procs.c:164 msgid "Palette" msgstr "Палитра" -#: app/pdb/internal_procs.c:167 +#: ../app/pdb/internal_procs.c:167 msgid "Palette UI" msgstr "" -#: app/pdb/internal_procs.c:173 +#: ../app/pdb/internal_procs.c:173 msgid "Parasite procedures" msgstr "" -#: app/pdb/internal_procs.c:182 +#: ../app/pdb/internal_procs.c:182 msgid "Pattern UI" msgstr "" -#: app/pdb/internal_procs.c:188 +#: ../app/pdb/internal_procs.c:188 msgid "Plug-in" msgstr "Приставка" -#: app/pdb/internal_procs.c:191 +#: ../app/pdb/internal_procs.c:191 msgid "Procedural database" msgstr "" -#: app/pdb/internal_procs.c:194 app/widgets/gimpprogressdialog.c:239 +#: ../app/pdb/internal_procs.c:194 ../app/widgets/gimpprogressdialog.c:239 msgid "Progress" msgstr "" -#: app/pdb/internal_procs.c:197 +#: ../app/pdb/internal_procs.c:197 msgid "Image mask" msgstr "" -#: app/pdb/internal_procs.c:200 +#: ../app/pdb/internal_procs.c:200 msgid "Selection Tool procedures" msgstr "" -#: app/pdb/internal_procs.c:203 +#: ../app/pdb/internal_procs.c:203 msgid "Text procedures" msgstr "" -#: app/pdb/internal_procs.c:206 +#: ../app/pdb/internal_procs.c:206 msgid "Transform Tool procedures" msgstr "" -#: app/pdb/procedural_db.c:254 +#: ../app/pdb/procedural_db.c:254 #, c-format msgid "" "PDB calling error:\n" "procedure '%s' not found" msgstr "" -#: app/pdb/procedural_db.c:275 app/pdb/procedural_db.c:387 +#: ../app/pdb/procedural_db.c:275 ../app/pdb/procedural_db.c:387 #, c-format msgid "" "PDB calling error for procedure '%s':\n" "Argument #%d type mismatch (expected %s, got %s)" msgstr "" -#: app/pdb/procedural_db_cmds.c:80 +#: ../app/pdb/procedural_db_cmds.c:80 msgid "Internal GIMP procedure" msgstr "" -#: app/pdb/procedural_db_cmds.c:81 +#: ../app/pdb/procedural_db_cmds.c:81 msgid "GIMP Plug-In" msgstr "Приставка на GIMP" -#: app/pdb/procedural_db_cmds.c:82 +#: ../app/pdb/procedural_db_cmds.c:82 msgid "GIMP Extension" msgstr "Разширение на GIMP" -#: app/pdb/procedural_db_cmds.c:83 +#: ../app/pdb/procedural_db_cmds.c:83 msgid "Temporary Procedure" msgstr "" -#: app/pdb/selection_tools_cmds.c:332 app/tools/gimpfreeselecttool.c:96 +#: ../app/pdb/selection_tools_cmds.c:332 ../app/tools/gimpfreeselecttool.c:96 msgid "Free Select" msgstr "" -#: app/plug-in/plug-in.c:544 app/plug-in/plug-in.c:574 +#: ../app/plug-in/plug-in.c:544 ../app/plug-in/plug-in.c:574 #, c-format msgid "Terminating plug-in: '%s'\n" msgstr "Прекъсване на приставка: '%s'\n" -#: app/plug-in/plug-in.c:730 +#: ../app/plug-in/plug-in.c:730 #, c-format msgid "" "Plug-In crashed: \"%s\"\n" @@ -7609,129 +7667,129 @@ "save your images and restart GIMP to be on the safe side." msgstr "" -#: app/plug-in/plug-in-rc.c:176 +#: ../app/plug-in/plug-in-rc.c:176 #, c-format msgid "Skipping '%s': wrong GIMP protocol version." msgstr "Пропускане на '%s': несъответствие на версията на протокола на GIMP." -#: app/plug-in/plug-in-rc.c:432 +#: ../app/plug-in/plug-in-rc.c:432 #, c-format msgid "invalid value '%s' for icon type" msgstr "" -#: app/plug-in/plug-in-rc.c:447 +#: ../app/plug-in/plug-in-rc.c:447 #, c-format msgid "invalid value '%ld' for icon type" msgstr "" -#: app/plug-in/plug-ins.c:139 +#: ../app/plug-in/plug-ins.c:139 msgid "Resource configuration" msgstr "" #. Query any plug-ins that have changed since we last wrote out #. * the pluginrc file. #. -#: app/plug-in/plug-ins.c:153 +#: ../app/plug-in/plug-ins.c:153 msgid "Querying new Plug-ins" msgstr "Претърсване за нови приставки" -#: app/plug-in/plug-ins.c:170 +#: ../app/plug-in/plug-ins.c:170 #, c-format msgid "Querying plug-in: '%s'\n" msgstr "" #. initialize the plug-ins -#: app/plug-in/plug-ins.c:180 +#: ../app/plug-in/plug-ins.c:180 msgid "Initializing Plug-ins" msgstr "Зареждане на приставките" -#: app/plug-in/plug-ins.c:194 +#: ../app/plug-in/plug-ins.c:194 #, c-format msgid "Initializing plug-in: '%s'\n" msgstr "Зареждане на приставката: '%s'\n" -#: app/plug-in/plug-ins.c:351 +#: ../app/plug-in/plug-ins.c:351 msgid "Starting Extensions" msgstr "Зареждане на разширенията" -#: app/plug-in/plug-ins.c:358 +#: ../app/plug-in/plug-ins.c:358 #, c-format msgid "Starting extension: '%s'\n" msgstr "Зареждане на разширение: '%s'\n" -#: app/text/text-enums.c:81 +#: ../app/text/text-enums.c:81 msgid "Left justified" msgstr "" -#: app/text/text-enums.c:82 +#: ../app/text/text-enums.c:82 msgid "Right justified" msgstr "" -#: app/text/text-enums.c:83 +#: ../app/text/text-enums.c:83 msgid "Centered" msgstr "" -#: app/text/text-enums.c:84 +#: ../app/text/text-enums.c:84 msgid "Filled" msgstr "" #. This is a so-called pangram; it's supposed to #. contain all characters found in the alphabet. -#: app/text/gimpfont.c:39 +#: ../app/text/gimpfont.c:39 msgid "" "Pack my box with\n" "five dozen liquor jugs." msgstr "" -#: app/text/gimptext-compat.c:108 app/tools/gimptexttool.c:697 +#: ../app/text/gimptext-compat.c:108 ../app/tools/gimptexttool.c:699 msgid "Add Text Layer" msgstr "Добавяне на текстов слой" -#: app/text/gimptextlayer.c:170 +#: ../app/text/gimptextlayer.c:170 msgid "Text Layer" msgstr "Текстов слой" -#: app/text/gimptextlayer.c:171 +#: ../app/text/gimptextlayer.c:171 msgid "Rename Text Layer" msgstr "Преименуване на текстов слой" -#: app/text/gimptextlayer.c:172 +#: ../app/text/gimptextlayer.c:172 msgid "Move Text Layer" msgstr "Преместване на текстовия слой" -#: app/text/gimptextlayer.c:173 +#: ../app/text/gimptextlayer.c:173 msgid "Scale Text Layer" msgstr "" -#: app/text/gimptextlayer.c:174 +#: ../app/text/gimptextlayer.c:174 msgid "Resize Text Layer" msgstr "" -#: app/text/gimptextlayer.c:175 +#: ../app/text/gimptextlayer.c:175 msgid "Flip Text Layer" msgstr "Обръщане на текстовия слой" -#: app/text/gimptextlayer.c:176 +#: ../app/text/gimptextlayer.c:176 msgid "Rotate Text Layer" msgstr "Завъртане на текстовия слой" -#: app/text/gimptextlayer.c:177 +#: ../app/text/gimptextlayer.c:177 msgid "Transform Text Layer" msgstr "" -#: app/text/gimptextlayer.c:531 +#: ../app/text/gimptextlayer.c:531 msgid "Discard Text Information" msgstr "" -#: app/text/gimptextlayer.c:581 +#: ../app/text/gimptextlayer.c:581 msgid "Due to lack of any fonts, text functionality is not available." msgstr "" -#: app/text/gimptextlayer.c:616 +#: ../app/text/gimptextlayer.c:616 msgid "Empty Text Layer" msgstr "" -#: app/text/gimptextlayer-xcf.c:73 +#: ../app/text/gimptextlayer-xcf.c:73 #, c-format msgid "" "Problems parsing the text parasite for layer '%s':\n" @@ -7741,1194 +7799,1208 @@ "you don't need to worry about this." msgstr "" -#: app/tools/tools-enums.c:25 +#: ../app/tools/tools-enums.c:25 msgid "Pick only" msgstr "" -#: app/tools/tools-enums.c:26 +#: ../app/tools/tools-enums.c:26 msgid "Set foreground color" -msgstr "" +msgstr "Задаване на цвят за рисуване" -#: app/tools/tools-enums.c:27 +#: ../app/tools/tools-enums.c:27 msgid "Set background color" msgstr "Задаване цвета на фона" -#: app/tools/tools-enums.c:54 +#: ../app/tools/tools-enums.c:54 msgid "Crop" msgstr "" -#: app/tools/tools-enums.c:55 +#: ../app/tools/tools-enums.c:55 msgid "Resize" msgstr "" -#: app/tools/tools-enums.c:83 +#: ../app/tools/tools-enums.c:83 msgid "Free select" msgstr "" -#: app/tools/tools-enums.c:84 +#: ../app/tools/tools-enums.c:84 msgid "Fixed size" msgstr "" -#: app/tools/tools-enums.c:85 +#: ../app/tools/tools-enums.c:85 msgid "Fixed aspect ratio" msgstr "" -#: app/tools/tools-enums.c:113 +#: ../app/tools/tools-enums.c:113 msgid "Transform layer" msgstr "" -#: app/tools/tools-enums.c:114 +#: ../app/tools/tools-enums.c:114 msgid "Transform selection" msgstr "" -#: app/tools/tools-enums.c:115 +#: ../app/tools/tools-enums.c:115 msgid "Transform path" msgstr "" -#: app/tools/tools-enums.c:143 +#: ../app/tools/tools-enums.c:143 msgid "Design" msgstr "" -#: app/tools/tools-enums.c:145 app/tools/gimpmovetool.c:116 +#: ../app/tools/tools-enums.c:145 ../app/tools/gimpmovetool.c:116 msgid "Move" msgstr "Преместване" -#: app/tools/tools-enums.c:174 +#: ../app/tools/tools-enums.c:174 msgid "Outline" msgstr "" -#: app/tools/tools-enums.c:177 +#: ../app/tools/tools-enums.c:177 msgid "Image + Grid" msgstr "" -#: app/tools/tools-enums.c:204 +#: ../app/tools/tools-enums.c:204 msgid "Number of grid lines" msgstr "" -#: app/tools/tools-enums.c:205 +#: ../app/tools/tools-enums.c:205 msgid "Grid line spacing" msgstr "" -#: app/tools/gimp-tools.c:283 +#: ../app/tools/gimp-tools.c:283 msgid "This tool has no options." msgstr "Този инструмент няма настройки." -#: app/tools/gimpairbrushtool.c:56 +#: ../app/tools/gimpairbrushtool.c:56 msgid "Airbrush with variable pressure" msgstr "Спрей с променливо налягане" -#: app/tools/gimpairbrushtool.c:57 +#: ../app/tools/gimpairbrushtool.c:57 msgid "_Airbrush" msgstr "_Спрей" -#: app/tools/gimpairbrushtool.c:123 app/tools/gimpconvolvetool.c:211 -#: app/tools/gimpsmudgetool.c:123 +#: ../app/tools/gimpairbrushtool.c:123 ../app/tools/gimpconvolvetool.c:211 +#: ../app/tools/gimpsmudgetool.c:123 msgid "Rate:" msgstr "" -#: app/tools/gimpairbrushtool.c:129 +#: ../app/tools/gimpairbrushtool.c:129 msgid "Pressure:" msgstr "Налягане:" -#: app/tools/gimpblendoptions.c:246 +#: ../app/tools/gimpblendoptions.c:246 msgid "Offset:" msgstr "" -#: app/tools/gimpblendoptions.c:255 app/widgets/gimpbrusheditor.c:145 +#: ../app/tools/gimpblendoptions.c:255 ../app/widgets/gimpbrusheditor.c:145 msgid "Shape:" msgstr "" -#: app/tools/gimpblendoptions.c:261 app/tools/gimppaintoptions-gui.c:417 +#: ../app/tools/gimpblendoptions.c:261 ../app/tools/gimppaintoptions-gui.c:417 msgid "Repeat:" msgstr "" -#: app/tools/gimpblendoptions.c:279 +#: ../app/tools/gimpblendoptions.c:279 msgid "Adaptive supersampling" msgstr "" -#: app/tools/gimpblendoptions.c:297 +#: ../app/tools/gimpblendoptions.c:297 msgid "Max Depth:" msgstr "" -#: app/tools/gimpblendoptions.c:304 app/tools/gimpbucketfilloptions.c:295 -#: app/tools/gimpmagnifyoptions.c:226 app/tools/gimpselectionoptions.c:466 +#: ../app/tools/gimpblendoptions.c:304 +#: ../app/tools/gimpbucketfilloptions.c:295 +#: ../app/tools/gimpmagnifyoptions.c:226 +#: ../app/tools/gimpselectionoptions.c:466 msgid "Threshold:" msgstr "" -#: app/tools/gimpblendtool.c:102 +#: ../app/tools/gimpblendtool.c:102 msgid "Fill with a color gradient" msgstr "Запълване с преливка" -#: app/tools/gimpblendtool.c:103 +#: ../app/tools/gimpblendtool.c:103 msgid "Blen_d" msgstr "" -#: app/tools/gimpblendtool.c:191 +#: ../app/tools/gimpblendtool.c:191 msgid "Blend: Invalid for indexed images." msgstr "" #. initialize the statusbar display -#: app/tools/gimpblendtool.c:209 app/tools/gimpblendtool.c:308 +#: ../app/tools/gimpblendtool.c:209 ../app/tools/gimpblendtool.c:308 msgid "Blend: " msgstr "" -#: app/tools/gimpbrightnesscontrasttool.c:86 +#: ../app/tools/gimpbrightnesscontrasttool.c:86 msgid "Adjust brightness and contrast" msgstr "" -#: app/tools/gimpbrightnesscontrasttool.c:87 +#: ../app/tools/gimpbrightnesscontrasttool.c:87 msgid "B_rightness-Contrast..." msgstr "Яр_кост и контраст..." -#: app/tools/gimpbrightnesscontrasttool.c:138 +#: ../app/tools/gimpbrightnesscontrasttool.c:138 msgid "Adjust Brightness and Contrast" msgstr "" -#: app/tools/gimpbrightnesscontrasttool.c:181 +#: ../app/tools/gimpbrightnesscontrasttool.c:181 msgid "Brightness-Contrast does not operate on indexed layers." msgstr "" -#: app/tools/gimpbrightnesscontrasttool.c:236 +#: ../app/tools/gimpbrightnesscontrasttool.c:236 msgid "_Brightness:" msgstr "_Яркост:" -#: app/tools/gimpbrightnesscontrasttool.c:251 +#: ../app/tools/gimpbrightnesscontrasttool.c:251 msgid "Con_trast:" msgstr "Кон_траст:" -#: app/tools/gimpbucketfilloptions.c:129 +#: ../app/tools/gimpbucketfilloptions.c:129 msgid "Allow completely transparent regions to be filled" msgstr "Разрешаване запълването на изцяло прозрачните области" -#: app/tools/gimpbucketfilloptions.c:135 +#: ../app/tools/gimpbucketfilloptions.c:135 msgid "Base filled area on all visible layers" msgstr "" -#: app/tools/gimpbucketfilloptions.c:141 app/tools/gimpselectionoptions.c:161 +#: ../app/tools/gimpbucketfilloptions.c:141 +#: ../app/tools/gimpselectionoptions.c:161 msgid "Maximum color difference" msgstr "" #. fill type -#: app/tools/gimpbucketfilloptions.c:238 +#: ../app/tools/gimpbucketfilloptions.c:238 #, c-format msgid "Fill Type %s" msgstr "Вид запълване %s" #. fill selection -#: app/tools/gimpbucketfilloptions.c:250 +#: ../app/tools/gimpbucketfilloptions.c:250 #, c-format msgid "Affected Area %s" msgstr "" -#: app/tools/gimpbucketfilloptions.c:254 +#: ../app/tools/gimpbucketfilloptions.c:254 msgid "Fill whole selection" msgstr "Запълване на избраното" -#: app/tools/gimpbucketfilloptions.c:255 +#: ../app/tools/gimpbucketfilloptions.c:255 msgid "Fill similar colors" msgstr "" -#: app/tools/gimpbucketfilloptions.c:261 app/tools/gimpselectionoptions.c:438 +#: ../app/tools/gimpbucketfilloptions.c:261 +#: ../app/tools/gimpselectionoptions.c:438 msgid "Finding Similar Colors" msgstr "Откриване на подобни цветове" -#: app/tools/gimpbucketfilloptions.c:277 +#: ../app/tools/gimpbucketfilloptions.c:277 msgid "Fill transparent areas" msgstr "Запълване на прозрачните области" -#: app/tools/gimpbucketfilloptions.c:283 -#: app/tools/gimpcolorpickeroptions.c:179 app/tools/gimpselectionoptions.c:454 -#: app/tools/gimpselectionoptions.c:502 +#: ../app/tools/gimpbucketfilloptions.c:283 +#: ../app/tools/gimpcolorpickeroptions.c:179 +#: ../app/tools/gimpselectionoptions.c:454 +#: ../app/tools/gimpselectionoptions.c:502 msgid "Sample merged" msgstr "" -#: app/tools/gimpbucketfilltool.c:92 +#: ../app/tools/gimpbucketfilltool.c:92 msgid "Fill with a color or pattern" msgstr "" -#: app/tools/gimpbucketfilltool.c:93 +#: ../app/tools/gimpbucketfilltool.c:93 msgid "_Bucket Fill" msgstr "_Запълване" -#: app/tools/gimpbycolorselecttool.c:82 +#: ../app/tools/gimpbycolorselecttool.c:82 msgid "Select By Color" msgstr "" -#: app/tools/gimpbycolorselecttool.c:83 +#: ../app/tools/gimpbycolorselecttool.c:83 msgid "Select regions by color" msgstr "" -#: app/tools/gimpbycolorselecttool.c:84 +#: ../app/tools/gimpbycolorselecttool.c:84 msgid "_By Color Select" msgstr "" -#: app/tools/gimpclonetool.c:90 +#: ../app/tools/gimpclonetool.c:90 msgid "Paint using Patterns or Image Regions" msgstr "" -#: app/tools/gimpclonetool.c:91 +#: ../app/tools/gimpclonetool.c:91 msgid "_Clone" msgstr "" -#: app/tools/gimpclonetool.c:288 +#: ../app/tools/gimpclonetool.c:288 msgid "Source" -msgstr "" +msgstr "Източник" -#: app/tools/gimpclonetool.c:297 +#: ../app/tools/gimpclonetool.c:297 msgid "Alignment" msgstr "" -#: app/tools/gimpcolorbalancetool.c:97 +#: ../app/tools/gimpcolorbalancetool.c:97 msgid "Adjust color balance" msgstr "" -#: app/tools/gimpcolorbalancetool.c:98 +#: ../app/tools/gimpcolorbalancetool.c:98 msgid "Color _Balance..." msgstr "" -#: app/tools/gimpcolorbalancetool.c:149 +#: ../app/tools/gimpcolorbalancetool.c:149 msgid "Adjust Color Balance" msgstr "" -#: app/tools/gimpcolorbalancetool.c:193 +#: ../app/tools/gimpcolorbalancetool.c:193 msgid "Color balance operates only on RGB color layers." msgstr "" -#: app/tools/gimpcolorbalancetool.c:276 +#: ../app/tools/gimpcolorbalancetool.c:276 msgid "Select Range to Modify" msgstr "" -#: app/tools/gimpcolorbalancetool.c:284 +#: ../app/tools/gimpcolorbalancetool.c:284 msgid "Modify Selected Range's Color Levels" msgstr "" -#: app/tools/gimpcolorbalancetool.c:301 +#: ../app/tools/gimpcolorbalancetool.c:301 msgid "Cyan" msgstr "" -#: app/tools/gimpcolorbalancetool.c:308 +#: ../app/tools/gimpcolorbalancetool.c:308 msgid "Magenta" msgstr "" -#: app/tools/gimpcolorbalancetool.c:315 +#: ../app/tools/gimpcolorbalancetool.c:315 msgid "Yellow" msgstr "Жълто" -#: app/tools/gimpcolorbalancetool.c:325 +#: ../app/tools/gimpcolorbalancetool.c:325 msgid "R_eset range" msgstr "" -#: app/tools/gimpcolorbalancetool.c:334 +#: ../app/tools/gimpcolorbalancetool.c:334 msgid "Preserve _luminosity" msgstr "" -#: app/tools/gimpcolorizetool.c:97 +#: ../app/tools/gimpcolorizetool.c:97 msgid "Colorize the image" msgstr "" -#: app/tools/gimpcolorizetool.c:98 +#: ../app/tools/gimpcolorizetool.c:98 msgid "Colori_ze..." msgstr "" -#: app/tools/gimpcolorizetool.c:152 +#: ../app/tools/gimpcolorizetool.c:152 msgid "Colorize the Image" msgstr "" -#: app/tools/gimpcolorizetool.c:195 +#: ../app/tools/gimpcolorizetool.c:195 msgid "Colorize operates only on RGB color layers." msgstr "" -#: app/tools/gimpcolorizetool.c:235 +#: ../app/tools/gimpcolorizetool.c:235 msgid "Select Color" msgstr "Избор на цвят" -#: app/tools/gimpcolorizetool.c:253 app/tools/gimphuesaturationtool.c:361 +#: ../app/tools/gimpcolorizetool.c:253 +#: ../app/tools/gimphuesaturationtool.c:361 msgid "_Hue:" msgstr "" -#: app/tools/gimpcolorizetool.c:267 app/tools/gimphuesaturationtool.c:389 +#: ../app/tools/gimpcolorizetool.c:267 +#: ../app/tools/gimphuesaturationtool.c:389 msgid "_Saturation:" msgstr "" -#: app/tools/gimpcolorizetool.c:281 app/tools/gimphuesaturationtool.c:375 +#: ../app/tools/gimpcolorizetool.c:281 +#: ../app/tools/gimphuesaturationtool.c:375 msgid "_Lightness:" msgstr "" -#: app/tools/gimpcoloroptions.c:184 +#: ../app/tools/gimpcoloroptions.c:184 msgid "Sample average" msgstr "" -#: app/tools/gimpcoloroptions.c:194 app/tools/gimpselectionoptions.c:416 -#: app/widgets/gimpbrusheditor.c:153 +#: ../app/tools/gimpcoloroptions.c:194 ../app/tools/gimpselectionoptions.c:416 +#: ../app/widgets/gimpbrusheditor.c:153 msgid "Radius:" -msgstr "" +msgstr "Радиус:" #. the pick FG/BG frame -#: app/tools/gimpcolorpickeroptions.c:184 +#: ../app/tools/gimpcolorpickeroptions.c:184 #, c-format msgid "Pick Mode %s" msgstr "" #. the add to palette toggle -#: app/tools/gimpcolorpickeroptions.c:193 +#: ../app/tools/gimpcolorpickeroptions.c:193 #, c-format msgid "Add to palette %s" msgstr "" -#: app/tools/gimpcolorpickertool.c:99 +#: ../app/tools/gimpcolorpickertool.c:99 msgid "Color Picker" msgstr "" -#: app/tools/gimpcolorpickertool.c:100 +#: ../app/tools/gimpcolorpickertool.c:100 msgid "Pick colors from the image" msgstr "" -#: app/tools/gimpcolorpickertool.c:101 +#: ../app/tools/gimpcolorpickertool.c:101 msgid "C_olor Picker" msgstr "" #. tool->gdisp->shell -#: app/tools/gimpcolorpickertool.c:343 +#: ../app/tools/gimpcolorpickertool.c:343 msgid "Color Picker Information" msgstr "" -#: app/tools/gimpconvolvetool.c:71 +#: ../app/tools/gimpconvolvetool.c:71 msgid "Blur or Sharpen" msgstr "" -#: app/tools/gimpconvolvetool.c:72 +#: ../app/tools/gimpconvolvetool.c:72 msgid "Con_volve" msgstr "" #. the type radio box -#: app/tools/gimpconvolvetool.c:193 +#: ../app/tools/gimpconvolvetool.c:193 #, c-format msgid "Convolve Type %s" msgstr "" #. tool toggle -#: app/tools/gimpcropoptions.c:188 app/tools/gimpmagnifyoptions.c:208 -#: app/tools/gimpmoveoptions.c:217 +#: ../app/tools/gimpcropoptions.c:188 ../app/tools/gimpmagnifyoptions.c:208 +#: ../app/tools/gimpmoveoptions.c:217 #, c-format msgid "Tool Toggle %s" msgstr "" -#: app/tools/gimpcropoptions.c:200 +#: ../app/tools/gimpcropoptions.c:200 msgid "Current layer only" msgstr "Само текущия слой" #. enlarge toggle -#: app/tools/gimpcropoptions.c:205 +#: ../app/tools/gimpcropoptions.c:205 #, c-format msgid "Allow enlarging %s" msgstr "" #. layer toggle -#: app/tools/gimpcropoptions.c:215 +#: ../app/tools/gimpcropoptions.c:215 #, c-format msgid "Keep aspect ratio %s" msgstr "Запазване на съотношението %s" -#: app/tools/gimpcroptool.c:164 +#: ../app/tools/gimpcroptool.c:164 msgid "Crop & Resize" msgstr "" -#: app/tools/gimpcroptool.c:165 +#: ../app/tools/gimpcroptool.c:165 msgid "Crop or Resize an image" msgstr "" -#: app/tools/gimpcroptool.c:166 +#: ../app/tools/gimpcroptool.c:166 msgid "_Crop & Resize" msgstr "" #. initialize the statusbar display -#: app/tools/gimpcroptool.c:499 app/tools/gimpcroptool.c:983 +#: ../app/tools/gimpcroptool.c:499 ../app/tools/gimpcroptool.c:983 msgid "Crop: " msgstr "" -#: app/tools/gimpcroptool.c:1010 +#: ../app/tools/gimpcroptool.c:1010 msgid "Crop & Resize Information" msgstr "" -#: app/tools/gimpcroptool.c:1029 +#: ../app/tools/gimpcroptool.c:1029 msgid "Origin X:" msgstr "" -#: app/tools/gimpcroptool.c:1033 +#: ../app/tools/gimpcroptool.c:1033 msgid "Origin Y:" msgstr "" -#: app/tools/gimpcroptool.c:1071 app/widgets/gimpbrusheditor.c:194 +#: ../app/tools/gimpcroptool.c:1071 ../app/widgets/gimpbrusheditor.c:194 msgid "Aspect ratio:" msgstr "" -#: app/tools/gimpcroptool.c:1082 +#: ../app/tools/gimpcroptool.c:1082 msgid "From selection" msgstr "" -#: app/tools/gimpcroptool.c:1090 +#: ../app/tools/gimpcroptool.c:1090 msgid "Auto shrink" msgstr "" -#: app/tools/gimpcurvestool.c:142 +#: ../app/tools/gimpcurvestool.c:142 msgid "Adjust color curves" msgstr "" -#: app/tools/gimpcurvestool.c:143 +#: ../app/tools/gimpcurvestool.c:143 msgid "_Curves..." -msgstr "" +msgstr "_Криви..." -#: app/tools/gimpcurvestool.c:202 +#: ../app/tools/gimpcurvestool.c:202 msgid "Adjust Color Curves" msgstr "" -#: app/tools/gimpcurvestool.c:204 +#: ../app/tools/gimpcurvestool.c:204 msgid "Load Curves" -msgstr "" +msgstr "Зареждане на криви" -#: app/tools/gimpcurvestool.c:205 +#: ../app/tools/gimpcurvestool.c:205 msgid "Load curves settings from file" msgstr "" -#: app/tools/gimpcurvestool.c:206 +#: ../app/tools/gimpcurvestool.c:206 msgid "Save Curves" -msgstr "" +msgstr "Запазване на криви" -#: app/tools/gimpcurvestool.c:207 +#: ../app/tools/gimpcurvestool.c:207 msgid "Save curves settings to file" msgstr "" -#: app/tools/gimpcurvestool.c:283 +#: ../app/tools/gimpcurvestool.c:283 msgid "Curves for indexed layers cannot be adjusted." msgstr "" -#: app/tools/gimpcurvestool.c:479 app/tools/gimplevelstool.c:415 -#: app/widgets/gimphistogrameditor.c:161 +#: ../app/tools/gimpcurvestool.c:479 ../app/tools/gimplevelstool.c:415 +#: ../app/widgets/gimphistogrameditor.c:161 msgid "Channel:" msgstr "" -#: app/tools/gimpcurvestool.c:494 app/tools/gimplevelstool.c:430 +#: ../app/tools/gimpcurvestool.c:494 ../app/tools/gimplevelstool.c:430 msgid "R_eset channel" msgstr "" #. Horizontal button box for load / save -#: app/tools/gimpcurvestool.c:596 app/tools/gimplevelstool.c:640 +#: ../app/tools/gimpcurvestool.c:596 ../app/tools/gimplevelstool.c:640 msgid "All Channels" msgstr "" #. The radio box for selecting the curve type -#: app/tools/gimpcurvestool.c:614 +#: ../app/tools/gimpcurvestool.c:614 msgid "Curve Type" msgstr "" -#: app/tools/gimpdodgeburntool.c:71 +#: ../app/tools/gimpdodgeburntool.c:71 msgid "Dodge or Burn strokes" msgstr "" -#: app/tools/gimpdodgeburntool.c:72 +#: ../app/tools/gimpdodgeburntool.c:72 msgid "Dod_geBurn" msgstr "" #. the type (dodge or burn) -#: app/tools/gimpdodgeburntool.c:192 +#: ../app/tools/gimpdodgeburntool.c:192 #, c-format msgid "Type %s" -msgstr "" +msgstr "Вид %s" -#: app/tools/gimpdodgeburntool.c:204 +#: ../app/tools/gimpdodgeburntool.c:204 msgid "Mode" msgstr "" -#: app/tools/gimpdodgeburntool.c:216 +#: ../app/tools/gimpdodgeburntool.c:216 msgid "Exposure:" msgstr "Експозиция:" -#: app/tools/gimpeditselectiontool.c:262 -#: app/tools/gimpeditselectiontool.c:1203 +#: ../app/tools/gimpeditselectiontool.c:262 +#: ../app/tools/gimpeditselectiontool.c:1203 msgid "Move Floating Selection" msgstr "" -#: app/tools/gimpeditselectiontool.c:464 app/tools/gimpeditselectiontool.c:732 +#: ../app/tools/gimpeditselectiontool.c:464 +#: ../app/tools/gimpeditselectiontool.c:732 msgid "Move: " msgstr "Преместване:" -#: app/tools/gimpellipseselecttool.c:72 +#: ../app/tools/gimpellipseselecttool.c:72 msgid "Select elliptical regions" msgstr "Избиране на елиптични области" -#: app/tools/gimpellipseselecttool.c:73 +#: ../app/tools/gimpellipseselecttool.c:73 msgid "_Ellipse Select" msgstr "" -#: app/tools/gimperasertool.c:71 +#: ../app/tools/gimperasertool.c:71 msgid "Erase to background or transparency" msgstr "Изтриване с фонов цвят или до прозрачност" -#: app/tools/gimperasertool.c:72 +#: ../app/tools/gimperasertool.c:72 msgid "_Eraser" msgstr "_Гума" #. the anti_erase toggle -#: app/tools/gimperasertool.c:185 +#: ../app/tools/gimperasertool.c:185 #, c-format msgid "Anti erase %s" msgstr "" -#: app/tools/gimpflipoptions.c:161 app/tools/gimpmoveoptions.c:211 -#: app/tools/gimptransformoptions.c:323 +#: ../app/tools/gimpflipoptions.c:161 ../app/tools/gimpmoveoptions.c:211 +#: ../app/tools/gimptransformoptions.c:323 msgid "Affect:" msgstr "" #. tool toggle -#: app/tools/gimpflipoptions.c:167 +#: ../app/tools/gimpflipoptions.c:167 #, c-format msgid "Flip Type %s" msgstr "Вид обръщане %s" -#: app/tools/gimpfliptool.c:83 +#: ../app/tools/gimpfliptool.c:83 msgid "Flip the layer or selection" -msgstr "" +msgstr "Обръщане на слоя или избраното" -#: app/tools/gimpfliptool.c:84 +#: ../app/tools/gimpfliptool.c:84 msgid "_Flip" msgstr "_Обръщане" -#: app/tools/gimpfreeselecttool.c:97 +#: ../app/tools/gimpfreeselecttool.c:97 msgid "Select hand-drawn regions" msgstr "Ръчно избиране" -#: app/tools/gimpfreeselecttool.c:98 +#: ../app/tools/gimpfreeselecttool.c:98 msgid "_Free Select" msgstr "" -#: app/tools/gimpfuzzyselecttool.c:98 +#: ../app/tools/gimpfuzzyselecttool.c:98 msgid "Select contiguous regions" msgstr "Избиране на непрекъснати области" -#: app/tools/gimpfuzzyselecttool.c:99 +#: ../app/tools/gimpfuzzyselecttool.c:99 msgid "Fu_zzy Select" msgstr "" -#: app/tools/gimphistogramoptions.c:151 +#: ../app/tools/gimphistogramoptions.c:151 msgid "Histogram Scale" msgstr "" -#: app/tools/gimphuesaturationtool.c:111 +#: ../app/tools/gimphuesaturationtool.c:111 msgid "Adjust hue and saturation" msgstr "" -#: app/tools/gimphuesaturationtool.c:112 +#: ../app/tools/gimphuesaturationtool.c:112 msgid "Hue-_Saturation..." msgstr "" -#: app/tools/gimphuesaturationtool.c:166 +#: ../app/tools/gimphuesaturationtool.c:166 msgid "Adjust hue / lightness / saturation" msgstr "" -#: app/tools/gimphuesaturationtool.c:210 +#: ../app/tools/gimphuesaturationtool.c:210 msgid "Hue-Saturation operates only on RGB color layers." msgstr "" -#: app/tools/gimphuesaturationtool.c:263 +#: ../app/tools/gimphuesaturationtool.c:263 msgid "M_aster" msgstr "" -#: app/tools/gimphuesaturationtool.c:264 +#: ../app/tools/gimphuesaturationtool.c:264 msgid "_R" msgstr "" -#: app/tools/gimphuesaturationtool.c:265 +#: ../app/tools/gimphuesaturationtool.c:265 msgid "_Y" msgstr "" -#: app/tools/gimphuesaturationtool.c:266 +#: ../app/tools/gimphuesaturationtool.c:266 msgid "_G" msgstr "" -#: app/tools/gimphuesaturationtool.c:267 +#: ../app/tools/gimphuesaturationtool.c:267 msgid "_C" msgstr "" -#: app/tools/gimphuesaturationtool.c:268 +#: ../app/tools/gimphuesaturationtool.c:268 msgid "_B" msgstr "" -#: app/tools/gimphuesaturationtool.c:269 +#: ../app/tools/gimphuesaturationtool.c:269 msgid "_M" msgstr "" -#: app/tools/gimphuesaturationtool.c:272 +#: ../app/tools/gimphuesaturationtool.c:272 msgid "Select Primary Color to Modify" -msgstr "" +msgstr "Избор на основен цвят за промяна" -#: app/tools/gimphuesaturationtool.c:300 +#: ../app/tools/gimphuesaturationtool.c:300 msgid "Modify all colors" -msgstr "" +msgstr "Промяна на всички цветове" -#: app/tools/gimphuesaturationtool.c:343 +#: ../app/tools/gimphuesaturationtool.c:343 msgid "Modify Selected Color" -msgstr "" +msgstr "Промяна на избрания цвят" -#: app/tools/gimphuesaturationtool.c:405 +#: ../app/tools/gimphuesaturationtool.c:405 msgid "R_eset color" msgstr "" -#: app/tools/gimpimagemaptool.c:259 app/widgets/gimpthumbbox.c:354 +#: ../app/tools/gimpimagemaptool.c:259 ../app/widgets/gimpthumbbox.c:354 msgid "_Preview" msgstr "_Преглед" -#: app/tools/gimpimagemaptool.c:292 +#: ../app/tools/gimpimagemaptool.c:292 msgid "Quick Load" -msgstr "" +msgstr "Бързо зареждане" -#: app/tools/gimpimagemaptool.c:322 +#: ../app/tools/gimpimagemaptool.c:322 msgid "Quick Save" -msgstr "" +msgstr "Бързо запазване" #. adjust sliders -#: app/tools/gimpinkoptions-gui.c:59 +#: ../app/tools/gimpinkoptions-gui.c:59 msgid "Adjustment" msgstr "" -#: app/tools/gimpinkoptions-gui.c:71 app/tools/gimpinkoptions-gui.c:96 -#: app/tools/gimptextoptions.c:426 +#: ../app/tools/gimpinkoptions-gui.c:71 ../app/tools/gimpinkoptions-gui.c:96 +#: ../app/tools/gimptextoptions.c:426 msgid "Size:" msgstr "Размер:" -#: app/tools/gimpinkoptions-gui.c:79 app/tools/gimpmeasuretool.c:891 -#: app/tools/gimprotatetool.c:169 app/widgets/gimpbrusheditor.c:207 +#: ../app/tools/gimpinkoptions-gui.c:79 ../app/tools/gimpmeasuretool.c:891 +#: ../app/tools/gimprotatetool.c:169 ../app/widgets/gimpbrusheditor.c:207 msgid "Angle:" msgstr "Ъгъл:" #. sens sliders -#: app/tools/gimpinkoptions-gui.c:84 +#: ../app/tools/gimpinkoptions-gui.c:84 msgid "Sensitivity" msgstr "Чувствителност" -#: app/tools/gimpinkoptions-gui.c:103 +#: ../app/tools/gimpinkoptions-gui.c:103 msgid "Tilt:" msgstr "" -#: app/tools/gimpinkoptions-gui.c:110 +#: ../app/tools/gimpinkoptions-gui.c:110 msgid "Speed:" msgstr "Скорост:" -#: app/tools/gimpinkoptions-gui.c:121 +#: ../app/tools/gimpinkoptions-gui.c:121 msgid "Type" -msgstr "" +msgstr "Вид" #. Blob shape widget -#: app/tools/gimpinkoptions-gui.c:151 +#: ../app/tools/gimpinkoptions-gui.c:151 msgid "Shape" -msgstr "" +msgstr "Форма" -#: app/tools/gimpinktool.c:63 +#: ../app/tools/gimpinktool.c:63 msgid "Draw in ink" msgstr "" -#: app/tools/gimpinktool.c:64 +#: ../app/tools/gimpinktool.c:64 msgid "In_k" msgstr "" -#: app/tools/gimpiscissorstool.c:277 +#: ../app/tools/gimpiscissorstool.c:277 msgid "Scissors" msgstr "" -#: app/tools/gimpiscissorstool.c:278 +#: ../app/tools/gimpiscissorstool.c:278 msgid "Select shapes from image" msgstr "" -#: app/tools/gimpiscissorstool.c:279 +#: ../app/tools/gimpiscissorstool.c:279 msgid "Intelligent _Scissors" msgstr "" -#: app/tools/gimplevelstool.c:161 +#: ../app/tools/gimplevelstool.c:161 msgid "Adjust color levels" msgstr "" -#: app/tools/gimplevelstool.c:162 +#: ../app/tools/gimplevelstool.c:162 msgid "_Levels..." msgstr "" -#: app/tools/gimplevelstool.c:220 +#: ../app/tools/gimplevelstool.c:220 msgid "Adjust Color Levels" msgstr "" -#: app/tools/gimplevelstool.c:222 +#: ../app/tools/gimplevelstool.c:222 msgid "Load Levels" msgstr "" -#: app/tools/gimplevelstool.c:223 +#: ../app/tools/gimplevelstool.c:223 msgid "Load levels settings from file" msgstr "" -#: app/tools/gimplevelstool.c:224 +#: ../app/tools/gimplevelstool.c:224 msgid "Save Levels" msgstr "" -#: app/tools/gimplevelstool.c:225 +#: ../app/tools/gimplevelstool.c:225 msgid "Save levels settings to file" msgstr "" -#: app/tools/gimplevelstool.c:285 +#: ../app/tools/gimplevelstool.c:285 msgid "Levels for indexed layers cannot be adjusted." msgstr "" -#: app/tools/gimplevelstool.c:355 +#: ../app/tools/gimplevelstool.c:355 msgid "Pick black point" msgstr "" -#: app/tools/gimplevelstool.c:359 +#: ../app/tools/gimplevelstool.c:359 msgid "Pick gray point" msgstr "" -#: app/tools/gimplevelstool.c:363 +#: ../app/tools/gimplevelstool.c:363 msgid "Pick white point" msgstr "" #. Input levels frame -#: app/tools/gimplevelstool.c:445 +#: ../app/tools/gimplevelstool.c:445 msgid "Input Levels" msgstr "" -#: app/tools/gimplevelstool.c:539 +#: ../app/tools/gimplevelstool.c:539 msgid "Gamma" msgstr "" #. Output levels frame -#: app/tools/gimplevelstool.c:569 +#: ../app/tools/gimplevelstool.c:569 msgid "Output Levels" msgstr "" -#: app/tools/gimplevelstool.c:667 +#: ../app/tools/gimplevelstool.c:667 msgid "Adjust levels automatically" msgstr "" -#: app/tools/gimpmagnifyoptions.c:203 +#: ../app/tools/gimpmagnifyoptions.c:203 msgid "Auto-resize window" msgstr "" -#: app/tools/gimpmagnifytool.c:95 +#: ../app/tools/gimpmagnifytool.c:95 msgid "Magnify" msgstr "Уевличение" -#: app/tools/gimpmagnifytool.c:96 +#: ../app/tools/gimpmagnifytool.c:96 msgid "Zoom in & out" msgstr "Намаляване и увеличаване" -#: app/tools/gimpmagnifytool.c:97 +#: ../app/tools/gimpmagnifytool.c:97 msgid "M_agnify" msgstr "Уве_личение" -#: app/tools/gimpmeasureoptions.c:157 +#: ../app/tools/gimpmeasureoptions.c:157 msgid "Use info window" msgstr "" -#: app/tools/gimpmeasuretool.c:118 +#: ../app/tools/gimpmeasuretool.c:118 msgid "Measure" -msgstr "" +msgstr "Измерване" -#: app/tools/gimpmeasuretool.c:119 +#: ../app/tools/gimpmeasuretool.c:119 msgid "Measure distances and angles" -msgstr "" +msgstr "Измерване на разстояния и ъгли" -#: app/tools/gimpmeasuretool.c:120 +#: ../app/tools/gimpmeasuretool.c:120 msgid "_Measure" -msgstr "" +msgstr "_Измерване" -#: app/tools/gimpmeasuretool.c:264 +#: ../app/tools/gimpmeasuretool.c:264 msgid "Add Guides" msgstr "" #. tool->gdisp->shell -#: app/tools/gimpmeasuretool.c:847 +#: ../app/tools/gimpmeasuretool.c:847 msgid "Measure Distances and Angles" -msgstr "" +msgstr "Измерване на разстояния и ъгли" -#: app/tools/gimpmeasuretool.c:865 +#: ../app/tools/gimpmeasuretool.c:865 msgid "Distance:" -msgstr "" +msgstr "Разстояние:" -#: app/tools/gimpmoveoptions.c:171 +#: ../app/tools/gimpmoveoptions.c:171 msgid "Pick a layer or guide" msgstr "" -#: app/tools/gimpmoveoptions.c:172 +#: ../app/tools/gimpmoveoptions.c:172 msgid "Move the current layer" msgstr "Преместване на текущия слой" -#: app/tools/gimpmoveoptions.c:176 +#: ../app/tools/gimpmoveoptions.c:176 msgid "Move selection" -msgstr "" +msgstr "Преместване на избраното" -#: app/tools/gimpmoveoptions.c:180 +#: ../app/tools/gimpmoveoptions.c:180 msgid "Pick a path" msgstr "" -#: app/tools/gimpmoveoptions.c:181 +#: ../app/tools/gimpmoveoptions.c:181 msgid "Move the current path" msgstr "" -#: app/tools/gimpmovetool.c:117 +#: ../app/tools/gimpmovetool.c:117 msgid "Move layers & selections" -msgstr "" +msgstr "Преместване на слоеве и избирания" -#: app/tools/gimpmovetool.c:118 +#: ../app/tools/gimpmovetool.c:118 msgid "_Move" msgstr "_Преместване" -#: app/tools/gimpmovetool.c:298 app/tools/gimpmovetool.c:576 +#: ../app/tools/gimpmovetool.c:298 ../app/tools/gimpmovetool.c:576 msgid "Move Guide: " msgstr "" -#: app/tools/gimpmovetool.c:570 +#: ../app/tools/gimpmovetool.c:570 msgid "Cancel Guide" msgstr "" -#: app/tools/gimpmovetool.c:576 +#: ../app/tools/gimpmovetool.c:576 msgid "Add Guide: " msgstr "" -#: app/tools/gimppaintbrushtool.c:52 +#: ../app/tools/gimppaintbrushtool.c:52 msgid "Paint fuzzy brush strokes" msgstr "" -#: app/tools/gimppaintbrushtool.c:53 +#: ../app/tools/gimppaintbrushtool.c:53 msgid "_Paintbrush" msgstr "" -#: app/tools/gimppaintoptions-gui.c:103 app/widgets/gimpbrushselect.c:201 -#: app/widgets/gimplayertreeview.c:332 +#: ../app/tools/gimppaintoptions-gui.c:103 +#: ../app/widgets/gimpbrushselect.c:201 ../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:325 +#: ../app/tools/gimppaintoptions-gui.c:108 +#: ../app/tools/gimpselectionoptions.c:374 +#: ../app/widgets/gimpbrushselect.c:218 ../app/widgets/gimplayertreeview.c:325 msgid "Mode:" msgstr "" -#: app/tools/gimppaintoptions-gui.c:126 +#: ../app/tools/gimppaintoptions-gui.c:126 msgid "Brush:" msgstr "Четка:" -#: app/tools/gimppaintoptions-gui.c:135 app/tools/gimppaintoptions-gui.c:394 +#: ../app/tools/gimppaintoptions-gui.c:135 +#: ../app/tools/gimppaintoptions-gui.c:394 msgid "Gradient:" msgstr "Преливка:" -#: app/tools/gimppaintoptions-gui.c:177 +#: ../app/tools/gimppaintoptions-gui.c:177 msgid "Hard edge" msgstr "" -#: app/tools/gimppaintoptions-gui.c:216 +#: ../app/tools/gimppaintoptions-gui.c:216 msgid "Pressure sensitivity" msgstr "" -#: app/tools/gimppaintoptions-gui.c:236 +#: ../app/tools/gimppaintoptions-gui.c:236 msgid "Opacity" msgstr "Непрозрачност" -#: app/tools/gimppaintoptions-gui.c:250 +#: ../app/tools/gimppaintoptions-gui.c:250 msgid "Hardness" msgstr "" -#: app/tools/gimppaintoptions-gui.c:261 +#: ../app/tools/gimppaintoptions-gui.c:261 msgid "Rate" msgstr "" -#: app/tools/gimppaintoptions-gui.c:274 +#: ../app/tools/gimppaintoptions-gui.c:274 msgid "Size" msgstr "Размер" -#: app/tools/gimppaintoptions-gui.c:313 +#: ../app/tools/gimppaintoptions-gui.c:313 msgid "Fade out" msgstr "" -#: app/tools/gimppaintoptions-gui.c:333 app/tools/gimppaintoptions-gui.c:403 +#: ../app/tools/gimppaintoptions-gui.c:333 +#: ../app/tools/gimppaintoptions-gui.c:403 msgid "Length:" msgstr "" -#: app/tools/gimppaintoptions-gui.c:367 +#: ../app/tools/gimppaintoptions-gui.c:367 msgid "Use color from gradient" -msgstr "" +msgstr "Използване на цвят от преливка" -#: app/tools/gimppenciltool.c:52 +#: ../app/tools/gimppenciltool.c:52 msgid "Paint hard edged pixels" msgstr "" -#: app/tools/gimppenciltool.c:53 +#: ../app/tools/gimppenciltool.c:53 msgid "Pe_ncil" msgstr "Мо_лив" -#: app/tools/gimpperspectivetool.c:81 +#: ../app/tools/gimpperspectivetool.c:81 msgid "Perspective" msgstr "Перспектива" -#: app/tools/gimpperspectivetool.c:82 +#: ../app/tools/gimpperspectivetool.c:82 msgid "Change perspective of the layer or selection" -msgstr "" +msgstr "Промяна перспективата на слоя или избраното" -#: app/tools/gimpperspectivetool.c:83 +#: ../app/tools/gimpperspectivetool.c:83 msgid "_Perspective" msgstr "_Перспектива" -#: app/tools/gimpperspectivetool.c:140 +#: ../app/tools/gimpperspectivetool.c:140 msgid "Perspective Transform Information" -msgstr "" +msgstr "Данни за промяната на перспективата" -#: app/tools/gimpperspectivetool.c:149 +#: ../app/tools/gimpperspectivetool.c:149 msgid "Matrix:" msgstr "" -#: app/tools/gimpposterizetool.c:79 +#: ../app/tools/gimpposterizetool.c:79 msgid "Reduce image to a fixed number of colors" msgstr "" -#: app/tools/gimpposterizetool.c:80 +#: ../app/tools/gimpposterizetool.c:80 msgid "_Posterize..." msgstr "" -#: app/tools/gimpposterizetool.c:131 +#: ../app/tools/gimpposterizetool.c:131 msgid "Posterize (Reduce Number of Colors)" msgstr "" -#: app/tools/gimpposterizetool.c:173 +#: ../app/tools/gimpposterizetool.c:173 msgid "Posterize does not operate on indexed layers." msgstr "" -#: app/tools/gimpposterizetool.c:223 +#: ../app/tools/gimpposterizetool.c:223 msgid "Posterize _levels:" msgstr "" -#: app/tools/gimprectselecttool.c:97 +#: ../app/tools/gimprectselecttool.c:97 msgid "Select rectangular regions" -msgstr "" +msgstr "Избиране на правоъгълни области" -#: app/tools/gimprectselecttool.c:98 +#: ../app/tools/gimprectselecttool.c:98 msgid "_Rect Select" msgstr "" -#: app/tools/gimprectselecttool.c:224 +#: ../app/tools/gimprectselecttool.c:224 msgid "Selection: ADD" msgstr "" -#: app/tools/gimprectselecttool.c:227 +#: ../app/tools/gimprectselecttool.c:227 msgid "Selection: SUBTRACT" msgstr "" -#: app/tools/gimprectselecttool.c:230 +#: ../app/tools/gimprectselecttool.c:230 msgid "Selection: INTERSECT" msgstr "" -#: app/tools/gimprectselecttool.c:233 +#: ../app/tools/gimprectselecttool.c:233 msgid "Selection: REPLACE" msgstr "" -#: app/tools/gimprectselecttool.c:468 +#: ../app/tools/gimprectselecttool.c:468 msgid "Selection: " msgstr "" -#: app/tools/gimprotatetool.c:98 +#: ../app/tools/gimprotatetool.c:98 msgid "Rotate the layer or selection" -msgstr "" +msgstr "Завъртане на слоя или избраното" -#: app/tools/gimprotatetool.c:99 +#: ../app/tools/gimprotatetool.c:99 msgid "_Rotate" msgstr "_Завъртане" -#: app/tools/gimprotatetool.c:158 +#: ../app/tools/gimprotatetool.c:158 msgid "Rotation Information" -msgstr "" +msgstr "Данни за завъртането" -#: app/tools/gimprotatetool.c:185 +#: ../app/tools/gimprotatetool.c:185 msgid "Center X:" msgstr "" -#: app/tools/gimprotatetool.c:190 +#: ../app/tools/gimprotatetool.c:190 msgid "Center Y:" msgstr "" -#: app/tools/gimpscaletool.c:91 +#: ../app/tools/gimpscaletool.c:91 msgid "Scale" msgstr "" -#: app/tools/gimpscaletool.c:92 +#: ../app/tools/gimpscaletool.c:92 msgid "Scale the layer or selection" msgstr "" -#: app/tools/gimpscaletool.c:93 +#: ../app/tools/gimpscaletool.c:93 msgid "_Scale" msgstr "" -#: app/tools/gimpscaletool.c:152 +#: ../app/tools/gimpscaletool.c:152 msgid "Scaling information" msgstr "" -#: app/tools/gimpscaletool.c:163 +#: ../app/tools/gimpscaletool.c:163 msgid "Original Width:" msgstr "" -#: app/tools/gimpscaletool.c:170 +#: ../app/tools/gimpscaletool.c:170 msgid "Current width:" msgstr "Текуща широчина:" -#: app/tools/gimpscaletool.c:174 +#: ../app/tools/gimpscaletool.c:174 msgid "Current height:" msgstr "Текуща височина:" -#: app/tools/gimpscaletool.c:189 +#: ../app/tools/gimpscaletool.c:189 msgid "Scale ratio X:" msgstr "" -#: app/tools/gimpscaletool.c:192 +#: ../app/tools/gimpscaletool.c:192 msgid "Scale ratio Y:" msgstr "" -#: app/tools/gimpscaletool.c:196 +#: ../app/tools/gimpscaletool.c:196 msgid "Aspect Ratio:" msgstr "" -#: app/tools/gimpselectionoptions.c:136 +#: ../app/tools/gimpselectionoptions.c:136 msgid "Smooth edges" msgstr "" -#: app/tools/gimpselectionoptions.c:150 +#: ../app/tools/gimpselectionoptions.c:150 msgid "Allow completely transparent regions to be selected" msgstr "Разрешаване избирането на изцяло прозрачните области" -#: app/tools/gimpselectionoptions.c:156 +#: ../app/tools/gimpselectionoptions.c:156 msgid "Base selection on all visible layers" msgstr "" -#: app/tools/gimpselectionoptions.c:171 +#: ../app/tools/gimpselectionoptions.c:171 msgid "Use all visible layers when shrinking the selection" msgstr "" -#: app/tools/gimpselectionoptions.c:382 app/tools/gimptextoptions.c:447 +#: ../app/tools/gimpselectionoptions.c:382 ../app/tools/gimptextoptions.c:447 msgid "Antialiasing" msgstr "" -#: app/tools/gimpselectionoptions.c:399 +#: ../app/tools/gimpselectionoptions.c:399 msgid "Feather edges" msgstr "" -#: app/tools/gimpselectionoptions.c:425 +#: ../app/tools/gimpselectionoptions.c:425 msgid "Show interactive boundary" msgstr "" -#: app/tools/gimpselectionoptions.c:448 +#: ../app/tools/gimpselectionoptions.c:448 msgid "Select transparent areas" msgstr "Избиране на прозрачните области" -#: app/tools/gimpselectionoptions.c:488 +#: ../app/tools/gimpselectionoptions.c:488 msgid "Auto shrink selection" msgstr "" -#: app/tools/gimpsheartool.c:98 +#: ../app/tools/gimpsheartool.c:98 msgid "Shear" msgstr "" -#: app/tools/gimpsheartool.c:99 +#: ../app/tools/gimpsheartool.c:99 msgid "Shear the layer or selection" msgstr "" -#: app/tools/gimpsheartool.c:100 +#: ../app/tools/gimpsheartool.c:100 msgid "S_hear" msgstr "" -#: app/tools/gimpsheartool.c:157 +#: ../app/tools/gimpsheartool.c:157 msgid "Shearing Information" msgstr "" -#: app/tools/gimpsheartool.c:167 +#: ../app/tools/gimpsheartool.c:167 msgid "Shear magnitude X:" msgstr "" -#: app/tools/gimpsheartool.c:174 +#: ../app/tools/gimpsheartool.c:174 msgid "Shear magnitude Y:" msgstr "" -#: app/tools/gimpsmudgetool.c:55 +#: ../app/tools/gimpsmudgetool.c:55 msgid "Smudge image" msgstr "" -#: app/tools/gimpsmudgetool.c:56 +#: ../app/tools/gimpsmudgetool.c:56 msgid "_Smudge" msgstr "" -#: app/tools/gimptextoptions.c:146 +#: ../app/tools/gimptextoptions.c:146 msgid "" "Hinting alters the font outline to produce a crisp bitmap at small sizes" msgstr "" -#: app/tools/gimptextoptions.c:153 +#: ../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 "" -#: app/tools/gimptextoptions.c:178 +#: ../app/tools/gimptextoptions.c:178 msgid "Indentation of the first line" -msgstr "" +msgstr "Отстъп на първи ред" -#: app/tools/gimptextoptions.c:183 +#: ../app/tools/gimptextoptions.c:183 msgid "Modify line spacing" msgstr "" -#: app/tools/gimptextoptions.c:419 +#: ../app/tools/gimptextoptions.c:419 msgid "Font:" msgstr "Шрифт:" -#: app/tools/gimptextoptions.c:431 +#: ../app/tools/gimptextoptions.c:431 msgid "Hinting" msgstr "" -#: app/tools/gimptextoptions.c:438 +#: ../app/tools/gimptextoptions.c:438 msgid "Force auto-hinter" msgstr "" -#: app/tools/gimptextoptions.c:453 +#: ../app/tools/gimptextoptions.c:453 msgid "Text Color" msgstr "Цвят на текста" -#: app/tools/gimptextoptions.c:458 +#: ../app/tools/gimptextoptions.c:458 msgid "Color:" msgstr "Цвят:" -#: app/tools/gimptextoptions.c:463 +#: ../app/tools/gimptextoptions.c:463 msgid "Justify:" msgstr "" -#: app/tools/gimptextoptions.c:469 +#: ../app/tools/gimptextoptions.c:469 msgid "Indent:" msgstr "" -#: app/tools/gimptextoptions.c:475 +#: ../app/tools/gimptextoptions.c:475 msgid "" "Line\n" "spacing:" msgstr "" +"Разстояние\n" +"между редовете:" -#: app/tools/gimptextoptions.c:478 +#: ../app/tools/gimptextoptions.c:478 msgid "Create path from text" msgstr "" -#: app/tools/gimptexttool.c:143 +#: ../app/tools/gimptexttool.c:145 msgid "Add text to the image" msgstr "Добавяне на текст към изображението" -#: app/tools/gimptexttool.c:144 +#: ../app/tools/gimptexttool.c:146 msgid "Te_xt" msgstr "Те_кст" -#: app/tools/gimptexttool.c:732 +#: ../app/tools/gimptexttool.c:744 msgid "GIMP Text Editor" msgstr "Редактор на текст на GIMP" -#: app/tools/gimptexttool.c:842 app/tools/gimptexttool.c:845 +#: ../app/tools/gimptexttool.c:854 ../app/tools/gimptexttool.c:857 msgid "Confirm Text Editing" msgstr "" -#: app/tools/gimptexttool.c:866 +#: ../app/tools/gimptexttool.c:878 msgid "" "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 " @@ -8937,85 +9009,85 @@ "You can edit the layer or create a new text layer from its text attributes." msgstr "" -#: app/tools/gimpthresholdtool.c:93 +#: ../app/tools/gimpthresholdtool.c:93 msgid "Reduce image to two colors using a threshold" msgstr "" -#: app/tools/gimpthresholdtool.c:94 +#: ../app/tools/gimpthresholdtool.c:94 msgid "_Threshold..." msgstr "" -#: app/tools/gimpthresholdtool.c:148 +#: ../app/tools/gimpthresholdtool.c:148 msgid "Apply Threshold" msgstr "" -#: app/tools/gimpthresholdtool.c:199 +#: ../app/tools/gimpthresholdtool.c:199 msgid "Threshold does not operate on indexed layers." msgstr "" -#: app/tools/gimptransformoptions.c:329 +#: ../app/tools/gimptransformoptions.c:329 msgid "Transform Direction" msgstr "" -#: app/tools/gimptransformoptions.c:338 +#: ../app/tools/gimptransformoptions.c:338 msgid "Interpolation:" msgstr "" -#: app/tools/gimptransformoptions.c:348 +#: ../app/tools/gimptransformoptions.c:348 msgid "Supersampling" msgstr "" #. the clip resulting image toggle button -#: app/tools/gimptransformoptions.c:353 +#: ../app/tools/gimptransformoptions.c:353 msgid "Clip result" msgstr "" -#: app/tools/gimptransformoptions.c:367 +#: ../app/tools/gimptransformoptions.c:367 msgid "Preview:" msgstr "Преглед:" #. the constraints frame -#: app/tools/gimptransformoptions.c:413 +#: ../app/tools/gimptransformoptions.c:413 msgid "Constraints" msgstr "" -#: app/tools/gimptransformoptions.c:425 +#: ../app/tools/gimptransformoptions.c:425 #, c-format msgid "15 degrees %s" msgstr "През 15 градуса %s" -#: app/tools/gimptransformoptions.c:445 +#: ../app/tools/gimptransformoptions.c:445 #, c-format msgid "Keep height %s" msgstr "" -#: app/tools/gimptransformoptions.c:447 +#: ../app/tools/gimptransformoptions.c:447 #, c-format msgid "Keep width %s" msgstr "" -#: app/tools/gimptransformoptions.c:449 +#: ../app/tools/gimptransformoptions.c:449 #, c-format msgid "Keep aspect %s" msgstr "" -#: app/tools/gimptransformtool.c:253 +#: ../app/tools/gimptransformtool.c:253 msgid "Transforming..." msgstr "Преобразуване..." -#: app/tools/gimpvectoroptions.c:113 +#: ../app/tools/gimpvectoroptions.c:113 msgid "Restrict editing to polygons" msgstr "" -#: app/tools/gimpvectoroptions.c:177 +#: ../app/tools/gimpvectoroptions.c:177 msgid "Edit Mode" msgstr "" -#: app/tools/gimpvectoroptions.c:182 +#: ../app/tools/gimpvectoroptions.c:182 msgid "Polygonal" msgstr "" -#: app/tools/gimpvectoroptions.c:186 +#: ../app/tools/gimpvectoroptions.c:186 #, c-format msgid "" "Path to Selection\n" @@ -9024,1000 +9096,1040 @@ "%s Intersect" msgstr "" -#: app/tools/gimpvectoroptions.c:196 +#: ../app/tools/gimpvectoroptions.c:196 msgid "Create selection from path" msgstr "" -#: app/tools/gimpvectoroptions.c:207 +#: ../app/tools/gimpvectoroptions.c:207 msgid "Stroke path" msgstr "" -#: app/tools/gimpvectortool.c:161 +#: ../app/tools/gimpvectortool.c:161 msgid "Create and edit paths" msgstr "" -#: app/tools/gimpvectortool.c:363 +#: ../app/tools/gimpvectortool.c:363 msgid "Add Stroke" msgstr "" -#: app/tools/gimpvectortool.c:381 +#: ../app/tools/gimpvectortool.c:381 msgid "Add Anchor" msgstr "" -#: app/tools/gimpvectortool.c:404 +#: ../app/tools/gimpvectortool.c:404 msgid "Insert Anchor" msgstr "" -#: app/tools/gimpvectortool.c:433 +#: ../app/tools/gimpvectortool.c:433 msgid "Drag Handle" msgstr "" -#: app/tools/gimpvectortool.c:462 +#: ../app/tools/gimpvectortool.c:462 msgid "Drag Anchor" msgstr "" -#: app/tools/gimpvectortool.c:479 +#: ../app/tools/gimpvectortool.c:479 msgid "Drag Anchors" msgstr "" -#: app/tools/gimpvectortool.c:499 +#: ../app/tools/gimpvectortool.c:499 msgid "Drag Curve" msgstr "" -#: app/tools/gimpvectortool.c:527 +#: ../app/tools/gimpvectortool.c:527 msgid "Connect Strokes" msgstr "" -#: app/tools/gimpvectortool.c:557 +#: ../app/tools/gimpvectortool.c:557 msgid "Drag Path" msgstr "" -#: app/tools/gimpvectortool.c:567 +#: ../app/tools/gimpvectortool.c:567 msgid "Convert Edge" msgstr "" -#: app/tools/gimpvectortool.c:597 +#: ../app/tools/gimpvectortool.c:597 msgid "Delete Anchor" msgstr "" -#: app/tools/gimpvectortool.c:619 +#: ../app/tools/gimpvectortool.c:619 msgid "Delete Segment" msgstr "" -#: app/tools/gimpvectortool.c:831 +#: ../app/tools/gimpvectortool.c:831 msgid "Move Anchors" msgstr "" -#: app/tools/gimpvectortool.c:1196 +#: ../app/tools/gimpvectortool.c:1196 msgid "Click to pick path to edit." msgstr "" -#: app/tools/gimpvectortool.c:1199 +#: ../app/tools/gimpvectortool.c:1199 msgid "Click to create a new path." msgstr "" -#: app/tools/gimpvectortool.c:1202 +#: ../app/tools/gimpvectortool.c:1202 msgid "Click to create a new component of the path." msgstr "" -#: app/tools/gimpvectortool.c:1205 +#: ../app/tools/gimpvectortool.c:1205 msgid "Click to create a new anchor. (try SHIFT)" msgstr "" -#: app/tools/gimpvectortool.c:1208 +#: ../app/tools/gimpvectortool.c:1208 msgid "Click-Drag to move the anchor around." msgstr "" -#: app/tools/gimpvectortool.c:1211 +#: ../app/tools/gimpvectortool.c:1211 msgid "Click-Drag to move the anchors around." msgstr "" -#: app/tools/gimpvectortool.c:1214 +#: ../app/tools/gimpvectortool.c:1214 msgid "Click-Drag to move the handle around. (try SHIFT)" msgstr "" -#: app/tools/gimpvectortool.c:1217 +#: ../app/tools/gimpvectortool.c:1217 msgid "Click-Drag to change the shape of the curve. (SHIFT: symmetrical)" msgstr "" -#: app/tools/gimpvectortool.c:1221 +#: ../app/tools/gimpvectortool.c:1221 msgid "Click-Drag to move the component around. (try SHIFT)" msgstr "" -#: app/tools/gimpvectortool.c:1225 +#: ../app/tools/gimpvectortool.c:1225 msgid "Click-Drag to move the path around." msgstr "" -#: app/tools/gimpvectortool.c:1228 +#: ../app/tools/gimpvectortool.c:1228 msgid "Click to insert an anchor on the path. (try SHIFT)" msgstr "" -#: app/tools/gimpvectortool.c:1231 +#: ../app/tools/gimpvectortool.c:1231 msgid "Click to delete this anchor." msgstr "" -#: app/tools/gimpvectortool.c:1234 +#: ../app/tools/gimpvectortool.c:1234 msgid "Click to connect this anchor with the selected endpoint." msgstr "" -#: app/tools/gimpvectortool.c:1238 +#: ../app/tools/gimpvectortool.c:1238 msgid "Click to open up the path." msgstr "" -#: app/tools/gimpvectortool.c:1241 +#: ../app/tools/gimpvectortool.c:1241 msgid "Click to make this node angular." msgstr "" -#: app/tools/gimpvectortool.c:1751 +#: ../app/tools/gimpvectortool.c:1751 msgid "Delete Anchors" msgstr "" -#: app/tools/gimpvectortool.c:1918 +#: ../app/tools/gimpvectortool.c:1918 msgid "There is no active layer or channel to stroke to" msgstr "" -#: app/vectors/gimpvectors.c:229 +#: ../app/vectors/gimpvectors.c:229 msgid "Path" msgstr "" -#: app/vectors/gimpvectors.c:230 +#: ../app/vectors/gimpvectors.c:230 msgid "Rename Path" msgstr "" -#: app/vectors/gimpvectors.c:231 app/vectors/gimpvectors.c:356 +#: ../app/vectors/gimpvectors.c:231 ../app/vectors/gimpvectors.c:356 msgid "Move Path" msgstr "" -#: app/vectors/gimpvectors.c:232 +#: ../app/vectors/gimpvectors.c:232 msgid "Scale Path" msgstr "" -#: app/vectors/gimpvectors.c:233 +#: ../app/vectors/gimpvectors.c:233 msgid "Resize Path" msgstr "" -#: app/vectors/gimpvectors.c:234 app/vectors/gimpvectors.c:447 +#: ../app/vectors/gimpvectors.c:234 ../app/vectors/gimpvectors.c:447 msgid "Flip Path" msgstr "" -#: app/vectors/gimpvectors.c:235 app/vectors/gimpvectors.c:491 +#: ../app/vectors/gimpvectors.c:235 ../app/vectors/gimpvectors.c:491 msgid "Rotate Path" msgstr "" -#: app/vectors/gimpvectors.c:236 app/vectors/gimpvectors.c:522 +#: ../app/vectors/gimpvectors.c:236 ../app/vectors/gimpvectors.c:522 msgid "Transform Path" msgstr "" -#: app/vectors/gimpvectors.c:551 +#: ../app/vectors/gimpvectors.c:551 msgid "Cannot stroke empty path." msgstr "" -#: app/vectors/gimpvectors-import.c:287 +#: ../app/vectors/gimpvectors-import.c:287 msgid "Import Paths" msgstr "" -#: app/vectors/gimpvectors-import.c:298 +#: ../app/vectors/gimpvectors-import.c:298 msgid "Imported Path" msgstr "" -#: app/vectors/gimpvectors-import.c:324 +#: ../app/vectors/gimpvectors-import.c:324 #, c-format msgid "No paths found in '%s'" msgstr "" -#: app/vectors/gimpvectors-import.c:327 +#: ../app/vectors/gimpvectors-import.c:327 msgid "No paths found in the buffer" msgstr "" -#: app/vectors/gimpvectors-import.c:337 +#: ../app/vectors/gimpvectors-import.c:337 #, c-format msgid "Failed to import paths from '%s': %s" msgstr "" -#: app/widgets/gimpactiongroup.c:803 +#: ../app/widgets/gimpactiongroup.c:803 #, c-format msgid "RGBA (%0.3f, %0.3f, %0.3f, %0.3f)" msgstr "" -#: app/widgets/gimpactionview.c:354 app/widgets/gimpcontrollereditor.c:374 +#: ../app/widgets/gimpactionview.c:354 +#: ../app/widgets/gimpcontrollereditor.c:374 msgid "Action" msgstr "Действие" -#: app/widgets/gimpactionview.c:383 +#: ../app/widgets/gimpactionview.c:383 msgid "Shortcut" msgstr "Клавиш" -#: app/widgets/gimpactionview.c:405 +#: ../app/widgets/gimpactionview.c:405 msgid "Name" msgstr "Име" -#: app/widgets/gimpactionview.c:545 app/widgets/gimpactionview.c:738 +#: ../app/widgets/gimpactionview.c:545 ../app/widgets/gimpactionview.c:738 msgid "Changing shortcut failed." msgstr "" -#: app/widgets/gimpactionview.c:585 +#: ../app/widgets/gimpactionview.c:585 msgid "Conflicting Shortcuts" msgstr "" -#: app/widgets/gimpactionview.c:591 +#: ../app/widgets/gimpactionview.c:591 msgid "_Reassign shortcut" msgstr "" -#: app/widgets/gimpactionview.c:602 +#: ../app/widgets/gimpactionview.c:602 #, c-format msgid "Shortcut \"%s\" is already taken by \"%s\" from the \"%s\" group." msgstr "Клавишът \"%s\" вече е запазен за \"%s\" от групата \"%s\"." -#: app/widgets/gimpactionview.c:606 +#: ../app/widgets/gimpactionview.c:606 #, c-format msgid "Reassigning the shortcut will cause it to be removed from \"%s\"." msgstr "" -#: app/widgets/gimpactionview.c:673 +#: ../app/widgets/gimpactionview.c:673 msgid "Removing shortcut failed." msgstr "" -#: app/widgets/gimpactionview.c:678 +#: ../app/widgets/gimpactionview.c:678 msgid "Invalid shortcut." msgstr "" -#: app/widgets/gimpbrusheditor.c:168 +#: ../app/widgets/gimpbrusheditor.c:168 msgid "Spikes:" msgstr "" -#: app/widgets/gimpbrusheditor.c:181 +#: ../app/widgets/gimpbrusheditor.c:181 msgid "Hardness:" msgstr "" -#: app/widgets/gimpbrusheditor.c:220 app/widgets/gimpbrushfactoryview.c:114 +#: ../app/widgets/gimpbrusheditor.c:220 +#: ../app/widgets/gimpbrushfactoryview.c:114 msgid "Spacing:" msgstr "" -#: app/widgets/gimpbrusheditor.c:223 app/widgets/gimpbrushfactoryview.c:117 +#: ../app/widgets/gimpbrusheditor.c:223 +#: ../app/widgets/gimpbrushfactoryview.c:117 msgid "Percentage of width of brush" msgstr "" -#: app/widgets/gimpbufferview.c:165 app/widgets/gimpbufferview.c:246 -#: app/widgets/gimpcontainergridview.c:206 -#: app/widgets/gimpcontainergridview.c:657 -#: app/widgets/gimphistogrameditor.c:147 app/widgets/gimphistogrameditor.c:359 +#: ../app/widgets/gimpbufferview.c:165 ../app/widgets/gimpbufferview.c:246 +#: ../app/widgets/gimpcontainergridview.c:206 +#: ../app/widgets/gimpcontainergridview.c:657 +#: ../app/widgets/gimphistogrameditor.c:147 +#: ../app/widgets/gimphistogrameditor.c:359 msgid "(None)" msgstr "" -#: app/widgets/gimpcellrendereraccel.c:234 -#: app/widgets/gimpcellrendereraccel.c:459 +#: ../app/widgets/gimpcellrendereraccel.c:234 +#: ../app/widgets/gimpcellrendereraccel.c:459 msgid "Type a new accelerator, or press Backspace to clear" msgstr "" -#: app/widgets/gimpcellrendereraccel.c:462 +#: ../app/widgets/gimpcellrendereraccel.c:462 msgid "Type a new accelerator" msgstr "" -#: app/widgets/gimpchanneltreeview.c:151 +#: ../app/widgets/gimpchanneltreeview.c:151 msgid "Reorder Channel" msgstr "" -#: app/widgets/gimpchanneltreeview.c:261 +#: ../app/widgets/gimpchanneltreeview.c:261 msgid "Empty Channel" msgstr "" -#: app/widgets/gimpclipboard.c:283 +#: ../app/widgets/gimpclipboard.c:283 msgid "Clipboard" msgstr "" -#: app/widgets/gimpcolordialog.c:169 +#: ../app/widgets/gimpcolordialog.c:169 msgid "Add the current color to the color history" msgstr "" -#: app/widgets/gimpcolordisplayeditor.c:177 +#: ../app/widgets/gimpcolordisplayeditor.c:177 msgid "Available Filters" msgstr "" -#: app/widgets/gimpcolordisplayeditor.c:204 +#: ../app/widgets/gimpcolordisplayeditor.c:204 msgid "Add the selected filter to the list of active filters." msgstr "" -#: app/widgets/gimpcolordisplayeditor.c:221 +#: ../app/widgets/gimpcolordisplayeditor.c:221 msgid "Remove the selected filter from the list of active filters." msgstr "" -#: app/widgets/gimpcolordisplayeditor.c:235 +#: ../app/widgets/gimpcolordisplayeditor.c:235 msgid "Move the selected filter up" msgstr "" -#: app/widgets/gimpcolordisplayeditor.c:244 +#: ../app/widgets/gimpcolordisplayeditor.c:244 msgid "Move the selected filter down" msgstr "" -#: app/widgets/gimpcolordisplayeditor.c:289 +#: ../app/widgets/gimpcolordisplayeditor.c:289 msgid "Active Filters" msgstr "" -#: app/widgets/gimpcolordisplayeditor.c:322 +#: ../app/widgets/gimpcolordisplayeditor.c:322 msgid "Reset the selected filter to default values" msgstr "" -#: app/widgets/gimpcolordisplayeditor.c:543 +#: ../app/widgets/gimpcolordisplayeditor.c:543 #, c-format msgid "Configure selected filter: %s" msgstr "" -#: app/widgets/gimpcolordisplayeditor.c:550 +#: ../app/widgets/gimpcolordisplayeditor.c:550 msgid "No filter selected" msgstr "" -#: app/widgets/gimpcolordisplayeditor.c:554 +#: ../app/widgets/gimpcolordisplayeditor.c:554 msgid "Configure selected filter" msgstr "" -#: app/widgets/gimpcolorframe.c:240 +#: ../app/widgets/gimpcolorframe.c:240 msgid "Index:" msgstr "" -#: app/widgets/gimpcolorframe.c:244 app/widgets/gimpcolorframe.c:265 +#: ../app/widgets/gimpcolorframe.c:244 ../app/widgets/gimpcolorframe.c:265 msgid "Red:" msgstr "Червено:" -#: app/widgets/gimpcolorframe.c:245 app/widgets/gimpcolorframe.c:266 +#: ../app/widgets/gimpcolorframe.c:245 ../app/widgets/gimpcolorframe.c:266 msgid "Green:" msgstr "Зелено:" -#: app/widgets/gimpcolorframe.c:246 app/widgets/gimpcolorframe.c:267 +#: ../app/widgets/gimpcolorframe.c:246 ../app/widgets/gimpcolorframe.c:267 msgid "Blue:" msgstr "Синьо:" -#: app/widgets/gimpcolorframe.c:256 app/widgets/gimpcolorframe.c:287 +#: ../app/widgets/gimpcolorframe.c:256 ../app/widgets/gimpcolorframe.c:287 msgid "Value:" msgstr "Стойност:" -#: app/widgets/gimpcolorframe.c:275 +#: ../app/widgets/gimpcolorframe.c:275 msgid "Hex:" msgstr "Шестнадесетично:" -#: app/widgets/gimpcolorframe.c:285 +#: ../app/widgets/gimpcolorframe.c:285 msgid "Hue:" msgstr "" -#: app/widgets/gimpcolorframe.c:286 +#: ../app/widgets/gimpcolorframe.c:286 msgid "Sat.:" msgstr "" -#: app/widgets/gimpcolorframe.c:303 +#: ../app/widgets/gimpcolorframe.c:303 msgid "Cyan:" msgstr "" -#: app/widgets/gimpcolorframe.c:304 +#: ../app/widgets/gimpcolorframe.c:304 msgid "Magenta:" msgstr "" -#: app/widgets/gimpcolorframe.c:305 +#: ../app/widgets/gimpcolorframe.c:305 msgid "Yellow:" msgstr "Жълто:" -#: app/widgets/gimpcolorframe.c:306 +#: ../app/widgets/gimpcolorframe.c:306 msgid "Black:" msgstr "Черно:" -#: app/widgets/gimpcolorframe.c:320 +#: ../app/widgets/gimpcolorframe.c:320 msgid "Alpha:" msgstr "" -#: app/widgets/gimpcolormapeditor.c:247 +#: ../app/widgets/gimpcolormapeditor.c:247 msgid "Color index:" msgstr "" -#: app/widgets/gimpcolormapeditor.c:258 +#: ../app/widgets/gimpcolormapeditor.c:258 msgid "HTML notation:" msgstr "" -#: app/widgets/gimpcontainerpopup.c:502 +#: ../app/widgets/gimpcontainerpopup.c:502 msgid "Smaller Previews" msgstr "" -#: app/widgets/gimpcontainerpopup.c:507 +#: ../app/widgets/gimpcontainerpopup.c:507 msgid "Larger Previews" msgstr "" -#: app/widgets/gimpcontrollereditor.c:210 +#: ../app/widgets/gimpcontrollereditor.c:210 msgid "Dump events from this controller" msgstr "" -#: app/widgets/gimpcontrollereditor.c:215 +#: ../app/widgets/gimpcontrollereditor.c:215 msgid "Enable this controller" msgstr "" -#: app/widgets/gimpcontrollereditor.c:236 +#: ../app/widgets/gimpcontrollereditor.c:236 msgid "Name:" msgstr "Име:" -#: app/widgets/gimpcontrollereditor.c:369 +#: ../app/widgets/gimpcontrollereditor.c:369 msgid "Event" msgstr "Събитие" -#: app/widgets/gimpcontrollereditor.c:550 +#: ../app/widgets/gimpcontrollereditor.c:550 msgid "Select Controller Event Action" msgstr "" -#: app/widgets/gimpcontrollerkeyboard.c:69 +#: ../app/widgets/gimpcontrollerkeyboard.c:69 +#, fuzzy msgid "Key Up (Shift + Control + Alt)" -msgstr "" +msgstr "Превъртане нагоре (Shift + Control + Alt)" -#: app/widgets/gimpcontrollerkeyboard.c:72 +#: ../app/widgets/gimpcontrollerkeyboard.c:72 +#, fuzzy msgid "Key Up (Control + Alt)" -msgstr "" +msgstr "Превъртане нагоре (Control + Alt)" -#: app/widgets/gimpcontrollerkeyboard.c:75 +#: ../app/widgets/gimpcontrollerkeyboard.c:75 +#, fuzzy msgid "Key Up (Shift + Alt)" -msgstr "" +msgstr "Превъртане нагоре (Shift + Alt)" -#: app/widgets/gimpcontrollerkeyboard.c:78 +#: ../app/widgets/gimpcontrollerkeyboard.c:78 +#, fuzzy msgid "Key Up (Shift + Control)" -msgstr "" +msgstr "Превъртане нагоре (Shift + Control)" -#: app/widgets/gimpcontrollerkeyboard.c:81 +#: ../app/widgets/gimpcontrollerkeyboard.c:81 +#, fuzzy msgid "Key Up (Alt)" -msgstr "" +msgstr "Превъртане нагоре (Alt)" -#: app/widgets/gimpcontrollerkeyboard.c:84 +#: ../app/widgets/gimpcontrollerkeyboard.c:84 +#, fuzzy msgid "Key Up (Control)" -msgstr "" +msgstr "Преместване курсора нагоре (Control)" -#: app/widgets/gimpcontrollerkeyboard.c:87 +#: ../app/widgets/gimpcontrollerkeyboard.c:87 +#, fuzzy msgid "Key Up (Shift)" -msgstr "" +msgstr "Преместване курсора нагоре (Shift)" -#: app/widgets/gimpcontrollerkeyboard.c:90 +#: ../app/widgets/gimpcontrollerkeyboard.c:90 msgid "Key Up" msgstr "" -#: app/widgets/gimpcontrollerkeyboard.c:94 +#: ../app/widgets/gimpcontrollerkeyboard.c:94 +#, fuzzy msgid "Key Down (Shift + Control + Alt)" -msgstr "" +msgstr "Превъртане надолу (Shift + Control + Alt)" -#: app/widgets/gimpcontrollerkeyboard.c:97 +#: ../app/widgets/gimpcontrollerkeyboard.c:97 +#, fuzzy msgid "Key Down (Control + Alt)" -msgstr "" +msgstr "Превъртане надолу (Control + Alt)" -#: app/widgets/gimpcontrollerkeyboard.c:100 +#: ../app/widgets/gimpcontrollerkeyboard.c:100 +#, fuzzy msgid "Key Down (Shift + Alt)" -msgstr "" +msgstr "Превъртане надолу (Shift + Alt)" -#: app/widgets/gimpcontrollerkeyboard.c:103 +#: ../app/widgets/gimpcontrollerkeyboard.c:103 +#, fuzzy msgid "Key Down (Shift + Control)" -msgstr "" +msgstr "Превъртане надолу (Shift + Control)" -#: app/widgets/gimpcontrollerkeyboard.c:106 +#: ../app/widgets/gimpcontrollerkeyboard.c:106 +#, fuzzy msgid "Key Down (Alt)" -msgstr "" +msgstr "Преместване курсора надолу (Alt)" -#: app/widgets/gimpcontrollerkeyboard.c:109 +#: ../app/widgets/gimpcontrollerkeyboard.c:109 +#, fuzzy msgid "Key Down (Control)" -msgstr "" +msgstr "Преместване курсора надолу (Control)" -#: app/widgets/gimpcontrollerkeyboard.c:112 +#: ../app/widgets/gimpcontrollerkeyboard.c:112 +#, fuzzy msgid "Key Down (Shift)" -msgstr "" +msgstr "Преместване курсора надолу (Shift)" -#: app/widgets/gimpcontrollerkeyboard.c:115 +#: ../app/widgets/gimpcontrollerkeyboard.c:115 msgid "Key Down" msgstr "" -#: app/widgets/gimpcontrollerkeyboard.c:119 +#: ../app/widgets/gimpcontrollerkeyboard.c:119 +#, fuzzy msgid "Key Left (Shift + Control + Alt)" -msgstr "" +msgstr "Превъртане наляво (Shift + Control + Alt)" -#: app/widgets/gimpcontrollerkeyboard.c:122 +#: ../app/widgets/gimpcontrollerkeyboard.c:122 +#, fuzzy msgid "Key Left (Control + Alt)" -msgstr "" +msgstr "Превъртане наляво (Control + Alt)" -#: app/widgets/gimpcontrollerkeyboard.c:125 +#: ../app/widgets/gimpcontrollerkeyboard.c:125 +#, fuzzy msgid "Key Left (Shift + Alt)" -msgstr "" +msgstr "Превъртане наляво (Shift + Alt)" -#: app/widgets/gimpcontrollerkeyboard.c:128 +#: ../app/widgets/gimpcontrollerkeyboard.c:128 +#, fuzzy msgid "Key Left (Shift + Control)" -msgstr "" +msgstr "Превъртане наляво (Shift + Control)" -#: app/widgets/gimpcontrollerkeyboard.c:131 +#: ../app/widgets/gimpcontrollerkeyboard.c:131 +#, fuzzy msgid "Key Left (Alt)" -msgstr "" +msgstr "Преместване курсора наляво (Alt)" -#: app/widgets/gimpcontrollerkeyboard.c:134 +#: ../app/widgets/gimpcontrollerkeyboard.c:134 +#, fuzzy msgid "Key Left (Control)" -msgstr "" +msgstr "Преместване курсора наляво (Control)" -#: app/widgets/gimpcontrollerkeyboard.c:137 +#: ../app/widgets/gimpcontrollerkeyboard.c:137 +#, fuzzy msgid "Key Left (Shift)" -msgstr "" +msgstr "Преместване курсора наляво (Shift)" -#: app/widgets/gimpcontrollerkeyboard.c:140 +#: ../app/widgets/gimpcontrollerkeyboard.c:140 msgid "Key Left" msgstr "" -#: app/widgets/gimpcontrollerkeyboard.c:144 +#: ../app/widgets/gimpcontrollerkeyboard.c:144 +#, fuzzy msgid "Key Right (Shift + Control + Alt)" -msgstr "" +msgstr "Превъртане надясно (Shift + Control + Alt)" -#: app/widgets/gimpcontrollerkeyboard.c:147 +#: ../app/widgets/gimpcontrollerkeyboard.c:147 +#, fuzzy msgid "Key Right (Control + Alt)" -msgstr "" +msgstr "Преместване курсора надясно (Control + Alt)" -#: app/widgets/gimpcontrollerkeyboard.c:150 +#: ../app/widgets/gimpcontrollerkeyboard.c:150 +#, fuzzy msgid "Key Right (Shift + Alt)" -msgstr "" +msgstr "Преместване курсора надясно (Shift + Alt)" -#: app/widgets/gimpcontrollerkeyboard.c:153 +#: ../app/widgets/gimpcontrollerkeyboard.c:153 +#, fuzzy msgid "Key Right (Shift + Control)" -msgstr "" +msgstr "Превъртане надясно (Shift + Control)" -#: app/widgets/gimpcontrollerkeyboard.c:156 +#: ../app/widgets/gimpcontrollerkeyboard.c:156 +#, fuzzy msgid "Key Right (Alt)" -msgstr "" +msgstr "Преместване курсора надясно (Alt)" -#: app/widgets/gimpcontrollerkeyboard.c:159 +#: ../app/widgets/gimpcontrollerkeyboard.c:159 +#, fuzzy msgid "Key Right (Control)" -msgstr "" +msgstr "Преместване курсора надясно (Control)" -#: app/widgets/gimpcontrollerkeyboard.c:162 +#: ../app/widgets/gimpcontrollerkeyboard.c:162 +#, fuzzy msgid "Key Right (Shift)" -msgstr "" +msgstr "Преместване курсора надясно (Shift)" -#: app/widgets/gimpcontrollerkeyboard.c:165 +#: ../app/widgets/gimpcontrollerkeyboard.c:165 #, fuzzy msgid "Key Right" msgstr "Височина" -#: app/widgets/gimpcontrollerkeyboard.c:207 +#: ../app/widgets/gimpcontrollerkeyboard.c:207 msgid "Keyboard" msgstr "Клавиатура" -#: app/widgets/gimpcontrollerkeyboard.c:230 +#: ../app/widgets/gimpcontrollerkeyboard.c:230 msgid "Keyboard Events" msgstr "Събития от клавиатурата" -#: app/widgets/gimpcontrollerkeyboard.c:231 -#: app/widgets/gimpcontrollerwheel.c:230 +#: ../app/widgets/gimpcontrollerkeyboard.c:231 +#: ../app/widgets/gimpcontrollerwheel.c:230 msgid "Ready" msgstr "" -#: app/widgets/gimpcontrollerwheel.c:68 +#: ../app/widgets/gimpcontrollerwheel.c:68 msgid "Scroll Up (Shift + Control + Alt)" -msgstr "" +msgstr "Превъртане нагоре (Shift + Control + Alt)" -#: app/widgets/gimpcontrollerwheel.c:71 +#: ../app/widgets/gimpcontrollerwheel.c:71 msgid "Scroll Up (Control + Alt)" -msgstr "" +msgstr "Превъртане нагоре (Control + Alt)" -#: app/widgets/gimpcontrollerwheel.c:74 +#: ../app/widgets/gimpcontrollerwheel.c:74 msgid "Scroll Up (Shift + Alt)" -msgstr "" +msgstr "Превъртане нагоре (Shift + Alt)" -#: app/widgets/gimpcontrollerwheel.c:77 +#: ../app/widgets/gimpcontrollerwheel.c:77 msgid "Scroll Up (Shift + Control)" -msgstr "" +msgstr "Превъртане нагоре (Shift + Control)" -#: app/widgets/gimpcontrollerwheel.c:80 +#: ../app/widgets/gimpcontrollerwheel.c:80 msgid "Scroll Up (Alt)" -msgstr "" +msgstr "Превъртане нагоре (Alt)" -#: app/widgets/gimpcontrollerwheel.c:83 +#: ../app/widgets/gimpcontrollerwheel.c:83 msgid "Scroll Up (Control)" -msgstr "" +msgstr "Превъртане нагоре (Control)" -#: app/widgets/gimpcontrollerwheel.c:86 +#: ../app/widgets/gimpcontrollerwheel.c:86 msgid "Scroll Up (Shift)" -msgstr "" +msgstr "Превъртане нагоре (Shift)" -#: app/widgets/gimpcontrollerwheel.c:89 +#: ../app/widgets/gimpcontrollerwheel.c:89 msgid "Scroll Up" -msgstr "" +msgstr "Превъртане нагоре" -#: app/widgets/gimpcontrollerwheel.c:93 +#: ../app/widgets/gimpcontrollerwheel.c:93 msgid "Scroll Down (Shift + Control + Alt)" -msgstr "" +msgstr "Превъртане надолу (Shift + Control + Alt)" -#: app/widgets/gimpcontrollerwheel.c:96 +#: ../app/widgets/gimpcontrollerwheel.c:96 msgid "Scroll Down (Control + Alt)" -msgstr "" +msgstr "Превъртане надолу (Control + Alt)" -#: app/widgets/gimpcontrollerwheel.c:99 +#: ../app/widgets/gimpcontrollerwheel.c:99 msgid "Scroll Down (Shift + Alt)" -msgstr "" +msgstr "Превъртане надолу (Shift + Alt)" -#: app/widgets/gimpcontrollerwheel.c:102 +#: ../app/widgets/gimpcontrollerwheel.c:102 msgid "Scroll Down (Shift + Control)" -msgstr "" +msgstr "Превъртане надолу (Shift + Control)" -#: app/widgets/gimpcontrollerwheel.c:105 +#: ../app/widgets/gimpcontrollerwheel.c:105 msgid "Scroll Down (Alt)" -msgstr "" +msgstr "Превъртане надолу (Alt)" -#: app/widgets/gimpcontrollerwheel.c:108 +#: ../app/widgets/gimpcontrollerwheel.c:108 msgid "Scroll Down (Control)" -msgstr "" +msgstr "Превъртане надолу (Control)" -#: app/widgets/gimpcontrollerwheel.c:111 +#: ../app/widgets/gimpcontrollerwheel.c:111 msgid "Scroll Down (Shift)" -msgstr "" +msgstr "Превъртане надолу (Shift)" -#: app/widgets/gimpcontrollerwheel.c:114 +#: ../app/widgets/gimpcontrollerwheel.c:114 msgid "Scroll Down" -msgstr "" +msgstr "Превъртане надолу" -#: app/widgets/gimpcontrollerwheel.c:118 +#: ../app/widgets/gimpcontrollerwheel.c:118 msgid "Scroll Left (Shift + Control + Alt)" -msgstr "" +msgstr "Превъртане наляво (Shift + Control + Alt)" -#: app/widgets/gimpcontrollerwheel.c:121 +#: ../app/widgets/gimpcontrollerwheel.c:121 msgid "Scroll Left (Control + Alt)" -msgstr "" +msgstr "Превъртане наляво (Control + Alt)" -#: app/widgets/gimpcontrollerwheel.c:124 +#: ../app/widgets/gimpcontrollerwheel.c:124 msgid "Scroll Left (Shift + Alt)" -msgstr "" +msgstr "Превъртане наляво (Shift + Alt)" -#: app/widgets/gimpcontrollerwheel.c:127 +#: ../app/widgets/gimpcontrollerwheel.c:127 msgid "Scroll Left (Shift + Control)" -msgstr "" +msgstr "Превъртане наляво (Shift + Control)" -#: app/widgets/gimpcontrollerwheel.c:130 +#: ../app/widgets/gimpcontrollerwheel.c:130 msgid "Scroll Left (Alt)" -msgstr "" +msgstr "Превъртане наляво (Alt)" -#: app/widgets/gimpcontrollerwheel.c:133 +#: ../app/widgets/gimpcontrollerwheel.c:133 msgid "Scroll Left (Control)" -msgstr "" +msgstr "Превъртане наляво (Control)" -#: app/widgets/gimpcontrollerwheel.c:136 +#: ../app/widgets/gimpcontrollerwheel.c:136 msgid "Scroll Left (Shift)" -msgstr "" +msgstr "Превъртане наляво (Shift)" -#: app/widgets/gimpcontrollerwheel.c:139 +#: ../app/widgets/gimpcontrollerwheel.c:139 msgid "Scroll Left" -msgstr "" +msgstr "Превъртане наляво" -#: app/widgets/gimpcontrollerwheel.c:143 +#: ../app/widgets/gimpcontrollerwheel.c:143 msgid "Scroll Right (Shift + Control + Alt)" -msgstr "" +msgstr "Превъртане надясно (Shift + Control + Alt)" -#: app/widgets/gimpcontrollerwheel.c:146 +#: ../app/widgets/gimpcontrollerwheel.c:146 msgid "Scroll Right (Control + Alt)" -msgstr "" +msgstr "Превъртане надясно (Control + Alt)" -#: app/widgets/gimpcontrollerwheel.c:149 +#: ../app/widgets/gimpcontrollerwheel.c:149 msgid "Scroll Right (Shift + Alt)" -msgstr "" +msgstr "Превъртане надясно (Shift + Alt)" -#: app/widgets/gimpcontrollerwheel.c:152 +#: ../app/widgets/gimpcontrollerwheel.c:152 msgid "Scroll Right (Shift + Control)" -msgstr "" +msgstr "Превъртане надясно (Shift + Control)" -#: app/widgets/gimpcontrollerwheel.c:155 +#: ../app/widgets/gimpcontrollerwheel.c:155 msgid "Scroll Right (Alt)" -msgstr "" +msgstr "Превъртане надясно (Alt)" -#: app/widgets/gimpcontrollerwheel.c:158 +#: ../app/widgets/gimpcontrollerwheel.c:158 msgid "Scroll Right (Control)" -msgstr "" +msgstr "Превъртане надясно (Control)" -#: app/widgets/gimpcontrollerwheel.c:161 +#: ../app/widgets/gimpcontrollerwheel.c:161 msgid "Scroll Right (Shift)" -msgstr "" +msgstr "Превъртане надясно (Shift)" -#: app/widgets/gimpcontrollerwheel.c:164 +#: ../app/widgets/gimpcontrollerwheel.c:164 msgid "Scroll Right" -msgstr "" +msgstr "Превъртане надясно" -#: app/widgets/gimpcontrollerwheel.c:206 +#: ../app/widgets/gimpcontrollerwheel.c:206 msgid "Mouse Wheel" msgstr "" -#: app/widgets/gimpcontrollerwheel.c:229 +#: ../app/widgets/gimpcontrollerwheel.c:229 msgid "Mouse Wheel Events" msgstr "" -#: app/widgets/gimpdataeditor.c:205 +#: ../app/widgets/gimpdataeditor.c:205 msgid "Save" msgstr "Запазване" -#: app/widgets/gimpdataeditor.c:213 +#: ../app/widgets/gimpdataeditor.c:213 msgid "Revert" msgstr "" -#: app/widgets/gimpdevicestatus.c:281 +#: ../app/widgets/gimpdevicestatus.c:281 msgid "Save device status" msgstr "" -#: app/widgets/gimpdevicestatus.c:385 +#: ../app/widgets/gimpdevicestatus.c:385 #, c-format msgid "Foreground: %d, %d, %d" msgstr "" -#: app/widgets/gimpdevicestatus.c:390 +#: ../app/widgets/gimpdevicestatus.c:390 #, c-format msgid "Background: %d, %d, %d" msgstr "Фон: %d, %d, %d" -#: app/widgets/gimpdock.c:348 app/widgets/gimpdock.c:359 +#: ../app/widgets/gimpdock.c:348 ../app/widgets/gimpdock.c:359 msgid "Close all tabs?" msgstr "" -#: app/widgets/gimpdock.c:354 +#: ../app/widgets/gimpdock.c:354 msgid "Close all Tabs" msgstr "" -#: app/widgets/gimpdock.c:361 +#: ../app/widgets/gimpdock.c:361 #, c-format msgid "" "This window has %d tabs open. Closing the window will also close all its " "tabs." msgstr "" -#: app/widgets/gimpdock.c:474 +#: ../app/widgets/gimpdock.c:474 msgid "You can drop dockable dialogs here." msgstr "" -#: app/widgets/gimpdockable.c:210 +#: ../app/widgets/gimpdockable.c:210 msgid "Close this Tab" msgstr "" -#: app/widgets/gimperrorconsole.c:235 app/widgets/gimperrordialog.c:252 +#: ../app/widgets/gimperrorconsole.c:235 ../app/widgets/gimperrordialog.c:252 #, c-format msgid "%s Message" msgstr "" -#: app/widgets/gimperrordialog.c:229 +#: ../app/widgets/gimperrordialog.c:229 msgid "Too many error messages!" msgstr "Твърде много съобщения за грешки!" -#: app/widgets/gimperrordialog.c:230 +#: ../app/widgets/gimperrordialog.c:230 msgid "Messages are redirected to stderr." msgstr "" -#: app/widgets/gimpfiledialog.c:304 +#: ../app/widgets/gimpfiledialog.c:304 msgid "Automatically Detected" msgstr "Автоматично откриване" -#: app/widgets/gimpfiledialog.c:310 +#: ../app/widgets/gimpfiledialog.c:310 msgid "By Extension" msgstr "Според разширението" -#: app/widgets/gimpfiledialog.c:469 +#: ../app/widgets/gimpfiledialog.c:469 msgid "All Files" msgstr "Всички файлове" -#: app/widgets/gimpfiledialog.c:608 +#: ../app/widgets/gimpfiledialog.c:608 #, c-format msgid "Select File _Type (%s)" msgstr "" -#: app/widgets/gimpfileprocview.c:234 +#: ../app/widgets/gimpfileprocview.c:234 msgid "File Type" msgstr "" -#: app/widgets/gimpfileprocview.c:253 +#: ../app/widgets/gimpfileprocview.c:253 msgid "Extensions" msgstr "Разширения" -#: app/widgets/gimpgradienteditor.c:362 +#: ../app/widgets/gimpgradienteditor.c:362 msgid "Instant update" msgstr "" -#: app/widgets/gimpgradienteditor.c:619 +#: ../app/widgets/gimpgradienteditor.c:619 #, c-format msgid "Zoom factor: %d:1" msgstr "Мащаб %d:1" -#: app/widgets/gimpgradienteditor.c:622 +#: ../app/widgets/gimpgradienteditor.c:622 #, c-format msgid "Displaying [%0.6f, %0.6f]" msgstr "" -#: app/widgets/gimpgradienteditor.c:814 +#: ../app/widgets/gimpgradienteditor.c:814 #, c-format msgid "Position: %0.6f" msgstr "" -#: app/widgets/gimpgradienteditor.c:816 +#: ../app/widgets/gimpgradienteditor.c:816 #, c-format msgid "RGB (%0.3f, %0.3f, %0.3f)" msgstr "RGB (%0.3f, %0.3f, %0.3f)" -#: app/widgets/gimpgradienteditor.c:819 +#: ../app/widgets/gimpgradienteditor.c:819 #, c-format msgid "HSV (%0.3f, %0.3f, %0.3f)" msgstr "" -#: app/widgets/gimpgradienteditor.c:821 +#: ../app/widgets/gimpgradienteditor.c:821 #, c-format msgid "Intensity: %0.3f Opacity: %0.3f" msgstr "" -#: app/widgets/gimpgradienteditor.c:854 app/widgets/gimpgradienteditor.c:889 +#: ../app/widgets/gimpgradienteditor.c:854 +#: ../app/widgets/gimpgradienteditor.c:889 #, c-format msgid "RGB (%d, %d, %d)" msgstr "RGB (%d, %d, %d)" -#: app/widgets/gimpgradienteditor.c:862 +#: ../app/widgets/gimpgradienteditor.c:862 msgid "Foreground color set to:" msgstr "" -#: app/widgets/gimpgradienteditor.c:894 +#: ../app/widgets/gimpgradienteditor.c:894 #, c-format msgid "(%0.3f, %0.3f, %0.3f)" msgstr "(%0.3f, %0.3f, %0.3f)" -#: app/widgets/gimpgradienteditor.c:898 +#: ../app/widgets/gimpgradienteditor.c:898 msgid "Background color set to:" msgstr "Цветът на фона е:" -#: app/widgets/gimpgradienteditor.c:1101 app/widgets/gimpgradienteditor.c:1167 +#: ../app/widgets/gimpgradienteditor.c:1101 +#: ../app/widgets/gimpgradienteditor.c:1167 #, c-format msgid "%s%sDrag: move & compress" msgstr "" -#: app/widgets/gimpgradienteditor.c:1107 +#: ../app/widgets/gimpgradienteditor.c:1107 msgid "Drag: move" msgstr "" -#: app/widgets/gimpgradienteditor.c:1114 app/widgets/gimpgradienteditor.c:1128 -#: app/widgets/gimpgradienteditor.c:1142 app/widgets/gimpgradienteditor.c:1164 +#: ../app/widgets/gimpgradienteditor.c:1114 +#: ../app/widgets/gimpgradienteditor.c:1128 +#: ../app/widgets/gimpgradienteditor.c:1142 +#: ../app/widgets/gimpgradienteditor.c:1164 #, c-format msgid "%s%sClick: extend selection" msgstr "" -#: app/widgets/gimpgradienteditor.c:1120 app/widgets/gimpgradienteditor.c:1134 +#: ../app/widgets/gimpgradienteditor.c:1120 +#: ../app/widgets/gimpgradienteditor.c:1134 msgid "Click: select" msgstr "" -#: app/widgets/gimpgradienteditor.c:1148 app/widgets/gimpgradienteditor.c:1172 +#: ../app/widgets/gimpgradienteditor.c:1148 +#: ../app/widgets/gimpgradienteditor.c:1172 msgid "Click: select Drag: move" msgstr "" -#: app/widgets/gimpgradienteditor.c:1394 app/widgets/gimpgradienteditor.c:1402 +#: ../app/widgets/gimpgradienteditor.c:1394 +#: ../app/widgets/gimpgradienteditor.c:1402 #, c-format msgid "Handle position: %0.6f" msgstr "" -#: app/widgets/gimpgradienteditor.c:1419 +#: ../app/widgets/gimpgradienteditor.c:1419 #, c-format msgid "Distance: %0.6f" msgstr "" -#: app/widgets/gimpgrideditor.c:219 +#: ../app/widgets/gimpgrideditor.c:219 msgid "Line _Style:" msgstr "_Вид на чертите:" -#: app/widgets/gimpgrideditor.c:223 +#: ../app/widgets/gimpgrideditor.c:223 msgid "Change grid foreground color" msgstr "" -#: app/widgets/gimpgrideditor.c:228 +#: ../app/widgets/gimpgrideditor.c:228 msgid "_Foreground color:" msgstr "Цвят на _чертите:" -#: app/widgets/gimpgrideditor.c:232 +#: ../app/widgets/gimpgrideditor.c:232 msgid "Change grid background color" msgstr "Промяна фоновия цвят на мрежата" -#: app/widgets/gimpgrideditor.c:237 +#: ../app/widgets/gimpgrideditor.c:237 msgid "_Background color:" msgstr "_Цвят на фона:" -#: app/widgets/gimpgrideditor.c:242 +#: ../app/widgets/gimpgrideditor.c:242 msgid "Spacing" msgstr "Отстояния" -#: app/widgets/gimpgrideditor.c:263 app/widgets/gimpgrideditor.c:295 +#: ../app/widgets/gimpgrideditor.c:263 ../app/widgets/gimpgrideditor.c:295 msgid "Width" msgstr "Широчина" -#: app/widgets/gimpgrideditor.c:265 app/widgets/gimpgrideditor.c:297 +#: ../app/widgets/gimpgrideditor.c:265 ../app/widgets/gimpgrideditor.c:297 msgid "Height" msgstr "Височина" -#: app/widgets/gimphelp.c:187 +#: ../app/widgets/gimphelp.c:187 msgid "Help browser not found" msgstr "Не е открит четец за помощта" -#: app/widgets/gimphelp.c:188 +#: ../app/widgets/gimphelp.c:188 msgid "Could not find GIMP help browser." msgstr "Не е открит четецът за помощта на GIMP." -#: app/widgets/gimphelp.c:189 +#: ../app/widgets/gimphelp.c:189 msgid "" "The GIMP help browser plug-in appears to be missing from your installation." msgstr "" "Приставката за четене на помощта на GIMP изглежда липсва в инсталацията ви." -#: app/widgets/gimphelp.c:213 +#: ../app/widgets/gimphelp.c:213 msgid "Help browser doesn't start" msgstr "Четецът за помощта не може да бъде пуснат" -#: app/widgets/gimphelp.c:214 +#: ../app/widgets/gimphelp.c:214 msgid "Could not start the GIMP help browser plug-in." msgstr "Не може да бъде пусната приставката за четене на помощта на GIMP." -#: app/widgets/gimphelp.c:240 +#: ../app/widgets/gimphelp.c:240 msgid "Use _web browser instead" msgstr "Използване на _уеб-четец" -#: app/widgets/gimphistogrameditor.c:134 +#: ../app/widgets/gimphistogrameditor.c:134 msgid "Mean:" msgstr "" -#: app/widgets/gimphistogrameditor.c:135 +#: ../app/widgets/gimphistogrameditor.c:135 msgid "Std Dev:" msgstr "" -#: app/widgets/gimphistogrameditor.c:136 +#: ../app/widgets/gimphistogrameditor.c:136 msgid "Median:" msgstr "" -#: app/widgets/gimphistogrameditor.c:137 +#: ../app/widgets/gimphistogrameditor.c:137 msgid "Pixels:" msgstr "" -#: app/widgets/gimphistogrameditor.c:138 +#: ../app/widgets/gimphistogrameditor.c:138 msgid "Count:" msgstr "" -#: app/widgets/gimphistogrameditor.c:139 +#: ../app/widgets/gimphistogrameditor.c:139 msgid "Percentile:" msgstr "" -#: app/widgets/gimpimagedock.c:203 +#: ../app/widgets/gimpimagedock.c:203 msgid "Auto" msgstr "" -#: app/widgets/gimpimagedock.c:214 +#: ../app/widgets/gimpimagedock.c:214 msgid "" "When enabled the dialog automatically follows the image you are working on." msgstr "" -#: app/widgets/gimpitemtreeview.c:996 +#: ../app/widgets/gimpitemtreeview.c:996 msgid "Set Item Exclusive Visible" msgstr "" -#: app/widgets/gimpitemtreeview.c:1004 +#: ../app/widgets/gimpitemtreeview.c:1004 msgid "Set Item Exclusive Linked" msgstr "" -#: app/widgets/gimplayertreeview.c:252 +#: ../app/widgets/gimplayertreeview.c:252 msgid "Reorder Layer" msgstr "" -#: app/widgets/gimplayertreeview.c:313 +#: ../app/widgets/gimplayertreeview.c:313 msgid "Keep transparency" msgstr "Запазване на прозрачността" -#: app/widgets/gimplayertreeview.c:848 +#: ../app/widgets/gimplayertreeview.c:848 msgid "Empty Layer" msgstr "" -#: app/widgets/gimpmessagebox.c:460 +#: ../app/widgets/gimpmessagebox.c:460 #, c-format msgid "Message repeated %d times." -msgstr "" +msgstr "Съобщението е повторено %d пъти." -#: app/widgets/gimpmessagebox.c:462 +#: ../app/widgets/gimpmessagebox.c:462 msgid "Message repeated once." -msgstr "" +msgstr "Съобщението е повторено веднъж." -#: app/widgets/gimppaletteeditor.c:258 app/widgets/gimppaletteeditor.c:999 +#: ../app/widgets/gimppaletteeditor.c:258 +#: ../app/widgets/gimppaletteeditor.c:999 msgid "Undefined" msgstr "" -#: app/widgets/gimppaletteeditor.c:266 +#: ../app/widgets/gimppaletteeditor.c:266 msgid "Columns:" msgstr "Колони:" -#: app/widgets/gimppropwidgets.c:1537 +#: ../app/widgets/gimppropwidgets.c:1537 #, c-format msgid "This text input field is limited to %d characters." msgstr "" -#: app/widgets/gimpselectiondata.c:319 +#: ../app/widgets/gimpselectiondata.c:319 #, c-format msgid "" "The filename '%s' couldn't be converted to a valid URI:\n" @@ -10025,144 +10137,146 @@ "%s" msgstr "" -#: app/widgets/gimpselectiondata.c:323 +#: ../app/widgets/gimpselectiondata.c:323 msgid "Invalid UTF-8" msgstr "Невалиден уникод" -#: app/widgets/gimpsizebox.c:456 +#: ../app/widgets/gimpsizebox.c:456 #, c-format msgid "%d x %d dpi" msgstr "" -#: app/widgets/gimpsizebox.c:458 +#: ../app/widgets/gimpsizebox.c:458 #, c-format msgid "%d dpi" msgstr "" -#: app/widgets/gimpstrokeeditor.c:198 +#: ../app/widgets/gimpstrokeeditor.c:198 msgid "Line Width:" msgstr "" -#: app/widgets/gimpstrokeeditor.c:209 +#: ../app/widgets/gimpstrokeeditor.c:209 msgid "_Line Style" msgstr "" -#: app/widgets/gimpstrokeeditor.c:228 +#: ../app/widgets/gimpstrokeeditor.c:228 msgid "_Cap style:" msgstr "" -#: app/widgets/gimpstrokeeditor.c:234 +#: ../app/widgets/gimpstrokeeditor.c:234 msgid "_Join style:" msgstr "" -#: app/widgets/gimpstrokeeditor.c:239 +#: ../app/widgets/gimpstrokeeditor.c:239 msgid "_Miter limit:" msgstr "" -#: app/widgets/gimpstrokeeditor.c:246 +#: ../app/widgets/gimpstrokeeditor.c:246 msgid "Dash pattern:" msgstr "" -#: app/widgets/gimpstrokeeditor.c:288 +#: ../app/widgets/gimpstrokeeditor.c:288 msgid "Dash preset:" msgstr "" -#: app/widgets/gimpstrokeeditor.c:300 +#: ../app/widgets/gimpstrokeeditor.c:300 msgid "_Antialiasing" msgstr "" -#: app/widgets/gimptemplateeditor.c:255 +#: ../app/widgets/gimptemplateeditor.c:255 #, c-format msgid "%p" msgstr "" -#: app/widgets/gimptemplateeditor.c:330 +#: ../app/widgets/gimptemplateeditor.c:330 msgid "_Advanced Options" msgstr "_Допълнителни настройки" -#: app/widgets/gimptemplateeditor.c:437 +#: ../app/widgets/gimptemplateeditor.c:437 msgid "Color_space:" msgstr "" -#: app/widgets/gimptemplateeditor.c:445 +#: ../app/widgets/gimptemplateeditor.c:445 msgid "_Fill with:" msgstr "_Запълване с:" -#: app/widgets/gimptemplateeditor.c:455 +#: ../app/widgets/gimptemplateeditor.c:455 msgid "Comme_nt:" msgstr "Беле_жки:" -#: app/widgets/gimptemplateeditor.c:565 +#: ../app/widgets/gimptemplateeditor.c:565 msgid "_Name:" msgstr "_Име:" -#: app/widgets/gimptemplateeditor.c:576 +#: ../app/widgets/gimptemplateeditor.c:576 msgid "_Icon:" msgstr "" -#: app/widgets/gimptemplateeditor.c:699 +#: ../app/widgets/gimptemplateeditor.c:699 #, c-format msgid "%d x %d dpi, %s" msgstr "" -#: app/widgets/gimptemplateeditor.c:701 +#: ../app/widgets/gimptemplateeditor.c:701 #, c-format msgid "%d dpi, %s" msgstr "" -#: app/widgets/gimpthumbbox.c:337 +#: ../app/widgets/gimpthumbbox.c:337 #, c-format msgid "" "Click to update preview\n" "%s Click to force update even if preview is up-to-date" msgstr "" +"Натиснете за обновяване на прегледа\n" +"%s Натиснете за силово обновяване на прегледа" -#: app/widgets/gimpthumbbox.c:407 app/widgets/gimpthumbbox.c:477 +#: ../app/widgets/gimpthumbbox.c:407 ../app/widgets/gimpthumbbox.c:477 msgid "No selection" msgstr "" -#: app/widgets/gimpthumbbox.c:602 app/widgets/gimpthumbbox.c:626 +#: ../app/widgets/gimpthumbbox.c:602 ../app/widgets/gimpthumbbox.c:626 #, c-format msgid "Thumbnail %d of %d" msgstr "" -#: app/widgets/gimpthumbbox.c:730 app/widgets/gimpthumbbox.c:740 +#: ../app/widgets/gimpthumbbox.c:730 ../app/widgets/gimpthumbbox.c:740 msgid "Creating Preview ..." msgstr "" -#: app/widgets/gimptoolbox-color-area.c:135 +#: ../app/widgets/gimptoolbox-color-area.c:135 msgid "Change Foreground Color" msgstr "" -#: app/widgets/gimptoolbox-color-area.c:140 +#: ../app/widgets/gimptoolbox-color-area.c:140 msgid "Change Background Color" msgstr "Промяна на цвета на фона" -#: app/widgets/gimptoolbox-image-area.c:90 +#: ../app/widgets/gimptoolbox-image-area.c:90 msgid "" "The active image.\n" "Click to open the Image Dialog." msgstr "" -#: app/widgets/gimptoolbox-indicator-area.c:143 +#: ../app/widgets/gimptoolbox-indicator-area.c:143 msgid "" "The active brush.\n" "Click to open the Brush Dialog." msgstr "" -#: app/widgets/gimptoolbox-indicator-area.c:174 +#: ../app/widgets/gimptoolbox-indicator-area.c:174 msgid "" "The active pattern.\n" "Click to open the Pattern Dialog." msgstr "" -#: app/widgets/gimptoolbox-indicator-area.c:205 +#: ../app/widgets/gimptoolbox-indicator-area.c:205 msgid "" "The active gradient.\n" "Click to open the Gradient Dialog." msgstr "" -#: app/widgets/gimptoolbox.c:854 +#: ../app/widgets/gimptoolbox.c:854 msgid "" "Foreground & background colors. The black and white squares reset colors. " "The arrows swap colors. Double click to open the color selection dialog." @@ -10171,256 +10285,256 @@ "настройките. Стрелките разменят цветовете. Двойното натискане с мишката " "отваря прозорец за избор на цвят." -#: app/widgets/gimptooloptionseditor.c:185 +#: ../app/widgets/gimptooloptionseditor.c:185 msgid "Save options to..." msgstr "Запазване на настройките в..." -#: app/widgets/gimptooloptionseditor.c:193 +#: ../app/widgets/gimptooloptionseditor.c:193 msgid "Restore options from..." msgstr "Възстановяване на настройките от..." -#: app/widgets/gimptooloptionseditor.c:201 +#: ../app/widgets/gimptooloptionseditor.c:201 msgid "Delete saved options..." msgstr "Изтриване на запазени настройки..." -#: app/widgets/gimpuimanager.c:495 +#: ../app/widgets/gimpuimanager.c:495 msgid "Your GIMP installation is incomplete:" msgstr "Инсталацията ви на GIMP е непълна:" -#: app/widgets/gimpuimanager.c:497 +#: ../app/widgets/gimpuimanager.c:497 msgid "Plase make sure the menu XML files are correctly installed." msgstr "" -#: app/widgets/gimpundoeditor.c:255 +#: ../app/widgets/gimpundoeditor.c:255 msgid "[ Base Image ]" msgstr "" -#: app/widgets/gimpvectorstreeview.c:151 +#: ../app/widgets/gimpvectorstreeview.c:151 msgid "Reorder path" msgstr "" -#: app/widgets/gimpvectorstreeview.c:289 +#: ../app/widgets/gimpvectorstreeview.c:289 msgid "Empty Path" msgstr "" -#: app/widgets/gimpviewablebox.c:75 +#: ../app/widgets/gimpviewablebox.c:75 msgid "Open the brush selection dialog" msgstr "" -#: app/widgets/gimpviewablebox.c:115 +#: ../app/widgets/gimpviewablebox.c:115 msgid "Open the pattern selection dialog" msgstr "" -#: app/widgets/gimpviewablebox.c:155 +#: ../app/widgets/gimpviewablebox.c:155 msgid "Open the gradient selection dialog" msgstr "" -#: app/widgets/gimpviewablebox.c:167 +#: ../app/widgets/gimpviewablebox.c:167 msgid "Reverse" msgstr "" -#: app/widgets/gimpviewablebox.c:210 +#: ../app/widgets/gimpviewablebox.c:210 msgid "Open the palette selection dialog" msgstr "" -#: app/widgets/gimpviewablebox.c:250 +#: ../app/widgets/gimpviewablebox.c:250 msgid "Open the font selection dialog" msgstr "" -#: app/widgets/gimpwidgets-constructors.c:50 -#: app/widgets/gimpwidgets-constructors.c:85 +#: ../app/widgets/gimpwidgets-constructors.c:50 +#: ../app/widgets/gimpwidgets-constructors.c:85 msgid "Normal" msgstr "" -#: app/widgets/gimpwidgets-constructors.c:51 -#: app/widgets/gimpwidgets-constructors.c:86 +#: ../app/widgets/gimpwidgets-constructors.c:51 +#: ../app/widgets/gimpwidgets-constructors.c:86 msgid "Dissolve" msgstr "" -#: app/widgets/gimpwidgets-constructors.c:52 +#: ../app/widgets/gimpwidgets-constructors.c:52 msgid "Behind" msgstr "" -#: app/widgets/gimpwidgets-constructors.c:53 +#: ../app/widgets/gimpwidgets-constructors.c:53 msgid "Color erase" msgstr "" -#: app/widgets/gimpwidgets-constructors.c:55 -#: app/widgets/gimpwidgets-constructors.c:88 +#: ../app/widgets/gimpwidgets-constructors.c:55 +#: ../app/widgets/gimpwidgets-constructors.c:88 msgid "Multiply" msgstr "" -#: app/widgets/gimpwidgets-constructors.c:56 -#: app/widgets/gimpwidgets-constructors.c:89 +#: ../app/widgets/gimpwidgets-constructors.c:56 +#: ../app/widgets/gimpwidgets-constructors.c:89 msgid "Divide" msgstr "" -#: app/widgets/gimpwidgets-constructors.c:57 -#: app/widgets/gimpwidgets-constructors.c:90 +#: ../app/widgets/gimpwidgets-constructors.c:57 +#: ../app/widgets/gimpwidgets-constructors.c:90 msgid "Screen" msgstr "" -#: app/widgets/gimpwidgets-constructors.c:58 -#: app/widgets/gimpwidgets-constructors.c:91 +#: ../app/widgets/gimpwidgets-constructors.c:58 +#: ../app/widgets/gimpwidgets-constructors.c:91 msgid "Overlay" msgstr "" -#: app/widgets/gimpwidgets-constructors.c:62 -#: app/widgets/gimpwidgets-constructors.c:95 +#: ../app/widgets/gimpwidgets-constructors.c:62 +#: ../app/widgets/gimpwidgets-constructors.c:95 msgid "Hard light" msgstr "" -#: app/widgets/gimpwidgets-constructors.c:63 -#: app/widgets/gimpwidgets-constructors.c:96 +#: ../app/widgets/gimpwidgets-constructors.c:63 +#: ../app/widgets/gimpwidgets-constructors.c:96 msgid "Soft light" msgstr "" -#: app/widgets/gimpwidgets-constructors.c:64 -#: app/widgets/gimpwidgets-constructors.c:97 +#: ../app/widgets/gimpwidgets-constructors.c:64 +#: ../app/widgets/gimpwidgets-constructors.c:97 msgid "Grain extract" msgstr "" -#: app/widgets/gimpwidgets-constructors.c:65 -#: app/widgets/gimpwidgets-constructors.c:98 +#: ../app/widgets/gimpwidgets-constructors.c:65 +#: ../app/widgets/gimpwidgets-constructors.c:98 msgid "Grain merge" msgstr "" -#: app/widgets/gimpwidgets-constructors.c:67 -#: app/widgets/gimpwidgets-constructors.c:100 +#: ../app/widgets/gimpwidgets-constructors.c:67 +#: ../app/widgets/gimpwidgets-constructors.c:100 msgid "Difference" msgstr "" -#: app/widgets/gimpwidgets-constructors.c:68 -#: app/widgets/gimpwidgets-constructors.c:101 +#: ../app/widgets/gimpwidgets-constructors.c:68 +#: ../app/widgets/gimpwidgets-constructors.c:101 msgid "Addition" msgstr "" -#: app/widgets/gimpwidgets-constructors.c:70 -#: app/widgets/gimpwidgets-constructors.c:103 +#: ../app/widgets/gimpwidgets-constructors.c:70 +#: ../app/widgets/gimpwidgets-constructors.c:103 msgid "Darken only" msgstr "" -#: app/widgets/gimpwidgets-constructors.c:71 -#: app/widgets/gimpwidgets-constructors.c:104 +#: ../app/widgets/gimpwidgets-constructors.c:71 +#: ../app/widgets/gimpwidgets-constructors.c:104 msgid "Lighten only" msgstr "" -#: app/widgets/gimpwidgets-constructors.c:73 -#: app/widgets/gimpwidgets-constructors.c:106 +#: ../app/widgets/gimpwidgets-constructors.c:73 +#: ../app/widgets/gimpwidgets-constructors.c:106 msgid "Hue" msgstr "" -#: app/widgets/gimpwidgets-constructors.c:74 -#: app/widgets/gimpwidgets-constructors.c:107 +#: ../app/widgets/gimpwidgets-constructors.c:74 +#: ../app/widgets/gimpwidgets-constructors.c:107 msgid "Saturation" msgstr "" #. The format string which is used to display modifier names #. * , and #. -#: app/widgets/gimpwidgets-utils.c:391 +#: ../app/widgets/gimpwidgets-utils.c:391 #, c-format msgid "<%s>" msgstr "<%s>" -#: app/widgets/gimpwidgets-utils.c:795 +#: ../app/widgets/gimpwidgets-utils.c:795 #, c-format msgid "Invalid UTF-8 data in file '%s'." msgstr "Грешни уникод данни във файла \"%s\"." -#: app/widgets/widgets-enums.c:23 +#: ../app/widgets/widgets-enums.c:23 msgid "Foreground" msgstr "" -#: app/widgets/widgets-enums.c:53 +#: ../app/widgets/widgets-enums.c:53 msgid "Portrait" msgstr "" -#: app/widgets/widgets-enums.c:54 +#: ../app/widgets/widgets-enums.c:54 msgid "Landscape" msgstr "" -#: app/widgets/widgets-enums.c:113 +#: ../app/widgets/widgets-enums.c:113 msgid "Pixel values" msgstr "" -#: app/widgets/widgets-enums.c:115 +#: ../app/widgets/widgets-enums.c:115 msgid "HSV" msgstr "" -#: app/widgets/widgets-enums.c:116 +#: ../app/widgets/widgets-enums.c:116 msgid "CMYK" msgstr "" -#: app/widgets/widgets-enums.c:171 +#: ../app/widgets/widgets-enums.c:171 msgid "Black & white" msgstr "Черно-бяло" -#: app/widgets/widgets-enums.c:172 +#: ../app/widgets/widgets-enums.c:172 msgid "Fancy" -msgstr "" +msgstr "Красиво" -#: app/widgets/widgets-enums.c:199 +#: ../app/widgets/widgets-enums.c:199 msgid "GIMP help browser" msgstr "Четец за помощта на GIMP" -#: app/widgets/widgets-enums.c:200 +#: ../app/widgets/widgets-enums.c:200 msgid "Web browser" msgstr "Уеб-четец" -#: app/widgets/widgets-enums.c:228 +#: ../app/widgets/widgets-enums.c:228 msgid "Logarithmic" msgstr "" -#: app/widgets/widgets-enums.c:261 +#: ../app/widgets/widgets-enums.c:261 msgid "Icon" msgstr "" -#: app/widgets/widgets-enums.c:262 +#: ../app/widgets/widgets-enums.c:262 msgid "Current status" msgstr "Текущо състояние" -#: app/widgets/widgets-enums.c:264 +#: ../app/widgets/widgets-enums.c:264 msgid "Description" msgstr "Описание" -#: app/widgets/widgets-enums.c:265 +#: ../app/widgets/widgets-enums.c:265 msgid "Icon & text" msgstr "" -#: app/widgets/widgets-enums.c:266 +#: ../app/widgets/widgets-enums.c:266 msgid "Icon & desc" msgstr "" -#: app/widgets/widgets-enums.c:267 +#: ../app/widgets/widgets-enums.c:267 msgid "Status & text" msgstr "" -#: app/widgets/widgets-enums.c:268 +#: ../app/widgets/widgets-enums.c:268 msgid "Status & desc" msgstr "" -#: app/widgets/widgets-enums.c:295 +#: ../app/widgets/widgets-enums.c:295 msgid "View as list" msgstr "" -#: app/widgets/widgets-enums.c:296 +#: ../app/widgets/widgets-enums.c:296 msgid "View as grid" msgstr "" -#: app/widgets/widgets-enums.c:324 +#: ../app/widgets/widgets-enums.c:324 msgid "Normal window" msgstr "" -#: app/widgets/widgets-enums.c:325 +#: ../app/widgets/widgets-enums.c:325 msgid "Utility window" msgstr "" -#: app/widgets/widgets-enums.c:326 +#: ../app/widgets/widgets-enums.c:326 msgid "Keep above" msgstr "" -#: app/xcf/xcf-load.c:297 +#: ../app/xcf/xcf-load.c:297 msgid "" "XCF warning: version 0 of XCF file format\n" "did not save indexed colormaps correctly.\n" @@ -10431,43 +10545,56 @@ "индексирани цветови карти.\n" "Замяна с цветова карта на степени на сивото." -#: app/xcf/xcf-read.c:107 +#: ../app/xcf/xcf-read.c:107 msgid "Invalid UTF-8 string in XCF file" msgstr "Грешен UTF-8 низ в XCFфайла" -#: app/xcf/xcf-save.c:157 app/xcf/xcf-save.c:167 app/xcf/xcf-save.c:177 -#: app/xcf/xcf-save.c:187 app/xcf/xcf-save.c:211 app/xcf/xcf.c:342 +#: ../app/xcf/xcf-save.c:157 ../app/xcf/xcf-save.c:167 +#: ../app/xcf/xcf-save.c:177 ../app/xcf/xcf-save.c:187 +#: ../app/xcf/xcf-save.c:211 ../app/xcf/xcf.c:342 #, c-format msgid "Error saving XCF file: %s" msgstr "Грешка при запазването на XCF файл: %s" -#: app/xcf/xcf-write.c:86 +#: ../app/xcf/xcf-write.c:86 #, c-format msgid "Error writing XCF: %s" msgstr "Грешка при запис на XCF файл: %s" -#: app/xcf/xcf-seek.c:44 app/xcf/xcf-seek.c:61 app/xcf/xcf-seek.c:72 +#: ../app/xcf/xcf-seek.c:44 ../app/xcf/xcf-seek.c:61 ../app/xcf/xcf-seek.c:72 #, c-format msgid "Could not seek in XCF file: %s" msgstr "" -#: app/xcf/xcf.c:86 app/xcf/xcf.c:143 +#: ../app/xcf/xcf.c:86 ../app/xcf/xcf.c:143 msgid "GIMP XCF image" msgstr "GIMP XCF изображение" -#: app/xcf/xcf.c:282 +#: ../app/xcf/xcf.c:282 #, c-format msgid "XCF error: unsupported XCF file version %d encountered" msgstr "XCF грешка: неподдържана версия %d на XCF файла" -#: data/misc/gimp.desktop.in.in.h:1 +#: ../data/misc/gimp.desktop.in.in.h:1 msgid "Create and edit images or photographs" msgstr "" -#: data/misc/gimp.desktop.in.in.h:2 +#: ../data/misc/gimp.desktop.in.in.h:2 msgid "Image Editor" msgstr "Редактор на изображения" +#~ msgid "Show version information and exit" +#~ msgstr "Показване на данни за версията и излизане" + +#~ msgid "Be more verbose" +#~ msgstr "По-подробно" + +#~ msgid "Do not load any fonts" +#~ msgstr "Без зареждане на шрифтове" + +#~ msgid "Do not show a startup window" +#~ msgstr "Без показване на начален екран" + #~ msgid "%s version %s" #~ msgstr "%s версия %s" @@ -10483,6 +10610,9 @@ #~ msgid "Open pattern as image" #~ msgstr "Отваряне на палитрата като изображение" +#~ msgid "Snap to _Canvas Edges" +#~ msgstr "Прилепяне към _краищата на платното" + #~ msgid "Remote File" #~ msgstr "Отдалечен файл" @@ -10504,5 +10634,71 @@ #~ msgid "Other..." #~ msgstr "Друго..." +#~ msgid "Cursor Up (Shift + Control + Alt)" +#~ msgstr "Преместване курсора нагоре (Shift + Control + Alt)" + +#~ msgid "Cursor Up (Control + Alt)" +#~ msgstr "Преместване курсора нагоре (Control + Alt)" + +#~ msgid "Cursor Up (Shift + Alt)" +#~ msgstr "Преместване курсора нагоре (Shift + Alt)" + +#~ msgid "Cursor Up (Shift + Control)" +#~ msgstr "Преместване курсора нагоре (Shift + Control)" + +#~ msgid "Cursor Up (Alt)" +#~ msgstr "Преместване курсора нагоре (Alt)" + +#~ msgid "Cursor Up" +#~ msgstr "Преместване курсора нагоре" + +#~ msgid "Cursor Down (Shift + Control + Alt)" +#~ msgstr "Преместване курсора надолу (Shift + Control + Alt)" + +#~ msgid "Cursor Down (Control + Alt)" +#~ msgstr "Преместване курсора надолу (Control + Alt)" + +#~ msgid "Cursor Down (Shift + Alt)" +#~ msgstr "Преместване курсора надолу (Shift + Alt)" + +#~ msgid "Cursor Down (Shift + Control)" +#~ msgstr "Преместване курсора надолу (Shift + Control)" + +#~ msgid "Cursor Down" +#~ msgstr "Преместване курсора надолу" + +#~ msgid "Cursor Left (Shift + Control + Alt)" +#~ msgstr "Преместване курсора наляво (Shift + Control + Alt)" + +#~ msgid "Cursor Left (Control + Alt)" +#~ msgstr "Преместване курсора наляво (Control + Alt)" + +#~ msgid "Cursor Left (Shift + Alt)" +#~ msgstr "Преместване курсора наляво (Shift + Alt)" + +#~ msgid "Cursor Left (Shift + Control)" +#~ msgstr "Преместване курсора наляво (Shift + Control)" + +#~ msgid "Cursor Left" +#~ msgstr "Преместване курсора наляво" + +#~ msgid "Cursor Right (Shift + Control + Alt)" +#~ msgstr "Преместване курсора надясно (Shift + Control + Alt)" + +#~ msgid "Cursor Right (Shift + Control)" +#~ msgstr "Преместване курсора надясно (Shift + Control)" + +#~ msgid "Cursor Right" +#~ msgstr "Преместване курсора надясно" + #~ msgid "All Images" #~ msgstr "Всички изображения" + +#~ msgid "Only check if GIMP is running, then quit" +#~ msgstr "Само проверка дали GIMP работи и излизане" + +#~ msgid "Start GIMP without showing the startup window" +#~ msgstr "Зареждане на GIMP без начален екран" + +#~ msgid "Could not connect to GIMP." +#~ msgstr "Грешка при свързването с GIMP." diff -uraN gimp-2.2.4/po/ChangeLog gimp-2.2.5/po/ChangeLog --- gimp-2.2.4/po/ChangeLog 2005-02-21 14:15:06.000000000 +0100 +++ gimp-2.2.5/po/ChangeLog 2005-04-09 21:46:24.000000000 +0200 @@ -1,3 +1,32 @@ +2005-04-09 Vincent van Adrighem + + * nl.po: Translation updated by Tino Meinen. + +2005-04-09 Cai Qian + + * zh_CN: Updated Simplified Chinese. + +2005-03-20 Marcel Telka + + * sk.po: Updated Slovak translation. + +2005-03-13 Ole Laursen + + * da.po: Updated Danish translation. + +2005-03-05 Francisco Javier F. Serrador + + * es.po: Updated Spanish translation. + +2005-02-24 Maxim Dziumanenko + + * uk.po: Updated Ukrainian translation + +2005-02-23 Alexander Shopov + + * bg.po: Updated Bulgarian translation by + Iassen Pramatarov + 2005-02-19 Takeshi AIHANA * ja.po: Updated Japanese translation by diff -uraN gimp-2.2.4/po/da.gmo gimp-2.2.5/po/da.gmo --- gimp-2.2.4/po/da.gmo 2005-02-12 14:38:00.000000000 +0100 +++ gimp-2.2.5/po/da.gmo 2005-03-14 11:01:06.000000000 +0100 @@ -1,262 +1,291 @@ -E ܋&ϺkGb9GA,Nni<'kd@н2;DPOѾ2!9T-9;72 j t -~ - - -*@0Gx -   - -( 3 @ L Xd i uK.T1!"15H -Z eq -  - !3ET*j6 -'F[o - 19KTt 13<BU -\g -AJV< (@PX]w  -3&I$p " %16<A -Q\k|7   ( 0=B GmT  #C*7n=@6%d\3)<=#z!  #,DZr,)1 DR r ! ' 0 >K_fm s .55+7a8),)E]2z OAU%&41#K o}  -  )6O0a  + -6I\e u -$ 8Ys" / 8DL 1Q f"t" - -)#M,g##!%>] dp#-#%9_u  - - - $+: ? MZjz --  (-3DWk|   %!; ]j}&   / ?L [h x #2 -K -V-a    - ,4G[ n|  :?#8c   -  " . -; F R -\ gs | > *<O_q  +DXn ~ - - 5C Yf { -*#,!>`.w#"/&Nu ,# )<'V~'F,Ts  , CM -d o}   !-(C$l=6< ?IA79c=9B=f\>CJFg  '5JOa q { !8H\x%9 M [i n -{   -  %3Kg(  -Oj -|-F] -s ~ . -  ,9 Q ^k|u/c &z3r/H_hz&'   $. = KW \fls x%4=S -ju ~   -H  -R ]gw -H!B8<1K}  -  `CD10  - -&=M^} ( - -H -> -IT [gv     .5 =Kd   6 R  V d  v   K 3 6 -V -"e - - - - - -$ - -  ,  :  [ (| + ) * !& H /Z    *   ' - 2 B R [  -m x         #>OXg  +?!Wy 0-?mv  3->Vf ~ -   %9J _m @ -> P] b p}    -  , CQi  -    -"-BUZbks  -#$=Vlrz+   -   !/DXq  "1:P p~$  " 0<O T a -n -y   &-6 IUh -      + 5A^m  -      ,%R!e) $3: K WeBxA -7>M ]j|& 5 G O X  -] h  |       "!!4!!V!x!!! ! !!! !"V -"+a" "(""""" " ##1#%I# -o# z##### -## ## ## $ $*$0$C$ X$ d$ p$~$&$,$ $$$ -% -%$%A%_%~%%%4%%& -&&& -+& 6&C& L&Z&a& ~&& &!&& &&' '$'+';3'?o''''''($(4(()- ) :*D*M* -]* h*#r**-* * *** ++ -+ )+5+++, ,,",*,0,F, -^,i,, , ,,,, , ,!, - --2-M-T- \-j-- -- ---- -- .. -&.1.C._.|.. .!..!.#./ 0/ -=/9H/U/=/<0=S00"0?00 1 1)1-121(71,`11111 -1112J2 f2s222 2 222 3 3363P3`3;z333 3 33 4 4,4 <4 J4 W4c4k4 44444455(595L5g5y55+555 66 6 ,6 96 E6 R6^6#u6 66 666667>7[7c7j7 77777778+8 :8 G8S8e8 y88 8888 -8 -88 889 -9#9(9 =9I9 -`9k99 99999 :$:4:M:]:q:4::::;!;4;C;.];E;; ; ;; < $<2<M< S< a< m< -y< < -<<< <<<<N< -N=Y=b=i={= =====#=>/> C>O>a>}>>#>>> ??#?@?W?$r??? ????@!+@M@i@{@ -@@@ @@@@A$AVVVrVVVVVVVVWW4W ;W HW TW bWpWyWW WWW WW W WW X!X:XNX(gXX#X X XXX -X X XYY*Y -/Y :Y -FY QY_YoY1xY7Y5YHZAaZZ;.[!j[[ N\o\V]*]B*_m_T`s``xa ~aa)a5aa1b0b0c17c(icCccSWd,d2d  eA,fAnf*ffg uhiQjjkHllmGnno2pp p-q -2q=qPqbqsqyq~qqqqqq qqq r r!r:rCr KrXr -^r<ir ss ssss tt4tCtSt btott -ttt;t;t$u uu u uuuu v1v8v@vIvgv3v#vvv w"w1w@wFw MwYwvwwFww -w -wx -x x &x 3x @x Nx!\x!~x x x+xKx00yQayy$Lz5qzPzGz-@{On|j|o)}e}j}~j~p~oZw<B?>tts`IӂS0Y σ݃6߃o4#̄G%'>GPX -a l x #Ԇ ܆+>GYk p ~  ȇ # )6=Fe mw z  - ͈Ո  ! @LTf v  ʼn Ӊ '7I Z fr   -Ɗ̊ۊ2C\m     ċЋ &) 2 < -F -Q\u~  Ìˌӌ  !(/7Q` ԍ    'BJ]s  -Ŏ Ўݎ   -   " / 9 FS dn v -  ŏҏۏ   + 4 BP _k~   ɐސ  1C(U~ϑ41/Pƒ Βے# *Kjq" -Ǔٓ !-4<L^s - - - ǔהݔ - & -/:@INcy ȕ̕ -ҕݕ5# 5?OT[ cq  -ǖ Җޖ  #* 1?.R9ؘ%uO8ݙLDc\p>vuB+8n=QS7;6ǝ7963p8ݞ   - !. ES[d~. -$* AKSY _ m {  - -   Ġ Рܠ fd1,)Cm -  ̢Ԣ !>Tq ң3L]1x7$#,Fdyץ 9C\e{! ɦ Ӧ -?<=:zͨ -Ө ި/ -7BKbs@Kԩ B5xժ -  +7J_t ̫.%'MT -Y dqw& -Ĭ+Ϭ -   -2=Rc|3í ԭ  - ->I N\  - -2H ^Eh8DD,9q` -6IH;Wi - β &C-Z -ɳ -,G\p Ŵ̴Ѵ մߴ @(=i>?:&6a.Ƕ>%&d+kз><!{!:94 Tbɹй ߹  -</N ~   -ʺ .3HZj y  -#$ $@_!}̼$ -4H^gv  - 0!P)r/ʾ/*HWo --ڿ/&&A'h(%   5J[%p,,2Kc"l . - !':IX ky -"5:INTfw )1 7'C"k1 - -!,; P \ i w -  -  #< O ]~ -/     $8O ht $8'E`5   --6Rf u   -    M!m  7 K X fs|"6Nm"!0I\r -  " ->:U"&)% "3.V -   -(7-W+ !$9TW^   &:'Rz  '9K` u+'>ND=EBEZ;=zER=.sl?I Mj~ -7 BO `n  2G\t%# #Dh~ -    1 ? LY q{ *)TZ`gx  Q  ) - " +<5r  -%0@W~q}XihoQh ~ -,#P ku      ;RVp$  "*1 BPb -gr^ - )2L:&E 5GMSbk~ - GC<*  -) :[l } )  Pp -  - -=H -Y dp - -T_q  _:y;+  5BXkz" !(%.N%}*7 0:J,^"* - 2>Qcu~ 1K_!z  1Rm $:CVfy 8 3D [ e s % ?L^b!jI/ 1?OU g!s  -  ,: P\q  -   -!5 IU]fo'  '-$Uz! *$,3 B P] n{ -&D)b $ (>Pc{   - - *<K [h ,/4 -:E N\w    $;Rcrz - -  0&/Vr". "):JYFpH  -! , 6 BP dp7HYj|    $ A U l         -W -)k - -< - -) - - $  3 ? _ &z             $ .  -@ K [ c z   -   . ,  -: E J Y h w      ; GZ `js   -  $2E` x 7?&6L(b(DxE '1:J Sax.   1 '0 -9!D#f   -!;N ]~ -  -$/BK \fx  $!' De  ;R:):dJ50&Wj|)0$6 HTmP.Gar - 5 I j -w $  -   -5Nk{ - (($?0d, ( B \ s " :    !!(!:!7V!!!!!!!G!#5"Y"q"x"" " -" "" """ -##(# --# 8# D#R# Y#g#{#### -## ### $#$3$N$f$ $$$ $$$4$"%?%P%i%% %%.%J%@&O& c& p&&& && &&& ''+';'P'e't' ' 'S' '( (( -%(0( 8(F([(j(((( (((() ()I)d) -x)))))))*$* +*8* L*Z*o*** * *** *+$+<+P+g+"+ +++"+,-,M, d,!p,, -,,,,, --1- E-Q- e----- -- .*.G.!a.>.6.C.B=//// /// 00:0J0j0 }00000 001 1=1S1r111112202D2V2o224t3b3F 4ES5/552\676Q6F7k`7B789<:;;@; -;< <<<,<E<^<e<y< <<<!< < < < =9= N= [=i=z======!=>>$> 3>/A>q> >>>>>>>??#+?O?b?u???? ??? -? -@ @%@ D@1P@@@@@@@@@ @ AA A -A )A 5A6AAxA -ABB0BBBTBZBxBBBBBB C -8CCCTCZCcC}C C C CCC -CCC DD $D 2D?D QD _D lDD%DDD3D )E"3E VEdE }EEE E -EEEE -EEE FF&F3.FBbF7FMFF+GrG<G0HNH6IVIBJ6JI&LpLYMxMMN -NN)N9NODOC'P=kPAP(PBQWQ[Q:OR6RRD^SES8S"TTUVW3XXyY8ZO[F[8\(]1 ^(R^{^+^ ^^ ^^ ___ ._ 8_B_[_u______` `1`A` U`a`Fp`aa aabb(b#:b^bmb~bbbb bbb7bBc]c cd d!d7d?dFdUdmd -td -d#d d6de$e@e^eueeeeeeeeKe%5f -[f ffrfvfff ff f'f$fg,g4EgJzg1g[gSh$h)iBEi?i&iVjfFktkZ"l]}lmlkImjmr nFnMnH(olqopoMOpppqq.qqqqqr r%r4'rl\rrrr<rs/sVs'@thtt ttt t t -t tt tt0t+u4uFuNuTueuiuruu uuuu u uv v%v-v3v6vFvav v -v vvv$v v v w w ww9w >wHwOwaw(iw wwwwwwwwx x,x >x JxVx hx vx x -xxx xxx x y yy%y?yNy -]y hyryyyyyyyz.z!Dzfzmzuzz zzz zzz z z{{ -{{+{ -;{F{ -]{h{ w{{ { {{{{{ { -{{{ {| -|!|'|,|1|H|Z|z| | |||| | -| ||| |}}#}8}@}T})n}} }}}} -} } }} } ~ ~ ~*~ 3~ ?~M~ ]~i~ p~|~~~~ ~~~~~~~  % /< -KV kx    -": BOau' À̀Հ"7?3w6. -6AF[&p#&& -6 -ALbyȃ׃  - *6 =J Q -] hu ńӄ܄ ,  =J Sap t -; - !' -.9H$]# - -†Ć̆ц ؆  - -,5LJ$1P:4-x+ -/09 -/wKn2^7 -|qDa~f{D$15hS]\E{XF`ad^ @-4~sBwb F=f -J}_6c $m,ExVhL_/Tfx9$=su&*;KOPGAU[l|X>J0v^[}Xp|C6$i{v#8MwdR8RdGByVZD<GhzTzvym7}~Y 8l<9J!~yDX[}4dqWQk@" oP0 6< ?rH[.>WdG}OiuWNW/]. YE_l9t@ibZ(I?~J6&:#0TF@lCQv \t*iAp, $?]i\="#Hp 3O`Z1d 8O0x ) asWgZ\(.\t`V1GvF -R3P`HKI pt8Bg&GNO!|jLbJh<UCTxIz, %?6b)Ss5"oRn$ WCV&N#S3~t2A+AEm,)4-q;Q5-!w[qm\az!cY5;1(H *n[u8M?ARVqv( njc|thtSU QL%yM@`i:'lQi\J1 LnC='`;][N/!?{k^2e`'bQ$bB+'_'j{rU n CT WUH@vRJ~Gg98x&gL<}Y@j('}ED[HPi_"93zd=K$QL>xGB&f")@ wWMKRJ,% -K\.hY PA6g5gr+rzN dS.5C3.:7stF>I#4#CU  4of]aE{%B(?32 Hjj_{%}OeN=Slebb|*,9-^+,MS)*1-p"Gj5pnq}Se:2r8 pR MICXoBm*PnB.!1 LXf9lKf/Vr 86-N;Uf:vl3.qZ-;m.!y0sFA4ay6+_KF20_X)&p;7'!%kxw_&<"s:<+h>~=EZU)^{ ML"-A4mM=eus ,^7'egF /Nr^'i#)kPQ# -X#5eKo]V^\j2VuTYr|a*OIk,`HOccMm77P>u3>EL y(;kqAsR2 U2h+T gwyT3*@7(>k =/Dl a|0Ee7kZ><~: -!xq[m?w{*Nuugr;40u]IS pc:+z`Z"j](zcQcY -$aZo|z)Ywd J<n&yOBoo?%IDX]TD1HDoc%6kFtY5WheV vb%9/fI +] 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    +     +     + + +/ +: +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 .45%NutO8:LsD\pb>ӻuB8˼=QBS;6$7[93;8:A +HS Z f r~ +  п޿ '=.Et +      +  ++ 6 CO ` lx }f1,)  +%0 9 Zh~ !: O[ s1:7l$<Qe{ 0:S\r!   +?<4:q +}   +*:@JKB/>Ma~ +# *6I^s .%=cj +o z & ++ +&+ 1; +R]r3 # +7 GT +ep u & +6 ANi E8D5Dz9` Z{6H.Ll + +  '<Se-7= +MXw + ",=T[` dn @=>6?u:6.'Vv>&+3k_>! +!,:N9  +*E[cj}  /" R \i p +| .,>N ] g s +}#$ $@_!}$ +4H^gv  + 0!P)r//*HWo +-/6+Q&}'(%1:l s %,1,Fs"- @M.] +    (: LV-]" /CRcs  ' "Hkz1 + +  - 9 F T` +r } +   , :[ +j/u     , EQds $8E=5   + +'CW f r ~ +    M!^  ( < I Wdm'?^x"!:Mc +  " -/:F"&)%"$.Gv -   +(-Hv+ !$*TH^  +'Ck  *<Q ft+'64<Nq=6E5B{E;=@z~6E0Rv=s?{IM~S +   #':IQb r -BZu%##*N^x +  # 4 B O\ t ~ *6agmt  Q-6  ! /= F<P   '7O +do~@Q(}*  i " +( +o1 + + + + + + +  8 -N ,|  M    +  >  K W  \ f l  s          , F ` o $x   +         5Rd +it^ + +4L<&E 5I`fl{ + \G*<r* +! 2Sd u )  Ph y + !1 A +KV +g r~ + +bm   _':;+) Ubx" !&(E.n%*7 PZj,~"*  +0; R^q6N _l! '9Re   <S$c    8$  ] k         !1!L! e!s! !!!!!!!!"I "V"/_" """" " "!"#### .#<#"S##v### +# # ## $$#$ 9$C$ +V$a$u$ $$ $$ +$$ $ $$ %%#%,%5%'H%p%%% %% %'%$&@&!V& x&&&&*&&&& ' '#' 4'A'T'i''' +''''' +()(( R(^($z(((( (((())))A) S)a) s)))) +) +)))))**'* 6*D* T*a*y*******+ + +$+,7+d+i+ +o+z+ ++++ ++++ , ,',0, M,Y,p,,,,, +,,, +, - -0 -Q-&d---"-.- ..;. L.Z.`.q.x....F.H/ O/p/ +/ / / // ////0 000000 0011*1 =1 K1X1m11111 12 %2 /2 ;2G2 Z2h2o2 ~2W2)2 +3<3Q3)U333 333&3 4 "4,424B4 W4c4u4 44 44 +44444 5 +5$545.S5,5 +555555 6%6?6Y6m6;666 6666 7 7-7 67C7K7R7 j7v7 +7777"7 78808 B8L8^8 v8 8878?89$949J9(`9(99Dv:::E: %</<8<H< Q<_<v<.< <<<<<< = =*=>=S=>">4> =>I>R> +[>!f>#> > >>> > >???0? +A?L?!T?v?? ?????@ @ +@@2@F@O@ `@j@|@ +@@@@ @@@ A "A,A;A$KA!pAA AA A A;BRAB:B:BJ +CUC5[C0CCCCCD D)D0:DkD|DDD DDDDPEaEpEEEE EEE +FFF2F KFYF5pF F F +F F$FG G/G @G +MG XG dGrGzGGGGGG +G H H H8H(XHHH$H0HI,ILI]IxIIIIII"J:8J sJJ JJJJ7J!K6K>KFKcKGsK#KKKL L#L 9L +FL QL]L mL{LL +LLL +L L LL LLM!M0M7M@MDM +YMdM wMMM M#MMNN 7NCNSN kNyNN4NNNOOV"XV{VVV V!VV +W$WX6.YCeYBYY Z*Z >ZHZ]ZwZZZZZ ZZ [ [2[ G[S[q[ [[[[[\6\V\n\\\\\\\]!]4 +^b?^F^E_//`_`2`%aa7`bQbFbk1cBccmd6f<%g;bgg +Th_hghlhrhhhhhh hh i!!i Ci Oi ]iki9ri i iiiii jj+j!=j_jrjj j/jj jjkk/kFkWkrkkk#kkkkkll 2l>lWl +ol +zlll l1llmmm+m3mCmYm om }mm m +m m m6mm +sn~nnnnnnnno.oGofo}o o +oooooo p (p 6pCpYp +iptp}p pp p pp p p pq%qDqYq3vq q"q qq q rr "r +/r:rIr!_rr +rrr rrrKr3sBQs4s7sMtFOtt<uTuruZvzv +fwqxy6yIz'{|/||U} +Z}e})l}9}}D~C~="A`(B[:6AxDEZ8قx^J08͈Fߋ1׌( e2+ ͍׍   +5; KU Վߎ-EaxΏޏ F Te }őב#"4KZt ΒےM7LBǓ:`\ #9AHWo +v +# (і61Omϗ3<KC% + ̘И   ' $Hm4Jԙ1[QP$)BC?&ƜVfDtZ ]{mٟkGjrFMءH&lopܢMMp .ĤˤӤ #4%lZǥɥͥ<ҥ-V'>mfZԧ_/ Ǩ Ϩ ۨ +  0!R[mu{ ͩ۩   +7 O\djm} Ȫ + $6 G Uby +|  ɫЫ( -6Ih + ɬ֬     * +6AS m{   ƭϭ  + &0Dau֮!6= ERb gt ɯ ϯ ۯ  +. +>I +`k z    +ʰհ  +$39>CZl    +̱ձݱ  +  %18Mbjr)ʲӲ   +  )6 FS \ hr {   ij˳ҳ   .;BK`s z   + ̴ٴ   ( 4 +>IYr µֵ' $.6Jd"}73ض6 C]o +&ѷ#&CL`&p + +øڸ )8Ka v +    + ɹֹ &4=B J,T  ºѺ պ +;T k u +"$!#( +L +Wbhjrw ~  + +üҼ5m$[|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 ... ] @@ -284,73 +313,77 @@ -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 minutes%d seconds%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%)4:1 (400%)8:1 (800%)<%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!A file named '%s' already exists.A_dd to SelectionA_ngleAbout The GIMPActionActivate the _focused imageActive FiltersAddAdd Alpha C_hannelAdd Alpha ChannelAdd AnchorAdd ChannelAdd Color to ColormapAdd 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 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 selectedAlphaAlpha to SelectionAlpha:An_imationAnchor Floating SelectionAnchor floating layerAnchor floating selectionAngle:AntialiasingAppearanceApply 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:Attach ParasiteAttach Parasite to ImageAttach Parasite to ItemAttach parasiteAuthor:AutoAuto _Follow Active ImageAuto shrink selectionAutoloadAutomatically DetectedAvailable FiltersAvailable Types:BG color fillB_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' ColorsBlendBlend 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.Brush 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_olumns:C_ombineCalibrate Monitor ResolutionCan't undo %sCan_vas Size...CancelCannot 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 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 resultClipped to bottom layerClipped to imageCloneClose %sClose this TabCo_py PathColo_rsColorColor BalanceColor Display FiltersColor PickerColor Picker InformationColor _dithering:Color 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:CommentCon_trast:Configure 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 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: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 folder '%s'...CropCrop & ResizeCrop & Resize InformationCrop ImageCrop LayerCrop imageCrop or Resize an imageCrop: Crosshair onlyCu_tCu_t Named...Cubic (Best)Current _StatusCurrent height:Current statusCurrent width:CursorCurve 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...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 MenuDodgeDodge 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': +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: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 LayersFailed 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 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 windowFlatten ImageFlipFlip ChannelFlip LayerFlip PathFlip Text LayerFlip Type %sFlip _HorizontallyFlip _VerticallyFlip imageFlip the layer or selectionFlipping...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 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 could not initialize the graphical user interface. +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 EffectsGradient EditorGradient Editor MenuGradient FoldersGradient Segment's Left Endpoint ColorGradient Segment's Right Endpoint ColorGradient UIGradient:GradientsGradients MenuGrain extractGrain mergeGrayGrayscaleGreenGreen:GridGrow 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 lightHardnessHardness:HeightHeight:HelpHelp BrowserHelp SystemHelp 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: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 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 typeImagesImages MenuImport OptionsImport PaletteImport PathsImport Paths from SVGImport a New PaletteImport paletteImport pathsImported PathIn_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 updateIntensity: %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 height %sKeep 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 ColorLength: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 _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 channelLower channel to bottomLower layerLower layer to bottomLower pathLower path to bottomM_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 GuideMove LayerMove Layer MaskMove PathMove SelectionMove ToolMove itemMove layers & selectionsMove 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 selection to stroke.No thumbnailsNoneNone (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 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: +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: -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 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 fillPatternsPatterns MenuPencilPercentage of width of brushPercentile:Personal GIMP FolderPerspectivePerspective Transform InformationPerspective...Pick Mode %sPick 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" +%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.6fPositionedPosterizePosterize (Reduce Number of Colors)Posterize _levels:Posterize does not operate on indexed layers.PreferencesPressure:PreviewPreview is out of datePreview:PreviewsPrint SizePrint size:Problems 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:QualityQueryQuerying new Plug-insQuerying plug-in: '%s' -Quick MaskQuick Mask AttributesQuick Mask MenuQuickMaskQuit 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_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 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 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: +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 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 ToSat.: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' +%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: -%sSaving ImagesSawtooth waveScalable SVG image (*.svg)ScaleScale ChannelScale ImageScale LayerScale PathScale imageScale itemScale ratio X:Scale ratio Y:Scale ratio:Scale the layer or selectionScalingScaling informationScaling 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 +%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.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 item linkedSet layer modeSet layer opacitySet preserve transSets 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 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 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 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)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 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 ProcedureTextText ColorText EditorText LayerText modifiedText 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 opacitySet preserve transSets 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:StipplesStock IDStro_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 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 Please check the value of the environment variable G_FILENAME_ENCODING.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: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 Tool proceduresTransformationTransforming...Translation byTransparencyTransparency _type:Triangular waveTrue 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 HistoryUndo _HistoryUnitsUnknownUnknown file typeUnknown type of palette file: -%sUnloadUnnamedUntitledUse "_Dot for dot" by defaultUse _dynamic keyboard shortcutsUse all visible layers when shrinking the selectionUse black and white (1-bit) paletteUse custom paletteUse 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: +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 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: %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, 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' +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: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 +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: 2005-02-04 10:05+0100 -PO-Revision-Date: 2005-02-04 10:07+0100 -Last-Translator: Martin Willemoes Hansen +POT-Creation-Date: 2005-02-26 13:18+0100 +PO-Revision-Date: 2005-03-13 19:33+0100 +Last-Translator: Ole Laursen Language-Team: Danish MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 @@ -384,68 +417,72 @@ -i, --no-interface Kør uden brugergrænseflade. -s, --no-splash Vis ikke startsvinduet. -v, --version Udskriv versionsinformation. -%d lag%d lag%d minutter%d sekunder%d x %d punkter%g x %g %s%p%s-kanalkopi%s-kanal til markering%s-meddelelse%s-kopi%s-maske%s%sklik: udvid markering%s%stræk: flyt og komprimér(%0.3f, %0.3f, %0.3f)(ingen)(Dette konsolvindue vil lukke om ti sekunder) -(unavngivent mellemlager)(unavngiven skabelon)(varierer)(ren)(ugyldig UTF-8-streng)(ændret)(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%)4:1 (400%)8:1 (800%)<%s><>For optimal ydelse i Gimp'en kan det være nødvendigt at justere nogle af disse indstillinger.Gimp'en - GNU Image Manipulation Program Copyright © 1995-2003 Spencer Kimball, Peter Mattis og Gimp-udviklingsgruppen.Tipfilen til Gimp'en kunne ikke fortolkes!Din Gimp-tipfil ser ud til at mangle!En fil ved navn "%s" eksisterer allerede._Læg til markeringV_inkelOm Gimp'enHandlingAktivér det _fokuserede billedeAktive filtreTilføjTilføj al_fakanalTilføj alfakanalTilføj ankerTilføjelse af kanalTilføj farve til farveafbildningTilføj hjælpelinjerTilføj vandret hjælpelinjeTilføj lag_maske...Tilføjelse af lagTilføjelse af lagmaskeTilføj baneTilføj bestrygningTilføj tekstlagTilføj lodret hjælpelinjeTilføj en maske til lagetTilføj farve fra baggr.Tilføj farve fra forgr.Tilføj lagmaskeTilføj tekst til billedetTilføj den nuværende farve til farvehistorikkenTilføj det valgte filter til listen over aktive filtreTilføj til den nuværende markeringTilføjer temaet '%s' (%s) -Læg tilYderligere pegekontrollerJustér lysstyrke og kontrastJustér farvebalanceJustér farvekurverJustér farveniveauerJustér lysstyrke og kontrastJustér farvebalancenJustér farvekurverJustér farveniveauerJustér farvetone og mætningJustér niveau automatiskJusteringAvancerede indstillingerPåvirk:Påvirket område %sSprøjtepenselSprøjtepensel med variabelt tryk_Alfa til markeringJusteretJusteringAlle kanalerAlle filerAlle filer (*.*))Alle billed- og fortrydelsesdata som ikke passer i 'flisemellemlageret' vil blive skrevet til en reservehukommelsesfil. Denne fil bør placeres på et lokalt filsystem med tilstrækkelig plads (flere hundrede Mb). På et UNIX-system vil du måske bruge systemets mappe til midlertidige filer. ("/tmp" eller "/var/tmp").Tillad fuldstændigt gennemsigtige områder at blive udfyldtTillad fuldstændigt gennemsigtige områder at blive valgtAlfaAlfa til markeringAlfa:_AnimationForankring af flydende markeringForankr flydende lagForankr flydende markeringVinkel:UdjævningUdseendeAnvendelse af lagmaske_Anvend lagmaskeAnvend tærskelAnvend lagmaskeEr du sikker på at du vil slette '%s' fra listen og fra disken?Er du sikker på at du vil slette skabelonen '%s' fra listen og fra disken?Som i _indstillingerSpørg efter bekræftelse før lukning af et vindue uden at gemme.Formatforhold:ParasitvedhæftningVedhæft parasit til billedeVedhæft parasit til elementVedhæft parasitForfatter:AutoFølg aktivt _billedeFormindsk markering automatiskAutoindlæsAutomatisk bestemtTilgængelige filtreTilgængelige typer:Baggrundsfarve-udfyldning_MellemlagereBaggrundBaggrundsfarveBaggrundsfarve sat til:Baggrund: %d, %d, %dTilbage (korrigerende)Basér udfyldningsområde på alle synlige lagBasér markering på alle synlige lagBagvedKantBi-lineærSort og hvidSort:Bland endepunkternes f_arverBlandingBland endepunkternes _ugennemsigtighedBlanding: Blanding: Ugyldig for indekserede billeder.Blander...BlåBlå:BlødgørBlødgør eller skærpIn_dram...Sæt ramme på kanalIndram markeringIndram det markerede medLysstyrke/kontrastLysstyrke/kontrast virker ikke på indekserede lag.PenselredigeringPenselmapperPenselgrænsefladePensel:PenslerPenslermenuSpandudfyldningMellemlagereMellemlageremenuSværtningSlutEfter endelseVed at bringe billedet tilbage til den tilstand der er gemt på disken, vil du miste alle dine ændringer inklusive al fortrydelsesinformation.CMYK_Kalibrér..._Kolonner:_KombineringKalibrér skærmopløsning%s kan ikke fortrydes_Lærredstørrelse...AnnullérKan ikke tilføje lagmaske med andre dimensioner end det angivne lag.Kan ikke tilføje lagmaske til et lag uden en alfakanal.Kan ikke tilføje lagmaske til lag som ikke er en del af et billede.Kan ikke forankre dette lag fordi det ikke er en flydende markering.Kan ikke konvertere til en palet med mere end 256 farver.Kan ikke oprette nyt lag fra den flydende markering fordi den tilhører en lagmaske eller kanal.Kan ikke oprette mappen '%s': %sKan ikke generere miniatureKan ikke beskære fordi den aktuelle markering er tom.Kan ikke udfolde ${%s}Kan ikke oprette flydende markering fordi det markerede område er tomt.Kan ikke hæve lag uden alfa.Kan ikke gemme. Intet er valgt.Kan ikke bestryge tom kanal.Kan ikke bestryge tom bane.LærredstørrelseLærred_udfyldningstilstand:Centrum x:CentreretSkift baggrundsfarveSkift farveafbildningselementSkift forgrundsfarveSkift billedopløsningSkift billedenhedSkift udskriftsstørrelseÆndr aktuelt lag eller baneSkift indekseret paletVend perspektivet på laget eller markeringenÆndring af genvej mislykkedes.KanalKanalegenskaberKanalnavn:Kanalen kan ikke sænkes mere.Kanalen kan ikke hæves mere.KanalfarveKanal er allerede nederst.Kanal er allerede øverst.Kanal til _markeringKanal til markeringKanal til markeringKanal:KanalerKanalmenuTern_størrelse:Vælg bestrygningsstilCircle_RydRydRyd kanalRyd fortrydelseshistorikRyd alt tekstRyd fejlRyd fortrydelseshistorikKlik på "Fortsæt" for at acceptere ovenstående indstillinger.Klik på "Fortsæt" for at oprette din personlige Gimp-mappe.Klik på "Fortsæt" for at starte Gimp'ens brugerinstallation.Klik på "Fortsæt" for at fortsætte med brugerinstallationen.Klik for at forbinde dette anker med det valgte slutpunkt.Klik for at oprette et nyt anker (prøv skiftetasten).Klik for at oprette en ny komponent til banen.Klik for at oprette en ny bane.Klik for at oprette miniatureKlik for at slette dette anker.Klik for at indsætte en ankor på banen (prøv skiftetasten).Klik for at gøre denne knude vinklet.Klik for at åbne banen.Klik for at vælge bane der skal redigeres.Klik for at opdatere miniature -%s Klik for at gennemtvinge opdatering også selvom miniaturen er opdateretKlik-træk for at ændre formen af kurven (skift: symmetrisk).Klik-træk for at flytte ankeret.Klik-træk for at flytte ankrene.Klik-træk for at flytte komponenten (prøv skiftetasten).Klik-træk for at flytte håndtaget (prøv skiftetasten).Klik-træk for at flytte banen.Klik: markérKlik: markér Træk: flytBeskær resultatBeskæres til nederste lagBeskæres til billedeKloningLuk %sLuk denne fane_Kopiér bane_FarverFarveFarvebalanceFarvefremvisningsfiltreFarvevælgerFarveopsnapperFarve_reducering:Farvebalance virker kun på lag med RGB-farver.FarvesletFarveindeks:Farve:Farve_paletFarve_rum:Farve_type for segmentFarve_type for markeringKulørisérKulørisér virker kun på lag med RGB-farver.Kulørisér billedetKulørisér billedetFarvekortlægningFarveredigeringFarvepaletmenuKolonner:KommentarKo_ntrast:Konfigurér farvefremvisningsfiltreKonfigurér _udvidede pegeenheder...Konfigurér g_itter...Konfigurér gitterKonfigurér billedgitterKonfigurér tastaturgenvejeKonfigurér tastaturgenveje...Konfigurér det valgte filterKonfigurér det valgte filter: %sBekræft billedstørrelseBekræft skaleringBekræft tekstredigeringBekræft lukning af _ugemte billederModstridende genvejeKonisk (asymmetrisk)Konisk (symmetrisk)Forbind bestrygningerKonstantBegrænsningerKontekstKontekstafhængige markører er lækre og aktiveret som standard. Men de kræver lidt mere, hvilket du muligvis ønsker at undgå.FortsætBidrag afKonvertérKonvertér kantKonvertér billede til gråtoneKonvertér billede til indekseretKonvertér billede til indekserede farverKonvertér billede til RGBKonvertér billedeKonvertér billede til indekseret (skridt 2)...Konvertér billede til indekseret (skridt 3)...Konverterer til indekseret...KonturændringKonturændringstype %sKopiér navngivenKopierer filen '%s' fra '%s'...Ophavsret:Ødelagt segment %d i farveovergangsfil '%s'.Kunne ikke oprette '%s': %sKunne ikke oprette midlertidig fil for '%s': %sKunne ikke slette '%s': %sKunne ikke åbne '%s' til læsning: %sKunne ikke åbne '%s' til skrivning: %sKunne ikke åbne miniaturefilen '%s': %sKunne ikke læse %d byte fra '%s': %sKunne ikke søge i XCF-fil: %sAntal:_Beskær lagOpret ny _dokOpret en ny skabelonOpret et nyt billedeOpret et nyt lagOpret en ny skabelonOpret en ny visning til dette billedeOpret et nyt billede fra den valgte skabelonOpret en ny skabelonOpret og redigér billeder eller fotografierOpret og redigér banerOpret bane fra tekstOpret markering fra baneOpretter mappen '%s'...TilskærTilskæring og størrelsesændringTilskæring og størrelseTilskæring af lagTilskær lagBeskær billedeTilskær eller ændr størrelsen af et billedeTilskær: Kun sigtekornK_lipK_lip navngiven...Kubisk (bedst)Aktuel _statusNuværende højde:Aktuel statusNuværende bredde:MarkørKurvetypeKurverKurver for indekserede lag kan ikke justeres.BrugerdefineretBrugerdefineret farveBrugerdefineret overgang_Brugerdefineret udfyldningsfarve:KlipKlip navngivenCyanCyan:_Duplikér pensel_Duplikér kanal_Duplikér overgang_Duplikér lag_Duplikér palet_Duplikér bane_Duplikér mønster_Duplikér skabelon...Mørk ternfarveGør kun mørkereStreg-prik-prik...Streg-prik...StipletDato:FejlfindingForvalgt udseende i fuldskærmstilstandStandardudseende i normal tilstandStandardgitterStandardbilledgitterStandard-_interpoleringstype:Forvalgt miniaturestørrelse for _lag og kanaler:Forvalgt _tærskel:Slet ankerSlet ankre_Slet lagmaskeSletning af lagmaskeSlet objektSlet segmentSlet skabelonSlet penselSletning af kanalSlet farveSlet overgangSlet lagSlet af lagmaskeSlet paletSlet baneSlet mønsterSlet gemte indstillinger...Slet det valgte mellemlagerSlet den valgte skabelonSlet dette billedeSlet vektorerSletning af "%s" mislykkedes: %sTætte prikkerAfmætningAfmætning opererer kun på lag med RGB-farver.BeskrivelseDesignEnhedsstatusEnhederVinduerVinduesmenuDiamantTræk fraDirekte farveDeaktivér lagmaskeDeaktivér hurtigmaskeKassér tekstoplysningerFremvisningVisningsnavigeringVis _filtre...SkærmprocedurerVisningstype:Viser [%0.6f, %0.6f]OpløsAfstand:Afstand: %0.6fFarvereduceringDividérForetag en _frisk brugerinstallationVil du nulstille alle filtre til deres standardværdier?Vil du nulstille alle værktøjsindstillinger til standardværdierne?Ønsker du at erstatte den med det billede du gemmer?Gem _ikkeDokobjektDokument_historikDokumenthistorikDokumenterDokumentermenuBlegningBlegning-/sværtningsstrøgBlegning/sværtningDobbeltstipletTræk ankerTræk ankreTræk kurveTræk håndtagTræk baneTræk: flytTegn med blækTegneobjektTegneobjektsændringTegneobjektprocedurerDrop nyt lagDrop ny baneDa der ikke er nogen skrifttyper, er tekstfunktionaliteten ikke tilgængelig.Dump hændelser fra denne kontrolDuplikér penselKopiér kanalDuplikér overgangDuplikér lagDuplikér paletDublikér baneDuplikér mønsterDuplikér den valgte skabelonArgh: kan ikke fortryde_Eksportér bane...Meget l_illeKantopførselKant_findingRedigérRedigér kanalegenskaberRedigér kanalfarveRedigér farvepalet-elementRedigér farvepaletselementRedigér lagets egenskaberRedigér lagmaskeRedigeringstilstandRedigér paletfarveRedigér baneegenskaberRedigér hurtigmaskeegenskaberRedigér hurtigmaskefarveRedigér skabelonRedigér penselRedigér kanalegenskaberRedigér farveRedigér farvepaletselement nr. %dRedigér overgangRedigér lagets egenskaberRedigér paletRedigér bane-egenskaber_Redigér mønsterRedigeringsprocedurerRedigér den valgte skabelonEllipsemarkeringTøm kanalTomt lagTøm baneTomt tekstlagTomt variabelnavn i miljøfilen %s_ReparationAktivér hurtigmaskeAktivér farvereducering på _gennemsigtighedAktivér denne kontrolAngiv om et praktisk tip til Gimp'en skal vises ved start.Angiv om værktøjstip skal vises.KolossalIndtast et navn til den forenede paletIndtast et navn til den gemte indstillingIndtast et navn til dette mellemlagerIndtast et navn til denne skabelonIndtast et nyt navn til de gemte indstillingerIndtast placering (URI):MiljøMiljømapperUdlignUdjævning opererer ikke på indekserede lag.Slet så baggrunden dukker opViskelæderFejlk_onsolFejlkonsolFejlkonsolmenuFejl ved gemning af XCF-fil: %sFejl ved fortolkning af '%s' på linje %d: %sFejl under læsning af '%s': %sFejl under læsning af penselfilen "%s": %sFejl under skrivning af '%s': %sFejl ved skrivning af XCF-fil: %sFejl ved skrivning af filen '%s': +%d lag%d dpi%d dpi, %s%d lag%d minutter%d sekunder%d x %d dpi%d x %d dpi, %s%d x %d punkter%g x %g %s%p%s-kanalkopi%s-kanal til markering%s-meddelelse%s-kopi%s-maske%s%sklik: udvid markering%s%stræk: flyt og komprimér(%0.3f, %0.3f, %0.3f)(ingen)(Dette konsolvindue vil lukke om ti sekunder) +(unavngivent mellemlager)(unavngiven skabelon)(varierer)(ren)(ugyldig UTF-8-streng)(ændret)(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%)Transformerer...4:1 (400%)8:1 (800%)<%s><>For optimal ydelse i Gimp'en kan det være nødvendigt at justere nogle af disse indstillinger.Gimp'en - GNU Image Manipulation Program Copyright © 1995-2003 Spencer Kimball, Peter Mattis og Gimp-udviklingsgruppen.Tipfilen til Gimp'en kunne ikke fortolkes!Din Gimp-tipfil ser ud til at mangle!En fil ved navn "%s" eksisterer allerede._Læg til markeringV_inkelOm Gimp'enHandlingAktivér det _fokuserede billedeAktive filtreAdaptiv supersamplingTilføjTilføj al_fakanalTilføj alfakanalTilføj ankerTilføjelse af kanalTilføj farve til farveafbildningTilføj hjælpelinje: Tilføj hjælpelinjerTilføj vandret hjælpelinjeTilføj lag_maske...Tilføj lagTilføjelse af lagmaskeTilføj baneTilføj bestrygningTilføj tekstlagTilføj lodret hjælpelinjeTilføj en maske til lagetTilføj farve fra baggr.Tilføj farve fra forgr.Tilføj lagmaskeTilføj tekst til billedetTilføj den nuværende farve til farvehistorikkenTilføj det valgte filter til listen over aktive filtreTilføj til palet %sTilføj til den nuværende markeringTilføjer temaet '%s' (%s) +Læg tilYderligere pegekontrollerJustér lysstyrke og kontrastJustér farvebalanceJustér farvekurverJustér farveniveauerJustér lysstyrke og kontrastJustér farvebalancenJustér farvekurverJustér farveniveauerJustér farvetone/lys/mætningJustér farvetone og mætningJustér niveau automatiskJusteringAvancerede indstillingerPåvirk:Påvirket område %sSprøjtepenselSprøjtepensel med variabelt tryk_Alfa til markeringJusteretJusteringAlle kanalerAlle filerAlle filer (*.*))Alle billed- og fortrydelsesdata som ikke passer i 'flisemellemlageret' vil blive skrevet til en reservehukommelsesfil. Denne fil bør placeres på et lokalt filsystem med tilstrækkelig plads (flere hundrede Mb). På et UNIX-system vil du måske bruge systemets mappe til midlertidige filer. ("/tmp" eller "/var/tmp").Tillad fuldstændigt gennemsigtige områder at blive udfyldtTillad fuldstændigt gennemsigtige områder at blive valgtTillad forstørrelse %sAlfaAlfa til markeringAlfa:Et billede af den valgte størrelse vil bruge mere hukommelse end der er konfigureret som "Maksimal billedstørrelse" under indstillingerne (aktuelt %s)._AnimationForankring af flydende markeringForankr flydende lagForankr flydende markeringVinkel:Antislet %sUdjævningUdseendeAnvendelse af lagmaske_Anvend lagmaskeAnvend tærskelAnvend lagmaskeEr du sikker på at du vil slette '%s' fra listen og fra disken?Er du sikker på at du vil slette skabelonen '%s' fra listen og fra disken?Som i _indstillingerSpørg efter bekræftelse før lukning af et vindue uden at gemme.Formatforhold:Formatforhold:ParasitvedhæftningVedhæft parasit til billedeVedhæft parasit til elementVedhæft parasitForfatter:AutoFølg aktivt _billedeFormindsk automatiskFormindsk markering automatiskTilpas vinduesstørrelse automatiskAutoindlæsAutomatisk bestemtTilgængelige filtreTilgængelige typer:Baggrundsfarve-udfyldning_Lysstyrke/kontrast..._MellemlagereBaggrundBaggrundsfarveBaggrundsfarve sat til:Baggrund: %d, %d, %dTilbage (korrigerende)Basér udfyldningsområde på alle synlige lagBasér markering på alle synlige lagBagvedKantBi-lineærSort og hvidSort:Bland endepunkternes f_arver_BlandingBlandingBland endepunkternes _ugennemsigtighedBlanding: Blanding: Ugyldig for indekserede billeder.Blander...BlåBlå:BlødgørBlødgør eller skærpIn_dram...Sæt ramme på kanalIndram markeringIndram det markerede medLysstyrke/kontrastLysstyrke/kontrast virker ikke på indekserede lag.PenselPenselredigeringPenselmapperPenselgrænsefladePensel:PenslerPenslermenuSpandudfyldningMellemlagereMellemlageremenuSværtningSlutEfter endelseVed at bringe billedet tilbage til den tilstand der er gemt på disken, vil du miste alle dine ændringer inklusive al fortrydelsesinformation.CMYK_Kalibrér..._Farveopsnapper_Kolonner:_KombineringKalibrér skærmopløsning%s kan ikke fortrydes_Lærredstørrelse...AnnullérAnnullér hjælpelinjeKan ikke tilføje lagmaske med andre dimensioner end det angivne lag.Kan ikke tilføje lagmaske til et lag uden en alfakanal.Kan ikke tilføje lagmaske til lag som ikke er en del af et billede.Kan ikke forankre dette lag fordi det ikke er en flydende markering.Kan ikke konvertere til en palet med mere end 256 farver.Kan ikke oprette nyt lag fra den flydende markering fordi den tilhører en lagmaske eller kanal.Kan ikke oprette mappen '%s': %sKan ikke generere miniatureKan ikke beskære fordi den aktuelle markering er tom.Kan ikke udfolde ${%s}Kan ikke oprette flydende markering fordi det markerede område er tomt.Kan ikke hæve lag uden alfa.Kan ikke gemme. Intet er valgt.Kan ikke bestryge tom kanal.Kan ikke bestryge tom bane.LærredstørrelseLærred_udfyldningstilstand:Centrum x:Centrum y:CentreretSkift baggrundsfarveSkift farveafbildningselementSkift forgrundsfarveSkift billedopløsningSkift billedenhedSkift udskriftsstørrelseÆndr aktuelt lag eller baneSkift gitterbaggrundsfarveSkift gitterforgrundsfarveSkift indekseret paletVend perspektivet på laget eller markeringenÆndring af genvej mislykkedes.KanalKanalegenskaberKanalnavn:Kanalen kan ikke sænkes mere.Kanalen kan ikke hæves mere.KanalfarveKanal er allerede nederst.Kanal er allerede øverst.Kanal til _markeringKanal til markeringKanal til markeringKanal:KanalerKanalmenuTern_størrelse:Vælg bestrygningsstilCircle_RydRydRyd kanalRyd fortrydelseshistorikRyd alt tekstRyd fejlRyd fortrydelseshistorikKlik på "Fortsæt" for at acceptere ovenstående indstillinger.Klik på "Fortsæt" for at oprette din personlige Gimp-mappe.Klik på "Fortsæt" for at starte Gimp'ens brugerinstallation.Klik på "Fortsæt" for at fortsætte med brugerinstallationen.Klik for at forbinde dette anker med det valgte slutpunkt.Klik for at oprette et nyt anker (prøv skiftetasten).Klik for at oprette en ny komponent til banen.Klik for at oprette en ny bane.Klik for at oprette miniatureKlik for at slette dette anker.Klik for at indsætte en ankor på banen (prøv skiftetasten).Klik for at gøre denne knude vinklet.Klik for at åbne banen.Klik for at vælge bane der skal redigeres.Klik for at opdatere miniature +%s Klik for at gennemtvinge opdatering også selvom miniaturen er opdateretKlik-træk for at ændre formen af kurven (skift: symmetrisk).Klik-træk for at flytte ankeret.Klik-træk for at flytte ankrene.Klik-træk for at flytte komponenten (prøv skiftetasten).Klik-træk for at flytte håndtaget (prøv skiftetasten).Klik-træk for at flytte banen.Klik: markérKlik: markér Træk: flytBeskær resultatKlippebordBeskæres til nederste lagBeskæres til billedeKloningLuk %sLuk alle fanebladeLuk alle faneblade?Luk denne fane_Kopiér bane_FarverFarveFarvebalanceFarvefremvisningsfiltreFarveopsnapperFarveopsnapperFarve_balance...Farve_reducering:Farvebalance virker kun på lag med RGB-farver.FarvesletFarveindeks:Farve:Farve_paletFarve_rum:_Kulørisér...Farve_type for segmentFarve_type for markeringKulørisérKulørisér virker kun på lag med RGB-farver.Kulørisér billedetKulørisér billedetFarvekortlægningFarveredigeringFarvepaletmenuKolonner:Kom_mentar:KommentarKo_ntrast:K_onturændringKonfigurér farvefremvisningsfiltreKonfigurér _udvidede pegeenheder...Konfigurér g_itter...Konfigurér gitterKonfigurér billedgitterKonfigurér tastaturgenvejeKonfigurér tastaturgenveje...Konfigurér det valgte filterKonfigurér det valgte filter: %sBekræft billedstørrelseBekræft skaleringBekræft tekstredigeringBekræft lukning af _ugemte billederModstridende genvejeKonisk (asymmetrisk)Konisk (symmetrisk)Forbind bestrygningerKonstantBegrænsningerKontekstKontekstafhængige markører er lækre og aktiveret som standard. Men de kræver lidt mere, hvilket du muligvis ønsker at undgå.FortsætBidrag afKonvertérKonvertér kantKonvertér billede til gråtoneKonvertér billede til indekseretKonvertér billede til indekserede farverKonvertér billede til RGBKonvertér billedeKonvertér billede til indekseret (skridt 2)...Konvertér billede til indekseret (skridt 3)...Konverterer til indekseret...KonturændringKonturændringstype %sKopiér navngivenKopiér _synligKopierer filen '%s' fra '%s'...Ophavsret:Ødelagt segment %d i farveovergangsfil '%s'.Kunne ikke oprette '%s': %sKunne ikke oprette midlertidig fil for '%s': %sKunne ikke slette '%s': %sKunne ikke finde Gimp'ens hjælpefremviser.Kunne ikke åbne '%s' til læsning: %sKunne ikke åbne '%s' til skrivning: %sKunne ikke åbne miniaturefilen '%s': %sKunne ikke læse %d byte fra '%s': %sKunne ikke søge i XCF-fil: %sKunne ikke starte Gimp'ens hjælpefremvisermodul.Antal:_Beskær lagOpret ny _dokOpret en ny skabelonOpret et nyt billedeOpret et nyt lagOpret en ny skabelonOpret en ny visning til dette billedeOpret et nyt billede fra den valgte skabelonOpret en ny skabelonOpret og redigér billeder eller fotografierOpret og redigér banerOpret bane fra tekstOpret markering fra baneOpretter miniature...Opretter mappen '%s'...TilskærTilskæring og størrelsesændringTilskæring og størrelseTilskæring af lagTilskær lagBeskær billedeTilskær eller ændr størrelsen af et billedeTilskær: Kun sigtekornK_lipK_lip navngiven...Kubisk (bedst)Aktuel _statusNuværende højde:Kun aktuelt lagAktuel statusNuværende bredde:MarkørMarkør_tilstand:Markør_udseende:KurvetypeKurverKurver for indekserede lag kan ikke justeres.BrugerdefineretBrugerdefineret farveBrugerdefineret overgang_Brugerdefineret udfyldningsfarve:KlipKlip navngivenCyanCyan:_Duplikér pensel_Duplikér kanal_Duplikér overgang_Duplikér lag_Duplikér palet_Duplikér bane_Duplikér mønster_Duplikér skabelon...Mørk ternfarveGør kun mørkereStreg-prik-prik...Streg-prik...Stiplingsmønster:Stiplingsforvalg:StipletDato:FejlfindingForvalgt udseende i fuldskærmstilstandStandardudseende i normal tilstandStandardgitterStandardbilledgitterStandard-_interpoleringstype:Forvalgt miniaturestørrelse for _lag og kanaler:Forvalgt _tærskel:Slet ankerSlet ankre_Slet lagmaskeSletning af lagmaskeSlet objektSlet segmentSlet skabelonSlet penselSletning af kanalSlet farveSlet overgangSlet lagSlet af lagmaskeSlet paletSlet baneSlet mønsterSlet gemte indstillinger...Slet det valgte mellemlagerSlet den valgte skabelonSlet dette billedeSlet vektorerSletning af "%s" mislykkedes: %sTætte prikkerAfmætningAfmætning opererer kun på lag med RGB-farver.BeskrivelseDesignEnhedsstatusEnhederVinduerVinduesmenuDiamantTræk fraDirekte farveDeaktivér lagmaskeDeaktivér hurtigmaskeKassér tekstoplysningerFremvisningVisningsnavigeringVis _filtre...SkærmprocedurerVisningstype:Viser [%0.6f, %0.6f]OpløsAfstand:Afstand: %0.6fFarvereduceringDividérForetag en _frisk brugerinstallationVil du nulstille alle filtre til deres standardværdier?Vil du nulstille alle værktøjsindstillinger til standardværdierne?Ønsker du at erstatte den med det billede du gemmer?Gem _ikkeDokobjektDokument_historikDokumenthistorikDokumenterDokumentermenuBlegning/sværtningBlegningBlegning-/sværtningsstrøgBlegning/sværtningDobbeltstipletTræk ankerTræk ankreTræk kurveTræk håndtagTræk baneTræk: flytTegn med blækTegneobjektTegneobjektsændringTegneobjektprocedurerDrop nyt lagDrop ny baneDa der ikke er nogen skrifttyper, er tekstfunktionaliteten ikke tilgængelig.Dump hændelser fra denne kontrolDuplikér penselKopiér kanalDuplikér overgangDuplikér lagDuplikér paletDublikér baneDuplikér mønsterDuplikér den valgte skabelonArgh: kan ikke fortryde_Eksportér bane...Meget l_illeKantopførselKant_findingRedigérRedigér kanalegenskaberRedigér kanalfarveRedigér farvepalet-elementRedigér farvepaletselementRedigér lagets egenskaberRedigér lagmaskeRedigeringstilstandRedigér paletfarveRedigér baneegenskaberRedigér hurtigmaskeegenskaberRedigér hurtigmaskefarveRedigér skabelonRedigér penselRedigér kanalegenskaberRedigér farveRedigér farvepaletselement nr. %dRedigér overgangRedigér lagets egenskaberRedigér paletRedigér bane-egenskaber_Redigér mønsterRedigeringsprocedurerRedigér den valgte skabelonEllipsemarkeringTøm kanalTomt lagTøm baneTomt tekstlagTomt variabelnavn i miljøfilen %s_ReparationAktivér hurtigmaskeAktivér farvereducering på _gennemsigtighedAktivér denne kontrolAngiv om et praktisk tip til Gimp'en skal vises ved start.Angiv om værktøjstip skal vises.KolossalIndtast et navn til den forenede paletIndtast et navn til den gemte indstillingIndtast et navn til dette mellemlagerIndtast et navn til denne skabelonIndtast et nyt navn til de gemte indstillingerIndtast placering (URI):MiljøMiljømapperUdlignUdjævning opererer ikke på indekserede lag.Slet så baggrunden dukker opViskelæderFejlk_onsolFejlkonsolFejlkonsolmenuFejl ved gemning af XCF-fil: %sFejl ved fortolkning af '%s' på linje %d: %sFejl under læsning af '%s': %sFejl under læsning af penselfilen "%s": %sFejl under skrivning af '%s': %sFejl ved skrivning af XCF-fil: %sFejl ved skrivning af filen '%s': %sFejl ved skrivning i '%s': %sFejl ved skrivning i den midlertidige fil for '%s': %s Ingen fil er blevet oprettet.Fejl ved skrivning i den midlertidige fil for '%s': %s -Den originale fil er ikke blevet rørt.FejlHændelseMeget st_orUdvides efter behovEksportér bane til SVGEksportér alle baner fra dette billedeEksportér den aktive baneVirkningsgrad:Udvidede pegeenhederProgramudvidelserForgrundsfarve-udfyldningForgr. til baggr. (HSV med uret)Forgr. til baggr. (HSV mod uret)Fg. til bg. (HSV)Fg. til bg. (RGB)Fg. til gennemsigtigFg. til gennemsigtigFor-/baggrundFor-/baggrundsfarveLøsnen af flydendeStramning af flydendeFlydende til lag_Tilpas lærred til lagKunne ikke importere overgange fra "%s": %sKunne ikke importere baner fra '%s': %sSmartFatal fortolkningsfejl i penselfilen '%s': filen ser ud til at være afkortet.Fatal fortolkningsfejl i penselfilen '%s': filen er ødelagt.Fatal fortolkningsfejl i penselfilen '%s': er ikke en Gimp-penselfil.Fatal fortolkningsfejl i penselfilen '%s': ukendt Gimp-penselform.Fatal fortolkningsfejl i penselfilen '%s': ukendt Gimp-penselversion.Fatal fortolkningsfejl i penselfilen '%s': ukendt dybde %d.Fatal fortolkningsfejl i penselfilen '%s': ukendt version %d.Fatal fortolkningsfejl i penselfilen '%s': ikke-understøttet penseldybdde %d -Gimp-pensler skal være gråtone eller RGBA.Fatal fortolkningsfejl i farveovergangsfilen '%s': filen er ødelagt.Fatal fortolkningsfejl i fareovergangsfil '%s': er ikke en Gimp-farveovergangsfil.Fatal fortolkningsfejl i paletfil '%s': mangler magisk hoved.Fatal fortolkningsfejl i paletfil '%s': mangler magisk hoved. +Den originale fil er ikke blevet rørt.FejlHændelseMeget st_orUdvides efter behovEksportér bane til SVGEksportér alle baner fra dette billedeEksportér den aktive baneVirkningsgrad:Udvidede pegeenhederProgramudvidelserForgrundsfarve-udfyldningForgr. til baggr. (HSV med uret)Forgr. til baggr. (HSV mod uret)Fg. til bg. (HSV)Fg. til bg. (RGB)Fg. til gennemsigtigFg. til gennemsigtigFor-/baggrundFor-/baggrundsfarveLøsnen af flydendeStramning af flydendeFlydende til lag_Tilpas lærred til lagFalmenKunne ikke importere overgange fra "%s": %sKunne ikke importere baner fra '%s': %sSmartFatal fortolkningsfejl i penselfilen "%s": byte = 0.Fatal fortolkningsfejl i penselfilen "%s": filen ser ud til at være afkortet.Fatal fortolkningsfejl i penselfilen "%s": filen er ødelagt.Fatal fortolkningsfejl i penselfilen "%s": højde = 0.Fatal fortolkningsfejl i penselfilen "%s": er ikke en Gimp-penselfil.Fatal fortolkningsfejl i penselfilen "%s": ukendt Gimp-penselform.Fatal fortolkningsfejl i penselfilen "%s": ukendt Gimp-penselversion.Fatal fortolkningsfejl i penselfilen "%s": ukendt dybde %d.Fatal fortolkningsfejl i penselfilen "%s": ukendt version %d.Fatal fortolkningsfejl i penselfilen "%s": ikke-understøttet penseldybdde %d +Gimp-pensler skal være gråtone eller RGBA.Fatal fortolkningsfejl i penselfilen "%s": bredde = 0.Fatal fortolkningsfejl i farveovergangsfilen '%s': filen er ødelagt.Fatal fortolkningsfejl i fareovergangsfil '%s': er ikke en Gimp-farveovergangsfil.Fatal fortolkningsfejl i paletfil '%s': mangler magisk hoved.Fatal fortolkningsfejl i paletfil '%s': mangler magisk hoved. Har denne fil behov for at blive konverteret fra DOS?Fatal fortolkningsfejl i paletfil '%s': læsefejl på linje %d.Fatal fortolkningsfejl i mønsterfilen '%s': kunne ikke læse %d byte: %sFatal fortolkningsfejl i mønsterfilen '%s': ukendt mønsterformatversion %d.Fatal fortolkningsfejl i mønsterfilen '%s': ikke-understøttet mønsterdybde %d. -Gimp-mønstre skal være gråtone eller RGB._Udvisk...Udvisk kanalUdvisk markeringUdvisk kanterUdvisk det markerede overFilFilåbnings_vindueFiloperationerFiltypeFilen eksistererFil er afkortetUdfyld kanalFyldugennemsigtighed:Fyldtype %sUdfyld med bg.-farveUdfyld med _bg.-farveUdfyld med fg.-farveUdfyld med _mønsterUdfyldning med mønsterUdfyld med gennemsigtighedUdfyld med hvidUdfyld med _fg.-farveUdfyld med _baggrundsfarveUdfyld med en farveovergangUdfyld med en farve eller et mønsterFyldt_FiltreDet resulterende forenede lag skal:Finding af sammenhængende områderFinding af ens farverTilpas billede til vindueTilpas billede til vindueTilpas billede til vindueTilpas til vindueFladgør billedeVendVend kanalVend lagVend baneVend tekstlagVendingstype %sVend _vandretVend _lodretVend billedeVend lag og markeringerVender...Flydning af markeringFlyd markeringFlydende lagFlydende markering -(%s)Flydende markering til lagFlydende markering til lagFlydende markeringerFloyd-Steinberg (normal)Floyd-Steinberg (reduceret farveblødning)FokusMappeMapperSkrifttypemapperSkrifttypegrænsefladeSkrifttype:SkrifttyperSkrifttypermenuTil en korrekt installation af Gimp'en skal en mappe ved navn %s oprettes.Tving automatiske hintForgrundForgrunds- og baggrundsfarver. De sorte og hvide firkanter nulstiller farver mens pilene ombytter dem. Dobbeltklik for at åbne farvevælgeren.ForgrundsfarveForgrundsfarve sat til:Forgrund: %d, %d, %dFremad (traditionel)Fr_a baneFri markeringFrihåndFra _temaHent opløsning fra _vinduessystem (i øjeblikket %dx%d dpi)Fra venstre mod højreFra højre mod venstreFra temaFuldsk_ærmUdflydende markeringGimp'enGimp-programudvidelseGimp-meddelelseGimp - ydelsesjusteringGimp-udvidelsesmodulGimp-startTekstredigeringDagens tip til Gimp'enGimp - brugerinstallationGimp'en kunne ikke klargøre den grafisk brugergrænseflade. +Gimp-mønstre skal være gråtone eller RGB._Udvisk...Udvisk kanalUdvisk markeringUdvisk kanterUdvisk det markerede overFilFilåbnings_vindueFiloperationerFiltypeFilen eksistererFil er afkortetUdfyld kanalFyldugennemsigtighed:Fyldtype %sUdfyld lignende farverUdfyld gennemsigtige områderUdfyld hele markeringUdfyld med bg.-farveUdfyld med _bg.-farveUdfyld med fg.-farveUdfyld med _mønsterUdfyldning med mønsterUdfyld med gennemsigtighedUdfyld med hvidUdfyld med _fg.-farveUdfyld med _baggrundsfarveUdfyld med en farveovergangUdfyld med en farve eller et mønsterFyldt_FiltreDet resulterende forenede lag skal:Finding af sammenhængende områderFind ens farverTilpas billede til vindueTilpas billede til vindueTilpas billede til vindueTilpas til vindueFast formatforholdFast størrelseFladgør billedeVendVend kanalVend lagVend baneVend tekstlagVendingstype %sVend _vandretVend _lodretVend billedeVend lag og markeringerVender...Vender...Flydning af markeringFlyd markeringFlydende lagFlydende markering +(%s)Flydende markering til lagFlydende markering til lagFlydende markeringerFloyd-Steinberg (normal)Floyd-Steinberg (reduceret farveblødning)FokusMappeMapperSkrifttypemapperSkrifttypegrænsefladeSkrifttype:SkrifttyperSkrifttypermenuTil en korrekt installation af Gimp'en skal en mappe ved navn %s oprettes.Tving automatiske hintForgrundForgrunds- og baggrundsfarver. De sorte og hvide firkanter nulstiller farver mens pilene ombytter dem. Dobbeltklik for at åbne farvevælgeren.ForgrundsfarveForgrundsfarve sat til:Forgrund: %d, %d, %dFremad (traditionel)Fr_a baneFri markeringFri markeringFrihåndFra _temaHent opløsning fra _vinduessystem (i øjeblikket %dx%d dpi)Fra venstre mod højreFra højre mod venstreFra markeringFra tema_Udflydende markeringFuldsk_ærmUdflydende markeringGimp'enGimp-programudvidelseGimp-meddelelseGimp - ydelsesjusteringGimp-udvidelsesmodulGimp-startTekstredigeringDagens tip til Gimp'enGimp - brugerinstallationGimp XCF-billedeGimp'en kunne ikke klargøre den grafisk brugergrænseflade. Sikr dig at en korrekt opsætning af terminalmiljøet eksisterer.HjælpefremviserGimp'en blev ikke korrekt installeret for den aktuelle bruger. Brugerinstallationen blev oversprunget fordi tilvalget '--no-interface' blev benyttet. Kør Gimp'en uden tilvalget for at udføre brugerinstallationen.Gimp'en bruger en begrænset mængde hukommelse til at lagre billeddata, det såkaldte 'flisemellemlager'. Du bør justere lagerets størrelse så det kan være i hukommelsen. Tag den mængde hukommelse der bruges af andre kørende processer, i betragtning.Gimp'en bruger en ekstra gtkrc fil så du kan konfigurere programmet -til at have et andet udseende end andre GTK+-programmer.Gimp'en versionGimp'en advarer ved forsøg på at oprette et billede der vil bruge mere hukommelse end denne størrelse.GammaGenereltDette angiver det minimale antal farve der bliver allokeret til Gimp'en (kun interessant for 8 bit-terminaler).Generér optimal paletSkaf skærmopløsningGigantiskGimprc-procedurerGl_aseffekterFarveovergangsredigeringFarveovergangsredigeringsmenuFarveovergangesmapperVenstre endepunkts farve for overgangssegmentHøjre endepunkts farve for overgangssegmentFarveovergangsgrænsefladeOvergang:FarveovergangeFarveovergangemenuUdtræk kornForén kornGråGråtonerGrønGrøn:HjælpelinjeForøg kanalForøg markeringForøg markeringen medHjælpelinjeHjælpelinje- og gitterlåsningHjælpelinjeprocedurerHSVHSV (%0.3f, %0.3f, %0.3f)HSV (farvetone m_od uret)HSV (farvetone m_ed uret)HTML-notation:_Højde:Hjælpe_fremviser der skal anvendes:Håndtagsposition: %0.6fHårdgør lysHårdhedHårdhed:HøjdeHøjde:HjælpHjælpefremviserHjælpesystemHjælpeprocedurerHex:Lyse tonerHint til _dokkene:Hint til _værktøjskassen:HintAnvendelse af hint ændrer skriftformerne for at give et tydeligt billede ved små størrelserHistogra_mHistogramHistogramskalaHistorikVandretVandret afsæt til den første gitterlinje; dette kan være et negativt tal.Vandret mellemrum mellem gitterlinjer.Hvor mange senest åbnede billedfilnavne der skal gemmes i filmenuen.FarvetoneFarvetone/mætningFarvetone/mætning virker kun på lag med RGB-farver.Tone:EnormI_kon og tekst_BilledeIm_portér bane..._Interpolering:_Interval:IkonIkon og beskrivelseIkon og tekstHvis tilgængelige bliver hint fra skrifttypen benyttet, men du kan foretrække altid at benytte den automatiske beregning af hintHvis du ikke gemmer billedet, vil ændringer fra for %s siden gå tabt.Hvis du afslutter Gimp'en nu, vil disse ændringer gå tabt.Ugyldigt variabelnavn i miljøfilen %s: %sBilledeBilledredigeringBilledinformationBilledmenuBilledstørrelseStatuslinjeformatet for billederBilledskabelonerBilledminiaturerBilledtitel og statuslinjeformatTitelformat for billederUdseende af billedvinduerBilledvinduerBillede indeholder ikke nogen synlige lagBilledfilBilledmaskeBilledopløsningen er uden for grænserne, bruger standardopløsningen i stedet.BilledstørrelseBilledtypeBillederBilledemenuImporteringsindstillingerImportér paletImportering af banerImportér bane fra SVGImportér en ny paletImportér paletImportér banerImporteret bane_InvertérIn_vertér maskeForøgendeIndrykning:Indrykning af den første linjeIndeks:IndekseretIndekserede farverIndekseret farvekonverteringIndekserede farvelag bliver altid skaleret uden interpolering. Den valgte interpoleringstype vil kun påvirke kanaler og masker.InfovindueStartzoomforhold:Lagets maske starter som:Klargør udvidelsesmodulerKlargør udvidelsesmodul: '%s' -BlækpenIndlejret pixbufPegekontrollerPegeenhederInddataniveauerIndsæt ankerInstallér en privat farveafbildning; kan være brugbart på terminaler med indekserede farver.Installationen mislykkedes. Kontakt systemadministratoren.Installationen lykkedes. Klik "Fortsæt" for at gå videre.Øjeblikkelig opdateringIntensitet: %0.3f Ugennemsigtighed: %0.3fGrænsefladeIntern Gimp-procedureInterne procedurerInterpolering:FællesmængdeKryds med den nuværende markeringKryds med (sigtekorn)Kryds med (prikker)Ugyldig UTF-8Ugyldige UTF-8-data i filen '%s'.Ugyldig UTF-8-streng i XCF-filUgyldig UTF-8-streng i penselfilen '%s'.Ugyldig UTF-8-streng i farveovergangsfil '%s'.Ugyldig UTF-8-streng i paletfil '%s'.Ugyldig UTF-8-streng i mønsterfilen '%s'.Ugyldig tegnsekvens i URIUgyldig genvej.Ugyldig bredde eller højde. Begge skal være positive.InvertérInvertér kanalInvertér markeringInvertering virker ikke på indekserede lag.Invertér markeringEr dette hvad du ønsker at gøre?Det ser ud til du har brugt Gimp 2.0 før.ElementegenskaberElementsynlighedJustering:Behold gennemsigtighedBehold overBehold forhold %sBehold højde %sBehold bredde %sTast nedTast ned (Alt)Tast ned (Ctrl + Alt)Tast ned (Ctrl)Tast ned (Skift + Alt)Tast ned (Skift + Ctrl + Alt)Tast ned (Skift + Ctrl)Tast ned (Skift)Tast venstreTast venstre (Alt)Tast venstre (Ctrl + Alt)Tast venstre (Ctrl)Tast venstre (Skift + Alt)Tast venstre (Skift + Ctrl + Alt)Tast venstre (Skift + Ctrl)Tast venstre (Skift)Tast højreTast højre (Alt)Tast højre (Ctrl + Alt)Tast højre (Ctrl)Tast højre (Skift + Alt)Tast højre (Skift + Ctrl + Alt)Tast højre (Skift + Ctrl)Tast højre (Skift)Tast opTast op (Alt)Tast op (Ctrl + Alt)Tast op (Ctrl)Tast op (Skift + Alt)Tast op (Skift + Ctrl + Alt)Tast op (Skift + Ctrl)Tast op (Skift)Tastaturgenveje kan omdefineres dynamisk i Gimp'en. Menurc gemmer konfigurationen så den bliver husket ved næste session. Du kan redigere denne fil hvis du ønsker, men det er meget lettere at definere tasterne inde i Gimp'en. Sletning af denne fil vil genoprette standardtastaturgenvejene.TastaturTastaturhændelserTastaturgenvejeVenstre mod højre_Venstre endepunkts farve...LandskabStorStor (256x256)Større eksemplerSidste fejl:LagLaget "%s" har ingen alfa. Laget blev placeret over det.LagegenskaberLag_kantstørrelse...Fyldtype for lagLagmaske til markeringVælg lagLagstørrelseLag_tilstand_Navn på lag:Laget kan ikke sænkes mere.Laget kan ikke hæves mere.Laget er allerede nederst.Laget er allerede øverst.Lag til billedstørrelseLag til _bundLag til _billedstørrelseLag til _topLagets _alfakanalLagLagmenuIndstillinger for forening af lagVenstre endepunkts farveLængde:Lad Gimp'en forsøge at gendanne din sidste gemte session ved hver start.NiveauerNiveauer for indekserede lag kan ikke justeres.Lys ternfarveGør kun lysereLinjeLinje- -mellemrum:Linje_stil:Linjestil som bruges af gitteret.LineærKædet elementIndlæsIndlæs kurverHent niveauerHent højre farve _fraIndlæs tekst fra filIndlæser miniature...Placering:LogaritmiskLange stregerLeder efter datafilerSænk kanalSænk kanal til bundSænk kanal til _bundSænk lagSænk lag til bundSænk baneSænk bane til bundSænk bane til _bundSænk kanalSænk kanal til bundSænk lagSænk lag til bundSænk baneSænk bane til bund_Flyt til skærm..._AfbildningMagentaMagenta:ForstørGør _gennemsigtigGennemse og håndtér programudvidelserMarcherende _myrers fart:Maskeugennemsigtighed:Maskér _markerede områderMaskér _ikke-markerede områderMatrix:Maks. dybde:Maksimal _filstørrelse for miniaturer:Maksimal størrelse af _nyt billede:Maksimal farveforskelMaksimal fortrydelses_hukommelse:Middelværdi:OpmålMål afstande og vinklerMål afstande og vinklerMål linealerne og indtast deres længder:Median:MellemMellem stregerForén _nedadForén nedadForenelse af lagForén paletForén synlige lagForén synlige banerForén synlige _lag...Forén _synlige lag...Forén _synlige lagForén lagForén paletterForén vektorerMeddelelsesprocedurerMeddelelse gentaget %d gange.Meddelelse gentaget én gang.Meddelelse bliver videresendt til stderr.MellemtonerMigrér brugerindstillingerMinimum antal _fortrydelsesniveauer:DiverseMellemPåvirkede tonerTilstand:Ændr valgt farveÆndr det valgte intervals farveniveauerÆndr alle farverÆndr linjeafstandProgramudvidelsesmapperProgramudvidelserUdvidelsesstiProgramudvidelserMusemarkørerMusehjulMusehjulshændelserFlytFlyt ankreFlyt kanalFlytning af hjælpelinjeFlyt lagFlytning af lagmaskeFjernelse af baneFlyt markeringFlytteværktøjFlyt elementFlyt lag og markeringerFlyt det valgte filter nedFlyt det valgte filter opFlyt til skærm...Flyt: GangA_ntal farver:_NavigeringNa_vigationsvindueMiniaturestørrelse for _navigeringsvinduer:NavnNavn:NavigeringNy kanalNy kanalfarveIndstillinger for ny kanalNy farve fra _baggrundNy farve fra _forggrundNyt billedeNyt lagNy baneIndstillinger for ny baneNy skabelonNy penselNy kanalNy kanal med sidste værdierNy kanal...Ny farve fra _baggrundNy farve fra forggrundNy farveovergangNy importeringNyt lagNyt lag med sidste værdierNyt lag...Ny paletNy bane med sidste værdierNy bane...Nyt mønsterNye vektorerIngen pensler tilgængelige til dette værktøj.Intet filter valgtIngen lineære overgange fundet i "%s"Ingen længere tilgængeligIngen baner fundet i '%s'Ingen baner fundet i mellemlageretIngen mønstre disponible for denne operation.Ingen markering til strøg.Ingen miniaturerIntetIngen (hurtigst)NormalNormal (128x128)Normale prikkerNormalt vindueIkke en almindelig filDer er ikke nok synlige lag til en forening. Det skal være mindst to.Der er ikke nok synlige baner til en forening. Det skal være mindst to.Antal _processorer som benyttes:Antal lag:_Anden...ForskydningForskyd kanalForskyd tegneobjektForskyd lagForskyd lagmaskeForskyd med (x/_2, y/2)Afsæt:På diskPå flerprocessormaskiner hvor Gimp'en er blevet oversat med --enable-mp, angiver dette hvor mange processor Gimp'en skal benytte samtidigt.Kun i hukommelseÅ_bn som lag...UgennemsigtighedUgennemsigtighed:ÅbnÅbn billedeÅbn billede som lagÅbn placeringÅbn tekstfil (UTF-8)Åbn _placering...Åbn _senesteÅbn billedeÅbn penselvælgerenÅbn skrifttypevælgerenÅbn farveovergangsvælgerenÅbn paletvælgerenÅbn mønstervælgerenÅbn det valgte punktÅbning af '%s' mislykkedes: +til at have et andet udseende end andre GTK+-programmer.Gimp'en versionGimp'en advarer ved forsøg på at oprette et billede der vil bruge mere hukommelse end denne størrelse.GammaGenereltDette angiver det minimale antal farve der bliver allokeret til Gimp'en (kun interessant for 8 bit-terminaler).Generér optimal paletSkaf skærmopløsningGigantiskGimprc-procedurerGl_aseffekterOvergangFarveovergangsredigeringFarveovergangsredigeringsmenuFarveovergangesmapperVenstre endepunkts farve for overgangssegmentHøjre endepunkts farve for overgangssegmentFarveovergangsgrænsefladeFarveovergangsfilen "%s" er ødelagt: Segmenter følger ikke intervallet 0-1.Overgang:FarveovergangeFarveovergangemenuUdtræk kornForén kornGråGråtonerGrønGrøn:HjælpelinjeGitterlinjemellemrumForøg kanalForøg markeringForøg markeringen medHjælpelinjeHjælpelinje- og gitterlåsningHjælpelinjeprocedurerHSVHSV (%0.3f, %0.3f, %0.3f)HSV (farvetone m_od uret)HSV (farvetone m_ed uret)HTML-notation:_Højde:Hjælpe_fremviser der skal anvendes:Håndtagsposition: %0.6fHård kantHårdgør lysHårdhedHårdhed:HøjdeHøjde:HjælpHjælpefremviserHjælpesystemHjælpefremviser starter ikkeHjælpefremviser ikke fundetHjælpeprocedurerHex:Lyse tonerHint til _dokkene:Hint til _værktøjskassen:HintAnvendelse af hint ændrer skriftformerne for at give et tydeligt billede ved små størrelserHistogra_mHistogramHistogramskalaHistorikVandretVandret afsæt til den første gitterlinje; dette kan være et negativt tal.Vandret mellemrum mellem gitterlinjer.Hvor mange senest åbnede billedfilnavne der skal gemmes i filmenuen.FarvetoneFarvetone/mætningFarvetone/mætning virker kun på lag med RGB-farver.Farvetone/_mætning...Tone:EnormI_kon og tekst_BilledeIm_portér bane..._Interpolering:_Interval:IkonIkon og beskrivelseIkon og tekstHvis tilgængelige bliver hint fra skrifttypen benyttet, men du kan foretrække altid at benytte den automatiske beregning af hintHvis aktiveret, vil flytteværktøjet ændre det aktive lag eller den aktive bane når et lag eller en bane bliver valgt. Dette plejede at være den måde programmet opførte sig på i tidligere versioner.Hvis du ikke gemmer billedet, vil ændringer fra for %s siden gå tabt.Hvis du afslutter Gimp'en nu, vil disse ændringer gå tabt.Ugyldigt variabelnavn i miljøfilen %s: %sBilledeBillede + gitterBilledredigeringBilledinformationBilledmenuBilledstørrelseStatuslinjeformatet for billederBilledskabelonerBilledminiaturerBilledtitel og statuslinjeformatTitelformat for billederUdseende af billedvinduerBilledvinduerBillede indeholder ikke nogen synlige lagBilledfilBilledmaskeBilledopløsningen er uden for grænserne, bruger standardopløsningen i stedet.BilledstørrelseBilledkildeBilledtypeBillederBilledemenuImporteringsindstillingerImportér paletImportering af banerImportér bane fra SVGImportér en ny paletImportér paletImportér banerImporteret bane_Blækpen_InvertérIn_vertér maskeForøgendeIndrykning:Indrykning af den første linjeIndeks:IndekseretIndekserede farverIndekseret farvekonverteringIndekserede farvelag bliver altid skaleret uden interpolering. Den valgte interpoleringstype vil kun påvirke kanaler og masker.InfovindueStartzoomforhold:Lagets maske starter som:Klargør udvidelsesmodulerKlargør udvidelsesmodul: '%s' +BlækpenIndlejret pixbufPegekontrollerPegeenhederInddataniveauerIndsæt ankerInstallér en privat farveafbildning; kan være brugbart på terminaler med indekserede farver.Installationen mislykkedes. Kontakt systemadministratoren.Installationen lykkedes. Klik "Fortsæt" for at gå videre.Øjeblikkelig opdateringIntelligent _saksIntensitet: %0.3f Ugennemsigtighed: %0.3fGrænsefladeIntern Gimp-procedureInterne procedurerInterpolering:FællesmængdeKryds med den nuværende markeringKryds med (sigtekorn)Kryds med (prikker)Ugyldig UTF-8Ugyldige UTF-8-data i filen '%s'.Ugyldig UTF-8-streng i XCF-filUgyldig UTF-8-streng i penselfilen "%s".Ugyldig UTF-8-streng i farveovergangsfil '%s'.Ugyldig UTF-8-streng i paletfil '%s'.Ugyldig UTF-8-streng i mønsterfilen '%s'.Ugyldig tegnsekvens i URIUgyldig genvej.Ugyldig bredde eller højde. Begge skal være positive.InvertérInvertér kanalInvertér markeringInvertering virker ikke på indekserede lag.Invertér markeringEr dette hvad du ønsker at gøre?Det ser ud til du har brugt Gimp 2.0 før.ElementegenskaberElementsynlighedJustering:Behold gennemsigtighedBehold overBehold forhold %sFast formatforhold %sBehold højde %sBehold gennemsigtighedBehold bredde %sTast nedTast ned (Alt)Tast ned (Ctrl + Alt)Tast ned (Ctrl)Tast ned (Skift + Alt)Tast ned (Skift + Ctrl + Alt)Tast ned (Skift + Ctrl)Tast ned (Skift)Tast venstreTast venstre (Alt)Tast venstre (Ctrl + Alt)Tast venstre (Ctrl)Tast venstre (Skift + Alt)Tast venstre (Skift + Ctrl + Alt)Tast venstre (Skift + Ctrl)Tast venstre (Skift)Tast højreTast højre (Alt)Tast højre (Ctrl + Alt)Tast højre (Ctrl)Tast højre (Skift + Alt)Tast højre (Skift + Ctrl + Alt)Tast højre (Skift + Ctrl)Tast højre (Skift)Tast opTast op (Alt)Tast op (Ctrl + Alt)Tast op (Ctrl)Tast op (Skift + Alt)Tast op (Skift + Ctrl + Alt)Tast op (Skift + Ctrl)Tast op (Skift)Tastaturgenveje kan omdefineres dynamisk i Gimp'en. Menurc gemmer konfigurationen så den bliver husket ved næste session. Du kan redigere denne fil hvis du ønsker, men det er meget lettere at definere tasterne inde i Gimp'en. Sletning af denne fil vil genoprette standardtastaturgenvejene.TastaturTastaturhændelserTastaturgenvejeVenstre mod højre_Venstre endepunkts farve...LandskabStorStor (256x256)Større eksemplerSidste fejl:LagLaget "%s" har ingen alfa. Laget blev placeret over det.LagegenskaberLag_kantstørrelse...Fyldtype for lagLagmaske til markeringVælg lagLagstørrelseLag_tilstand_Navn på lag:Laget kan ikke sænkes mere.Laget kan ikke hæves mere.Laget er allerede nederst.Laget er allerede øverst.Lag til billedstørrelseLag til _bundLag til _billedstørrelseLag til _topLagets _alfakanalLagLagmenuIndstillinger for forening af lagVenstre endepunkts farveVenstrejusteretLængde:Lad Gimp'en forsøge at gendanne din sidste gemte session ved hver start.NiveauerNiveauer for indekserede lag kan ikke justeres.Lys ternfarveGør kun lysereLinjeLinje- +mellemrum:Linjebredde:Linje_stil:Linjestil som bruges af gitteret.LineærKædet elementIndlæsIndlæs kurverHent niveauerHent højre farve _fraIndlæs kurveindstillinger fra filIndlæs niveauindstillinger fra filIndlæs tekst fra filIndlæser miniature...Placering:LogaritmiskLange stregerLeder efter datafilerSænk kanalSænk kanal til bundSænk kanal til _bundSænk lagSænk lag til bundSænk baneSænk bane til bundSænk bane til _bundSænk kanalSænk kanal til bundSænk lagSænk lag til bundSænk baneSænk bane til bundForst_ør_Original_Flyt til skærm..._AfbildningMagentaMagenta:ForstørGør _gennemsigtigGennemse og håndtér programudvidelserMarcherende _myrers fart:Maskeugennemsigtighed:Maskér _markerede områderMaskér _ikke-markerede områderMatrix:Maks. dybde:Maksimal _filstørrelse for miniaturer:Maksimal størrelse af _nyt billede:Maksimal farveforskelMaksimal fortrydelses_hukommelse:Middelværdi:OpmålMål afstande og vinklerMål afstande og vinklerMål linealerne og indtast deres længder:Median:MellemMellem stregerForén _nedadForén nedadForenelse af lagForén paletForén synlige lagForén synlige banerForén synlige _lag...Forén _synlige lag...Forén _synlige lagForén lagForén paletterForén vektorerMeddelelsesprocedurerMeddelelse gentaget %d gange.Meddelelse gentaget én gang.Meddelelse bliver videresendt til stderr.MellemtonerMigrér brugerindstillingerMinimum antal _fortrydelsesniveauer:DiverseMellemPåvirkede tonerTilstand:Ændr valgt farveÆndr det valgte intervals farveniveauerÆndr alle farverÆndr linjeafstandProgramudvidelsesmapperProgramudvidelserUdvidelsesstiProgramudvidelserMusemarkørerMusehjulMusehjulshændelserFlytFlyt ankreFlyt kanalFlyt flydende markeringFlyt hjælpelinjeFlyt hjælpelinje: Flyt lagFlytning af lagmaskeFjernelse af baneFlyt markeringFlyt tekstlagFlytteværktøjFlyt elementFlyt lag og markeringerFlyt markeringFlyt det aktuelle lagFlyt den aktuelle baneFlyt det valgte filter nedFlyt det valgte filter opFlyt til skærm...Flyt: GangA_ntal farver:_NavigeringNa_vigationsvindueMiniaturestørrelse for _navigeringsvinduer:NavnNavn:NavigeringNy kanalNy kanalfarveIndstillinger for ny kanalNy farve fra _baggrundNy farve fra _forggrundNyt billedeNyt lagNy baneIndstillinger for ny baneNy skabelonNy penselNy kanalNy kanal med sidste værdierNy kanal...Ny farve fra _baggrundNy farve fra forggrundNy farveovergangNy importeringNyt lagNyt lag med sidste værdierNyt lag...Ny paletNy bane med sidste værdierNy bane...Nyt mønsterNye vektorerIngen pensler tilgængelige til dette værktøj.Intet filter valgtIngen lineære overgange fundet i "%s"Ingen længere tilgængeligIngen baner fundet i '%s'Ingen baner fundet i mellemlageretIngen mønstre disponible for denne operation.Intet valgtIngen markering til strøg.Ingen miniaturerIkke justeretIntetIngen (hurtigst)NormalNormal (128x128)Normale prikkerNormalt vindueIkke en almindelig filDer er ikke nok synlige lag til en forening. Det skal være mindst to.Der er ikke nok synlige baner til en forening. Det skal være mindst to.Antal _processorer som benyttes:Antal gitterlinjerAntal lag:_Anden...ForskydningForskyd kanalForskyd tegneobjektForskyd lagForskyd lagmaskeForskyd med (x/_2, y/2)Afsæt:På diskPå flerprocessormaskiner hvor Gimp'en er blevet oversat med --enable-mp, angiver dette hvor mange processor Gimp'en skal benytte samtidigt.Kun i hukommelseÅ_bn som lag...UgennemsigtighedUgennemsigtighed:ÅbnÅbn billedeÅbn billede som lagÅbn placeringÅbn tekstfil (UTF-8)Åbn _placering...Åbn _senesteÅbn billedeÅbn penselvælgerenÅbn skrifttypevælgerenÅbn farveovergangsvælgerenÅbn paletvælgerenÅbn mønstervælgerenÅbn det valgte punktÅbning af '%s' mislykkedes: %sÅbning af '%s' mislykkedes: %sTilvalg: -x-nulpunkt:Oprindelig bredde:Anden (%s)...UddataniveauerLæg overPDB-kaldefejl for procedure '%s': +Nulpunkt x:Nulpunkt y:Oprindelig bredde:Anden (%s)...OmridsUddataniveauerLæg overPDB-kaldefejl for procedure '%s': Typefejl for parameter nr. %d (forventede %s, fik %s)PDB-kaldefejl: procedure '%s' ikke fundet_MønstreCølibatisk havfrue på brynjeklædt wc med plexiglas i zoo.MalMaleindstillinger delt mellem værktøjerTegneværktøjsprocedurerMaleværktøj:Tegne_mådeMal med udflydende penselstrøgTegn linjer med skarp kantTegn med mønstre eller billedområderMalerpenselPa_letterPaletPaletredigeringPaletredigeringsmenuPaletmapperPaletgrænseflade_Navn på palet:Palet_filPaletterPaletmenuParasitprocedurerParasitterFortolker '%s' IndsætIndsæt mellemlager _iIndsæt mellemlager som _ny_Indsæt baneIndsæt _iIndsæt som _nyIndsæt det valgte mellemlagerIndsæt det valgte mellemlager som nyt billedeIndsæt det valgte mellemlager i markeringenIndsat lagBaneBaneegenskaberNavn på bane:Bane_værktøjBanen kan ikke sænkes mere.Banen kan ikke hæves mere.Bane er allerede nederst.Bane er allerede øverst.Bane til _markeringBane til markeringBane til markering %s Læg til %s Træk fra -%s Kryds medBane til markeringBanerBane-menuMønsterMønstermapperMønstergrænsefladeMønsterudfyldningMønstreMønstremenuBlyantProcent af penselbreddeProcentdel:Personlig Gimp-mappePerspektivPerspektivtransformeringPerspektiv...Vælgetilstand %sOpsnap farver fra billedetSkærmpunktdimensioner:PunktværdierBilledpunkterPunkter:Kontrollér at menu-XML-filerne er korrekt installeret.Vent venligst mens din personlige Gimp-mappe bliver oprettet...Vent venligst...UdvidelsesmodulUdvidelsesmodulmiljøUdvidelsesmodulmapperUdvidelsesmodul kunne ikke åbne billedeUdvidelsesmodul kunne ikke gemme billedeUdvidelsesmodul gik ned: "%s" +%s Kryds medBane til markeringBanerBane-menuMønsterMønstermapperMønstergrænsefladeMønsterudfyldningMønsterkildeMønstreMønstremenu_BlyantBlyantProcent af penselbreddeProcentdel:Personlig Gimp-mappePerspektivPerspektivtransformeringPerspektiverer...Vælgetilstand %sVælg et lag eller en hjælpelinjeVælg en baneVælg sort punktVælg farver fra billedetVælg gråt punktVælg kunVælg hvidt punktSkærmpunktdimensioner:PunktværdierBilledpunkterPunkter:Kontrollér at menu-XML-filerne er korrekt installeret.Vent venligst mens din personlige Gimp-mappe bliver oprettet...Vent venligst...UdvidelsesmodulUdvidelsesmodulmiljøUdvidelsesmodulmapperUdvidelsesmodul kunne ikke åbne billedeUdvidelsesmodul kunne ikke gemme billedeUdvidelsesmodul gik ned: "%s" (%s) -Det døende modul kan have lavet rod internt i Gimp'en. Det er måske bedst hvis du gemmer dine billeder og genstarter Gimp'en for at være på den sikre side.Udvidelsesmodul returnerede SUCCESS, men returnerede ikke et billedeUdvidelsesmodulerUdvidelsesmodulerUdvidelsesmoduler og programudvidelser er eksterne programmer som køres af Gimp'en, og giver ekstra funktionalitet. Ved starten søges der efter programmerne, og information om deres funktionalitet og ændringstider mellemlagres i denne fil. Denne fil er beregnet til at være læsbar for Gimp'en kun og bør ikke redigeres.PolygonelPortrætPosition: %0.6fPlaceretPosteriseringReducér farveantalletPosteriserings_niveauer:Posterisering virker ikke på indekserede lag.IndstillingerTryk:EksempelMiniature er forældetEksempel:EksemplerUdskriftsstørrelseUdskriftsstørrelse:Problemer ved fortolkning af tekstparasitten for laget '%s': +Det døende modul kan have lavet rod internt i Gimp'en. Det er måske bedst hvis du gemmer dine billeder og genstarter Gimp'en for at være på den sikre side.Udvidelsesmodul returnerede SUCCESS, men returnerede ikke et billedeUdvidelsesmodulerUdvidelsesmodulerUdvidelsesmoduler og programudvidelser er eksterne programmer som køres af Gimp'en, og giver ekstra funktionalitet. Ved starten søges der efter programmerne, og information om deres funktionalitet og ændringstider mellemlagres i denne fil. Denne fil er beregnet til at være læsbar for Gimp'en kun og bør ikke redigeres.PolygonelPortrætPosition: %0.6fPlaceretPosteriseringReducér farveantalletPosteriserings_niveauer:Posterisering virker ikke på indekserede lag.IndstillingerBevar _lysintensitetTrykfølsomhedTryk:EksempelMiniature er forældetEksempel:EksemplerUdskriftsstørrelseUdskriftsstørrelse:Problemer ved fortolkning af tekstparasitten for laget '%s': %s Nogle tekstegenskaber kan være forkerte. Medmindre du ønsker at redigere tekstlaget, behøver du ikke bekymre dig om det.ProceduredatabaseProceduredatabaseFremgangPseudofarveFormål:KvalitetForespørgUndersøger nye udvidelsesmodulerForespørger udvidelsesmodul: '%s' -HurtigmaskeHurtigmaskeegenskaberHurtigmaskemenuHurtigmaskeAfslut Gimp'enRGBRGB (%0.3f, %0.3f, %0.3f)RGB (%d, %d, %d)RGB-farverRGB-tomRGBA (%0.3f, %0.3f, %0.3f, %0.3f)Højre mod venstreVis "%s" _igen_Nulstil værktøjsindstillinger_Højre endepunkts farve...RadialRadius:Hæv kanalHæv kanal til topHæv kanal til _topHæv lagHæv lag til topHæv baneHæv bane til topHæv bane til _topHæv kanalHæv kanal til topHæv lagHæv lag til topHæv baneHæv bane til topHæv dette billedes visningerHæv vindue hvis allerede åbentHastighedVirkningsgrad:Vis sidste igenGen_centrér midtpunkter i markeringGen_centrér segmentets midtpunktOmfordel _håndtag i segmentOmfordel _håndtag i markeringen_Omdøb gemte indstillinger_Gentag "%s"_Forkast...Læser paletfil %s: manglende grøn komponent på linje %d.Læser paletfil '%s': ugyldigt antal kolonner på linje %d. Bruger standardværdi.Læser paletfil %s: manglende blå komponent på linje %d.Læser paletfil %s: manglende rød komponent på linje %d.Læser paletfil %s: RGB-værdi uden for det gyldige interval på linje %d.ParatVil du virkelig rydde billedets fortrydelseshistorik?Omtildeling af genvejen vil fjerne den fra "%s".Genskab _miniatureGenskab miniatureRektangulær markeringRødRød:OmgørReducér billede til et fast antal farverReducér billedet til to farver vha. en tærskelOpdatér penslerOpdatér overgangeOpdatér paletterOpdatér mønstreRegistreretGenindlæs _aktuelt temaGenindlæs _alle miniaturerGenindlæs _alle miniaturerHusk benyttet værktøj, mønster, farve og pensel på tværs af Gimp-sessioner.Fjernt billedeFjernelse af kanalFjern ekstra _punkterFjern flydende markeringFjernelse af hjælpelinjeFjernelse af lagFjern parasit fra billedeFjern parasit fra elementFjern baneFjern _elementFjern ekstra punkterFjern flydende markeringFjern parasitFjern det valgte punktFjern det valgte filter fra listen over aktive filtreFjernelse af genvej mislykkedes.Omdøb kanalOmdøb lagOmdøb baneOmdøb gemte værktøjsindstillingerOmdøb elementTegn bestrygningOmordn kanalOmordn lagOmordn baneGentag sidsteGentag:Erstat den nuværende markeringKopiérKopiér overgangssegmentKopiér overgangsmarkeringenKopiér segmentKopiér det markeredeFlyt kanalFlyt lagFlyt vektorerGenskan skrifttypelisteNulstil værktøjsindstillingerNulstil _alle værktøjsindstillinger...Nulstil alle filtreNulstil alle filtre...Nulstil alle værktøjsindstillingerNulstil det valgte filter til standardværdierneNulstil til standardværdierNulstil værktøjsrækkefølge og -synlighedÆndr størrelseÆndr størrelse på kanalÆndring af billedstørrelseÆndring af lagstørrelseÆndr størrelse på baneÆndr billedstørrelseÆndr størrelse af elementTilpas vinduesstørrelse ved _zoomTilpas vinduesstørrelse ved ændring af _billedstørrelseSkalerer...OpløsningsændringOpløsning:ResurseforbrugResurseopsætningGendan indstillinger fra...Gendan gemte tastaturgenveje ved hver start af Gimp'en.Begræns redigering til polygonerOmvendtForkastBring "%s" tilbage til "%s"?Forkast billedeGenskabning mislykkedes. Intet filnavn er associeret med dette billede.Genskabning af '%s mislykkedes: +Hent hurtigtHurtigmaskeHurtigmaskeegenskaberHurtigmaskemenuGem hurtigtHurtigmaskeAfslut Gimp'enRGBRGB (%0.3f, %0.3f, %0.3f)RGB (%d, %d, %d)RGB-farverRGB-tomRGBA (%0.3f, %0.3f, %0.3f, %0.3f)Højre mod venstreVis "%s" _igen_Nulstil værktøjsindstillingerN_ulstil kanalN_ulstil farveN_ulstil interval_Højre endepunkts farve...RadialRadius:Hæv kanalHæv kanal til topHæv kanal til _topHæv lagHæv lag til topHæv baneHæv bane til topHæv bane til _topHæv kanalHæv kanal til topHæv lagHæv lag til topHæv baneHæv bane til topHæv dette billedes visningerHæv vindue hvis allerede åbentHastighedVirkningsgrad:Vis sidste igenGen_centrér midtpunkter i markeringGen_centrér segmentets midtpunktOmfordel _håndtag i segmentOmfordel _håndtag i markeringen_Omdøb gemte indstillinger_Gentag "%s"_Forkast...Læser paletfil %s: manglende grøn komponent på linje %d.Læser paletfil '%s': ugyldigt antal kolonner på linje %d. Bruger standardværdi.Læser paletfil %s: manglende blå komponent på linje %d.Læser paletfil %s: manglende rød komponent på linje %d.Læser paletfil %s: RGB-værdi uden for det gyldige interval på linje %d.ParatVil du virkelig rydde billedets fortrydelseshistorik?Omtildeling af genvejen vil fjerne den fra "%s".Genskab _miniatureGenskab miniatureRektangulær markeringRødRød:OmgørReducér billede til et fast antal farverReducér billedet til to farver vha. en tærskelOpdatér penslerOpdatér overgangeOpdatér paletterOpdatér mønstreRegistreretGenindlæs _aktuelt temaGenindlæs _alle miniaturerGenindlæs _alle miniaturerHusk benyttet værktøj, mønster, farve og pensel på tværs af Gimp-sessioner.Fjernt billedeFjernelse af kanalFjern ekstra _punkterFjern flydende markeringFjern hjælpelinjeFjern lagFjern parasit fra billedeFjern parasit fra elementFjern baneFjern _elementFjern ekstra punkterFjern flydende markeringFjern parasitFjern det valgte punktFjern det valgte filter fra listen over aktive filtreFjernelse af genvej mislykkedes.Omdøb kanalOmdøb lagOmdøb baneOmdøb gemte værktøjsindstillingerOmdøb tekstlagOmdøb elementTegn bestrygningOmordn kanalOmordn lagOmordn baneGentag sidsteGentag:Erstat den nuværende markeringKopiérKopiér overgangssegmentKopiér overgangsmarkeringenKopiér segmentKopiér det markeredeFlyt kanalFlyt lagFlyt vektorerGenskan skrifttypelisteNulstil værktøjsindstillingerNulstil _alle værktøjsindstillinger...Nulstil alle filtreNulstil alle filtre...Nulstil alle værktøjsindstillingerNulstil det valgte filter til standardværdierneNulstil til standardværdierNulstil værktøjsrækkefølge og -synlighedÆndr størrelseÆndr størrelse på kanalÆndring af billedstørrelseÆndring af lagstørrelseÆndr størrelse på baneÆndr tekstlagstørrelseÆndr billedstørrelseÆndr størrelse af elementTilpas vinduesstørrelse ved _zoomTilpas vinduesstørrelse ved ændring af _billedstørrelseSkalerer...OpløsningsændringOpløsning:ResurseforbrugResurseopsætningGendan indstillinger fra...Gendan gemte tastaturgenveje ved hver start af Gimp'en.Begræns redigering til polygonerOmvendtForkastBring "%s" tilbage til "%s"?Forkast billedeGenskabning mislykkedes. Intet filnavn er associeret med dette billede.Genskabning af '%s mislykkedes: -%sHøjre endepunkts farveRotérRotér 90° m_od uretRotér 90° m_ed uretRotér kanalRotér lagRotér baneRotér tekstlagRotér _180°Rotér billedeRotér laget eller markeringenRoterer...RotationRund_TrapezérVis _gitterFor_mindsk..._Pigge_Ombyt farverG_em højre farve iMæt.:MætningGemGem "%s" som POV-RayGem kurverGem fejllog i fejlGem billedeGem enhedsindstillinger _nuGem tastaturgenveje _nuGem niveauerIndstillinger for gemningsværktøjGem vinduesplaceringer _nuGem _alle fejl i fil...Gem det _markerede i fil...Gem _som...Gem en _kopi...Gem en kopi af billedetGem alle fejlGem som _POV-Ray...Gem som sk_abelon...Gem ændrede tastaturgenveje når Gimp'en afslutter.Gem kurveindstillinger i filGem enhedsstatusGem overgang som POV-RayGem niveauindstillinger i filGem indstillinger som...Gem markeringGem markering som kanalGem ændringerne i billedet "%s" før lukning?Gem placeringerne og størrelsen af hovedvinduerne når Gimp'en afslutter.Gem som _kanalGemte indstillingerGemmer '%s' +%sHøjre endepunkts farveHøjrejusteretRotérRotér 90° m_od uretRotér 90° m_ed uretRotér kanalRotér lagRotér baneRotér tekstlagRotér _180°Rotér billedeRotér laget eller markeringenRoterer...RotationRund_TrapezérVis _gitterFor_mindsk..._Pigge_Ombyt farverG_em højre farve iPrøvegennemsnitBenyt alle lagMæt.:MætningGemGem "%s" som POV-RayGem kurverGem fejllog i fejlGem billedeGem enhedsindstillinger _nuGem tastaturgenveje _nuGem niveauerIndstillinger for gemningsværktøjGem vinduesplaceringer _nuGem _alle fejl i fil...Gem det _markerede i fil...Gem _som...Gem en _kopi...Gem en kopi af billedetGem alle fejlGem som _POV-Ray...Gem som sk_abelon...Gem ændrede tastaturgenveje når Gimp'en afslutter.Gem kurveindstillinger i filGem enhedsstatusGem overgang som POV-RayGem niveauindstillinger i filGem indstillinger som...Gem markeringGem markering som kanalGem ændringerne i billedet "%s" før lukning?Gem placeringerne og størrelsen af hovedvinduerne når Gimp'en afslutter.Gem som _kanalGemte indstillingerGemmer '%s' Gemning af '%s' mislykkedes: -%sGemning af billederSavtakket bølgeSkalérbare SVG-billeder (*.svg)SkalérSkalér kanalSkalér billedeSkalering af lagSkalér baneSkalér billedeSkalér elementSkaleringsforhold x:Skaleringsforhold y:Formatforhold:Skalér laget eller markeringenSkaleringSkaleringSkalering af billedet til den valgte størrelse vil formindske nogle lag helt bort.Skalerer...SaksSkærmScript-Fu-mapperProgrammerRul nedRul ned (Alt)Rul ned (Ctrl + Alt)Rul ned (Ctrl)Rul ned (Skift + Alt)Rul ned (Skift + Ctrl + Alt)Rul ned (Skift + Ctrl)Rul ned (Skift)Rul venstreRul venstre (Alt)Rul venstre (Ctrl + Alt)Rul venstre (Ctrl)Rul venstre (Skift + Alt)Rul venstre (Skift + Ctrl + Alt)Rul venstre (Skift + Ctrl)Rul venstre (Skift)Rul højreRul højre (Alt)Rul højre (Ctrl + Alt)Rul højre (Ctrl)Rul højre (Skift + Alt)Rul højre (Skift + Ctrl + Alt)Rul højre (Skift + Ctrl)Rul højre (Skift)Rul opRul op (Alt)Rul op (Ctrl + Alt)Rul op (Ctrl)Rul op (Skift + Alt)Rul op (Skift + Ctrl + Alt)Rul op (Skift + Ctrl)Rul op (Skift)MarkeringMarkér altVælg mapper til penslerMarkér efter farve...Markér farveVælg kontrolhændelseshandlingVælg mapper til miljøVælg fil_type (%s)Vælg skrifttypemapperVælg mapper til farveovergangeVælg mapper til programudvidelserMarkér intetVælg mapper til paletterVælg mapper til mønstreVælg mapper til udvidelsesmodulerVælg primær farve at ændreVælg interval der skal ændresVælg Script-Fu-mapperVælg kildeVælg mappe til reservehukommelseVælg mappe til midlertigeVælg temaVælg mapper til temaerVælg zoomforholdVælg n_ederste lagVælg _anden farve...Vælg _næste lagVælg _forrige lagVælg _øverste lagMarkér altMarkér efter farveMarkér sammenhængende områderAngiv brugerdefineret lærredudfyldningsfarveMarkér elliptiske områderMarkér håndtegnede områderMarkér intetVælg paletfilMarkér rektangulære områderMarkér områder efter farveMarkér former i billedetVælg mappe til reservehukommelseVælg antal gange du ønsker +%sGemning af billederSavtakket bølgeSkalérbare SVG-billeder (*.svg)SkalérSkalér kanalSkalér billedeSkalering af lagSkalér baneSkalér tekstlagSkalér billedeSkalér elementSkaleringsforhold x:Skaleringsforhold y:Formatforhold:Skalér laget eller markeringenSkaleringSkaleringSkalering af billedet til den valgte størrelse vil bruge mere hukommelse end der er konfigureret som "Maksimal billedstørrelse" under indstillingerne (aktuelt %s).Skalering af billedet til den valgte størrelse vil formindske nogle lag helt bort.Skalerer...SaksSkærmScript-Fu-mapperProgrammerRul nedRul ned (Alt)Rul ned (Ctrl + Alt)Rul ned (Ctrl)Rul ned (Skift + Alt)Rul ned (Skift + Ctrl + Alt)Rul ned (Skift + Ctrl)Rul ned (Skift)Rul venstreRul venstre (Alt)Rul venstre (Ctrl + Alt)Rul venstre (Ctrl)Rul venstre (Skift + Alt)Rul venstre (Skift + Ctrl + Alt)Rul venstre (Skift + Ctrl)Rul venstre (Skift)Rul højreRul højre (Alt)Rul højre (Ctrl + Alt)Rul højre (Ctrl)Rul højre (Skift + Alt)Rul højre (Skift + Ctrl + Alt)Rul højre (Skift + Ctrl)Rul højre (Skift)Rul opRul op (Alt)Rul op (Ctrl + Alt)Rul op (Ctrl)Rul op (Skift + Alt)Rul op (Skift + Ctrl + Alt)Rul op (Skift + Ctrl)Rul op (Skift)MarkeringMarkér altVælg mapper til penslerMarkér efter farve...Markér farveVælg kontrolhændelseshandlingVælg mapper til miljøVælg fil_type (%s)Vælg skrifttypemapperVælg mapper til farveovergangeVælg mapper til programudvidelserMarkér intetVælg mapper til paletterVælg mapper til mønstreVælg mapper til udvidelsesmodulerVælg primær farve at ændreVælg interval der skal ændresVælg Script-Fu-mapperVælg kildeVælg mappe til reservehukommelseVælg mappe til midlertigeVælg temaVælg mapper til temaerVælg zoomforholdVælg n_ederste lagVælg _anden farve...Vælg _næste lagVælg _forrige lagVælg _øverste lagMarkér altMarkér efter farveMarkér sammenhængende områderAngiv brugerdefineret lærredudfyldningsfarveMarkér elliptiske områderMarkér håndtegnede områderMarkér intetVælg paletfilMarkér rektangulære områderMarkér områder efter farveMarkér former i billedetVælg mappe til reservehukommelseVælg antal gange du ønsker at kopiere det markerede segment.Vælg antal gange du ønsker at kopiere det markerede.Vælg antallet af ens dele du vil opdele segment i det markerede i.Vælg antallet af ens dele du -vil opdele det markerede segment i.Markér gennemsigtige områderVælg internetsurfningsprogramMarkering til _baneMarkeringMarkeringsredigeringMarkeringsredigeringsmenuMarkeringsmaskeMarkeringsværktøjsprocedurerMarkeringsmaskeMarkering til bane (_avanceret)Markering til baneMarkering: Markering: LÆG TILMarkering: FÆLLESSNITMarkering: ERSTATMarkering: TRÆK FRAFølsomhed:Angiv lærredudfyldningsfarveÆndring af kanalfarveÆndring af kanalgennemsigtighedÆndr farveafbildningTilpas lærredudfyldningsfarveAngiv lærredstørrelsenSkift billedudskriftsopløsningSæt element eksklusivt kædetSæt element eksklusivt synligtVælg lagkantstørrelseSæt navn fra _tekstVælg laggennemsigtighedSæt kædet elementÆndr lagtilstandÆndr laggennemsigtighedÆndr bevar gennemsigtighedAngiv en øvre grænse på den hukommelse som bruges pr. billede til at gemme handlinger på fortrydelsesstakken. Ligegyldig hvilken værdi indstillinger har kan mindst lige så mange fortrydelsesniveauer som konfigureret fortrydes.Angiv den fremviser der benyttes af hjælpesystemet.Angiv udfyldningsfarven for lærredet hvis udfyldningstilstanden er sat til brugerdefineret farve.Angiver det eksterne internetsurfningsprogram der skal bruges. Dette kan være en absolut sti eller navnet på en kørbar fil der skal søges efter i brugerens PATH. Hvis kommandoen indeholder '%s', vil det blive erstattet med addressen, ellers vil addressen blive tilføjet i slutningen af kommandoen med et mellemrum mellem.Angiv interpoleringsniveauet for skalering og andre transformationer.Angiv hvordan gennemsigtighed vises i billeder.Angiv det minimale antal handlinger som kan fortrydes. Flere fortrydelsesniveauer beholdes indtil begrænsningen på fortrydelsesstørrelsen nås.Angiver tilstanden for den markør Gimp'en bruger.Angiver punktformatet for markører som Gimp'en bruger.Angiv standardstørrelsen af miniaturer for lag og kanaler i nysoprettede vindue.Angiver størrelsen af de tern der bruges til at vise gennemsigtighed.Angiver størrelsen af navigationsminiaturen der er tilgængelig i nederste højre hjørne i billedvinduet.Angiv størrelsen af forhåndsvisninger i fortrydelseshistorikken.Angiv swapfilens placering. Gimp'en bruger et flisebaseret hukommelsesallokeringssystem. Swapfilen bliver brug til hurtigt at og let at kopiere fliser ud til disken og tilbage igen. Bemærk at swapfilen hurtigt kan blive meget stor hvis Gimp'en bliver brug med store billeder. Desuden kan det være forfærdeligt langsomt hvis swapfilen bliver oprettet i en mappe som er monteret over NFS. Derfor kan det være en god idé at anbringe din swapfil i "/tmp".Angiv mappen til midlertidig lagring. Filer vil dukke op her under kørslen af Gimp'en. De fleste filer vil forsvinde når Gimp'en afslutter, men nogle filer bliver så det er bedst hvis dette er en mappe som ikke deles med andre brugere.Angiv den tekst der optræder i billedvinduers statuslinjer.Angiv den tekst der optræder i billedvinduers titellinjer.Angiv om Gimp'en skal oprette miniaturer for lag og kanaler. Miniaturer i lag- og kanalvinduer er behagelige at have, men kan sløve alting ned når der arbejdes med store billeder.SkyggetypeSkyggerFormForm:Formtilpasset (vinklet)Formtilpasset (fordybet)Formtilpasset (sfærisk)SkærpGør kanal skarpereGør markering skarpereTrapezérStørrelsesorden x:Størrelsesorden y:Trapezér laget eller markeringenTrapezeringTrapezerer...Korte stregerGenvejGenvejen "%s" er allerede taget af "%s" fra gruppen "%s".Vis lagmaskeVis _linealerVis _statuslinjeVis _rulleskakterVis _hjælpelinjerVis _laggrænseVis _menulinjeVis m_arkeringVis _penselomridsVis _forgrunds- og baggrundsfarveVis _hjælpelinjerVis _laggrænseVis m_enulinjeVis _linealerVis aktive _pensler, mønstre og farveovergangeVis aktivt _billedeVis _gitterVis _hjælpeknapperVis billedstørrelseVis interaktiv grænseVis hukommelsesforbrugVis menu_genvejeVis _markeringVis _statuslinjeVis _rulleskakterVis tip næste gang Gimp'en starterVis tip ved _startVis værktøjs_tipVis zoomprocentVis zoomforholdFormindsk kanalFormindsk markering_Pak sammenFormindsk fra billedkantFormindsk markering medPak sammenStørrelseStørrelse i hukommelse:Størrelse af _miniaturefiler:Størrelse:Springer over '%s': forkert Gimp-protokolversion.LilleMindre eksemplerUdtværBlødgør kanterUdtværUdtvær billede_Ret ind efter linjerRet _ind efter gitterBlødgør lysEnsfarvetKildeMellemrumMellemrum:Få prikkerSpeciel filAngiver hvordan området omkring billedet skal tegnes.Hastigheden for de marcherende myrer for markeringsomridset. Denne værdi er i millisekunder (kortere tid giver hurtigere march).Hastighed:Sfærisk (_aftagende)Sfærisk (_voksende)Spiral (mod uret)Spiral (med uret)OpdelOpdel overgangssegment jævntOpdel overgangssegmenter jævntOpdel segment jævntOpdel segment _jævnt...Opdel segment ved _midtpunktetOpdel segmenter jævntOpdel segmenter _jævnt...Opdel segmenter ved _midtpunkterKvadratiskSt_atus og tekstS_takStandardStarter programudvidelserStarter programudvidelse: '%s' -Tilstand:Statisk farveStatisk gråStatus og beskrivelseStatus og tekstStd.afvig:StiplingLager-idBestr_yg baneBestr_yg bane...Bestryg kanalBestryg baneBestryg markeringBestryg linjeBestryg baneBestryg bane med sidste værdierBestryg bane...Bestryg markering med sidste værdierBestryg markering...Bestryg med et maleværktøjDen stil kanten omkring statuslinjeteksten benytterTræk fraTræk fra den nuværende markeringSupersamplingReservehukommelsesmappe:Væ_rktøjer_TekstTe_kstværktøjMidlertidig:SkabelonerSkabelonermenuMidlertidig procedureTekstTekstfarveTekstredigeringTekstlagTekst ændretTekstprocedurerGimp'enDen aktive pensel. +vil opdele det markerede segment i.Markér gennemsigtige områderVælg internetsurfningsprogramMarkering til _baneMarkeringMarkeringsredigeringMarkeringsredigeringsmenuMarkeringsmaskeMarkeringsværktøjsprocedurerMarkeringsmaskeMarkering til bane (_avanceret)Markering til baneMarkering: Markering: LÆG TILMarkering: FÆLLESSNITMarkering: ERSTATMarkering: TRÆK FRAFølsomhed:Angiv lærredudfyldningsfarveÆndring af kanalfarveÆndring af kanalgennemsigtighedÆndr farveafbildningTilpas lærredudfyldningsfarveAngiv lærredstørrelsenSkift billedudskriftsopløsningSæt element eksklusivt kædetSæt element eksklusivt synligtVælg lagkantstørrelseSæt navn fra _tekstVælg laggennemsigtighedSkift baggrundsfarveSkift forgrundsfarveSæt kædet elementÆndr lagtilstandÆndr laggennemsigtighedÆndr bevar gennemsigtighedAngiv en øvre grænse på den hukommelse som bruges pr. billede til at gemme handlinger på fortrydelsesstakken. Ligegyldig hvilken værdi indstillinger har kan mindst lige så mange fortrydelsesniveauer som konfigureret fortrydes.Angiv den fremviser der benyttes af hjælpesystemet.Angiv udfyldningsfarven for lærredet hvis udfyldningstilstanden er sat til brugerdefineret farve.Angiver det eksterne internetsurfningsprogram der skal bruges. Dette kan være en absolut sti eller navnet på en kørbar fil der skal søges efter i brugerens PATH. Hvis kommandoen indeholder '%s', vil det blive erstattet med addressen, ellers vil addressen blive tilføjet i slutningen af kommandoen med et mellemrum mellem.Angiv interpoleringsniveauet for skalering og andre transformationer.Angiv hvordan gennemsigtighed vises i billeder.Angiv det minimale antal handlinger som kan fortrydes. Flere fortrydelsesniveauer beholdes indtil begrænsningen på fortrydelsesstørrelsen nås.Angiver tilstanden for den markør Gimp'en bruger.Angiver skærmens vandrette opløsning i punkter pr. tomme. Hvis sat til 0, bliver X-serveren spurgt efter oplysninger om både vandret og lodret opløsning.Angiver skærmens lodrette opløsning i punkter pr. tomme. Hvis sat til 0, bliver X-serveren spurgt efter oplysninger om både vandret og lodret opløsning.Angiver punktformatet for markører som Gimp'en bruger.Angiv standardstørrelsen af miniaturer for lag og kanaler i nysoprettede vindue.Angiver størrelsen af de tern der bruges til at vise gennemsigtighed.Angiver størrelsen af navigationsminiaturen der er tilgængelig i nederste højre hjørne i billedvinduet.Angiv størrelsen af forhåndsvisninger i fortrydelseshistorikken.Angiv størrelsen af den miniature der vises i Åbn-vinduet. Bemærk at Gimp'en ikke kan gemme miniaturer hvis lagminiaturer er deaktiveret.Angiv swapfilens placering. Gimp'en bruger et flisebaseret hukommelsesallokeringssystem. Swapfilen bliver brug til hurtigt at og let at kopiere fliser ud til disken og tilbage igen. Bemærk at swapfilen hurtigt kan blive meget stor hvis Gimp'en bliver brug med store billeder. Desuden kan det være forfærdeligt langsomt hvis swapfilen bliver oprettet i en mappe som er monteret over NFS. Derfor kan det være en god idé at anbringe din swapfil i "/tmp".Angiv mappen til midlertidig lagring. Filer vil dukke op her under kørslen af Gimp'en. De fleste filer vil forsvinde når Gimp'en afslutter, men nogle filer bliver så det er bedst hvis dette er en mappe som ikke deles med andre brugere.Angiv den tekst der optræder i billedvinduers statuslinjer.Angiv den tekst der optræder i billedvinduers titellinjer.Angiv om Gimp'en skal oprette miniaturer for lag og kanaler. Miniaturer i lag- og kanalvinduer er behagelige at have, men kan sløve alting ned når der arbejdes med store billeder.SkyggetypeSkyggerFormForm:Formtilpasset (vinklet)Formtilpasset (fordybet)Formtilpasset (sfærisk)SkærpGør kanal skarpereGør markering skarpereTrapezérStørrelsesorden x:Størrelsesorden y:Trapezér laget eller markeringenTrapezeringTrapezerer...Korte stregerGenvejGenvejen "%s" er allerede taget af "%s" fra gruppen "%s".Vis lagmaskeVis _linealerVis _statuslinjeVis _rulleskakterVis _hjælpelinjerVis _laggrænseVis _menulinjeVis m_arkeringVis _penselomridsVis _forgrunds- og baggrundsfarveVis _hjælpelinjerVis _laggrænseVis m_enulinjeVis _linealerVis aktive _pensler, mønstre og farveovergangeVis aktivt _billedeVis _gitterVis _hjælpeknapperVis billedstørrelseVis interaktiv grænseVis hukommelsesforbrugVis menu_genvejeVis maleværktøjs_markørVis _markeringVis _statuslinjeVis _rulleskakterVis tip næste gang Gimp'en starterVis tip ved _startVis værktøjs_tipVis zoomprocentVis zoomforholdFormindsk kanalFormindsk markering_Pak sammenFormindsk fra billedkantFormindsk markering medPak sammenStørrelseStørrelse i hukommelse:Størrelse af _miniaturefiler:Størrelse:Springer over "%s": forkert Gimp-protokolversion.LilleMindre eksemplerUdtværBlødgør kanterUdtværUdtvær billede_Ret ind efter linjerRet _ind efter gitterBlødgør lysEnsfarvetKildeMellemrumMellemrum:Få prikkerSpeciel filAngiver hvordan området omkring billedet skal tegnes.Hastigheden for de marcherende myrer for markeringsomridset. Denne værdi er i millisekunder (kortere tid giver hurtigere march).Hastighed:Sfærisk (_aftagende)Sfærisk (_voksende)Spigre:Spiral (mod uret)Spiral (med uret)OpdelOpdel overgangssegment jævntOpdel overgangssegmenter jævntOpdel segment jævntOpdel segment _jævnt...Opdel segment ved _midtpunktetOpdel segmenter jævntOpdel segmenter _jævnt...Opdel segmenter ved _midtpunkterKvadratiskSt_atus og tekstS_takStandardStarter programudvidelserStarter programudvidelse: '%s' +Tilstand:Statisk farveStatisk gråStatus og beskrivelseStatus og tekstStd.afvig:StiplingLager-idBestr_yg baneBestr_yg bane...Bestryg kanalBestryg baneBestryg markeringBestryg linjeBestryg baneBestryg bane med sidste værdierBestryg bane...Bestryg markering med sidste værdierBestryg markering...Bestryg med et maleværktøjDen stil kanten omkring statuslinjeteksten benytterTræk fraTræk fra den nuværende markeringSupersamplingReservehukommelsesmappe:Væ_rktøjer_TekstTe_kstværktøjMidlertidig:SkabelonerSkabelonermenuMidlertidig procedureTerminerer udvidelsesmodul: "%s" +TekstTekstfarveTekstredigeringTekstlagTekst ændretTekstprocedurerGimp'enGimp'ens hjælpefremvisermodul mangler tilsyneladende fra din installation.Den aktive pensel. Klik for at åbne penselvinduet.Den aktive farveovergang. -Klik for at åbne farveovergangsvinduet.Det aktive mønster. +Klik for at åbne farveovergangsvinduet.Det aktive billede. +Klik for at åbne billedvinduet.Det aktive mønster. Klik for at åbne mønstervinduet.Forgrundsfarven for gitteret; benyttes kun med en dobbelt-stipplet linjestil.Batchfortolkeren '%s' er ikke tilgængelig, batchtilstand deaktiveret.Kodningen af det konfigurerede filnavn kan ikke konverteres til UTF-8: %s Tjek værdien af miljøvariablen G_FILENAME_ENCODING.Filnavnet '%s' kunne ikke konverteres til en gyldig URI: %sForgrundsfarven for gitteret.Gimprc bruges til at gemme personlige indstillinger som indvirker på Gimp'ens standardopførsel. Stier til søgning af pensler, paletter, farveovergange, mønstre, udvidelsesmoduler og programudvidelser kan også konfigureres her.Den vandrette billedopløsning.Det lag du valgte, er et tekstlag, men det er blevet ændret vha. andre værktøjer. Redigering af laget med tekstværktøjet vil forkaste disse ændringer. -Du kan redigere laget eller oprette et nyt tekstlag fra dets tekstegenskaber.Sessionrc bruges til at gemme information om de åbne vinduer ved sidste afslutning af Gimp'en. Du kan indstille Gimp'en til at genåbne disse vinduer der hvor de var før.Flisemellemlageret bruges til at sikre at Gimp'en ikke smider fliser ud mellem hukommelsen og disken. Hvis denne værdi sættes højere vil Gimp'en bruge mindre swapplads, men samtidig mere hukommelse. Modsat vil en mindre mellemlagerstørrelse forårsage at Gimp'en bruger mere swapplads og mindre hukommelse.Enhed benyttet til koordinatvisning hvis ikke i punkt for punkt-tilstand.Unitrc bruges til at gemme din brugerenhedsdatabase. Du kan definere ekstra enheder og bruge dem akkurat som du bruger de indbyggede enheder millimeter, tommer punkter og picaer. Denne fil overskrives hver gang du afslutter Gimp'en.Den lodrette billedopløsning.Vinduestypehintet der sættes på dokvinduer. Dette kan påvirke den måde din vindueshåndtering dekorerer og håndterer dokvinduer.Det vinduestypehint som sættes på værktøjskassen. Dette kan have betydning for hvordan vindueshåndteringen dekorerer og håndterer værktøjskassevinduet.TemaTemamapperTemaerDer er %d billeder med ugemte ændringer:Der er ikke nok synlige lag til en nedadgående forening.Hukommelsesforbrug og hastighed skal altid afvejes. I de fleste tilfælde går Gimp'en efter hastighed frem for hukommelse. Men prøv at slå denne indstilling til hvis hukommelse er et stort problem.Der er ikke noget aktivt lag eller nogen aktiv kanal at kopiere fra.Der er ikke noget aktivt lag eller nogen aktiv kanal at klippe fra.Der er ikke noget aktivt lag eller en aktiv kanal at bestrygeDer er ikke noget aktivt lag eller nogen aktiv kanal at bestryge.Der er et billede med ugemte ændringer:Der skal være en fil med navnet %s. Kontrollér din installation.Der opstod en fejl ved fortolkningen af din '%s'-fil. Standardværdier vil blive brugt. En sikkerhedskopi af din konfiguration er blevet oprettet ved '%s'.Denne fil indeholder en samling af standardmediestørrelse der bruges som billedskabeloner.Denne mappe søges i efter bruger-installerede skabeloner.Denne mappe søges i efter bruger-installerede temaer.Denne mappe bruges til at gemme brugerdefinerede mønstre. Gimp'en tjekker denne mappe sammen med systemmapperne efter mønstre når der søges efter disse.Denne mappe bruges til at gemme parameterfiler til kurveværktøjet.Denne mappe bruges til at gemme parameterfiler til niveauværktøjet.Denne mappe bruges til at gemme værktøjsindstillinger.Denne mappe bruges til at gemme brugeroprettede og -installerede fortolkede programmer. Gimp'en tjekker denne mappe sammen med systemmapperne efter fortolkede programmer når der søges efter disse.Denne mappe bruges til at gemme brugeroprettede, midlertidige eller andre DLL-moduler som ikke installeres for alle brugere. Gimp'en tjekker denne mappe sammen med systemmappen efter programudvidelser under starten.Denne mappe bruges til at gemme brugeroprettede, midlertidige eller andre tilføjelser til udvidelsesmiljøet som ikke installeres for alle brugere. Gimp'en tjekker denne mappe sammen med systemmappen når der søges efter disse.Denne mappe bruges til at gemme brugeroprettede, midlertidige eller andre udvidelsesmoduler som ikke installeres for alle brugere. Gimp'en tjekker denne mappe sammen med systemmappen efter udvidelsesmoduler når der søges efter disse.Denne mappe bruges til at gemme brugerdefinerede pensler. Gimp'en tjekker denne mappe sammen med systemmapperne efter Gimp-pensler når der søges efter disse.Denne mappe bruges til at gemme brugerdefinerede farveovergange. Gimp'en tjekker denne mappe sammen med systemmapperne efter farveovergange når der søges efter disse.Denne mappe bruges til at gemme brugerdefinerede paletter. Gimp'en tjekker denne mappe sammen med systemmapperne efter paletter når der søges efter disse.Denne mappe bruges til at gemme brugerdefinerede mønstre. Gimp'en tjekker denne mappe sammen med systemmapperne efter mønstre når der søges efter disse.Denne mappe bruges af Gimp'en til midlertidigt at opbevare fortrydelsesmellemlagere for at reducere hukommelsesforbruget. Hvis Gimp'en ikke dræbes behørigt, kan nogle filer på formen 'gimp<#>.<#>' måske overleve. Disse filer er ubrugelige på tværs af forskellige Gimp-sessioner og kan udryddes nådesløst.Denne mappe vil komme til at indeholde et antal vigtige filer. Klik på en af filerne eller mapperne i træet for at få flere oplysninger om det valgte element.Dette er afstanden i punkter som hjælpelinjer og gitteret låser til.Dette program distribueres med det håb at det vil vise sig nyttigt, men UDEN NOGEN FORM FOR GARANTI; endda uden garanti for KØB- ELLER SALGBARHED eller EGNETHED TIL NOGET BESTEMT FORMÅL. Se GNU General Public License for flere detaljer.Dette program er frit programmel; du kan redistribuere det og/eller ændre det under betingelsene i GNU General Public License som udgivet af Free Software Foundation; enten version 2 af licensen, eller (hvis du ønsker det) enhver senere version.Dette indtastningsfelt er begrænset til %d tegn.Dette værktøj har ingen indstillinger.TærskelTærskel opererer ikke på indekserede lag.Tærskel:Miniature %d af %dStørrelse af flisemellem_lager:Størrelse af flisemellemlager:Vinkling:BitteTitel og statusTil _bane_LegetøjSlå hurtigmaske til/fraSlå hurtigmaske _til/fraFor mange fejlmeddelelser!VærktøjsindstillingerVærktøjsindstillingermenuVærktøjstilstand %sVærktøjs_indstillingerVærktøjsikonVærktøjsikon med sigtekornVærktøjs_kasseVærktøjskasseVærktøjskassemenuVærktøjerVærktøjsmenuVærktøjer som udflydende markering og spandudfyldning finder områder baseret på et frøudfyldningsalgoritme. Frøudfyldningen begynder ved startpunktet og går videre i alle retninger indtil forskellen i punktintensitet fra originalen er større end en angivet tærskel. Denne værdi repræsenterer den forvalgte tærskel.G_ennemsigtighedOverfør alfa til maskeTransformérTransformér kanalTransformeringsretningTransformér lagTransformér baneTransformeringsværktøjsprocedurerTransformeringTransformerer...Oversættelse afGennemsigtighedGennemsigtigheds_type:Trekantet bølgeRigtig farveTypeType %sKan ikke tilføje en lagmaske da laget allerede har en.Kan ikke klippe eller kopiere fordi det markerede område er tomt.Kunne ikke åbne en testmellemlagerfil. Kontrollér placeringen og rettighederne for mellemlagerkataloget defineret i dine indstillinger (aktuelt "%s").IkkedefineretFortrydFortrydelseshistorikF_ortrydelseshistorikEnhederUkendtUkendt filtypeUkendt paletfiltype: -%sFrigivUnavngivenUnavngivenBenyt som standard "_prik for prik"Benyt _dynamiske tastaturgenvejeBrug alle synlige lag ved formindskelse af markeringenBenyt sort/hvid-palet (1-bit)Benyt brugerdefineret paletBenyt internetoptimeret paletBrugerinstallationslogBrugergrænsefladeVærktøjsvindueVærdiVærdi:Ændring af vektorerVersion %s bragt til dig afVersion:LodretLodret afsæt til den første gitterlinje; dette kan være et negativt tal.Lodret mellemrum mellem gitterlinjer.Meget storMeget lilleVisVis som _gitterVis som _listeVis som gitterVis som listeKlasse:Farvedybde:Advarsel: kunne ikke indlæse data: +Du kan redigere laget eller oprette et nyt tekstlag fra dets tekstegenskaber.Navnet på det katalog som indeholder brugerkonfigurationen til Gimp'ene kan ikke konverteres til UTF-8: %s + +Sandsynligvis gemmer dit filsystem filer i en anden kodning end UTF-8 uden at du har fortalt det til GLib. Sæt venligst miljøvariablen G_FILENAME_ENCODING.Sessionrc bruges til at gemme information om de åbne vinduer ved sidste afslutning af Gimp'en. Du kan indstille Gimp'en til at genåbne disse vinduer der hvor de var før.Miniaturen i Åbn-vinduet vil automatisk blive opdateret hvis billedet der bliver vist er mindre end den størrelse der er angivet her.Flisemellemlageret bruges til at sikre at Gimp'en ikke smider fliser ud mellem hukommelsen og disken. Hvis denne værdi sættes højere vil Gimp'en bruge mindre swapplads, men samtidig mere hukommelse. Modsat vil en mindre mellemlagerstørrelse forårsage at Gimp'en bruger mere swapplads og mindre hukommelse.Enhed benyttet til koordinatvisning hvis ikke i punkt for punkt-tilstand.Unitrc bruges til at gemme din brugerenhedsdatabase. Du kan definere ekstra enheder og bruge dem akkurat som du bruger de indbyggede enheder millimeter, tommer punkter og picaer. Denne fil overskrives hver gang du afslutter Gimp'en.Den lodrette billedopløsning.Vinduestypehintet der sættes på dokvinduer. Dette kan påvirke den måde din vindueshåndtering dekorerer og håndterer dokvinduer.Det vinduestypehint som sættes på værktøjskassen. Dette kan have betydning for hvordan vindueshåndteringen dekorerer og håndterer værktøjskassevinduet.TemaTemamapperTemaerDer er %d billeder med ugemte ændringer:Der er ikke nok synlige lag til en nedadgående forening.Hukommelsesforbrug og hastighed skal altid afvejes. I de fleste tilfælde går Gimp'en efter hastighed frem for hukommelse. Men prøv at slå denne indstilling til hvis hukommelse er et stort problem.Der er ikke noget aktivt lag eller nogen aktiv kanal at kopiere fra.Der er ikke noget aktivt lag eller nogen aktiv kanal at klippe fra.Der er ikke noget aktivt lag eller en aktiv kanal at bestrygeDer er ikke noget aktivt lag eller nogen aktiv kanal at bestryge.Der er et billede med ugemte ændringer:Der skal være en fil med navnet %s. Kontrollér din installation.Der opstod en fejl ved fortolkningen af din '%s'-fil. Standardværdier vil blive brugt. En sikkerhedskopi af din konfiguration er blevet oprettet ved '%s'.Denne fil indeholder en samling af standardmediestørrelse der bruges som billedskabeloner.Denne mappe søges i efter bruger-installerede skabeloner.Denne mappe søges i efter bruger-installerede temaer.Denne mappe bruges til at gemme brugerdefinerede mønstre. Gimp'en tjekker denne mappe sammen med systemmapperne efter mønstre når der søges efter disse.Denne mappe bruges til at gemme parameterfiler til kurveværktøjet.Denne mappe bruges til at gemme parameterfiler til niveauværktøjet.Denne mappe bruges til at gemme værktøjsindstillinger.Denne mappe bruges til at gemme brugeroprettede og -installerede fortolkede programmer. Gimp'en tjekker denne mappe sammen med systemmapperne efter fortolkede programmer når der søges efter disse.Denne mappe bruges til at gemme brugeroprettede, midlertidige eller andre DLL-moduler som ikke installeres for alle brugere. Gimp'en tjekker denne mappe sammen med systemmappen efter programudvidelser under starten.Denne mappe bruges til at gemme brugeroprettede, midlertidige eller andre tilføjelser til udvidelsesmiljøet som ikke installeres for alle brugere. Gimp'en tjekker denne mappe sammen med systemmappen når der søges efter disse.Denne mappe bruges til at gemme brugeroprettede, midlertidige eller andre udvidelsesmoduler som ikke installeres for alle brugere. Gimp'en tjekker denne mappe sammen med systemmappen efter udvidelsesmoduler når der søges efter disse.Denne mappe bruges til at gemme brugerdefinerede pensler. Gimp'en tjekker denne mappe sammen med systemmapperne efter Gimp-pensler når der søges efter disse.Denne mappe bruges til at gemme brugerdefinerede farveovergange. Gimp'en tjekker denne mappe sammen med systemmapperne efter farveovergange når der søges efter disse.Denne mappe bruges til at gemme brugerdefinerede paletter. Gimp'en tjekker denne mappe sammen med systemmapperne efter paletter når der søges efter disse.Denne mappe bruges til at gemme brugerdefinerede mønstre. Gimp'en tjekker denne mappe sammen med systemmapperne efter mønstre når der søges efter disse.Denne mappe bruges af Gimp'en til midlertidigt at opbevare fortrydelsesmellemlagere for at reducere hukommelsesforbruget. Hvis Gimp'en ikke dræbes behørigt, kan nogle filer på formen 'gimp<#>.<#>' måske overleve. Disse filer er ubrugelige på tværs af forskellige Gimp-sessioner og kan udryddes nådesløst.Denne mappe vil komme til at indeholde et antal vigtige filer. Klik på en af filerne eller mapperne i træet for at få flere oplysninger om det valgte element.Dette er afstanden i punkter som hjælpelinjer og gitteret låser til.Dette program distribueres med det håb at det vil vise sig nyttigt, men UDEN NOGEN FORM FOR GARANTI; endda uden garanti for KØB- ELLER SALGBARHED eller EGNETHED TIL NOGET BESTEMT FORMÅL. Se GNU General Public License for flere detaljer.Dette program er frit programmel; du kan redistribuere det og/eller ændre det under betingelsene i GNU General Public License som udgivet af Free Software Foundation; enten version 2 af licensen, eller (hvis du ønsker det) enhver senere version.Dette indtastningsfelt er begrænset til %d tegn.Dette værktøj har ingen indstillinger.Dette vindue har %d faneblade åbne. Hvis du lukker vinduet, vil alle fanebladene også blive lukket.TærskelTærskel opererer ikke på indekserede lag.Tærskel:Miniature %d af %dStørrelse af flisemellem_lager:Størrelse af flisemellemlager:Vinkling:BitteTitel og statusTil _baneGenvejstaster ændres ved at klikke på en række og indtaste den nye genvej eller trykke på slet tilbage-tasten for at rydde._LegetøjSlå hurtigmaske til/fraSlå hurtigmaske _til/fraFor mange fejlmeddelelser!VærktøjsindstillingerVærktøjsindstillingermenuVærktøjstilstand %sVærktøjs_indstillingerVærktøjsikonVærktøjsikon med sigtekornVærktøjs_kasseVærktøjskasseVærktøjskassemenuVærktøjerVærktøjsmenuVærktøjer som udflydende markering og spandudfyldning finder områder baseret på et frøudfyldningsalgoritme. Frøudfyldningen begynder ved startpunktet og går videre i alle retninger indtil forskellen i punktintensitet fra originalen er større end en angivet tærskel. Denne værdi repræsenterer den forvalgte tærskel.G_ennemsigtighedOverfør alfa til maskeTransformérTransformér kanalTransformeringsretningTransformér lagTransformér baneTransformér tekstlagTransformeringsværktøjsprocedurerTransformér lagTransformér baneTransformér markeringTransformeringTransformeringsprocedurerTransformerer...Oversættelse afGennemsigtighedGennemsigtigheds_type:Trekantet bølgeRigtig farveTypeType %sIndtast en ny genvejIndtast en ny genvej eller tryk på slet tilbage-tasten for at rydde genvejenKan ikke tilføje en lagmaske da laget allerede har en.Kan ikke klippe eller kopiere fordi det markerede område er tomt.Kunne ikke åbne en testmellemlagerfil. Kontrollér placeringen og rettighederne for mellemlagerkataloget defineret i dine indstillinger (aktuelt "%s").Kunne ikke åbne reservehukommelsesfilen. Gimp'en er løbet tør for hukommelse og kan ikke bruge reservehukommelsesfilen på disken. Dele af dit billede kan være ødelagt. Prøv at gemme dit arbejde med andre filnavne, genstart Gimp'en og kontroller placeringen af reservehukommelsesmappen under indstillingerne.Kunne ikke udføre tilbagekaldsfunktionen til %s. Måske er det tilhørende modul gået ned.IkkedefineretFortrydFortrydelseshistorikF_ortrydelseshistorikEnhederUkendtUkendt filtypeUkendt paletfiltype: +%sFrigivUnavngivenUnavngivenBenyt som standard "_prik for prik"Benyt _dynamiske tastaturgenvejeBenyt _internetsurfningsprogram i stedetBrug alle synlige lag ved formindskelse af markeringenBenyt sort/hvid-palet (1-bit)Benyt farve fra farveovergangBenyt brugerdefineret paletBenyt infovindueBenyt internetoptimeret paletBrugerinstallationslogBrugergrænsefladeVærktøjsvindueVærdiVærdi:Ændring af vektorerVersion %s bragt til dig afVersion:LodretLodret afsæt til den første gitterlinje; dette kan være et negativt tal.Lodret mellemrum mellem gitterlinjer.Meget storMeget lilleVisVis som _gitterVis som _listeVis som gitterVis som listeKlasse:Farvedybde:Advarsel: kunne ikke indlæse data: %sAdvarsel: kunne ikke gemme data: %sInternetsurfningsprogramInternetsurfningsprogramVelkommen til brugerinstallationen -til Gimp'en %d.%dHvis aktiveret, vil vinduet automatisk følge det billede du arbejder på.Hvis aktiveret vil Gimp'en vise genveje i menuer.Hvis aktiveret, vil alle tegneværktøjer vise et eksempel på den aktuelle pensels omrids.Hvis aktiveret, bliver et billede det aktive billede når dets vindue modtager fokus. Dette er nyttigt med vindueshåndteringer der bruger "klik for at fokusere".Angiv om menuer skal kunne rives af.Tryk på F1 vil åbne hjælpefremviseren.Undlad at gemme hvis et billede er uændret siden det blev åbnet.Benyt forskellige infovinduer til de forskellige billedvinduer.Spørg X-serveren efter musens aktuelle position ved hver bevægelseshændelse i stedet for at forlade sig på positionshintet. Dette betyder at malning med større pensler skulle være mere præcis, men det kan være langsommere. Mærkeligt nok giver det hurtigere malning på nogle X-servere.Hvis aktiveret, vil markøren blive vist over billedet når et maleværktøj benyttes.Hvis aktiveret, vises gitteret som standard. Dette kan også skiftes med kommandoen "Vis->Vis gitter".Hvis aktiveret, vises hjælpelinjerne som standard. Dette kan også skiftes med kommandoen "Vis->Vis hjælpelinjer".Lad billedvinduet ændre sin størrelse automatisk når der zoomes ind og ud på billedet.Lad billedvinduet ændre sin størrelse automatisk når den fysiske billedstørrelse ændres.Hvis aktiveret, vises laggrænsen som standard. Dette kan også skiftes med kommandoen "Vis->Vis laggrænse".Hvis aktiveret, vises menulinjen som standard. Dette kan også skiftes med kommandoen "Vis->Vis menulinje".Hvis aktiveret, vises linealerne som standard. Dette kan også skiftes med kommandoen "Vis->Vis linealer".Hvis aktiveret, vises rulleskakterne som standard. Dette kan også skiftes med kommandoen "Vis->Vis rulleskakter".Hvis aktiveret vil den valgte pensel blive brugt til alle værktøjer.Hvis aktiveret vil den valgte farveovergang blive brugt til alle værktøjer.Hvis aktiveret vil det valgte mønster blive brugt til alle værktøjer.Hvis aktiveret, vises markeringen som standard. Dette kan også skiftes med kommandoen "Vis->Vis markering".Hvis aktiveret, vises statuslinjens som standard. Dette kan også skiftes med kommandoen "Vis->Vis statuslinje".Sikrer at hvert punkt i et billede bliver afbildet til et punkt på skærmen.Sikr at det komplette billede er synligt efter en fil er åbnet, ellers vil den blive vist i skalaforholdet 1:1.Hvis aktiveret, kan du ændre tastaturgenveje for menupunkter ved at trykke på en tastekombination mens menupunktet er fremhævet.HvidHvidbalance virker kun på lag med RGB-farver.BreddeBredde:VindueshåndteringHint til vindueshåndteringVinduesplaceringerSkriver '%s' +til Gimp'en %d.%dHvis aktiveret, vil vinduet automatisk følge det billede du arbejder på.Hvis aktiveret vil Gimp'en vise genveje i menuer.Hvis aktiveret, vil alle tegneværktøjer vise et eksempel på den aktuelle pensels omrids.Hvis aktiveret, bliver et billede det aktive billede når dets vindue modtager fokus. Dette er nyttigt med vindueshåndteringer der bruger "klik for at fokusere".Hvis aktiveret, vil vinduer vise en hjælpeknap som giver adgang til den relaterede hjælpeside. Hjælpesiden kan stadig nås uden denne knap ved at trykke på F1.Angiv om menuer skal kunne rives af.Tryk på F1 vil åbne hjælpefremviseren.Undlad at gemme hvis et billede er uændret siden det blev åbnet.Benyt forskellige infovinduer til de forskellige billedvinduer.Spørg X-serveren efter musens aktuelle position ved hver bevægelseshændelse i stedet for at forlade sig på positionshintet. Dette betyder at malning med større pensler skulle være mere præcis, men det kan være langsommere. Mærkeligt nok giver det hurtigere malning på nogle X-servere.Hvis aktiveret, vil markøren blive vist over billedet når et maleværktøj benyttes.Hvis aktiveret, vises gitteret som standard. Dette kan også skiftes med kommandoen "Vis->Vis gitter".Hvis aktiveret, vises hjælpelinjerne som standard. Dette kan også skiftes med kommandoen "Vis->Vis hjælpelinjer".Lad billedvinduet ændre sin størrelse automatisk når der zoomes ind og ud på billedet.Lad billedvinduet ændre sin størrelse automatisk når den fysiske billedstørrelse ændres.Hvis aktiveret, vises laggrænsen som standard. Dette kan også skiftes med kommandoen "Vis->Vis laggrænse".Hvis aktiveret, vises menulinjen som standard. Dette kan også skiftes med kommandoen "Vis->Vis menulinje".Hvis aktiveret, vises linealerne som standard. Dette kan også skiftes med kommandoen "Vis->Vis linealer".Hvis aktiveret, vises rulleskakterne som standard. Dette kan også skiftes med kommandoen "Vis->Vis rulleskakter".Hvis aktiveret vil den valgte pensel blive brugt til alle værktøjer.Hvis aktiveret vil den valgte farveovergang blive brugt til alle værktøjer.Hvis aktiveret vil det valgte mønster blive brugt til alle værktøjer.Hvis aktiveret, vises markeringen som standard. Dette kan også skiftes med kommandoen "Vis->Vis markering".Hvis aktiveret, vises statuslinjens som standard. Dette kan også skiftes med kommandoen "Vis->Vis statuslinje".Sikrer at hvert punkt i et billede bliver afbildet til et punkt på skærmen.Sikr at det komplette billede er synligt efter en fil er åbnet, ellers vil den blive vist i skalaforholdet 1:1.Hvis aktiveret, kan du ændre tastaturgenveje for menupunkter ved at trykke på en tastekombination mens menupunktet er fremhævet.HvidHvidbalance virker kun på lag med RGB-farver.BreddeBredde:VindueshåndteringHint til vindueshåndteringVinduesplaceringerSkriver '%s' xXCF-fejl: ikke-understøttet XCF-filversion %d mødtXCF-advarsel: version 0 af XCF-filformatet gemte ikke indekserede farvekort rigtigt. -Erstatter gråtonekort.yGulGul:Du forsøger at oprette et billede med en størrelse på %s.Du kan slippe dokvinduer her.Du burde have modtaget GNU General Public License sammen med dette program; hvis ikke, skriv til Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.Du bliver nødt til at genstarte Gimp'en før de følgende ændringer træder i kraft:Den Gimp-installation er ufuldstændig:Zoom og størrelsesændringZoom 1:1Zoom 100%Zoom indZoom udZoomforholdZoomforhold:_Zoom 100%Zoom _indZoom _udZoom 100%Zoomfaktor: %d:1Zoom billede når vinduesstørrelsen ændrer sigZoom indZoom ind eller udZoom udZoom:[ grundbillede ]_OmInd_hent_Tilføj farve fra baggr._Tilføj farve fra forgr._Tilføj fane_Læg til markering_Avancerede indstillinger_Alt_Forankr lag_Udjævning_Vilkårlig rotering..._Kunstnerisk_Aspekt_Auto_B_Baggrundsfarve_Sort (helt gennemsigtigt)_Blandingsfunktion for segment_Blandingsfunktion for markering_Blødgør_Lysstyrke:_Pensel_Pensler_Pensler, mønstre og farveovergange_Mellemlagere_Efter farve_C_Kanaler_Ryd fejl_Ryd fortrydelseshistorik_Luk_Luk fane_Skyer_Farveværktøjer_Farver_Konfigurér farve og gennemsigtighed..._Kontekst_Konteksthjælp_Kopiér_Kopiér navngiven_Opret billede fra skabelon..._Beskær billede_Buet_Mørk ternfarve_Standardfarver_Slet pensel_Slet mellemlagerS_let kanal_Slet farve_Slet overgang..._Slet billedeS_let lag_Slet palet_Slet bane_Slet mønster..._Slet gemte indstillinger_Slet segment_Slet det markerede_Slet skabelon_Afmætning_Frigør fane_EnhedsstatusVin_duer_Kassér tekstoplysninger_Forvrængning_Prik for prik_Duplikér_Redigér_Redigér pensel..._Redigér kanalegenskaber.../_Redigér farve..._Redigér overgang..._Redigér lagegenskaber..._Redigér palet..._Redigér bane-egenskaber..._Redigér mønster..._Redigér skabelon..._Aktivér lag- og kanalminiaturer_Enorm_Udlign_Forgrundsfarve_Fil_Udfyld med:_Tilpas billede til vindue_Fladgør billede_Vend segment_Vend det markerede_Flyd_Skrifttype_Skrifttyper_G_Generel_Gigantisk_Farveovergang_Farveovergange_Gråtoner_Gråtonekopi af lagetFor_øg..._Hjælpelinjer_Hårdhed_Hjælp_Vandret:_Farvetone:_Kæmpe_Ikon_Ikon:_Billede_Billeder_Importér_Importér palet..._Indekseret..._Infovindue_Kryds med markering_Invertér_Stor_Lag_Lag_Lag, kanaler og banerVenstre endepunkt_Venstre nabos højre endepunkt_Lys ternfarve_Lyseffekter_Lysstyrke:_Lineær_Kædet_Hent venstre farve fra_Sænk kanal_Sænk lagSæn_k bane_M_Manuelt_Afbildning_MaskeMaske til ma_rkering_Maks. antal farver:_Mellem_Forén paletter..._Forén importerede baner_Migrér brugerindstillinger fra Gimp 2.0_Diverse_Tilstand_Programudvidelser_Navn:_Natur_Ny pensel_Ny kanal_Ny kanal..._Nyt element..._Ny overgang_Nyt lag_Nyt lag..._Ny palet_Ny bane_Ny bane..._Nyt mønster_Ny skabelon..._Ny visning_Ny..._Næste tip_Støj_Intet_Forskydning..._Ugennemsigtighed_Åbn billede_Åbn..._UdfyldningsfarveM_aleværktøjer_Palet_Indsæt_Indsæt mellemlager_Indsæt navngiven_Baner_Mønster_Posterisér_Indstillinger_Miniature_Miniaturestørrelse_Forrige tip_Udskriftsstørrelse..._Egenskaber_Hurtigmaske aktiv_Afslut_R_RGB_Radius_Hæv kanal_Hæv lag_Hæv bane_Hæv visninger_Hæv eller åbn billede_Omtildel genvej_Rektangulær markering_Omgør_Omgør '%s'_Opdatér pensler_Opdatér overgange_Opdatér paletter_Opdatér mønstre_Fjern ubrugte farver fra endelig palet_Generér_Erstat_Kopiér segment..._Kopiér det markerede..._Genskan skrifttypeliste_Nulstil rækkefølge og synlighed_Nulstil gemte enhedsindstillinger til standardværdier_Nulstil gemte tastaturgenveje til standardværdier_Nulstil gemte vinduesplaceringer til standardværdierGen_dan indstillinger fra_Højre endepunkt_Højre nabos venstre endepunkt_Rotér_Mætning:_Gem_Gem venstre farve i_Gem indstillinger i_Gem enhedsindstilinger ved afslutning_Gem tastaturgenveje ved afslutning_Gem vinduesplaceringer ved afslutning_Skalér_Skalér billede..._Skalér lag..._Skalér importerede baner til billede_Markering_Markering_Markeringsredigering_Markeringsværktøjer_Form_Skærp_Vis billedmarkering_Vis i værktøjstip_Sinus_Lille_Udtvær_Låseafstand:_Bestryg markering_Bestryg markering..._Træk fra markering_Fanestil_Skabelon:S_kabeloner_Tekst_Tærskel..._Bitte_Dagens tip_VærktøjVærk_tøjer_Overfør lagets alfakanal_Transformering_Transformeringsværktøjer_Fortryd_Fortryd '%s'_Lodret:_Vis_Synlig_Internet_Internetsurfningsprogram der skal anvendes:_Hvidt (helt ugennemsigtigt)_Hvidbalance_Bredde:_Fold omkring_x-opløsning:_x:_Udvidelser_Y_y-opløsning:_y:_Zoom_Zoom (%s)farverkopidpiforventede 'yes' eller 'no' for boolesk symbol %s, fik '%s'fatal fortolkningsfejlgråtonergråtone-tomtommetommerindekseretindekseret-tomugyldig UTF-8-strengugyldig værdi '%ld' for symbolet %sugyldig værdi '%s' for symbolet %smillimetermillimeterminut-procentpicapicaerbilledpunktbilledpunkterpunkter/%apunkter/%spunktpunktersekundtips-locale:daBirger Langkjer +Erstatter gråtonekort.yGulGul:Du forsøger at oprette et billede med en størrelse på %s.Du kan slippe dokvinduer her.Du burde have modtaget GNU General Public License sammen med dette program; hvis ikke, skriv til Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.Du bliver nødt til at genstarte Gimp'en før de følgende ændringer træder i kraft:Den Gimp-installation er ufuldstændig:Din indstillinger for pegeenheder vil blive nulstillet til standardværdierne næste gang du starter Gimp'en.Tastegenvejene vil blive nulstillet til standardværdierne næste gang du starter Gimp'en.Vinduesopsætningen vil blive nulstillet til standardværdierne næste gang du starter Gimp'en.Zoom og størrelsesændringZoom 1:1Zoom 100%Zoom indZoom udZoomforholdZoomforhold:_Zoom 100%Zoom _indZoom _udZoom 100%Zoomfaktor: %d:1Zoom billede når vinduesstørrelsen ændrer sigZoom indZoom ind eller udZoom udZoom:[ grundbillede ]_OmInd_hent_Tilføj farve fra baggr._Tilføj farve fra forgr._Tilføj fane_Læg til markering_Avancerede indstillinger_Sprøjtepensel_Alt_Forankr lag_Udjævning_Vilkårlig rotering..._Kunstnerisk_Aspekt_Auto_B_Baggrundsfarve_Baggrundsfarve:_Sort (helt gennemsigtigt)_Blandingsfunktion for segment_Blandingsfunktion for markering_Blødgør_Lysstyrke:_Pensel_Pensler_Pensler, mønstre og farveovergange_Spandudfyldning_Mellemlagere_Efter farveMarkering efter _farve_C_Endestil:_Kanaler_Ryd fejl_Ryd fortrydelseshistorik_Klon_Luk_Luk fane_Skyer_Farveværktøjer_Farver_Konfigurér farve og gennemsigtighed..._Kontekst_Konteksthjælp_Kopiér_Kopiér navngiven_Opret billede fra skabelon..._Tilskær og ændr størrelse_Beskær billede_Buet_Kurver..._Mørk ternfarve_Standardfarver_Slet pensel_Slet mellemlagerS_let kanal_Slet farve_Slet overgang..._Slet billedeS_let lag_Slet palet_Slet bane_Slet mønster..._Slet gemte indstillinger_Slet segment_Slet det markerede_Slet skabelon_Afmætning_Frigør fane_EnhedsstatusVin_duer_Forkast ændringer_Kassér tekstoplysninger_Forvrængning_Prik for prik_Duplikér_Redigér_Redigér pensel..._Redigér kanalegenskaber.../_Redigér farve..._Redigér overgang..._Redigér lagegenskaber..._Redigér palet..._Redigér bane-egenskaber..._Redigér mønster..._Redigér skabelon..._Ellipsemarkering_Aktivér lag- og kanalminiaturer_Enorm_Udlign_Viskelæder_Forgrundsfarve_Fil_Udfyld med:_Tilpas billede til vindue_Fladgør billedeV_end_Vend segment_Vend det markerede_Flyd_Skrifttype_Skrifttyper_Forgrundsfarve:_Fri markering_G_Generel_Gigantisk_Farveovergang_Farveovergange_Gråtoner_Gråtonekopi af lagetFor_øg..._Hjælpelinjer_Hårdhed_Hjælp_Vandret:_Farvetone:_Kæmpe_Ikon_Ikon:_Billede_Billeder_Importér_Importér palet..._Indekseret..._Infovindue_Kryds med markering_Invertér_Koblingsstil:_Stor_Lag_Lag_Lag, kanaler og banerVenstre endepunkt_Venstre nabos højre endepunkt_Niveauer..._Lys ternfarve_Lyseffekter_Lysstyrke:Linje_stil_Lineær_Kædet_Hent venstre farve fra_Sænk kanal_Sænk lagSæn_k bane_M_Manuelt_Afbildning_MaskeMaske til ma_rkering_Maks. antal farver:O_pmål_Mellem_Forén paletter..._Forén importerede baner_Migrér brugerindstillinger fra Gimp 2.0_Diverse_Mellemgrænse:_Tilstand_ProgramudvidelserF_lyt_Navn:_Natur_Ny pensel_Ny kanal_Ny kanal..._Nyt element..._Ny overgang_Nyt lag_Nyt lag..._Ny palet_Ny bane_Ny bane..._Nyt mønster_Ny skabelon..._Ny visning_Ny..._Næste tip_Støj_Intet_Forskydning..._Ugennemsigtighed_Åbn billede_Åbn..._UdfyldningsfarveM_aleværktøjerM_alerpensel_Palet_Indsæt_Indsæt mellemlager_Indsæt navngiven_Baner_Mønster_Perspektiv_Posterisér_Indstillinger_Miniature_Miniaturestørrelse_Forrige tip_Udskriftsstørrelse..._Egenskaber_Hurtigmaske aktiv_Afslut_R_RGB_Radius_Hæv kanal_Hæv lag_Hæv bane_Hæv visninger_Hæv eller åbn billede_Omtildel genvej_Rektangulær markering_Omgør_Omgør '%s'_Opdatér pensler_Opdatér overgange_Opdatér paletter_Opdatér mønstre_Fjern ubrugte farver fra endelig palet_Generér_Erstat_Kopiér segment..._Kopiér det markerede..._Genskan skrifttypeliste_Nulstil rækkefølge og synlighed_Nulstil gemte enhedsindstillinger til standardværdier_Nulstil gemte tastaturgenveje til standardværdier_Nulstil gemte vinduesplaceringer til standardværdierGen_dan indstillinger fra_Højre endepunkt_Højre nabos venstre endepunkt_Rotér_Mætning:_Gem_Gem venstre farve i_Gem indstillinger i_Gem enhedsindstilinger ved afslutning_Gem tastaturgenveje ved afslutning_Gem vinduesplaceringer ved afslutning_Skalér_Skalér billede..._Skalér lag..._Skalér importerede baner til billede_Markering_Markering_Markeringsredigering_Markeringsværktøjer_Form_Skærp_Vis billedmarkering_Vis i værktøjstip_Sinus_Lille_Udtvær_Låseafstand:_Bestryg markering_Bestryg markering..._Træk fra markering_Fanestil_Skabelon:S_kabeloner_Tekst_Tærskel..._Bitte_Dagens tip_VærktøjVærk_tøjer_Overfør lagets alfakanal_Transformering_Transformeringsværktøjer_Fortryd_Fortryd '%s'_Lodret:_Vis_Synlig_Internet_Internetsurfningsprogram der skal anvendes:_Hvidt (helt ugennemsigtigt)_Hvidbalance_Bredde:_Fold omkring_x-opløsning:_x:_Udvidelser_Y_y-opløsning:_y:_Zoom_Zoom (%s)farverkopidpiforventede 'yes' eller 'no' for boolesk symbol %s, fik '%s'fatal fortolkningsfejlgråtonergråtone-tomtommetommerindekseretindekseret-tomugyldig UTF-8-strengugyldig værdi "%ld" for ikontypenugyldig værdi '%ld' for symbolet %sugyldig værdi "%s" for ikontypenugyldig værdi '%s' for symbolet %smillimetermillimeterminut-procentpicapicaerbilledpunktbilledpunkterpunkter/%apunkter/%spunktpunktersekundtips-locale:daBirger Langkjer Keld Simonsen Kenneth Christiansen Martin Willemoes Hansen diff -uraN gimp-2.2.4/po/da.po gimp-2.2.5/po/da.po --- gimp-2.2.4/po/da.po 2005-02-08 14:42:51.000000000 +0100 +++ gimp-2.2.5/po/da.po 2005-03-14 11:00:43.000000000 +0100 @@ -1,9 +1,9 @@ # Danish translation of the GIMP. -# Copyright (C) 1999, 2000, 01, 02, 03, 04 Free Software Foundation, Inc. +# Copyright (C) 1999, 2000, 01, 02, 03, 04, 05 Free Software Foundation, Inc. # Kenneth Christiansen , 1999, 2000 # Birger Langkjer , 2000. # Keld Simonsen , 2000. -# Ole Laursen , 2001, 02, 03, 04. +# Ole Laursen , 2001, 02, 03, 04, 05. # Martin Willemoes Hansen , 2005. # # Hvis der er problemer, så start med at kigge i de.po - den er oversat @@ -23,6 +23,7 @@ # burn -> sværtning # clip -> (ofte) beskær # colormap -> farvekortlægning (FIXME: skal nok revideres) +# color picker -> farveopsnapper # coloring type -> farvetype (fx RGB, HSV) # convolve -> konturændring (convolve kommer sig af at operationen foregår via en "convolution matrix") # crop -> tilskær @@ -82,19 +83,19 @@ msgstr "" "Project-Id-Version: gimp\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-02-04 10:05+0100\n" -"PO-Revision-Date: 2005-02-04 10:07+0100\n" -"Last-Translator: Martin Willemoes Hansen \n" +"POT-Creation-Date: 2005-02-26 13:18+0100\n" +"PO-Revision-Date: 2005-03-13 19:33+0100\n" +"Last-Translator: Ole Laursen \n" "Language-Team: Danish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: app/app_procs.c:144 +#: ../app/app_procs.c:144 msgid "(This console window will close in ten seconds)\n" msgstr "(Dette konsolvindue vil lukke om ti sekunder)\n" -#: app/app_procs.c:238 +#: ../app/app_procs.c:238 msgid "" "GIMP is not properly installed for the current user.\n" "User installation was skipped because the '--no-interface' flag was used.\n" @@ -105,7 +106,7 @@ "benyttet.\n" "Kør Gimp'en uden tilvalget for at udføre brugerinstallationen." -#: app/app_procs.c:289 +#: ../app/app_procs.c:289 #, c-format msgid "" "Unable to open a test swap file. To avoid data loss please check the " @@ -116,17 +117,17 @@ "rettighederne for mellemlagerkataloget defineret i dine indstillinger " "(aktuelt \"%s\")." -#: app/app_procs.c:348 app/core/gimppalette-import.c:441 +#: ../app/app_procs.c:348 ../app/core/gimppalette-import.c:441 #, c-format msgid "Opening '%s' failed: %s" msgstr "Åbning af '%s' mislykkedes: %s" -#: app/batch.c:84 app/batch.c:101 +#: ../app/batch.c:84 ../app/batch.c:101 #, c-format msgid "The batch interpreter '%s' is not available, batch mode disabled." msgstr "Batchfortolkeren '%s' er ikke tilgængelig, batchtilstand deaktiveret." -#: app/main.c:211 +#: ../app/main.c:211 msgid "" "GIMP could not initialize the graphical user interface.\n" "Make sure a proper setup for your display environment exists." @@ -134,15 +135,15 @@ "Gimp'en kunne ikke klargøre den grafisk brugergrænseflade.\n" "Sikr dig at en korrekt opsætning af terminalmiljøet eksisterer." -#: app/main.c:222 app/widgets/gimptoolbox.c:559 -#: data/misc/gimp.desktop.in.in.h:3 +#: ../app/main.c:222 ../app/widgets/gimptoolbox.c:559 +#: ../data/misc/gimp.desktop.in.in.h:3 msgid "The GIMP" msgstr "Gimp'en" #. #. * anything else starting with a '-' is an error. #. -#: app/main.c:422 +#: ../app/main.c:422 #, c-format msgid "" "\n" @@ -151,11 +152,11 @@ "\n" "Ugyldigt tilvalg \"%s\".\n" -#: app/main.c:501 +#: ../app/main.c:501 msgid "GIMP version" msgstr "Gimp'en version" -#: app/main.c:509 +#: ../app/main.c:509 #, c-format msgid "" "\n" @@ -166,23 +167,23 @@ "Brug: %s [tilvalg ... ] [fil ... ]\n" "\n" -#: app/main.c:511 +#: ../app/main.c:511 msgid "Options:\n" msgstr "Tilvalg:\n" -#: app/main.c:512 +#: ../app/main.c:512 msgid " -h, --help Output this help.\n" msgstr " -h, --help Udskriv denne hjælpetekst.\n" -#: app/main.c:513 +#: ../app/main.c:513 msgid " -v, --version Output version information.\n" msgstr " -v, --version Udskriv versionsinformation.\n" -#: app/main.c:514 +#: ../app/main.c:514 msgid " --verbose Show startup messages.\n" msgstr " --verbose Vis meddelelser under start.\n" -#: app/main.c:515 +#: ../app/main.c:515 msgid "" " --no-shm Do not use shared memory between GIMP and " "plugins.\n" @@ -190,11 +191,11 @@ " --no-shm Benyt ikke delt hukommelse mellem Gimp'en og " "udvidelsesmoduler.\n" -#: app/main.c:516 +#: ../app/main.c:516 msgid " --no-cpu-accel Do not use special CPU accelerations.\n" msgstr " --no-cpu-accel Benyt ikke specielle CPU-accelereringer.\n" -#: app/main.c:517 +#: ../app/main.c:517 msgid "" " -d, --no-data Do not load brushes, gradients, palettes, " "patterns.\n" @@ -202,41 +203,41 @@ " -d, --no-data Indlæs ikke pensler, overgange, paletter og " "mønstre.\n" -#: app/main.c:518 +#: ../app/main.c:518 msgid " -f, --no-fonts Do not load any fonts.\n" msgstr " -f, --no-fonts Indlæs ikke nogen skrifttyper.\n" -#: app/main.c:519 +#: ../app/main.c:519 msgid " -i, --no-interface Run without a user interface.\n" msgstr " -i, --no-interface Kør uden brugergrænseflade.\n" -#: app/main.c:520 +#: ../app/main.c:520 msgid " --display Use the designated X display.\n" msgstr " --display Benyt den angivne X-skærm.\n" -#: app/main.c:521 +#: ../app/main.c:521 msgid " -s, --no-splash Do not show the startup window.\n" msgstr " -s, --no-splash Vis ikke startsvinduet.\n" -#: app/main.c:522 +#: ../app/main.c:522 msgid " --session Use an alternate sessionrc file.\n" msgstr " --session Benyt en alternativ sessionrc-fil.\n" -#: app/main.c:523 +#: ../app/main.c:523 msgid " -g, --gimprc Use an alternate gimprc file.\n" msgstr " -g, --gimprc Benyt en anden gimprc-fil.\n" -#: app/main.c:524 +#: ../app/main.c:524 msgid " --system-gimprc Use an alternate system gimprc file.\n" msgstr " --system-gimprc Benyt en alternativ system-gimprc-fil.\n" -#: app/main.c:525 +#: ../app/main.c:525 msgid "" " --dump-gimprc Output a gimprc file with default settings.\n" msgstr "" " --dump-gimprc Udskriv en gimprc-fil med standardindstillinger.\n" -#: app/main.c:526 +#: ../app/main.c:526 msgid "" " -c, --console-messages Display warnings to console instead of a dialog " "box.\n" @@ -244,14 +245,14 @@ " -c, --console-messages Vis advarsler på konsollen i stedet for i et " "vindue.\n" -#: app/main.c:527 +#: ../app/main.c:527 msgid "" " --debug-handlers Enable non-fatal debugging signal handlers.\n" msgstr "" " --debug-handlers Benyt ikke-fatale " "fejlsøgningssignalhåndteringer.\n" -#: app/main.c:528 +#: ../app/main.c:528 msgid "" " --stack-trace-mode \n" " Debugging mode for fatal signals.\n" @@ -260,7 +261,7 @@ " Fejlsøgningstilstand til fatale signaler.\n" "\n" -#: app/main.c:530 +#: ../app/main.c:530 msgid "" " --pdb-compat-mode \n" " Procedural Database compatibility mode.\n" @@ -268,7 +269,7 @@ " --pdb-compat-mode \n" " Kompatibilitetstilstand for proceduredatabase.\n" -#: app/main.c:532 +#: ../app/main.c:532 msgid "" " --batch-interpreter \n" " The procedure to process batch commands with.\n" @@ -277,11 +278,11 @@ " Den procedure som batchkommandoer skal " "processeres med.\n" -#: app/main.c:534 +#: ../app/main.c:534 msgid " -b, --batch Process commands in batch mode.\n" msgstr " -b, --batch Kør kommandoer i batch-tilstand.\n" -#: app/sanity.c:194 +#: ../app/sanity.c:194 #, c-format msgid "" "The configured filename encoding cannot be converted to UTF-8: %s\n" @@ -292,7 +293,7 @@ "\n" "Tjek værdien af miljøvariablen G_FILENAME_ENCODING." -#: app/sanity.c:213 +#: ../app/sanity.c:213 #, c-format msgid "" "The name of the directory holding the GIMP user configuration cannot be " @@ -302,811 +303,826 @@ "8 and you didn't tell GLib about this. Please set the environment variable " "G_FILENAME_ENCODING." msgstr "" +"Navnet på det katalog som indeholder brugerkonfigurationen til Gimp'ene kan ikke konverteres til UTF-8: %s\n" +"\n" +"Sandsynligvis gemmer dit filsystem filer i en anden kodning end UTF-8 uden at du har fortalt det til GLib. Sæt venligst miljøvariablen G_FILENAME_ENCODING." #. initialize the list of gimp brushes -#: app/actions/actions.c:93 app/core/gimp.c:856 app/dialogs/dialogs.c:138 -#: app/dialogs/preferences-dialog.c:2297 app/pdb/internal_procs.c:92 +#: ../app/actions/actions.c:93 ../app/core/gimp.c:856 +#: ../app/dialogs/dialogs.c:138 ../app/dialogs/preferences-dialog.c:2297 +#: ../app/pdb/internal_procs.c:92 msgid "Brushes" msgstr "Pensler" -#: app/actions/actions.c:96 app/dialogs/dialogs.c:150 +#: ../app/actions/actions.c:96 ../app/dialogs/dialogs.c:150 msgid "Buffers" msgstr "Mellemlagere" -#: app/actions/actions.c:99 app/dialogs/dialogs.c:163 +#: ../app/actions/actions.c:99 ../app/dialogs/dialogs.c:163 msgid "Channels" msgstr "Kanaler" -#: app/actions/actions.c:102 +#: ../app/actions/actions.c:102 msgid "Colormap Editor" msgstr "Farveredigering" -#: app/actions/actions.c:105 app/pdb/internal_procs.c:101 +#: ../app/actions/actions.c:105 ../app/pdb/internal_procs.c:101 msgid "Context" msgstr "Kontekst" -#: app/actions/actions.c:108 +#: ../app/actions/actions.c:108 msgid "Debug" msgstr "Fejlfinding" -#: app/actions/actions.c:111 +#: ../app/actions/actions.c:111 msgid "Dialogs" msgstr "Vinduer" -#: app/actions/actions.c:114 +#: ../app/actions/actions.c:114 msgid "Dockable" msgstr "Dokobjekt" -#: app/actions/actions.c:117 app/dialogs/dialogs.c:152 +#: ../app/actions/actions.c:117 ../app/dialogs/dialogs.c:152 msgid "Document History" msgstr "Dokumenthistorik" -#: app/actions/actions.c:120 app/core/core-enums.c:1041 -#: app/core/core-enums.c:1071 +#: ../app/actions/actions.c:120 ../app/core/core-enums.c:1041 +#: ../app/core/core-enums.c:1071 msgid "Drawable" msgstr "Tegneobjekt" -#: app/actions/actions.c:123 app/tools/tools-enums.c:144 +#: ../app/actions/actions.c:123 ../app/tools/tools-enums.c:144 msgid "Edit" msgstr "Redigér" -#: app/actions/actions.c:126 app/dialogs/dialogs.c:131 +#: ../app/actions/actions.c:126 ../app/dialogs/dialogs.c:131 msgid "Error Console" msgstr "Fejlkonsol" -#: app/actions/actions.c:129 +#: ../app/actions/actions.c:129 msgid "File" msgstr "Fil" #. initialize the list of gimp fonts -#: app/actions/actions.c:132 app/core/gimp.c:872 app/dialogs/dialogs.c:146 -#: app/dialogs/preferences-dialog.c:2313 app/pdb/internal_procs.c:128 +#: ../app/actions/actions.c:132 ../app/core/gimp.c:872 +#: ../app/dialogs/dialogs.c:146 ../app/dialogs/preferences-dialog.c:2313 +#: ../app/pdb/internal_procs.c:128 msgid "Fonts" msgstr "Skrifttyper" -#: app/actions/actions.c:135 app/dialogs/dialogs.c:205 +#: ../app/actions/actions.c:135 ../app/dialogs/dialogs.c:205 msgid "Gradient Editor" msgstr "Farveovergangsredigering" #. initialize the list of gimp gradients -#: app/actions/actions.c:138 app/core/gimp.c:868 app/dialogs/dialogs.c:142 -#: app/dialogs/preferences-dialog.c:2309 app/pdb/internal_procs.c:140 +#: ../app/actions/actions.c:138 ../app/core/gimp.c:868 +#: ../app/dialogs/dialogs.c:142 ../app/dialogs/preferences-dialog.c:2309 +#: ../app/pdb/internal_procs.c:140 msgid "Gradients" msgstr "Farveovergange" -#: app/actions/actions.c:141 +#: ../app/actions/actions.c:141 msgid "Help" msgstr "Hjælp" -#: app/actions/actions.c:144 app/pdb/internal_procs.c:149 -#: app/tools/tools-enums.c:176 +#: ../app/actions/actions.c:144 ../app/pdb/internal_procs.c:149 +#: ../app/tools/tools-enums.c:176 msgid "Image" msgstr "Billede" #. list & grid views -#: app/actions/actions.c:147 app/dialogs/dialogs.c:136 +#: ../app/actions/actions.c:147 ../app/dialogs/dialogs.c:136 msgid "Images" msgstr "Billeder" -#: app/actions/actions.c:150 app/dialogs/dialogs.c:159 +#: ../app/actions/actions.c:150 ../app/dialogs/dialogs.c:159 msgid "Layers" msgstr "Lag" -#: app/actions/actions.c:153 app/dialogs/dialogs.c:209 +#: ../app/actions/actions.c:153 ../app/dialogs/dialogs.c:209 msgid "Palette Editor" msgstr "Paletredigering" #. initialize the list of gimp palettes -#: app/actions/actions.c:156 app/core/gimp.c:864 app/dialogs/dialogs.c:144 -#: app/dialogs/preferences-dialog.c:2305 app/pdb/internal_procs.c:170 +#: ../app/actions/actions.c:156 ../app/core/gimp.c:864 +#: ../app/dialogs/dialogs.c:144 ../app/dialogs/preferences-dialog.c:2305 +#: ../app/pdb/internal_procs.c:170 msgid "Palettes" msgstr "Paletter" #. initialize the list of gimp patterns -#: app/actions/actions.c:159 app/core/gimp.c:860 app/dialogs/dialogs.c:140 -#: app/dialogs/preferences-dialog.c:2301 app/pdb/internal_procs.c:185 +#: ../app/actions/actions.c:159 ../app/core/gimp.c:860 +#: ../app/dialogs/dialogs.c:140 ../app/dialogs/preferences-dialog.c:2301 +#: ../app/pdb/internal_procs.c:185 msgid "Patterns" msgstr "Mønstre" -#: app/actions/actions.c:162 app/dialogs/preferences-dialog.c:2317 +#: ../app/actions/actions.c:162 ../app/dialogs/preferences-dialog.c:2317 msgid "Plug-Ins" msgstr "Udvidelsesmoduler" -#: app/actions/actions.c:165 +#: ../app/actions/actions.c:165 msgid "QuickMask" msgstr "Hurtigmaske" # et navneord ser bedst ud i stedet for 'Markér' -#: app/actions/actions.c:168 +#: ../app/actions/actions.c:168 msgid "Select" msgstr "Markering" #. initialize the template list -#: app/actions/actions.c:171 app/core/gimp.c:880 app/dialogs/dialogs.c:154 +#: ../app/actions/actions.c:171 ../app/core/gimp.c:880 +#: ../app/dialogs/dialogs.c:154 msgid "Templates" msgstr "Skabeloner" -#: app/actions/actions.c:174 +#: ../app/actions/actions.c:174 msgid "Text Editor" msgstr "Tekstredigering" -#: app/actions/actions.c:177 app/dialogs/dialogs.c:123 -#: app/dialogs/preferences-dialog.c:1585 app/dialogs/preferences-dialog.c:1588 -#: app/gui/gui.c:410 +#: ../app/actions/actions.c:177 ../app/dialogs/dialogs.c:123 +#: ../app/dialogs/preferences-dialog.c:1585 +#: ../app/dialogs/preferences-dialog.c:1588 ../app/gui/gui.c:410 msgid "Tool Options" msgstr "Værktøjsindstillinger" -#: app/actions/actions.c:180 app/dialogs/dialogs.c:148 +#: ../app/actions/actions.c:180 ../app/dialogs/dialogs.c:148 msgid "Tools" msgstr "Værktøjer" -#: app/actions/actions.c:183 app/dialogs/dialogs.c:167 -#: app/pdb/internal_procs.c:176 app/tools/gimpvectortool.c:160 +#: ../app/actions/actions.c:183 ../app/dialogs/dialogs.c:167 +#: ../app/pdb/internal_procs.c:176 ../app/tools/gimpvectortool.c:160 msgid "Paths" msgstr "Baner" -#: app/actions/actions.c:186 +#: ../app/actions/actions.c:186 msgid "View" msgstr "Vis" -#: app/actions/brushes-actions.c:43 +#: ../app/actions/brushes-actions.c:43 msgid "Brushes Menu" msgstr "Penslermenu" -#: app/actions/brushes-actions.c:47 +#: ../app/actions/brushes-actions.c:47 msgid "_New Brush" msgstr "_Ny pensel" -#: app/actions/brushes-actions.c:48 +#: ../app/actions/brushes-actions.c:48 msgid "New brush" msgstr "Ny pensel" -#: app/actions/brushes-actions.c:53 +#: ../app/actions/brushes-actions.c:53 msgid "D_uplicate Brush" msgstr "_Duplikér pensel" -#: app/actions/brushes-actions.c:54 +#: ../app/actions/brushes-actions.c:54 msgid "Duplicate brush" msgstr "Duplikér pensel" -#: app/actions/brushes-actions.c:59 +#: ../app/actions/brushes-actions.c:59 msgid "_Delete Brush" msgstr "_Slet pensel" -#: app/actions/brushes-actions.c:60 +#: ../app/actions/brushes-actions.c:60 msgid "Delete brush" msgstr "Slet pensel" -#: app/actions/brushes-actions.c:65 +#: ../app/actions/brushes-actions.c:65 msgid "_Refresh Brushes" msgstr "_Opdatér pensler" -#: app/actions/brushes-actions.c:66 +#: ../app/actions/brushes-actions.c:66 msgid "Refresh brushes" msgstr "Opdatér pensler" -#: app/actions/brushes-actions.c:74 +#: ../app/actions/brushes-actions.c:74 msgid "_Edit Brush..." msgstr "_Redigér pensel..." -#: app/actions/brushes-actions.c:75 +#: ../app/actions/brushes-actions.c:75 msgid "Edit brush" msgstr "Redigér pensel" -#: app/actions/buffers-actions.c:42 +#: ../app/actions/buffers-actions.c:42 msgid "Buffers Menu" msgstr "Mellemlageremenu" -#: app/actions/buffers-actions.c:46 +#: ../app/actions/buffers-actions.c:46 msgid "_Paste Buffer" msgstr "_Indsæt mellemlager" -#: app/actions/buffers-actions.c:47 +#: ../app/actions/buffers-actions.c:47 msgid "Paste the selected buffer" msgstr "Indsæt det valgte mellemlager" -#: app/actions/buffers-actions.c:52 +#: ../app/actions/buffers-actions.c:52 msgid "Paste Buffer _Into" msgstr "Indsæt mellemlager _i" -#: app/actions/buffers-actions.c:53 +#: ../app/actions/buffers-actions.c:53 msgid "Paste the selected buffer into the selection" msgstr "Indsæt det valgte mellemlager i markeringen" -#: app/actions/buffers-actions.c:58 +#: ../app/actions/buffers-actions.c:58 msgid "Paste Buffer as _New" msgstr "Indsæt mellemlager som _ny" -#: app/actions/buffers-actions.c:59 +#: ../app/actions/buffers-actions.c:59 msgid "Paste the selected buffer as new image" msgstr "Indsæt det valgte mellemlager som nyt billede" -#: app/actions/buffers-actions.c:64 +#: ../app/actions/buffers-actions.c:64 msgid "_Delete Buffer" msgstr "_Slet mellemlager" -#: app/actions/buffers-actions.c:65 +#: ../app/actions/buffers-actions.c:65 msgid "Delete the selected buffer" msgstr "Slet det valgte mellemlager" -#: app/actions/channels-actions.c:44 +#: ../app/actions/channels-actions.c:44 msgid "Channels Menu" msgstr "Kanalmenu" -#: app/actions/channels-actions.c:48 +#: ../app/actions/channels-actions.c:48 msgid "_Edit Channel Attributes..." msgstr "_Redigér kanalegenskaber..." -#: app/actions/channels-actions.c:49 +#: ../app/actions/channels-actions.c:49 msgid "Edit channel attributes" msgstr "Redigér kanalegenskaber" -#: app/actions/channels-actions.c:54 +#: ../app/actions/channels-actions.c:54 msgid "_New Channel..." msgstr "_Ny kanal..." -#: app/actions/channels-actions.c:55 +#: ../app/actions/channels-actions.c:55 msgid "New channel..." msgstr "Ny kanal..." -#: app/actions/channels-actions.c:60 +#: ../app/actions/channels-actions.c:60 msgid "_New Channel" msgstr "_Ny kanal" -#: app/actions/channels-actions.c:61 +#: ../app/actions/channels-actions.c:61 msgid "New channel with last values" msgstr "Ny kanal med sidste værdier" -#: app/actions/channels-actions.c:66 +#: ../app/actions/channels-actions.c:66 msgid "D_uplicate Channel" msgstr "_Duplikér kanal" -#: app/actions/channels-actions.c:67 +#: ../app/actions/channels-actions.c:67 msgid "Duplicate channel" msgstr "Kopiér kanal" -#: app/actions/channels-actions.c:72 +#: ../app/actions/channels-actions.c:72 msgid "_Delete Channel" msgstr "S_let kanal" -#: app/actions/channels-actions.c:73 app/core/core-enums.c:1089 +#: ../app/actions/channels-actions.c:73 ../app/core/core-enums.c:1089 msgid "Delete channel" msgstr "Sletning af kanal" -#: app/actions/channels-actions.c:78 +#: ../app/actions/channels-actions.c:78 msgid "_Raise Channel" msgstr "_Hæv kanal" -#: app/actions/channels-actions.c:79 +#: ../app/actions/channels-actions.c:79 msgid "Raise channel" msgstr "Hæv kanal" -#: app/actions/channels-actions.c:84 +#: ../app/actions/channels-actions.c:84 msgid "Raise Channel to _Top" msgstr "Hæv kanal til _top" -#: app/actions/channels-actions.c:85 +#: ../app/actions/channels-actions.c:85 msgid "Raise channel to top" msgstr "Hæv kanal til top" -#: app/actions/channels-actions.c:90 +#: ../app/actions/channels-actions.c:90 msgid "_Lower Channel" msgstr "_Sænk kanal" -#: app/actions/channels-actions.c:91 +#: ../app/actions/channels-actions.c:91 msgid "Lower channel" msgstr "Sænk kanal" -#: app/actions/channels-actions.c:96 +#: ../app/actions/channels-actions.c:96 msgid "Lower Channel to _Bottom" msgstr "Sænk kanal til _bund" -#: app/actions/channels-actions.c:97 +#: ../app/actions/channels-actions.c:97 msgid "Lower channel to bottom" msgstr "Sænk kanal til bund" -#: app/actions/channels-actions.c:105 +#: ../app/actions/channels-actions.c:105 msgid "Channel to Sele_ction" msgstr "Kanal til _markering" -#: app/actions/channels-actions.c:106 +#: ../app/actions/channels-actions.c:106 msgid "Channel to selection" msgstr "Kanal til markering" -#: app/actions/channels-actions.c:111 app/actions/layers-actions.c:226 -#: app/actions/vectors-actions.c:173 +#: ../app/actions/channels-actions.c:111 ../app/actions/layers-actions.c:226 +#: ../app/actions/vectors-actions.c:173 msgid "_Add to Selection" msgstr "_Læg til markering" -#: app/actions/channels-actions.c:112 app/actions/vectors-actions.c:174 +#: ../app/actions/channels-actions.c:112 ../app/actions/vectors-actions.c:174 msgid "Add" msgstr "Tilføj" -#: app/actions/channels-actions.c:117 app/actions/layers-actions.c:231 -#: app/actions/layers-actions.c:254 app/actions/vectors-actions.c:179 +#: ../app/actions/channels-actions.c:117 ../app/actions/layers-actions.c:231 +#: ../app/actions/layers-actions.c:254 ../app/actions/vectors-actions.c:179 msgid "_Subtract from Selection" msgstr "_Træk fra markering" -#: app/actions/channels-actions.c:118 app/actions/vectors-actions.c:180 -#: app/widgets/gimpwidgets-constructors.c:69 -#: app/widgets/gimpwidgets-constructors.c:102 +#: ../app/actions/channels-actions.c:118 ../app/actions/vectors-actions.c:180 +#: ../app/widgets/gimpwidgets-constructors.c:69 +#: ../app/widgets/gimpwidgets-constructors.c:102 msgid "Subtract" msgstr "Træk fra" -#: app/actions/channels-actions.c:123 app/actions/layers-actions.c:236 -#: app/actions/layers-actions.c:259 app/actions/vectors-actions.c:185 +#: ../app/actions/channels-actions.c:123 ../app/actions/layers-actions.c:236 +#: ../app/actions/layers-actions.c:259 ../app/actions/vectors-actions.c:185 msgid "_Intersect with Selection" msgstr "_Kryds med markering" -#: app/actions/channels-actions.c:124 app/actions/vectors-actions.c:186 +#: ../app/actions/channels-actions.c:124 ../app/actions/vectors-actions.c:186 msgid "Intersect" msgstr "Fællesmængde" -#: app/actions/channels-commands.c:86 app/actions/channels-commands.c:383 +#: ../app/actions/channels-commands.c:86 +#: ../app/actions/channels-commands.c:383 msgid "Channel Attributes" msgstr "Kanalegenskaber" -#: app/actions/channels-commands.c:89 +#: ../app/actions/channels-commands.c:89 msgid "Edit Channel Attributes" msgstr "Redigér kanalegenskaber" -#: app/actions/channels-commands.c:91 +#: ../app/actions/channels-commands.c:91 msgid "Edit Channel Color" msgstr "Redigér kanalfarve" -#: app/actions/channels-commands.c:92 app/actions/channels-commands.c:124 +#: ../app/actions/channels-commands.c:92 +#: ../app/actions/channels-commands.c:124 msgid "Fill Opacity:" msgstr "Fyldugennemsigtighed:" -#: app/actions/channels-commands.c:117 app/actions/channels-commands.c:118 -#: app/actions/channels-commands.c:159 app/actions/channels-commands.c:163 -#: app/widgets/gimpchanneltreeview.c:256 +#: ../app/actions/channels-commands.c:117 +#: ../app/actions/channels-commands.c:118 +#: ../app/actions/channels-commands.c:159 +#: ../app/actions/channels-commands.c:163 +#: ../app/widgets/gimpchanneltreeview.c:256 msgid "New Channel" msgstr "Ny kanal" -#: app/actions/channels-commands.c:121 +#: ../app/actions/channels-commands.c:121 msgid "New Channel Options" msgstr "Indstillinger for ny kanal" -#: app/actions/channels-commands.c:123 +#: ../app/actions/channels-commands.c:123 msgid "New Channel Color" msgstr "Ny kanalfarve" -#: app/actions/channels-commands.c:246 +#: ../app/actions/channels-commands.c:246 #, c-format msgid "%s Channel Copy" msgstr "%s-kanalkopi" -#: app/actions/channels-commands.c:311 app/core/gimpselection.c:595 -#: app/pdb/selection_cmds.c:921 app/pdb/selection_cmds.c:1045 +#: ../app/actions/channels-commands.c:311 ../app/core/gimpselection.c:595 +#: ../app/pdb/selection_cmds.c:921 ../app/pdb/selection_cmds.c:1045 msgid "Channel to Selection" msgstr "Kanal til markering" -#: app/actions/colormap-editor-actions.c:43 +#: ../app/actions/colormap-editor-actions.c:43 msgid "Colormap Menu" msgstr "Farvepaletmenu" -#: app/actions/colormap-editor-actions.c:47 -#: app/actions/palette-editor-actions.c:47 +#: ../app/actions/colormap-editor-actions.c:47 +#: ../app/actions/palette-editor-actions.c:47 msgid "_Edit Color..." msgstr "/_Redigér farve..." -#: app/actions/colormap-editor-actions.c:48 -#: app/actions/palette-editor-actions.c:48 +#: ../app/actions/colormap-editor-actions.c:48 +#: ../app/actions/palette-editor-actions.c:48 msgid "Edit color" msgstr "Redigér farve" -#: app/actions/colormap-editor-actions.c:56 +#: ../app/actions/colormap-editor-actions.c:56 msgid "_Add Color from FG" msgstr "_Tilføj farve fra forgr." -#: app/actions/colormap-editor-actions.c:57 +#: ../app/actions/colormap-editor-actions.c:57 msgid "Add color from FG" msgstr "Tilføj farve fra forgr." -#: app/actions/colormap-editor-actions.c:62 +#: ../app/actions/colormap-editor-actions.c:62 msgid "_Add Color from BG" msgstr "_Tilføj farve fra baggr." -#: app/actions/colormap-editor-actions.c:63 +#: ../app/actions/colormap-editor-actions.c:63 msgid "Add color from BG" msgstr "Tilføj farve fra baggr." -#: app/actions/colormap-editor-commands.c:70 +#: ../app/actions/colormap-editor-commands.c:70 #, c-format msgid "Edit colormap entry #%d" msgstr "Redigér farvepaletselement nr. %d" -#: app/actions/colormap-editor-commands.c:76 +#: ../app/actions/colormap-editor-commands.c:76 msgid "Edit Colormap Entry" msgstr "Redigér farvepaletselement" -#: app/actions/context-actions.c:46 +#: ../app/actions/context-actions.c:46 msgid "_Context" msgstr "_Kontekst" -#: app/actions/context-actions.c:47 app/actions/layers-actions.c:53 -#: app/actions/plug-in-actions.c:64 +#: ../app/actions/context-actions.c:47 ../app/actions/layers-actions.c:53 +#: ../app/actions/plug-in-actions.c:64 msgid "_Colors" msgstr "_Farver" -#: app/actions/context-actions.c:48 app/actions/layers-actions.c:59 +#: ../app/actions/context-actions.c:48 ../app/actions/layers-actions.c:59 msgid "_Opacity" msgstr "_Ugennemsigtighed" -#: app/actions/context-actions.c:49 +#: ../app/actions/context-actions.c:49 msgid "Paint _Mode" msgstr "Tegne_måde" -#: app/actions/context-actions.c:50 +#: ../app/actions/context-actions.c:50 msgid "_Tool" msgstr "_Værktøj" -#: app/actions/context-actions.c:51 app/dialogs/preferences-dialog.c:1627 +#: ../app/actions/context-actions.c:51 +#: ../app/dialogs/preferences-dialog.c:1627 msgid "_Brush" msgstr "_Pensel" -#: app/actions/context-actions.c:52 app/actions/plug-in-actions.c:78 -#: app/dialogs/preferences-dialog.c:1630 +#: ../app/actions/context-actions.c:52 ../app/actions/plug-in-actions.c:78 +#: ../app/dialogs/preferences-dialog.c:1630 msgid "_Pattern" msgstr "_Mønster" -#: app/actions/context-actions.c:53 +#: ../app/actions/context-actions.c:53 msgid "_Palette" msgstr "_Palet" -#: app/actions/context-actions.c:54 app/dialogs/palette-import-dialog.c:219 -#: app/dialogs/preferences-dialog.c:1633 +#: ../app/actions/context-actions.c:54 +#: ../app/dialogs/palette-import-dialog.c:219 +#: ../app/dialogs/preferences-dialog.c:1633 msgid "_Gradient" msgstr "_Farveovergang" -#: app/actions/context-actions.c:55 +#: ../app/actions/context-actions.c:55 msgid "_Font" msgstr "_Skrifttype" -#: app/actions/context-actions.c:57 +#: ../app/actions/context-actions.c:57 msgid "_Shape" msgstr "_Form" -#: app/actions/context-actions.c:58 +#: ../app/actions/context-actions.c:58 msgid "_Radius" msgstr "_Radius" # RETMIG: god eller ej? -#: app/actions/context-actions.c:59 +#: ../app/actions/context-actions.c:59 msgid "S_pikes" msgstr "_Pigge" -#: app/actions/context-actions.c:60 +#: ../app/actions/context-actions.c:60 msgid "_Hardness" msgstr "_Hårdhed" -#: app/actions/context-actions.c:61 +#: ../app/actions/context-actions.c:61 msgid "_Aspect" msgstr "_Aspekt" -#: app/actions/context-actions.c:62 +#: ../app/actions/context-actions.c:62 msgid "A_ngle" msgstr "V_inkel" -#: app/actions/context-actions.c:65 +#: ../app/actions/context-actions.c:65 msgid "_Default Colors" msgstr "_Standardfarver" -#: app/actions/context-actions.c:70 +#: ../app/actions/context-actions.c:70 msgid "S_wap Colors" msgstr "_Ombyt farver" -#: app/actions/data-commands.c:79 app/core/gimpimage.c:1283 -#: app/core/gimppalette-import.c:219 app/core/gimppalette.c:523 -#: app/core/gimppalette.c:634 app/dialogs/palette-import-dialog.c:684 -#: app/pdb/image_cmds.c:3760 +#: ../app/actions/data-commands.c:79 ../app/core/gimpimage.c:1283 +#: ../app/core/gimppalette-import.c:219 ../app/core/gimppalette.c:523 +#: ../app/core/gimppalette.c:634 ../app/dialogs/palette-import-dialog.c:684 +#: ../app/pdb/image_cmds.c:3760 msgid "Untitled" msgstr "Unavngiven" -#: app/actions/data-commands.c:149 +#: ../app/actions/data-commands.c:149 msgid "Delete Object" msgstr "Slet objekt" -#: app/actions/data-commands.c:167 +#: ../app/actions/data-commands.c:167 #, c-format msgid "Are you sure you want to delete '%s' from the list and from disk?" msgstr "Er du sikker på at du vil slette '%s' fra listen og fra disken?" -#: app/actions/dialogs-actions.c:38 +#: ../app/actions/dialogs-actions.c:38 msgid "_Dialogs" msgstr "Vin_duer" -#: app/actions/dialogs-actions.c:39 +#: ../app/actions/dialogs-actions.c:39 msgid "Create New Doc_k" msgstr "Opret ny _dok" -#: app/actions/dialogs-actions.c:42 +#: ../app/actions/dialogs-actions.c:42 msgid "_Layers, Channels & Paths" msgstr "_Lag, kanaler og baner" -#: app/actions/dialogs-actions.c:47 +#: ../app/actions/dialogs-actions.c:47 msgid "_Brushes, Patterns & Gradients" msgstr "_Pensler, mønstre og farveovergange" -#: app/actions/dialogs-actions.c:52 +#: ../app/actions/dialogs-actions.c:52 msgid "_Misc. Stuff" msgstr "_Diverse" -#: app/actions/dialogs-actions.c:57 +#: ../app/actions/dialogs-actions.c:57 msgid "Tool_box" msgstr "Værktøjs_kasse" -#: app/actions/dialogs-actions.c:65 +#: ../app/actions/dialogs-actions.c:65 msgid "Tool _Options" msgstr "Værktøjs_indstillinger" -#: app/actions/dialogs-actions.c:70 +#: ../app/actions/dialogs-actions.c:70 msgid "_Device Status" msgstr "_Enhedsstatus" -#: app/actions/dialogs-actions.c:75 +#: ../app/actions/dialogs-actions.c:75 msgid "_Layers" msgstr "_Lag" -#: app/actions/dialogs-actions.c:80 +#: ../app/actions/dialogs-actions.c:80 msgid "_Channels" msgstr "_Kanaler" -#: app/actions/dialogs-actions.c:85 app/tools/gimpvectortool.c:162 +#: ../app/actions/dialogs-actions.c:85 ../app/tools/gimpvectortool.c:162 msgid "_Paths" msgstr "_Baner" -#: app/actions/dialogs-actions.c:90 +#: ../app/actions/dialogs-actions.c:90 msgid "Color_map" msgstr "Farve_palet" -#: app/actions/dialogs-actions.c:95 +#: ../app/actions/dialogs-actions.c:95 msgid "Histogra_m" msgstr "Histogra_m" -#: app/actions/dialogs-actions.c:100 +#: ../app/actions/dialogs-actions.c:100 msgid "_Selection Editor" msgstr "_Markeringsredigering" -#: app/actions/dialogs-actions.c:105 +#: ../app/actions/dialogs-actions.c:105 msgid "Na_vigation" msgstr "_Navigering" -#: app/actions/dialogs-actions.c:110 +#: ../app/actions/dialogs-actions.c:110 msgid "Undo _History" msgstr "F_ortrydelseshistorik" -#: app/actions/dialogs-actions.c:115 +#: ../app/actions/dialogs-actions.c:115 msgid "Colo_rs" msgstr "_Farver" -#: app/actions/dialogs-actions.c:120 +#: ../app/actions/dialogs-actions.c:120 msgid "_Brushes" msgstr "_Pensler" -#: app/actions/dialogs-actions.c:125 +#: ../app/actions/dialogs-actions.c:125 msgid "P_atterns" msgstr "_Mønstre" -#: app/actions/dialogs-actions.c:130 +#: ../app/actions/dialogs-actions.c:130 msgid "_Gradients" msgstr "_Farveovergange" -#: app/actions/dialogs-actions.c:135 +#: ../app/actions/dialogs-actions.c:135 msgid "Pal_ettes" msgstr "Pa_letter" -#: app/actions/dialogs-actions.c:140 +#: ../app/actions/dialogs-actions.c:140 msgid "_Fonts" msgstr "_Skrifttyper" -#: app/actions/dialogs-actions.c:145 +#: ../app/actions/dialogs-actions.c:145 msgid "B_uffers" msgstr "_Mellemlagere" -#: app/actions/dialogs-actions.c:150 +#: ../app/actions/dialogs-actions.c:150 msgid "_Images" msgstr "_Billeder" -#: app/actions/dialogs-actions.c:155 +#: ../app/actions/dialogs-actions.c:155 msgid "Document Histor_y" msgstr "Dokument_historik" -#: app/actions/dialogs-actions.c:160 +#: ../app/actions/dialogs-actions.c:160 msgid "_Templates" msgstr "S_kabeloner" -#: app/actions/dialogs-actions.c:165 +#: ../app/actions/dialogs-actions.c:165 msgid "T_ools" msgstr "Væ_rktøjer" -#: app/actions/dialogs-actions.c:170 +#: ../app/actions/dialogs-actions.c:170 msgid "Error Co_nsole" msgstr "Fejlk_onsol" -#: app/actions/dialogs-actions.c:180 +#: ../app/actions/dialogs-actions.c:180 msgid "_Preferences" msgstr "_Indstillinger" -#: app/actions/dialogs-actions.c:185 +#: ../app/actions/dialogs-actions.c:185 msgid "_Module Manager" msgstr "_Programudvidelser" -#: app/actions/dialogs-actions.c:190 +#: ../app/actions/dialogs-actions.c:190 msgid "_Tip of the Day" msgstr "_Dagens tip" -#: app/actions/dialogs-actions.c:195 +#: ../app/actions/dialogs-actions.c:195 msgid "_About" msgstr "_Om" -#: app/actions/dockable-actions.c:49 +#: ../app/actions/dockable-actions.c:49 msgid "Dialogs Menu" msgstr "Vinduesmenu" -#: app/actions/dockable-actions.c:53 +#: ../app/actions/dockable-actions.c:53 msgid "_Add Tab" msgstr "_Tilføj fane" -#: app/actions/dockable-actions.c:54 +#: ../app/actions/dockable-actions.c:54 msgid "_Preview Size" msgstr "_Miniaturestørrelse" -#: app/actions/dockable-actions.c:55 +#: ../app/actions/dockable-actions.c:55 msgid "_Tab Style" msgstr "_Fanestil" -#: app/actions/dockable-actions.c:58 +#: ../app/actions/dockable-actions.c:58 msgid "_Close Tab" msgstr "_Luk fane" -#: app/actions/dockable-actions.c:63 +#: ../app/actions/dockable-actions.c:63 msgid "_Detach Tab" msgstr "_Frigør fane" -#: app/actions/dockable-actions.c:68 +#: ../app/actions/dockable-actions.c:68 msgid "M_ove to Screen..." msgstr "_Flyt til skærm..." -#: app/actions/dockable-actions.c:76 +#: ../app/actions/dockable-actions.c:76 msgid "_Show Image Selection" msgstr "_Vis billedmarkering" # 'auto' er vist overflødigt -#: app/actions/dockable-actions.c:82 +#: ../app/actions/dockable-actions.c:82 msgid "Auto _Follow Active Image" msgstr "Følg aktivt _billede" -#: app/actions/dockable-actions.c:101 +#: ../app/actions/dockable-actions.c:101 msgid "_Tiny" msgstr "_Bitte" -#: app/actions/dockable-actions.c:102 +#: ../app/actions/dockable-actions.c:102 msgid "E_xtra Small" msgstr "Meget l_ille" -#: app/actions/dockable-actions.c:103 +#: ../app/actions/dockable-actions.c:103 msgid "_Small" msgstr "_Lille" -#: app/actions/dockable-actions.c:104 +#: ../app/actions/dockable-actions.c:104 msgid "_Medium" msgstr "_Mellem" -#: app/actions/dockable-actions.c:105 +#: ../app/actions/dockable-actions.c:105 msgid "_Large" msgstr "_Stor" -#: app/actions/dockable-actions.c:106 +#: ../app/actions/dockable-actions.c:106 msgid "Ex_tra Large" msgstr "Meget st_or" -#: app/actions/dockable-actions.c:107 +#: ../app/actions/dockable-actions.c:107 msgid "_Huge" msgstr "_Kæmpe" -#: app/actions/dockable-actions.c:108 +#: ../app/actions/dockable-actions.c:108 msgid "_Enormous" msgstr "_Enorm" -#: app/actions/dockable-actions.c:109 +#: ../app/actions/dockable-actions.c:109 msgid "_Gigantic" msgstr "_Gigantisk" -#: app/actions/dockable-actions.c:114 +#: ../app/actions/dockable-actions.c:114 msgid "_Icon" msgstr "_Ikon" -#: app/actions/dockable-actions.c:115 +#: ../app/actions/dockable-actions.c:115 msgid "Current _Status" msgstr "Aktuel _status" -#: app/actions/dockable-actions.c:116 +#: ../app/actions/dockable-actions.c:116 msgid "_Text" msgstr "_Tekst" -#: app/actions/dockable-actions.c:117 +#: ../app/actions/dockable-actions.c:117 msgid "I_con & Text" msgstr "I_kon og tekst" -#: app/actions/dockable-actions.c:118 +#: ../app/actions/dockable-actions.c:118 msgid "St_atus & Text" msgstr "St_atus og tekst" -#: app/actions/dockable-actions.c:127 +#: ../app/actions/dockable-actions.c:127 msgid "View as _List" msgstr "Vis som _liste" -#: app/actions/dockable-actions.c:132 +#: ../app/actions/dockable-actions.c:132 msgid "View as _Grid" msgstr "Vis som _gitter" -#: app/actions/documents-actions.c:42 +#: ../app/actions/documents-actions.c:42 msgid "Documents Menu" msgstr "Dokumentermenu" -#: app/actions/documents-actions.c:46 +#: ../app/actions/documents-actions.c:46 msgid "_Open Image" msgstr "_Åbn billede" -#: app/actions/documents-actions.c:47 +#: ../app/actions/documents-actions.c:47 msgid "Open the selected entry" msgstr "Åbn det valgte punkt" -#: app/actions/documents-actions.c:52 +#: ../app/actions/documents-actions.c:52 msgid "_Raise or Open Image" msgstr "_Hæv eller åbn billede" -#: app/actions/documents-actions.c:53 +#: ../app/actions/documents-actions.c:53 msgid "Raise window if already open" msgstr "Hæv vindue hvis allerede åbent" -#: app/actions/documents-actions.c:58 +#: ../app/actions/documents-actions.c:58 msgid "File Open _Dialog" msgstr "Filåbnings_vindue" -#: app/actions/documents-actions.c:59 +#: ../app/actions/documents-actions.c:59 msgid "Open image dialog" msgstr "Åbn billede" -#: app/actions/documents-actions.c:64 +#: ../app/actions/documents-actions.c:64 msgid "Remove _Entry" msgstr "Fjern _element" -#: app/actions/documents-actions.c:65 +#: ../app/actions/documents-actions.c:65 msgid "Remove the selected entry" msgstr "Fjern det valgte punkt" -#: app/actions/documents-actions.c:70 +#: ../app/actions/documents-actions.c:70 msgid "Recreate _Preview" msgstr "Genskab _miniature" -#: app/actions/documents-actions.c:71 +#: ../app/actions/documents-actions.c:71 msgid "Recreate preview" msgstr "Genskab miniature" -#: app/actions/documents-actions.c:76 +#: ../app/actions/documents-actions.c:76 msgid "Reload _all Previews" msgstr "Genindlæs _alle miniaturer" -#: app/actions/documents-actions.c:77 +#: ../app/actions/documents-actions.c:77 msgid "Reload all previews" msgstr "Genindlæs _alle miniaturer" -#: app/actions/documents-actions.c:82 +#: ../app/actions/documents-actions.c:82 msgid "Remove Dangling E_ntries" msgstr "Fjern ekstra _punkter" -#: app/actions/documents-actions.c:83 +#: ../app/actions/documents-actions.c:83 msgid "Remove dangling entries" msgstr "Fjern ekstra punkter" -#: app/actions/documents-commands.c:251 app/actions/file-commands.c:170 -#: 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:334 app/widgets/gimplayertreeview.c:804 -#: app/widgets/gimptoolbox-dnd.c:125 +#: ../app/actions/documents-commands.c:251 ../app/actions/file-commands.c:170 +#: ../app/dialogs/file-open-dialog.c:198 ../app/dialogs/file-open-dialog.c:249 +#: ../app/dialogs/file-open-location-dialog.c:195 +#: ../app/display/gimpdisplayshell-dnd.c:334 +#: ../app/widgets/gimplayertreeview.c:804 ../app/widgets/gimptoolbox-dnd.c:125 #, c-format msgid "" "Opening '%s' failed:\n" @@ -1117,237 +1133,236 @@ "\n" "%s" -#: app/actions/drawable-actions.c:45 +#: ../app/actions/drawable-actions.c:45 msgid "_Desaturate" msgstr "_Afmætning" -#: app/actions/drawable-actions.c:50 +#: ../app/actions/drawable-actions.c:50 msgid "_Equalize" msgstr "_Udlign" -#: app/actions/drawable-actions.c:55 +#: ../app/actions/drawable-actions.c:55 msgid "In_vert" msgstr "_Invertér" -#: app/actions/drawable-actions.c:60 +#: ../app/actions/drawable-actions.c:60 msgid "_White Balance" msgstr "_Hvidbalance" -#: app/actions/drawable-actions.c:65 +#: ../app/actions/drawable-actions.c:65 msgid "_Offset..." msgstr "_Forskydning..." -#: app/actions/drawable-actions.c:73 app/actions/vectors-actions.c:153 +#: ../app/actions/drawable-actions.c:73 ../app/actions/vectors-actions.c:153 msgid "_Linked" msgstr "_Kædet" -#: app/actions/drawable-actions.c:79 app/actions/vectors-actions.c:147 +#: ../app/actions/drawable-actions.c:79 ../app/actions/vectors-actions.c:147 msgid "_Visible" msgstr "_Synlig" -#: app/actions/drawable-actions.c:88 app/actions/image-actions.c:141 +#: ../app/actions/drawable-actions.c:88 ../app/actions/image-actions.c:141 msgid "Flip _Horizontally" msgstr "Vend _vandret" -#: app/actions/drawable-actions.c:93 app/actions/image-actions.c:146 +#: ../app/actions/drawable-actions.c:93 ../app/actions/image-actions.c:146 msgid "Flip _Vertically" msgstr "Vend _lodret" #. please use the degree symbol in the translation -#: app/actions/drawable-actions.c:101 app/actions/image-actions.c:155 +#: ../app/actions/drawable-actions.c:101 ../app/actions/image-actions.c:155 msgid "Rotate 90 degrees _CW" msgstr "Rotér 90° m_ed uret" -#: app/actions/drawable-actions.c:106 app/actions/image-actions.c:160 +#: ../app/actions/drawable-actions.c:106 ../app/actions/image-actions.c:160 msgid "Rotate _180 degrees" msgstr "Rotér _180°" -#: app/actions/drawable-actions.c:111 app/actions/image-actions.c:165 +#: ../app/actions/drawable-actions.c:111 ../app/actions/image-actions.c:165 msgid "Rotate 90 degrees CC_W" msgstr "Rotér 90° m_od uret" -#: app/actions/drawable-commands.c:58 +#: ../app/actions/drawable-commands.c:58 msgid "Desaturate operates only on RGB color layers." msgstr "Afmætning opererer kun på lag med RGB-farver." -#: app/actions/drawable-commands.c:76 +#: ../app/actions/drawable-commands.c:76 msgid "Equalize does not operate on indexed layers." msgstr "Udjævning opererer ikke på indekserede lag." -#: app/actions/drawable-commands.c:94 +#: ../app/actions/drawable-commands.c:94 msgid "Invert does not operate on indexed layers." msgstr "Invertering virker ikke på indekserede lag." -#: app/actions/drawable-commands.c:114 +#: ../app/actions/drawable-commands.c:114 msgid "White Balance operates only on RGB color layers." msgstr "Hvidbalance virker kun på lag med RGB-farver." -#: app/actions/edit-actions.c:61 +#: ../app/actions/edit-actions.c:61 msgid "_Edit" msgstr "_Redigér" -#: app/actions/edit-actions.c:62 +#: ../app/actions/edit-actions.c:62 msgid "_Buffer" msgstr "_Mellemlagere" -#: app/actions/edit-actions.c:65 app/actions/edit-actions.c:230 +#: ../app/actions/edit-actions.c:65 ../app/actions/edit-actions.c:230 msgid "_Undo" msgstr "_Fortryd" -#: app/actions/edit-actions.c:66 app/dialogs/dialogs.c:183 -#: app/pdb/internal_procs.c:209 +#: ../app/actions/edit-actions.c:66 ../app/dialogs/dialogs.c:183 +#: ../app/pdb/internal_procs.c:209 msgid "Undo" msgstr "Fortryd" -#: app/actions/edit-actions.c:71 app/actions/edit-actions.c:231 +#: ../app/actions/edit-actions.c:71 ../app/actions/edit-actions.c:231 msgid "_Redo" msgstr "_Omgør" -#: app/actions/edit-actions.c:72 +#: ../app/actions/edit-actions.c:72 msgid "Redo" msgstr "Omgør" -#: app/actions/edit-actions.c:77 +#: ../app/actions/edit-actions.c:77 msgid "_Clear Undo History" msgstr "_Ryd fortrydelseshistorik" -#: app/actions/edit-actions.c:78 +#: ../app/actions/edit-actions.c:78 msgid "Clear undo history..." msgstr "Ryd fortrydelseshistorik" -#: app/actions/edit-actions.c:83 +#: ../app/actions/edit-actions.c:83 msgid "Cu_t" msgstr "K_lip" -#: app/actions/edit-actions.c:88 +#: ../app/actions/edit-actions.c:88 msgid "_Copy" msgstr "_Kopiér" #. GIMP_STOCK_COPY_VISIBLE, -#: app/actions/edit-actions.c:93 -#, fuzzy +#: ../app/actions/edit-actions.c:93 msgid "Copy _Visible" -msgstr "_Synlig" +msgstr "Kopiér _synlig" -#: app/actions/edit-actions.c:98 +#: ../app/actions/edit-actions.c:98 msgid "_Paste" msgstr "_Indsæt" -#: app/actions/edit-actions.c:103 +#: ../app/actions/edit-actions.c:103 msgid "Paste _Into" msgstr "Indsæt _i" -#: app/actions/edit-actions.c:108 +#: ../app/actions/edit-actions.c:108 msgid "Paste as _New" msgstr "Indsæt som _ny" -#: app/actions/edit-actions.c:113 +#: ../app/actions/edit-actions.c:113 msgid "Cu_t Named..." msgstr "K_lip navngiven..." -#: app/actions/edit-actions.c:118 +#: ../app/actions/edit-actions.c:118 msgid "_Copy Named..." msgstr "_Kopiér navngiven" -#: app/actions/edit-actions.c:123 +#: ../app/actions/edit-actions.c:123 msgid "_Paste Named..." msgstr "_Indsæt navngiven" -#: app/actions/edit-actions.c:128 +#: ../app/actions/edit-actions.c:128 msgid "Cl_ear" msgstr "_Ryd" -#: app/actions/edit-actions.c:136 +#: ../app/actions/edit-actions.c:136 msgid "Fill with _FG Color" msgstr "Udfyld med _fg.-farve" -#: app/actions/edit-actions.c:141 +#: ../app/actions/edit-actions.c:141 msgid "Fill with B_G Color" msgstr "Udfyld med _bg.-farve" -#: app/actions/edit-actions.c:146 +#: ../app/actions/edit-actions.c:146 msgid "Fill with P_attern" msgstr "Udfyld med _mønster" -#: app/actions/edit-actions.c:214 +#: ../app/actions/edit-actions.c:214 #, c-format msgid "_Undo %s" msgstr "_Fortryd '%s'" -#: app/actions/edit-actions.c:219 +#: ../app/actions/edit-actions.c:219 #, c-format msgid "_Redo %s" msgstr "_Omgør '%s'" -#: app/actions/edit-commands.c:104 +#: ../app/actions/edit-commands.c:104 msgid "Clear Undo History" msgstr "Ryd fortrydelseshistorik" -#: app/actions/edit-commands.c:122 +#: ../app/actions/edit-commands.c:122 msgid "Really clear image's undo history?" msgstr "Vil du virkelig rydde billedets fortrydelseshistorik?" -#: app/actions/edit-commands.c:210 +#: ../app/actions/edit-commands.c:210 msgid "Cut Named" msgstr "Klip navngiven" -#: app/actions/edit-commands.c:213 app/actions/edit-commands.c:233 +#: ../app/actions/edit-commands.c:213 ../app/actions/edit-commands.c:233 msgid "Enter a name for this buffer" msgstr "Indtast et navn til dette mellemlager" -#: app/actions/edit-commands.c:230 +#: ../app/actions/edit-commands.c:230 msgid "Copy Named" msgstr "Kopiér navngiven" -#: app/actions/edit-commands.c:337 +#: ../app/actions/edit-commands.c:337 msgid "There is no active layer or channel to cut from." msgstr "Der er ikke noget aktivt lag eller nogen aktiv kanal at klippe fra." -#: app/actions/edit-commands.c:349 app/actions/edit-commands.c:386 +#: ../app/actions/edit-commands.c:349 ../app/actions/edit-commands.c:386 msgid "(Unnamed Buffer)" msgstr "(unavngivent mellemlager)" -#: app/actions/edit-commands.c:374 +#: ../app/actions/edit-commands.c:374 msgid "There is no active layer or channel to copy from." msgstr "Der er ikke noget aktivt lag eller nogen aktiv kanal at kopiere fra." -#: app/actions/error-console-actions.c:40 +#: ../app/actions/error-console-actions.c:40 msgid "Error Console Menu" msgstr "Fejlkonsolmenu" -#: app/actions/error-console-actions.c:44 +#: ../app/actions/error-console-actions.c:44 msgid "_Clear Errors" msgstr "_Ryd fejl" -#: app/actions/error-console-actions.c:45 +#: ../app/actions/error-console-actions.c:45 msgid "Clear errors" msgstr "Ryd fejl" -#: app/actions/error-console-actions.c:53 +#: ../app/actions/error-console-actions.c:53 msgid "Save _All Errors to File..." msgstr "Gem _alle fejl i fil..." -#: app/actions/error-console-actions.c:54 +#: ../app/actions/error-console-actions.c:54 msgid "Save all errors" msgstr "Gem alle fejl" -#: app/actions/error-console-actions.c:59 +#: ../app/actions/error-console-actions.c:59 msgid "Save _Selection to File..." msgstr "Gem det _markerede i fil..." -#: app/actions/error-console-actions.c:60 +#: ../app/actions/error-console-actions.c:60 msgid "Save selection" msgstr "Gem markering" -#: app/actions/error-console-commands.c:69 +#: ../app/actions/error-console-commands.c:69 msgid "Cannot save. Nothing is selected." msgstr "Kan ikke gemme. Intet er valgt." -#: app/actions/error-console-commands.c:80 +#: ../app/actions/error-console-commands.c:80 msgid "Save Error Log to File" msgstr "Gem fejllog i fejl" -#: app/actions/error-console-commands.c:132 +#: ../app/actions/error-console-commands.c:132 #, c-format msgid "" "Error writing file '%s':\n" @@ -1356,55 +1371,55 @@ "Fejl ved skrivning af filen '%s':\n" "%s" -#: app/actions/file-actions.c:61 +#: ../app/actions/file-actions.c:61 msgid "_File" msgstr "_Fil" -#: app/actions/file-actions.c:62 +#: ../app/actions/file-actions.c:62 msgid "Open _Recent" msgstr "Åbn _seneste" -#: app/actions/file-actions.c:63 +#: ../app/actions/file-actions.c:63 msgid "_Acquire" msgstr "Ind_hent" -#: app/actions/file-actions.c:66 app/actions/file-actions.c:71 +#: ../app/actions/file-actions.c:66 ../app/actions/file-actions.c:71 msgid "_Open..." msgstr "_Åbn..." -#: app/actions/file-actions.c:76 +#: ../app/actions/file-actions.c:76 msgid "Op_en as Layer..." msgstr "Å_bn som lag..." -#: app/actions/file-actions.c:81 +#: ../app/actions/file-actions.c:81 msgid "Open _Location..." msgstr "Åbn _placering..." -#: app/actions/file-actions.c:86 +#: ../app/actions/file-actions.c:86 msgid "_Save" msgstr "_Gem" -#: app/actions/file-actions.c:91 +#: ../app/actions/file-actions.c:91 msgid "Save _as..." msgstr "Gem _som..." -#: app/actions/file-actions.c:96 +#: ../app/actions/file-actions.c:96 msgid "Save a Cop_y..." msgstr "Gem en _kopi..." -#: app/actions/file-actions.c:101 +#: ../app/actions/file-actions.c:101 msgid "Save as _Template..." msgstr "Gem som sk_abelon..." -#: app/actions/file-actions.c:106 +#: ../app/actions/file-actions.c:106 msgid "Re_vert..." msgstr "_Forkast..." -#: app/actions/file-actions.c:111 +#: ../app/actions/file-actions.c:111 msgid "_Quit" msgstr "_Afslut" -#: app/actions/file-commands.c:215 app/dialogs/file-save-dialog.c:281 +#: ../app/actions/file-commands.c:215 ../app/dialogs/file-save-dialog.c:282 #, c-format msgid "" "Saving '%s' failed:\n" @@ -1415,37 +1430,37 @@ "\n" "%s" -#: app/actions/file-commands.c:238 app/dialogs/file-save-dialog.c:78 +#: ../app/actions/file-commands.c:238 ../app/dialogs/file-save-dialog.c:78 msgid "Save Image" msgstr "Gem billede" -#: app/actions/file-commands.c:254 +#: ../app/actions/file-commands.c:254 msgid "Save a Copy of the Image" msgstr "Gem en kopi af billedet" -#: app/actions/file-commands.c:265 +#: ../app/actions/file-commands.c:265 msgid "Create New Template" msgstr "Opret en ny skabelon" -#: app/actions/file-commands.c:269 +#: ../app/actions/file-commands.c:269 msgid "Enter a name for this template" msgstr "Indtast et navn til denne skabelon" -#: app/actions/file-commands.c:291 +#: ../app/actions/file-commands.c:291 msgid "Revert failed. No file name associated with this image." msgstr "" "Genskabning mislykkedes. Intet filnavn er associeret med dette billede." -#: app/actions/file-commands.c:303 +#: ../app/actions/file-commands.c:303 msgid "Revert Image" msgstr "Forkast billede" -#: app/actions/file-commands.c:324 +#: ../app/actions/file-commands.c:324 #, c-format msgid "Revert '%s' to '%s'?" msgstr "Bring \"%s\" tilbage til \"%s\"?" -#: app/actions/file-commands.c:330 +#: ../app/actions/file-commands.c:330 msgid "" "By reverting the image to the state saved on disk, you will lose all " "changes, including all undo information." @@ -1453,19 +1468,19 @@ "Ved at bringe billedet tilbage til den tilstand der er gemt på disken, vil " "du miste alle dine ændringer inklusive al fortrydelsesinformation." -#: app/actions/file-commands.c:380 +#: ../app/actions/file-commands.c:380 msgid "Open Image as Layer" msgstr "Åbn billede som lag" -#: app/actions/file-commands.c:385 app/dialogs/file-open-dialog.c:74 +#: ../app/actions/file-commands.c:385 ../app/dialogs/file-open-dialog.c:74 msgid "Open Image" msgstr "Åbn billede" -#: app/actions/file-commands.c:451 +#: ../app/actions/file-commands.c:451 msgid "(Unnamed Template)" msgstr "(unavngiven skabelon)" -#: app/actions/file-commands.c:500 +#: ../app/actions/file-commands.c:500 #, c-format msgid "" "Reverting to '%s' failed:\n" @@ -1476,258 +1491,259 @@ "\n" "%s" -#: app/actions/fonts-actions.c:44 +#: ../app/actions/fonts-actions.c:44 msgid "Fonts Menu" msgstr "Skrifttypermenu" -#: app/actions/fonts-actions.c:48 +#: ../app/actions/fonts-actions.c:48 msgid "_Rescan Font List" msgstr "_Genskan skrifttypeliste" -#: app/actions/fonts-actions.c:49 +#: ../app/actions/fonts-actions.c:49 msgid "Rescan font list" msgstr "Genskan skrifttypeliste" -#: app/actions/gradient-editor-actions.c:46 +#: ../app/actions/gradient-editor-actions.c:46 msgid "Gradient Editor Menu" msgstr "Farveovergangsredigeringsmenu" -#: app/actions/gradient-editor-actions.c:50 +#: ../app/actions/gradient-editor-actions.c:50 msgid "_Load Left Color From" msgstr "_Hent venstre farve fra" -#: app/actions/gradient-editor-actions.c:52 +#: ../app/actions/gradient-editor-actions.c:52 msgid "_Save Left Color To" msgstr "_Gem venstre farve i" -#: app/actions/gradient-editor-actions.c:55 +#: ../app/actions/gradient-editor-actions.c:55 msgid "Load Right Color Fr_om" msgstr "Hent højre farve _fra" -#: app/actions/gradient-editor-actions.c:57 +#: ../app/actions/gradient-editor-actions.c:57 msgid "Sa_ve Right Color To" msgstr "G_em højre farve i" -#: app/actions/gradient-editor-actions.c:63 +#: ../app/actions/gradient-editor-actions.c:63 msgid "L_eft Endpoint's Color..." msgstr "_Venstre endepunkts farve..." -#: app/actions/gradient-editor-actions.c:68 +#: ../app/actions/gradient-editor-actions.c:68 msgid "R_ight Endpoint's Color..." msgstr "_Højre endepunkts farve..." -#: app/actions/gradient-editor-actions.c:108 +#: ../app/actions/gradient-editor-actions.c:108 msgid "Ble_nd Endpoints' Colors" msgstr "Bland endepunkternes f_arver" -#: app/actions/gradient-editor-actions.c:113 +#: ../app/actions/gradient-editor-actions.c:113 msgid "Blend Endpoints' Opacit_y" msgstr "Bland endepunkternes _ugennemsigtighed" -#: app/actions/gradient-editor-actions.c:143 +#: ../app/actions/gradient-editor-actions.c:143 msgid "_Left Neighbor's Right Endpoint" msgstr "_Venstre nabos højre endepunkt" -#: app/actions/gradient-editor-actions.c:148 +#: ../app/actions/gradient-editor-actions.c:148 msgid "_Right Endpoint" msgstr "_Højre endepunkt" -#: app/actions/gradient-editor-actions.c:153 -#: app/actions/gradient-editor-actions.c:201 +#: ../app/actions/gradient-editor-actions.c:153 +#: ../app/actions/gradient-editor-actions.c:201 msgid "_FG Color" msgstr "_Forgrundsfarve" -#: app/actions/gradient-editor-actions.c:158 -#: app/actions/gradient-editor-actions.c:206 +#: ../app/actions/gradient-editor-actions.c:158 +#: ../app/actions/gradient-editor-actions.c:206 msgid "_BG Color" msgstr "_Baggrundsfarve" -#: app/actions/gradient-editor-actions.c:191 +#: ../app/actions/gradient-editor-actions.c:191 msgid "_Right Neighbor's Left Endpoint" msgstr "_Højre nabos venstre endepunkt" -#: app/actions/gradient-editor-actions.c:196 +#: ../app/actions/gradient-editor-actions.c:196 msgid "_Left Endpoint" msgstr "Venstre endepunkt" -#: app/actions/gradient-editor-actions.c:245 +#: ../app/actions/gradient-editor-actions.c:245 msgid "_Linear" msgstr "_Lineær" -#: app/actions/gradient-editor-actions.c:250 +#: ../app/actions/gradient-editor-actions.c:250 msgid "_Curved" msgstr "_Buet" # -funktion er underforstået pga. overmenu -#: app/actions/gradient-editor-actions.c:255 +#: ../app/actions/gradient-editor-actions.c:255 msgid "_Sinusoidal" msgstr "_Sinus" -#: app/actions/gradient-editor-actions.c:260 +#: ../app/actions/gradient-editor-actions.c:260 msgid "Spherical (i_ncreasing)" msgstr "Sfærisk (_voksende)" -#: app/actions/gradient-editor-actions.c:265 +#: ../app/actions/gradient-editor-actions.c:265 msgid "Spherical (_decreasing)" msgstr "Sfærisk (_aftagende)" -#: app/actions/gradient-editor-actions.c:270 -#: app/actions/gradient-editor-actions.c:293 +#: ../app/actions/gradient-editor-actions.c:270 +#: ../app/actions/gradient-editor-actions.c:293 msgid "(Varies)" msgstr "(varierer)" -#: app/actions/gradient-editor-actions.c:278 app/actions/image-actions.c:123 +#: ../app/actions/gradient-editor-actions.c:278 +#: ../app/actions/image-actions.c:123 msgid "_RGB" msgstr "_RGB" -#: app/actions/gradient-editor-actions.c:283 +#: ../app/actions/gradient-editor-actions.c:283 msgid "HSV (_counter-clockwise hue)" msgstr "HSV (farvetone m_od uret)" -#: app/actions/gradient-editor-actions.c:288 +#: ../app/actions/gradient-editor-actions.c:288 msgid "HSV (clockwise _hue)" msgstr "HSV (farvetone m_ed uret)" -#: app/actions/gradient-editor-actions.c:301 +#: ../app/actions/gradient-editor-actions.c:301 msgid "Zoom In" msgstr "Zoom ind" -#: app/actions/gradient-editor-actions.c:302 -#: app/actions/palette-editor-actions.c:78 app/actions/view-actions.c:216 -#: app/widgets/widgets-enums.c:353 +#: ../app/actions/gradient-editor-actions.c:302 +#: ../app/actions/palette-editor-actions.c:78 +#: ../app/actions/view-actions.c:216 ../app/widgets/widgets-enums.c:353 msgid "Zoom in" msgstr "Zoom ind" -#: app/actions/gradient-editor-actions.c:307 +#: ../app/actions/gradient-editor-actions.c:307 msgid "Zoom Out" msgstr "Zoom ud" -#: app/actions/gradient-editor-actions.c:308 -#: app/actions/palette-editor-actions.c:84 app/actions/view-actions.c:210 -#: app/widgets/widgets-enums.c:354 +#: ../app/actions/gradient-editor-actions.c:308 +#: ../app/actions/palette-editor-actions.c:84 +#: ../app/actions/view-actions.c:210 ../app/widgets/widgets-enums.c:354 msgid "Zoom out" msgstr "Zoom ud" # 'all' er mystisk, betyder 100% -#: app/actions/gradient-editor-actions.c:313 +#: ../app/actions/gradient-editor-actions.c:313 msgid "Zoom All" msgstr "Zoom 100%" # 'all' er mystisk, betyder 100% -#: app/actions/gradient-editor-actions.c:314 -#: app/actions/palette-editor-actions.c:90 +#: ../app/actions/gradient-editor-actions.c:314 +#: ../app/actions/palette-editor-actions.c:90 msgid "Zoom all" msgstr "Zoom 100%" -#: app/actions/gradient-editor-actions.c:589 +#: ../app/actions/gradient-editor-actions.c:589 msgid "_Blending Function for Segment" msgstr "_Blandingsfunktion for segment" -#: app/actions/gradient-editor-actions.c:591 +#: ../app/actions/gradient-editor-actions.c:591 msgid "Coloring _Type for Segment" msgstr "Farve_type for segment" -#: app/actions/gradient-editor-actions.c:594 +#: ../app/actions/gradient-editor-actions.c:594 msgid "_Flip Segment" msgstr "_Vend segment" -#: app/actions/gradient-editor-actions.c:596 +#: ../app/actions/gradient-editor-actions.c:596 msgid "_Replicate Segment..." msgstr "_Kopiér segment..." -#: app/actions/gradient-editor-actions.c:598 +#: ../app/actions/gradient-editor-actions.c:598 msgid "Split Segment at _Midpoint" msgstr "Opdel segment ved _midtpunktet" -#: app/actions/gradient-editor-actions.c:600 +#: ../app/actions/gradient-editor-actions.c:600 msgid "Split Segment _Uniformly..." msgstr "Opdel segment _jævnt..." -#: app/actions/gradient-editor-actions.c:602 +#: ../app/actions/gradient-editor-actions.c:602 msgid "_Delete Segment" msgstr "_Slet segment" -#: app/actions/gradient-editor-actions.c:604 +#: ../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:606 +#: ../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:611 +#: ../app/actions/gradient-editor-actions.c:611 msgid "_Blending Function for Selection" msgstr "_Blandingsfunktion for markering" -#: app/actions/gradient-editor-actions.c:613 +#: ../app/actions/gradient-editor-actions.c:613 msgid "Coloring _Type for Selection" msgstr "Farve_type for markering" -#: app/actions/gradient-editor-actions.c:616 +#: ../app/actions/gradient-editor-actions.c:616 msgid "_Flip Selection" msgstr "_Vend det markerede" -#: app/actions/gradient-editor-actions.c:618 +#: ../app/actions/gradient-editor-actions.c:618 msgid "_Replicate Selection..." msgstr "_Kopiér det markerede..." -#: app/actions/gradient-editor-actions.c:620 +#: ../app/actions/gradient-editor-actions.c:620 msgid "Split Segments at _Midpoints" msgstr "Opdel segmenter ved _midtpunkter" -#: app/actions/gradient-editor-actions.c:622 +#: ../app/actions/gradient-editor-actions.c:622 msgid "Split Segments _Uniformly..." msgstr "Opdel segmenter _jævnt..." -#: app/actions/gradient-editor-actions.c:624 +#: ../app/actions/gradient-editor-actions.c:624 msgid "_Delete Selection" msgstr "_Slet det markerede" -#: app/actions/gradient-editor-actions.c:626 +#: ../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:628 +#: ../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:85 +#: ../app/actions/gradient-editor-commands.c:85 msgid "Left Endpoint Color" msgstr "Venstre endepunkts farve" -#: app/actions/gradient-editor-commands.c:87 +#: ../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:189 +#: ../app/actions/gradient-editor-commands.c:189 msgid "Right Endpoint Color" msgstr "Højre endepunkts farve" -#: app/actions/gradient-editor-commands.c:191 +#: ../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:358 +#: ../app/actions/gradient-editor-commands.c:358 msgid "Replicate Segment" msgstr "Kopiér segment" -#: app/actions/gradient-editor-commands.c:359 +#: ../app/actions/gradient-editor-commands.c:359 msgid "Replicate Gradient Segment" msgstr "Kopiér overgangssegment" -#: app/actions/gradient-editor-commands.c:363 +#: ../app/actions/gradient-editor-commands.c:363 msgid "Replicate Selection" msgstr "Kopiér det markerede" -#: app/actions/gradient-editor-commands.c:364 +#: ../app/actions/gradient-editor-commands.c:364 msgid "Replicate Gradient Selection" msgstr "Kopiér overgangsmarkeringen" -#: app/actions/gradient-editor-commands.c:376 +#: ../app/actions/gradient-editor-commands.c:376 msgid "Replicate" msgstr "Kopiér" -#: app/actions/gradient-editor-commands.c:391 +#: ../app/actions/gradient-editor-commands.c:391 msgid "" "Select the number of times\n" "to replicate the selected segment." @@ -1735,7 +1751,7 @@ "Vælg antal gange du ønsker\n" "at kopiere det markerede segment." -#: app/actions/gradient-editor-commands.c:394 +#: ../app/actions/gradient-editor-commands.c:394 msgid "" "Select the number of times\n" "to replicate the selection." @@ -1743,27 +1759,27 @@ "Vælg antal gange du ønsker\n" "at kopiere det markerede." -#: app/actions/gradient-editor-commands.c:452 +#: ../app/actions/gradient-editor-commands.c:452 msgid "Split Segment Uniformly" msgstr "Opdel segment jævnt" -#: app/actions/gradient-editor-commands.c:453 +#: ../app/actions/gradient-editor-commands.c:453 msgid "Split Gradient Segment Uniformly" msgstr "Opdel overgangssegment jævnt" -#: app/actions/gradient-editor-commands.c:457 +#: ../app/actions/gradient-editor-commands.c:457 msgid "Split Segments Uniformly" msgstr "Opdel segmenter jævnt" -#: app/actions/gradient-editor-commands.c:458 +#: ../app/actions/gradient-editor-commands.c:458 msgid "Split Gradient Segments Uniformly" msgstr "Opdel overgangssegmenter jævnt" -#: app/actions/gradient-editor-commands.c:470 +#: ../app/actions/gradient-editor-commands.c:470 msgid "Split" msgstr "Opdel" -#: app/actions/gradient-editor-commands.c:486 +#: ../app/actions/gradient-editor-commands.c:486 msgid "" "Select the number of uniform parts\n" "in which to split the selected segment." @@ -1771,7 +1787,7 @@ "Vælg antallet af ens dele du \n" "vil opdele det markerede segment i." -#: app/actions/gradient-editor-commands.c:489 +#: ../app/actions/gradient-editor-commands.c:489 msgid "" "Select the number of uniform parts\n" "in which to split the segments in the selection." @@ -1779,1636 +1795,1641 @@ "Vælg antallet af ens dele du vil\n" "opdele segment i det markerede i." -#: app/actions/gradients-actions.c:44 +#: ../app/actions/gradients-actions.c:44 msgid "Gradients Menu" msgstr "Farveovergangemenu" # farve- kan stryges her -#: app/actions/gradients-actions.c:48 +#: ../app/actions/gradients-actions.c:48 msgid "_New Gradient" msgstr "_Ny overgang" # der er mere plads her så vi har råd til at indskyde farve- -#: app/actions/gradients-actions.c:49 +#: ../app/actions/gradients-actions.c:49 msgid "New gradient" msgstr "Ny farveovergang" -#: app/actions/gradients-actions.c:54 +#: ../app/actions/gradients-actions.c:54 msgid "D_uplicate Gradient" msgstr "_Duplikér overgang" -#: app/actions/gradients-actions.c:55 +#: ../app/actions/gradients-actions.c:55 msgid "Duplicate gradient" msgstr "Duplikér overgang" -#: app/actions/gradients-actions.c:60 +#: ../app/actions/gradients-actions.c:60 msgid "Save as _POV-Ray..." msgstr "Gem som _POV-Ray..." -#: app/actions/gradients-actions.c:61 +#: ../app/actions/gradients-actions.c:61 msgid "Save gradient as POV-Ray" msgstr "Gem overgang som POV-Ray" -#: app/actions/gradients-actions.c:66 +#: ../app/actions/gradients-actions.c:66 msgid "_Delete Gradient..." msgstr "_Slet overgang..." -#: app/actions/gradients-actions.c:67 +#: ../app/actions/gradients-actions.c:67 msgid "Delete gradient" msgstr "Slet overgang" -#: app/actions/gradients-actions.c:72 +#: ../app/actions/gradients-actions.c:72 msgid "_Refresh Gradients" msgstr "_Opdatér overgange" -#: app/actions/gradients-actions.c:73 +#: ../app/actions/gradients-actions.c:73 msgid "Refresh gradients" msgstr "Opdatér overgange" -#: app/actions/gradients-actions.c:81 +#: ../app/actions/gradients-actions.c:81 msgid "_Edit Gradient..." msgstr "_Redigér overgang..." -#: app/actions/gradients-actions.c:82 +#: ../app/actions/gradients-actions.c:82 msgid "Edit gradient" msgstr "Redigér overgang" -#: app/actions/gradients-commands.c:65 +#: ../app/actions/gradients-commands.c:65 #, c-format msgid "Save '%s' as POV-Ray" msgstr "Gem \"%s\" som POV-Ray" -#: app/actions/help-actions.c:38 app/actions/help-actions.c:41 +#: ../app/actions/help-actions.c:38 ../app/actions/help-actions.c:41 msgid "_Help" msgstr "_Hjælp" -#: app/actions/help-actions.c:46 +#: ../app/actions/help-actions.c:46 msgid "_Context Help" msgstr "_Konteksthjælp" -#: app/actions/image-actions.c:47 +#: ../app/actions/image-actions.c:47 msgid "Toolbox Menu" msgstr "Værktøjskassemenu" -#: app/actions/image-actions.c:51 app/actions/image-actions.c:55 +#: ../app/actions/image-actions.c:51 ../app/actions/image-actions.c:55 msgid "Image Menu" msgstr "Billedmenu" # lidt langt, men er der noget bedre? 'Ekstra' antyder at funktionerne # under menuen ikke er aktiveret endnu. -#: app/actions/image-actions.c:58 +#: ../app/actions/image-actions.c:58 msgid "_Xtns" msgstr "_Udvidelser" -#: app/actions/image-actions.c:59 +#: ../app/actions/image-actions.c:59 msgid "_Image" msgstr "_Billede" -#: app/actions/image-actions.c:60 +#: ../app/actions/image-actions.c:60 msgid "_Mode" msgstr "_Tilstand" -#: app/actions/image-actions.c:61 app/actions/layers-actions.c:57 +#: ../app/actions/image-actions.c:61 ../app/actions/layers-actions.c:57 msgid "_Transform" msgstr "_Transformering" -#: app/actions/image-actions.c:62 +#: ../app/actions/image-actions.c:62 msgid "_Guides" msgstr "_Hjælpelinjer" -#: app/actions/image-actions.c:65 app/actions/image-actions.c:70 +#: ../app/actions/image-actions.c:65 ../app/actions/image-actions.c:70 msgid "_New..." msgstr "_Ny..." -#: app/actions/image-actions.c:75 +#: ../app/actions/image-actions.c:75 msgid "Can_vas Size..." msgstr "_Lærredstørrelse..." -#: app/actions/image-actions.c:80 +#: ../app/actions/image-actions.c:80 msgid "F_it Canvas to Layers" msgstr "_Tilpas lærred til lag" -#: app/actions/image-actions.c:85 +#: ../app/actions/image-actions.c:85 msgid "_Print Size..." msgstr "_Udskriftsstørrelse..." -#: app/actions/image-actions.c:90 +#: ../app/actions/image-actions.c:90 msgid "_Scale Image..." msgstr "_Skalér billede..." -#: app/actions/image-actions.c:95 +#: ../app/actions/image-actions.c:95 msgid "_Crop Image" msgstr "_Beskær billede" -#: app/actions/image-actions.c:100 +#: ../app/actions/image-actions.c:100 msgid "_Duplicate" msgstr "_Duplikér" -#: app/actions/image-actions.c:105 +#: ../app/actions/image-actions.c:105 msgid "Merge Visible _Layers..." msgstr "Forén synlige _lag..." -#: app/actions/image-actions.c:110 app/actions/layers-actions.c:138 +#: ../app/actions/image-actions.c:110 ../app/actions/layers-actions.c:138 msgid "_Flatten Image" msgstr "_Fladgør billede" -#: app/actions/image-actions.c:115 +#: ../app/actions/image-actions.c:115 msgid "Configure G_rid..." msgstr "Konfigurér g_itter..." -#: app/actions/image-actions.c:128 +#: ../app/actions/image-actions.c:128 msgid "_Grayscale" msgstr "_Gråtoner" -#: app/actions/image-actions.c:133 +#: ../app/actions/image-actions.c:133 msgid "_Indexed..." msgstr "_Indekseret..." -#: app/actions/image-commands.c:192 +#: ../app/actions/image-commands.c:192 msgid "Set Image Canvas Size" msgstr "Angiv lærredstørrelsen" -#: app/actions/image-commands.c:219 app/actions/image-commands.c:449 +#: ../app/actions/image-commands.c:219 ../app/actions/image-commands.c:449 msgid "Resizing..." msgstr "Skalerer..." -#: app/actions/image-commands.c:242 +#: ../app/actions/image-commands.c:242 msgid "Set Image Print Resolution" msgstr "Skift billedudskriftsopløsning" -#: app/actions/image-commands.c:289 +#: ../app/actions/image-commands.c:289 msgid "Flipping..." msgstr "Vender..." -#: app/actions/image-commands.c:310 app/pdb/drawable_transform_cmds.c:1035 -#: app/pdb/drawable_transform_cmds.c:1193 app/pdb/transform_tools_cmds.c:339 -#: app/tools/gimprotatetool.c:159 +#: ../app/actions/image-commands.c:310 +#: ../app/pdb/drawable_transform_cmds.c:1035 +#: ../app/pdb/drawable_transform_cmds.c:1193 +#: ../app/pdb/transform_tools_cmds.c:339 ../app/tools/gimprotatetool.c:159 msgid "Rotating..." msgstr "Roterer..." -#: app/actions/image-commands.c:332 app/actions/layers-commands.c:535 +#: ../app/actions/image-commands.c:332 ../app/actions/layers-commands.c:535 msgid "Cannot crop because the current selection is empty." msgstr "Kan ikke beskære fordi den aktuelle markering er tom." -#: app/actions/image-commands.c:484 +#: ../app/actions/image-commands.c:484 msgid "Change Print Size" msgstr "Skift udskriftsstørrelse" -#: app/actions/image-commands.c:508 app/core/gimpimage-scale.c:71 -#: app/dialogs/image-scale-dialog.c:91 +#: ../app/actions/image-commands.c:508 ../app/core/gimpimage-scale.c:71 +#: ../app/dialogs/image-scale-dialog.c:91 msgid "Scale Image" msgstr "Skalér billede" -#: app/actions/image-commands.c:521 app/actions/layers-commands.c:959 -#: app/pdb/drawable_transform_cmds.c:1346 -#: app/pdb/drawable_transform_cmds.c:1503 app/pdb/transform_tools_cmds.c:458 -#: app/tools/gimpscaletool.c:153 +#: ../app/actions/image-commands.c:521 ../app/actions/layers-commands.c:959 +#: ../app/pdb/drawable_transform_cmds.c:1346 +#: ../app/pdb/drawable_transform_cmds.c:1503 +#: ../app/pdb/transform_tools_cmds.c:458 ../app/tools/gimpscaletool.c:153 msgid "Scaling..." msgstr "Skalerer..." -#: app/actions/images-actions.c:43 +#: ../app/actions/images-actions.c:43 msgid "Images Menu" msgstr "Billedemenu" -#: app/actions/images-actions.c:47 +#: ../app/actions/images-actions.c:47 msgid "_Raise Views" msgstr "_Hæv visninger" -#: app/actions/images-actions.c:48 +#: ../app/actions/images-actions.c:48 msgid "Raise this image's displays" msgstr "Hæv dette billedes visninger" -#: app/actions/images-actions.c:53 app/actions/view-actions.c:68 +#: ../app/actions/images-actions.c:53 ../app/actions/view-actions.c:68 msgid "_New View" msgstr "_Ny visning" -#: app/actions/images-actions.c:54 +#: ../app/actions/images-actions.c:54 msgid "Create a new display for this image" msgstr "Opret en ny visning til dette billede" -#: app/actions/images-actions.c:59 +#: ../app/actions/images-actions.c:59 msgid "_Delete Image" msgstr "_Slet billede" -#: app/actions/images-actions.c:60 +#: ../app/actions/images-actions.c:60 msgid "Delete this image" msgstr "Slet dette billede" -#: app/actions/layers-actions.c:48 +#: ../app/actions/layers-actions.c:48 msgid "Layers Menu" msgstr "Lagmenu" -#: app/actions/layers-actions.c:51 +#: ../app/actions/layers-actions.c:51 msgid "_Layer" msgstr "_Lag" -#: app/actions/layers-actions.c:52 +#: ../app/actions/layers-actions.c:52 msgid "Stac_k" msgstr "S_tak" -#: app/actions/layers-actions.c:54 app/tools/gimplevelstool.c:665 +#: ../app/actions/layers-actions.c:54 ../app/tools/gimplevelstool.c:665 msgid "_Auto" msgstr "_Auto" # RETMIG: muligvis "Maskér" -#: app/actions/layers-actions.c:55 +#: ../app/actions/layers-actions.c:55 msgid "_Mask" msgstr "_Maske" -#: app/actions/layers-actions.c:56 +#: ../app/actions/layers-actions.c:56 msgid "Tr_ansparency" msgstr "G_ennemsigtighed" -#: app/actions/layers-actions.c:58 +#: ../app/actions/layers-actions.c:58 msgid "_Properties" msgstr "_Egenskaber" -#: app/actions/layers-actions.c:60 +#: ../app/actions/layers-actions.c:60 msgid "Layer _Mode" msgstr "Lag_tilstand" -#: app/actions/layers-actions.c:63 +#: ../app/actions/layers-actions.c:63 msgid "Te_xt Tool" msgstr "Te_kstværktøj" -#: app/actions/layers-actions.c:68 +#: ../app/actions/layers-actions.c:68 msgid "_Edit Layer Attributes..." msgstr "_Redigér lagegenskaber..." -#: app/actions/layers-actions.c:69 +#: ../app/actions/layers-actions.c:69 msgid "Edit layer attributes" msgstr "Redigér lagets egenskaber" -#: app/actions/layers-actions.c:74 +#: ../app/actions/layers-actions.c:74 msgid "_New Layer..." msgstr "_Nyt lag..." -#: app/actions/layers-actions.c:75 +#: ../app/actions/layers-actions.c:75 msgid "New layer..." msgstr "Nyt lag..." -#: app/actions/layers-actions.c:80 +#: ../app/actions/layers-actions.c:80 msgid "_New Layer" msgstr "_Nyt lag" -#: app/actions/layers-actions.c:81 +#: ../app/actions/layers-actions.c:81 msgid "New layer with last values" msgstr "Nyt lag med sidste værdier" -#: app/actions/layers-actions.c:86 +#: ../app/actions/layers-actions.c:86 msgid "D_uplicate Layer" msgstr "_Duplikér lag" -#: app/actions/layers-actions.c:87 +#: ../app/actions/layers-actions.c:87 msgid "Duplicate layer" msgstr "Duplikér lag" -#: app/actions/layers-actions.c:92 +#: ../app/actions/layers-actions.c:92 msgid "_Delete Layer" msgstr "S_let lag" -#: app/actions/layers-actions.c:93 app/core/core-enums.c:1079 +#: ../app/actions/layers-actions.c:93 ../app/core/core-enums.c:1079 msgid "Delete layer" msgstr "Slet lag" -#: app/actions/layers-actions.c:98 +#: ../app/actions/layers-actions.c:98 msgid "_Raise Layer" msgstr "_Hæv lag" -#: app/actions/layers-actions.c:99 +#: ../app/actions/layers-actions.c:99 msgid "Raise layer" msgstr "Hæv lag" -#: app/actions/layers-actions.c:104 +#: ../app/actions/layers-actions.c:104 msgid "Layer to _Top" msgstr "Lag til _top" -#: app/actions/layers-actions.c:105 +#: ../app/actions/layers-actions.c:105 msgid "Raise layer to top" msgstr "Hæv lag til top" -#: app/actions/layers-actions.c:110 +#: ../app/actions/layers-actions.c:110 msgid "_Lower Layer" msgstr "_Sænk lag" -#: app/actions/layers-actions.c:111 +#: ../app/actions/layers-actions.c:111 msgid "Lower layer" msgstr "Sænk lag" -#: app/actions/layers-actions.c:116 +#: ../app/actions/layers-actions.c:116 msgid "Layer to _Bottom" msgstr "Lag til _bund" -#: app/actions/layers-actions.c:117 +#: ../app/actions/layers-actions.c:117 msgid "Lower layer to bottom" msgstr "Sænk lag til bund" -#: app/actions/layers-actions.c:122 +#: ../app/actions/layers-actions.c:122 msgid "_Anchor Layer" msgstr "_Forankr lag" -#: app/actions/layers-actions.c:123 +#: ../app/actions/layers-actions.c:123 msgid "Anchor floating layer" msgstr "Forankr flydende lag" -#: app/actions/layers-actions.c:128 +#: ../app/actions/layers-actions.c:128 msgid "Merge Do_wn" msgstr "Forén _nedad" -#: app/actions/layers-actions.c:133 +#: ../app/actions/layers-actions.c:133 msgid "Merge _Visible Layers..." msgstr "Forén _synlige lag..." -#: app/actions/layers-actions.c:143 +#: ../app/actions/layers-actions.c:143 msgid "_Discard Text Information" msgstr "_Kassér tekstoplysninger" -#: app/actions/layers-actions.c:148 +#: ../app/actions/layers-actions.c:148 msgid "Layer B_oundary Size..." msgstr "Lag_kantstørrelse..." -#: app/actions/layers-actions.c:153 +#: ../app/actions/layers-actions.c:153 msgid "Layer to _Image Size" msgstr "Lag til _billedstørrelse" -#: app/actions/layers-actions.c:158 +#: ../app/actions/layers-actions.c:158 msgid "_Scale Layer..." msgstr "_Skalér lag..." -#: app/actions/layers-actions.c:163 +#: ../app/actions/layers-actions.c:163 msgid "Cr_op Layer" msgstr "_Beskær lag" -#: app/actions/layers-actions.c:168 +#: ../app/actions/layers-actions.c:168 msgid "Add La_yer Mask..." msgstr "Tilføj lag_maske..." -#: app/actions/layers-actions.c:173 +#: ../app/actions/layers-actions.c:173 msgid "Add Alpha C_hannel" msgstr "Tilføj al_fakanal" -#: app/actions/layers-actions.c:181 +#: ../app/actions/layers-actions.c:181 msgid "Keep Transparency" msgstr "Behold gennemsigtighed" -#: app/actions/layers-actions.c:187 +#: ../app/actions/layers-actions.c:187 msgid "Edit Layer Mask" msgstr "Redigér lagmaske" -#: app/actions/layers-actions.c:193 +#: ../app/actions/layers-actions.c:193 msgid "Show Layer Mask" msgstr "Vis lagmaske" -#: app/actions/layers-actions.c:199 +#: ../app/actions/layers-actions.c:199 msgid "Disable Layer Mask" msgstr "Deaktivér lagmaske" -#: app/actions/layers-actions.c:208 +#: ../app/actions/layers-actions.c:208 msgid "Apply Layer _Mask" msgstr "_Anvend lagmaske" -#: app/actions/layers-actions.c:213 +#: ../app/actions/layers-actions.c:213 msgid "Delete Layer Mas_k" msgstr "_Slet lagmaske" -#: app/actions/layers-actions.c:221 +#: ../app/actions/layers-actions.c:221 msgid "_Mask to Selection" msgstr "Maske til ma_rkering" -#: app/actions/layers-actions.c:244 +#: ../app/actions/layers-actions.c:244 msgid "Al_pha to Selection" msgstr "_Alfa til markering" -#: app/actions/layers-actions.c:249 +#: ../app/actions/layers-actions.c:249 msgid "A_dd to Selection" msgstr "_Læg til markering" -#: app/actions/layers-actions.c:267 +#: ../app/actions/layers-actions.c:267 msgid "Select _Top Layer" msgstr "Vælg _øverste lag" -#: app/actions/layers-actions.c:272 +#: ../app/actions/layers-actions.c:272 msgid "Select _Bottom Layer" msgstr "Vælg n_ederste lag" -#: app/actions/layers-actions.c:277 +#: ../app/actions/layers-actions.c:277 msgid "Select _Previous Layer" msgstr "Vælg _forrige lag" -#: app/actions/layers-actions.c:282 +#: ../app/actions/layers-actions.c:282 msgid "Select _Next Layer" msgstr "Vælg _næste lag" -#: app/actions/layers-actions.c:290 +#: ../app/actions/layers-actions.c:290 msgid "Set Opacity" msgstr "Vælg laggennemsigtighed" -#: app/actions/layers-commands.c:196 +#: ../app/actions/layers-commands.c:196 msgid "Layer Attributes" msgstr "Lagegenskaber" -#: app/actions/layers-commands.c:199 +#: ../app/actions/layers-commands.c:199 msgid "Edit Layer Attributes" msgstr "Redigér lagets egenskaber" -#: 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:842 +#: ../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:842 msgid "New Layer" msgstr "Nyt lag" -#: app/actions/layers-commands.c:237 +#: ../app/actions/layers-commands.c:237 msgid "Create a New Layer" msgstr "Opret et nyt lag" # vælg er fint her fordi det er i en vinduestitel -#: app/actions/layers-commands.c:470 +#: ../app/actions/layers-commands.c:470 msgid "Set Layer Boundary Size" msgstr "Vælg lagkantstørrelse" -#: app/actions/layers-commands.c:512 app/core/gimplayer.c:253 +#: ../app/actions/layers-commands.c:512 ../app/core/gimplayer.c:253 msgid "Scale Layer" msgstr "Skalering af lag" -#: app/actions/layers-commands.c:545 +#: ../app/actions/layers-commands.c:545 msgid "Crop Layer" msgstr "Tilskær lag" -#: app/actions/layers-commands.c:683 +#: ../app/actions/layers-commands.c:683 msgid "Layer Mask to Selection" msgstr "Lagmaske til markering" -#: app/actions/layers-commands.c:904 app/core/gimplayer.c:1065 -#: app/dialogs/layer-add-mask-dialog.c:62 +#: ../app/actions/layers-commands.c:904 ../app/core/gimplayer.c:1065 +#: ../app/dialogs/layer-add-mask-dialog.c:62 msgid "Add Layer Mask" msgstr "Tilføjelse af lagmaske" -#: app/actions/layers-commands.c:975 app/actions/layers-commands.c:1007 +#: ../app/actions/layers-commands.c:975 ../app/actions/layers-commands.c:1007 msgid "Invalid width or height. Both must be positive." msgstr "Ugyldig bredde eller højde. Begge skal være positive." -#: app/actions/palette-editor-actions.c:43 +#: ../app/actions/palette-editor-actions.c:43 msgid "Palette Editor Menu" msgstr "Paletredigeringsmenu" -#: app/actions/palette-editor-actions.c:53 +#: ../app/actions/palette-editor-actions.c:53 msgid "_Delete Color" msgstr "_Slet farve" -#: app/actions/palette-editor-actions.c:54 +#: ../app/actions/palette-editor-actions.c:54 msgid "Delete color" msgstr "Slet farve" -#: app/actions/palette-editor-actions.c:62 +#: ../app/actions/palette-editor-actions.c:62 msgid "New Color from _FG" msgstr "Ny farve fra _forggrund" -#: app/actions/palette-editor-actions.c:63 +#: ../app/actions/palette-editor-actions.c:63 msgid "New color from FG" msgstr "Ny farve fra forggrund" -#: app/actions/palette-editor-actions.c:68 +#: ../app/actions/palette-editor-actions.c:68 msgid "New Color from _BG" msgstr "Ny farve fra _baggrund" -#: app/actions/palette-editor-actions.c:69 +#: ../app/actions/palette-editor-actions.c:69 msgid "New color from BG" msgstr "Ny farve fra _baggrund" -#: app/actions/palette-editor-actions.c:77 app/actions/view-actions.c:215 +#: ../app/actions/palette-editor-actions.c:77 +#: ../app/actions/view-actions.c:215 msgid "Zoom _In" msgstr "Zoom _ind" -#: app/actions/palette-editor-actions.c:83 app/actions/view-actions.c:209 +#: ../app/actions/palette-editor-actions.c:83 +#: ../app/actions/view-actions.c:209 msgid "Zoom _Out" msgstr "Zoom _ud" # 'all' er mystisk, betyder 100% -#: app/actions/palette-editor-actions.c:89 +#: ../app/actions/palette-editor-actions.c:89 msgid "Zoom _All" msgstr "_Zoom 100%" -#: app/actions/palette-editor-commands.c:68 +#: ../app/actions/palette-editor-commands.c:68 msgid "Edit Palette Color" msgstr "Redigér paletfarve" -#: app/actions/palette-editor-commands.c:70 +#: ../app/actions/palette-editor-commands.c:70 msgid "Edit Color Palette Entry" msgstr "Redigér farvepalet-element" -#: app/actions/palettes-actions.c:44 +#: ../app/actions/palettes-actions.c:44 msgid "Palettes Menu" msgstr "Paletmenu" -#: app/actions/palettes-actions.c:48 +#: ../app/actions/palettes-actions.c:48 msgid "_New Palette" msgstr "_Ny palet" -#: app/actions/palettes-actions.c:49 +#: ../app/actions/palettes-actions.c:49 msgid "New palette" msgstr "Ny palet" -#: app/actions/palettes-actions.c:54 +#: ../app/actions/palettes-actions.c:54 msgid "_Import Palette..." msgstr "_Importér palet..." -#: app/actions/palettes-actions.c:55 +#: ../app/actions/palettes-actions.c:55 msgid "Import palette" msgstr "Importér palet" -#: app/actions/palettes-actions.c:60 +#: ../app/actions/palettes-actions.c:60 msgid "D_uplicate Palette" msgstr "_Duplikér palet" -#: app/actions/palettes-actions.c:61 +#: ../app/actions/palettes-actions.c:61 msgid "Duplicate palette" msgstr "Duplikér palet" -#: app/actions/palettes-actions.c:66 +#: ../app/actions/palettes-actions.c:66 msgid "_Merge Palettes..." msgstr "_Forén paletter..." -#: app/actions/palettes-actions.c:67 +#: ../app/actions/palettes-actions.c:67 msgid "Merge palettes" msgstr "Forén paletter" -#: app/actions/palettes-actions.c:72 +#: ../app/actions/palettes-actions.c:72 msgid "_Delete Palette" msgstr "_Slet palet" -#: app/actions/palettes-actions.c:73 +#: ../app/actions/palettes-actions.c:73 msgid "Delete palette" msgstr "Slet palet" -#: app/actions/palettes-actions.c:78 +#: ../app/actions/palettes-actions.c:78 msgid "_Refresh Palettes" msgstr "_Opdatér paletter" -#: app/actions/palettes-actions.c:79 +#: ../app/actions/palettes-actions.c:79 msgid "Refresh palettes" msgstr "Opdatér paletter" -#: app/actions/palettes-actions.c:87 +#: ../app/actions/palettes-actions.c:87 msgid "_Edit Palette..." msgstr "_Redigér palet..." -#: app/actions/palettes-actions.c:88 +#: ../app/actions/palettes-actions.c:88 msgid "Edit palette" msgstr "Redigér palet" -#: app/actions/palettes-commands.c:72 +#: ../app/actions/palettes-commands.c:72 msgid "Merge Palette" msgstr "Forén palet" -#: app/actions/palettes-commands.c:76 +#: ../app/actions/palettes-commands.c:76 msgid "Enter a name for the merged palette" msgstr "Indtast et navn til den forenede palet" -#: app/actions/patterns-actions.c:43 +#: ../app/actions/patterns-actions.c:43 msgid "Patterns Menu" msgstr "Mønstremenu" -#: app/actions/patterns-actions.c:47 +#: ../app/actions/patterns-actions.c:47 msgid "_New Pattern" msgstr "_Nyt mønster" -#: app/actions/patterns-actions.c:48 +#: ../app/actions/patterns-actions.c:48 msgid "New pattern" msgstr "Nyt mønster" -#: app/actions/patterns-actions.c:53 +#: ../app/actions/patterns-actions.c:53 msgid "D_uplicate Pattern" msgstr "_Duplikér mønster" -#: app/actions/patterns-actions.c:54 +#: ../app/actions/patterns-actions.c:54 msgid "Duplicate pattern" msgstr "Duplikér mønster" -#: app/actions/patterns-actions.c:59 +#: ../app/actions/patterns-actions.c:59 msgid "_Delete Pattern..." msgstr "_Slet mønster..." -#: app/actions/patterns-actions.c:60 +#: ../app/actions/patterns-actions.c:60 msgid "Delete pattern" msgstr "Slet mønster" -#: app/actions/patterns-actions.c:65 +#: ../app/actions/patterns-actions.c:65 msgid "_Refresh Patterns" msgstr "_Opdatér mønstre" -#: app/actions/patterns-actions.c:66 +#: ../app/actions/patterns-actions.c:66 msgid "Refresh patterns" msgstr "Opdatér mønstre" -#: app/actions/patterns-actions.c:74 +#: ../app/actions/patterns-actions.c:74 msgid "_Edit Pattern..." msgstr "_Redigér mønster..." -#: app/actions/patterns-actions.c:75 +#: ../app/actions/patterns-actions.c:75 msgid "Edit pattern" msgstr "_Redigér mønster" -#: app/actions/plug-in-actions.c:62 +#: ../app/actions/plug-in-actions.c:62 msgid "Filte_rs" msgstr "_Filtre" # dækker vist bedst -#: app/actions/plug-in-actions.c:63 +#: ../app/actions/plug-in-actions.c:63 msgid "_Blur" msgstr "_Blødgør" -#: app/actions/plug-in-actions.c:65 +#: ../app/actions/plug-in-actions.c:65 msgid "Ma_p" msgstr "_Afbildning" -#: app/actions/plug-in-actions.c:66 +#: ../app/actions/plug-in-actions.c:66 msgid "_Noise" msgstr "_Støj" -#: app/actions/plug-in-actions.c:67 +#: ../app/actions/plug-in-actions.c:67 msgid "Edge-De_tect" msgstr "Kant_finding" # dækker vist mere præcist - alt er jo en forbedring -#: app/actions/plug-in-actions.c:68 +#: ../app/actions/plug-in-actions.c:68 msgid "En_hance" msgstr "_Reparation" -#: app/actions/plug-in-actions.c:69 +#: ../app/actions/plug-in-actions.c:69 msgid "_Generic" msgstr "_Generel" -#: app/actions/plug-in-actions.c:70 +#: ../app/actions/plug-in-actions.c:70 msgid "Gla_ss Effects" msgstr "Gl_aseffekter" -#: app/actions/plug-in-actions.c:71 +#: ../app/actions/plug-in-actions.c:71 msgid "_Light Effects" msgstr "_Lyseffekter" -#: app/actions/plug-in-actions.c:72 +#: ../app/actions/plug-in-actions.c:72 msgid "_Distorts" msgstr "_Forvrængning" -#: app/actions/plug-in-actions.c:73 +#: ../app/actions/plug-in-actions.c:73 msgid "_Artistic" msgstr "_Kunstnerisk" -#: app/actions/plug-in-actions.c:74 +#: ../app/actions/plug-in-actions.c:74 msgid "_Map" msgstr "_Afbildning" -#: app/actions/plug-in-actions.c:75 +#: ../app/actions/plug-in-actions.c:75 msgid "_Render" msgstr "_Generér" -#: app/actions/plug-in-actions.c:76 +#: ../app/actions/plug-in-actions.c:76 msgid "_Clouds" msgstr "_Skyer" -#: app/actions/plug-in-actions.c:77 +#: ../app/actions/plug-in-actions.c:77 msgid "_Nature" msgstr "_Natur" -#: app/actions/plug-in-actions.c:79 +#: ../app/actions/plug-in-actions.c:79 msgid "_Web" msgstr "_Internet" -#: app/actions/plug-in-actions.c:80 +#: ../app/actions/plug-in-actions.c:80 msgid "An_imation" msgstr "_Animation" -#: app/actions/plug-in-actions.c:81 +#: ../app/actions/plug-in-actions.c:81 msgid "C_ombine" msgstr "_Kombinering" -#: app/actions/plug-in-actions.c:82 +#: ../app/actions/plug-in-actions.c:82 msgid "To_ys" msgstr "_Legetøj" -#: app/actions/plug-in-actions.c:85 +#: ../app/actions/plug-in-actions.c:85 msgid "Reset all Filters..." msgstr "Nulstil alle filtre..." -#: app/actions/plug-in-actions.c:93 app/actions/plug-in-actions.c:363 +#: ../app/actions/plug-in-actions.c:93 ../app/actions/plug-in-actions.c:363 msgid "Repeat Last" msgstr "Gentag sidste" -#: app/actions/plug-in-actions.c:98 app/actions/plug-in-actions.c:365 +#: ../app/actions/plug-in-actions.c:98 ../app/actions/plug-in-actions.c:365 msgid "Re-Show Last" msgstr "Vis sidste igen" -#: app/actions/plug-in-actions.c:349 +#: ../app/actions/plug-in-actions.c:349 #, c-format msgid "Re_peat \"%s\"" msgstr "_Gentag \"%s\"" -#: app/actions/plug-in-actions.c:350 +#: ../app/actions/plug-in-actions.c:350 #, c-format msgid "R_e-show \"%s\"" msgstr "Vis \"%s\" _igen" -#: app/actions/plug-in-commands.c:193 +#: ../app/actions/plug-in-commands.c:193 msgid "Reset all Filters" msgstr "Nulstil alle filtre" -#: app/actions/plug-in-commands.c:207 +#: ../app/actions/plug-in-commands.c:207 msgid "Do you really want to reset all filters to default values?" msgstr "Vil du nulstille alle filtre til deres standardværdier?" -#: app/actions/qmask-actions.c:42 +#: ../app/actions/qmask-actions.c:42 msgid "Quick Mask Menu" msgstr "Hurtigmaskemenu" -#: app/actions/qmask-actions.c:46 +#: ../app/actions/qmask-actions.c:46 msgid "_Configure Color and Opacity..." msgstr "_Konfigurér farve og gennemsigtighed..." -#: app/actions/qmask-actions.c:54 +#: ../app/actions/qmask-actions.c:54 msgid "_Quick Mask Active" msgstr "_Hurtigmaske aktiv" -#: app/actions/qmask-actions.c:60 +#: ../app/actions/qmask-actions.c:60 msgid "Toggle _Quick Mask" msgstr "Slå hurtigmaske _til/fra" -#: app/actions/qmask-actions.c:70 +#: ../app/actions/qmask-actions.c:70 msgid "Mask _Selected Areas" msgstr "Maskér _markerede områder" -#: app/actions/qmask-actions.c:75 +#: ../app/actions/qmask-actions.c:75 msgid "Mask _Unselected Areas" msgstr "Maskér _ikke-markerede områder" -#: app/actions/qmask-commands.c:106 +#: ../app/actions/qmask-commands.c:106 msgid "Quick Mask Attributes" msgstr "Hurtigmaskeegenskaber" -#: app/actions/qmask-commands.c:109 +#: ../app/actions/qmask-commands.c:109 msgid "Edit Quick Mask Attributes" msgstr "Redigér hurtigmaskeegenskaber" -#: app/actions/qmask-commands.c:111 +#: ../app/actions/qmask-commands.c:111 msgid "Edit Quick Mask Color" msgstr "Redigér hurtigmaskefarve" -#: app/actions/qmask-commands.c:112 +#: ../app/actions/qmask-commands.c:112 msgid "Mask Opacity:" msgstr "Maskeugennemsigtighed:" -#: app/actions/select-actions.c:44 +#: ../app/actions/select-actions.c:44 msgid "Selection Editor Menu" msgstr "Markeringsredigeringsmenu" # et navneord ser bedst ud i stedet for 'Markér' -#: app/actions/select-actions.c:47 +#: ../app/actions/select-actions.c:47 msgid "_Select" msgstr "_Markering" -#: app/actions/select-actions.c:50 +#: ../app/actions/select-actions.c:50 msgid "_All" msgstr "_Alt" -#: app/actions/select-actions.c:51 +#: ../app/actions/select-actions.c:51 msgid "Select all" msgstr "Markér alt" -#: app/actions/select-actions.c:56 +#: ../app/actions/select-actions.c:56 msgid "_None" msgstr "_Intet" -#: app/actions/select-actions.c:57 +#: ../app/actions/select-actions.c:57 msgid "Select none" msgstr "Markér intet" -#: app/actions/select-actions.c:62 +#: ../app/actions/select-actions.c:62 msgid "_Invert" msgstr "_Invertér" -#: app/actions/select-actions.c:63 +#: ../app/actions/select-actions.c:63 msgid "Invert selection" msgstr "Invertér markering" -#: app/actions/select-actions.c:68 +#: ../app/actions/select-actions.c:68 msgid "_Float" msgstr "_Flyd" -#: app/actions/select-actions.c:73 +#: ../app/actions/select-actions.c:73 msgid "Fea_ther..." msgstr "_Udvisk..." -#: app/actions/select-actions.c:78 +#: ../app/actions/select-actions.c:78 msgid "_Sharpen" msgstr "_Skærp" -#: app/actions/select-actions.c:83 +#: ../app/actions/select-actions.c:83 msgid "S_hrink..." msgstr "For_mindsk..." -#: app/actions/select-actions.c:88 +#: ../app/actions/select-actions.c:88 msgid "_Grow..." msgstr "For_øg..." # 'border' er et udsagnsord her, betyder at der laves en ny markering i # form af en kant omkring den gamle -#: app/actions/select-actions.c:93 +#: ../app/actions/select-actions.c:93 msgid "Bo_rder..." msgstr "In_dram..." -#: app/actions/select-actions.c:98 +#: ../app/actions/select-actions.c:98 msgid "Save to _Channel" msgstr "Gem som _kanal" -#: app/actions/select-actions.c:99 +#: ../app/actions/select-actions.c:99 msgid "Save selection to channel" msgstr "Gem markering som kanal" -#: app/actions/select-actions.c:104 +#: ../app/actions/select-actions.c:104 msgid "_Stroke Selection..." msgstr "_Bestryg markering..." -#: app/actions/select-actions.c:105 +#: ../app/actions/select-actions.c:105 msgid "Stroke selection..." msgstr "Bestryg markering..." -#: app/actions/select-actions.c:110 +#: ../app/actions/select-actions.c:110 msgid "_Stroke Selection" msgstr "_Bestryg markering" -#: app/actions/select-actions.c:111 +#: ../app/actions/select-actions.c:111 msgid "Stroke selection with last values" msgstr "Bestryg markering med sidste værdier" # feather bruges ikke i betydningen fjer her, men udvisk -#: app/actions/select-commands.c:136 app/core/gimpselection.c:201 +#: ../app/actions/select-commands.c:136 ../app/core/gimpselection.c:201 msgid "Feather Selection" msgstr "Udvisk markering" # 'over' kommer sig af at der følger antallet af skærmpunkter fra kanten som det næste -#: app/actions/select-commands.c:140 +#: ../app/actions/select-commands.c:140 msgid "Feather selection by" msgstr "Udvisk det markerede over" -#: app/actions/select-commands.c:171 app/core/gimpselection.c:208 +#: ../app/actions/select-commands.c:171 ../app/core/gimpselection.c:208 msgid "Shrink Selection" msgstr "Formindsk markering" -#: app/actions/select-commands.c:175 +#: ../app/actions/select-commands.c:175 msgid "Shrink selection by" msgstr "Formindsk markering med" -#: app/actions/select-commands.c:184 +#: ../app/actions/select-commands.c:184 msgid "Shrink from image border" msgstr "Formindsk fra billedkant" -#: app/actions/select-commands.c:205 app/core/gimpselection.c:207 +#: ../app/actions/select-commands.c:205 ../app/core/gimpselection.c:207 msgid "Grow Selection" msgstr "Forøg markering" -#: app/actions/select-commands.c:209 +#: ../app/actions/select-commands.c:209 msgid "Grow selection by" msgstr "Forøg markeringen med" # 'border' er et udsagnsord her, betyder at der laves en ny markering i # form af en kant omkring den gamle -#: app/actions/select-commands.c:228 app/core/gimpselection.c:206 +#: ../app/actions/select-commands.c:228 ../app/core/gimpselection.c:206 msgid "Border Selection" msgstr "Indram markering" -#: app/actions/select-commands.c:232 +#: ../app/actions/select-commands.c:232 msgid "Border selection by" msgstr "Indram det markerede med" -#: app/actions/select-commands.c:275 app/actions/select-commands.c:301 -#: app/actions/vectors-commands.c:365 app/actions/vectors-commands.c:392 -#: app/dialogs/stroke-dialog.c:275 +#: ../app/actions/select-commands.c:275 ../app/actions/select-commands.c:301 +#: ../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 "Der er ikke noget aktivt lag eller nogen aktiv kanal at bestryge." -#: app/actions/select-commands.c:280 app/core/gimpselection.c:184 +#: ../app/actions/select-commands.c:280 ../app/core/gimpselection.c:184 msgid "Stroke Selection" msgstr "Bestryg markering" -#: app/actions/templates-actions.c:42 +#: ../app/actions/templates-actions.c:42 msgid "Templates Menu" msgstr "Skabelonermenu" -#: app/actions/templates-actions.c:46 +#: ../app/actions/templates-actions.c:46 msgid "_Create Image from Template..." msgstr "_Opret billede fra skabelon..." -#: app/actions/templates-actions.c:47 +#: ../app/actions/templates-actions.c:47 msgid "Create a new image from the selected template" msgstr "Opret et nyt billede fra den valgte skabelon" -#: app/actions/templates-actions.c:52 +#: ../app/actions/templates-actions.c:52 msgid "_New Template..." msgstr "_Ny skabelon..." -#: app/actions/templates-actions.c:53 +#: ../app/actions/templates-actions.c:53 msgid "Create a new template" msgstr "Opret en ny skabelon" -#: app/actions/templates-actions.c:58 +#: ../app/actions/templates-actions.c:58 msgid "D_uplicate Template..." msgstr "_Duplikér skabelon..." -#: app/actions/templates-actions.c:59 +#: ../app/actions/templates-actions.c:59 msgid "Duplicate the selected template" msgstr "Duplikér den valgte skabelon" -#: app/actions/templates-actions.c:64 +#: ../app/actions/templates-actions.c:64 msgid "_Edit Template..." msgstr "_Redigér skabelon..." -#: app/actions/templates-actions.c:65 +#: ../app/actions/templates-actions.c:65 msgid "Edit the selected template" msgstr "Redigér den valgte skabelon" -#: app/actions/templates-actions.c:70 +#: ../app/actions/templates-actions.c:70 msgid "_Delete Template" msgstr "_Slet skabelon" -#: app/actions/templates-actions.c:71 +#: ../app/actions/templates-actions.c:71 msgid "Delete the selected template" msgstr "Slet den valgte skabelon" # ikke 'skærm' her -#: app/actions/templates-commands.c:123 +#: ../app/actions/templates-commands.c:123 msgid "New Template" msgstr "Ny skabelon" -#: app/actions/templates-commands.c:126 +#: ../app/actions/templates-commands.c:126 msgid "Create a New Template" msgstr "Opret en ny skabelon" -#: app/actions/templates-commands.c:185 app/actions/templates-commands.c:188 +#: ../app/actions/templates-commands.c:185 +#: ../app/actions/templates-commands.c:188 msgid "Edit Template" msgstr "Redigér skabelon" -#: app/actions/templates-commands.c:224 +#: ../app/actions/templates-commands.c:224 msgid "Delete Template" msgstr "Slet skabelon" -#: app/actions/templates-commands.c:243 +#: ../app/actions/templates-commands.c:243 #, c-format msgid "" "Are you sure you want to delete template '%s' from the list and from disk?" msgstr "" "Er du sikker på at du vil slette skabelonen '%s' fra listen og fra disken?" -#: app/actions/text-editor-actions.c:44 +#: ../app/actions/text-editor-actions.c:44 msgid "Open" msgstr "Åbn" -#: app/actions/text-editor-actions.c:45 +#: ../app/actions/text-editor-actions.c:45 msgid "Load text from file" msgstr "Indlæs tekst fra fil" -#: app/actions/text-editor-actions.c:50 app/core/gimp-edit.c:350 +#: ../app/actions/text-editor-actions.c:50 ../app/core/gimp-edit.c:350 msgid "Clear" msgstr "Ryd" -#: app/actions/text-editor-actions.c:51 +#: ../app/actions/text-editor-actions.c:51 msgid "Clear all text" msgstr "Ryd alt tekst" -#: app/actions/text-editor-actions.c:59 +#: ../app/actions/text-editor-actions.c:59 msgid "LTR" msgstr "Venstre mod højre" -#: app/actions/text-editor-actions.c:60 app/text/text-enums.c:51 +#: ../app/actions/text-editor-actions.c:60 ../app/text/text-enums.c:51 msgid "From left to right" msgstr "Fra venstre mod højre" -#: app/actions/text-editor-actions.c:65 +#: ../app/actions/text-editor-actions.c:65 msgid "RTL" msgstr "Højre mod venstre" -#: app/actions/text-editor-actions.c:66 app/text/text-enums.c:52 +#: ../app/actions/text-editor-actions.c:66 ../app/text/text-enums.c:52 msgid "From right to left" msgstr "Fra højre mod venstre" -#: app/actions/text-editor-commands.c:60 +#: ../app/actions/text-editor-commands.c:60 msgid "Open Text File (UTF-8)" 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: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 +#: ../app/actions/text-editor-commands.c:132 +#: ../app/config/gimpconfig-utils.c:552 ../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 "Kunne ikke åbne '%s' til læsning: %s" -#: app/actions/tool-options-actions.c:56 +#: ../app/actions/tool-options-actions.c:56 msgid "Tool Options Menu" msgstr "Værktøjsindstillingermenu" -#: app/actions/tool-options-actions.c:60 +#: ../app/actions/tool-options-actions.c:60 msgid "_Save Options to" msgstr "_Gem indstillinger i" -#: app/actions/tool-options-actions.c:64 +#: ../app/actions/tool-options-actions.c:64 msgid "_Restore Options from" msgstr "Gen_dan indstillinger fra" -#: app/actions/tool-options-actions.c:68 +#: ../app/actions/tool-options-actions.c:68 msgid "Re_name Saved Options" msgstr "_Omdøb gemte indstillinger" -#: app/actions/tool-options-actions.c:72 +#: ../app/actions/tool-options-actions.c:72 msgid "_Delete Saved Options" msgstr "_Slet gemte indstillinger" -#: app/actions/tool-options-actions.c:76 +#: ../app/actions/tool-options-actions.c:76 msgid "_New Entry..." msgstr "_Nyt element..." -#: app/actions/tool-options-actions.c:81 +#: ../app/actions/tool-options-actions.c:81 msgid "R_eset Tool Options" msgstr "_Nulstil værktøjsindstillinger" -#: app/actions/tool-options-actions.c:82 +#: ../app/actions/tool-options-actions.c:82 msgid "Reset to default values" msgstr "Nulstil til standardværdier" -#: app/actions/tool-options-actions.c:87 +#: ../app/actions/tool-options-actions.c:87 msgid "Reset _all Tool Options..." msgstr "Nulstil _alle værktøjsindstillinger..." -#: app/actions/tool-options-actions.c:88 +#: ../app/actions/tool-options-actions.c:88 msgid "Reset all tool options" msgstr "Nulstil alle værktøjsindstillinger" -#: app/actions/tool-options-commands.c:73 +#: ../app/actions/tool-options-commands.c:73 msgid "Save Tool Options" msgstr "Indstillinger for gemningsværktøj" -#: app/actions/tool-options-commands.c:77 +#: ../app/actions/tool-options-commands.c:77 msgid "Enter a name for the saved options" msgstr "Indtast et navn til den gemte indstilling" -#: app/actions/tool-options-commands.c:78 -#: app/actions/tool-options-commands.c:251 -#: app/actions/tool-options-commands.c:269 +#: ../app/actions/tool-options-commands.c:78 +#: ../app/actions/tool-options-commands.c:251 +#: ../app/actions/tool-options-commands.c:269 msgid "Saved Options" msgstr "Gemte indstillinger" -#: app/actions/tool-options-commands.c:146 +#: ../app/actions/tool-options-commands.c:146 msgid "Rename Saved Tool Options" msgstr "Omdøb gemte værktøjsindstillinger" -#: app/actions/tool-options-commands.c:150 +#: ../app/actions/tool-options-commands.c:150 msgid "Enter a new name for the saved options" msgstr "Indtast et nyt navn til de gemte indstillinger" -#: app/actions/tool-options-commands.c:215 +#: ../app/actions/tool-options-commands.c:215 msgid "Reset Tool Options" msgstr "Nulstil værktøjsindstillinger" -#: app/actions/tool-options-commands.c:233 +#: ../app/actions/tool-options-commands.c:233 msgid "Do you really want to reset all tool options to default values?" msgstr "Vil du nulstille alle værktøjsindstillinger til standardværdierne?" -#: app/actions/tools-actions.c:47 +#: ../app/actions/tools-actions.c:47 msgid "Tools Menu" msgstr "Værktøjsmenu" -#: app/actions/tools-actions.c:50 +#: ../app/actions/tools-actions.c:50 msgid "_Tools" msgstr "Værk_tøjer" -#: app/actions/tools-actions.c:51 +#: ../app/actions/tools-actions.c:51 msgid "_Selection Tools" msgstr "_Markeringsværktøjer" -#: app/actions/tools-actions.c:52 +#: ../app/actions/tools-actions.c:52 msgid "_Paint Tools" msgstr "M_aleværktøjer" -#: app/actions/tools-actions.c:53 +#: ../app/actions/tools-actions.c:53 msgid "_Transform Tools" msgstr "_Transformeringsværktøjer" -#: app/actions/tools-actions.c:54 +#: ../app/actions/tools-actions.c:54 msgid "_Color Tools" msgstr "_Farveværktøjer" -#: app/actions/tools-actions.c:57 +#: ../app/actions/tools-actions.c:57 msgid "_Reset Order & Visibility" msgstr "_Nulstil rækkefølge og synlighed" -#: app/actions/tools-actions.c:58 +#: ../app/actions/tools-actions.c:58 msgid "Reset tool order and visibility" msgstr "Nulstil værktøjsrækkefølge og -synlighed" -#: app/actions/tools-actions.c:66 +#: ../app/actions/tools-actions.c:66 msgid "_Show in Toolbox" msgstr "_Vis i værktøjstip" -#: app/actions/tools-actions.c:75 +#: ../app/actions/tools-actions.c:75 msgid "_By Color" msgstr "_Efter farve" -#: app/actions/tools-actions.c:80 +#: ../app/actions/tools-actions.c:80 msgid "_Arbitrary Rotation..." msgstr "_Vilkårlig rotering..." -#: app/actions/vectors-actions.c:44 +#: ../app/actions/vectors-actions.c:44 msgid "Paths Menu" msgstr "Bane-menu" -#: app/actions/vectors-actions.c:48 +#: ../app/actions/vectors-actions.c:48 msgid "Path _Tool" msgstr "Bane_værktøj" -#: app/actions/vectors-actions.c:53 +#: ../app/actions/vectors-actions.c:53 msgid "_Edit Path Attributes..." msgstr "_Redigér bane-egenskaber..." -#: app/actions/vectors-actions.c:54 +#: ../app/actions/vectors-actions.c:54 msgid "Edit path attributes" msgstr "Redigér bane-egenskaber" -#: app/actions/vectors-actions.c:59 +#: ../app/actions/vectors-actions.c:59 msgid "_New Path..." msgstr "_Ny bane..." -#: app/actions/vectors-actions.c:60 +#: ../app/actions/vectors-actions.c:60 msgid "New path..." msgstr "Ny bane..." -#: app/actions/vectors-actions.c:65 +#: ../app/actions/vectors-actions.c:65 msgid "_New Path" msgstr "_Ny bane" -#: app/actions/vectors-actions.c:66 +#: ../app/actions/vectors-actions.c:66 msgid "New path with last values" msgstr "Ny bane med sidste værdier" -#: app/actions/vectors-actions.c:71 +#: ../app/actions/vectors-actions.c:71 msgid "D_uplicate Path" msgstr "_Duplikér bane" -#: app/actions/vectors-actions.c:72 +#: ../app/actions/vectors-actions.c:72 msgid "Duplicate path" msgstr "Dublikér bane" -#: app/actions/vectors-actions.c:77 +#: ../app/actions/vectors-actions.c:77 msgid "_Delete Path" msgstr "_Slet bane" -#: app/actions/vectors-actions.c:78 +#: ../app/actions/vectors-actions.c:78 msgid "Delete path" msgstr "Slet bane" -#: app/actions/vectors-actions.c:83 +#: ../app/actions/vectors-actions.c:83 msgid "Merge _Visible Paths" msgstr "Forén _synlige lag" -#: app/actions/vectors-actions.c:88 +#: ../app/actions/vectors-actions.c:88 msgid "_Raise Path" msgstr "_Hæv bane" -#: app/actions/vectors-actions.c:89 +#: ../app/actions/vectors-actions.c:89 msgid "Raise path" msgstr "Hæv bane" -#: app/actions/vectors-actions.c:94 +#: ../app/actions/vectors-actions.c:94 msgid "Raise Path to _Top" msgstr "Hæv bane til _top" -#: app/actions/vectors-actions.c:95 +#: ../app/actions/vectors-actions.c:95 msgid "Raise path to top" msgstr "Hæv bane til top" -#: app/actions/vectors-actions.c:100 +#: ../app/actions/vectors-actions.c:100 msgid "_Lower Path" msgstr "Sæn_k bane" -#: app/actions/vectors-actions.c:101 +#: ../app/actions/vectors-actions.c:101 msgid "Lower path" msgstr "Sænk bane" -#: app/actions/vectors-actions.c:106 +#: ../app/actions/vectors-actions.c:106 msgid "Lower Path to _Bottom" msgstr "Sænk bane til _bund" -#: app/actions/vectors-actions.c:107 +#: ../app/actions/vectors-actions.c:107 msgid "Lower path to bottom" msgstr "Sænk bane til bund" -#: app/actions/vectors-actions.c:112 +#: ../app/actions/vectors-actions.c:112 msgid "Stro_ke Path..." msgstr "Bestr_yg bane..." -#: app/actions/vectors-actions.c:113 +#: ../app/actions/vectors-actions.c:113 msgid "Stroke path..." msgstr "Bestryg bane..." -#: app/actions/vectors-actions.c:118 +#: ../app/actions/vectors-actions.c:118 msgid "Stro_ke Path" msgstr "Bestr_yg bane" -#: app/actions/vectors-actions.c:119 +#: ../app/actions/vectors-actions.c:119 msgid "Stroke path with last values" msgstr "Bestryg bane med sidste værdier" -#: app/actions/vectors-actions.c:124 +#: ../app/actions/vectors-actions.c:124 msgid "Co_py Path" msgstr "_Kopiér bane" -#: app/actions/vectors-actions.c:129 +#: ../app/actions/vectors-actions.c:129 msgid "Paste Pat_h" msgstr "_Indsæt bane" -#: app/actions/vectors-actions.c:134 +#: ../app/actions/vectors-actions.c:134 msgid "I_mport Path..." msgstr "Im_portér bane..." -#: app/actions/vectors-actions.c:139 +#: ../app/actions/vectors-actions.c:139 msgid "E_xport Path..." msgstr "_Eksportér bane..." -#: app/actions/vectors-actions.c:162 +#: ../app/actions/vectors-actions.c:162 msgid "Path to Sele_ction" msgstr "Bane til _markering" -#: app/actions/vectors-actions.c:163 app/tools/gimpvectortool.c:1893 +#: ../app/actions/vectors-actions.c:163 ../app/tools/gimpvectortool.c:1893 msgid "Path to selection" msgstr "Bane til markering" -#: app/actions/vectors-actions.c:168 +#: ../app/actions/vectors-actions.c:168 msgid "Fr_om Path" msgstr "Fr_a bane" -#: app/actions/vectors-actions.c:194 +#: ../app/actions/vectors-actions.c:194 msgid "Selecti_on to Path" msgstr "Markering til _bane" -#: app/actions/vectors-actions.c:195 +#: ../app/actions/vectors-actions.c:195 msgid "Selection to path" msgstr "Markering til bane" -#: app/actions/vectors-actions.c:200 +#: ../app/actions/vectors-actions.c:200 msgid "To _Path" msgstr "Til _bane" -#: app/actions/vectors-actions.c:205 +#: ../app/actions/vectors-actions.c:205 msgid "Selection to Path (_Advanced)" msgstr "Markering til bane (_avanceret)" -#: app/actions/vectors-actions.c:206 +#: ../app/actions/vectors-actions.c:206 msgid "Advanced options" msgstr "Avancerede indstillinger" -#: app/actions/vectors-commands.c:140 +#: ../app/actions/vectors-commands.c:140 msgid "Path Attributes" msgstr "Baneegenskaber" -#: app/actions/vectors-commands.c:143 +#: ../app/actions/vectors-commands.c:143 msgid "Edit Path Attributes" msgstr "Redigér baneegenskaber" -#: app/actions/vectors-commands.c:167 app/actions/vectors-commands.c:168 -#: app/actions/vectors-commands.c:190 +#: ../app/actions/vectors-commands.c:167 ../app/actions/vectors-commands.c:168 +#: ../app/actions/vectors-commands.c:190 msgid "New Path" msgstr "Ny bane" -#: app/actions/vectors-commands.c:171 +#: ../app/actions/vectors-commands.c:171 msgid "New Path Options" msgstr "Indstillinger for ny bane" -#: app/actions/vectors-commands.c:299 app/pdb/paths_cmds.c:1210 +#: ../app/actions/vectors-commands.c:299 ../app/pdb/paths_cmds.c:1210 msgid "Path to Selection" msgstr "Bane til markering" -#: app/actions/vectors-commands.c:370 app/tools/gimpvectortool.c:1923 -#: app/vectors/gimpvectors.c:237 +#: ../app/actions/vectors-commands.c:370 ../app/tools/gimpvectortool.c:1923 +#: ../app/vectors/gimpvectors.c:237 msgid "Stroke Path" msgstr "Bestryg bane" -#: app/actions/view-actions.c:63 +#: ../app/actions/view-actions.c:63 msgid "_View" msgstr "_Vis" -#: app/actions/view-actions.c:64 +#: ../app/actions/view-actions.c:64 msgid "_Zoom" msgstr "_Zoom" -#: app/actions/view-actions.c:65 +#: ../app/actions/view-actions.c:65 msgid "_Padding Color" msgstr "_Udfyldningsfarve" -#: app/actions/view-actions.c:73 +#: ../app/actions/view-actions.c:73 msgid "_Close" msgstr "_Luk" -#: app/actions/view-actions.c:78 +#: ../app/actions/view-actions.c:78 msgid "_Fit Image in Window" msgstr "_Tilpas billede til vindue" -#: app/actions/view-actions.c:79 +#: ../app/actions/view-actions.c:79 msgid "Fit image in window" msgstr "Tilpas billede til vindue" -#: app/actions/view-actions.c:84 +#: ../app/actions/view-actions.c:84 msgid "Fit Image to Window" msgstr "Tilpas billede til vindue" -#: app/actions/view-actions.c:85 +#: ../app/actions/view-actions.c:85 msgid "Fit image to window" msgstr "Tilpas billede til vindue" -#: app/actions/view-actions.c:90 +#: ../app/actions/view-actions.c:90 msgid "_Info Window" msgstr "_Infovindue" -#: app/actions/view-actions.c:95 +#: ../app/actions/view-actions.c:95 msgid "Na_vigation Window" msgstr "Na_vigationsvindue" -#: app/actions/view-actions.c:100 +#: ../app/actions/view-actions.c:100 msgid "Display _Filters..." msgstr "Vis _filtre..." -#: app/actions/view-actions.c:105 +#: ../app/actions/view-actions.c:105 msgid "Shrink _Wrap" msgstr "_Pak sammen" -#: app/actions/view-actions.c:106 +#: ../app/actions/view-actions.c:106 msgid "Shrink wrap" msgstr "Pak sammen" -#: app/actions/view-actions.c:111 +#: ../app/actions/view-actions.c:111 msgid "Move to Screen..." msgstr "Flyt til skærm..." # skal synkroniseres -#: app/actions/view-actions.c:119 +#: ../app/actions/view-actions.c:119 msgid "_Dot for Dot" msgstr "_Prik for prik" -#: app/actions/view-actions.c:125 +#: ../app/actions/view-actions.c:125 msgid "Show _Selection" msgstr "Vis m_arkering" -#: app/actions/view-actions.c:131 +#: ../app/actions/view-actions.c:131 msgid "Show _Layer Boundary" msgstr "Vis _laggrænse" -#: app/actions/view-actions.c:137 +#: ../app/actions/view-actions.c:137 msgid "Show _Guides" msgstr "Vis _hjælpelinjer" -#: app/actions/view-actions.c:143 +#: ../app/actions/view-actions.c:143 msgid "Sn_ap to Guides" msgstr "_Ret ind efter linjer" -#: app/actions/view-actions.c:149 +#: ../app/actions/view-actions.c:149 msgid "S_how Grid" msgstr "Vis _gitter" -#: app/actions/view-actions.c:155 +#: ../app/actions/view-actions.c:155 msgid "Sna_p to Grid" msgstr "Ret _ind efter gitter" -#: app/actions/view-actions.c:161 +#: ../app/actions/view-actions.c:161 msgid "Show _Menubar" msgstr "Vis _menulinje" -#: app/actions/view-actions.c:167 +#: ../app/actions/view-actions.c:167 msgid "Show R_ulers" msgstr "Vis _linealer" -#: app/actions/view-actions.c:173 +#: ../app/actions/view-actions.c:173 msgid "Show Scroll_bars" msgstr "Vis _rulleskakter" -#: app/actions/view-actions.c:179 +#: ../app/actions/view-actions.c:179 msgid "Show S_tatusbar" msgstr "Vis _statuslinje" -#: app/actions/view-actions.c:185 +#: ../app/actions/view-actions.c:185 msgid "Fullscr_een" msgstr "Fuldsk_ærm" -#: app/actions/view-actions.c:234 +#: ../app/actions/view-actions.c:234 msgid "16:1 (1600%)" msgstr "16:1 (1600%)" -#: app/actions/view-actions.c:239 +#: ../app/actions/view-actions.c:239 msgid "8:1 (800%)" msgstr "8:1 (800%)" -#: app/actions/view-actions.c:244 +#: ../app/actions/view-actions.c:244 msgid "4:1 (400%)" msgstr "4:1 (400%)" -#: app/actions/view-actions.c:249 +#: ../app/actions/view-actions.c:249 msgid "2:1 (200%)" msgstr "2:1 (200%)" -#: app/actions/view-actions.c:254 +#: ../app/actions/view-actions.c:254 msgid "1:1 (100%)" msgstr "1:1 (100%)" -#: app/actions/view-actions.c:255 +#: ../app/actions/view-actions.c:255 msgid "Zoom 1:1" msgstr "Zoom 1:1" -#: app/actions/view-actions.c:260 +#: ../app/actions/view-actions.c:260 msgid "1:2 (50%)" msgstr "1:2 (50%)" -#: app/actions/view-actions.c:265 +#: ../app/actions/view-actions.c:265 msgid "1:4 (25%)" msgstr "1:4 (25%)" -#: app/actions/view-actions.c:270 +#: ../app/actions/view-actions.c:270 msgid "1:8 (12.5%)" msgstr "1:8 (12,5%)" -#: app/actions/view-actions.c:275 +#: ../app/actions/view-actions.c:275 msgid "1:16 (6.25%)" msgstr "1:16 (6,25%)" -#: app/actions/view-actions.c:280 +#: ../app/actions/view-actions.c:280 msgid "O_ther..." msgstr "_Anden..." -#: app/actions/view-actions.c:288 +#: ../app/actions/view-actions.c:288 msgid "From _Theme" msgstr "Fra _tema" # 'check' dækker over skakbrætsmønster, ikke over tjek -#: app/actions/view-actions.c:293 +#: ../app/actions/view-actions.c:293 msgid "_Light Check Color" msgstr "_Lys ternfarve" -#: app/actions/view-actions.c:298 +#: ../app/actions/view-actions.c:298 msgid "_Dark Check Color" msgstr "_Mørk ternfarve" -#: app/actions/view-actions.c:303 +#: ../app/actions/view-actions.c:303 msgid "Select _Custom Color..." msgstr "Vælg _anden farve..." -#: app/actions/view-actions.c:308 +#: ../app/actions/view-actions.c:308 msgid "As in _Preferences" msgstr "Som i _indstillinger" -#: app/actions/view-actions.c:592 +#: ../app/actions/view-actions.c:592 #, c-format msgid "Other (%s) ..." msgstr "Anden (%s)..." -#: app/actions/view-actions.c:601 +#: ../app/actions/view-actions.c:601 #, c-format msgid "_Zoom (%s)" msgstr "_Zoom (%s)" -#: app/actions/view-commands.c:572 +#: ../app/actions/view-commands.c:572 msgid "Set Canvas Padding Color" msgstr "Angiv lærredudfyldningsfarve" -#: app/actions/view-commands.c:574 +#: ../app/actions/view-commands.c:574 msgid "Set Custom Canvas Padding Color" msgstr "Tilpas lærredudfyldningsfarve" -#: app/base/base-enums.c:23 +#: ../app/base/base-enums.c:23 msgid "Smooth" msgstr "Udtvær" -#: app/base/base-enums.c:24 +#: ../app/base/base-enums.c:24 msgid "Freehand" msgstr "Frihånd" -#: app/base/base-enums.c:55 app/widgets/gimpwidgets-constructors.c:76 -#: app/widgets/gimpwidgets-constructors.c:109 +#: ../app/base/base-enums.c:55 ../app/widgets/gimpwidgets-constructors.c:76 +#: ../app/widgets/gimpwidgets-constructors.c:109 msgid "Value" msgstr "Værdi" -#: app/base/base-enums.c:56 app/core/core-enums.c:157 -#: app/tools/gimpcolorbalancetool.c:301 +#: ../app/base/base-enums.c:56 ../app/core/core-enums.c:157 +#: ../app/tools/gimpcolorbalancetool.c:301 msgid "Red" msgstr "Rød" -#: app/base/base-enums.c:57 app/core/core-enums.c:158 -#: app/tools/gimpcolorbalancetool.c:308 +#: ../app/base/base-enums.c:57 ../app/core/core-enums.c:158 +#: ../app/tools/gimpcolorbalancetool.c:308 msgid "Green" msgstr "Grøn" -#: app/base/base-enums.c:58 app/core/core-enums.c:159 -#: app/tools/gimpcolorbalancetool.c:315 +#: ../app/base/base-enums.c:58 ../app/core/core-enums.c:159 +#: ../app/tools/gimpcolorbalancetool.c:315 msgid "Blue" msgstr "Blå" -#: app/base/base-enums.c:59 app/core/core-enums.c:162 +#: ../app/base/base-enums.c:59 ../app/core/core-enums.c:162 msgid "Alpha" msgstr "Alfa" -#: app/base/base-enums.c:60 app/display/gimpdisplayshell-title.c:234 -#: app/widgets/widgets-enums.c:114 +#: ../app/base/base-enums.c:60 ../app/display/gimpdisplayshell-title.c:234 +#: ../app/widgets/widgets-enums.c:114 msgid "RGB" msgstr "RGB" -#: app/base/base-enums.c:88 +#: ../app/base/base-enums.c:88 msgid "None (Fastest)" msgstr "Ingen (hurtigst)" -#: app/base/base-enums.c:89 app/core/core-enums.c:370 -#: app/widgets/widgets-enums.c:227 +#: ../app/base/base-enums.c:89 ../app/core/core-enums.c:370 +#: ../app/widgets/widgets-enums.c:227 msgid "Linear" msgstr "Lineær" -#: app/base/base-enums.c:90 +#: ../app/base/base-enums.c:90 msgid "Cubic (Best)" msgstr "Kubisk (bedst)" -#: app/base/base-enums.c:188 +#: ../app/base/base-enums.c:188 msgid "Shadows" msgstr "Skygger" -#: app/base/base-enums.c:189 +#: ../app/base/base-enums.c:189 msgid "Midtones" msgstr "Mellemtoner" -#: app/base/base-enums.c:190 +#: ../app/base/base-enums.c:190 msgid "Highlights" msgstr "Lyse toner" -#: app/base/tile-swap.c:456 +#: ../app/base/tile-swap.c:456 msgid "" "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." -msgstr "" +msgstr "Kunne ikke åbne reservehukommelsesfilen. Gimp'en er løbet tør for hukommelse og kan ikke bruge reservehukommelsesfilen på disken. Dele af dit billede kan være ødelagt. Prøv at gemme dit arbejde med andre filnavne, genstart Gimp'en og kontroller placeringen af reservehukommelsesmappen under indstillingerne." -#: app/config/gimpconfig-deserialize.c:100 +#: ../app/config/gimpconfig-deserialize.c:100 #, c-format msgid "value for token %s is not a valid UTF-8 string" msgstr "værdi for symbolet %s er ikke en gyldig UTF-8-streng" -#: app/config/gimpconfig-deserialize.c:217 app/config/gimpconfig.c:424 -#: app/config/gimpconfig.c:437 app/config/gimpscanner.c:417 -#: app/config/gimpscanner.c:489 app/core/gimp-modules.c:132 -#: app/core/gimp-units.c:169 app/gui/session.c:158 -#: app/plug-in/plug-in-rc.c:183 +#: ../app/config/gimpconfig-deserialize.c:217 ../app/config/gimpconfig.c:424 +#: ../app/config/gimpconfig.c:437 ../app/config/gimpscanner.c:417 +#: ../app/config/gimpscanner.c:489 ../app/core/gimp-modules.c:132 +#: ../app/core/gimp-units.c:169 ../app/gui/session.c:158 +#: ../app/plug-in/plug-in-rc.c:183 msgid "fatal parse error" msgstr "fatal fortolkningsfejl" #. please don't translate 'yes' and 'no' -#: app/config/gimpconfig-deserialize.c:467 +#: ../app/config/gimpconfig-deserialize.c:467 #, c-format msgid "expected 'yes' or 'no' for boolean token %s, got '%s'" msgstr "forventede 'yes' eller 'no' for boolesk symbol %s, fik '%s'" -#: app/config/gimpconfig-deserialize.c:541 +#: ../app/config/gimpconfig-deserialize.c:541 #, c-format msgid "invalid value '%s' for token %s" msgstr "ugyldig værdi '%s' for symbolet %s" -#: app/config/gimpconfig-deserialize.c:556 +#: ../app/config/gimpconfig-deserialize.c:556 #, c-format msgid "invalid value '%ld' for token %s" msgstr "ugyldig værdi '%ld' for symbolet %s" -#: app/config/gimpconfig-deserialize.c:625 +#: ../app/config/gimpconfig-deserialize.c:625 #, c-format msgid "while parsing token '%s': %s" msgstr "ved fortolkning af symbolet '%s': %s" -#: app/config/gimpconfig-path.c:177 +#: ../app/config/gimpconfig-path.c:177 #, c-format msgid "Cannot expand ${%s}" msgstr "Kan ikke udfolde ${%s}" -#: app/config/gimpconfig-utils.c:561 app/config/gimpconfigwriter.c:143 -#: app/core/gimpbrushgenerated.c:255 app/core/gimpgradient-save.c:51 -#: app/core/gimpgradient-save.c:142 app/core/gimppalette.c:567 -#: app/gui/themes.c:238 app/tools/gimpimagemaptool.c:607 -#: app/vectors/gimpvectors-export.c:83 app/xcf/xcf.c:348 +#: ../app/config/gimpconfig-utils.c:561 ../app/config/gimpconfigwriter.c:143 +#: ../app/core/gimpbrushgenerated.c:255 ../app/core/gimpgradient-save.c:51 +#: ../app/core/gimpgradient-save.c:142 ../app/core/gimppalette.c:567 +#: ../app/gui/themes.c:238 ../app/tools/gimpimagemaptool.c:607 +#: ../app/vectors/gimpvectors-export.c:83 ../app/xcf/xcf.c:348 #, c-format msgid "Could not open '%s' for writing: %s" msgstr "Kunne ikke åbne '%s' til skrivning: %s" -#: app/config/gimpconfig-utils.c:572 app/config/gimpconfig-utils.c:595 -#: app/vectors/gimpvectors-export.c:96 +#: ../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 "Fejl under skrivning af '%s': %s" -#: app/config/gimpconfig-utils.c:583 +#: ../app/config/gimpconfig-utils.c:583 #, c-format msgid "Error while reading '%s': %s" msgstr "Fejl under læsning af '%s': %s" -#: app/config/gimpconfig-utils.c:625 +#: ../app/config/gimpconfig-utils.c:625 #, c-format msgid "" "There was an error parsing your '%s' file. Default values will be used. A " @@ -3418,12 +3439,12 @@ "blive brugt. En sikkerhedskopi af din konfiguration er blevet oprettet ved '%" "s'." -#: app/config/gimpconfigwriter.c:130 +#: ../app/config/gimpconfigwriter.c:130 #, c-format msgid "Could not create temporary file for '%s': %s" msgstr "Kunne ikke oprette midlertidig fil for '%s': %s" -#: app/config/gimpconfigwriter.c:617 +#: ../app/config/gimpconfigwriter.c:617 #, c-format msgid "" "Error writing to temporary file for '%s': %s\n" @@ -3432,7 +3453,7 @@ "Fejl ved skrivning i den midlertidige fil for '%s': %s\n" "Den originale fil er ikke blevet rørt." -#: app/config/gimpconfigwriter.c:625 +#: ../app/config/gimpconfigwriter.c:625 #, c-format msgid "" "Error writing to temporary file for '%s': %s\n" @@ -3441,22 +3462,22 @@ "Fejl ved skrivning i den midlertidige fil for '%s': %s\n" "Ingen fil er blevet oprettet." -#: app/config/gimpconfigwriter.c:636 +#: ../app/config/gimpconfigwriter.c:636 #, c-format msgid "Error writing to '%s': %s" msgstr "Fejl ved skrivning i '%s': %s" -#: app/config/gimpconfigwriter.c:654 +#: ../app/config/gimpconfigwriter.c:654 #, c-format msgid "Could not create '%s': %s" msgstr "Kunne ikke oprette '%s': %s" -#: app/config/gimprc.c:335 app/config/gimprc.c:348 +#: ../app/config/gimprc.c:335 ../app/config/gimprc.c:348 #, c-format msgid "Parsing '%s'\n" msgstr "Fortolker '%s'\n" -#: app/config/gimprc.c:595 +#: ../app/config/gimprc.c:595 #, c-format msgid "Saving '%s'\n" msgstr "Gemmer '%s'\n" @@ -3465,7 +3486,7 @@ #. * (the preferences dialog mainly) and only those that are should #. * be marked for translation. #. -#: app/config/gimprc-blurbs.h:13 +#: ../app/config/gimprc-blurbs.h:13 msgid "" "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" @@ -3475,11 +3496,11 @@ "modtager fokus. Dette er nyttigt med vindueshåndteringer der bruger \"klik " "for at fokusere\"." -#: app/config/gimprc-blurbs.h:23 +#: ../app/config/gimprc-blurbs.h:23 msgid "Specifies how the area around the image should be drawn." msgstr "Angiver hvordan området omkring billedet skal tegnes." -#: app/config/gimprc-blurbs.h:26 +#: ../app/config/gimprc-blurbs.h:26 msgid "" "Sets the canvas padding color used if the padding mode is set to custom " "color." @@ -3487,19 +3508,19 @@ "Angiv udfyldningsfarven for lærredet hvis udfyldningstilstanden er sat til " "brugerdefineret farve." -#: app/config/gimprc-blurbs.h:30 +#: ../app/config/gimprc-blurbs.h:30 msgid "Ask for confirmation before closing an image without saving." msgstr "Spørg efter bekræftelse før lukning af et vindue uden at gemme." -#: app/config/gimprc-blurbs.h:33 +#: ../app/config/gimprc-blurbs.h:33 msgid "Sets the pixel format of cursors the GIMP will use." msgstr "Angiver punktformatet for markører som Gimp'en bruger." -#: app/config/gimprc-blurbs.h:36 +#: ../app/config/gimprc-blurbs.h:36 msgid "Sets the mode of cursor the GIMP will use." msgstr "Angiver tilstanden for den markør Gimp'en bruger." -#: app/config/gimprc-blurbs.h:39 +#: ../app/config/gimprc-blurbs.h:39 msgid "" "Context-dependent cursors are cool. They are enabled by default. However, " "they require overhead that you may want to do without." @@ -3507,18 +3528,18 @@ "Kontekstafhængige markører er lækre og aktiveret som standard. Men de kræver " "lidt mere, hvilket du muligvis ønsker at undgå." -#: app/config/gimprc-blurbs.h:47 +#: ../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 "" "Sikrer at hvert punkt i et billede bliver afbildet til et punkt på skærmen." -#: app/config/gimprc-blurbs.h:73 +#: ../app/config/gimprc-blurbs.h:73 msgid "This is the distance in pixels where Guide and Grid snapping activates." msgstr "Dette er afstanden i punkter som hjælpelinjer og gitteret låser til." -#: app/config/gimprc-blurbs.h:77 +#: ../app/config/gimprc-blurbs.h:77 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 " @@ -3532,7 +3553,7 @@ "originalen er større end en angivet tærskel. Denne værdi repræsenterer den " "forvalgte tærskel." -#: app/config/gimprc-blurbs.h:90 +#: ../app/config/gimprc-blurbs.h:90 msgid "" "The window type hint that is set on dock windows. This may affect the way " "your window manager decorates and handles dock windows." @@ -3540,36 +3561,36 @@ "Vinduestypehintet der sættes på dokvinduer. Dette kan påvirke den måde din " "vindueshåndtering dekorerer og håndterer dokvinduer." -#: app/config/gimprc-blurbs.h:121 +#: ../app/config/gimprc-blurbs.h:121 msgid "When enabled, the selected brush will be used for all tools." msgstr "Hvis aktiveret vil den valgte pensel blive brugt til alle værktøjer." -#: app/config/gimprc-blurbs.h:127 +#: ../app/config/gimprc-blurbs.h:127 msgid "When enabled, the selected gradient will be used for all tools." msgstr "" "Hvis aktiveret vil den valgte farveovergang blive brugt til alle værktøjer." -#: app/config/gimprc-blurbs.h:130 +#: ../app/config/gimprc-blurbs.h:130 msgid "When enabled, the selected pattern will be used for all tools." msgstr "Hvis aktiveret vil det valgte mønster blive brugt til alle værktøjer." -#: app/config/gimprc-blurbs.h:146 +#: ../app/config/gimprc-blurbs.h:146 msgid "Sets the browser used by the help system." msgstr "Angiv den fremviser der benyttes af hjælpesystemet." -#: app/config/gimprc-blurbs.h:154 +#: ../app/config/gimprc-blurbs.h:154 msgid "Sets the text to appear in image window status bars." msgstr "Angiv den tekst der optræder i billedvinduers statuslinjer." -#: app/config/gimprc-blurbs.h:157 +#: ../app/config/gimprc-blurbs.h:157 msgid "Sets the text to appear in image window titles." msgstr "Angiv den tekst der optræder i billedvinduers titellinjer." -#: app/config/gimprc-blurbs.h:160 +#: ../app/config/gimprc-blurbs.h:160 msgid "When enabled, the GIMP will use a different info window per image view." msgstr "Benyt forskellige infovinduer til de forskellige billedvinduer." -#: app/config/gimprc-blurbs.h:163 +#: ../app/config/gimprc-blurbs.h:163 msgid "" "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." @@ -3577,23 +3598,23 @@ "Sikr at det komplette billede er synligt efter en fil er åbnet, ellers vil " "den blive vist i skalaforholdet 1:1." -#: app/config/gimprc-blurbs.h:167 +#: ../app/config/gimprc-blurbs.h:167 msgid "" "Install a private colormap; might be useful on 8-bit (256 colors) displays." msgstr "" "Installér en privat farveafbildning; kan være brugbart på terminaler med " "indekserede farver." -#: app/config/gimprc-blurbs.h:170 +#: ../app/config/gimprc-blurbs.h:170 msgid "" "Sets the level of interpolation used for scaling and other transformations." msgstr "Angiv interpoleringsniveauet for skalering og andre transformationer." -#: app/config/gimprc-blurbs.h:174 +#: ../app/config/gimprc-blurbs.h:174 msgid "How many recently opened image filenames to keep on the File menu." msgstr "Hvor mange senest åbnede billedfilnavne der skal gemmes i filmenuen." -#: app/config/gimprc-blurbs.h:177 +#: ../app/config/gimprc-blurbs.h:177 msgid "" "Speed of marching ants in the selection outline. This value is in " "milliseconds (less time indicates faster marching)." @@ -3601,7 +3622,7 @@ "Hastigheden for de marcherende myrer for markeringsomridset. Denne værdi er " "i millisekunder (kortere tid giver hurtigere march)." -#: app/config/gimprc-blurbs.h:181 +#: ../app/config/gimprc-blurbs.h:181 msgid "" "GIMP will warn the user if an attempt is made to create an image that would " "take more memory than the size specified here." @@ -3609,11 +3630,11 @@ "Gimp'en advarer ved forsøg på at oprette et billede der vil bruge mere " "hukommelse end denne størrelse." -#: app/config/gimprc-blurbs.h:185 +#: ../app/config/gimprc-blurbs.h:185 msgid "When enabled, GIMP will show mnemonics in menus." msgstr "Hvis aktiveret vil Gimp'en vise genveje i menuer." -#: app/config/gimprc-blurbs.h:188 +#: ../app/config/gimprc-blurbs.h:188 msgid "" "Generally only a concern for 8-bit displays, this sets the minimum number of " "system colors allocated for the GIMP." @@ -3621,28 +3642,28 @@ "Dette angiver det minimale antal farve der bliver allokeret til Gimp'en (kun " "interessant for 8 bit-terminaler)." -#: app/config/gimprc-blurbs.h:199 +#: ../app/config/gimprc-blurbs.h:199 msgid "" "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." -msgstr "" +msgstr "Angiver skærmens vandrette opløsning i punkter pr. tomme. Hvis sat til 0, bliver X-serveren spurgt efter oplysninger om både vandret og lodret opløsning." -#: app/config/gimprc-blurbs.h:204 +#: ../app/config/gimprc-blurbs.h:204 msgid "" "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." -msgstr "" +msgstr "Angiver skærmens lodrette opløsning i punkter pr. tomme. Hvis sat til 0, bliver X-serveren spurgt efter oplysninger om både vandret og lodret opløsning." -#: app/config/gimprc-blurbs.h:209 +#: ../app/config/gimprc-blurbs.h:209 msgid "" "If 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." -msgstr "" +msgstr "Hvis aktiveret, vil flytteværktøjet ændre det aktive lag eller den aktive bane når et lag eller en bane bliver valgt. Dette plejede at være den måde programmet opførte sig på i tidligere versioner." -#: app/config/gimprc-blurbs.h:214 +#: ../app/config/gimprc-blurbs.h:214 msgid "" "Sets the size of the navigation preview available in the lower right corner " "of the image window." @@ -3650,7 +3671,7 @@ "Angiver størrelsen af navigationsminiaturen der er tilgængelig i nederste " "højre hjørne i billedvinduet." -#: app/config/gimprc-blurbs.h:218 +#: ../app/config/gimprc-blurbs.h:218 msgid "" "On multiprocessor machines, if GIMP has been compiled with --enable-mp this " "sets how many processors GIMP should use simultaneously." @@ -3658,7 +3679,7 @@ "På flerprocessormaskiner hvor Gimp'en er blevet oversat med --enable-mp, " "angiver dette hvor mange processor Gimp'en skal benytte samtidigt." -#: app/config/gimprc-blurbs.h:232 +#: ../app/config/gimprc-blurbs.h:232 msgid "" "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 " @@ -3671,7 +3692,7 @@ "større pensler skulle være mere præcis, men det kan være langsommere. " "Mærkeligt nok giver det hurtigere malning på nogle X-servere." -#: app/config/gimprc-blurbs.h:245 +#: ../app/config/gimprc-blurbs.h:245 msgid "" "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 " @@ -3681,7 +3702,7 @@ "lag- og kanalvinduer er behagelige at have, men kan sløve alting ned når der " "arbejdes med store billeder." -#: app/config/gimprc-blurbs.h:250 +#: ../app/config/gimprc-blurbs.h:250 msgid "" "Sets the preview size used for layers and channel previews in newly created " "dialogs." @@ -3689,7 +3710,7 @@ "Angiv standardstørrelsen af miniaturer for lag og kanaler i nysoprettede " "vindue." -#: app/config/gimprc-blurbs.h:254 +#: ../app/config/gimprc-blurbs.h:254 msgid "" "When enabled, the image window will automatically resize itself, whenever " "the physical image size changes." @@ -3697,7 +3718,7 @@ "Lad billedvinduet ændre sin størrelse automatisk når den fysiske " "billedstørrelse ændres." -#: app/config/gimprc-blurbs.h:258 +#: ../app/config/gimprc-blurbs.h:258 msgid "" "When enabled, the image window will automatically resize itself, when " "zooming into and out of images." @@ -3705,23 +3726,23 @@ "Lad billedvinduet ændre sin størrelse automatisk når der zoomes ind og ud på " "billedet." -#: app/config/gimprc-blurbs.h:262 +#: ../app/config/gimprc-blurbs.h:262 msgid "Let GIMP try to restore your last saved session on each startup." msgstr "" "Lad Gimp'en forsøge at gendanne din sidste gemte session ved hver start." -#: app/config/gimprc-blurbs.h:265 +#: ../app/config/gimprc-blurbs.h:265 msgid "" "Remember the current tool, pattern, color, and brush across GIMP sessions." msgstr "" "Husk benyttet værktøj, mønster, farve og pensel på tværs af Gimp-sessioner." -#: app/config/gimprc-blurbs.h:269 +#: ../app/config/gimprc-blurbs.h:269 msgid "Save the positions and sizes of the main dialogs when the GIMP exits." msgstr "" "Gem placeringerne og størrelsen af hovedvinduerne når Gimp'en afslutter." -#: app/config/gimprc-blurbs.h:275 +#: ../app/config/gimprc-blurbs.h:275 msgid "" "When enabled, all paint tools will show a preview of the current brush's " "outline." @@ -3729,14 +3750,14 @@ "Hvis aktiveret, vil alle tegneværktøjer vise et eksempel på den aktuelle " "pensels omrids." -#: app/config/gimprc-blurbs.h:279 +#: ../app/config/gimprc-blurbs.h:279 msgid "" "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." -msgstr "" +msgstr "Hvis aktiveret, vil vinduer vise en hjælpeknap som giver adgang til den relaterede hjælpeside. Hjælpesiden kan stadig nås uden denne knap ved at trykke på F1." -#: app/config/gimprc-blurbs.h:284 +#: ../app/config/gimprc-blurbs.h:284 msgid "" "When enabled, the cursor will be shown over the image while using a paint " "tool." @@ -3744,7 +3765,7 @@ "Hvis aktiveret, vil markøren blive vist over billedet når et maleværktøj " "benyttes." -#: app/config/gimprc-blurbs.h:288 +#: ../app/config/gimprc-blurbs.h:288 msgid "" "When enabled, the menubar is visible by default. This can also be toggled " "with the \"View->Show Menubar\" command." @@ -3752,7 +3773,7 @@ "Hvis aktiveret, vises menulinjen som standard. Dette kan også skiftes med " "kommandoen \"Vis->Vis menulinje\"." -#: app/config/gimprc-blurbs.h:292 +#: ../app/config/gimprc-blurbs.h:292 msgid "" "When enabled, the rulers are visible by default. This can also be toggled " "with the \"View->Show Rulers\" command." @@ -3760,7 +3781,7 @@ "Hvis aktiveret, vises linealerne som standard. Dette kan også skiftes med " "kommandoen \"Vis->Vis linealer\"." -#: app/config/gimprc-blurbs.h:296 +#: ../app/config/gimprc-blurbs.h:296 msgid "" "When enabled, the scrollbars are visible by default. This can also be " "toggled with the \"View->Show Scrollbars\" command." @@ -3768,7 +3789,7 @@ "Hvis aktiveret, vises rulleskakterne som standard. Dette kan også skiftes " "med kommandoen \"Vis->Vis rulleskakter\"." -#: app/config/gimprc-blurbs.h:300 +#: ../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." @@ -3776,7 +3797,7 @@ "Hvis aktiveret, vises statuslinjens som standard. Dette kan også skiftes med " "kommandoen \"Vis->Vis statuslinje\"." -#: app/config/gimprc-blurbs.h:304 +#: ../app/config/gimprc-blurbs.h:304 msgid "" "When enabled, the selection is visible by default. This can also be toggled " "with the \"View->Show Selection\" command." @@ -3784,7 +3805,7 @@ "Hvis aktiveret, vises markeringen som standard. Dette kan også skiftes med " "kommandoen \"Vis->Vis markering\"." -#: app/config/gimprc-blurbs.h:308 +#: ../app/config/gimprc-blurbs.h:308 msgid "" "When enabled, the layer boundary is visible by default. This can also be " "toggled with the \"View->Show Layer Boundary\" command." @@ -3792,7 +3813,7 @@ "Hvis aktiveret, vises laggrænsen som standard. Dette kan også skiftes med " "kommandoen \"Vis->Vis laggrænse\"." -#: app/config/gimprc-blurbs.h:312 +#: ../app/config/gimprc-blurbs.h:312 msgid "" "When enabled, the guides are visible by default. This can also be toggled " "with the \"View->Show Guides\" command." @@ -3800,7 +3821,7 @@ "Hvis aktiveret, vises hjælpelinjerne som standard. Dette kan også skiftes " "med kommandoen \"Vis->Vis hjælpelinjer\"." -#: app/config/gimprc-blurbs.h:316 +#: ../app/config/gimprc-blurbs.h:316 msgid "" "When enabled, the grid is visible by default. This can also be toggled with " "the \"View->Show Grid\" command." @@ -3808,15 +3829,15 @@ "Hvis aktiveret, vises gitteret som standard. Dette kan også skiftes med " "kommandoen \"Vis->Vis gitter\"." -#: app/config/gimprc-blurbs.h:320 +#: ../app/config/gimprc-blurbs.h:320 msgid "Enable to display a handy GIMP tip on startup." msgstr "Angiv om et praktisk tip til Gimp'en skal vises ved start." -#: app/config/gimprc-blurbs.h:323 +#: ../app/config/gimprc-blurbs.h:323 msgid "Enable to display tooltips." msgstr "Angiv om værktøjstip skal vises." -#: app/config/gimprc-blurbs.h:326 +#: ../app/config/gimprc-blurbs.h:326 msgid "" "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 " @@ -3826,7 +3847,7 @@ "Gimp'en efter hastighed frem for hukommelse. Men prøv at slå denne " "indstilling til hvis hukommelse er et stort problem." -#: app/config/gimprc-blurbs.h:331 +#: ../app/config/gimprc-blurbs.h:331 msgid "" "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 " @@ -3843,11 +3864,11 @@ "som er monteret over NFS. Derfor kan det være en god idé at anbringe din " "swapfil i \"/tmp\"." -#: app/config/gimprc-blurbs.h:340 +#: ../app/config/gimprc-blurbs.h:340 msgid "When enabled, menus can be torn off." msgstr "Angiv om menuer skal kunne rives af." -#: app/config/gimprc-blurbs.h:343 +#: ../app/config/gimprc-blurbs.h:343 msgid "" "When enabled, you can change keyboard shortcuts for menu items by hitting a " "key combination while the menu item is highlighted." @@ -3855,15 +3876,15 @@ "Hvis aktiveret, kan du ændre tastaturgenveje for menupunkter ved at trykke " "på en tastekombination mens menupunktet er fremhævet." -#: app/config/gimprc-blurbs.h:347 +#: ../app/config/gimprc-blurbs.h:347 msgid "Save changed keyboard shortcuts when the GIMP exits." msgstr "Gem ændrede tastaturgenveje når Gimp'en afslutter." -#: app/config/gimprc-blurbs.h:350 +#: ../app/config/gimprc-blurbs.h:350 msgid "Restore saved keyboard shortcuts on each GIMP startup." msgstr "Gendan gemte tastaturgenveje ved hver start af Gimp'en." -#: app/config/gimprc-blurbs.h:353 +#: ../app/config/gimprc-blurbs.h:353 msgid "" "Sets the temporary storage directory. Files will appear here during the " "course of running the GIMP. Most files will disappear when the GIMP exits, " @@ -3875,22 +3896,19 @@ "filer bliver så det er bedst hvis dette er en mappe som ikke deles med andre " "brugere." -#: app/config/gimprc-blurbs.h:365 -#, fuzzy +#: ../app/config/gimprc-blurbs.h:365 msgid "" "Sets the size of the thumbnail shown in the Open dialog. Note that GIMP can " "not create thumbnails if layer previews are disabled." -msgstr "" -"Angiv størrelsen af den miniature der gemmes med hvert billede. Bemærk at " -"Gimp'en ikke kan gemme miniaturer hvis lagminiaturer er deaktiveret." +msgstr "Angiv størrelsen af den miniature der vises i Åbn-vinduet. Bemærk at Gimp'en ikke kan gemme miniaturer hvis lagminiaturer er deaktiveret." -#: app/config/gimprc-blurbs.h:369 +#: ../app/config/gimprc-blurbs.h:369 msgid "" "The thumbnail in the Open dialog will be automatically updated if the file " "being previewed is smaller than the size set here." -msgstr "" +msgstr "Miniaturen i Åbn-vinduet vil automatisk blive opdateret hvis billedet der bliver vist er mindre end den størrelse der er angivet her." -#: app/config/gimprc-blurbs.h:373 +#: ../app/config/gimprc-blurbs.h:373 msgid "" "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 " @@ -3903,7 +3921,7 @@ "mellemlagerstørrelse forårsage at Gimp'en bruger mere swapplads og mindre " "hukommelse." -#: app/config/gimprc-blurbs.h:384 +#: ../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." @@ -3911,21 +3929,21 @@ "Det vinduestypehint som sættes på værktøjskassen. Dette kan have betydning " "for hvordan vindueshåndteringen dekorerer og håndterer værktøjskassevinduet." -#: app/config/gimprc-blurbs.h:388 +#: ../app/config/gimprc-blurbs.h:388 msgid "Sets the manner in which transparency is displayed in images." msgstr "Angiv hvordan gennemsigtighed vises i billeder." -#: app/config/gimprc-blurbs.h:391 +#: ../app/config/gimprc-blurbs.h:391 msgid "Sets the size of the checkerboard used to display transparency." msgstr "Angiver størrelsen af de tern der bruges til at vise gennemsigtighed." -#: app/config/gimprc-blurbs.h:394 +#: ../app/config/gimprc-blurbs.h:394 msgid "" "When enabled, the GIMP will not save if the image is unchanged since opening " "it." msgstr "Undlad at gemme hvis et billede er uændret siden det blev åbnet." -#: app/config/gimprc-blurbs.h:398 +#: ../app/config/gimprc-blurbs.h:398 msgid "" "Sets the minimal number of operations that can be undone. More undo levels " "are kept available until the undo-size limit is reached." @@ -3934,7 +3952,7 @@ "fortrydelsesniveauer beholdes indtil begrænsningen på fortrydelsesstørrelsen " "nås." -#: app/config/gimprc-blurbs.h:402 +#: ../app/config/gimprc-blurbs.h:402 msgid "" "Sets 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 " @@ -3944,15 +3962,15 @@ "handlinger på fortrydelsesstakken. Ligegyldig hvilken værdi indstillinger " "har kan mindst lige så mange fortrydelsesniveauer som konfigureret fortrydes." -#: app/config/gimprc-blurbs.h:407 +#: ../app/config/gimprc-blurbs.h:407 msgid "Sets the size of the previews in the Undo History." msgstr "Angiv størrelsen af forhåndsvisninger i fortrydelseshistorikken." -#: app/config/gimprc-blurbs.h:410 +#: ../app/config/gimprc-blurbs.h:410 msgid "When enabled, pressing F1 will open the help browser." msgstr "Tryk på F1 vil åbne hjælpefremviseren." -#: app/config/gimprc-blurbs.h:413 +#: ../app/config/gimprc-blurbs.h:413 #, c-format msgid "" "Sets the external web browser to be used. This can be an absolute path or " @@ -3966,897 +3984,896 @@ "addressen, ellers vil addressen blive tilføjet i slutningen af kommandoen " "med et mellemrum mellem." -#: app/config/gimpscanner.c:220 +#: ../app/config/gimpscanner.c:220 msgid "invalid UTF-8 string" msgstr "ugyldig UTF-8-streng" -#: app/config/gimpscanner.c:516 +#: ../app/config/gimpscanner.c:516 #, c-format msgid "Error while parsing '%s' in line %d: %s" msgstr "Fejl ved fortolkning af '%s' på linje %d: %s" -#: app/core/core-enums.c:27 +#: ../app/core/core-enums.c:27 msgid "_White (full opacity)" msgstr "_Hvidt (helt ugennemsigtigt)" -#: app/core/core-enums.c:28 +#: ../app/core/core-enums.c:28 msgid "_Black (full transparency)" msgstr "_Sort (helt gennemsigtigt)" -#: app/core/core-enums.c:29 +#: ../app/core/core-enums.c:29 msgid "Layer's _alpha channel" msgstr "Lagets _alfakanal" -#: app/core/core-enums.c:30 +#: ../app/core/core-enums.c:30 msgid "_Transfer layer's alpha channel" msgstr "_Overfør lagets alfakanal" -#: app/core/core-enums.c:31 +#: ../app/core/core-enums.c:31 msgid "_Selection" msgstr "_Markering" -#: app/core/core-enums.c:32 +#: ../app/core/core-enums.c:32 msgid "_Grayscale copy of layer" msgstr "_Gråtonekopi af laget" -#: app/core/core-enums.c:61 app/core/gimp-gradients.c:70 +#: ../app/core/core-enums.c:61 ../app/core/gimp-gradients.c:70 msgid "FG to BG (RGB)" msgstr "Fg. til bg. (RGB)" -#: app/core/core-enums.c:62 +#: ../app/core/core-enums.c:62 msgid "FG to BG (HSV)" msgstr "Fg. til bg. (HSV)" -#: app/core/core-enums.c:63 +#: ../app/core/core-enums.c:63 msgid "FG to transparent" msgstr "Fg. til gennemsigtig" -#: app/core/core-enums.c:64 +#: ../app/core/core-enums.c:64 msgid "Custom gradient" msgstr "Brugerdefineret overgang" -#: app/core/core-enums.c:92 +#: ../app/core/core-enums.c:92 msgid "FG color fill" msgstr "Forgrundsfarve-udfyldning" -#: app/core/core-enums.c:93 +#: ../app/core/core-enums.c:93 msgid "BG color fill" msgstr "Baggrundsfarve-udfyldning" -#: app/core/core-enums.c:94 +#: ../app/core/core-enums.c:94 msgid "Pattern fill" msgstr "Mønsterudfyldning" -#: app/core/core-enums.c:123 +#: ../app/core/core-enums.c:123 msgid "Add to the current selection" msgstr "Tilføj til den nuværende markering" -#: app/core/core-enums.c:124 +#: ../app/core/core-enums.c:124 msgid "Subtract from the current selection" msgstr "Træk fra den nuværende markering" -#: app/core/core-enums.c:125 +#: ../app/core/core-enums.c:125 msgid "Replace the current selection" msgstr "Erstat den nuværende markering" -#: app/core/core-enums.c:126 +#: ../app/core/core-enums.c:126 msgid "Intersect with the current selection" msgstr "Kryds med den nuværende markering" -#: app/core/core-enums.c:160 +#: ../app/core/core-enums.c:160 msgid "Gray" msgstr "Grå" -#: app/core/core-enums.c:161 +#: ../app/core/core-enums.c:161 msgid "Indexed" msgstr "Indekseret" -#: app/core/core-enums.c:219 app/core/core-enums.c:334 -#: app/core/core-enums.c:766 app/tools/gimptransformoptions.c:457 +#: ../app/core/core-enums.c:219 ../app/core/core-enums.c:334 +#: ../app/core/core-enums.c:766 ../app/tools/gimptransformoptions.c:457 msgid "None" msgstr "Intet" -#: app/core/core-enums.c:220 +#: ../app/core/core-enums.c:220 msgid "Floyd-Steinberg (normal)" msgstr "Floyd-Steinberg (normal)" -#: app/core/core-enums.c:221 +#: ../app/core/core-enums.c:221 msgid "Floyd-Steinberg (reduced color bleeding)" msgstr "Floyd-Steinberg (reduceret farveblødning)" -#: app/core/core-enums.c:222 +#: ../app/core/core-enums.c:222 msgid "Positioned" msgstr "Placeret" -#: app/core/core-enums.c:251 +#: ../app/core/core-enums.c:251 msgid "Generate optimum palette" msgstr "Generér optimal palet" -#: app/core/core-enums.c:252 +#: ../app/core/core-enums.c:252 msgid "Use web-optimized palette" msgstr "Benyt internetoptimeret palet" -#: app/core/core-enums.c:253 +#: ../app/core/core-enums.c:253 msgid "Use black and white (1-bit) palette" msgstr "Benyt sort/hvid-palet (1-bit)" -#: app/core/core-enums.c:254 +#: ../app/core/core-enums.c:254 msgid "Use custom palette" msgstr "Benyt brugerdefineret palet" -#: app/core/core-enums.c:329 +#: ../app/core/core-enums.c:329 msgid "Foreground color" msgstr "Forgrundsfarve" -#: app/core/core-enums.c:330 +#: ../app/core/core-enums.c:330 msgid "Background color" msgstr "Baggrundsfarve" -#: app/core/core-enums.c:331 +#: ../app/core/core-enums.c:331 msgid "White" msgstr "Hvid" #. Transparency -#: app/core/core-enums.c:332 app/dialogs/preferences-dialog.c:1918 +#: ../app/core/core-enums.c:332 ../app/dialogs/preferences-dialog.c:1918 msgid "Transparency" msgstr "Gennemsigtighed" -#: app/core/core-enums.c:333 app/core/core-enums.c:470 -#: app/pdb/internal_procs.c:179 +#: ../app/core/core-enums.c:333 ../app/core/core-enums.c:470 +#: ../app/pdb/internal_procs.c:179 msgid "Pattern" msgstr "Mønster" -#: app/core/core-enums.c:371 +#: ../app/core/core-enums.c:371 msgid "Bi-linear" msgstr "Bi-lineær" -#: app/core/core-enums.c:372 +#: ../app/core/core-enums.c:372 msgid "Radial" msgstr "Radial" -#: app/core/core-enums.c:373 app/core/core-enums.c:530 -#: app/core/core-enums.c:635 +#: ../app/core/core-enums.c:373 ../app/core/core-enums.c:530 +#: ../app/core/core-enums.c:635 msgid "Square" msgstr "Kvadratisk" -#: app/core/core-enums.c:374 +#: ../app/core/core-enums.c:374 msgid "Conical (sym)" msgstr "Konisk (symmetrisk)" -#: app/core/core-enums.c:375 +#: ../app/core/core-enums.c:375 msgid "Conical (asym)" msgstr "Konisk (asymmetrisk)" # sammenlign med {de,sv,no}.po -#: app/core/core-enums.c:376 +#: ../app/core/core-enums.c:376 msgid "Shaped (angular)" msgstr "Formtilpasset (vinklet)" -#: app/core/core-enums.c:377 +#: ../app/core/core-enums.c:377 msgid "Shaped (spherical)" msgstr "Formtilpasset (sfærisk)" -#: app/core/core-enums.c:378 +#: ../app/core/core-enums.c:378 msgid "Shaped (dimpled)" msgstr "Formtilpasset (fordybet)" -#: app/core/core-enums.c:379 +#: ../app/core/core-enums.c:379 msgid "Spiral (cw)" msgstr "Spiral (med uret)" -#: app/core/core-enums.c:380 +#: ../app/core/core-enums.c:380 msgid "Spiral (ccw)" msgstr "Spiral (mod uret)" -#: app/core/core-enums.c:410 +#: ../app/core/core-enums.c:410 msgid "Intersections (dots)" msgstr "Kryds med (prikker)" -#: app/core/core-enums.c:411 +#: ../app/core/core-enums.c:411 msgid "Intersections (crosshairs)" msgstr "Kryds med (sigtekorn)" -#: app/core/core-enums.c:412 +#: ../app/core/core-enums.c:412 msgid "Dashed" msgstr "Stiplet" -#: app/core/core-enums.c:413 +#: ../app/core/core-enums.c:413 msgid "Double dashed" msgstr "Dobbeltstiplet" -#: app/core/core-enums.c:414 app/core/core-enums.c:469 +#: ../app/core/core-enums.c:414 ../app/core/core-enums.c:469 msgid "Solid" msgstr "Ensfarvet" -#: app/core/core-enums.c:441 +#: ../app/core/core-enums.c:441 msgid "Stroke line" msgstr "Bestryg linje" -#: app/core/core-enums.c:442 +#: ../app/core/core-enums.c:442 msgid "Stroke with a paint tool" msgstr "Bestryg med et maleværktøj" -#: app/core/core-enums.c:498 +#: ../app/core/core-enums.c:498 msgid "Miter" msgstr "Mellem" -#: app/core/core-enums.c:499 app/core/core-enums.c:529 +#: ../app/core/core-enums.c:499 ../app/core/core-enums.c:529 msgid "Round" msgstr "Rund" -#: app/core/core-enums.c:500 +#: ../app/core/core-enums.c:500 msgid "Bevel" msgstr "Kant" -#: app/core/core-enums.c:528 +#: ../app/core/core-enums.c:528 msgid "Butt" msgstr "Slut" -#: app/core/core-enums.c:566 app/dialogs/preferences-dialog.c:1804 +#: ../app/core/core-enums.c:566 ../app/dialogs/preferences-dialog.c:1804 msgid "Custom" msgstr "Brugerdefineret" -#: app/core/core-enums.c:567 +#: ../app/core/core-enums.c:567 msgid "Line" msgstr "Linje" -#: app/core/core-enums.c:568 +#: ../app/core/core-enums.c:568 msgid "Long dashes" msgstr "Lange streger" -#: app/core/core-enums.c:569 +#: ../app/core/core-enums.c:569 msgid "Medium dashes" msgstr "Mellem streger" -#: app/core/core-enums.c:570 +#: ../app/core/core-enums.c:570 msgid "Short dashes" msgstr "Korte streger" -#: app/core/core-enums.c:571 +#: ../app/core/core-enums.c:571 msgid "Sparse dots" msgstr "Få prikker" -#: app/core/core-enums.c:572 +#: ../app/core/core-enums.c:572 msgid "Normal dots" msgstr "Normale prikker" -#: app/core/core-enums.c:573 +#: ../app/core/core-enums.c:573 msgid "Dense dots" msgstr "Tætte prikker" -#: app/core/core-enums.c:574 +#: ../app/core/core-enums.c:574 msgid "Stipples" msgstr "Stipling" -#: app/core/core-enums.c:575 +#: ../app/core/core-enums.c:575 msgid "Dash dot..." msgstr "Streg-prik..." -#: app/core/core-enums.c:576 +#: ../app/core/core-enums.c:576 msgid "Dash dot dot..." msgstr "Streg-prik-prik..." -#: app/core/core-enums.c:604 +#: ../app/core/core-enums.c:604 msgid "Stock ID" msgstr "Lager-id" -#: app/core/core-enums.c:605 +#: ../app/core/core-enums.c:605 msgid "Inline pixbuf" msgstr "Indlejret pixbuf" -#: app/core/core-enums.c:606 +#: ../app/core/core-enums.c:606 msgid "Image file" msgstr "Billedfil" -#: app/core/core-enums.c:634 +#: ../app/core/core-enums.c:634 msgid "Circle" msgstr "Circle" -#: app/core/core-enums.c:636 +#: ../app/core/core-enums.c:636 msgid "Diamond" msgstr "Diamant" -#: app/core/core-enums.c:664 app/dialogs/preferences-dialog.c:1950 +#: ../app/core/core-enums.c:664 ../app/dialogs/preferences-dialog.c:1950 msgid "Horizontal" msgstr "Vandret" -#: app/core/core-enums.c:665 app/dialogs/preferences-dialog.c:1952 +#: ../app/core/core-enums.c:665 ../app/dialogs/preferences-dialog.c:1952 msgid "Vertical" msgstr "Lodret" -#: app/core/core-enums.c:666 +#: ../app/core/core-enums.c:666 msgid "Unknown" msgstr "Ukendt" -#: app/core/core-enums.c:730 +#: ../app/core/core-enums.c:730 msgid "Tiny" msgstr "Bitte" -#: app/core/core-enums.c:731 +#: ../app/core/core-enums.c:731 msgid "Very small" msgstr "Meget lille" -#: app/core/core-enums.c:732 +#: ../app/core/core-enums.c:732 msgid "Small" msgstr "Lille" -#: app/core/core-enums.c:733 +#: ../app/core/core-enums.c:733 msgid "Medium" msgstr "Mellem" -#: app/core/core-enums.c:734 +#: ../app/core/core-enums.c:734 msgid "Large" msgstr "Stor" -#: app/core/core-enums.c:735 +#: ../app/core/core-enums.c:735 msgid "Very large" msgstr "Meget stor" -#: app/core/core-enums.c:736 +#: ../app/core/core-enums.c:736 msgid "Huge" msgstr "Enorm" -#: app/core/core-enums.c:737 +#: ../app/core/core-enums.c:737 msgid "Enormous" msgstr "Kolossal" -#: app/core/core-enums.c:738 +#: ../app/core/core-enums.c:738 msgid "Gigantic" msgstr "Gigantisk" -#: app/core/core-enums.c:767 +#: ../app/core/core-enums.c:767 msgid "Sawtooth wave" msgstr "Savtakket bølge" -#: app/core/core-enums.c:768 +#: ../app/core/core-enums.c:768 msgid "Triangular wave" msgstr "Trekantet bølge" -#: app/core/core-enums.c:830 +#: ../app/core/core-enums.c:830 msgid "No thumbnails" msgstr "Ingen miniaturer" -#: app/core/core-enums.c:831 +#: ../app/core/core-enums.c:831 msgid "Normal (128x128)" msgstr "Normal (128x128)" -#: app/core/core-enums.c:832 +#: ../app/core/core-enums.c:832 msgid "Large (256x256)" msgstr "Stor (256x256)" -#: app/core/core-enums.c:859 +#: ../app/core/core-enums.c:859 msgid "Forward (traditional)" msgstr "Fremad (traditionel)" -#: app/core/core-enums.c:860 +#: ../app/core/core-enums.c:860 msgid "Backward (corrective)" msgstr "Tilbage (korrigerende)" -#: app/core/core-enums.c:1029 +#: ../app/core/core-enums.c:1029 msgid "<>" msgstr "<>" -#: app/core/core-enums.c:1030 +#: ../app/core/core-enums.c:1030 msgid "Scale image" msgstr "Skalér billede" -#: app/core/core-enums.c:1031 +#: ../app/core/core-enums.c:1031 msgid "Resize image" msgstr "Ændr billedstørrelse" -#: app/core/core-enums.c:1032 +#: ../app/core/core-enums.c:1032 msgid "Flip image" msgstr "Vend billede" -#: app/core/core-enums.c:1033 +#: ../app/core/core-enums.c:1033 msgid "Rotate image" msgstr "Rotér billede" -#: app/core/core-enums.c:1034 +#: ../app/core/core-enums.c:1034 msgid "Crop image" msgstr "Beskær billede" -#: app/core/core-enums.c:1035 +#: ../app/core/core-enums.c:1035 msgid "Convert image" msgstr "Konvertér billede" -#: app/core/core-enums.c:1036 +#: ../app/core/core-enums.c:1036 msgid "Merge layers" msgstr "Forén lag" -#: app/core/core-enums.c:1037 +#: ../app/core/core-enums.c:1037 msgid "Merge vectors" msgstr "Forén vektorer" -#: app/core/core-enums.c:1038 app/core/gimpchannel.c:383 +#: ../app/core/core-enums.c:1038 ../app/core/gimpchannel.c:383 msgid "Quick Mask" msgstr "Hurtigmaske" -#: app/core/core-enums.c:1039 app/core/core-enums.c:1068 -#: app/core/gimpimage-grid.c:59 app/dialogs/grid-dialog.c:144 -#: app/tools/tools-enums.c:175 +#: ../app/core/core-enums.c:1039 ../app/core/core-enums.c:1068 +#: ../app/core/gimpimage-grid.c:59 ../app/dialogs/grid-dialog.c:144 +#: ../app/tools/tools-enums.c:175 msgid "Grid" msgstr "Hjælpelinje" -#: app/core/core-enums.c:1040 app/core/core-enums.c:1069 +#: ../app/core/core-enums.c:1040 ../app/core/core-enums.c:1069 msgid "Guide" msgstr "Hjælpelinje" -#: app/core/core-enums.c:1042 app/core/core-enums.c:1072 +#: ../app/core/core-enums.c:1042 ../app/core/core-enums.c:1072 msgid "Drawable mod" msgstr "Tegneobjektsændring" -#: app/core/core-enums.c:1043 app/core/core-enums.c:1073 +#: ../app/core/core-enums.c:1043 ../app/core/core-enums.c:1073 msgid "Selection mask" msgstr "Markeringsmaske" -#: app/core/core-enums.c:1044 app/core/core-enums.c:1076 +#: ../app/core/core-enums.c:1044 ../app/core/core-enums.c:1076 msgid "Item visibility" msgstr "Elementsynlighed" -#: app/core/core-enums.c:1045 +#: ../app/core/core-enums.c:1045 msgid "Linked item" msgstr "Kædet element" -#: app/core/core-enums.c:1046 +#: ../app/core/core-enums.c:1046 msgid "Item properties" msgstr "Elementegenskaber" -#: app/core/core-enums.c:1047 app/core/core-enums.c:1075 +#: ../app/core/core-enums.c:1047 ../app/core/core-enums.c:1075 msgid "Move item" msgstr "Flyt element" -#: app/core/core-enums.c:1048 +#: ../app/core/core-enums.c:1048 msgid "Scale item" msgstr "Skalér element" -#: app/core/core-enums.c:1049 +#: ../app/core/core-enums.c:1049 msgid "Resize item" msgstr "Ændr størrelse af element" -#: app/core/core-enums.c:1050 app/core/core-enums.c:1080 +#: ../app/core/core-enums.c:1050 ../app/core/core-enums.c:1080 msgid "Add layer mask" msgstr "Tilføj lagmaske" -#: app/core/core-enums.c:1051 +#: ../app/core/core-enums.c:1051 msgid "Apply layer mask" msgstr "Anvend lagmaske" -#: app/core/core-enums.c:1052 +#: ../app/core/core-enums.c:1052 msgid "Floating selection to layer" msgstr "Flydende markering til lag" -#: app/core/core-enums.c:1053 +#: ../app/core/core-enums.c:1053 msgid "Float selection" msgstr "Flyd markering" -#: app/core/core-enums.c:1054 +#: ../app/core/core-enums.c:1054 msgid "Anchor floating selection" msgstr "Forankr flydende markering" -#: app/core/core-enums.c:1055 +#: ../app/core/core-enums.c:1055 msgid "Remove floating selection" msgstr "Fjern flydende markering" -#: app/core/core-enums.c:1056 app/core/gimp-edit.c:267 +#: ../app/core/core-enums.c:1056 ../app/core/gimp-edit.c:267 msgid "Paste" msgstr "Indsæt" -#: app/core/core-enums.c:1057 app/core/gimp-edit.c:418 +#: ../app/core/core-enums.c:1057 ../app/core/gimp-edit.c:418 msgid "Cut" msgstr "Klip" -#: app/core/core-enums.c:1058 app/core/core-enums.c:1086 -#: app/tools/gimptexttool.c:142 app/widgets/widgets-enums.c:263 +#: ../app/core/core-enums.c:1058 ../app/core/core-enums.c:1086 +#: ../app/tools/gimptexttool.c:144 ../app/widgets/widgets-enums.c:263 msgid "Text" msgstr "Tekst" -#: app/core/core-enums.c:1059 app/core/core-enums.c:1099 -#: app/core/gimpdrawable-transform.c:867 +#: ../app/core/core-enums.c:1059 ../app/core/core-enums.c:1099 +#: ../app/core/gimpdrawable-transform.c:867 msgid "Transform" msgstr "Transformér" -#: app/core/core-enums.c:1060 app/core/core-enums.c:1100 -#: app/paint/gimppaintcore.c:345 +#: ../app/core/core-enums.c:1060 ../app/core/core-enums.c:1100 +#: ../app/paint/gimppaintcore.c:345 msgid "Paint" msgstr "Mal" -#: app/core/core-enums.c:1061 app/core/core-enums.c:1102 +#: ../app/core/core-enums.c:1061 ../app/core/core-enums.c:1102 msgid "Attach parasite" msgstr "Vedhæft parasit" -#: app/core/core-enums.c:1062 app/core/core-enums.c:1103 +#: ../app/core/core-enums.c:1062 ../app/core/core-enums.c:1103 msgid "Remove parasite" msgstr "Fjern parasit" -#: app/core/core-enums.c:1063 +#: ../app/core/core-enums.c:1063 msgid "Import paths" msgstr "Importér baner" -#: app/core/core-enums.c:1064 app/pdb/drawable_cmds.c:1693 +#: ../app/core/core-enums.c:1064 ../app/pdb/drawable_cmds.c:1693 msgid "Plug-In" msgstr "Udvidelsesmodul" -#: app/core/core-enums.c:1065 +#: ../app/core/core-enums.c:1065 msgid "Image type" msgstr "Billedtype" -#: app/core/core-enums.c:1066 +#: ../app/core/core-enums.c:1066 msgid "Image size" msgstr "Billedstørrelse" -#: app/core/core-enums.c:1067 +#: ../app/core/core-enums.c:1067 msgid "Resolution change" msgstr "Opløsningsændring" -#: app/core/core-enums.c:1070 +#: ../app/core/core-enums.c:1070 msgid "Change indexed palette" msgstr "Skift indekseret palet" -#: app/core/core-enums.c:1074 +#: ../app/core/core-enums.c:1074 msgid "Rename item" msgstr "Omdøb element" -#: app/core/core-enums.c:1077 +#: ../app/core/core-enums.c:1077 msgid "Set item linked" msgstr "Sæt kædet element" -#: app/core/core-enums.c:1078 +#: ../app/core/core-enums.c:1078 msgid "New layer" msgstr "Nyt lag" -#: app/core/core-enums.c:1081 +#: ../app/core/core-enums.c:1081 msgid "Delete layer mask" msgstr "Slet af lagmaske" -#: app/core/core-enums.c:1082 +#: ../app/core/core-enums.c:1082 msgid "Reposition layer" msgstr "Flyt lag" -#: app/core/core-enums.c:1083 +#: ../app/core/core-enums.c:1083 msgid "Set layer mode" msgstr "Ændr lagtilstand" -#: app/core/core-enums.c:1084 +#: ../app/core/core-enums.c:1084 msgid "Set layer opacity" msgstr "Ændr laggennemsigtighed" -#: app/core/core-enums.c:1085 +#: ../app/core/core-enums.c:1085 msgid "Set preserve trans" msgstr "Ændr bevar gennemsigtighed" -#: app/core/core-enums.c:1087 +#: ../app/core/core-enums.c:1087 msgid "Text modified" msgstr "Tekst ændret" -#: app/core/core-enums.c:1088 +#: ../app/core/core-enums.c:1088 msgid "New channel" msgstr "Ny kanal" -#: app/core/core-enums.c:1090 +#: ../app/core/core-enums.c:1090 msgid "Reposition channel" msgstr "Flyt kanal" -#: app/core/core-enums.c:1091 +#: ../app/core/core-enums.c:1091 msgid "Channel color" msgstr "Kanalfarve" -#: app/core/core-enums.c:1092 +#: ../app/core/core-enums.c:1092 msgid "New vectors" msgstr "Nye vektorer" -#: app/core/core-enums.c:1093 +#: ../app/core/core-enums.c:1093 msgid "Delete vectors" msgstr "Slet vektorer" -#: app/core/core-enums.c:1094 +#: ../app/core/core-enums.c:1094 msgid "Vectors mod" msgstr "Ændring af vektorer" -#: app/core/core-enums.c:1095 +#: ../app/core/core-enums.c:1095 msgid "Reposition vectors" msgstr "Flyt vektorer" # FS står for floating selection -#: app/core/core-enums.c:1096 +#: ../app/core/core-enums.c:1096 msgid "FS to layer" msgstr "Flydende til lag" -#: app/core/core-enums.c:1097 +#: ../app/core/core-enums.c:1097 msgid "FS rigor" msgstr "Stramning af flydende" -#: app/core/core-enums.c:1098 +#: ../app/core/core-enums.c:1098 msgid "FS relax" msgstr "Løsnen af flydende" -#: app/core/core-enums.c:1101 app/paint/gimpink.c:102 -#: app/tools/gimpinktool.c:62 +#: ../app/core/core-enums.c:1101 ../app/paint/gimpink.c:102 +#: ../app/tools/gimpinktool.c:62 msgid "Ink" msgstr "Blækpen" -#: app/core/core-enums.c:1104 +#: ../app/core/core-enums.c:1104 msgid "EEK: can't undo" msgstr "Argh: kan ikke fortryde" -#: app/core/gimp-edit.c:109 app/core/gimpselection.c:668 +#: ../app/core/gimp-edit.c:109 ../app/core/gimpselection.c:668 msgid "Unable to cut or copy because the selected region is empty." msgstr "Kan ikke klippe eller kopiere fordi det markerede område er tomt." -#: app/core/gimp-edit.c:195 app/core/gimp-edit.c:319 +#: ../app/core/gimp-edit.c:195 ../app/core/gimp-edit.c:319 msgid "Pasted Layer" msgstr "Indsat lag" -#: app/core/gimp-edit.c:369 +#: ../app/core/gimp-edit.c:369 msgid "Fill with FG Color" msgstr "Udfyld med fg.-farve" -#: app/core/gimp-edit.c:373 app/core/gimp-edit.c:394 +#: ../app/core/gimp-edit.c:373 ../app/core/gimp-edit.c:394 msgid "Fill with BG Color" msgstr "Udfyld med bg.-farve" -#: app/core/gimp-edit.c:377 +#: ../app/core/gimp-edit.c:377 msgid "Fill with White" msgstr "Udfyld med hvid" -#: app/core/gimp-edit.c:381 +#: ../app/core/gimp-edit.c:381 msgid "Fill with Transparency" msgstr "Udfyld med gennemsigtighed" -#: app/core/gimp-edit.c:385 +#: ../app/core/gimp-edit.c:385 msgid "Fill with Pattern" msgstr "Udfyldning med mønster" -#: app/core/gimp-gradients.c:75 +#: ../app/core/gimp-gradients.c:75 msgid "FG to BG (HSV counter-clockwise)" msgstr "Forgr. til baggr. (HSV mod uret)" -#: app/core/gimp-gradients.c:80 +#: ../app/core/gimp-gradients.c:80 msgid "FG to BG (HSV clockwise hue)" msgstr "Forgr. til baggr. (HSV med uret)" -#: app/core/gimp-gradients.c:85 +#: ../app/core/gimp-gradients.c:85 msgid "FG to Transparent" msgstr "Fg. til gennemsigtig" -#: app/core/gimp-gui.c:153 +#: ../app/core/gimp-gui.c:153 msgid "GIMP" msgstr "Gimp'en" #. register all internal procedures -#: app/core/gimp.c:638 +#: ../app/core/gimp.c:638 msgid "Procedural Database" msgstr "Proceduredatabase" -#: app/core/gimp.c:641 +#: ../app/core/gimp.c:641 msgid "Plug-In Environment" msgstr "Udvidelsesmodulmiljø" #. initialize the global parasite table -#: app/core/gimp.c:852 +#: ../app/core/gimp.c:852 msgid "Looking for data files" msgstr "Leder efter datafiler" -#: app/core/gimp.c:852 +#: ../app/core/gimp.c:852 msgid "Parasites" msgstr "Parasitter" #. initialize the document history -#: app/core/gimp.c:876 +#: ../app/core/gimp.c:876 msgid "Documents" msgstr "Dokumenter" # for at skelne 'modules' fra 'plug-ins' kalder vi førstnævnte for programudvidelser #. initialize the module list -#: app/core/gimp.c:884 app/dialogs/preferences-dialog.c:2325 +#: ../app/core/gimp.c:884 ../app/dialogs/preferences-dialog.c:2325 msgid "Modules" msgstr "Programudvidelser" -#: app/core/gimpbrush.c:534 +#: ../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:554 -#, fuzzy, c-format +#: ../app/core/gimpbrush.c:554 +#, c-format msgid "Fatal parse error in brush file '%s': Width = 0." -msgstr "Fatal fortolkningsfejl i penselfilen '%s': ukendt dybde %d." +msgstr "Fatal fortolkningsfejl i penselfilen \"%s\": bredde = 0." -#: app/core/gimpbrush.c:563 -#, fuzzy, c-format +#: ../app/core/gimpbrush.c:563 +#, c-format msgid "Fatal parse error in brush file '%s': Height = 0." -msgstr "Fatal fortolkningsfejl i penselfilen '%s': filen er ødelagt." +msgstr "Fatal fortolkningsfejl i penselfilen \"%s\": højde = 0." -#: app/core/gimpbrush.c:572 -#, fuzzy, c-format +#: ../app/core/gimpbrush.c:572 +#, c-format msgid "Fatal parse error in brush file '%s': Bytes = 0." -msgstr "Fatal fortolkningsfejl i penselfilen '%s': filen er ødelagt." +msgstr "Fatal fortolkningsfejl i penselfilen \"%s\": byte = 0." -#: app/core/gimpbrush.c:596 +#: ../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." +msgstr "Fatal fortolkningsfejl i penselfilen \"%s\": ukendt dybde %d." -#: app/core/gimpbrush.c:609 +#: ../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." +msgstr "Fatal fortolkningsfejl i penselfilen \"%s\": ukendt version %d." -#: app/core/gimpbrush.c:625 app/core/gimpbrush.c:745 +#: ../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." +msgstr "Fatal fortolkningsfejl i penselfilen \"%s\": filen ser ud til at være afkortet." -#: app/core/gimpbrush.c:633 app/core/gimpbrushgenerated.c:648 -#: app/core/gimpbrushpipe.c:354 +#: ../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'." +msgstr "Ugyldig UTF-8-streng i penselfilen \"%s\"." -#: app/core/gimpbrush.c:640 app/core/gimpcontext.c:1299 -#: app/core/gimpitem.c:475 app/core/gimppattern.c:400 -#: app/dialogs/template-options-dialog.c:80 app/tools/gimpvectortool.c:339 +#: ../app/core/gimpbrush.c:640 ../app/core/gimpcontext.c:1299 +#: ../app/core/gimpitem.c:475 ../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:734 +#: ../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 "" -"Fatal fortolkningsfejl i penselfilen '%s': ikke-understøttet penseldybdde %" -"d\n" +"Fatal fortolkningsfejl i penselfilen \"%s\": ikke-understøttet penseldybdde %d\n" "Gimp-pensler skal være gråtone eller RGBA." -#: app/core/gimpbrushgenerated.c:614 +#: ../app/core/gimpbrushgenerated.c:614 #, c-format msgid "Fatal parse error in brush file '%s': Not a GIMP brush file." -msgstr "Fatal fortolkningsfejl i penselfilen '%s': er ikke en Gimp-penselfil." +msgstr "Fatal fortolkningsfejl i penselfilen \"%s\": er ikke en Gimp-penselfil." -#: app/core/gimpbrushgenerated.c:630 +#: ../app/core/gimpbrushgenerated.c:630 #, c-format msgid "Fatal parse error in brush file '%s': Unknown GIMP brush version." -msgstr "Fatal fortolkningsfejl i penselfilen '%s': ukendt Gimp-penselversion." +msgstr "Fatal fortolkningsfejl i penselfilen \"%s\": ukendt Gimp-penselversion." -#: app/core/gimpbrushgenerated.c:669 +#: ../app/core/gimpbrushgenerated.c:669 #, c-format msgid "Fatal parse error in brush file '%s': Unknown GIMP brush shape." -msgstr "Fatal fortolkningsfejl i penselfilen '%s': ukendt Gimp-penselform." +msgstr "Fatal fortolkningsfejl i penselfilen \"%s\": ukendt Gimp-penselform." -#: app/core/gimpbrushgenerated.c:750 +#: ../app/core/gimpbrushgenerated.c:750 #, c-format msgid "Error while reading brush file '%s': %s" msgstr "Fejl under læsning af penselfilen \"%s\": %s" -#: app/core/gimpbrushgenerated.c:752 +#: ../app/core/gimpbrushgenerated.c:752 msgid "File is truncated" msgstr "Fil er afkortet" -#: app/core/gimpbrushpipe.c:369 app/core/gimpbrushpipe.c:389 -#: app/core/gimpbrushpipe.c:479 +#: ../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 "Fatal fortolkningsfejl i penselfilen '%s': filen er ødelagt." +msgstr "Fatal fortolkningsfejl i penselfilen \"%s\": filen er ødelagt." -#: app/core/gimpchannel.c:280 app/pdb/internal_procs.c:95 +#: ../app/core/gimpchannel.c:280 ../app/pdb/internal_procs.c:95 msgid "Channel" msgstr "Kanal" -#: app/core/gimpchannel.c:281 +#: ../app/core/gimpchannel.c:281 msgid "Rename Channel" msgstr "Omdøb kanal" -# til undo-info -#: app/core/gimpchannel.c:282 +#: ../app/core/gimpchannel.c:282 msgid "Move Channel" msgstr "Flyt kanal" -#: app/core/gimpchannel.c:283 +#: ../app/core/gimpchannel.c:283 msgid "Scale Channel" msgstr "Skalér kanal" -#: app/core/gimpchannel.c:284 +#: ../app/core/gimpchannel.c:284 msgid "Resize Channel" msgstr "Ændr størrelse på kanal" -#: app/core/gimpchannel.c:285 +#: ../app/core/gimpchannel.c:285 msgid "Flip Channel" msgstr "Vend kanal" -#: app/core/gimpchannel.c:286 +#: ../app/core/gimpchannel.c:286 msgid "Rotate Channel" msgstr "Rotér kanal" -#: app/core/gimpchannel.c:287 app/core/gimpdrawable-transform.c:1121 +#: ../app/core/gimpchannel.c:287 ../app/core/gimpdrawable-transform.c:1121 msgid "Transform Channel" msgstr "Transformér kanal" -#: app/core/gimpchannel.c:288 +#: ../app/core/gimpchannel.c:288 msgid "Stroke Channel" msgstr "Bestryg kanal" -#: app/core/gimpchannel.c:310 +#: ../app/core/gimpchannel.c:310 msgid "Feather Channel" msgstr "Udvisk kanal" -#: app/core/gimpchannel.c:311 +#: ../app/core/gimpchannel.c:311 msgid "Sharpen Channel" msgstr "Gør kanal skarpere" -#: app/core/gimpchannel.c:312 +#: ../app/core/gimpchannel.c:312 msgid "Clear Channel" msgstr "Ryd kanal" -#: app/core/gimpchannel.c:313 +#: ../app/core/gimpchannel.c:313 msgid "Fill Channel" msgstr "Udfyld kanal" -#: app/core/gimpchannel.c:314 +#: ../app/core/gimpchannel.c:314 msgid "Invert Channel" msgstr "Invertér kanal" -#: app/core/gimpchannel.c:315 +#: ../app/core/gimpchannel.c:315 msgid "Border Channel" msgstr "Sæt ramme på kanal" -#: app/core/gimpchannel.c:316 +#: ../app/core/gimpchannel.c:316 msgid "Grow Channel" msgstr "Forøg kanal" -#: app/core/gimpchannel.c:317 +#: ../app/core/gimpchannel.c:317 msgid "Shrink Channel" msgstr "Formindsk kanal" -#: app/core/gimpchannel.c:631 +#: ../app/core/gimpchannel.c:631 msgid "Cannot stroke empty channel." msgstr "Kan ikke bestryge tom kanal." -#: app/core/gimpchannel.c:1527 +#: ../app/core/gimpchannel.c:1527 msgid "Set Channel Color" msgstr "Ændring af kanalfarve" -#: app/core/gimpchannel.c:1575 +#: ../app/core/gimpchannel.c:1575 msgid "Set Channel Opacity" msgstr "Ændring af kanalgennemsigtighed" -#: app/core/gimpchannel.c:1644 app/core/gimpselection.c:563 +#: ../app/core/gimpchannel.c:1644 ../app/core/gimpselection.c:563 msgid "Selection Mask" msgstr "Markeringsmaske" -#: app/core/gimpchannel-select.c:56 app/tools/gimprectselecttool.c:96 +#: ../app/core/gimpchannel-select.c:56 ../app/tools/gimprectselecttool.c:96 msgid "Rect Select" msgstr "Rektangulær markering" -#: app/core/gimpchannel-select.c:107 app/tools/gimpellipseselecttool.c:71 +#: ../app/core/gimpchannel-select.c:107 +#: ../app/tools/gimpellipseselecttool.c:71 msgid "Ellipse Select" msgstr "Ellipsemarkering" -#: app/core/gimpchannel-select.c:373 +#: ../app/core/gimpchannel-select.c:373 msgid "Alpha to Selection" msgstr "Alfa til markering" -#: app/core/gimpchannel-select.c:414 +#: ../app/core/gimpchannel-select.c:414 #, c-format msgid "%s Channel to Selection" msgstr "%s-kanal til markering" -#: app/core/gimpchannel-select.c:460 app/tools/gimpfuzzyselecttool.c:97 +#: ../app/core/gimpchannel-select.c:460 ../app/tools/gimpfuzzyselecttool.c:97 msgid "Fuzzy Select" msgstr "Udflydende markering" -#: app/core/gimpchannel-select.c:505 +#: ../app/core/gimpchannel-select.c:505 msgid "Select by Color" msgstr "Markér efter farve" -#: app/core/gimpdata.c:314 +#: ../app/core/gimpdata.c:314 #, c-format msgid "Could not delete '%s': %s" msgstr "Kunne ikke slette '%s': %s" # %s er filnavnet -#: app/core/gimpdatafactory.c:291 app/core/gimpdatafactory.c:511 +#: ../app/core/gimpdatafactory.c:291 ../app/core/gimpdatafactory.c:511 #, c-format msgid "" "Warning: Failed to save data:\n" @@ -4867,18 +4884,18 @@ "\n" "%s" -#: app/core/gimpdatafactory.c:411 app/core/gimpdatafactory.c:414 -#: app/core/gimpitem.c:272 app/core/gimpitem.c:275 +#: ../app/core/gimpdatafactory.c:411 ../app/core/gimpdatafactory.c:414 +#: ../app/core/gimpitem.c:272 ../app/core/gimpitem.c:275 msgid "copy" msgstr "kopi" -#: app/core/gimpdatafactory.c:423 app/core/gimpitem.c:284 +#: ../app/core/gimpdatafactory.c:423 ../app/core/gimpitem.c:284 #, c-format msgid "%s copy" msgstr "%s-kopi" # %s er filnavnet -#: app/core/gimpdatafactory.c:614 +#: ../app/core/gimpdatafactory.c:614 #, c-format msgid "" "Warning: Failed to load data:\n" @@ -4889,466 +4906,463 @@ "\n" "%s" -#: app/core/gimpdrawable-blend.c:238 app/tools/gimpblendtool.c:101 +#: ../app/core/gimpdrawable-blend.c:238 ../app/tools/gimpblendtool.c:101 msgid "Blend" msgstr "Blanding" -#: app/core/gimpdrawable-bucket-fill.c:85 app/paint/gimpclone.c:183 +#: ../app/core/gimpdrawable-bucket-fill.c:85 ../app/paint/gimpclone.c:183 msgid "No patterns available for this operation." msgstr "Ingen mønstre disponible for denne operation." -#: app/core/gimpdrawable-bucket-fill.c:272 app/tools/gimpbucketfilltool.c:91 +#: ../app/core/gimpdrawable-bucket-fill.c:272 +#: ../app/tools/gimpbucketfilltool.c:91 msgid "Bucket Fill" msgstr "Spandudfyldning" -#: app/core/gimpdrawable-desaturate.c:98 +#: ../app/core/gimpdrawable-desaturate.c:98 msgid "Desaturate" msgstr "Afmætning" -#: app/core/gimpdrawable-equalize.c:80 +#: ../app/core/gimpdrawable-equalize.c:80 msgid "Equalize" msgstr "Udlign" -#: app/core/gimpdrawable-invert.c:61 +#: ../app/core/gimpdrawable-invert.c:61 msgid "Invert" msgstr "Invertér" -#: app/core/gimpdrawable-levels.c:112 app/core/gimpdrawable-levels.c:162 -#: app/tools/gimplevelstool.c:160 +#: ../app/core/gimpdrawable-levels.c:112 ../app/core/gimpdrawable-levels.c:162 +#: ../app/tools/gimplevelstool.c:160 msgid "Levels" msgstr "Niveauer" -#: app/core/gimpdrawable-offset.c:316 +#: ../app/core/gimpdrawable-offset.c:316 msgid "Offset Drawable" msgstr "Forskyd tegneobjekt" -#: app/core/gimpdrawable-stroke.c:319 +#: ../app/core/gimpdrawable-stroke.c:319 msgid "Render Stroke" msgstr "Tegn bestrygning" #. Start a transform undo group -#: app/core/gimpdrawable-transform.c:928 app/tools/gimpfliptool.c:82 +#: ../app/core/gimpdrawable-transform.c:928 ../app/tools/gimpfliptool.c:82 msgid "Flip" msgstr "Vend" #. Start a transform undo group -#: app/core/gimpdrawable-transform.c:1009 app/tools/gimprotatetool.c:97 +#: ../app/core/gimpdrawable-transform.c:1009 ../app/tools/gimprotatetool.c:97 msgid "Rotate" msgstr "Rotér" -#: app/core/gimpdrawable-transform.c:1119 app/core/gimplayer.c:257 +#: ../app/core/gimpdrawable-transform.c:1119 ../app/core/gimplayer.c:257 msgid "Transform Layer" msgstr "Transformér lag" -#: app/core/gimpdrawable-transform.c:1134 +#: ../app/core/gimpdrawable-transform.c:1134 msgid "Transformation" msgstr "Transformering" -#: app/core/gimpenvirontable.c:285 +#: ../app/core/gimpenvirontable.c:285 #, c-format msgid "Empty variable name in environment file %s" msgstr "Tomt variabelnavn i miljøfilen %s" -#: app/core/gimpenvirontable.c:303 +#: ../app/core/gimpenvirontable.c:303 #, c-format msgid "Illegal variable name in environment file %s: %s" msgstr "Ugyldigt variabelnavn i miljøfilen %s: %s" -#: app/core/gimpgradient-load.c:72 +#: ../app/core/gimpgradient-load.c:72 #, c-format msgid "Fatal parse error in gradient file '%s': Not a GIMP gradient file." msgstr "" "Fatal fortolkningsfejl i fareovergangsfil '%s': er ikke en Gimp-" "farveovergangsfil." -#: app/core/gimpgradient-load.c:87 +#: ../app/core/gimpgradient-load.c:87 #, c-format msgid "Invalid UTF-8 string in gradient file '%s'." msgstr "Ugyldig UTF-8-streng i farveovergangsfil '%s'." -#: app/core/gimpgradient-load.c:115 +#: ../app/core/gimpgradient-load.c:115 #, c-format msgid "Fatal parse error in gradient file '%s': File is corrupt." msgstr "Fatal fortolkningsfejl i farveovergangsfilen '%s': filen er ødelagt." -#: app/core/gimpgradient-load.c:172 +#: ../app/core/gimpgradient-load.c:172 #, c-format msgid "Corrupt segment %d in gradient file '%s'." msgstr "Ødelagt segment %d i farveovergangsfil '%s'." -#: app/core/gimpgradient-load.c:183 app/core/gimpgradient-load.c:197 +#: ../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 "Farveovergangsfilen \"%s\" er ødelagt: Segmenter følger ikke intervallet 0-1." -#: app/core/gimpgradient-load.c:281 +#: ../app/core/gimpgradient-load.c:281 #, c-format msgid "No linear gradients found in '%s'" msgstr "Ingen lineære overgange fundet i \"%s\"" -#: app/core/gimpgradient-load.c:291 +#: ../app/core/gimpgradient-load.c:291 #, c-format msgid "Failed to import gradients from '%s': %s" msgstr "Kunne ikke importere overgange fra \"%s\": %s" -#: app/core/gimpgrid.c:128 +#: ../app/core/gimpgrid.c:128 msgid "Line style used for the grid." msgstr "Linjestil som bruges af gitteret." -#: app/core/gimpgrid.c:134 +#: ../app/core/gimpgrid.c:134 msgid "The foreground color of the grid." msgstr "Forgrundsfarven for gitteret." -#: app/core/gimpgrid.c:139 +#: ../app/core/gimpgrid.c:139 msgid "" "The background color of the grid; only used in double dashed line style." msgstr "" "Forgrundsfarven for gitteret; benyttes kun med en dobbelt-stipplet linjestil." -#: app/core/gimpgrid.c:145 +#: ../app/core/gimpgrid.c:145 msgid "Horizontal spacing of grid lines." msgstr "Vandret mellemrum mellem gitterlinjer." -#: app/core/gimpgrid.c:150 +#: ../app/core/gimpgrid.c:150 msgid "Vertical spacing of grid lines." msgstr "Lodret mellemrum mellem gitterlinjer." -#: app/core/gimpgrid.c:159 +#: ../app/core/gimpgrid.c:159 msgid "" "Horizontal offset of the first grid line; this may be a negative number." msgstr "" "Vandret afsæt til den første gitterlinje; dette kan være et negativt tal." -#: app/core/gimpgrid.c:166 +#: ../app/core/gimpgrid.c:166 msgid "Vertical offset of the first grid line; this may be a negative number." msgstr "" "Lodret afsæt til den første gitterlinje; dette kan være et negativt tal." -#: app/core/gimpimage-colormap.c:63 +#: ../app/core/gimpimage-colormap.c:63 msgid "Set Colormap" msgstr "Ændr farveafbildning" -#: app/core/gimpimage-colormap.c:115 +#: ../app/core/gimpimage-colormap.c:115 msgid "Change Colormap entry" msgstr "Skift farveafbildningselement" -#: app/core/gimpimage-colormap.c:135 +#: ../app/core/gimpimage-colormap.c:135 msgid "Add Color to Colormap" msgstr "Tilføj farve til farveafbildning" -#: app/core/gimpimage-convert.c:789 +#: ../app/core/gimpimage-convert.c:789 msgid "Convert Image to RGB" msgstr "Konvertér billede til RGB" -#: app/core/gimpimage-convert.c:793 +#: ../app/core/gimpimage-convert.c:793 msgid "Convert Image to Grayscale" msgstr "Konvertér billede til gråtone" -#: app/core/gimpimage-convert.c:797 +#: ../app/core/gimpimage-convert.c:797 msgid "Convert Image to Indexed" msgstr "Konvertér billede til indekseret" -#: app/core/gimpimage-convert.c:879 +#: ../app/core/gimpimage-convert.c:879 msgid "Converting to indexed (stage 2)..." msgstr "Konvertér billede til indekseret (skridt 2)..." -#: app/core/gimpimage-convert.c:923 +#: ../app/core/gimpimage-convert.c:923 msgid "Converting to indexed (stage 3)..." msgstr "Konvertér billede til indekseret (skridt 3)..." -#: app/core/gimpimage-crop.c:123 +#: ../app/core/gimpimage-crop.c:123 msgid "Crop Image" msgstr "Tilskæring af lag" -#: app/core/gimpimage-crop.c:126 app/core/gimpimage-resize.c:67 +#: ../app/core/gimpimage-crop.c:126 ../app/core/gimpimage-resize.c:67 msgid "Resize Image" msgstr "Ændring af billedstørrelse" -#: app/core/gimpimage-guides.c:53 +#: ../app/core/gimpimage-guides.c:53 msgid "Add Horizontal Guide" msgstr "Tilføj vandret hjælpelinje" -#: app/core/gimpimage-guides.c:80 +#: ../app/core/gimpimage-guides.c:80 msgid "Add Vertical Guide" msgstr "Tilføj lodret hjælpelinje" -# til undo-info -#: app/core/gimpimage-guides.c:143 app/tools/gimpmovetool.c:570 +#: ../app/core/gimpimage-guides.c:143 ../app/tools/gimpmovetool.c:570 msgid "Remove Guide" -msgstr "Fjernelse af hjælpelinje" +msgstr "Fjern hjælpelinje" -# til undo-info -#: app/core/gimpimage-guides.c:167 +#: ../app/core/gimpimage-guides.c:167 msgid "Move Guide" -msgstr "Flytning af hjælpelinje" +msgstr "Flyt hjælpelinje" -#: app/core/gimpimage-merge.c:91 +#: ../app/core/gimpimage-merge.c:91 msgid "Merge Visible Layers" msgstr "Forén synlige lag" -#: app/core/gimpimage-merge.c:107 +#: ../app/core/gimpimage-merge.c:107 msgid "Not enough visible layers for a merge. There must be at least two." msgstr "Der er ikke nok synlige lag til en forening. Det skal være mindst to." -#: app/core/gimpimage-merge.c:142 +#: ../app/core/gimpimage-merge.c:142 msgid "Flatten Image" msgstr "Fladgør billede" -#: app/core/gimpimage-merge.c:193 +#: ../app/core/gimpimage-merge.c:193 msgid "Merge Down" msgstr "Forén nedad" -#: app/core/gimpimage-merge.c:202 +#: ../app/core/gimpimage-merge.c:202 msgid "There are not enough visible layers for a merge down." msgstr "Der er ikke nok synlige lag til en nedadgående forening." -#: app/core/gimpimage-merge.c:543 +#: ../app/core/gimpimage-merge.c:543 msgid "Merge Visible Paths" msgstr "Forén synlige baner" -#: app/core/gimpimage-merge.c:580 +#: ../app/core/gimpimage-merge.c:580 msgid "Not enough visible paths for a merge. There must be at least two." msgstr "" "Der er ikke nok synlige baner til en forening. Det skal være mindst to." -#: app/core/gimpimage-qmask.c:67 +#: ../app/core/gimpimage-qmask.c:67 msgid "Enable Quick Mask" msgstr "Aktivér hurtigmaske" -#: app/core/gimpimage-qmask.c:117 +#: ../app/core/gimpimage-qmask.c:117 msgid "Disable Quick Mask" msgstr "Deaktivér hurtigmaske" # med %s forrest bliver der ikke problemer med stort begyndelsesbogstav -#: app/core/gimpimage-undo-push.c:3055 +#: ../app/core/gimpimage-undo-push.c:3055 #, c-format msgid "Can't undo %s" msgstr "%s kan ikke fortrydes" -#: app/core/gimpimage.c:1357 +#: ../app/core/gimpimage.c:1357 msgid "Change Image Resolution" msgstr "Skift billedopløsning" -#: app/core/gimpimage.c:1397 +#: ../app/core/gimpimage.c:1397 msgid "Change Image Unit" msgstr "Skift billedenhed" -#: app/core/gimpimage.c:2177 +#: ../app/core/gimpimage.c:2177 msgid "Attach Parasite to Image" msgstr "Vedhæft parasit til billede" -#: app/core/gimpimage.c:2210 +#: ../app/core/gimpimage.c:2210 msgid "Remove Parasite from Image" msgstr "Fjern parasit fra billede" -# til undo-info -#: app/core/gimpimage.c:2678 +#: ../app/core/gimpimage.c:2678 msgid "Add Layer" -msgstr "Tilføjelse af lag" +msgstr "Tilføj lag" -# til undo-info -#: app/core/gimpimage.c:2745 +#: ../app/core/gimpimage.c:2745 msgid "Remove Layer" -msgstr "Fjernelse af lag" +msgstr "Fjern lag" -#: app/core/gimpimage.c:2816 +#: ../app/core/gimpimage.c:2816 msgid "Layer cannot be raised higher." msgstr "Laget kan ikke hæves mere." -#: app/core/gimpimage.c:2822 app/core/gimpimage.c:2872 +#: ../app/core/gimpimage.c:2822 ../app/core/gimpimage.c:2872 msgid "Cannot raise a layer without alpha." msgstr "Kan ikke hæve lag uden alfa." -#: app/core/gimpimage.c:2827 +#: ../app/core/gimpimage.c:2827 msgid "Raise Layer" msgstr "Hæv lag" -#: app/core/gimpimage.c:2844 +#: ../app/core/gimpimage.c:2844 msgid "Layer cannot be lowered more." msgstr "Laget kan ikke sænkes mere." -#: app/core/gimpimage.c:2849 +#: ../app/core/gimpimage.c:2849 msgid "Lower Layer" msgstr "Sænk lag" -#: app/core/gimpimage.c:2866 +#: ../app/core/gimpimage.c:2866 msgid "Layer is already on top." msgstr "Laget er allerede øverst." -#: app/core/gimpimage.c:2877 +#: ../app/core/gimpimage.c:2877 msgid "Raise Layer to Top" msgstr "Hæv lag til top" -#: app/core/gimpimage.c:2897 +#: ../app/core/gimpimage.c:2897 msgid "Layer is already on the bottom." msgstr "Laget er allerede nederst." -#: app/core/gimpimage.c:2902 +#: ../app/core/gimpimage.c:2902 msgid "Lower Layer to Bottom" msgstr "Sænk lag til bund" -#: app/core/gimpimage.c:2941 +#: ../app/core/gimpimage.c:2941 #, c-format msgid "Layer '%s' has no alpha. Layer was placed above it." msgstr "Laget \"%s\" har ingen alfa. Laget blev placeret over det." # til undo-info -#: app/core/gimpimage.c:2993 +#: ../app/core/gimpimage.c:2993 msgid "Add Channel" msgstr "Tilføjelse af kanal" # til undo-info -#: app/core/gimpimage.c:3038 +#: ../app/core/gimpimage.c:3038 msgid "Remove Channel" msgstr "Fjernelse af kanal" -#: app/core/gimpimage.c:3082 +#: ../app/core/gimpimage.c:3082 msgid "Channel cannot be raised higher." msgstr "Kanalen kan ikke hæves mere." -#: app/core/gimpimage.c:3087 +#: ../app/core/gimpimage.c:3087 msgid "Raise Channel" msgstr "Hæv kanal" -#: app/core/gimpimage.c:3104 +#: ../app/core/gimpimage.c:3104 msgid "Channel is already on top." msgstr "Kanal er allerede øverst." -#: app/core/gimpimage.c:3109 +#: ../app/core/gimpimage.c:3109 msgid "Raise Channel to Top" msgstr "Hæv kanal til top" -#: app/core/gimpimage.c:3126 +#: ../app/core/gimpimage.c:3126 msgid "Channel cannot be lowered more." msgstr "Kanalen kan ikke sænkes mere." -#: app/core/gimpimage.c:3131 +#: ../app/core/gimpimage.c:3131 msgid "Lower Channel" msgstr "Sænk kanal" -#: app/core/gimpimage.c:3151 +#: ../app/core/gimpimage.c:3151 msgid "Channel is already on the bottom." msgstr "Kanal er allerede nederst." -#: app/core/gimpimage.c:3156 +#: ../app/core/gimpimage.c:3156 msgid "Lower Channel to Bottom" msgstr "Sænk kanal til bund" -#: app/core/gimpimage.c:3231 +#: ../app/core/gimpimage.c:3231 msgid "Add Path" msgstr "Tilføj bane" -#: app/core/gimpimage.c:3276 +#: ../app/core/gimpimage.c:3276 msgid "Remove Path" msgstr "Fjern bane" -#: app/core/gimpimage.c:3320 +#: ../app/core/gimpimage.c:3320 msgid "Path cannot be raised higher." msgstr "Banen kan ikke hæves mere." -#: app/core/gimpimage.c:3325 +#: ../app/core/gimpimage.c:3325 msgid "Raise Path" msgstr "Hæv bane" -#: app/core/gimpimage.c:3342 +#: ../app/core/gimpimage.c:3342 msgid "Path is already on top." msgstr "Bane er allerede øverst." -#: app/core/gimpimage.c:3347 +#: ../app/core/gimpimage.c:3347 msgid "Raise Path to Top" msgstr "Hæv bane til top" -#: app/core/gimpimage.c:3364 +#: ../app/core/gimpimage.c:3364 msgid "Path cannot be lowered more." msgstr "Banen kan ikke sænkes mere." -#: app/core/gimpimage.c:3369 +#: ../app/core/gimpimage.c:3369 msgid "Lower Path" msgstr "Sænk bane" -#: app/core/gimpimage.c:3389 +#: ../app/core/gimpimage.c:3389 msgid "Path is already on the bottom." msgstr "Bane er allerede nederst." -#: app/core/gimpimage.c:3394 +#: ../app/core/gimpimage.c:3394 msgid "Lower Path to Bottom" msgstr "Sænk bane til bund" -#: app/core/gimpimagefile.c:568 +#: ../app/core/gimpimagefile.c:568 msgid "Remote image" msgstr "Fjernt billede" -#: app/core/gimpimagefile.c:573 app/dialogs/preferences-dialog.c:1472 +#: ../app/core/gimpimagefile.c:573 ../app/dialogs/preferences-dialog.c:1472 msgid "Folder" msgstr "Mappe" -#: app/core/gimpimagefile.c:578 +#: ../app/core/gimpimagefile.c:578 msgid "Special File" msgstr "Speciel fil" -#: app/core/gimpimagefile.c:605 +#: ../app/core/gimpimagefile.c:605 msgid "Click to create preview" msgstr "Klik for at oprette miniature" -#: app/core/gimpimagefile.c:609 +#: ../app/core/gimpimagefile.c:609 msgid "Loading preview ..." msgstr "Indlæser miniature..." -#: app/core/gimpimagefile.c:613 +#: ../app/core/gimpimagefile.c:613 msgid "Preview is out of date" msgstr "Miniature er forældet" -#: app/core/gimpimagefile.c:617 +#: ../app/core/gimpimagefile.c:617 msgid "Cannot create preview" msgstr "Kan ikke generere miniature" #. pixel size -#: app/core/gimpimagefile.c:624 app/dialogs/info-window.c:552 -#: app/widgets/gimpsizebox.c:432 app/widgets/gimptemplateeditor.c:637 -#: app/widgets/gimptemplateeditor.c:675 +#: ../app/core/gimpimagefile.c:624 ../app/dialogs/info-window.c:552 +#: ../app/widgets/gimpsizebox.c:432 ../app/widgets/gimptemplateeditor.c:637 +#: ../app/widgets/gimptemplateeditor.c:675 #, c-format msgid "%d x %d pixels" msgstr "%d x %d punkter" -#: app/core/gimpimagefile.c:639 +#: ../app/core/gimpimagefile.c:639 msgid "1 Layer" msgstr "1 lag" -#: app/core/gimpimagefile.c:641 +#: ../app/core/gimpimagefile.c:641 #, c-format msgid "%d Layers" msgstr "%d lag" -#: app/core/gimpimagefile.c:682 +#: ../app/core/gimpimagefile.c:682 #, c-format msgid "Could not open thumbnail '%s': %s" msgstr "Kunne ikke åbne miniaturefilen '%s': %s" -#: app/core/gimpitem.c:1091 +#: ../app/core/gimpitem.c:1091 msgid "Attach Parasite" msgstr "Parasitvedhæftning" -#: app/core/gimpitem.c:1101 +#: ../app/core/gimpitem.c:1101 msgid "Attach Parasite to Item" msgstr "Vedhæft parasit til element" -#: app/core/gimpitem.c:1140 app/core/gimpitem.c:1147 +#: ../app/core/gimpitem.c:1140 ../app/core/gimpitem.c:1147 msgid "Remove Parasite from Item" msgstr "Fjern parasit fra element" -#: app/core/gimplayer-floating-sel.c:98 +#: ../app/core/gimplayer-floating-sel.c:98 msgid "Remove Floating Selection" msgstr "Fjern flydende markering" -#: app/core/gimplayer-floating-sel.c:129 +#: ../app/core/gimplayer-floating-sel.c:129 msgid "Cannot anchor this layer because it is not a floating selection." msgstr "Kan ikke forankre dette lag fordi det ikke er en flydende markering." -#: app/core/gimplayer-floating-sel.c:136 +#: ../app/core/gimplayer-floating-sel.c:136 msgid "Anchor Floating Selection" msgstr "Forankring af flydende markering" -#: app/core/gimplayer-floating-sel.c:209 +#: ../app/core/gimplayer-floating-sel.c:209 msgid "" "Cannot create a new layer from the floating selection because it belongs to " "a layer mask or channel." @@ -5356,41 +5370,42 @@ "Kan ikke oprette nyt lag fra den flydende markering fordi den tilhører en " "lagmaske eller kanal." -#: app/core/gimplayer-floating-sel.c:215 +#: ../app/core/gimplayer-floating-sel.c:215 msgid "Floating Selection to Layer" msgstr "Flydende markering til lag" -#: app/core/gimplayer.c:250 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:251 +#: ../app/core/gimplayer.c:251 msgid "Rename Layer" msgstr "Omdøb lag" -#: app/core/gimplayer.c:252 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:254 +#: ../app/core/gimplayer.c:254 msgid "Resize Layer" msgstr "Ændring af lagstørrelse" -#: app/core/gimplayer.c:255 +#: ../app/core/gimplayer.c:255 msgid "Flip Layer" msgstr "Vend lag" -#: app/core/gimplayer.c:256 +#: ../app/core/gimplayer.c:256 msgid "Rotate Layer" msgstr "Rotér lag" -#: app/core/gimplayer.c:339 app/core/gimplayer.c:1109 -#: app/core/gimplayermask.c:236 +#: ../app/core/gimplayer.c:339 ../app/core/gimplayer.c:1109 +#: ../app/core/gimplayermask.c:236 #, c-format msgid "%s mask" msgstr "%s-maske" -#: app/core/gimplayer.c:385 +#: ../app/core/gimplayer.c:385 #, c-format msgid "" "Floating Selection\n" @@ -5399,47 +5414,47 @@ "Flydende markering\n" "(%s)" -#: app/core/gimplayer.c:1035 +#: ../app/core/gimplayer.c:1035 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:1042 +#: ../app/core/gimplayer.c:1042 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:1049 +#: ../app/core/gimplayer.c:1049 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:1059 +#: ../app/core/gimplayer.c:1059 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:1163 +#: ../app/core/gimplayer.c:1163 msgid "Transfer Alpha to Mask" msgstr "Overfør alfa til maske" -#: app/core/gimplayer.c:1323 +#: ../app/core/gimplayer.c:1323 msgid "Apply Layer Mask" msgstr "Anvendelse af lagmaske" -#: app/core/gimplayer.c:1324 +#: ../app/core/gimplayer.c:1324 msgid "Delete Layer Mask" msgstr "Sletning af lagmaske" -#: app/core/gimplayer.c:1425 +#: ../app/core/gimplayer.c:1425 msgid "Add Alpha Channel" msgstr "Tilføj alfakanal" -#: app/core/gimplayer.c:1447 +#: ../app/core/gimplayer.c:1447 msgid "Layer to Image Size" msgstr "Lag til billedstørrelse" -#: app/core/gimplayermask.c:132 +#: ../app/core/gimplayermask.c:132 msgid "Move Layer Mask" msgstr "Flytning af lagmaske" -#: app/core/gimppalette-import.c:490 +#: ../app/core/gimppalette-import.c:490 #, c-format msgid "" "Unknown type of palette file:\n" @@ -5448,7 +5463,7 @@ "Ukendt paletfiltype:\n" "%s" -#: app/core/gimppalette.c:375 +#: ../app/core/gimppalette.c:375 #, c-format msgid "" "Fatal parse error in palette file '%s': Missing magic header.\n" @@ -5457,23 +5472,23 @@ "Fatal fortolkningsfejl i paletfil '%s': mangler magisk hoved.\n" "Har denne fil behov for at blive konverteret fra DOS?" -#: app/core/gimppalette.c:381 +#: ../app/core/gimppalette.c:381 #, c-format msgid "Fatal parse error in palette file '%s': Missing magic header." msgstr "Fatal fortolkningsfejl i paletfil '%s': mangler magisk hoved." -#: app/core/gimppalette.c:395 app/core/gimppalette.c:420 -#: app/core/gimppalette.c:450 app/core/gimppalette.c:536 +#: ../app/core/gimppalette.c:395 ../app/core/gimppalette.c:420 +#: ../app/core/gimppalette.c:450 ../app/core/gimppalette.c:536 #, c-format msgid "Fatal parse error in palette file '%s': Read error in line %d." msgstr "Fatal fortolkningsfejl i paletfil '%s': læsefejl på linje %d." -#: app/core/gimppalette.c:410 +#: ../app/core/gimppalette.c:410 #, c-format msgid "Invalid UTF-8 string in palette file '%s'" msgstr "Ugyldig UTF-8-streng i paletfil '%s'." -#: app/core/gimppalette.c:438 +#: ../app/core/gimppalette.c:438 #, c-format msgid "" "Reading palette file '%s': Invalid number of columns in line %d. Using " @@ -5483,42 +5498,42 @@ "standardværdi." #. maybe we should just abort? -#: app/core/gimppalette.c:484 +#: ../app/core/gimppalette.c:484 #, c-format msgid "Reading palette file '%s': Missing RED component in line %d." msgstr "Læser paletfil %s: manglende rød komponent på linje %d." -#: app/core/gimppalette.c:492 +#: ../app/core/gimppalette.c:492 #, c-format msgid "Reading palette '%s': Missing GREEN component in line %d." msgstr "Læser paletfil %s: manglende grøn komponent på linje %d." -#: app/core/gimppalette.c:500 +#: ../app/core/gimppalette.c:500 #, c-format msgid "Reading palette file '%s': Missing BLUE component in line %d." msgstr "Læser paletfil %s: manglende blå komponent på linje %d." -#: app/core/gimppalette.c:510 +#: ../app/core/gimppalette.c:510 #, c-format msgid "Reading palette file '%s': RGB value out of range in line %d." msgstr "" "Læser paletfil %s: RGB-værdi uden for det gyldige interval på linje %d." -#: app/core/gimppattern.c:337 app/core/gimppattern.c:384 -#: app/core/gimppattern.c:415 +#: ../app/core/gimppattern.c:337 ../app/core/gimppattern.c:384 +#: ../app/core/gimppattern.c:415 #, c-format msgid "Fatal parse error in pattern file '%s': Could not read %d bytes: %s" msgstr "" "Fatal fortolkningsfejl i mønsterfilen '%s': kunne ikke læse %d byte: %s" -#: app/core/gimppattern.c:357 +#: ../app/core/gimppattern.c:357 #, c-format msgid "" "Fatal parse error in pattern file '%s': Unknown pattern format version %d." msgstr "" "Fatal fortolkningsfejl i mønsterfilen '%s': ukendt mønsterformatversion %d." -#: app/core/gimppattern.c:367 +#: ../app/core/gimppattern.c:367 #, c-format msgid "" "Fatal parse error in pattern file '%s: Unsupported pattern depth %d.\n" @@ -5528,136 +5543,134 @@ "d.\n" "Gimp-mønstre skal være gråtone eller RGB." -#: app/core/gimppattern.c:393 +#: ../app/core/gimppattern.c:393 #, c-format msgid "Invalid UTF-8 string in pattern file '%s'." msgstr "Ugyldig UTF-8-streng i mønsterfilen '%s'." -#: app/core/gimppdbprogress.c:260 app/widgets/gimppdbdialog.c:320 -#, fuzzy, c-format +#: ../app/core/gimppdbprogress.c:260 ../app/widgets/gimppdbdialog.c:320 +#, c-format msgid "Unable to run %s callback. The corresponding plug-in may have crashed." -msgstr "" -"Kunne ikke udføre tilbagekaldsfunktionen til pensler. Måske er det " -"tilsvarende modul gået ned." +msgstr "Kunne ikke udføre tilbagekaldsfunktionen til %s. Måske er det tilhørende modul gået ned." -#: app/core/gimpprogress.c:107 app/core/gimpprogress.c:154 +#: ../app/core/gimpprogress.c:107 ../app/core/gimpprogress.c:154 msgid "Please wait..." msgstr "Vent venligst..." -#: app/core/gimpselection.c:183 app/tools/gimpeditselectiontool.c:258 +#: ../app/core/gimpselection.c:183 ../app/tools/gimpeditselectiontool.c:258 msgid "Move Selection" msgstr "Flyt markering" -#: app/core/gimpselection.c:202 +#: ../app/core/gimpselection.c:202 msgid "Sharpen Selection" msgstr "Gør markering skarpere" -#: app/core/gimpselection.c:203 +#: ../app/core/gimpselection.c:203 msgid "Select None" msgstr "Markér intet" -#: app/core/gimpselection.c:204 +#: ../app/core/gimpselection.c:204 msgid "Select All" msgstr "Markér alt" -#: app/core/gimpselection.c:205 +#: ../app/core/gimpselection.c:205 msgid "Invert Selection" msgstr "Invertér markering" -#: app/core/gimpselection.c:307 +#: ../app/core/gimpselection.c:307 msgid "No selection to stroke." msgstr "Ingen markering til strøg." -#: app/core/gimpselection.c:815 +#: ../app/core/gimpselection.c:815 msgid "Cannot float selection because the selected region is empty." msgstr "" "Kan ikke oprette flydende markering fordi det markerede område er tomt." -#: app/core/gimpselection.c:822 +#: ../app/core/gimpselection.c:822 msgid "Float Selection" msgstr "Flydning af markering" -#: app/core/gimpselection.c:839 +#: ../app/core/gimpselection.c:839 msgid "Floated Layer" msgstr "Flydende lag" -#: app/core/gimptemplate.c:158 +#: ../app/core/gimptemplate.c:158 msgid "The unit used for coordinate display when not in dot-for-dot mode." msgstr "" "Enhed benyttet til koordinatvisning hvis ikke i punkt for punkt-tilstand." -#: app/core/gimptemplate.c:165 +#: ../app/core/gimptemplate.c:165 msgid "The horizontal image resolution." msgstr "Den vandrette billedopløsning." -#: app/core/gimptemplate.c:170 +#: ../app/core/gimptemplate.c:170 msgid "The vertical image resolution." msgstr "Den lodrette billedopløsning." -#: app/core/gimptemplate.c:450 app/widgets/widgets-enums.c:24 +#: ../app/core/gimptemplate.c:450 ../app/widgets/widgets-enums.c:24 msgid "Background" msgstr "Baggrund" #. pseudo unit -#: app/core/gimpunit.c:55 +#: ../app/core/gimpunit.c:55 msgid "pixel" msgstr "billedpunkt" -#: app/core/gimpunit.c:55 app/tools/gimpmeasuretool.c:787 -#: app/tools/gimpmeasuretool.c:875 app/tools/gimppainttool.c:681 +#: ../app/core/gimpunit.c:55 ../app/tools/gimpmeasuretool.c:787 +#: ../app/tools/gimpmeasuretool.c:875 ../app/tools/gimppainttool.c:681 msgid "pixels" msgstr "billedpunkter" #. standard units -#: app/core/gimpunit.c:58 +#: ../app/core/gimpunit.c:58 msgid "inch" msgstr "tomme" -#: app/core/gimpunit.c:58 +#: ../app/core/gimpunit.c:58 msgid "inches" msgstr "tommer" -#: app/core/gimpunit.c:59 +#: ../app/core/gimpunit.c:59 msgid "millimeter" msgstr "millimeter" -#: app/core/gimpunit.c:59 +#: ../app/core/gimpunit.c:59 msgid "millimeters" msgstr "millimeter" #. professional units -#: app/core/gimpunit.c:62 +#: ../app/core/gimpunit.c:62 msgid "point" msgstr "punkt" -#: app/core/gimpunit.c:62 +#: ../app/core/gimpunit.c:62 msgid "points" msgstr "punkter" -#: app/core/gimpunit.c:63 +#: ../app/core/gimpunit.c:63 msgid "pica" msgstr "pica" -#: app/core/gimpunit.c:63 +#: ../app/core/gimpunit.c:63 msgid "picas" msgstr "picaer" -#: app/core/gimpunit.c:70 +#: ../app/core/gimpunit.c:70 msgid "percent" msgstr "procent" -#: app/dialogs/about-dialog.c:45 +#: ../app/dialogs/about-dialog.c:45 #, c-format msgid "Version %s brought to you by" msgstr "Version %s bragt til dig af" -#: app/dialogs/about-dialog.c:51 +#: ../app/dialogs/about-dialog.c:51 msgid "Translation by" msgstr "Oversættelse af" #. Translators: insert your names here, separated by newline #. we'd prefer just the names, please no email addresses. -#: app/dialogs/about-dialog.c:54 +#: ../app/dialogs/about-dialog.c:54 msgid "translator-credits" msgstr "" "Birger Langkjer\n" @@ -5669,214 +5682,216 @@ "Dansk-gruppen \n" "Mere info: http://www.klid.dk/dansk/" -#: app/dialogs/about-dialog.c:59 +#: ../app/dialogs/about-dialog.c:59 msgid "Contributions by" msgstr "Bidrag af" -#: app/dialogs/about-dialog.c:153 +#: ../app/dialogs/about-dialog.c:153 msgid "About The GIMP" msgstr "Om Gimp'en" -#: app/dialogs/channel-options-dialog.c:138 +#: ../app/dialogs/channel-options-dialog.c:138 msgid "Channel Name:" msgstr "Kanalnavn:" -#: app/dialogs/convert-dialog.c:121 +#: ../app/dialogs/convert-dialog.c:121 msgid "Indexed Color Conversion" msgstr "Indekseret farvekonvertering" -#: app/dialogs/convert-dialog.c:124 +#: ../app/dialogs/convert-dialog.c:124 msgid "Convert Image to Indexed Colors" msgstr "Konvertér billede til indekserede farver" -#: app/dialogs/convert-dialog.c:165 app/dialogs/dialogs.c:171 +#: ../app/dialogs/convert-dialog.c:165 ../app/dialogs/dialogs.c:171 msgid "Colormap" msgstr "Farvekortlægning" -#: app/dialogs/convert-dialog.c:179 +#: ../app/dialogs/convert-dialog.c:179 msgid "_Maximum number of colors:" msgstr "_Maks. antal farver:" -#: app/dialogs/convert-dialog.c:206 +#: ../app/dialogs/convert-dialog.c:206 msgid "_Remove unused colors from final palette" msgstr "_Fjern ubrugte farver fra endelig palet" #. dithering -#: app/dialogs/convert-dialog.c:221 app/tools/gimpblendoptions.c:269 +#: ../app/dialogs/convert-dialog.c:221 ../app/tools/gimpblendoptions.c:269 msgid "Dithering" msgstr "Farvereducering" -#: app/dialogs/convert-dialog.c:233 +#: ../app/dialogs/convert-dialog.c:233 msgid "Color _dithering:" msgstr "Farve_reducering:" -#: app/dialogs/convert-dialog.c:248 +#: ../app/dialogs/convert-dialog.c:248 msgid "Enable dithering of _transparency" msgstr "Aktivér farvereducering på _gennemsigtighed" -#: app/dialogs/convert-dialog.c:274 +#: ../app/dialogs/convert-dialog.c:274 msgid "Converting to indexed..." msgstr "Konverterer til indekseret..." -#: app/dialogs/convert-dialog.c:382 +#: ../app/dialogs/convert-dialog.c:382 msgid "Cannot convert to a palette with more than 256 colors." msgstr "Kan ikke konvertere til en palet med mere end 256 farver." -#: app/dialogs/dialogs-constructors.c:164 app/gui/gui.c:161 +#: ../app/dialogs/dialogs-constructors.c:164 ../app/gui/gui.c:161 msgid "GIMP Message" msgstr "Gimp-meddelelse" -#: app/dialogs/dialogs.c:127 +#: ../app/dialogs/dialogs.c:127 msgid "Devices" msgstr "Enheder" -#: app/dialogs/dialogs.c:127 +#: ../app/dialogs/dialogs.c:127 msgid "Device Status" msgstr "Enhedsstatus" -#: app/dialogs/dialogs.c:131 +#: ../app/dialogs/dialogs.c:131 msgid "Errors" msgstr "Fejl" -#: app/dialogs/dialogs.c:152 +#: ../app/dialogs/dialogs.c:152 msgid "History" msgstr "Historik" -#: app/dialogs/dialogs.c:154 +#: ../app/dialogs/dialogs.c:154 msgid "Image Templates" msgstr "Billedskabeloner" -#: app/dialogs/dialogs.c:175 +#: ../app/dialogs/dialogs.c:175 msgid "Histogram" msgstr "Histogram" -#: app/dialogs/dialogs.c:179 +#: ../app/dialogs/dialogs.c:179 msgid "Selection" msgstr "Markering" -#: app/dialogs/dialogs.c:179 +#: ../app/dialogs/dialogs.c:179 msgid "Selection Editor" msgstr "Markeringsredigering" -#: app/dialogs/dialogs.c:183 +#: ../app/dialogs/dialogs.c:183 msgid "Undo History" msgstr "Fortrydelseshistorik" -#: app/dialogs/dialogs.c:189 +#: ../app/dialogs/dialogs.c:189 msgid "Navigation" msgstr "Navigering" -#: app/dialogs/dialogs.c:189 +#: ../app/dialogs/dialogs.c:189 msgid "Display Navigation" msgstr "Visningsnavigering" -#: app/dialogs/dialogs.c:195 +#: ../app/dialogs/dialogs.c:195 msgid "FG/BG" msgstr "For-/baggrund" -#: app/dialogs/dialogs.c:195 +#: ../app/dialogs/dialogs.c:195 msgid "FG/BG Color" msgstr "For-/baggrundsfarve" -#: app/dialogs/dialogs.c:201 +#: ../app/dialogs/dialogs.c:201 msgid "Brush Editor" msgstr "Penselredigering" -#: app/dialogs/file-open-location-dialog.c:71 +#: ../app/dialogs/file-open-location-dialog.c:71 msgid "Open Location" msgstr "Åbn placering" -#: app/dialogs/file-open-location-dialog.c:104 +#: ../app/dialogs/file-open-location-dialog.c:104 msgid "Enter location (URI):" msgstr "Indtast placering (URI):" -#: app/dialogs/file-save-dialog.c:184 +#: ../app/dialogs/file-save-dialog.c:185 msgid "File exists" msgstr "Filen eksisterer" -#: app/dialogs/file-save-dialog.c:189 +#: ../app/dialogs/file-save-dialog.c:190 msgid "_Replace" msgstr "_Erstat" -#: app/dialogs/file-save-dialog.c:199 +#: ../app/dialogs/file-save-dialog.c:200 #, c-format msgid "A file named '%s' already exists." msgstr "En fil ved navn \"%s\" eksisterer allerede." -#: app/dialogs/file-save-dialog.c:204 +#: ../app/dialogs/file-save-dialog.c:205 msgid "Do you want to replace it with the image you are saving?" msgstr "Ønsker du at erstatte den med det billede du gemmer?" -#: app/dialogs/grid-dialog.c:81 +#: ../app/dialogs/grid-dialog.c:81 msgid "Configure Grid" msgstr "Konfigurér gitter" -#: app/dialogs/grid-dialog.c:82 +#: ../app/dialogs/grid-dialog.c:82 msgid "Configure Image Grid" msgstr "Konfigurér billedgitter" -#: app/dialogs/image-merge-layers-dialog.c:60 +#: ../app/dialogs/image-merge-layers-dialog.c:60 msgid "Merge Layers" msgstr "Forenelse af lag" -#: app/dialogs/image-merge-layers-dialog.c:62 +#: ../app/dialogs/image-merge-layers-dialog.c:62 msgid "Layers Merge Options" msgstr "Indstillinger for forening af lag" -#: app/dialogs/image-merge-layers-dialog.c:77 +#: ../app/dialogs/image-merge-layers-dialog.c:77 msgid "Final, Merged Layer should be:" msgstr "Det resulterende forenede lag skal:" # bemærk at disse kommer lige efter ovenstående -#: app/dialogs/image-merge-layers-dialog.c:81 +#: ../app/dialogs/image-merge-layers-dialog.c:81 msgid "Expanded as necessary" msgstr "Udvides efter behov" -#: app/dialogs/image-merge-layers-dialog.c:84 +#: ../app/dialogs/image-merge-layers-dialog.c:84 msgid "Clipped to image" msgstr "Beskæres til billede" -#: app/dialogs/image-merge-layers-dialog.c:87 +#: ../app/dialogs/image-merge-layers-dialog.c:87 msgid "Clipped to bottom layer" msgstr "Beskæres til nederste lag" -#: app/dialogs/image-new-dialog.c:95 +#: ../app/dialogs/image-new-dialog.c:95 msgid "Create a New Image" msgstr "Opret et nyt billede" -#: app/dialogs/image-new-dialog.c:130 app/dialogs/preferences-dialog.c:1313 +#: ../app/dialogs/image-new-dialog.c:130 +#: ../app/dialogs/preferences-dialog.c:1313 msgid "_Template:" msgstr "_Skabelon:" -#: app/dialogs/image-new-dialog.c:265 +#: ../app/dialogs/image-new-dialog.c:265 msgid "Confirm Image Size" msgstr "Bekræft billedstørrelse" -#: app/dialogs/image-new-dialog.c:282 app/dialogs/image-scale-dialog.c:193 +#: ../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 "Du forsøger at oprette et billede med en størrelse på %s." -#: app/dialogs/image-new-dialog.c:289 +#: ../app/dialogs/image-new-dialog.c:289 #, c-format msgid "" "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 "" +msgstr "Et billede af den valgte størrelse vil bruge mere hukommelse end der er konfigureret som \"Maksimal billedstørrelse\" under indstillingerne (aktuelt %s)." -#: app/dialogs/image-scale-dialog.c:164 +#: ../app/dialogs/image-scale-dialog.c:164 msgid "Confirm Scaling" msgstr "Bekræft skalering" -#: app/dialogs/image-scale-dialog.c:199 +#: ../app/dialogs/image-scale-dialog.c:199 #, c-format msgid "" "Scaling 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)." -msgstr "" +msgstr "Skalering af billedet til den valgte størrelse vil bruge mere hukommelse end der er konfigureret som \"Maksimal billedstørrelse\" under indstillingerne (aktuelt %s)." -#: app/dialogs/image-scale-dialog.c:214 +#: ../app/dialogs/image-scale-dialog.c:214 msgid "" "Scaling the image to the choosen size will shrink some layers completely " "away." @@ -5884,1106 +5899,1114 @@ "Skalering af billedet til den valgte størrelse vil formindske nogle lag helt " "bort." -#: app/dialogs/image-scale-dialog.c:218 +#: ../app/dialogs/image-scale-dialog.c:218 msgid "Is this what you want to do?" msgstr "Er dette hvad du ønsker at gøre?" #. General -#: app/dialogs/info-dialog.c:377 app/dialogs/preferences-dialog.c:1543 -#: app/dialogs/preferences-dialog.c:1697 -#: app/widgets/gimpcontrollereditor.c:197 +#: ../app/dialogs/info-dialog.c:377 ../app/dialogs/preferences-dialog.c:1543 +#: ../app/dialogs/preferences-dialog.c:1697 +#: ../app/widgets/gimpcontrollereditor.c:197 msgid "General" msgstr "Generelt" -#: app/dialogs/info-window.c:83 +#: ../app/dialogs/info-window.c:83 msgid "Static Gray" msgstr "Statisk grå" -#: app/dialogs/info-window.c:84 app/dialogs/info-window.c:610 +#: ../app/dialogs/info-window.c:84 ../app/dialogs/info-window.c:610 msgid "Grayscale" msgstr "Gråtoner" -#: app/dialogs/info-window.c:85 +#: ../app/dialogs/info-window.c:85 msgid "Static Color" msgstr "Statisk farve" -#: app/dialogs/info-window.c:86 +#: ../app/dialogs/info-window.c:86 msgid "Pseudo Color" msgstr "Pseudofarve" -#: app/dialogs/info-window.c:87 +#: ../app/dialogs/info-window.c:87 msgid "True Color" msgstr "Rigtig farve" -#: app/dialogs/info-window.c:88 +#: ../app/dialogs/info-window.c:88 msgid "Direct Color" msgstr "Direkte farve" -#: app/dialogs/info-window.c:131 +#: ../app/dialogs/info-window.c:131 msgid "Cursor" msgstr "Markør" -#: app/dialogs/info-window.c:141 app/dialogs/preferences-dialog.c:1932 -#: app/widgets/gimpgrideditor.c:267 app/widgets/gimpgrideditor.c:299 +#: ../app/dialogs/info-window.c:141 ../app/dialogs/preferences-dialog.c:1932 +#: ../app/widgets/gimpgrideditor.c:267 ../app/widgets/gimpgrideditor.c:299 msgid "Pixels" msgstr "Billedpunkter" -#: app/dialogs/info-window.c:151 app/dialogs/info-window.c:157 -#: app/dialogs/info-window.c:173 app/dialogs/info-window.c:179 -#: app/dialogs/info-window.c:425 app/dialogs/info-window.c:426 -#: app/dialogs/info-window.c:427 app/dialogs/info-window.c:428 -#: app/widgets/gimpcolorframe.c:338 +#: ../app/dialogs/info-window.c:151 ../app/dialogs/info-window.c:157 +#: ../app/dialogs/info-window.c:173 ../app/dialogs/info-window.c:179 +#: ../app/dialogs/info-window.c:425 ../app/dialogs/info-window.c:426 +#: ../app/dialogs/info-window.c:427 ../app/dialogs/info-window.c:428 +#: ../app/widgets/gimpcolorframe.c:338 msgid "n/a" msgstr "-" -#: app/dialogs/info-window.c:154 app/dialogs/info-window.c:176 +#: ../app/dialogs/info-window.c:154 ../app/dialogs/info-window.c:176 msgid "X" msgstr "x" -#: app/dialogs/info-window.c:160 app/dialogs/info-window.c:182 +#: ../app/dialogs/info-window.c:160 ../app/dialogs/info-window.c:182 msgid "Y" msgstr "y" -#: app/dialogs/info-window.c:163 app/pdb/internal_procs.c:212 +#: ../app/dialogs/info-window.c:163 ../app/pdb/internal_procs.c:212 msgid "Units" msgstr "Enheder" -#: app/dialogs/info-window.c:228 +#: ../app/dialogs/info-window.c:228 msgid "Comment" msgstr "Kommentar" -#: app/dialogs/info-window.c:248 app/dialogs/info-window.c:634 -#: app/display/gimpdisplayshell-title.c:337 -#: app/display/gimpdisplayshell-title.c:349 app/widgets/gimpactiongroup.c:806 +#: ../app/dialogs/info-window.c:248 ../app/dialogs/info-window.c:634 +#: ../app/display/gimpdisplayshell-title.c:337 +#: ../app/display/gimpdisplayshell-title.c:349 +#: ../app/widgets/gimpactiongroup.c:806 msgid "(none)" msgstr "(ingen)" -#: app/dialogs/info-window.c:275 +#: ../app/dialogs/info-window.c:275 msgid "Info Window" msgstr "Infovindue" -#: app/dialogs/info-window.c:277 +#: ../app/dialogs/info-window.c:277 msgid "Image Information" msgstr "Billedinformation" # modsat udskriftspunkter #. add the information fields -#: app/dialogs/info-window.c:294 +#: ../app/dialogs/info-window.c:294 msgid "Pixel dimensions:" msgstr "Skærmpunktdimensioner:" -#: app/dialogs/info-window.c:296 +#: ../app/dialogs/info-window.c:296 msgid "Print size:" msgstr "Udskriftsstørrelse:" -#: app/dialogs/info-window.c:298 +#: ../app/dialogs/info-window.c:298 msgid "Resolution:" msgstr "Opløsning:" -#: app/dialogs/info-window.c:300 +#: ../app/dialogs/info-window.c:300 msgid "Scale ratio:" msgstr "Formatforhold:" -#: app/dialogs/info-window.c:302 +#: ../app/dialogs/info-window.c:302 msgid "Number of layers:" msgstr "Antal lag:" -#: app/dialogs/info-window.c:304 +#: ../app/dialogs/info-window.c:304 msgid "Size in memory:" msgstr "Størrelse i hukommelse:" # display er ikke skærm her, men f.eks. RGB-farve -#: app/dialogs/info-window.c:306 +#: ../app/dialogs/info-window.c:306 msgid "Display type:" msgstr "Visningstype:" # 'visual' dækker over visualbegrebet i X, kan vist udelades uden tab af information -#: app/dialogs/info-window.c:308 +#: ../app/dialogs/info-window.c:308 msgid "Visual class:" msgstr "Klasse:" # ditto -#: app/dialogs/info-window.c:310 +#: ../app/dialogs/info-window.c:310 msgid "Visual depth:" msgstr "Farvedybde:" -#: app/dialogs/info-window.c:575 +#: ../app/dialogs/info-window.c:575 #, c-format msgid "pixels/%s" msgstr "punkter/%s" -#: app/dialogs/info-window.c:577 +#: ../app/dialogs/info-window.c:577 #, c-format msgid "%g x %g %s" msgstr "%g x %g %s" -#: app/dialogs/info-window.c:580 app/dialogs/preferences-dialog.c:1954 +#: ../app/dialogs/info-window.c:580 ../app/dialogs/preferences-dialog.c:1954 msgid "dpi" msgstr "dpi" # pænere med flertal -#: app/dialogs/info-window.c:607 +#: ../app/dialogs/info-window.c:607 msgid "RGB Color" msgstr "RGB-farver" -#: app/dialogs/info-window.c:614 +#: ../app/dialogs/info-window.c:614 msgid "Indexed Color" msgstr "Indekserede farver" -#: app/dialogs/info-window.c:614 +#: ../app/dialogs/info-window.c:614 msgid "colors" msgstr "farver" -#: app/dialogs/layer-add-mask-dialog.c:64 +#: ../app/dialogs/layer-add-mask-dialog.c:64 msgid "Add a Mask to the Layer" msgstr "Tilføj en maske til laget" -#: app/dialogs/layer-add-mask-dialog.c:86 +#: ../app/dialogs/layer-add-mask-dialog.c:86 msgid "Initialize Layer Mask to:" msgstr "Lagets maske starter som:" -#: app/dialogs/layer-add-mask-dialog.c:96 +#: ../app/dialogs/layer-add-mask-dialog.c:96 msgid "In_vert Mask" msgstr "In_vertér maske" -#: app/dialogs/layer-options-dialog.c:116 +#: ../app/dialogs/layer-options-dialog.c:116 msgid "Layer _Name:" msgstr "_Navn på lag:" #. The size labels -#: app/dialogs/layer-options-dialog.c:127 app/tools/gimpcroptool.c:1046 -#: app/tools/gimpselectionoptions.c:529 +#: ../app/dialogs/layer-options-dialog.c:127 ../app/tools/gimpcroptool.c:1046 +#: ../app/tools/gimpselectionoptions.c:529 msgid "Width:" msgstr "Bredde:" -#: app/dialogs/layer-options-dialog.c:133 app/tools/gimpcroptool.c:1050 -#: app/tools/gimpscaletool.c:166 app/tools/gimpselectionoptions.c:537 +#: ../app/dialogs/layer-options-dialog.c:133 ../app/tools/gimpcroptool.c:1050 +#: ../app/tools/gimpscaletool.c:166 ../app/tools/gimpselectionoptions.c:537 msgid "Height:" msgstr "Højde:" -#: app/dialogs/layer-options-dialog.c:190 +#: ../app/dialogs/layer-options-dialog.c:190 msgid "Layer Fill Type" msgstr "Fyldtype for lag" -#: app/dialogs/layer-options-dialog.c:205 +#: ../app/dialogs/layer-options-dialog.c:205 msgid "Set Name from _Text" msgstr "Sæt navn fra _tekst" -#: app/dialogs/module-dialog.c:122 +#: ../app/dialogs/module-dialog.c:122 msgid "Module Manager" msgstr "Programudvidelser" -#: app/dialogs/module-dialog.c:124 +#: ../app/dialogs/module-dialog.c:124 msgid "Manage Loadable Modules" msgstr "Gennemse og håndtér programudvidelser" -#: app/dialogs/module-dialog.c:168 +#: ../app/dialogs/module-dialog.c:168 msgid "Autoload" msgstr "Autoindlæs" -#: app/dialogs/module-dialog.c:175 +#: ../app/dialogs/module-dialog.c:175 msgid "Module path" msgstr "Udvidelsessti" -#: app/dialogs/module-dialog.c:418 +#: ../app/dialogs/module-dialog.c:418 msgid "" msgstr "" -#: app/dialogs/module-dialog.c:430 app/dialogs/module-dialog.c:439 +#: ../app/dialogs/module-dialog.c:430 ../app/dialogs/module-dialog.c:439 msgid "On disk" msgstr "På disk" -#: app/dialogs/module-dialog.c:430 +#: ../app/dialogs/module-dialog.c:430 msgid "Only in memory" msgstr "Kun i hukommelse" -#: app/dialogs/module-dialog.c:439 +#: ../app/dialogs/module-dialog.c:439 msgid "No longer available" msgstr "Ingen længere tilgængelig" -#: app/dialogs/module-dialog.c:475 +#: ../app/dialogs/module-dialog.c:475 msgid "Load" msgstr "Indlæs" -#: app/dialogs/module-dialog.c:477 +#: ../app/dialogs/module-dialog.c:477 msgid "Query" msgstr "Forespørg" -#: app/dialogs/module-dialog.c:484 +#: ../app/dialogs/module-dialog.c:484 msgid "Unload" msgstr "Frigiv" -#: app/dialogs/module-dialog.c:499 +#: ../app/dialogs/module-dialog.c:499 msgid "Purpose:" msgstr "Formål:" -#: app/dialogs/module-dialog.c:500 +#: ../app/dialogs/module-dialog.c:500 msgid "Author:" msgstr "Forfatter:" -#: app/dialogs/module-dialog.c:501 +#: ../app/dialogs/module-dialog.c:501 msgid "Version:" msgstr "Version:" -#: app/dialogs/module-dialog.c:502 +#: ../app/dialogs/module-dialog.c:502 msgid "Copyright:" msgstr "Ophavsret:" -#: app/dialogs/module-dialog.c:503 +#: ../app/dialogs/module-dialog.c:503 msgid "Date:" msgstr "Dato:" -#: app/dialogs/module-dialog.c:504 +#: ../app/dialogs/module-dialog.c:504 msgid "Location:" msgstr "Placering:" -#: app/dialogs/module-dialog.c:505 app/widgets/gimpcontrollereditor.c:242 +#: ../app/dialogs/module-dialog.c:505 +#: ../app/widgets/gimpcontrollereditor.c:242 msgid "State:" msgstr "Tilstand:" -#: app/dialogs/module-dialog.c:506 +#: ../app/dialogs/module-dialog.c:506 msgid "Last Error:" msgstr "Sidste fejl:" -#: app/dialogs/module-dialog.c:507 +#: ../app/dialogs/module-dialog.c:507 msgid "Available Types:" msgstr "Tilgængelige typer:" -#: app/dialogs/offset-dialog.c:98 +#: ../app/dialogs/offset-dialog.c:98 msgid "Offset Layer" msgstr "Forskyd lag" -#: app/dialogs/offset-dialog.c:100 +#: ../app/dialogs/offset-dialog.c:100 msgid "Offset Layer Mask" msgstr "Forskyd lagmaske" -#: app/dialogs/offset-dialog.c:102 +#: ../app/dialogs/offset-dialog.c:102 msgid "Offset Channel" msgstr "Forskyd kanal" #. The offset frame -#: app/dialogs/offset-dialog.c:108 app/dialogs/offset-dialog.c:136 -#: app/dialogs/resize-dialog.c:185 app/widgets/gimpgrideditor.c:274 +#: ../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 "Forskydning" -#: app/dialogs/offset-dialog.c:168 app/dialogs/resize-dialog.c:214 +#: ../app/dialogs/offset-dialog.c:168 ../app/dialogs/resize-dialog.c:214 msgid "_X:" msgstr "_x:" -#: app/dialogs/offset-dialog.c:170 app/dialogs/resize-dialog.c:215 +#: ../app/dialogs/offset-dialog.c:170 ../app/dialogs/resize-dialog.c:215 msgid "_Y:" msgstr "_y:" # pænere med rigtig punktform -#: app/dialogs/offset-dialog.c:197 +#: ../app/dialogs/offset-dialog.c:197 msgid "Offset by x/_2, y/2" msgstr "Forskyd med (x/_2, y/2)" #. The edge behaviour frame -#: app/dialogs/offset-dialog.c:206 +#: ../app/dialogs/offset-dialog.c:206 msgid "Edge Behaviour" msgstr "Kantopførsel" # ved passage af f.eks. den højre, foldes rundt til den venstre (med en modulus-operation) -#: app/dialogs/offset-dialog.c:210 +#: ../app/dialogs/offset-dialog.c:210 msgid "_Wrap around" msgstr "_Fold omkring" -#: app/dialogs/offset-dialog.c:213 +#: ../app/dialogs/offset-dialog.c:213 msgid "Fill with _background color" msgstr "Udfyld med _baggrundsfarve" -#: app/dialogs/offset-dialog.c:216 +#: ../app/dialogs/offset-dialog.c:216 msgid "Make _transparent" msgstr "Gør _gennemsigtig" -#: app/dialogs/palette-import-dialog.c:171 +#: ../app/dialogs/palette-import-dialog.c:171 msgid "Import Palette" msgstr "Importér palet" -#: app/dialogs/palette-import-dialog.c:173 +#: ../app/dialogs/palette-import-dialog.c:173 msgid "Import a New Palette" msgstr "Importér en ny palet" -#: app/dialogs/palette-import-dialog.c:179 +#: ../app/dialogs/palette-import-dialog.c:179 msgid "_Import" msgstr "_Importér" #. The "Source" frame -#: app/dialogs/palette-import-dialog.c:208 +#: ../app/dialogs/palette-import-dialog.c:208 msgid "Select Source" msgstr "Vælg kilde" -#: app/dialogs/palette-import-dialog.c:231 +#: ../app/dialogs/palette-import-dialog.c:231 msgid "I_mage" msgstr "_Billede" -#: app/dialogs/palette-import-dialog.c:246 +#: ../app/dialogs/palette-import-dialog.c:246 msgid "Palette _file" msgstr "Palet_fil" -#: app/dialogs/palette-import-dialog.c:273 +#: ../app/dialogs/palette-import-dialog.c:273 msgid "Select palette file" msgstr "Vælg paletfil" #. The "Import" frame -#: app/dialogs/palette-import-dialog.c:304 +#: ../app/dialogs/palette-import-dialog.c:304 msgid "Import Options" msgstr "Importeringsindstillinger" -#: app/dialogs/palette-import-dialog.c:317 +#: ../app/dialogs/palette-import-dialog.c:317 msgid "New import" msgstr "Ny importering" -#: app/dialogs/palette-import-dialog.c:319 +#: ../app/dialogs/palette-import-dialog.c:319 msgid "Palette _Name:" msgstr "_Navn på palet:" -#: app/dialogs/palette-import-dialog.c:325 +#: ../app/dialogs/palette-import-dialog.c:325 msgid "N_umber of colors:" msgstr "A_ntal farver:" -#: app/dialogs/palette-import-dialog.c:338 +#: ../app/dialogs/palette-import-dialog.c:338 msgid "C_olumns:" msgstr "_Kolonner:" -#: app/dialogs/palette-import-dialog.c:350 +#: ../app/dialogs/palette-import-dialog.c:350 msgid "I_nterval:" msgstr "_Interval:" #. The "Preview" frame -#: app/dialogs/palette-import-dialog.c:362 +#: ../app/dialogs/palette-import-dialog.c:362 msgid "Preview" msgstr "Eksempel" -#: app/dialogs/preferences-dialog.c:294 +#: ../app/dialogs/preferences-dialog.c:294 msgid "You will have to restart GIMP for the following changes to take effect:" msgstr "" "Du bliver nødt til at genstarte Gimp'en før de følgende ændringer træder i " "kraft:" -#: app/dialogs/preferences-dialog.c:501 +#: ../app/dialogs/preferences-dialog.c:501 msgid "Configure Keyboard Shortcuts" msgstr "Konfigurér tastaturgenveje" -#: app/dialogs/preferences-dialog.c:551 +#: ../app/dialogs/preferences-dialog.c:551 msgid "" "To edit a shortcut key, click on the corresponding row and type a new " "accelerator, or press backspace to clear." -msgstr "" +msgstr "Genvejstaster ændres ved at klikke på en række og indtaste den nye genvej eller trykke på slet tilbage-tasten for at rydde." -#: app/dialogs/preferences-dialog.c:595 +#: ../app/dialogs/preferences-dialog.c:595 msgid "" "Your keyboard shortcuts will be reset to default values the next time you " "start GIMP." -msgstr "" +msgstr "Tastegenvejene vil blive nulstillet til standardværdierne næste gang du starter Gimp'en." -#: app/dialogs/preferences-dialog.c:629 +#: ../app/dialogs/preferences-dialog.c:629 msgid "" "Your window setup will be reset to default values the next time you start " "GIMP." -msgstr "" +msgstr "Vinduesopsætningen vil blive nulstillet til standardværdierne næste gang du starter Gimp'en." -#: app/dialogs/preferences-dialog.c:663 +#: ../app/dialogs/preferences-dialog.c:663 msgid "" "Your input device settings will be reset to default values the next time you " "start GIMP." -msgstr "" +msgstr "Din indstillinger for pegeenheder vil blive nulstillet til standardværdierne næste gang du starter Gimp'en." -#: app/dialogs/preferences-dialog.c:1082 +#: ../app/dialogs/preferences-dialog.c:1082 msgid "Show _menubar" msgstr "Vis m_enulinje" -#: app/dialogs/preferences-dialog.c:1085 +#: ../app/dialogs/preferences-dialog.c:1085 msgid "Show _rulers" msgstr "Vis _linealer" -#: app/dialogs/preferences-dialog.c:1088 +#: ../app/dialogs/preferences-dialog.c:1088 msgid "Show scroll_bars" msgstr "Vis _rulleskakter" -#: app/dialogs/preferences-dialog.c:1091 +#: ../app/dialogs/preferences-dialog.c:1091 msgid "Show s_tatusbar" msgstr "Vis _statuslinje" -#: app/dialogs/preferences-dialog.c:1099 +#: ../app/dialogs/preferences-dialog.c:1099 msgid "Show s_election" msgstr "Vis _markering" -#: app/dialogs/preferences-dialog.c:1102 +#: ../app/dialogs/preferences-dialog.c:1102 msgid "Show _layer boundary" msgstr "Vis _laggrænse" -#: app/dialogs/preferences-dialog.c:1105 +#: ../app/dialogs/preferences-dialog.c:1105 msgid "Show _guides" msgstr "Vis _hjælpelinjer" -#: app/dialogs/preferences-dialog.c:1108 +#: ../app/dialogs/preferences-dialog.c:1108 msgid "Show gri_d" msgstr "Vis _gitter" -#: app/dialogs/preferences-dialog.c:1114 +#: ../app/dialogs/preferences-dialog.c:1114 msgid "Canvas _padding mode:" msgstr "Lærred_udfyldningstilstand:" -#: app/dialogs/preferences-dialog.c:1119 +#: ../app/dialogs/preferences-dialog.c:1119 msgid "Custom p_adding color:" msgstr "_Brugerdefineret udfyldningsfarve:" -#: app/dialogs/preferences-dialog.c:1120 +#: ../app/dialogs/preferences-dialog.c:1120 msgid "Select custom canvas padding color" msgstr "Angiv brugerdefineret lærredudfyldningsfarve" -#: app/dialogs/preferences-dialog.c:1191 +#: ../app/dialogs/preferences-dialog.c:1191 msgid "Preferences" msgstr "Indstillinger" -#: app/dialogs/preferences-dialog.c:1294 app/dialogs/preferences-dialog.c:1297 +#: ../app/dialogs/preferences-dialog.c:1294 +#: ../app/dialogs/preferences-dialog.c:1297 msgid "New Image" msgstr "Nyt billede" -#: app/dialogs/preferences-dialog.c:1335 +#: ../app/dialogs/preferences-dialog.c:1335 msgid "Default Image Grid" msgstr "Standardbilledgitter" -#: app/dialogs/preferences-dialog.c:1338 +#: ../app/dialogs/preferences-dialog.c:1338 msgid "Default Grid" msgstr "Standardgitter" -#: app/dialogs/preferences-dialog.c:1358 +#: ../app/dialogs/preferences-dialog.c:1358 msgid "User Interface" msgstr "Brugergrænseflade" -#: app/dialogs/preferences-dialog.c:1361 +#: ../app/dialogs/preferences-dialog.c:1361 msgid "Interface" msgstr "Grænseflade" #. Previews -#: app/dialogs/preferences-dialog.c:1368 +#: ../app/dialogs/preferences-dialog.c:1368 msgid "Previews" msgstr "Eksempler" -#: app/dialogs/preferences-dialog.c:1371 +#: ../app/dialogs/preferences-dialog.c:1371 msgid "_Enable layer & channel previews" msgstr "_Aktivér lag- og kanalminiaturer" -#: app/dialogs/preferences-dialog.c:1377 +#: ../app/dialogs/preferences-dialog.c:1377 msgid "Default _layer & channel preview size:" msgstr "Forvalgt miniaturestørrelse for _lag og kanaler:" -#: app/dialogs/preferences-dialog.c:1380 +#: ../app/dialogs/preferences-dialog.c:1380 msgid "Na_vigation preview size:" msgstr "Miniaturestørrelse for _navigeringsvinduer:" #. Keyboard Shortcuts -#: app/dialogs/preferences-dialog.c:1384 +#: ../app/dialogs/preferences-dialog.c:1384 msgid "Keyboard Shortcuts" msgstr "Tastaturgenveje" -#: app/dialogs/preferences-dialog.c:1388 +#: ../app/dialogs/preferences-dialog.c:1388 msgid "Show menu _mnemonics (access keys)" msgstr "Vis menu_genveje" -#: app/dialogs/preferences-dialog.c:1391 +#: ../app/dialogs/preferences-dialog.c:1391 msgid "Use _dynamic keyboard shortcuts" msgstr "Benyt _dynamiske tastaturgenveje" -#: app/dialogs/preferences-dialog.c:1395 +#: ../app/dialogs/preferences-dialog.c:1395 msgid "Configure _Keyboard Shortcuts..." msgstr "Konfigurér tastaturgenveje..." -#: app/dialogs/preferences-dialog.c:1402 +#: ../app/dialogs/preferences-dialog.c:1402 msgid "_Save keyboard shortcuts on exit" msgstr "_Gem tastaturgenveje ved afslutning" -#: app/dialogs/preferences-dialog.c:1406 +#: ../app/dialogs/preferences-dialog.c:1406 msgid "Save Keyboard Shortcuts _Now" msgstr "Gem tastaturgenveje _nu" -#: app/dialogs/preferences-dialog.c:1413 +#: ../app/dialogs/preferences-dialog.c:1413 msgid "_Reset Saved Keyboard Shortcuts to Default Values" msgstr "_Nulstil gemte tastaturgenveje til standardværdier" -#: app/dialogs/preferences-dialog.c:1428 app/dialogs/preferences-dialog.c:1431 -#: app/dialogs/preferences-dialog.c:1467 +#: ../app/dialogs/preferences-dialog.c:1428 +#: ../app/dialogs/preferences-dialog.c:1431 +#: ../app/dialogs/preferences-dialog.c:1467 msgid "Theme" msgstr "Tema" -#: app/dialogs/preferences-dialog.c:1437 +#: ../app/dialogs/preferences-dialog.c:1437 msgid "Select Theme" msgstr "Vælg tema" -#: app/dialogs/preferences-dialog.c:1519 +#: ../app/dialogs/preferences-dialog.c:1519 msgid "Reload C_urrent Theme" msgstr "Genindlæs _aktuelt tema" -#: app/dialogs/preferences-dialog.c:1531 app/dialogs/preferences-dialog.c:1534 +#: ../app/dialogs/preferences-dialog.c:1531 +#: ../app/dialogs/preferences-dialog.c:1534 msgid "Help System" msgstr "Hjælpesystem" -#: app/dialogs/preferences-dialog.c:1546 +#: ../app/dialogs/preferences-dialog.c:1546 msgid "Show tool _tips" msgstr "Vis værktøjs_tip" -#: app/dialogs/preferences-dialog.c:1549 +#: ../app/dialogs/preferences-dialog.c:1549 msgid "Show help _buttons" msgstr "Vis _hjælpeknapper" -#: app/dialogs/preferences-dialog.c:1552 +#: ../app/dialogs/preferences-dialog.c:1552 msgid "Show tips on _startup" msgstr "Vis tip ved _start" #. Help Browser -#: app/dialogs/preferences-dialog.c:1556 +#: ../app/dialogs/preferences-dialog.c:1556 msgid "Help Browser" msgstr "Hjælpefremviser" -#: app/dialogs/preferences-dialog.c:1560 +#: ../app/dialogs/preferences-dialog.c:1560 msgid "H_elp browser to use:" msgstr "Hjælpe_fremviser der skal anvendes:" -#: app/dialogs/preferences-dialog.c:1565 +#: ../app/dialogs/preferences-dialog.c:1565 msgid "Web Browser" msgstr "Internetsurfningsprogram" -#: app/dialogs/preferences-dialog.c:1569 +#: ../app/dialogs/preferences-dialog.c:1569 msgid "Select web browser" msgstr "Vælg internetsurfningsprogram" -#: app/dialogs/preferences-dialog.c:1572 +#: ../app/dialogs/preferences-dialog.c:1572 msgid "_Web browser to use:" msgstr "_Internetsurfningsprogram der skal anvendes:" #. Snapping Distance -#: app/dialogs/preferences-dialog.c:1597 +#: ../app/dialogs/preferences-dialog.c:1597 msgid "Guide and Grid Snapping" msgstr "Hjælpelinje- og gitterlåsning" -#: app/dialogs/preferences-dialog.c:1602 +#: ../app/dialogs/preferences-dialog.c:1602 msgid "_Snap distance:" msgstr "_Låseafstand:" #. Contiguous Regions -#: app/dialogs/preferences-dialog.c:1606 +#: ../app/dialogs/preferences-dialog.c:1606 msgid "Finding Contiguous Regions" msgstr "Finding af sammenhængende områder" -#: app/dialogs/preferences-dialog.c:1611 +#: ../app/dialogs/preferences-dialog.c:1611 msgid "Default _threshold:" msgstr "Forvalgt _tærskel:" #. Scaling -#: app/dialogs/preferences-dialog.c:1615 +#: ../app/dialogs/preferences-dialog.c:1615 msgid "Scaling" msgstr "Skalering" -#: app/dialogs/preferences-dialog.c:1619 +#: ../app/dialogs/preferences-dialog.c:1619 msgid "Default _interpolation:" msgstr "Standard-_interpoleringstype:" #. Global Brush, Pattern, ... -#: app/dialogs/preferences-dialog.c:1623 +#: ../app/dialogs/preferences-dialog.c:1623 msgid "Paint Options Shared Between Tools" msgstr "Maleindstillinger delt mellem værktøjer" -#: app/dialogs/preferences-dialog.c:1636 +#: ../app/dialogs/preferences-dialog.c:1636 msgid "Move Tool" msgstr "Flytteværktøj" -#: app/dialogs/preferences-dialog.c:1640 +#: ../app/dialogs/preferences-dialog.c:1640 msgid "Change current layer or path" msgstr "Ændr aktuelt lag eller bane" -#: app/dialogs/preferences-dialog.c:1653 app/dialogs/preferences-dialog.c:1656 +#: ../app/dialogs/preferences-dialog.c:1653 +#: ../app/dialogs/preferences-dialog.c:1656 msgid "Toolbox" msgstr "Værktøjskasse" #. Appearance -#: app/dialogs/preferences-dialog.c:1663 app/dialogs/preferences-dialog.c:1760 -#: app/widgets/gimpgrideditor.c:206 +#: ../app/dialogs/preferences-dialog.c:1663 +#: ../app/dialogs/preferences-dialog.c:1760 +#: ../app/widgets/gimpgrideditor.c:206 msgid "Appearance" msgstr "Udseende" -#: app/dialogs/preferences-dialog.c:1667 +#: ../app/dialogs/preferences-dialog.c:1667 msgid "Show _foreground & background color" msgstr "Vis _forgrunds- og baggrundsfarve" -#: app/dialogs/preferences-dialog.c:1671 +#: ../app/dialogs/preferences-dialog.c:1671 msgid "Show active _brush, pattern & gradient" msgstr "Vis aktive _pensler, mønstre og farveovergange" -#: app/dialogs/preferences-dialog.c:1675 +#: ../app/dialogs/preferences-dialog.c:1675 msgid "Show active _image" msgstr "Vis aktivt _billede" -#: app/dialogs/preferences-dialog.c:1685 app/dialogs/preferences-dialog.c:1688 +#: ../app/dialogs/preferences-dialog.c:1685 +#: ../app/dialogs/preferences-dialog.c:1688 msgid "Image Windows" msgstr "Billedvinduer" # skal synkroniseres -#: app/dialogs/preferences-dialog.c:1700 +#: ../app/dialogs/preferences-dialog.c:1700 msgid "Use \"_Dot for dot\" by default" msgstr "Benyt som standard \"_prik for prik\"" -#: app/dialogs/preferences-dialog.c:1706 +#: ../app/dialogs/preferences-dialog.c:1706 msgid "Marching _ants speed:" msgstr "Marcherende _myrers fart:" #. Zoom & Resize Behavior -#: app/dialogs/preferences-dialog.c:1710 +#: ../app/dialogs/preferences-dialog.c:1710 msgid "Zoom & Resize Behavior" msgstr "Zoom og størrelsesændring" -#: app/dialogs/preferences-dialog.c:1714 +#: ../app/dialogs/preferences-dialog.c:1714 msgid "Resize window on _zoom" msgstr "Tilpas vinduesstørrelse ved _zoom" -#: app/dialogs/preferences-dialog.c:1717 +#: ../app/dialogs/preferences-dialog.c:1717 msgid "Resize window on image _size change" msgstr "Tilpas vinduesstørrelse ved ændring af _billedstørrelse" -#: app/dialogs/preferences-dialog.c:1723 +#: ../app/dialogs/preferences-dialog.c:1723 msgid "Fit to window" msgstr "Tilpas til vindue" -#: app/dialogs/preferences-dialog.c:1725 +#: ../app/dialogs/preferences-dialog.c:1725 msgid "Initial zoom _ratio:" msgstr "Startzoomforhold:" #. Mouse Cursors -#: app/dialogs/preferences-dialog.c:1729 +#: ../app/dialogs/preferences-dialog.c:1729 msgid "Mouse Cursors" msgstr "Musemarkører" -#: app/dialogs/preferences-dialog.c:1733 +#: ../app/dialogs/preferences-dialog.c:1733 msgid "Show _brush outline" msgstr "Vis _penselomrids" -#: app/dialogs/preferences-dialog.c:1736 -#, fuzzy +#: ../app/dialogs/preferences-dialog.c:1736 msgid "Show paint _tool cursor" -msgstr "Vis værktøjs_tip" +msgstr "Vis maleværktøjs_markør" -# -udseende dækker bedre end -tilstand her -#: app/dialogs/preferences-dialog.c:1742 -#, fuzzy +#: ../app/dialogs/preferences-dialog.c:1742 msgid "Cursor _mode:" -msgstr "Markørudseende:" +msgstr "Markør_tilstand:" -# -udseende dækker bedre end -tilstand her -#: app/dialogs/preferences-dialog.c:1745 -#, fuzzy +# -udseende dækker +#: ../app/dialogs/preferences-dialog.c:1745 msgid "Cursor re_ndering:" -msgstr "Markørudseende:" +msgstr "Markør_udseende:" -#: app/dialogs/preferences-dialog.c:1757 +#: ../app/dialogs/preferences-dialog.c:1757 msgid "Image Window Appearance" msgstr "Udseende af billedvinduer" -#: app/dialogs/preferences-dialog.c:1768 +#: ../app/dialogs/preferences-dialog.c:1768 msgid "Default Appearance in Normal Mode" msgstr "Standardudseende i normal tilstand" -#: app/dialogs/preferences-dialog.c:1773 +#: ../app/dialogs/preferences-dialog.c:1773 msgid "Default Appearance in Fullscreen Mode" msgstr "Forvalgt udseende i fuldskærmstilstand" -#: app/dialogs/preferences-dialog.c:1782 +#: ../app/dialogs/preferences-dialog.c:1782 msgid "Image Title & Statusbar Format" msgstr "Billedtitel og statuslinjeformat" -#: app/dialogs/preferences-dialog.c:1785 +#: ../app/dialogs/preferences-dialog.c:1785 msgid "Title & Status" msgstr "Titel og status" -#: app/dialogs/preferences-dialog.c:1805 +#: ../app/dialogs/preferences-dialog.c:1805 msgid "Standard" msgstr "Standard" -#: app/dialogs/preferences-dialog.c:1806 +#: ../app/dialogs/preferences-dialog.c:1806 msgid "Show zoom percentage" msgstr "Vis zoomprocent" -#: app/dialogs/preferences-dialog.c:1807 +#: ../app/dialogs/preferences-dialog.c:1807 msgid "Show zoom ratio" msgstr "Vis zoomforhold" -#: app/dialogs/preferences-dialog.c:1808 +#: ../app/dialogs/preferences-dialog.c:1808 msgid "Show image size" msgstr "Vis billedstørrelse" -#: app/dialogs/preferences-dialog.c:1809 +#: ../app/dialogs/preferences-dialog.c:1809 msgid "Show memory usage" msgstr "Vis hukommelsesforbrug" -#: app/dialogs/preferences-dialog.c:1820 +#: ../app/dialogs/preferences-dialog.c:1820 msgid "Image Title Format" msgstr "Titelformat for billeder" -#: app/dialogs/preferences-dialog.c:1821 +#: ../app/dialogs/preferences-dialog.c:1821 msgid "Image Statusbar Format" msgstr "Statuslinjeformatet for billeder" # ikke "skærm" her -#: app/dialogs/preferences-dialog.c:1906 app/dialogs/preferences-dialog.c:1909 +#: ../app/dialogs/preferences-dialog.c:1906 +#: ../app/dialogs/preferences-dialog.c:1909 msgid "Display" msgstr "Fremvisning" -#: app/dialogs/preferences-dialog.c:1922 +#: ../app/dialogs/preferences-dialog.c:1922 msgid "Transparency _type:" msgstr "Gennemsigtigheds_type:" # "check" betyder "tern" her -#: app/dialogs/preferences-dialog.c:1925 +#: ../app/dialogs/preferences-dialog.c:1925 msgid "Check _size:" msgstr "Tern_størrelse:" -#: app/dialogs/preferences-dialog.c:1928 +#: ../app/dialogs/preferences-dialog.c:1928 msgid "Get Monitor Resolution" msgstr "Skaf skærmopløsning" -#: app/dialogs/preferences-dialog.c:1970 +#: ../app/dialogs/preferences-dialog.c:1970 #, c-format msgid "From _windowing system (currently %d x %d dpi)" msgstr "Hent opløsning fra _vinduessystem (i øjeblikket %dx%d dpi)" -#: app/dialogs/preferences-dialog.c:1993 +#: ../app/dialogs/preferences-dialog.c:1993 msgid "_Manually" msgstr "_Manuelt" # dette er bydemåde -#: app/dialogs/preferences-dialog.c:2008 +#: ../app/dialogs/preferences-dialog.c:2008 msgid "C_alibrate..." msgstr "_Kalibrér..." -#: app/dialogs/preferences-dialog.c:2028 app/dialogs/preferences-dialog.c:2031 +#: ../app/dialogs/preferences-dialog.c:2028 +#: ../app/dialogs/preferences-dialog.c:2031 msgid "Input Devices" msgstr "Pegeenheder" #. Extended Input Devices -#: app/dialogs/preferences-dialog.c:2038 +#: ../app/dialogs/preferences-dialog.c:2038 msgid "Extended Input Devices" msgstr "Udvidede pegeenheder" -#: app/dialogs/preferences-dialog.c:2042 +#: ../app/dialogs/preferences-dialog.c:2042 msgid "Configure E_xtended Input Devices..." msgstr "Konfigurér _udvidede pegeenheder..." -#: app/dialogs/preferences-dialog.c:2049 +#: ../app/dialogs/preferences-dialog.c:2049 msgid "_Save input device settings on exit" msgstr "_Gem enhedsindstilinger ved afslutning" -#: app/dialogs/preferences-dialog.c:2053 +#: ../app/dialogs/preferences-dialog.c:2053 msgid "Save Input Device Settings _Now" msgstr "Gem enhedsindstillinger _nu" -#: app/dialogs/preferences-dialog.c:2060 +#: ../app/dialogs/preferences-dialog.c:2060 msgid "_Reset Saved Input Device Settings to Default Values" msgstr "_Nulstil gemte enhedsindstillinger til standardværdier" -#: app/dialogs/preferences-dialog.c:2075 +#: ../app/dialogs/preferences-dialog.c:2075 msgid "Additional Input Controllers" msgstr "Yderligere pegekontroller" -#: app/dialogs/preferences-dialog.c:2078 +#: ../app/dialogs/preferences-dialog.c:2078 msgid "Input Controllers" msgstr "Pegekontroller" -#: app/dialogs/preferences-dialog.c:2119 app/dialogs/preferences-dialog.c:2122 +#: ../app/dialogs/preferences-dialog.c:2119 +#: ../app/dialogs/preferences-dialog.c:2122 msgid "Window Management" msgstr "Vindueshåndtering" -#: app/dialogs/preferences-dialog.c:2128 +#: ../app/dialogs/preferences-dialog.c:2128 msgid "Window Manager Hints" msgstr "Hint til vindueshåndtering" -#: app/dialogs/preferences-dialog.c:2134 +#: ../app/dialogs/preferences-dialog.c:2134 msgid "Hint for the _toolbox:" msgstr "Hint til _værktøjskassen:" -#: app/dialogs/preferences-dialog.c:2138 +#: ../app/dialogs/preferences-dialog.c:2138 msgid "Hint for the _docks:" msgstr "Hint til _dokkene:" -#: app/dialogs/preferences-dialog.c:2141 +#: ../app/dialogs/preferences-dialog.c:2141 msgid "Focus" msgstr "Fokus" -#: app/dialogs/preferences-dialog.c:2145 +#: ../app/dialogs/preferences-dialog.c:2145 msgid "Activate the _focused image" msgstr "Aktivér det _fokuserede billede" #. Window Positions -#: app/dialogs/preferences-dialog.c:2149 +#: ../app/dialogs/preferences-dialog.c:2149 msgid "Window Positions" msgstr "Vinduesplaceringer" -#: app/dialogs/preferences-dialog.c:2152 +#: ../app/dialogs/preferences-dialog.c:2152 msgid "_Save window positions on exit" msgstr "_Gem vinduesplaceringer ved afslutning" -#: app/dialogs/preferences-dialog.c:2156 +#: ../app/dialogs/preferences-dialog.c:2156 msgid "Save Window Positions _Now" msgstr "Gem vinduesplaceringer _nu" -#: app/dialogs/preferences-dialog.c:2163 +#: ../app/dialogs/preferences-dialog.c:2163 msgid "_Reset Saved Window Positions to Default Values" msgstr "_Nulstil gemte vinduesplaceringer til standardværdier" -#: app/dialogs/preferences-dialog.c:2178 app/dialogs/preferences-dialog.c:2181 -#: app/dialogs/preferences-dialog.c:2329 +#: ../app/dialogs/preferences-dialog.c:2178 +#: ../app/dialogs/preferences-dialog.c:2181 +#: ../app/dialogs/preferences-dialog.c:2329 msgid "Environment" msgstr "Miljø" -#: app/dialogs/preferences-dialog.c:2189 +#: ../app/dialogs/preferences-dialog.c:2189 msgid "Resource Consumption" msgstr "Resurseforbrug" -#: app/dialogs/preferences-dialog.c:2199 +#: ../app/dialogs/preferences-dialog.c:2199 msgid "Minimal number of _undo levels:" msgstr "Minimum antal _fortrydelsesniveauer:" -#: app/dialogs/preferences-dialog.c:2202 +#: ../app/dialogs/preferences-dialog.c:2202 msgid "Maximum undo _memory:" msgstr "Maksimal fortrydelses_hukommelse:" -#: app/dialogs/preferences-dialog.c:2205 +#: ../app/dialogs/preferences-dialog.c:2205 msgid "Tile cache _size:" msgstr "Størrelse af flisemellem_lager:" -#: app/dialogs/preferences-dialog.c:2208 +#: ../app/dialogs/preferences-dialog.c:2208 msgid "Maximum _new image size:" msgstr "Maksimal størrelse af _nyt billede:" -#: app/dialogs/preferences-dialog.c:2213 +#: ../app/dialogs/preferences-dialog.c:2213 msgid "Number of _processors to use:" msgstr "Antal _processorer som benyttes:" #. Image Thumbnails -#: app/dialogs/preferences-dialog.c:2218 +#: ../app/dialogs/preferences-dialog.c:2218 msgid "Image Thumbnails" msgstr "Billedminiaturer" -#: app/dialogs/preferences-dialog.c:2223 +#: ../app/dialogs/preferences-dialog.c:2223 msgid "Size of _thumbnails:" msgstr "Størrelse af _miniaturefiler:" -#: app/dialogs/preferences-dialog.c:2227 +#: ../app/dialogs/preferences-dialog.c:2227 msgid "Maximum _filesize for thumbnailing:" msgstr "Maksimal _filstørrelse for miniaturer:" #. File Saving -#: app/dialogs/preferences-dialog.c:2231 +#: ../app/dialogs/preferences-dialog.c:2231 msgid "Saving Images" msgstr "Gemning af billeder" -#: app/dialogs/preferences-dialog.c:2234 +#: ../app/dialogs/preferences-dialog.c:2234 msgid "Confirm closing of unsa_ved images" msgstr "Bekræft lukning af _ugemte billeder" -#: app/dialogs/preferences-dialog.c:2245 app/dialogs/preferences-dialog.c:2248 +#: ../app/dialogs/preferences-dialog.c:2245 +#: ../app/dialogs/preferences-dialog.c:2248 msgid "Folders" msgstr "Mapper" # med lidt omformulering går de næstfølgende uden forkortelsesproblemerne -#: app/dialogs/preferences-dialog.c:2263 +#: ../app/dialogs/preferences-dialog.c:2263 msgid "Temp folder:" msgstr "Midlertidig:" -#: app/dialogs/preferences-dialog.c:2263 +#: ../app/dialogs/preferences-dialog.c:2263 msgid "Select Temp Folder" msgstr "Vælg mappe til midlertige" -#: app/dialogs/preferences-dialog.c:2264 -#: app/dialogs/user-install-dialog.c:1403 +#: ../app/dialogs/preferences-dialog.c:2264 +#: ../app/dialogs/user-install-dialog.c:1403 msgid "Swap folder:" msgstr "Reservehukommelsesmappe:" -#: app/dialogs/preferences-dialog.c:2264 +#: ../app/dialogs/preferences-dialog.c:2264 msgid "Select Swap Folder" msgstr "Vælg mappe til reservehukommelse" -#: app/dialogs/preferences-dialog.c:2297 +#: ../app/dialogs/preferences-dialog.c:2297 msgid "Brush Folders" msgstr "Penselmapper" -#: app/dialogs/preferences-dialog.c:2299 +#: ../app/dialogs/preferences-dialog.c:2299 msgid "Select Brush Folders" msgstr "Vælg mapper til pensler" -#: app/dialogs/preferences-dialog.c:2301 +#: ../app/dialogs/preferences-dialog.c:2301 msgid "Pattern Folders" msgstr "Mønstermapper" -#: app/dialogs/preferences-dialog.c:2303 +#: ../app/dialogs/preferences-dialog.c:2303 msgid "Select Pattern Folders" msgstr "Vælg mapper til mønstre" -#: app/dialogs/preferences-dialog.c:2305 +#: ../app/dialogs/preferences-dialog.c:2305 msgid "Palette Folders" msgstr "Paletmapper" -#: app/dialogs/preferences-dialog.c:2307 +#: ../app/dialogs/preferences-dialog.c:2307 msgid "Select Palette Folders" msgstr "Vælg mapper til paletter" -#: app/dialogs/preferences-dialog.c:2309 +#: ../app/dialogs/preferences-dialog.c:2309 msgid "Gradient Folders" msgstr "Farveovergangesmapper" -#: app/dialogs/preferences-dialog.c:2311 +#: ../app/dialogs/preferences-dialog.c:2311 msgid "Select Gradient Folders" msgstr "Vælg mapper til farveovergange" -#: app/dialogs/preferences-dialog.c:2313 +#: ../app/dialogs/preferences-dialog.c:2313 msgid "Font Folders" msgstr "Skrifttypemapper" -#: app/dialogs/preferences-dialog.c:2315 +#: ../app/dialogs/preferences-dialog.c:2315 msgid "Select Font Folders" msgstr "Vælg skrifttypemapper" -#: app/dialogs/preferences-dialog.c:2317 +#: ../app/dialogs/preferences-dialog.c:2317 msgid "Plug-In Folders" msgstr "Udvidelsesmodulmapper" -#: app/dialogs/preferences-dialog.c:2319 +#: ../app/dialogs/preferences-dialog.c:2319 msgid "Select Plug-In Folders" msgstr "Vælg mapper til udvidelsesmoduler" -#: app/dialogs/preferences-dialog.c:2321 +#: ../app/dialogs/preferences-dialog.c:2321 msgid "Scripts" msgstr "Programmer" -#: app/dialogs/preferences-dialog.c:2321 +#: ../app/dialogs/preferences-dialog.c:2321 msgid "Script-Fu Folders" msgstr "Script-Fu-mapper" -#: app/dialogs/preferences-dialog.c:2323 +#: ../app/dialogs/preferences-dialog.c:2323 msgid "Select Script-Fu Folders" msgstr "Vælg Script-Fu-mapper" -#: app/dialogs/preferences-dialog.c:2325 +#: ../app/dialogs/preferences-dialog.c:2325 msgid "Module Folders" msgstr "Programudvidelsesmapper" -#: app/dialogs/preferences-dialog.c:2327 +#: ../app/dialogs/preferences-dialog.c:2327 msgid "Select Module Folders" msgstr "Vælg mapper til programudvidelser" -#: app/dialogs/preferences-dialog.c:2329 +#: ../app/dialogs/preferences-dialog.c:2329 msgid "Environment Folders" msgstr "Miljømapper" -#: app/dialogs/preferences-dialog.c:2331 +#: ../app/dialogs/preferences-dialog.c:2331 msgid "Select Environment Folders" msgstr "Vælg mapper til miljø" -#: app/dialogs/preferences-dialog.c:2333 +#: ../app/dialogs/preferences-dialog.c:2333 msgid "Themes" msgstr "Temaer" -#: app/dialogs/preferences-dialog.c:2333 +#: ../app/dialogs/preferences-dialog.c:2333 msgid "Theme Folders" msgstr "Temamapper" -#: app/dialogs/preferences-dialog.c:2335 +#: ../app/dialogs/preferences-dialog.c:2335 msgid "Select Theme Folders" msgstr "Vælg mapper til temaer" -#: app/dialogs/print-size-dialog.c:128 +#: ../app/dialogs/print-size-dialog.c:128 msgid "Print Size" msgstr "Udskriftsstørrelse" #. the image size labels -#: app/dialogs/print-size-dialog.c:155 app/widgets/gimpsizebox.c:223 -#: app/widgets/gimptemplateeditor.c:236 +#: ../app/dialogs/print-size-dialog.c:155 ../app/widgets/gimpsizebox.c:223 +#: ../app/widgets/gimptemplateeditor.c:236 msgid "_Width:" msgstr "_Bredde:" -#: app/dialogs/print-size-dialog.c:162 app/widgets/gimpsizebox.c:227 -#: app/widgets/gimptemplateeditor.c:243 +#: ../app/dialogs/print-size-dialog.c:162 ../app/widgets/gimpsizebox.c:227 +#: ../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:276 -#: app/widgets/gimptemplateeditor.c:363 +#: ../app/dialogs/print-size-dialog.c:210 ../app/widgets/gimpsizebox.c:276 +#: ../app/widgets/gimptemplateeditor.c:363 msgid "_X resolution:" msgstr "_x-opløsning:" -#: app/dialogs/print-size-dialog.c:217 app/widgets/gimpsizebox.c:279 -#: app/widgets/gimptemplateeditor.c:370 +#: ../app/dialogs/print-size-dialog.c:217 ../app/widgets/gimpsizebox.c:279 +#: ../app/widgets/gimptemplateeditor.c:370 msgid "_Y resolution:" msgstr "_y-opløsning:" -#: app/dialogs/print-size-dialog.c:228 app/widgets/gimpsizebox.c:272 -#: app/widgets/gimptemplateeditor.c:383 +#: ../app/dialogs/print-size-dialog.c:228 ../app/widgets/gimpsizebox.c:272 +#: ../app/widgets/gimptemplateeditor.c:383 #, c-format msgid "pixels/%a" msgstr "punkter/%a" -#: app/dialogs/quit-dialog.c:84 +#: ../app/dialogs/quit-dialog.c:84 msgid "Quit The GIMP" msgstr "Afslut Gimp'en" -#: app/dialogs/quit-dialog.c:126 +#: ../app/dialogs/quit-dialog.c:126 msgid "If you quit GIMP now, these changes will be lost." msgstr "Hvis du afslutter Gimp'en nu, vil disse ændringer gå tabt." -#: app/dialogs/quit-dialog.c:164 +#: ../app/dialogs/quit-dialog.c:164 msgid "There is one image with unsaved changes:" msgstr "Der er et billede med ugemte ændringer:" -#: app/dialogs/quit-dialog.c:167 +#: ../app/dialogs/quit-dialog.c:167 #, c-format msgid "There are %d images with unsaved changes:" msgstr "Der er %d billeder med ugemte ændringer:" -#: app/dialogs/quit-dialog.c:183 -#, fuzzy +#: ../app/dialogs/quit-dialog.c:183 msgid "_Discard Changes" -msgstr "_Hæv kanal" +msgstr "_Forkast ændringer" -#: app/dialogs/resize-dialog.c:115 +#: ../app/dialogs/resize-dialog.c:115 msgid "Canvas Size" msgstr "Lærredstørrelse" -#: app/dialogs/resize-dialog.c:126 app/dialogs/scale-dialog.c:107 +#: ../app/dialogs/resize-dialog.c:126 ../app/dialogs/scale-dialog.c:107 msgid "Layer Size" msgstr "Lagstørrelse" -#: app/dialogs/resolution-calibrate-dialog.c:67 +#: ../app/dialogs/resolution-calibrate-dialog.c:67 msgid "Calibrate Monitor Resolution" msgstr "Kalibrér skærmopløsning" -#: app/dialogs/resolution-calibrate-dialog.c:120 +#: ../app/dialogs/resolution-calibrate-dialog.c:120 msgid "Measure the rulers and enter their lengths:" msgstr "Mål linealerne og indtast deres længder:" -#: app/dialogs/resolution-calibrate-dialog.c:145 +#: ../app/dialogs/resolution-calibrate-dialog.c:145 msgid "_Horizontal:" msgstr "_Vandret:" -#: app/dialogs/resolution-calibrate-dialog.c:150 +#: ../app/dialogs/resolution-calibrate-dialog.c:150 msgid "_Vertical:" msgstr "_Lodret:" #. Image size frame -#: app/dialogs/scale-dialog.c:96 app/widgets/gimptemplateeditor.c:214 +#: ../app/dialogs/scale-dialog.c:96 ../app/widgets/gimptemplateeditor.c:214 msgid "Image Size" msgstr "Billedstørrelse" -#: app/dialogs/scale-dialog.c:166 +#: ../app/dialogs/scale-dialog.c:166 msgid "Quality" msgstr "Kvalitet" -#: app/dialogs/scale-dialog.c:178 +#: ../app/dialogs/scale-dialog.c:178 msgid "I_nterpolation:" msgstr "_Interpolering:" -#: app/dialogs/scale-dialog.c:192 +#: ../app/dialogs/scale-dialog.c:192 msgid "" "Indexed color layers are always scaled without interpolation. The chosen " "interpolation type will affect channels and masks only." @@ -6991,40 +7014,40 @@ "Indekserede farvelag bliver altid skaleret uden interpolering. Den valgte " "interpoleringstype vil kun påvirke kanaler og masker." -#: app/dialogs/stroke-dialog.c:104 +#: ../app/dialogs/stroke-dialog.c:104 msgid "Choose Stroke Style" msgstr "Vælg bestrygningsstil" -#: app/dialogs/stroke-dialog.c:209 +#: ../app/dialogs/stroke-dialog.c:209 msgid "Paint Tool:" msgstr "Maleværktøj:" -#: app/dialogs/tips-dialog.c:90 +#: ../app/dialogs/tips-dialog.c:90 msgid "Your GIMP tips file appears to be missing!" msgstr "Din Gimp-tipfil ser ud til at mangle!" -#: app/dialogs/tips-dialog.c:92 +#: ../app/dialogs/tips-dialog.c:92 #, c-format msgid "There should be a file called '%s'. Please check your installation." msgstr "Der skal være en fil med navnet %s. Kontrollér din installation." -#: app/dialogs/tips-dialog.c:98 +#: ../app/dialogs/tips-dialog.c:98 msgid "The GIMP tips file could not be parsed!" msgstr "Tipfilen til Gimp'en kunne ikke fortolkes!" -#: app/dialogs/tips-dialog.c:131 +#: ../app/dialogs/tips-dialog.c:131 msgid "GIMP Tip of the Day" msgstr "Dagens tip til Gimp'en" -#: app/dialogs/tips-dialog.c:195 +#: ../app/dialogs/tips-dialog.c:195 msgid "Show tip next time GIMP starts" msgstr "Vis tip næste gang Gimp'en starter" -#: app/dialogs/tips-dialog.c:219 +#: ../app/dialogs/tips-dialog.c:219 msgid "_Previous tip" msgstr "_Forrige tip" -#: app/dialogs/tips-dialog.c:228 +#: ../app/dialogs/tips-dialog.c:228 msgid "_Next tip" msgstr "_Næste tip" @@ -7033,11 +7056,11 @@ #. according to the name of the po file used for gimp-tips.xml. #. E.g. for the german translation, that would be "tips-locale:de". #. -#: app/dialogs/tips-parser.c:165 +#: ../app/dialogs/tips-parser.c:165 msgid "tips-locale:C" msgstr "tips-locale:da" -#: app/dialogs/user-install-dialog.c:134 +#: ../app/dialogs/user-install-dialog.c:134 msgid "" "The gimprc is used to store personal preferences that affect GIMP's default " "behavior. Paths to search for brushes, palettes, gradients, patterns, plug-" @@ -7048,7 +7071,7 @@ "farveovergange, mønstre, udvidelsesmoduler og programudvidelser kan også " "konfigureres her." -#: app/dialogs/user-install-dialog.c:143 +#: ../app/dialogs/user-install-dialog.c:143 msgid "" "GIMP uses an additional gtkrc file so you can configure it to look " "differently than other GTK apps." @@ -7056,7 +7079,7 @@ "Gimp'en bruger en ekstra gtkrc fil så du kan konfigurere programmet\n" "til at have et andet udseende end andre GTK+-programmer." -#: app/dialogs/user-install-dialog.c:149 +#: ../app/dialogs/user-install-dialog.c:149 msgid "" "Plug-ins and extensions are external programs run by the GIMP which provide " "additional functionality. These programs are searched for at run-time and " @@ -7069,7 +7092,7 @@ "mellemlagres i denne fil. Denne fil er beregnet til at være læsbar for " "Gimp'en kun og bør ikke redigeres." -#: app/dialogs/user-install-dialog.c:159 +#: ../app/dialogs/user-install-dialog.c:159 msgid "" "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 " @@ -7081,7 +7104,7 @@ "denne fil hvis du ønsker, men det er meget lettere at definere tasterne inde " "i Gimp'en. Sletning af denne fil vil genoprette standardtastaturgenvejene." -#: app/dialogs/user-install-dialog.c:169 +#: ../app/dialogs/user-install-dialog.c:169 msgid "" "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 " @@ -7091,7 +7114,7 @@ "afslutning af Gimp'en. Du kan indstille Gimp'en til at genåbne disse vinduer " "der hvor de var før." -#: app/dialogs/user-install-dialog.c:176 +#: ../app/dialogs/user-install-dialog.c:176 msgid "" "This file holds a collection of standard media sizes that serve as image " "templates." @@ -7099,7 +7122,7 @@ "Denne fil indeholder en samling af standardmediestørrelse der bruges som " "billedskabeloner." -#: app/dialogs/user-install-dialog.c:182 +#: ../app/dialogs/user-install-dialog.c:182 msgid "" "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, " @@ -7111,7 +7134,7 @@ "tommer punkter og picaer. Denne fil overskrives hver gang du afslutter " "Gimp'en." -#: app/dialogs/user-install-dialog.c:191 +#: ../app/dialogs/user-install-dialog.c:191 msgid "" "This folder is used to store user defined brushes. The GIMP checks this " "folder in addition to the system-wide GIMP brushes installation when " @@ -7121,7 +7144,7 @@ "denne mappe sammen med systemmapperne efter Gimp-pensler når der søges efter " "disse." -#: app/dialogs/user-install-dialog.c:199 +#: ../app/dialogs/user-install-dialog.c:199 msgid "" "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 " @@ -7132,7 +7155,7 @@ "denne mappe sammen med systemmapperne efter mønstre når der søges efter " "disse." -#: app/dialogs/user-install-dialog.c:209 +#: ../app/dialogs/user-install-dialog.c:209 msgid "" "This folder is used to store user defined gradients. The GIMP checks this " "folder in addition to the system-wide GIMP gradients installation when " @@ -7142,7 +7165,7 @@ "tjekker denne mappe sammen med systemmapperne efter farveovergange når der " "søges efter disse." -#: app/dialogs/user-install-dialog.c:216 +#: ../app/dialogs/user-install-dialog.c:216 msgid "" "This folder is used to store user defined palettes. The GIMP checks this " "folder in addition to the system-wide GIMP palettes installation when " @@ -7152,7 +7175,7 @@ "denne mappe sammen med systemmapperne efter paletter når der søges efter " "disse." -#: app/dialogs/user-install-dialog.c:223 +#: ../app/dialogs/user-install-dialog.c:223 msgid "" "This folder is used to store user defined patterns. The GIMP checks this " "folder in addition to the system-wide GIMP patterns installation when " @@ -7162,7 +7185,7 @@ "denne mappe sammen med systemmapperne efter mønstre når der søges efter " "disse." -#: app/dialogs/user-install-dialog.c:230 +#: ../app/dialogs/user-install-dialog.c:230 msgid "" "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 " @@ -7173,7 +7196,7 @@ "denne mappe sammen med systemmappen efter udvidelsesmoduler når der søges " "efter disse." -#: app/dialogs/user-install-dialog.c:238 +#: ../app/dialogs/user-install-dialog.c:238 msgid "" "This folder is used to store user created, temporary, or otherwise non-" "system-supported DLL modules. The GIMP checks this folder in addition to " @@ -7184,7 +7207,7 @@ "DLL-moduler som ikke installeres for alle brugere. Gimp'en tjekker denne " "mappe sammen med systemmappen efter programudvidelser under starten." -#: app/dialogs/user-install-dialog.c:247 +#: ../app/dialogs/user-install-dialog.c:247 msgid "" "This folder is used to store user created, temporary, or otherwise non-" "system-supported additions to the plug-in environment. The GIMP checks this " @@ -7196,7 +7219,7 @@ "Gimp'en tjekker denne mappe sammen med systemmappen når der søges efter " "disse." -#: app/dialogs/user-install-dialog.c:257 +#: ../app/dialogs/user-install-dialog.c:257 msgid "" "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 " @@ -7206,15 +7229,15 @@ "programmer. Gimp'en tjekker denne mappe sammen med systemmapperne efter " "fortolkede programmer når der søges efter disse." -#: app/dialogs/user-install-dialog.c:265 +#: ../app/dialogs/user-install-dialog.c:265 msgid "This folder is searched for image templates." msgstr "Denne mappe søges i efter bruger-installerede skabeloner." -#: app/dialogs/user-install-dialog.c:270 +#: ../app/dialogs/user-install-dialog.c:270 msgid "This folder is searched for user-installed themes." msgstr "Denne mappe søges i efter bruger-installerede temaer." -#: app/dialogs/user-install-dialog.c:275 +#: ../app/dialogs/user-install-dialog.c:275 msgid "" "This folder is used to temporarily store undo buffers to reduce memory " "usage. If The GIMP is unceremoniously killed, files of the form: gimp<#>." @@ -7227,37 +7250,37 @@ "overleve. Disse filer er ubrugelige på tværs af forskellige Gimp-sessioner " "og kan udryddes nådesløst." -#: app/dialogs/user-install-dialog.c:284 +#: ../app/dialogs/user-install-dialog.c:284 msgid "This folder is used to store tool options." msgstr "Denne mappe bruges til at gemme værktøjsindstillinger." -#: app/dialogs/user-install-dialog.c:289 +#: ../app/dialogs/user-install-dialog.c:289 msgid "This folder is used to store parameter files for the Curves tool." msgstr "Denne mappe bruges til at gemme parameterfiler til kurveværktøjet." -#: app/dialogs/user-install-dialog.c:294 +#: ../app/dialogs/user-install-dialog.c:294 msgid "This folder is used to store parameter files for the Levels tool." msgstr "Denne mappe bruges til at gemme parameterfiler til niveauværktøjet." -#: app/dialogs/user-install-dialog.c:390 +#: ../app/dialogs/user-install-dialog.c:390 msgid "Installation successful. Click \"Continue\" to proceed." msgstr "Installationen lykkedes. Klik \"Fortsæt\" for at gå videre." -#: app/dialogs/user-install-dialog.c:396 +#: ../app/dialogs/user-install-dialog.c:396 msgid "Installation failed. Contact system administrator." msgstr "Installationen mislykkedes. Kontakt systemadministratoren." -#: app/dialogs/user-install-dialog.c:609 +#: ../app/dialogs/user-install-dialog.c:609 msgid "GIMP User Installation" msgstr "Gimp - brugerinstallation" -#: app/dialogs/user-install-dialog.c:614 +#: ../app/dialogs/user-install-dialog.c:614 msgid "Continue" msgstr "Fortsæt" #. GPL_PAGE #. version number -#: app/dialogs/user-install-dialog.c:765 +#: ../app/dialogs/user-install-dialog.c:765 #, c-format msgid "" "Welcome to\n" @@ -7266,11 +7289,11 @@ "Velkommen til brugerinstallationen\n" "til Gimp'en %d.%d" -#: app/dialogs/user-install-dialog.c:771 +#: ../app/dialogs/user-install-dialog.c:771 msgid "Click \"Continue\" to enter the GIMP user installation." msgstr "Klik på \"Fortsæt\" for at starte Gimp'ens brugerinstallation." -#: app/dialogs/user-install-dialog.c:778 +#: ../app/dialogs/user-install-dialog.c:778 msgid "" "The GIMP - GNU Image Manipulation Program\n" "Copyright (C) 1995-2004\n" @@ -7279,7 +7302,7 @@ "Gimp'en - GNU Image Manipulation Program Copyright © 1995-2003 " "Spencer Kimball, Peter Mattis og Gimp-udviklingsgruppen." -#: app/dialogs/user-install-dialog.c:788 +#: ../app/dialogs/user-install-dialog.c:788 msgid "" "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 " @@ -7291,7 +7314,7 @@ "Software Foundation; enten version 2 af licensen, eller (hvis du ønsker det) " "enhver senere version." -#: app/dialogs/user-install-dialog.c:794 +#: ../app/dialogs/user-install-dialog.c:794 msgid "" "This program is distributed in the hope that it will be useful, but WITHOUT " "ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or " @@ -7303,7 +7326,7 @@ "EGNETHED TIL NOGET BESTEMT FORMÅL. Se GNU General Public License for flere " "detaljer." -#: app/dialogs/user-install-dialog.c:800 +#: ../app/dialogs/user-install-dialog.c:800 msgid "" "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 " @@ -7313,35 +7336,35 @@ "hvis ikke, skriv til Free Software Foundation, Inc., 59 Temple Place - Suite " "330, Boston, MA 02111-1307, USA." -#: app/dialogs/user-install-dialog.c:810 +#: ../app/dialogs/user-install-dialog.c:810 msgid "Migrate User Settings" msgstr "Migrér brugerindstillinger" -#: app/dialogs/user-install-dialog.c:811 +#: ../app/dialogs/user-install-dialog.c:811 msgid "Click \"Continue\" to proceed with the user installation." msgstr "Klik på \"Fortsæt\" for at fortsætte med brugerinstallationen." -#: app/dialogs/user-install-dialog.c:816 +#: ../app/dialogs/user-install-dialog.c:816 msgid "It seems you have used GIMP 2.0 before." msgstr "Det ser ud til du har brugt Gimp 2.0 før." -#: app/dialogs/user-install-dialog.c:820 +#: ../app/dialogs/user-install-dialog.c:820 msgid "_Migrate GIMP 2.0 user settings" msgstr "_Migrér brugerindstillinger fra Gimp 2.0" -#: app/dialogs/user-install-dialog.c:823 +#: ../app/dialogs/user-install-dialog.c:823 msgid "Do a _fresh user installation" msgstr "Foretag en _frisk brugerinstallation" -#: app/dialogs/user-install-dialog.c:851 +#: ../app/dialogs/user-install-dialog.c:851 msgid "Personal GIMP Folder" msgstr "Personlig Gimp-mappe" -#: app/dialogs/user-install-dialog.c:852 +#: ../app/dialogs/user-install-dialog.c:852 msgid "Click \"Continue\" to create your personal GIMP folder." msgstr "Klik på \"Fortsæt\" for at oprette din personlige Gimp-mappe." -#: app/dialogs/user-install-dialog.c:896 +#: ../app/dialogs/user-install-dialog.c:896 #, c-format msgid "" "For a proper GIMP installation, a folder named '%s' needs to be " @@ -7350,7 +7373,7 @@ "Til en korrekt installation af Gimp'en skal en mappe ved navn %s " "oprettes." -#: app/dialogs/user-install-dialog.c:903 +#: ../app/dialogs/user-install-dialog.c:903 msgid "" "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." @@ -7359,23 +7382,23 @@ "filerne eller mapperne i træet for at få flere oplysninger om det valgte " "element." -#: app/dialogs/user-install-dialog.c:991 +#: ../app/dialogs/user-install-dialog.c:991 msgid "User Installation Log" msgstr "Brugerinstallationslog" -#: app/dialogs/user-install-dialog.c:992 +#: ../app/dialogs/user-install-dialog.c:992 msgid "Please wait while your personal GIMP folder is being created..." msgstr "Vent venligst mens din personlige Gimp-mappe bliver oprettet..." -#: app/dialogs/user-install-dialog.c:999 +#: ../app/dialogs/user-install-dialog.c:999 msgid "GIMP Performance Tuning" msgstr "Gimp - ydelsesjustering" -#: app/dialogs/user-install-dialog.c:1000 +#: ../app/dialogs/user-install-dialog.c:1000 msgid "Click \"Continue\" to accept the settings above." msgstr "Klik på \"Fortsæt\" for at acceptere ovenstående indstillinger." -#: app/dialogs/user-install-dialog.c:1005 +#: ../app/dialogs/user-install-dialog.c:1005 msgid "" "For optimal GIMP performance, some settings may have to be adjusted." msgstr "" @@ -7383,22 +7406,22 @@ "disse indstillinger." # mindre omformulering nødvendig -#: app/dialogs/user-install-dialog.c:1065 +#: ../app/dialogs/user-install-dialog.c:1065 #, c-format msgid "Copying file '%s' from '%s'..." msgstr "Kopierer filen '%s' fra '%s'..." -#: app/dialogs/user-install-dialog.c:1084 +#: ../app/dialogs/user-install-dialog.c:1084 #, c-format msgid "Creating folder '%s'..." msgstr "Opretter mappen '%s'..." -#: app/dialogs/user-install-dialog.c:1098 +#: ../app/dialogs/user-install-dialog.c:1098 #, c-format msgid "Cannot create folder '%s': %s" msgstr "Kan ikke oprette mappen '%s': %s" -#: app/dialogs/user-install-dialog.c:1362 +#: ../app/dialogs/user-install-dialog.c:1362 msgid "" "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 " @@ -7409,11 +7432,11 @@ "være i hukommelsen. Tag den mængde hukommelse der bruges af andre kørende " "processer, i betragtning." -#: app/dialogs/user-install-dialog.c:1375 +#: ../app/dialogs/user-install-dialog.c:1375 msgid "Tile cache size:" msgstr "Størrelse af flisemellemlager:" -#: app/dialogs/user-install-dialog.c:1387 +#: ../app/dialogs/user-install-dialog.c:1387 msgid "" "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 " @@ -7426,537 +7449,534 @@ "system vil du måske bruge systemets mappe til midlertidige filer. (\"/tmp\" " "eller \"/var/tmp\")." -#: app/dialogs/user-install-dialog.c:1398 +#: ../app/dialogs/user-install-dialog.c:1398 msgid "Select swap dir" msgstr "Vælg mappe til reservehukommelse" -#: app/dialogs/vectors-export-dialog.c:53 +#: ../app/dialogs/vectors-export-dialog.c:53 msgid "Export Path to SVG" msgstr "Eksportér bane til SVG" -#: app/dialogs/vectors-export-dialog.c:78 +#: ../app/dialogs/vectors-export-dialog.c:78 msgid "Export the active path" msgstr "Eksportér den aktive bane" -#: app/dialogs/vectors-export-dialog.c:79 +#: ../app/dialogs/vectors-export-dialog.c:79 msgid "Export all paths from this image" msgstr "Eksportér alle baner fra dette billede" -#: app/dialogs/vectors-import-dialog.c:57 +#: ../app/dialogs/vectors-import-dialog.c:57 msgid "Import Paths from SVG" msgstr "Importér bane fra SVG" -#: app/dialogs/vectors-import-dialog.c:83 +#: ../app/dialogs/vectors-import-dialog.c:83 msgid "All Files (*.*)" msgstr "Alle filer (*.*))" -#: app/dialogs/vectors-import-dialog.c:88 +#: ../app/dialogs/vectors-import-dialog.c:88 msgid "Scalable SVG image (*.svg)" msgstr "Skalérbare SVG-billeder (*.svg)" -#: app/dialogs/vectors-import-dialog.c:99 +#: ../app/dialogs/vectors-import-dialog.c:99 msgid "_Merge imported paths" msgstr "_Forén importerede baner" -#: app/dialogs/vectors-import-dialog.c:109 +#: ../app/dialogs/vectors-import-dialog.c:109 msgid "_Scale imported paths to fit image" msgstr "_Skalér importerede baner til billede" -#: app/dialogs/vectors-options-dialog.c:113 +#: ../app/dialogs/vectors-options-dialog.c:113 msgid "Path Name:" msgstr "Navn på bane:" -#: app/display/display-enums.c:24 +#: ../app/display/display-enums.c:24 msgid "Tool icon" msgstr "Værktøjsikon" -#: app/display/display-enums.c:25 +#: ../app/display/display-enums.c:25 msgid "Tool icon with crosshair" msgstr "Værktøjsikon med sigtekorn" -#: app/display/display-enums.c:26 +#: ../app/display/display-enums.c:26 msgid "Crosshair only" msgstr "Kun sigtekorn" -#: app/display/display-enums.c:55 +#: ../app/display/display-enums.c:55 msgid "From theme" msgstr "Fra tema" # "check" betyder "tern" -#: app/display/display-enums.c:56 +#: ../app/display/display-enums.c:56 msgid "Light check color" msgstr "Lys ternfarve" -#: app/display/display-enums.c:57 +#: ../app/display/display-enums.c:57 msgid "Dark check color" msgstr "Mørk ternfarve" -#: app/display/display-enums.c:58 +#: ../app/display/display-enums.c:58 msgid "Custom color" msgstr "Brugerdefineret farve" -#: app/display/gimpdisplayshell.c:943 +#: ../app/display/gimpdisplayshell.c:943 msgid "Zoom image when window size changes" msgstr "Zoom billede når vinduesstørrelsen ændrer sig" -#: app/display/gimpdisplayshell.c:963 +#: ../app/display/gimpdisplayshell.c:963 msgid "Toggle Quick Mask" msgstr "Slå hurtigmaske til/fra" -#: app/display/gimpdisplayshell-close.c:122 -#: app/display/gimpdisplayshell-close.c:185 +#: ../app/display/gimpdisplayshell-close.c:122 +#: ../app/display/gimpdisplayshell-close.c:185 #, c-format msgid "Close %s" msgstr "Luk %s" -#: app/display/gimpdisplayshell-close.c:131 +#: ../app/display/gimpdisplayshell-close.c:131 msgid "Do_n't save" msgstr "Gem _ikke" -#: app/display/gimpdisplayshell-close.c:192 +#: ../app/display/gimpdisplayshell-close.c:192 #, c-format msgid "Save the changes to image '%s' before closing?" msgstr "Gem ændringerne i billedet \"%s\" før lukning?" -#: app/display/gimpdisplayshell-close.c:209 +#: ../app/display/gimpdisplayshell-close.c:209 #, c-format msgid "If you don't save the image, changes from the last %s will be lost." msgstr "Hvis du ikke gemmer billedet, vil ændringer fra for %s siden gå tabt." #. one second, the time period -#: app/display/gimpdisplayshell-close.c:266 +#: ../app/display/gimpdisplayshell-close.c:266 msgid "second" msgstr "sekund" -#: app/display/gimpdisplayshell-close.c:269 +#: ../app/display/gimpdisplayshell-close.c:269 #, c-format msgid "%d seconds" msgstr "%d sekunder" -#: app/display/gimpdisplayshell-close.c:275 +#: ../app/display/gimpdisplayshell-close.c:275 msgid "minute" msgstr "minut" -#: app/display/gimpdisplayshell-close.c:277 +#: ../app/display/gimpdisplayshell-close.c:277 #, c-format msgid "%d minutes" msgstr "%d minutter" -#: app/display/gimpdisplayshell-dnd.c:98 +#: ../app/display/gimpdisplayshell-dnd.c:98 msgid "Drop New Layer" msgstr "Drop nyt lag" -#: app/display/gimpdisplayshell-dnd.c:142 +#: ../app/display/gimpdisplayshell-dnd.c:142 msgid "Drop New Path" msgstr "Drop ny bane" -#: app/display/gimpdisplayshell-filter-dialog.c:73 +#: ../app/display/gimpdisplayshell-filter-dialog.c:73 msgid "Color Display Filters" msgstr "Farvefremvisningsfiltre" -#: app/display/gimpdisplayshell-filter-dialog.c:76 +#: ../app/display/gimpdisplayshell-filter-dialog.c:76 msgid "Configure Color Display Filters" msgstr "Konfigurér farvefremvisningsfiltre" -#: app/display/gimpdisplayshell-layer-select.c:122 +#: ../app/display/gimpdisplayshell-layer-select.c:122 msgid "Layer Select" msgstr "Vælg lag" -#: app/display/gimpdisplayshell-scale.c:537 +#: ../app/display/gimpdisplayshell-scale.c:537 msgid "Zoom Ratio" msgstr "Zoomforhold" -#: app/display/gimpdisplayshell-scale.c:539 +#: ../app/display/gimpdisplayshell-scale.c:539 msgid "Select Zoom Ratio" msgstr "Vælg zoomforhold" -#: app/display/gimpdisplayshell-scale.c:574 +#: ../app/display/gimpdisplayshell-scale.c:574 msgid "Zoom Ratio:" msgstr "Zoomforhold:" -#: app/display/gimpdisplayshell-scale.c:601 +#: ../app/display/gimpdisplayshell-scale.c:601 msgid "Zoom:" msgstr "Zoom:" -#: app/display/gimpdisplayshell-title.c:234 +#: ../app/display/gimpdisplayshell-title.c:234 msgid "RGB-empty" msgstr "RGB-tom" -#: app/display/gimpdisplayshell-title.c:237 +#: ../app/display/gimpdisplayshell-title.c:237 msgid "grayscale-empty" msgstr "gråtone-tom" -#: app/display/gimpdisplayshell-title.c:237 +#: ../app/display/gimpdisplayshell-title.c:237 msgid "grayscale" msgstr "gråtoner" -#: app/display/gimpdisplayshell-title.c:240 +#: ../app/display/gimpdisplayshell-title.c:240 msgid "indexed-empty" msgstr "indekseret-tom" -#: app/display/gimpdisplayshell-title.c:240 +#: ../app/display/gimpdisplayshell-title.c:240 msgid "indexed" msgstr "indekseret" -#: app/display/gimpdisplayshell-title.c:292 +#: ../app/display/gimpdisplayshell-title.c:292 msgid "(modified)" msgstr "(ændret)" -#: app/display/gimpdisplayshell-title.c:298 +#: ../app/display/gimpdisplayshell-title.c:298 msgid "(clean)" msgstr "(ren)" -#: app/display/gimpdisplayshell-title.c:325 +#: ../app/display/gimpdisplayshell-title.c:325 msgid "1 layer" msgstr "1 lag" -#: app/display/gimpdisplayshell-title.c:325 +#: ../app/display/gimpdisplayshell-title.c:325 #, c-format msgid "%d layers" msgstr "%d lag" -#: app/display/gimpstatusbar.c:142 +#: ../app/display/gimpstatusbar.c:142 msgid "Shadow type" msgstr "Skyggetype" -#: app/display/gimpstatusbar.c:143 +#: ../app/display/gimpstatusbar.c:143 msgid "Style of bevel around the statusbar text" msgstr "Den stil kanten omkring statuslinjeteksten benytter" -#: app/display/gimpstatusbar.c:218 +#: ../app/display/gimpstatusbar.c:222 msgid "Cancel" msgstr "Annullér" -#: app/file/file-open.c:105 app/file/file-save.c:132 +#: ../app/file/file-open.c:105 ../app/file/file-save.c:132 msgid "Unknown file type" msgstr "Ukendt filtype" -#: app/file/file-open.c:120 app/file/file-save.c:146 +#: ../app/file/file-open.c:120 ../app/file/file-save.c:146 msgid "Not a regular file" msgstr "Ikke en almindelig fil" -#: app/file/file-open.c:173 +#: ../app/file/file-open.c:173 msgid "Plug-In returned SUCCESS but did not return an image" msgstr "Udvidelsesmodul returnerede SUCCESS, men returnerede ikke et billede" -#: app/file/file-open.c:181 +#: ../app/file/file-open.c:181 msgid "Plug-In could not open image" msgstr "Udvidelsesmodul kunne ikke åbne billede" -#: app/file/file-open.c:417 +#: ../app/file/file-open.c:417 msgid "Image doesn't contain any visible layers" msgstr "Billede indeholder ikke nogen synlige lag" -#: app/file/file-save.c:220 +#: ../app/file/file-save.c:220 msgid "Plug-In could not save image" msgstr "Udvidelsesmodul kunne ikke gemme billede" -#: app/file/file-utils.c:107 +#: ../app/file/file-utils.c:107 msgid "Invalid character sequence in URI" msgstr "Ugyldig tegnsekvens i URI" -#: app/gui/session.c:247 app/menus/menus.c:351 app/widgets/gimpdevices.c:218 +#: ../app/gui/session.c:247 ../app/menus/menus.c:351 +#: ../app/widgets/gimpdevices.c:218 #, c-format msgid "Deleting \"%s\" failed: %s" msgstr "Sletning af \"%s\" mislykkedes: %s" -#: app/gui/splash.c:118 +#: ../app/gui/splash.c:118 msgid "GIMP Startup" msgstr "Gimp-start" -#: app/gui/themes.c:231 app/plug-in/plug-ins.c:254 +#: ../app/gui/themes.c:231 ../app/plug-in/plug-ins.c:254 #, c-format msgid "Writing '%s'\n" msgstr "Skriver '%s'\n" -#: app/gui/themes.c:284 +#: ../app/gui/themes.c:284 #, c-format msgid "Adding theme '%s' (%s)\n" msgstr "Tilføjer temaet '%s' (%s)\n" -#: app/paint/gimpairbrush.c:69 app/tools/gimpairbrushtool.c:55 +#: ../app/paint/gimpairbrush.c:69 ../app/tools/gimpairbrushtool.c:55 msgid "Airbrush" msgstr "Sprøjtepensel" -#: app/paint/gimpbrushcore.c:369 +#: ../app/paint/gimpbrushcore.c:369 msgid "No brushes available for use with this tool." msgstr "Ingen pensler tilgængelige til dette værktøj." -#: app/paint/gimpclone.c:89 app/tools/gimpclonetool.c:89 +#: ../app/paint/gimpclone.c:89 ../app/tools/gimpclonetool.c:89 msgid "Clone" msgstr "Kloning" -#: app/paint/gimpconvolve.c:121 app/tools/gimpconvolvetool.c:70 +#: ../app/paint/gimpconvolve.c:121 ../app/tools/gimpconvolvetool.c:70 msgid "Convolve" msgstr "Konturændring" -#: app/paint/gimpdodgeburn.c:87 app/tools/gimpdodgeburntool.c:70 +#: ../app/paint/gimpdodgeburn.c:87 ../app/tools/gimpdodgeburntool.c:70 msgid "Dodge/Burn" msgstr "Blegning/sværtning" -#: app/paint/gimperaser.c:64 app/tools/gimperasertool.c:70 +#: ../app/paint/gimperaser.c:64 ../app/tools/gimperasertool.c:70 msgid "Eraser" msgstr "Viskelæder" -#: app/paint/gimppaintbrush.c:65 app/tools/gimppaintbrushtool.c:51 +#: ../app/paint/gimppaintbrush.c:65 ../app/tools/gimppaintbrushtool.c:51 msgid "Paintbrush" msgstr "Malerpensel" -#: app/paint/gimppencil.c:38 app/tools/gimppenciltool.c:51 +#: ../app/paint/gimppencil.c:38 ../app/tools/gimppenciltool.c:51 msgid "Pencil" msgstr "Blyant" -#: app/paint/gimpsmudge.c:78 app/tools/gimpsmudgetool.c:54 +#: ../app/paint/gimpsmudge.c:78 ../app/tools/gimpsmudgetool.c:54 msgid "Smudge" msgstr "Udtvær" -#: app/paint/paint-enums.c:23 -#, fuzzy +#: ../app/paint/paint-enums.c:23 msgid "Image source" msgstr "Billedkilde" -#: app/paint/paint-enums.c:24 -#, fuzzy +#: ../app/paint/paint-enums.c:24 msgid "Pattern source" msgstr "Mønsterkilde" -#: app/paint/paint-enums.c:52 -#, fuzzy +#: ../app/paint/paint-enums.c:52 msgid "Non-aligned" msgstr "Ikke justeret" -#: app/paint/paint-enums.c:53 +#: ../app/paint/paint-enums.c:53 msgid "Aligned" msgstr "Justeret" -#: app/paint/paint-enums.c:54 +#: ../app/paint/paint-enums.c:54 msgid "Registered" msgstr "Registreret" -#: app/paint/paint-enums.c:81 app/widgets/gimpwidgets-constructors.c:60 -#: app/widgets/gimpwidgets-constructors.c:93 +#: ../app/paint/paint-enums.c:81 ../app/widgets/gimpwidgets-constructors.c:60 +#: ../app/widgets/gimpwidgets-constructors.c:93 msgid "Dodge" msgstr "Blegning" -#: app/paint/paint-enums.c:82 app/widgets/gimpwidgets-constructors.c:61 -#: app/widgets/gimpwidgets-constructors.c:94 +#: ../app/paint/paint-enums.c:82 ../app/widgets/gimpwidgets-constructors.c:61 +#: ../app/widgets/gimpwidgets-constructors.c:94 msgid "Burn" msgstr "Sværtning" # dækker vist bedst -#: app/paint/paint-enums.c:109 +#: ../app/paint/paint-enums.c:109 msgid "Blur" msgstr "Blødgør" -#: app/paint/paint-enums.c:110 +#: ../app/paint/paint-enums.c:110 msgid "Sharpen" msgstr "Skærp" -#: app/paint/paint-enums.c:167 +#: ../app/paint/paint-enums.c:167 msgid "Constant" msgstr "Konstant" -#: app/paint/paint-enums.c:168 app/tools/gimppaintoptions-gui.c:163 +#: ../app/paint/paint-enums.c:168 ../app/tools/gimppaintoptions-gui.c:163 msgid "Incremental" msgstr "Forøgende" -#: app/pdb/color_cmds.c:140 app/tools/gimpbrightnesscontrasttool.c:85 +#: ../app/pdb/color_cmds.c:140 ../app/tools/gimpbrightnesscontrasttool.c:85 msgid "Brightness-Contrast" msgstr "Lysstyrke/kontrast" -#: app/pdb/color_cmds.c:457 app/tools/gimpposterizetool.c:78 +#: ../app/pdb/color_cmds.c:457 ../app/tools/gimpposterizetool.c:78 msgid "Posterize" msgstr "Posterisering" -#: app/pdb/color_cmds.c:745 app/pdb/color_cmds.c:870 -#: app/tools/gimpcurvestool.c:141 +#: ../app/pdb/color_cmds.c:745 ../app/pdb/color_cmds.c:870 +#: ../app/tools/gimpcurvestool.c:141 msgid "Curves" msgstr "Kurver" -#: app/pdb/color_cmds.c:995 app/tools/gimpcolorbalancetool.c:96 +#: ../app/pdb/color_cmds.c:995 ../app/tools/gimpcolorbalancetool.c:96 msgid "Color Balance" msgstr "Farvebalance" -#: app/pdb/color_cmds.c:1120 app/tools/gimpcolorizetool.c:96 +#: ../app/pdb/color_cmds.c:1120 ../app/tools/gimpcolorizetool.c:96 msgid "Colorize" msgstr "Kulørisér" -#: app/pdb/color_cmds.c:1399 app/tools/gimphuesaturationtool.c:110 +#: ../app/pdb/color_cmds.c:1399 ../app/tools/gimphuesaturationtool.c:110 msgid "Hue-Saturation" msgstr "Farvetone/mætning" -#: app/pdb/color_cmds.c:1506 app/tools/gimpthresholdtool.c:92 +#: ../app/pdb/color_cmds.c:1506 ../app/tools/gimpthresholdtool.c:92 msgid "Threshold" msgstr "Tærskel" -#: app/pdb/drawable_transform_cmds.c:249 app/pdb/drawable_transform_cmds.c:404 -#, fuzzy +#: ../app/pdb/drawable_transform_cmds.c:249 +#: ../app/pdb/drawable_transform_cmds.c:404 msgid "Flip..." msgstr "Vender..." -#: app/pdb/drawable_transform_cmds.c:563 app/pdb/drawable_transform_cmds.c:746 -#: app/pdb/transform_tools_cmds.c:197 app/tools/gimpperspectivetool.c:141 +#: ../app/pdb/drawable_transform_cmds.c:563 +#: ../app/pdb/drawable_transform_cmds.c:746 +#: ../app/pdb/transform_tools_cmds.c:197 +#: ../app/tools/gimpperspectivetool.c:141 msgid "Perspective..." -msgstr "Perspektiv..." +msgstr "Perspektiverer..." -#: app/pdb/drawable_transform_cmds.c:1650 -#: app/pdb/drawable_transform_cmds.c:1791 app/pdb/transform_tools_cmds.c:586 -#: app/tools/gimpsheartool.c:158 +#: ../app/pdb/drawable_transform_cmds.c:1650 +#: ../app/pdb/drawable_transform_cmds.c:1791 +#: ../app/pdb/transform_tools_cmds.c:586 ../app/tools/gimpsheartool.c:158 msgid "Shearing..." msgstr "Trapezerer..." -#: app/pdb/drawable_transform_cmds.c:1943 -#: 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 +#: ../app/pdb/drawable_transform_cmds.c:1943 +#: ../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 msgid "2D Transform..." msgstr "Transformerer..." -#: app/pdb/edit_cmds.c:673 app/tools/gimpblendtool.c:249 +#: ../app/pdb/edit_cmds.c:673 ../app/tools/gimpblendtool.c:249 msgid "Blending..." msgstr "Blander..." -#: app/pdb/image_cmds.c:3756 app/text/gimptext-parasite.c:168 +#: ../app/pdb/image_cmds.c:3756 ../app/text/gimptext-parasite.c:168 msgid "(invalid UTF-8 string)" msgstr "(ugyldig UTF-8-streng)" -#: app/pdb/image_cmds.c:3898 +#: ../app/pdb/image_cmds.c:3898 msgid "" "Image resolution is out of bounds, using the default resolution instead." msgstr "" "Billedopløsningen er uden for grænserne, bruger standardopløsningen i stedet." -#: app/pdb/internal_procs.c:86 +#: ../app/pdb/internal_procs.c:86 msgid "Internal Procedures" msgstr "Interne procedurer" -#: app/pdb/internal_procs.c:86 -#, fuzzy +#: ../app/pdb/internal_procs.c:86 msgid "Brush" -msgstr "Pensel:" +msgstr "Pensel" -#: app/pdb/internal_procs.c:89 +#: ../app/pdb/internal_procs.c:89 msgid "Brush UI" msgstr "Penselgrænseflade" -#: app/pdb/internal_procs.c:98 app/tools/gimppaintoptions-gui.c:283 -#: app/widgets/gimpwidgets-constructors.c:75 -#: app/widgets/gimpwidgets-constructors.c:108 +#: ../app/pdb/internal_procs.c:98 ../app/tools/gimppaintoptions-gui.c:283 +#: ../app/widgets/gimpwidgets-constructors.c:75 +#: ../app/widgets/gimpwidgets-constructors.c:108 msgid "Color" msgstr "Farve" -#: app/pdb/internal_procs.c:104 +#: ../app/pdb/internal_procs.c:104 msgid "Convert" msgstr "Konvertér" -#: app/pdb/internal_procs.c:107 +#: ../app/pdb/internal_procs.c:107 msgid "Display procedures" msgstr "Skærmprocedurer" -#: app/pdb/internal_procs.c:110 +#: ../app/pdb/internal_procs.c:110 msgid "Drawable procedures" msgstr "Tegneobjektprocedurer" -#: app/pdb/internal_procs.c:113 -#, fuzzy +#: ../app/pdb/internal_procs.c:113 msgid "Transformation procedures" -msgstr "Transformeringsværktøjsprocedurer" +msgstr "Transformeringsprocedurer" -#: app/pdb/internal_procs.c:116 +#: ../app/pdb/internal_procs.c:116 msgid "Edit procedures" msgstr "Redigeringsprocedurer" -#: app/pdb/internal_procs.c:119 +#: ../app/pdb/internal_procs.c:119 msgid "File Operations" msgstr "Filoperationer" -#: app/pdb/internal_procs.c:122 +#: ../app/pdb/internal_procs.c:122 msgid "Floating selections" msgstr "Flydende markeringer" -#: app/pdb/internal_procs.c:125 +#: ../app/pdb/internal_procs.c:125 msgid "Font UI" msgstr "Skrifttypegrænseflade" -#: app/pdb/internal_procs.c:131 +#: ../app/pdb/internal_procs.c:131 msgid "Gimprc procedures" msgstr "Gimprc-procedurer" -#: app/pdb/internal_procs.c:134 -#, fuzzy +#: ../app/pdb/internal_procs.c:134 msgid "Gradient" -msgstr "Overgang:" +msgstr "Overgang" -#: app/pdb/internal_procs.c:137 +#: ../app/pdb/internal_procs.c:137 msgid "Gradient UI" msgstr "Farveovergangsgrænseflade" -#: app/pdb/internal_procs.c:143 +#: ../app/pdb/internal_procs.c:143 msgid "Guide procedures" msgstr "Hjælpelinjeprocedurer" -#: app/pdb/internal_procs.c:146 +#: ../app/pdb/internal_procs.c:146 msgid "Help procedures" msgstr "Hjælpeprocedurer" -#: app/pdb/internal_procs.c:155 +#: ../app/pdb/internal_procs.c:155 msgid "Message procedures" msgstr "Meddelelsesprocedurer" -#: app/pdb/internal_procs.c:158 +#: ../app/pdb/internal_procs.c:158 msgid "Miscellaneous" msgstr "Diverse" -#: app/pdb/internal_procs.c:161 +#: ../app/pdb/internal_procs.c:161 msgid "Paint Tool procedures" msgstr "Tegneværktøjsprocedurer" -#: app/pdb/internal_procs.c:164 +#: ../app/pdb/internal_procs.c:164 msgid "Palette" msgstr "Palet" -#: app/pdb/internal_procs.c:167 +#: ../app/pdb/internal_procs.c:167 msgid "Palette UI" msgstr "Paletgrænseflade" -#: app/pdb/internal_procs.c:173 +#: ../app/pdb/internal_procs.c:173 msgid "Parasite procedures" msgstr "Parasitprocedurer" -#: app/pdb/internal_procs.c:182 +#: ../app/pdb/internal_procs.c:182 msgid "Pattern UI" msgstr "Mønstergrænseflade" -#: app/pdb/internal_procs.c:188 +#: ../app/pdb/internal_procs.c:188 msgid "Plug-in" msgstr "Udvidelsesmoduler" -#: app/pdb/internal_procs.c:191 +#: ../app/pdb/internal_procs.c:191 msgid "Procedural database" msgstr "Proceduredatabase" -#: app/pdb/internal_procs.c:194 app/widgets/gimpprogressdialog.c:239 +#: ../app/pdb/internal_procs.c:194 ../app/widgets/gimpprogressdialog.c:239 msgid "Progress" msgstr "Fremgang" -#: app/pdb/internal_procs.c:197 +#: ../app/pdb/internal_procs.c:197 msgid "Image mask" msgstr "Billedmaske" -#: app/pdb/internal_procs.c:200 +#: ../app/pdb/internal_procs.c:200 msgid "Selection Tool procedures" msgstr "Markeringsværktøjsprocedurer" -#: app/pdb/internal_procs.c:203 +#: ../app/pdb/internal_procs.c:203 msgid "Text procedures" msgstr "Tekstprocedurer" -#: app/pdb/internal_procs.c:206 +#: ../app/pdb/internal_procs.c:206 msgid "Transform Tool procedures" msgstr "Transformeringsværktøjsprocedurer" -#: app/pdb/procedural_db.c:254 +#: ../app/pdb/procedural_db.c:254 #, c-format msgid "" "PDB calling error:\n" @@ -7965,7 +7985,7 @@ "PDB-kaldefejl:\n" "procedure '%s' ikke fundet" -#: app/pdb/procedural_db.c:275 app/pdb/procedural_db.c:387 +#: ../app/pdb/procedural_db.c:275 ../app/pdb/procedural_db.c:387 #, c-format msgid "" "PDB calling error for procedure '%s':\n" @@ -7974,32 +7994,32 @@ "PDB-kaldefejl for procedure '%s':\n" "Typefejl for parameter nr. %d (forventede %s, fik %s)" -#: app/pdb/procedural_db_cmds.c:80 +#: ../app/pdb/procedural_db_cmds.c:80 msgid "Internal GIMP procedure" msgstr "Intern Gimp-procedure" -#: app/pdb/procedural_db_cmds.c:81 +#: ../app/pdb/procedural_db_cmds.c:81 msgid "GIMP Plug-In" msgstr "Gimp-udvidelsesmodul" -#: app/pdb/procedural_db_cmds.c:82 +#: ../app/pdb/procedural_db_cmds.c:82 msgid "GIMP Extension" msgstr "Gimp-programudvidelse" -#: app/pdb/procedural_db_cmds.c:83 +#: ../app/pdb/procedural_db_cmds.c:83 msgid "Temporary Procedure" msgstr "Midlertidig procedure" -#: app/pdb/selection_tools_cmds.c:332 app/tools/gimpfreeselecttool.c:96 +#: ../app/pdb/selection_tools_cmds.c:332 ../app/tools/gimpfreeselecttool.c:96 msgid "Free Select" msgstr "Fri markering" -#: app/plug-in/plug-in.c:544 app/plug-in/plug-in.c:574 -#, fuzzy, c-format +#: ../app/plug-in/plug-in.c:544 ../app/plug-in/plug-in.c:574 +#, c-format msgid "Terminating plug-in: '%s'\n" -msgstr "Forespørger udvidelsesmodul: '%s'\n" +msgstr "Terminerer udvidelsesmodul: \"%s\"\n" -#: app/plug-in/plug-in.c:730 +#: ../app/plug-in/plug-in.c:730 #, c-format msgid "" "Plug-In crashed: \"%s\"\n" @@ -8015,77 +8035,75 @@ "hvis du gemmer dine billeder og genstarter Gimp'en for at være på den sikre " "side." -#: app/plug-in/plug-in-rc.c:176 +#: ../app/plug-in/plug-in-rc.c:176 #, c-format msgid "Skipping '%s': wrong GIMP protocol version." -msgstr "Springer over '%s': forkert Gimp-protokolversion." +msgstr "Springer over \"%s\": forkert Gimp-protokolversion." -#: app/plug-in/plug-in-rc.c:432 -#, fuzzy, c-format +#: ../app/plug-in/plug-in-rc.c:432 +#, c-format msgid "invalid value '%s' for icon type" -msgstr "ugyldig værdi '%s' for symbolet %s" +msgstr "ugyldig værdi \"%s\" for ikontypen" -#: app/plug-in/plug-in-rc.c:447 -#, fuzzy, c-format +#: ../app/plug-in/plug-in-rc.c:447 +#, c-format msgid "invalid value '%ld' for icon type" -msgstr "ugyldig værdi '%ld' for symbolet %s" +msgstr "ugyldig værdi \"%ld\" for ikontypen" -#: app/plug-in/plug-ins.c:139 +#: ../app/plug-in/plug-ins.c:139 msgid "Resource configuration" msgstr "Resurseopsætning" #. Query any plug-ins that have changed since we last wrote out #. * the pluginrc file. #. -#: app/plug-in/plug-ins.c:153 +#: ../app/plug-in/plug-ins.c:153 msgid "Querying new Plug-ins" msgstr "Undersøger nye udvidelsesmoduler" -#: app/plug-in/plug-ins.c:170 +#: ../app/plug-in/plug-ins.c:170 #, c-format msgid "Querying plug-in: '%s'\n" msgstr "Forespørger udvidelsesmodul: '%s'\n" #. initialize the plug-ins -#: app/plug-in/plug-ins.c:180 +#: ../app/plug-in/plug-ins.c:180 msgid "Initializing Plug-ins" msgstr "Klargør udvidelsesmoduler" -#: app/plug-in/plug-ins.c:194 +#: ../app/plug-in/plug-ins.c:194 #, c-format msgid "Initializing plug-in: '%s'\n" msgstr "Klargør udvidelsesmodul: '%s'\n" -#: app/plug-in/plug-ins.c:351 +#: ../app/plug-in/plug-ins.c:351 msgid "Starting Extensions" msgstr "Starter programudvidelser" -#: app/plug-in/plug-ins.c:358 +#: ../app/plug-in/plug-ins.c:358 #, c-format msgid "Starting extension: '%s'\n" msgstr "Starter programudvidelse: '%s'\n" -#: app/text/text-enums.c:81 -#, fuzzy +#: ../app/text/text-enums.c:81 msgid "Left justified" msgstr "Venstrejusteret" -#: app/text/text-enums.c:82 -#, fuzzy +#: ../app/text/text-enums.c:82 msgid "Right justified" msgstr "Højrejusteret" -#: app/text/text-enums.c:83 +#: ../app/text/text-enums.c:83 msgid "Centered" msgstr "Centreret" -#: app/text/text-enums.c:84 +#: ../app/text/text-enums.c:84 msgid "Filled" msgstr "Fyldt" #. This is a so-called pangram; it's supposed to #. contain all characters found in the alphabet. -#: app/text/gimpfont.c:39 +#: ../app/text/gimpfont.c:39 msgid "" "Pack my box with\n" "five dozen liquor jugs." @@ -8093,61 +8111,56 @@ "Cølibatisk havfrue på brynjeklædt\n" "wc med plexiglas i zoo." -#: app/text/gimptext-compat.c:106 app/tools/gimptexttool.c:697 +#: ../app/text/gimptext-compat.c:108 ../app/tools/gimptexttool.c:699 msgid "Add Text Layer" msgstr "Tilføj tekstlag" -#: app/text/gimptextlayer.c:170 +#: ../app/text/gimptextlayer.c:170 msgid "Text Layer" msgstr "Tekstlag" -#: app/text/gimptextlayer.c:171 -#, fuzzy +#: ../app/text/gimptextlayer.c:171 msgid "Rename Text Layer" -msgstr "Omdøb lag" +msgstr "Omdøb tekstlag" -#: app/text/gimptextlayer.c:172 -#, fuzzy +#: ../app/text/gimptextlayer.c:172 msgid "Move Text Layer" -msgstr "Rotér tekstlag" +msgstr "Flyt tekstlag" -#: app/text/gimptextlayer.c:173 -#, fuzzy +#: ../app/text/gimptextlayer.c:173 msgid "Scale Text Layer" -msgstr "Skalering af lag" +msgstr "Skalér tekstlag" -#: app/text/gimptextlayer.c:174 -#, fuzzy +#: ../app/text/gimptextlayer.c:174 msgid "Resize Text Layer" -msgstr "Ændring af lagstørrelse" +msgstr "Ændr tekstlagstørrelse" -#: app/text/gimptextlayer.c:175 +#: ../app/text/gimptextlayer.c:175 msgid "Flip Text Layer" msgstr "Vend tekstlag" -#: app/text/gimptextlayer.c:176 +#: ../app/text/gimptextlayer.c:176 msgid "Rotate Text Layer" msgstr "Rotér tekstlag" -#: app/text/gimptextlayer.c:177 -#, fuzzy +#: ../app/text/gimptextlayer.c:177 msgid "Transform Text Layer" -msgstr "Transformér lag" +msgstr "Transformér tekstlag" -#: app/text/gimptextlayer.c:531 +#: ../app/text/gimptextlayer.c:531 msgid "Discard Text Information" msgstr "Kassér tekstoplysninger" -#: app/text/gimptextlayer.c:581 +#: ../app/text/gimptextlayer.c:581 msgid "Due to lack of any fonts, text functionality is not available." msgstr "" "Da der ikke er nogen skrifttyper, er tekstfunktionaliteten ikke tilgængelig." -#: app/text/gimptextlayer.c:616 +#: ../app/text/gimptextlayer.c:616 msgid "Empty Text Layer" msgstr "Tomt tekstlag" -#: app/text/gimptextlayer-xcf.c:73 +#: ../app/text/gimptextlayer-xcf.c:73 #, c-format msgid "" "Problems parsing the text parasite for layer '%s':\n" @@ -8162,1226 +8175,1155 @@ "Nogle tekstegenskaber kan være forkerte. Medmindre du ønsker at redigere " "tekstlaget, behøver du ikke bekymre dig om det." -#: app/tools/tools-enums.c:25 -#, fuzzy +#: ../app/tools/tools-enums.c:25 msgid "Pick only" msgstr "Vælg kun" -#: app/tools/tools-enums.c:26 -#, fuzzy +#: ../app/tools/tools-enums.c:26 msgid "Set foreground color" msgstr "Skift forgrundsfarve" -#: app/tools/tools-enums.c:27 -#, fuzzy +#: ../app/tools/tools-enums.c:27 msgid "Set background color" msgstr "Skift baggrundsfarve" -#: app/tools/tools-enums.c:54 +#: ../app/tools/tools-enums.c:54 msgid "Crop" msgstr "Tilskær" -#: app/tools/tools-enums.c:55 +#: ../app/tools/tools-enums.c:55 msgid "Resize" msgstr "Ændr størrelse" -#: app/tools/tools-enums.c:83 -#, fuzzy +#: ../app/tools/tools-enums.c:83 msgid "Free select" msgstr "Fri markering" -#: app/tools/tools-enums.c:84 -#, fuzzy +#: ../app/tools/tools-enums.c:84 msgid "Fixed size" msgstr "Fast størrelse" -#: app/tools/tools-enums.c:85 -#, fuzzy +#: ../app/tools/tools-enums.c:85 msgid "Fixed aspect ratio" msgstr "Fast formatforhold" -#: app/tools/tools-enums.c:113 -#, fuzzy +#: ../app/tools/tools-enums.c:113 msgid "Transform layer" msgstr "Transformér lag" -#: app/tools/tools-enums.c:114 -#, fuzzy +#: ../app/tools/tools-enums.c:114 msgid "Transform selection" msgstr "Transformér markering" -#: app/tools/tools-enums.c:115 -#, fuzzy +#: ../app/tools/tools-enums.c:115 msgid "Transform path" msgstr "Transformér bane" -#: app/tools/tools-enums.c:143 +#: ../app/tools/tools-enums.c:143 msgid "Design" msgstr "Design" -#: app/tools/tools-enums.c:145 app/tools/gimpmovetool.c:116 +#: ../app/tools/tools-enums.c:145 ../app/tools/gimpmovetool.c:116 msgid "Move" msgstr "Flyt" -#: app/tools/tools-enums.c:174 +#: ../app/tools/tools-enums.c:174 msgid "Outline" -msgstr "" +msgstr "Omrids" -#: app/tools/tools-enums.c:177 -#, fuzzy +#: ../app/tools/tools-enums.c:177 msgid "Image + Grid" -msgstr "Billedgitter" +msgstr "Billede + gitter" -#: app/tools/tools-enums.c:204 -#, fuzzy +#: ../app/tools/tools-enums.c:204 msgid "Number of grid lines" msgstr "Antal gitterlinjer" -#: app/tools/tools-enums.c:205 -#, fuzzy +#: ../app/tools/tools-enums.c:205 msgid "Grid line spacing" msgstr "Gitterlinjemellemrum" -#: app/tools/gimp-tools.c:283 +#: ../app/tools/gimp-tools.c:283 msgid "This tool has no options." msgstr "Dette værktøj har ingen indstillinger." -#: app/tools/gimpairbrushtool.c:56 +#: ../app/tools/gimpairbrushtool.c:56 msgid "Airbrush with variable pressure" msgstr "Sprøjtepensel med variabelt tryk" -#: app/tools/gimpairbrushtool.c:57 -#, fuzzy +#: ../app/tools/gimpairbrushtool.c:57 msgid "_Airbrush" -msgstr "Sprøjtepensel" +msgstr "_Sprøjtepensel" # dækker så nogenlunde -#: app/tools/gimpairbrushtool.c:123 app/tools/gimpconvolvetool.c:211 -#: app/tools/gimpsmudgetool.c:123 +#: ../app/tools/gimpairbrushtool.c:123 ../app/tools/gimpconvolvetool.c:211 +#: ../app/tools/gimpsmudgetool.c:123 msgid "Rate:" msgstr "Virkningsgrad:" -#: app/tools/gimpairbrushtool.c:129 +#: ../app/tools/gimpairbrushtool.c:129 msgid "Pressure:" msgstr "Tryk:" -#: app/tools/gimpblendoptions.c:246 +#: ../app/tools/gimpblendoptions.c:246 msgid "Offset:" msgstr "Afsæt:" -#: app/tools/gimpblendoptions.c:255 app/widgets/gimpbrusheditor.c:145 +#: ../app/tools/gimpblendoptions.c:255 ../app/widgets/gimpbrusheditor.c:145 msgid "Shape:" msgstr "Form:" -#: app/tools/gimpblendoptions.c:261 app/tools/gimppaintoptions-gui.c:417 +#: ../app/tools/gimpblendoptions.c:261 ../app/tools/gimppaintoptions-gui.c:417 msgid "Repeat:" msgstr "Gentag:" -#: app/tools/gimpblendoptions.c:279 -#, fuzzy +#: ../app/tools/gimpblendoptions.c:279 msgid "Adaptive supersampling" msgstr "Adaptiv supersampling" -#: app/tools/gimpblendoptions.c:297 +#: ../app/tools/gimpblendoptions.c:297 msgid "Max Depth:" msgstr "Maks. dybde:" -#: app/tools/gimpblendoptions.c:304 app/tools/gimpbucketfilloptions.c:295 -#: app/tools/gimpmagnifyoptions.c:226 app/tools/gimpselectionoptions.c:466 +#: ../app/tools/gimpblendoptions.c:304 +#: ../app/tools/gimpbucketfilloptions.c:295 +#: ../app/tools/gimpmagnifyoptions.c:226 +#: ../app/tools/gimpselectionoptions.c:466 msgid "Threshold:" msgstr "Tærskel:" -#: app/tools/gimpblendtool.c:102 +#: ../app/tools/gimpblendtool.c:102 msgid "Fill with a color gradient" msgstr "Udfyld med en farveovergang" -#: app/tools/gimpblendtool.c:103 -#, fuzzy +#: ../app/tools/gimpblendtool.c:103 msgid "Blen_d" -msgstr "Blanding" +msgstr "_Blanding" -#: app/tools/gimpblendtool.c:191 +#: ../app/tools/gimpblendtool.c:191 msgid "Blend: Invalid for indexed images." msgstr "Blanding: Ugyldig for indekserede billeder." #. initialize the statusbar display -#: app/tools/gimpblendtool.c:209 app/tools/gimpblendtool.c:308 +#: ../app/tools/gimpblendtool.c:209 ../app/tools/gimpblendtool.c:308 msgid "Blend: " msgstr "Blanding: " -#: app/tools/gimpbrightnesscontrasttool.c:86 +#: ../app/tools/gimpbrightnesscontrasttool.c:86 msgid "Adjust brightness and contrast" msgstr "Justér lysstyrke og kontrast" -#: app/tools/gimpbrightnesscontrasttool.c:87 -#, fuzzy +#: ../app/tools/gimpbrightnesscontrasttool.c:87 msgid "B_rightness-Contrast..." -msgstr "Lysstyrke/kontrast" +msgstr "_Lysstyrke/kontrast..." -#: app/tools/gimpbrightnesscontrasttool.c:138 +#: ../app/tools/gimpbrightnesscontrasttool.c:138 msgid "Adjust Brightness and Contrast" msgstr "Justér lysstyrke og kontrast" -#: app/tools/gimpbrightnesscontrasttool.c:181 +#: ../app/tools/gimpbrightnesscontrasttool.c:181 msgid "Brightness-Contrast does not operate on indexed layers." msgstr "Lysstyrke/kontrast virker ikke på indekserede lag." -#: app/tools/gimpbrightnesscontrasttool.c:236 +#: ../app/tools/gimpbrightnesscontrasttool.c:236 msgid "_Brightness:" msgstr "_Lysstyrke:" -#: app/tools/gimpbrightnesscontrasttool.c:251 +#: ../app/tools/gimpbrightnesscontrasttool.c:251 msgid "Con_trast:" msgstr "Ko_ntrast:" -#: app/tools/gimpbucketfilloptions.c:129 +#: ../app/tools/gimpbucketfilloptions.c:129 msgid "Allow completely transparent regions to be filled" msgstr "Tillad fuldstændigt gennemsigtige områder at blive udfyldt" -#: app/tools/gimpbucketfilloptions.c:135 +#: ../app/tools/gimpbucketfilloptions.c:135 msgid "Base filled area on all visible layers" msgstr "Basér udfyldningsområde på alle synlige lag" -#: app/tools/gimpbucketfilloptions.c:141 app/tools/gimpselectionoptions.c:161 +#: ../app/tools/gimpbucketfilloptions.c:141 +#: ../app/tools/gimpselectionoptions.c:161 msgid "Maximum color difference" msgstr "Maksimal farveforskel" #. fill type -#: app/tools/gimpbucketfilloptions.c:238 +#: ../app/tools/gimpbucketfilloptions.c:238 #, c-format msgid "Fill Type %s" msgstr "Fyldtype %s" #. fill selection -#: app/tools/gimpbucketfilloptions.c:250 +#: ../app/tools/gimpbucketfilloptions.c:250 #, c-format msgid "Affected Area %s" msgstr "Påvirket område %s" -#: app/tools/gimpbucketfilloptions.c:254 -#, fuzzy +#: ../app/tools/gimpbucketfilloptions.c:254 msgid "Fill whole selection" msgstr "Udfyld hele markering" -#: app/tools/gimpbucketfilloptions.c:255 -#, fuzzy +#: ../app/tools/gimpbucketfilloptions.c:255 msgid "Fill similar colors" msgstr "Udfyld lignende farver" -#: app/tools/gimpbucketfilloptions.c:261 app/tools/gimpselectionoptions.c:438 +#: ../app/tools/gimpbucketfilloptions.c:261 +#: ../app/tools/gimpselectionoptions.c:438 msgid "Finding Similar Colors" -msgstr "Finding af ens farver" +msgstr "Find ens farver" -#: app/tools/gimpbucketfilloptions.c:277 -#, fuzzy +#: ../app/tools/gimpbucketfilloptions.c:277 msgid "Fill transparent areas" msgstr "Udfyld gennemsigtige områder" # mærkelig tekst, men vist nok rigtig -#: app/tools/gimpbucketfilloptions.c:283 -#: app/tools/gimpcolorpickeroptions.c:179 app/tools/gimpselectionoptions.c:454 -#: app/tools/gimpselectionoptions.c:502 -#, fuzzy +#: ../app/tools/gimpbucketfilloptions.c:283 +#: ../app/tools/gimpcolorpickeroptions.c:179 +#: ../app/tools/gimpselectionoptions.c:454 +#: ../app/tools/gimpselectionoptions.c:502 msgid "Sample merged" msgstr "Benyt alle lag" -#: app/tools/gimpbucketfilltool.c:92 +#: ../app/tools/gimpbucketfilltool.c:92 msgid "Fill with a color or pattern" msgstr "Udfyld med en farve eller et mønster" -#: app/tools/gimpbucketfilltool.c:93 -#, fuzzy +#: ../app/tools/gimpbucketfilltool.c:93 msgid "_Bucket Fill" -msgstr "Spandudfyldning" +msgstr "_Spandudfyldning" -#: app/tools/gimpbycolorselecttool.c:82 +#: ../app/tools/gimpbycolorselecttool.c:82 msgid "Select By Color" msgstr "Markér efter farve..." -#: app/tools/gimpbycolorselecttool.c:83 +#: ../app/tools/gimpbycolorselecttool.c:83 msgid "Select regions by color" msgstr "Markér områder efter farve" -#: app/tools/gimpbycolorselecttool.c:84 -#, fuzzy +#: ../app/tools/gimpbycolorselecttool.c:84 msgid "_By Color Select" -msgstr "Markering efter farve" +msgstr "Markering efter _farve" -#: app/tools/gimpclonetool.c:90 +#: ../app/tools/gimpclonetool.c:90 msgid "Paint using Patterns or Image Regions" msgstr "Tegn med mønstre eller billedområder" -#: app/tools/gimpclonetool.c:91 -#, fuzzy +#: ../app/tools/gimpclonetool.c:91 msgid "_Clone" -msgstr "Kloning" +msgstr "_Klon" -#: app/tools/gimpclonetool.c:266 +#: ../app/tools/gimpclonetool.c:288 msgid "Source" msgstr "Kilde" -#: app/tools/gimpclonetool.c:275 +#: ../app/tools/gimpclonetool.c:297 msgid "Alignment" msgstr "Justering" -#: app/tools/gimpcolorbalancetool.c:97 +#: ../app/tools/gimpcolorbalancetool.c:97 msgid "Adjust color balance" msgstr "Justér farvebalancen" -#: app/tools/gimpcolorbalancetool.c:98 -#, fuzzy +#: ../app/tools/gimpcolorbalancetool.c:98 msgid "Color _Balance..." -msgstr "Farvebalance" +msgstr "Farve_balance..." -#: app/tools/gimpcolorbalancetool.c:149 +#: ../app/tools/gimpcolorbalancetool.c:149 msgid "Adjust Color Balance" msgstr "Justér farvebalance" -#: app/tools/gimpcolorbalancetool.c:193 +#: ../app/tools/gimpcolorbalancetool.c:193 msgid "Color balance operates only on RGB color layers." msgstr "Farvebalance virker kun på lag med RGB-farver." -#: app/tools/gimpcolorbalancetool.c:276 +#: ../app/tools/gimpcolorbalancetool.c:276 msgid "Select Range to Modify" msgstr "Vælg interval der skal ændres" -#: app/tools/gimpcolorbalancetool.c:284 +#: ../app/tools/gimpcolorbalancetool.c:284 msgid "Modify Selected Range's Color Levels" msgstr "Ændr det valgte intervals farveniveauer" -#: app/tools/gimpcolorbalancetool.c:301 +#: ../app/tools/gimpcolorbalancetool.c:301 msgid "Cyan" msgstr "Cyan" -#: app/tools/gimpcolorbalancetool.c:308 +#: ../app/tools/gimpcolorbalancetool.c:308 msgid "Magenta" msgstr "Magenta" -#: app/tools/gimpcolorbalancetool.c:315 +#: ../app/tools/gimpcolorbalancetool.c:315 msgid "Yellow" msgstr "Gul" -#: app/tools/gimpcolorbalancetool.c:325 -#, fuzzy +#: ../app/tools/gimpcolorbalancetool.c:325 msgid "R_eset range" msgstr "N_ulstil interval" -#: app/tools/gimpcolorbalancetool.c:334 -#, fuzzy +#: ../app/tools/gimpcolorbalancetool.c:334 msgid "Preserve _luminosity" msgstr "Bevar _lysintensitet" -#: app/tools/gimpcolorizetool.c:97 +#: ../app/tools/gimpcolorizetool.c:97 msgid "Colorize the image" msgstr "Kulørisér billedet" -#: app/tools/gimpcolorizetool.c:98 -#, fuzzy +#: ../app/tools/gimpcolorizetool.c:98 msgid "Colori_ze..." -msgstr "Kulørisér" +msgstr "_Kulørisér..." -#: app/tools/gimpcolorizetool.c:152 +#: ../app/tools/gimpcolorizetool.c:152 msgid "Colorize the Image" msgstr "Kulørisér billedet" -#: app/tools/gimpcolorizetool.c:195 +#: ../app/tools/gimpcolorizetool.c:195 msgid "Colorize operates only on RGB color layers." msgstr "Kulørisér virker kun på lag med RGB-farver." -#: app/tools/gimpcolorizetool.c:235 +#: ../app/tools/gimpcolorizetool.c:235 msgid "Select Color" msgstr "Markér farve" -#: app/tools/gimpcolorizetool.c:253 app/tools/gimphuesaturationtool.c:361 +#: ../app/tools/gimpcolorizetool.c:253 +#: ../app/tools/gimphuesaturationtool.c:361 msgid "_Hue:" msgstr "_Farvetone:" -#: app/tools/gimpcolorizetool.c:267 app/tools/gimphuesaturationtool.c:389 +#: ../app/tools/gimpcolorizetool.c:267 +#: ../app/tools/gimphuesaturationtool.c:389 msgid "_Saturation:" msgstr "_Mætning:" -#: app/tools/gimpcolorizetool.c:281 app/tools/gimphuesaturationtool.c:375 +#: ../app/tools/gimpcolorizetool.c:281 +#: ../app/tools/gimphuesaturationtool.c:375 msgid "_Lightness:" msgstr "_Lysstyrke:" -#: app/tools/gimpcoloroptions.c:184 -#, fuzzy +#: ../app/tools/gimpcoloroptions.c:184 msgid "Sample average" msgstr "Prøvegennemsnit" -#: app/tools/gimpcoloroptions.c:194 app/tools/gimpselectionoptions.c:416 -#: app/widgets/gimpbrusheditor.c:153 +#: ../app/tools/gimpcoloroptions.c:194 ../app/tools/gimpselectionoptions.c:416 +#: ../app/widgets/gimpbrusheditor.c:153 msgid "Radius:" msgstr "Radius:" #. the pick FG/BG frame -#: app/tools/gimpcolorpickeroptions.c:184 +#: ../app/tools/gimpcolorpickeroptions.c:184 #, c-format msgid "Pick Mode %s" msgstr "Vælgetilstand %s" #. the add to palette toggle -#: app/tools/gimpcolorpickeroptions.c:193 -#, fuzzy, c-format +#: ../app/tools/gimpcolorpickeroptions.c:193 +#, c-format msgid "Add to palette %s" -msgstr "/_Redigér palet..." +msgstr "Tilføj til palet %s" -#: app/tools/gimpcolorpickertool.c:99 +#: ../app/tools/gimpcolorpickertool.c:99 msgid "Color Picker" -msgstr "Farvevælger" +msgstr "Farveopsnapper" -#: app/tools/gimpcolorpickertool.c:100 +#: ../app/tools/gimpcolorpickertool.c:100 msgid "Pick colors from the image" -msgstr "Opsnap farver fra billedet" +msgstr "Vælg farver fra billedet" -#: app/tools/gimpcolorpickertool.c:101 -#, fuzzy +#: ../app/tools/gimpcolorpickertool.c:101 msgid "C_olor Picker" -msgstr "Farvevælger" +msgstr "_Farveopsnapper" # 'information' er overflødigt #. tool->gdisp->shell -#: app/tools/gimpcolorpickertool.c:343 +#: ../app/tools/gimpcolorpickertool.c:343 msgid "Color Picker Information" msgstr "Farveopsnapper" -#: app/tools/gimpconvolvetool.c:71 +#: ../app/tools/gimpconvolvetool.c:71 msgid "Blur or Sharpen" msgstr "Blødgør eller skærp" -#: app/tools/gimpconvolvetool.c:72 -#, fuzzy +#: ../app/tools/gimpconvolvetool.c:72 msgid "Con_volve" -msgstr "Konturændring" +msgstr "K_onturændring" #. the type radio box -#: app/tools/gimpconvolvetool.c:193 +#: ../app/tools/gimpconvolvetool.c:193 #, c-format msgid "Convolve Type %s" msgstr "Konturændringstype %s" # 'toggle' er ret mærkeligt, men refererer til hvilken tilstand værktøjet er i (fx zoom ind vs. zoom ud) #. tool toggle -#: app/tools/gimpcropoptions.c:188 app/tools/gimpmagnifyoptions.c:208 -#: app/tools/gimpmoveoptions.c:217 +#: ../app/tools/gimpcropoptions.c:188 ../app/tools/gimpmagnifyoptions.c:208 +#: ../app/tools/gimpmoveoptions.c:217 #, c-format msgid "Tool Toggle %s" msgstr "Værktøjstilstand %s" -#: app/tools/gimpcropoptions.c:200 -#, fuzzy +#: ../app/tools/gimpcropoptions.c:200 msgid "Current layer only" msgstr "Kun aktuelt lag" #. enlarge toggle -#: app/tools/gimpcropoptions.c:205 -#, fuzzy, c-format +#: ../app/tools/gimpcropoptions.c:205 +#, c-format msgid "Allow enlarging %s" -msgstr "Tillad forstørring %s" +msgstr "Tillad forstørrelse %s" #. layer toggle -#: app/tools/gimpcropoptions.c:215 -#, fuzzy, c-format +#: ../app/tools/gimpcropoptions.c:215 +#, c-format msgid "Keep aspect ratio %s" -msgstr "Fast formatforhold" +msgstr "Fast formatforhold %s" -#: app/tools/gimpcroptool.c:164 +#: ../app/tools/gimpcroptool.c:164 msgid "Crop & Resize" msgstr "Tilskæring og størrelsesændring" -#: app/tools/gimpcroptool.c:165 +#: ../app/tools/gimpcroptool.c:165 msgid "Crop or Resize an image" msgstr "Tilskær eller ændr størrelsen af et billede" -#: app/tools/gimpcroptool.c:166 -#, fuzzy +#: ../app/tools/gimpcroptool.c:166 msgid "_Crop & Resize" -msgstr "Tilskæring og størrelsesændring" +msgstr "_Tilskær og ændr størrelse" #. initialize the statusbar display -#: app/tools/gimpcroptool.c:499 app/tools/gimpcroptool.c:983 +#: ../app/tools/gimpcroptool.c:499 ../app/tools/gimpcroptool.c:983 msgid "Crop: " msgstr "Tilskær: " # 'information' er overflødigt -#: app/tools/gimpcroptool.c:1010 +#: ../app/tools/gimpcroptool.c:1010 msgid "Crop & Resize Information" msgstr "Tilskæring og størrelse" -#: app/tools/gimpcroptool.c:1029 +#: ../app/tools/gimpcroptool.c:1029 msgid "Origin X:" -msgstr "x-nulpunkt:" +msgstr "Nulpunkt x:" -#: app/tools/gimpcroptool.c:1033 -#, fuzzy +#: ../app/tools/gimpcroptool.c:1033 msgid "Origin Y:" -msgstr "x-nulpunkt:" +msgstr "Nulpunkt y:" -# vist nok et kendt ord fra tv-verdenen -#: app/tools/gimpcroptool.c:1071 app/widgets/gimpbrusheditor.c:194 -#, fuzzy +#: ../app/tools/gimpcroptool.c:1071 ../app/widgets/gimpbrusheditor.c:194 msgid "Aspect ratio:" msgstr "Formatforhold:" -#: app/tools/gimpcroptool.c:1082 -#, fuzzy +#: ../app/tools/gimpcroptool.c:1082 msgid "From selection" msgstr "Fra markering" -#: app/tools/gimpcroptool.c:1090 -#, fuzzy +#: ../app/tools/gimpcroptool.c:1090 msgid "Auto shrink" -msgstr "Automatisk formindskelse" +msgstr "Formindsk automatisk" -#: app/tools/gimpcurvestool.c:142 +#: ../app/tools/gimpcurvestool.c:142 msgid "Adjust color curves" msgstr "Justér farvekurver" -#: app/tools/gimpcurvestool.c:143 -#, fuzzy +#: ../app/tools/gimpcurvestool.c:143 msgid "_Curves..." -msgstr "Kurver" +msgstr "_Kurver..." -#: app/tools/gimpcurvestool.c:202 +#: ../app/tools/gimpcurvestool.c:202 msgid "Adjust Color Curves" msgstr "Justér farvekurver" -#: app/tools/gimpcurvestool.c:204 +#: ../app/tools/gimpcurvestool.c:204 msgid "Load Curves" msgstr "Indlæs kurver" -#: app/tools/gimpcurvestool.c:205 -#, fuzzy +#: ../app/tools/gimpcurvestool.c:205 msgid "Load curves settings from file" -msgstr "Læs kurveindstillinger fra fil" +msgstr "Indlæs kurveindstillinger fra fil" -#: app/tools/gimpcurvestool.c:206 +#: ../app/tools/gimpcurvestool.c:206 msgid "Save Curves" msgstr "Gem kurver" -#: app/tools/gimpcurvestool.c:207 +#: ../app/tools/gimpcurvestool.c:207 msgid "Save curves settings to file" msgstr "Gem kurveindstillinger i fil" -#: app/tools/gimpcurvestool.c:283 +#: ../app/tools/gimpcurvestool.c:283 msgid "Curves for indexed layers cannot be adjusted." msgstr "Kurver for indekserede lag kan ikke justeres." -#: app/tools/gimpcurvestool.c:479 app/tools/gimplevelstool.c:415 -#: app/widgets/gimphistogrameditor.c:161 +#: ../app/tools/gimpcurvestool.c:479 ../app/tools/gimplevelstool.c:415 +#: ../app/widgets/gimphistogrameditor.c:161 msgid "Channel:" msgstr "Kanal:" -#: app/tools/gimpcurvestool.c:494 app/tools/gimplevelstool.c:430 -#, fuzzy +#: ../app/tools/gimpcurvestool.c:494 ../app/tools/gimplevelstool.c:430 msgid "R_eset channel" msgstr "N_ulstil kanal" #. Horizontal button box for load / save -#: app/tools/gimpcurvestool.c:596 app/tools/gimplevelstool.c:640 +#: ../app/tools/gimpcurvestool.c:596 ../app/tools/gimplevelstool.c:640 msgid "All Channels" msgstr "Alle kanaler" #. The radio box for selecting the curve type -#: app/tools/gimpcurvestool.c:614 +#: ../app/tools/gimpcurvestool.c:614 msgid "Curve Type" msgstr "Kurvetype" -#: app/tools/gimpdodgeburntool.c:71 +#: ../app/tools/gimpdodgeburntool.c:71 msgid "Dodge or Burn strokes" msgstr "Blegning-/sværtningsstrøg" -#: app/tools/gimpdodgeburntool.c:72 -#, fuzzy +#: ../app/tools/gimpdodgeburntool.c:72 msgid "Dod_geBurn" msgstr "Blegning/sværtning" #. the type (dodge or burn) -#: app/tools/gimpdodgeburntool.c:192 +#: ../app/tools/gimpdodgeburntool.c:192 #, c-format msgid "Type %s" msgstr "Type %s" # her drejer det sig om hvilke farvetoner der er berørt -#: app/tools/gimpdodgeburntool.c:204 +#: ../app/tools/gimpdodgeburntool.c:204 msgid "Mode" msgstr "Påvirkede toner" -#: app/tools/gimpdodgeburntool.c:216 +#: ../app/tools/gimpdodgeburntool.c:216 msgid "Exposure:" msgstr "Virkningsgrad:" -#: app/tools/gimpeditselectiontool.c:262 -#: app/tools/gimpeditselectiontool.c:1203 -#, fuzzy +#: ../app/tools/gimpeditselectiontool.c:262 +#: ../app/tools/gimpeditselectiontool.c:1203 msgid "Move Floating Selection" -msgstr "Flydende markering" +msgstr "Flyt flydende markering" -#: app/tools/gimpeditselectiontool.c:464 app/tools/gimpeditselectiontool.c:732 +#: ../app/tools/gimpeditselectiontool.c:464 +#: ../app/tools/gimpeditselectiontool.c:732 msgid "Move: " msgstr "Flyt: " -#: app/tools/gimpellipseselecttool.c:72 +#: ../app/tools/gimpellipseselecttool.c:72 msgid "Select elliptical regions" msgstr "Markér elliptiske områder" -#: app/tools/gimpellipseselecttool.c:73 -#, fuzzy +#: ../app/tools/gimpellipseselecttool.c:73 msgid "_Ellipse Select" -msgstr "Ellipsemarkering" +msgstr "_Ellipsemarkering" # 'gennemsigtighed' er svært at putte ind, og sådan set også overflødigt -#: app/tools/gimperasertool.c:71 +#: ../app/tools/gimperasertool.c:71 msgid "Erase to background or transparency" msgstr "Slet så baggrunden dukker op" -#: app/tools/gimperasertool.c:72 -#, fuzzy +#: ../app/tools/gimperasertool.c:72 msgid "_Eraser" -msgstr "Viskelæder" +msgstr "_Viskelæder" #. the anti_erase toggle -#: app/tools/gimperasertool.c:185 -#, fuzzy, c-format +#: ../app/tools/gimperasertool.c:185 +#, c-format msgid "Anti erase %s" msgstr "Antislet %s" -#: app/tools/gimpflipoptions.c:161 app/tools/gimpmoveoptions.c:211 -#: app/tools/gimptransformoptions.c:323 +#: ../app/tools/gimpflipoptions.c:161 ../app/tools/gimpmoveoptions.c:211 +#: ../app/tools/gimptransformoptions.c:323 msgid "Affect:" msgstr "Påvirk:" #. tool toggle -#: app/tools/gimpflipoptions.c:167 +#: ../app/tools/gimpflipoptions.c:167 #, c-format msgid "Flip Type %s" msgstr "Vendingstype %s" -#: app/tools/gimpfliptool.c:83 +#: ../app/tools/gimpfliptool.c:83 msgid "Flip the layer or selection" msgstr "Vend lag og markeringer" -#: app/tools/gimpfliptool.c:84 -#, fuzzy +#: ../app/tools/gimpfliptool.c:84 msgid "_Flip" -msgstr "Vend" +msgstr "V_end" -#: app/tools/gimpfreeselecttool.c:97 +#: ../app/tools/gimpfreeselecttool.c:97 msgid "Select hand-drawn regions" msgstr "Markér håndtegnede områder" -#: app/tools/gimpfreeselecttool.c:98 -#, fuzzy +#: ../app/tools/gimpfreeselecttool.c:98 msgid "_Free Select" -msgstr "Fri markering" +msgstr "_Fri markering" -#: app/tools/gimpfuzzyselecttool.c:98 +#: ../app/tools/gimpfuzzyselecttool.c:98 msgid "Select contiguous regions" msgstr "Markér sammenhængende områder" -#: app/tools/gimpfuzzyselecttool.c:99 -#, fuzzy +#: ../app/tools/gimpfuzzyselecttool.c:99 msgid "Fu_zzy Select" -msgstr "Udflydende markering" +msgstr "_Udflydende markering" -#: app/tools/gimphistogramoptions.c:151 +#: ../app/tools/gimphistogramoptions.c:151 msgid "Histogram Scale" msgstr "Histogramskala" -#: app/tools/gimphuesaturationtool.c:111 +#: ../app/tools/gimphuesaturationtool.c:111 msgid "Adjust hue and saturation" msgstr "Justér farvetone og mætning" -#: app/tools/gimphuesaturationtool.c:112 -#, fuzzy +#: ../app/tools/gimphuesaturationtool.c:112 msgid "Hue-_Saturation..." -msgstr "Farvetone/mætning" +msgstr "Farvetone/_mætning..." -#: app/tools/gimphuesaturationtool.c:166 -#, fuzzy +#: ../app/tools/gimphuesaturationtool.c:166 msgid "Adjust hue / lightness / saturation" msgstr "Justér farvetone/lys/mætning" -#: app/tools/gimphuesaturationtool.c:210 +#: ../app/tools/gimphuesaturationtool.c:210 msgid "Hue-Saturation operates only on RGB color layers." msgstr "Farvetone/mætning virker kun på lag med RGB-farver." -#: app/tools/gimphuesaturationtool.c:263 -#, fuzzy +#: ../app/tools/gimphuesaturationtool.c:263 msgid "M_aster" msgstr "_Original" -#: app/tools/gimphuesaturationtool.c:264 +#: ../app/tools/gimphuesaturationtool.c:264 msgid "_R" msgstr "_R" -#: app/tools/gimphuesaturationtool.c:265 +#: ../app/tools/gimphuesaturationtool.c:265 msgid "_Y" msgstr "_Y" -#: app/tools/gimphuesaturationtool.c:266 +#: ../app/tools/gimphuesaturationtool.c:266 msgid "_G" msgstr "_G" -#: app/tools/gimphuesaturationtool.c:267 +#: ../app/tools/gimphuesaturationtool.c:267 msgid "_C" msgstr "_C" -#: app/tools/gimphuesaturationtool.c:268 +#: ../app/tools/gimphuesaturationtool.c:268 msgid "_B" msgstr "_B" -#: app/tools/gimphuesaturationtool.c:269 +#: ../app/tools/gimphuesaturationtool.c:269 msgid "_M" msgstr "_M" -#: app/tools/gimphuesaturationtool.c:272 +#: ../app/tools/gimphuesaturationtool.c:272 msgid "Select Primary Color to Modify" msgstr "Vælg primær farve at ændre" -#: app/tools/gimphuesaturationtool.c:300 +#: ../app/tools/gimphuesaturationtool.c:300 msgid "Modify all colors" msgstr "Ændr alle farver" -#: app/tools/gimphuesaturationtool.c:343 +#: ../app/tools/gimphuesaturationtool.c:343 msgid "Modify Selected Color" msgstr "Ændr valgt farve" -#: app/tools/gimphuesaturationtool.c:405 -#, fuzzy +#: ../app/tools/gimphuesaturationtool.c:405 msgid "R_eset color" msgstr "N_ulstil farve" -#: app/tools/gimpimagemaptool.c:259 app/widgets/gimpthumbbox.c:354 +#: ../app/tools/gimpimagemaptool.c:259 ../app/widgets/gimpthumbbox.c:354 msgid "_Preview" msgstr "_Miniature" -#: app/tools/gimpimagemaptool.c:292 -#, fuzzy +#: ../app/tools/gimpimagemaptool.c:292 msgid "Quick Load" -msgstr "Hurtigmaske" +msgstr "Hent hurtigt" -#: app/tools/gimpimagemaptool.c:322 -#, fuzzy +#: ../app/tools/gimpimagemaptool.c:322 msgid "Quick Save" -msgstr "Hurtigmaske" +msgstr "Gem hurtigt" #. adjust sliders -#: app/tools/gimpinkoptions-gui.c:59 +#: ../app/tools/gimpinkoptions-gui.c:59 msgid "Adjustment" msgstr "Justering" -#: app/tools/gimpinkoptions-gui.c:71 app/tools/gimpinkoptions-gui.c:96 -#: app/tools/gimptextoptions.c:426 +#: ../app/tools/gimpinkoptions-gui.c:71 ../app/tools/gimpinkoptions-gui.c:96 +#: ../app/tools/gimptextoptions.c:426 msgid "Size:" msgstr "Størrelse:" -#: app/tools/gimpinkoptions-gui.c:79 app/tools/gimpmeasuretool.c:891 -#: app/tools/gimprotatetool.c:169 app/widgets/gimpbrusheditor.c:207 +#: ../app/tools/gimpinkoptions-gui.c:79 ../app/tools/gimpmeasuretool.c:891 +#: ../app/tools/gimprotatetool.c:169 ../app/widgets/gimpbrusheditor.c:207 msgid "Angle:" msgstr "Vinkel:" #. sens sliders -#: app/tools/gimpinkoptions-gui.c:84 +#: ../app/tools/gimpinkoptions-gui.c:84 msgid "Sensitivity" msgstr "Følsomhed:" -#: app/tools/gimpinkoptions-gui.c:103 +#: ../app/tools/gimpinkoptions-gui.c:103 msgid "Tilt:" msgstr "Vinkling:" -#: app/tools/gimpinkoptions-gui.c:110 +#: ../app/tools/gimpinkoptions-gui.c:110 msgid "Speed:" msgstr "Hastighed:" -#: app/tools/gimpinkoptions-gui.c:121 +#: ../app/tools/gimpinkoptions-gui.c:121 msgid "Type" msgstr "Type" #. Blob shape widget -#: app/tools/gimpinkoptions-gui.c:151 +#: ../app/tools/gimpinkoptions-gui.c:151 msgid "Shape" msgstr "Form" -#: app/tools/gimpinktool.c:63 +#: ../app/tools/gimpinktool.c:63 msgid "Draw in ink" msgstr "Tegn med blæk" -#: app/tools/gimpinktool.c:64 -#, fuzzy +#: ../app/tools/gimpinktool.c:64 msgid "In_k" -msgstr "Blækpen" +msgstr "_Blækpen" -#: app/tools/gimpiscissorstool.c:277 +#: ../app/tools/gimpiscissorstool.c:277 msgid "Scissors" msgstr "Saks" -#: app/tools/gimpiscissorstool.c:278 +#: ../app/tools/gimpiscissorstool.c:278 msgid "Select shapes from image" msgstr "Markér former i billedet" -#: app/tools/gimpiscissorstool.c:279 -#, fuzzy +#: ../app/tools/gimpiscissorstool.c:279 msgid "Intelligent _Scissors" -msgstr "Intelligent saks" +msgstr "Intelligent _saks" -#: app/tools/gimplevelstool.c:161 +#: ../app/tools/gimplevelstool.c:161 msgid "Adjust color levels" msgstr "Justér farveniveauer" -#: app/tools/gimplevelstool.c:162 -#, fuzzy +#: ../app/tools/gimplevelstool.c:162 msgid "_Levels..." -msgstr "Niveauer" +msgstr "_Niveauer..." -#: app/tools/gimplevelstool.c:220 +#: ../app/tools/gimplevelstool.c:220 msgid "Adjust Color Levels" msgstr "Justér farveniveauer" -#: app/tools/gimplevelstool.c:222 +#: ../app/tools/gimplevelstool.c:222 msgid "Load Levels" msgstr "Hent niveauer" -#: app/tools/gimplevelstool.c:223 -#, fuzzy +#: ../app/tools/gimplevelstool.c:223 msgid "Load levels settings from file" -msgstr "Læs niveauindstillinger fra fil" +msgstr "Indlæs niveauindstillinger fra fil" -#: app/tools/gimplevelstool.c:224 +#: ../app/tools/gimplevelstool.c:224 msgid "Save Levels" msgstr "Gem niveauer" -#: app/tools/gimplevelstool.c:225 +#: ../app/tools/gimplevelstool.c:225 msgid "Save levels settings to file" msgstr "Gem niveauindstillinger i fil" -#: app/tools/gimplevelstool.c:285 +#: ../app/tools/gimplevelstool.c:285 msgid "Levels for indexed layers cannot be adjusted." msgstr "Niveauer for indekserede lag kan ikke justeres." -#: app/tools/gimplevelstool.c:355 -#, fuzzy +#: ../app/tools/gimplevelstool.c:355 msgid "Pick black point" msgstr "Vælg sort punkt" -#: app/tools/gimplevelstool.c:359 -#, fuzzy +#: ../app/tools/gimplevelstool.c:359 msgid "Pick gray point" msgstr "Vælg gråt punkt" -#: app/tools/gimplevelstool.c:363 -#, fuzzy +#: ../app/tools/gimplevelstool.c:363 msgid "Pick white point" msgstr "Vælg hvidt punkt" #. Input levels frame -#: app/tools/gimplevelstool.c:445 +#: ../app/tools/gimplevelstool.c:445 msgid "Input Levels" msgstr "Inddataniveauer" -#: app/tools/gimplevelstool.c:539 +#: ../app/tools/gimplevelstool.c:539 msgid "Gamma" msgstr "Gamma" #. Output levels frame -#: app/tools/gimplevelstool.c:569 +#: ../app/tools/gimplevelstool.c:569 msgid "Output Levels" msgstr "Uddataniveauer" -#: app/tools/gimplevelstool.c:667 +#: ../app/tools/gimplevelstool.c:667 msgid "Adjust levels automatically" msgstr "Justér niveau automatisk" -#: app/tools/gimpmagnifyoptions.c:203 -#, fuzzy +#: ../app/tools/gimpmagnifyoptions.c:203 msgid "Auto-resize window" -msgstr "Tilpas vinduesstørrelse ved _zoom" +msgstr "Tilpas vinduesstørrelse automatisk" -#: app/tools/gimpmagnifytool.c:95 +#: ../app/tools/gimpmagnifytool.c:95 msgid "Magnify" msgstr "Forstør" -#: app/tools/gimpmagnifytool.c:96 +#: ../app/tools/gimpmagnifytool.c:96 msgid "Zoom in & out" msgstr "Zoom ind eller ud" -#: app/tools/gimpmagnifytool.c:97 -#, fuzzy +#: ../app/tools/gimpmagnifytool.c:97 msgid "M_agnify" -msgstr "Forstør" +msgstr "Forst_ør" -#: app/tools/gimpmeasureoptions.c:157 -#, fuzzy +#: ../app/tools/gimpmeasureoptions.c:157 msgid "Use info window" msgstr "Benyt infovindue" -#: app/tools/gimpmeasuretool.c:118 +#: ../app/tools/gimpmeasuretool.c:118 msgid "Measure" msgstr "Opmål" -#: app/tools/gimpmeasuretool.c:119 +#: ../app/tools/gimpmeasuretool.c:119 msgid "Measure distances and angles" msgstr "Mål afstande og vinkler" -#: app/tools/gimpmeasuretool.c:120 -#, fuzzy +#: ../app/tools/gimpmeasuretool.c:120 msgid "_Measure" -msgstr "Opmål" +msgstr "O_pmål" -#: app/tools/gimpmeasuretool.c:264 +#: ../app/tools/gimpmeasuretool.c:264 msgid "Add Guides" msgstr "Tilføj hjælpelinjer" #. tool->gdisp->shell -#: app/tools/gimpmeasuretool.c:847 +#: ../app/tools/gimpmeasuretool.c:847 msgid "Measure Distances and Angles" msgstr "Mål afstande og vinkler" -#: app/tools/gimpmeasuretool.c:865 +#: ../app/tools/gimpmeasuretool.c:865 msgid "Distance:" msgstr "Afstand:" -#: app/tools/gimpmoveoptions.c:171 -#, fuzzy +#: ../app/tools/gimpmoveoptions.c:171 msgid "Pick a layer or guide" -msgstr "Vælg et lag eller en hjælpelinje der skal flyttes" +msgstr "Vælg et lag eller en hjælpelinje" -#: app/tools/gimpmoveoptions.c:172 -#, fuzzy +#: ../app/tools/gimpmoveoptions.c:172 msgid "Move the current layer" msgstr "Flyt det aktuelle lag" -# til undo-info -#: app/tools/gimpmoveoptions.c:176 -#, fuzzy +#: ../app/tools/gimpmoveoptions.c:176 msgid "Move selection" -msgstr "Flytning af markering" +msgstr "Flyt markering" -#: app/tools/gimpmoveoptions.c:180 -#, fuzzy +#: ../app/tools/gimpmoveoptions.c:180 msgid "Pick a path" -msgstr "Vælg et lag der skal flyttes" +msgstr "Vælg en bane" -#: app/tools/gimpmoveoptions.c:181 -#, fuzzy +#: ../app/tools/gimpmoveoptions.c:181 msgid "Move the current path" -msgstr "Flyt det aktuelle lag" +msgstr "Flyt den aktuelle bane" -#: app/tools/gimpmovetool.c:117 +#: ../app/tools/gimpmovetool.c:117 msgid "Move layers & selections" msgstr "Flyt lag og markeringer" -#: app/tools/gimpmovetool.c:118 -#, fuzzy +#: ../app/tools/gimpmovetool.c:118 msgid "_Move" -msgstr "Flyt" +msgstr "F_lyt" -# til undo-info -#: app/tools/gimpmovetool.c:298 app/tools/gimpmovetool.c:576 -#, fuzzy +#: ../app/tools/gimpmovetool.c:298 ../app/tools/gimpmovetool.c:576 msgid "Move Guide: " -msgstr "Flytning af hjælpelinje" +msgstr "Flyt hjælpelinje: " -#: app/tools/gimpmovetool.c:570 -#, fuzzy +#: ../app/tools/gimpmovetool.c:570 msgid "Cancel Guide" -msgstr "Annullér" +msgstr "Annullér hjælpelinje" -#: app/tools/gimpmovetool.c:576 -#, fuzzy +#: ../app/tools/gimpmovetool.c:576 msgid "Add Guide: " -msgstr "Tilføj hjælpelinjer" +msgstr "Tilføj hjælpelinje: " -#: app/tools/gimppaintbrushtool.c:52 +#: ../app/tools/gimppaintbrushtool.c:52 msgid "Paint fuzzy brush strokes" msgstr "Mal med udflydende penselstrøg" -#: app/tools/gimppaintbrushtool.c:53 -#, fuzzy +#: ../app/tools/gimppaintbrushtool.c:53 msgid "_Paintbrush" -msgstr "Malerpensel" +msgstr "M_alerpensel" -#: app/tools/gimppaintoptions-gui.c:103 app/widgets/gimpbrushselect.c:201 -#: app/widgets/gimplayertreeview.c:332 +#: ../app/tools/gimppaintoptions-gui.c:103 +#: ../app/widgets/gimpbrushselect.c:201 ../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:325 +#: ../app/tools/gimppaintoptions-gui.c:108 +#: ../app/tools/gimpselectionoptions.c:374 +#: ../app/widgets/gimpbrushselect.c:218 ../app/widgets/gimplayertreeview.c:325 msgid "Mode:" msgstr "Tilstand:" -#: app/tools/gimppaintoptions-gui.c:126 +#: ../app/tools/gimppaintoptions-gui.c:126 msgid "Brush:" msgstr "Pensel:" -#: app/tools/gimppaintoptions-gui.c:135 app/tools/gimppaintoptions-gui.c:394 +#: ../app/tools/gimppaintoptions-gui.c:135 +#: ../app/tools/gimppaintoptions-gui.c:394 msgid "Gradient:" msgstr "Overgang:" -#: app/tools/gimppaintoptions-gui.c:177 -#, fuzzy +#: ../app/tools/gimppaintoptions-gui.c:177 msgid "Hard edge" msgstr "Hård kant" -#: app/tools/gimppaintoptions-gui.c:216 -#, fuzzy +#: ../app/tools/gimppaintoptions-gui.c:216 msgid "Pressure sensitivity" msgstr "Trykfølsomhed" -#: app/tools/gimppaintoptions-gui.c:236 +#: ../app/tools/gimppaintoptions-gui.c:236 msgid "Opacity" msgstr "Ugennemsigtighed" -#: app/tools/gimppaintoptions-gui.c:250 +#: ../app/tools/gimppaintoptions-gui.c:250 msgid "Hardness" msgstr "Hårdhed" -#: app/tools/gimppaintoptions-gui.c:261 +#: ../app/tools/gimppaintoptions-gui.c:261 msgid "Rate" msgstr "Hastighed" -#: app/tools/gimppaintoptions-gui.c:274 +#: ../app/tools/gimppaintoptions-gui.c:274 msgid "Size" msgstr "Størrelse" -#: app/tools/gimppaintoptions-gui.c:313 -#, fuzzy +#: ../app/tools/gimppaintoptions-gui.c:313 msgid "Fade out" msgstr "Falmen" -#: app/tools/gimppaintoptions-gui.c:333 app/tools/gimppaintoptions-gui.c:403 +#: ../app/tools/gimppaintoptions-gui.c:333 +#: ../app/tools/gimppaintoptions-gui.c:403 msgid "Length:" msgstr "Længde:" -#: app/tools/gimppaintoptions-gui.c:367 -#, fuzzy +#: ../app/tools/gimppaintoptions-gui.c:367 msgid "Use color from gradient" -msgstr "Benyt farver fra farveovergang" +msgstr "Benyt farve fra farveovergang" # dækker sådan ca. -#: app/tools/gimppenciltool.c:52 +#: ../app/tools/gimppenciltool.c:52 msgid "Paint hard edged pixels" msgstr "Tegn linjer med skarp kant" -#: app/tools/gimppenciltool.c:53 -#, fuzzy +#: ../app/tools/gimppenciltool.c:53 msgid "Pe_ncil" -msgstr "Blyant" +msgstr "_Blyant" -#: app/tools/gimpperspectivetool.c:81 +#: ../app/tools/gimpperspectivetool.c:81 msgid "Perspective" msgstr "Perspektiv" -#: app/tools/gimpperspectivetool.c:82 +#: ../app/tools/gimpperspectivetool.c:82 msgid "Change perspective of the layer or selection" msgstr "Vend perspektivet på laget eller markeringen" -#: app/tools/gimpperspectivetool.c:83 -#, fuzzy +#: ../app/tools/gimpperspectivetool.c:83 msgid "_Perspective" -msgstr "Perspektiv" +msgstr "_Perspektiv" # en komplet tekst bliver for lang og er overflødig -#: app/tools/gimpperspectivetool.c:140 +#: ../app/tools/gimpperspectivetool.c:140 msgid "Perspective Transform Information" msgstr "Perspektivtransformering" -#: app/tools/gimpperspectivetool.c:149 +#: ../app/tools/gimpperspectivetool.c:149 msgid "Matrix:" msgstr "Matrix:" -#: app/tools/gimpposterizetool.c:79 +#: ../app/tools/gimpposterizetool.c:79 msgid "Reduce image to a fixed number of colors" msgstr "Reducér billede til et fast antal farver" -#: app/tools/gimpposterizetool.c:80 +#: ../app/tools/gimpposterizetool.c:80 msgid "_Posterize..." msgstr "_Posterisér" -#: app/tools/gimpposterizetool.c:131 +#: ../app/tools/gimpposterizetool.c:131 msgid "Posterize (Reduce Number of Colors)" msgstr "Reducér farveantallet" -#: app/tools/gimpposterizetool.c:173 +#: ../app/tools/gimpposterizetool.c:173 msgid "Posterize does not operate on indexed layers." msgstr "Posterisering virker ikke på indekserede lag." -#: app/tools/gimpposterizetool.c:223 +#: ../app/tools/gimpposterizetool.c:223 msgid "Posterize _levels:" msgstr "Posteriserings_niveauer:" -#: app/tools/gimprectselecttool.c:97 +#: ../app/tools/gimprectselecttool.c:97 msgid "Select rectangular regions" msgstr "Markér rektangulære områder" -#: app/tools/gimprectselecttool.c:98 +#: ../app/tools/gimprectselecttool.c:98 msgid "_Rect Select" msgstr "_Rektangulær markering" -#: app/tools/gimprectselecttool.c:224 +#: ../app/tools/gimprectselecttool.c:224 msgid "Selection: ADD" msgstr "Markering: LÆG TIL" -#: app/tools/gimprectselecttool.c:227 +#: ../app/tools/gimprectselecttool.c:227 msgid "Selection: SUBTRACT" msgstr "Markering: TRÆK FRA" -#: app/tools/gimprectselecttool.c:230 +#: ../app/tools/gimprectselecttool.c:230 msgid "Selection: INTERSECT" msgstr "Markering: FÆLLESSNIT" -#: app/tools/gimprectselecttool.c:233 +#: ../app/tools/gimprectselecttool.c:233 msgid "Selection: REPLACE" msgstr "Markering: ERSTAT" -#: app/tools/gimprectselecttool.c:468 +#: ../app/tools/gimprectselecttool.c:468 msgid "Selection: " msgstr "Markering: " -#: app/tools/gimprotatetool.c:98 +#: ../app/tools/gimprotatetool.c:98 msgid "Rotate the layer or selection" msgstr "Rotér laget eller markeringen" -#: app/tools/gimprotatetool.c:99 +#: ../app/tools/gimprotatetool.c:99 msgid "_Rotate" msgstr "_Rotér" # en komplet tekst bliver for lang og er overflødig -#: app/tools/gimprotatetool.c:158 +#: ../app/tools/gimprotatetool.c:158 msgid "Rotation Information" msgstr "Rotation" -#: app/tools/gimprotatetool.c:185 +#: ../app/tools/gimprotatetool.c:185 msgid "Center X:" msgstr "Centrum x:" -#: app/tools/gimprotatetool.c:190 -#, fuzzy +#: ../app/tools/gimprotatetool.c:190 msgid "Center Y:" -msgstr "Centrum x:" +msgstr "Centrum y:" -#: app/tools/gimpscaletool.c:91 +#: ../app/tools/gimpscaletool.c:91 msgid "Scale" msgstr "Skalér" -#: app/tools/gimpscaletool.c:92 +#: ../app/tools/gimpscaletool.c:92 msgid "Scale the layer or selection" msgstr "Skalér laget eller markeringen" -#: app/tools/gimpscaletool.c:93 +#: ../app/tools/gimpscaletool.c:93 msgid "_Scale" msgstr "_Skalér" # en komplet tekst bliver for lang og er overflødig -#: app/tools/gimpscaletool.c:152 +#: ../app/tools/gimpscaletool.c:152 msgid "Scaling information" msgstr "Skalering" -#: app/tools/gimpscaletool.c:163 +#: ../app/tools/gimpscaletool.c:163 msgid "Original Width:" msgstr "Oprindelig bredde:" -#: app/tools/gimpscaletool.c:170 +#: ../app/tools/gimpscaletool.c:170 msgid "Current width:" msgstr "Nuværende bredde:" -#: app/tools/gimpscaletool.c:174 +#: ../app/tools/gimpscaletool.c:174 msgid "Current height:" msgstr "Nuværende højde:" -#: app/tools/gimpscaletool.c:189 +#: ../app/tools/gimpscaletool.c:189 msgid "Scale ratio X:" msgstr "Skaleringsforhold x:" -#: app/tools/gimpscaletool.c:192 +#: ../app/tools/gimpscaletool.c:192 msgid "Scale ratio Y:" msgstr "Skaleringsforhold y:" # vist nok et kendt ord fra tv-verdenen -#: app/tools/gimpscaletool.c:196 +#: ../app/tools/gimpscaletool.c:196 msgid "Aspect Ratio:" msgstr "Formatforhold:" -#: app/tools/gimpselectionoptions.c:136 +#: ../app/tools/gimpselectionoptions.c:136 msgid "Smooth edges" msgstr "Blødgør kanter" -#: app/tools/gimpselectionoptions.c:150 +#: ../app/tools/gimpselectionoptions.c:150 msgid "Allow completely transparent regions to be selected" msgstr "Tillad fuldstændigt gennemsigtige områder at blive valgt" -#: app/tools/gimpselectionoptions.c:156 +#: ../app/tools/gimpselectionoptions.c:156 msgid "Base selection on all visible layers" msgstr "Basér markering på alle synlige lag" -#: app/tools/gimpselectionoptions.c:171 +#: ../app/tools/gimpselectionoptions.c:171 msgid "Use all visible layers when shrinking the selection" msgstr "Brug alle synlige lag ved formindskelse af markeringen" -#: app/tools/gimpselectionoptions.c:382 app/tools/gimptextoptions.c:447 +#: ../app/tools/gimpselectionoptions.c:382 ../app/tools/gimptextoptions.c:447 msgid "Antialiasing" msgstr "Udjævning" -#: app/tools/gimpselectionoptions.c:399 +#: ../app/tools/gimpselectionoptions.c:399 msgid "Feather edges" msgstr "Udvisk kanter" -#: app/tools/gimpselectionoptions.c:425 +#: ../app/tools/gimpselectionoptions.c:425 msgid "Show interactive boundary" msgstr "Vis interaktiv grænse" -#: app/tools/gimpselectionoptions.c:448 +#: ../app/tools/gimpselectionoptions.c:448 msgid "Select transparent areas" msgstr "Markér gennemsigtige områder" -#: app/tools/gimpselectionoptions.c:488 +#: ../app/tools/gimpselectionoptions.c:488 msgid "Auto shrink selection" msgstr "Formindsk markering automatisk" -#: app/tools/gimpsheartool.c:98 +#: ../app/tools/gimpsheartool.c:98 msgid "Shear" msgstr "Trapezér" -#: app/tools/gimpsheartool.c:99 +#: ../app/tools/gimpsheartool.c:99 msgid "Shear the layer or selection" msgstr "Trapezér laget eller markeringen" -#: app/tools/gimpsheartool.c:100 +#: ../app/tools/gimpsheartool.c:100 msgid "S_hear" msgstr "_Trapezér" # 'information' er overflødigt og for langt -#: app/tools/gimpsheartool.c:157 +#: ../app/tools/gimpsheartool.c:157 msgid "Shearing Information" msgstr "Trapezering" # trapezering- er underforstået pga. vinduestitel -#: app/tools/gimpsheartool.c:167 +#: ../app/tools/gimpsheartool.c:167 msgid "Shear magnitude X:" msgstr "Størrelsesorden x:" # trapezering- er underforstået pga. vinduestitel -#: app/tools/gimpsheartool.c:174 +#: ../app/tools/gimpsheartool.c:174 msgid "Shear magnitude Y:" msgstr "Størrelsesorden y:" -#: app/tools/gimpsmudgetool.c:55 +#: ../app/tools/gimpsmudgetool.c:55 msgid "Smudge image" msgstr "Udtvær billede" -#: app/tools/gimpsmudgetool.c:56 +#: ../app/tools/gimpsmudgetool.c:56 msgid "_Smudge" msgstr "_Udtvær" -#: app/tools/gimptextoptions.c:146 +#: ../app/tools/gimptextoptions.c:146 msgid "" "Hinting alters the font outline to produce a crisp bitmap at small sizes" msgstr "" "Anvendelse af hint ændrer skriftformerne for at give et tydeligt billede ved " "små størrelser" -#: app/tools/gimptextoptions.c:153 +#: ../app/tools/gimptextoptions.c:153 msgid "" "If available, hints from the font are used but you may prefer to always use " "the automatic hinter" @@ -9389,43 +9331,43 @@ "Hvis tilgængelige bliver hint fra skrifttypen benyttet, men du kan " "foretrække altid at benytte den automatiske beregning af hint" -#: app/tools/gimptextoptions.c:178 +#: ../app/tools/gimptextoptions.c:178 msgid "Indentation of the first line" msgstr "Indrykning af den første linje" -#: app/tools/gimptextoptions.c:183 +#: ../app/tools/gimptextoptions.c:183 msgid "Modify line spacing" msgstr "Ændr linjeafstand" -#: app/tools/gimptextoptions.c:419 +#: ../app/tools/gimptextoptions.c:419 msgid "Font:" msgstr "Skrifttype:" -#: app/tools/gimptextoptions.c:431 +#: ../app/tools/gimptextoptions.c:431 msgid "Hinting" msgstr "Hint" -#: app/tools/gimptextoptions.c:438 +#: ../app/tools/gimptextoptions.c:438 msgid "Force auto-hinter" msgstr "Tving automatiske hint" -#: app/tools/gimptextoptions.c:453 +#: ../app/tools/gimptextoptions.c:453 msgid "Text Color" msgstr "Tekstfarve" -#: app/tools/gimptextoptions.c:458 +#: ../app/tools/gimptextoptions.c:458 msgid "Color:" msgstr "Farve:" -#: app/tools/gimptextoptions.c:463 +#: ../app/tools/gimptextoptions.c:463 msgid "Justify:" msgstr "Justering:" -#: app/tools/gimptextoptions.c:469 +#: ../app/tools/gimptextoptions.c:469 msgid "Indent:" msgstr "Indrykning:" -#: app/tools/gimptextoptions.c:475 +#: ../app/tools/gimptextoptions.c:475 msgid "" "Line\n" "spacing:" @@ -9433,27 +9375,27 @@ "Linje-\n" "mellemrum:" -#: app/tools/gimptextoptions.c:478 +#: ../app/tools/gimptextoptions.c:478 msgid "Create path from text" msgstr "Opret bane fra tekst" -#: app/tools/gimptexttool.c:143 +#: ../app/tools/gimptexttool.c:145 msgid "Add text to the image" msgstr "Tilføj tekst til billedet" -#: app/tools/gimptexttool.c:144 +#: ../app/tools/gimptexttool.c:146 msgid "Te_xt" msgstr "_Tekst" -#: app/tools/gimptexttool.c:732 +#: ../app/tools/gimptexttool.c:744 msgid "GIMP Text Editor" msgstr "Tekstredigering" -#: app/tools/gimptexttool.c:842 app/tools/gimptexttool.c:845 +#: ../app/tools/gimptexttool.c:854 ../app/tools/gimptexttool.c:857 msgid "Confirm Text Editing" msgstr "Bekræft tekstredigering" -#: app/tools/gimptexttool.c:866 +#: ../app/tools/gimptexttool.c:878 msgid "" "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 " @@ -9467,86 +9409,86 @@ "\n" "Du kan redigere laget eller oprette et nyt tekstlag fra dets tekstegenskaber." -#: app/tools/gimpthresholdtool.c:93 +#: ../app/tools/gimpthresholdtool.c:93 msgid "Reduce image to two colors using a threshold" msgstr "Reducér billedet til to farver vha. en tærskel" -#: app/tools/gimpthresholdtool.c:94 +#: ../app/tools/gimpthresholdtool.c:94 msgid "_Threshold..." msgstr "_Tærskel..." -#: app/tools/gimpthresholdtool.c:148 +#: ../app/tools/gimpthresholdtool.c:148 msgid "Apply Threshold" msgstr "Anvend tærskel" -#: app/tools/gimpthresholdtool.c:199 +#: ../app/tools/gimpthresholdtool.c:199 msgid "Threshold does not operate on indexed layers." msgstr "Tærskel opererer ikke på indekserede lag." -#: app/tools/gimptransformoptions.c:329 +#: ../app/tools/gimptransformoptions.c:329 msgid "Transform Direction" msgstr "Transformeringsretning" -#: app/tools/gimptransformoptions.c:338 +#: ../app/tools/gimptransformoptions.c:338 msgid "Interpolation:" msgstr "Interpolering:" -#: app/tools/gimptransformoptions.c:348 +#: ../app/tools/gimptransformoptions.c:348 msgid "Supersampling" msgstr "Supersampling" # "clip" bruges her i betydningen beskær #. the clip resulting image toggle button -#: app/tools/gimptransformoptions.c:353 +#: ../app/tools/gimptransformoptions.c:353 msgid "Clip result" msgstr "Beskær resultat" -#: app/tools/gimptransformoptions.c:367 +#: ../app/tools/gimptransformoptions.c:367 msgid "Preview:" msgstr "Eksempel:" #. the constraints frame -#: app/tools/gimptransformoptions.c:413 +#: ../app/tools/gimptransformoptions.c:413 msgid "Constraints" msgstr "Begrænsninger" -#: app/tools/gimptransformoptions.c:425 +#: ../app/tools/gimptransformoptions.c:425 #, c-format msgid "15 degrees %s" msgstr "15 grader %s" -#: app/tools/gimptransformoptions.c:445 +#: ../app/tools/gimptransformoptions.c:445 #, c-format msgid "Keep height %s" msgstr "Behold højde %s" -#: app/tools/gimptransformoptions.c:447 +#: ../app/tools/gimptransformoptions.c:447 #, c-format msgid "Keep width %s" msgstr "Behold bredde %s" -#: app/tools/gimptransformoptions.c:449 +#: ../app/tools/gimptransformoptions.c:449 #, c-format msgid "Keep aspect %s" msgstr "Behold forhold %s" -#: app/tools/gimptransformtool.c:253 +#: ../app/tools/gimptransformtool.c:253 msgid "Transforming..." msgstr "Transformerer..." -#: app/tools/gimpvectoroptions.c:113 +#: ../app/tools/gimpvectoroptions.c:113 msgid "Restrict editing to polygons" msgstr "Begræns redigering til polygoner" -#: app/tools/gimpvectoroptions.c:177 +#: ../app/tools/gimpvectoroptions.c:177 msgid "Edit Mode" msgstr "Redigeringstilstand" -#: app/tools/gimpvectoroptions.c:182 +#: ../app/tools/gimpvectoroptions.c:182 msgid "Polygonal" msgstr "Polygonel" -#: app/tools/gimpvectoroptions.c:186 +#: ../app/tools/gimpvectoroptions.c:186 #, c-format msgid "" "Path to Selection\n" @@ -9559,1011 +9501,1012 @@ "%s Træk fra\n" "%s Kryds med" -#: app/tools/gimpvectoroptions.c:196 +#: ../app/tools/gimpvectoroptions.c:196 msgid "Create selection from path" msgstr "Opret markering fra bane" -#: app/tools/gimpvectoroptions.c:207 +#: ../app/tools/gimpvectoroptions.c:207 msgid "Stroke path" msgstr "Bestryg bane" -#: app/tools/gimpvectortool.c:161 +#: ../app/tools/gimpvectortool.c:161 msgid "Create and edit paths" msgstr "Opret og redigér baner" -#: app/tools/gimpvectortool.c:363 +#: ../app/tools/gimpvectortool.c:363 msgid "Add Stroke" msgstr "Tilføj bestrygning" -#: app/tools/gimpvectortool.c:381 +#: ../app/tools/gimpvectortool.c:381 msgid "Add Anchor" msgstr "Tilføj anker" -#: app/tools/gimpvectortool.c:404 +#: ../app/tools/gimpvectortool.c:404 msgid "Insert Anchor" msgstr "Indsæt anker" -#: app/tools/gimpvectortool.c:433 +#: ../app/tools/gimpvectortool.c:433 msgid "Drag Handle" msgstr "Træk håndtag" -#: app/tools/gimpvectortool.c:462 +#: ../app/tools/gimpvectortool.c:462 msgid "Drag Anchor" msgstr "Træk anker" -#: app/tools/gimpvectortool.c:479 +#: ../app/tools/gimpvectortool.c:479 msgid "Drag Anchors" msgstr "Træk ankre" -#: app/tools/gimpvectortool.c:499 +#: ../app/tools/gimpvectortool.c:499 msgid "Drag Curve" msgstr "Træk kurve" -#: app/tools/gimpvectortool.c:527 +#: ../app/tools/gimpvectortool.c:527 msgid "Connect Strokes" msgstr "Forbind bestrygninger" -#: app/tools/gimpvectortool.c:557 +#: ../app/tools/gimpvectortool.c:557 msgid "Drag Path" msgstr "Træk bane" -#: app/tools/gimpvectortool.c:567 +#: ../app/tools/gimpvectortool.c:567 msgid "Convert Edge" msgstr "Konvertér kant" -#: app/tools/gimpvectortool.c:597 +#: ../app/tools/gimpvectortool.c:597 msgid "Delete Anchor" msgstr "Slet anker" -#: app/tools/gimpvectortool.c:619 +#: ../app/tools/gimpvectortool.c:619 msgid "Delete Segment" msgstr "Slet segment" -#: app/tools/gimpvectortool.c:831 +#: ../app/tools/gimpvectortool.c:831 msgid "Move Anchors" msgstr "Flyt ankre" -#: app/tools/gimpvectortool.c:1196 +#: ../app/tools/gimpvectortool.c:1196 msgid "Click to pick path to edit." msgstr "Klik for at vælge bane der skal redigeres." -#: app/tools/gimpvectortool.c:1199 +#: ../app/tools/gimpvectortool.c:1199 msgid "Click to create a new path." msgstr "Klik for at oprette en ny bane." -#: app/tools/gimpvectortool.c:1202 +#: ../app/tools/gimpvectortool.c:1202 msgid "Click to create a new component of the path." msgstr "Klik for at oprette en ny komponent til banen." -#: app/tools/gimpvectortool.c:1205 +#: ../app/tools/gimpvectortool.c:1205 msgid "Click to create a new anchor. (try SHIFT)" msgstr "Klik for at oprette et nyt anker (prøv skiftetasten)." -#: app/tools/gimpvectortool.c:1208 +#: ../app/tools/gimpvectortool.c:1208 msgid "Click-Drag to move the anchor around." msgstr "Klik-træk for at flytte ankeret." -#: app/tools/gimpvectortool.c:1211 +#: ../app/tools/gimpvectortool.c:1211 msgid "Click-Drag to move the anchors around." msgstr "Klik-træk for at flytte ankrene." -#: app/tools/gimpvectortool.c:1214 +#: ../app/tools/gimpvectortool.c:1214 msgid "Click-Drag to move the handle around. (try SHIFT)" msgstr "Klik-træk for at flytte håndtaget (prøv skiftetasten)." -#: app/tools/gimpvectortool.c:1217 +#: ../app/tools/gimpvectortool.c:1217 msgid "Click-Drag to change the shape of the curve. (SHIFT: symmetrical)" msgstr "Klik-træk for at ændre formen af kurven (skift: symmetrisk)." -#: app/tools/gimpvectortool.c:1221 +#: ../app/tools/gimpvectortool.c:1221 msgid "Click-Drag to move the component around. (try SHIFT)" msgstr "Klik-træk for at flytte komponenten (prøv skiftetasten)." -#: app/tools/gimpvectortool.c:1225 +#: ../app/tools/gimpvectortool.c:1225 msgid "Click-Drag to move the path around." msgstr "Klik-træk for at flytte banen." -#: app/tools/gimpvectortool.c:1228 +#: ../app/tools/gimpvectortool.c:1228 msgid "Click to insert an anchor on the path. (try SHIFT)" msgstr "Klik for at indsætte en ankor på banen (prøv skiftetasten)." -#: app/tools/gimpvectortool.c:1231 +#: ../app/tools/gimpvectortool.c:1231 msgid "Click to delete this anchor." msgstr "Klik for at slette dette anker." -#: app/tools/gimpvectortool.c:1234 +#: ../app/tools/gimpvectortool.c:1234 msgid "Click to connect this anchor with the selected endpoint." msgstr "Klik for at forbinde dette anker med det valgte slutpunkt." -#: app/tools/gimpvectortool.c:1238 +#: ../app/tools/gimpvectortool.c:1238 msgid "Click to open up the path." msgstr "Klik for at åbne banen." -#: app/tools/gimpvectortool.c:1241 +#: ../app/tools/gimpvectortool.c:1241 msgid "Click to make this node angular." msgstr "Klik for at gøre denne knude vinklet." -#: app/tools/gimpvectortool.c:1751 +#: ../app/tools/gimpvectortool.c:1751 msgid "Delete Anchors" msgstr "Slet ankre" -#: app/tools/gimpvectortool.c:1918 +#: ../app/tools/gimpvectortool.c:1918 msgid "There is no active layer or channel to stroke to" msgstr "Der er ikke noget aktivt lag eller en aktiv kanal at bestryge" -#: app/vectors/gimpvectors.c:229 +#: ../app/vectors/gimpvectors.c:229 msgid "Path" msgstr "Bane" -#: app/vectors/gimpvectors.c:230 +#: ../app/vectors/gimpvectors.c:230 msgid "Rename Path" msgstr "Omdøb bane" -#: app/vectors/gimpvectors.c:231 app/vectors/gimpvectors.c:356 +#: ../app/vectors/gimpvectors.c:231 ../app/vectors/gimpvectors.c:356 msgid "Move Path" msgstr "Fjernelse af bane" -#: app/vectors/gimpvectors.c:232 +#: ../app/vectors/gimpvectors.c:232 msgid "Scale Path" msgstr "Skalér bane" -#: app/vectors/gimpvectors.c:233 +#: ../app/vectors/gimpvectors.c:233 msgid "Resize Path" msgstr "Ændr størrelse på bane" -#: app/vectors/gimpvectors.c:234 app/vectors/gimpvectors.c:447 +#: ../app/vectors/gimpvectors.c:234 ../app/vectors/gimpvectors.c:447 msgid "Flip Path" msgstr "Vend bane" -#: app/vectors/gimpvectors.c:235 app/vectors/gimpvectors.c:491 +#: ../app/vectors/gimpvectors.c:235 ../app/vectors/gimpvectors.c:491 msgid "Rotate Path" msgstr "Rotér bane" -#: app/vectors/gimpvectors.c:236 app/vectors/gimpvectors.c:522 +#: ../app/vectors/gimpvectors.c:236 ../app/vectors/gimpvectors.c:522 msgid "Transform Path" msgstr "Transformér bane" -#: app/vectors/gimpvectors.c:551 +#: ../app/vectors/gimpvectors.c:551 msgid "Cannot stroke empty path." msgstr "Kan ikke bestryge tom bane." -#: app/vectors/gimpvectors-import.c:287 +#: ../app/vectors/gimpvectors-import.c:287 msgid "Import Paths" msgstr "Importering af baner" -#: app/vectors/gimpvectors-import.c:298 +#: ../app/vectors/gimpvectors-import.c:298 msgid "Imported Path" msgstr "Importeret bane" -#: app/vectors/gimpvectors-import.c:324 +#: ../app/vectors/gimpvectors-import.c:324 #, c-format msgid "No paths found in '%s'" msgstr "Ingen baner fundet i '%s'" -#: app/vectors/gimpvectors-import.c:327 +#: ../app/vectors/gimpvectors-import.c:327 msgid "No paths found in the buffer" msgstr "Ingen baner fundet i mellemlageret" -#: app/vectors/gimpvectors-import.c:337 +#: ../app/vectors/gimpvectors-import.c:337 #, c-format msgid "Failed to import paths from '%s': %s" msgstr "Kunne ikke importere baner fra '%s': %s" -#: app/widgets/gimpactiongroup.c:803 +#: ../app/widgets/gimpactiongroup.c:803 #, c-format msgid "RGBA (%0.3f, %0.3f, %0.3f, %0.3f)" msgstr "RGBA (%0.3f, %0.3f, %0.3f, %0.3f)" -#: app/widgets/gimpactionview.c:354 app/widgets/gimpcontrollereditor.c:374 +#: ../app/widgets/gimpactionview.c:354 +#: ../app/widgets/gimpcontrollereditor.c:374 msgid "Action" msgstr "Handling" -#: app/widgets/gimpactionview.c:383 +#: ../app/widgets/gimpactionview.c:383 msgid "Shortcut" msgstr "Genvej" -#: app/widgets/gimpactionview.c:405 +#: ../app/widgets/gimpactionview.c:405 msgid "Name" msgstr "Navn" -#: app/widgets/gimpactionview.c:545 app/widgets/gimpactionview.c:738 +#: ../app/widgets/gimpactionview.c:545 ../app/widgets/gimpactionview.c:738 msgid "Changing shortcut failed." msgstr "Ændring af genvej mislykkedes." -#: app/widgets/gimpactionview.c:585 +#: ../app/widgets/gimpactionview.c:585 msgid "Conflicting Shortcuts" msgstr "Modstridende genveje" -#: app/widgets/gimpactionview.c:591 +#: ../app/widgets/gimpactionview.c:591 msgid "_Reassign shortcut" msgstr "_Omtildel genvej" -#: app/widgets/gimpactionview.c:602 +#: ../app/widgets/gimpactionview.c:602 #, c-format msgid "Shortcut \"%s\" is already taken by \"%s\" from the \"%s\" group." msgstr "Genvejen \"%s\" er allerede taget af \"%s\" fra gruppen \"%s\"." -#: app/widgets/gimpactionview.c:606 +#: ../app/widgets/gimpactionview.c:606 #, c-format msgid "Reassigning the shortcut will cause it to be removed from \"%s\"." msgstr "Omtildeling af genvejen vil fjerne den fra \"%s\"." -#: app/widgets/gimpactionview.c:673 +#: ../app/widgets/gimpactionview.c:673 msgid "Removing shortcut failed." msgstr "Fjernelse af genvej mislykkedes." -#: app/widgets/gimpactionview.c:678 +#: ../app/widgets/gimpactionview.c:678 msgid "Invalid shortcut." msgstr "Ugyldig genvej." -#: app/widgets/gimpbrusheditor.c:168 +# FIXME: hvad er det? +#: ../app/widgets/gimpbrusheditor.c:168 msgid "Spikes:" -msgstr "" +msgstr "Spigre:" -#: app/widgets/gimpbrusheditor.c:181 +#: ../app/widgets/gimpbrusheditor.c:181 msgid "Hardness:" msgstr "Hårdhed:" -#: app/widgets/gimpbrusheditor.c:220 app/widgets/gimpbrushfactoryview.c:114 +#: ../app/widgets/gimpbrusheditor.c:220 +#: ../app/widgets/gimpbrushfactoryview.c:114 msgid "Spacing:" msgstr "Mellemrum:" -#: app/widgets/gimpbrusheditor.c:223 app/widgets/gimpbrushfactoryview.c:117 +#: ../app/widgets/gimpbrusheditor.c:223 +#: ../app/widgets/gimpbrushfactoryview.c:117 msgid "Percentage of width of brush" msgstr "Procent af penselbredde" -#: app/widgets/gimpbufferview.c:165 app/widgets/gimpbufferview.c:246 -#: app/widgets/gimpcontainergridview.c:206 -#: app/widgets/gimpcontainergridview.c:657 -#: app/widgets/gimphistogrameditor.c:147 app/widgets/gimphistogrameditor.c:359 +#: ../app/widgets/gimpbufferview.c:165 ../app/widgets/gimpbufferview.c:246 +#: ../app/widgets/gimpcontainergridview.c:206 +#: ../app/widgets/gimpcontainergridview.c:657 +#: ../app/widgets/gimphistogrameditor.c:147 +#: ../app/widgets/gimphistogrameditor.c:359 msgid "(None)" msgstr "(ingen)" -#: app/widgets/gimpcellrendereraccel.c:234 -#: app/widgets/gimpcellrendereraccel.c:459 +#: ../app/widgets/gimpcellrendereraccel.c:234 +#: ../app/widgets/gimpcellrendereraccel.c:459 msgid "Type a new accelerator, or press Backspace to clear" -msgstr "" +msgstr "Indtast en ny genvej eller tryk på slet tilbage-tasten for at rydde genvejen" -#: app/widgets/gimpcellrendereraccel.c:462 +#: ../app/widgets/gimpcellrendereraccel.c:462 msgid "Type a new accelerator" -msgstr "" +msgstr "Indtast en ny genvej" -#: app/widgets/gimpchanneltreeview.c:151 +#: ../app/widgets/gimpchanneltreeview.c:151 msgid "Reorder Channel" msgstr "Omordn kanal" -#: app/widgets/gimpchanneltreeview.c:261 +#: ../app/widgets/gimpchanneltreeview.c:261 msgid "Empty Channel" msgstr "Tøm kanal" -#: app/widgets/gimpclipboard.c:283 +#: ../app/widgets/gimpclipboard.c:283 msgid "Clipboard" -msgstr "" +msgstr "Klippebord" -#: app/widgets/gimpcolordialog.c:169 +#: ../app/widgets/gimpcolordialog.c:169 msgid "Add the current color to the color history" msgstr "Tilføj den nuværende farve til farvehistorikken" -#: app/widgets/gimpcolordisplayeditor.c:177 +#: ../app/widgets/gimpcolordisplayeditor.c:177 msgid "Available Filters" msgstr "Tilgængelige filtre" -#: app/widgets/gimpcolordisplayeditor.c:204 +#: ../app/widgets/gimpcolordisplayeditor.c:204 msgid "Add the selected filter to the list of active filters." msgstr "Tilføj det valgte filter til listen over aktive filtre" -#: app/widgets/gimpcolordisplayeditor.c:221 +#: ../app/widgets/gimpcolordisplayeditor.c:221 msgid "Remove the selected filter from the list of active filters." msgstr "Fjern det valgte filter fra listen over aktive filtre" -#: app/widgets/gimpcolordisplayeditor.c:235 +#: ../app/widgets/gimpcolordisplayeditor.c:235 msgid "Move the selected filter up" msgstr "Flyt det valgte filter op" -#: app/widgets/gimpcolordisplayeditor.c:244 +#: ../app/widgets/gimpcolordisplayeditor.c:244 msgid "Move the selected filter down" msgstr "Flyt det valgte filter ned" -#: app/widgets/gimpcolordisplayeditor.c:289 +#: ../app/widgets/gimpcolordisplayeditor.c:289 msgid "Active Filters" msgstr "Aktive filtre" -#: app/widgets/gimpcolordisplayeditor.c:322 +#: ../app/widgets/gimpcolordisplayeditor.c:322 msgid "Reset the selected filter to default values" msgstr "Nulstil det valgte filter til standardværdierne" -#: app/widgets/gimpcolordisplayeditor.c:543 +#: ../app/widgets/gimpcolordisplayeditor.c:543 #, c-format msgid "Configure selected filter: %s" msgstr "Konfigurér det valgte filter: %s" -#: app/widgets/gimpcolordisplayeditor.c:550 +#: ../app/widgets/gimpcolordisplayeditor.c:550 msgid "No filter selected" msgstr "Intet filter valgt" -#: app/widgets/gimpcolordisplayeditor.c:554 +#: ../app/widgets/gimpcolordisplayeditor.c:554 msgid "Configure selected filter" msgstr "Konfigurér det valgte filter" -#: app/widgets/gimpcolorframe.c:240 +#: ../app/widgets/gimpcolorframe.c:240 msgid "Index:" msgstr "Indeks:" -#: app/widgets/gimpcolorframe.c:244 app/widgets/gimpcolorframe.c:265 +#: ../app/widgets/gimpcolorframe.c:244 ../app/widgets/gimpcolorframe.c:265 msgid "Red:" msgstr "Rød:" -#: app/widgets/gimpcolorframe.c:245 app/widgets/gimpcolorframe.c:266 +#: ../app/widgets/gimpcolorframe.c:245 ../app/widgets/gimpcolorframe.c:266 msgid "Green:" msgstr "Grøn:" -#: app/widgets/gimpcolorframe.c:246 app/widgets/gimpcolorframe.c:267 +#: ../app/widgets/gimpcolorframe.c:246 ../app/widgets/gimpcolorframe.c:267 msgid "Blue:" msgstr "Blå:" -#: app/widgets/gimpcolorframe.c:256 app/widgets/gimpcolorframe.c:287 +#: ../app/widgets/gimpcolorframe.c:256 ../app/widgets/gimpcolorframe.c:287 msgid "Value:" msgstr "Værdi:" -#: app/widgets/gimpcolorframe.c:275 +#: ../app/widgets/gimpcolorframe.c:275 msgid "Hex:" msgstr "Hex:" -#: app/widgets/gimpcolorframe.c:285 +#: ../app/widgets/gimpcolorframe.c:285 msgid "Hue:" msgstr "Tone:" -#: app/widgets/gimpcolorframe.c:286 +#: ../app/widgets/gimpcolorframe.c:286 msgid "Sat.:" msgstr "Mæt.:" -#: app/widgets/gimpcolorframe.c:303 +#: ../app/widgets/gimpcolorframe.c:303 msgid "Cyan:" msgstr "Cyan:" -#: app/widgets/gimpcolorframe.c:304 +#: ../app/widgets/gimpcolorframe.c:304 msgid "Magenta:" msgstr "Magenta:" -#: app/widgets/gimpcolorframe.c:305 +#: ../app/widgets/gimpcolorframe.c:305 msgid "Yellow:" msgstr "Gul:" -#: app/widgets/gimpcolorframe.c:306 +#: ../app/widgets/gimpcolorframe.c:306 msgid "Black:" msgstr "Sort:" -#: app/widgets/gimpcolorframe.c:320 +#: ../app/widgets/gimpcolorframe.c:320 msgid "Alpha:" msgstr "Alfa:" -#: app/widgets/gimpcolormapeditor.c:247 +#: ../app/widgets/gimpcolormapeditor.c:247 msgid "Color index:" msgstr "Farveindeks:" -#: app/widgets/gimpcolormapeditor.c:258 +#: ../app/widgets/gimpcolormapeditor.c:258 msgid "HTML notation:" msgstr "HTML-notation:" -#: app/widgets/gimpcontainerpopup.c:502 +#: ../app/widgets/gimpcontainerpopup.c:502 msgid "Smaller Previews" msgstr "Mindre eksempler" -#: app/widgets/gimpcontainerpopup.c:507 +#: ../app/widgets/gimpcontainerpopup.c:507 msgid "Larger Previews" msgstr "Større eksempler" -#: app/widgets/gimpcontrollereditor.c:210 +#: ../app/widgets/gimpcontrollereditor.c:210 msgid "Dump events from this controller" msgstr "Dump hændelser fra denne kontrol" -#: app/widgets/gimpcontrollereditor.c:215 +#: ../app/widgets/gimpcontrollereditor.c:215 msgid "Enable this controller" msgstr "Aktivér denne kontrol" -#: app/widgets/gimpcontrollereditor.c:236 +#: ../app/widgets/gimpcontrollereditor.c:236 msgid "Name:" msgstr "Navn:" -#: app/widgets/gimpcontrollereditor.c:369 +#: ../app/widgets/gimpcontrollereditor.c:369 msgid "Event" msgstr "Hændelse" -#: app/widgets/gimpcontrollereditor.c:550 +#: ../app/widgets/gimpcontrollereditor.c:550 msgid "Select Controller Event Action" msgstr "Vælg kontrolhændelseshandling" -#: app/widgets/gimpcontrollerkeyboard.c:69 +#: ../app/widgets/gimpcontrollerkeyboard.c:69 msgid "Key Up (Shift + Control + Alt)" msgstr "Tast op (Skift + Ctrl + Alt)" -#: app/widgets/gimpcontrollerkeyboard.c:72 +#: ../app/widgets/gimpcontrollerkeyboard.c:72 msgid "Key Up (Control + Alt)" msgstr "Tast op (Ctrl + Alt)" -#: app/widgets/gimpcontrollerkeyboard.c:75 +#: ../app/widgets/gimpcontrollerkeyboard.c:75 msgid "Key Up (Shift + Alt)" msgstr "Tast op (Skift + Alt)" -#: app/widgets/gimpcontrollerkeyboard.c:78 +#: ../app/widgets/gimpcontrollerkeyboard.c:78 msgid "Key Up (Shift + Control)" msgstr "Tast op (Skift + Ctrl)" -#: app/widgets/gimpcontrollerkeyboard.c:81 +#: ../app/widgets/gimpcontrollerkeyboard.c:81 msgid "Key Up (Alt)" msgstr "Tast op (Alt)" -#: app/widgets/gimpcontrollerkeyboard.c:84 +#: ../app/widgets/gimpcontrollerkeyboard.c:84 msgid "Key Up (Control)" msgstr "Tast op (Ctrl)" -#: app/widgets/gimpcontrollerkeyboard.c:87 +#: ../app/widgets/gimpcontrollerkeyboard.c:87 msgid "Key Up (Shift)" msgstr "Tast op (Skift)" -#: app/widgets/gimpcontrollerkeyboard.c:90 +#: ../app/widgets/gimpcontrollerkeyboard.c:90 msgid "Key Up" msgstr "Tast op" -#: app/widgets/gimpcontrollerkeyboard.c:94 +#: ../app/widgets/gimpcontrollerkeyboard.c:94 msgid "Key Down (Shift + Control + Alt)" msgstr "Tast ned (Skift + Ctrl + Alt)" -#: app/widgets/gimpcontrollerkeyboard.c:97 +#: ../app/widgets/gimpcontrollerkeyboard.c:97 msgid "Key Down (Control + Alt)" msgstr "Tast ned (Ctrl + Alt)" -#: app/widgets/gimpcontrollerkeyboard.c:100 +#: ../app/widgets/gimpcontrollerkeyboard.c:100 msgid "Key Down (Shift + Alt)" msgstr "Tast ned (Skift + Alt)" -#: app/widgets/gimpcontrollerkeyboard.c:103 +#: ../app/widgets/gimpcontrollerkeyboard.c:103 msgid "Key Down (Shift + Control)" msgstr "Tast ned (Skift + Ctrl)" -#: app/widgets/gimpcontrollerkeyboard.c:106 +#: ../app/widgets/gimpcontrollerkeyboard.c:106 msgid "Key Down (Alt)" msgstr "Tast ned (Alt)" -#: app/widgets/gimpcontrollerkeyboard.c:109 +#: ../app/widgets/gimpcontrollerkeyboard.c:109 msgid "Key Down (Control)" msgstr "Tast ned (Ctrl)" -#: app/widgets/gimpcontrollerkeyboard.c:112 +#: ../app/widgets/gimpcontrollerkeyboard.c:112 msgid "Key Down (Shift)" msgstr "Tast ned (Skift)" -#: app/widgets/gimpcontrollerkeyboard.c:115 +#: ../app/widgets/gimpcontrollerkeyboard.c:115 msgid "Key Down" msgstr "Tast ned" -#: app/widgets/gimpcontrollerkeyboard.c:119 +#: ../app/widgets/gimpcontrollerkeyboard.c:119 msgid "Key Left (Shift + Control + Alt)" msgstr "Tast venstre (Skift + Ctrl + Alt)" -#: app/widgets/gimpcontrollerkeyboard.c:122 +#: ../app/widgets/gimpcontrollerkeyboard.c:122 msgid "Key Left (Control + Alt)" msgstr "Tast venstre (Ctrl + Alt)" -#: app/widgets/gimpcontrollerkeyboard.c:125 +#: ../app/widgets/gimpcontrollerkeyboard.c:125 msgid "Key Left (Shift + Alt)" msgstr "Tast venstre (Skift + Alt)" -#: app/widgets/gimpcontrollerkeyboard.c:128 +#: ../app/widgets/gimpcontrollerkeyboard.c:128 msgid "Key Left (Shift + Control)" msgstr "Tast venstre (Skift + Ctrl)" -#: app/widgets/gimpcontrollerkeyboard.c:131 +#: ../app/widgets/gimpcontrollerkeyboard.c:131 msgid "Key Left (Alt)" msgstr "Tast venstre (Alt)" -#: app/widgets/gimpcontrollerkeyboard.c:134 +#: ../app/widgets/gimpcontrollerkeyboard.c:134 msgid "Key Left (Control)" msgstr "Tast venstre (Ctrl)" -#: app/widgets/gimpcontrollerkeyboard.c:137 +#: ../app/widgets/gimpcontrollerkeyboard.c:137 msgid "Key Left (Shift)" msgstr "Tast venstre (Skift)" -#: app/widgets/gimpcontrollerkeyboard.c:140 +#: ../app/widgets/gimpcontrollerkeyboard.c:140 msgid "Key Left" msgstr "Tast venstre" -#: app/widgets/gimpcontrollerkeyboard.c:144 +#: ../app/widgets/gimpcontrollerkeyboard.c:144 msgid "Key Right (Shift + Control + Alt)" msgstr "Tast højre (Skift + Ctrl + Alt)" -#: app/widgets/gimpcontrollerkeyboard.c:147 +#: ../app/widgets/gimpcontrollerkeyboard.c:147 msgid "Key Right (Control + Alt)" msgstr "Tast højre (Ctrl + Alt)" -#: app/widgets/gimpcontrollerkeyboard.c:150 +#: ../app/widgets/gimpcontrollerkeyboard.c:150 msgid "Key Right (Shift + Alt)" msgstr "Tast højre (Skift + Alt)" -#: app/widgets/gimpcontrollerkeyboard.c:153 +#: ../app/widgets/gimpcontrollerkeyboard.c:153 msgid "Key Right (Shift + Control)" msgstr "Tast højre (Skift + Ctrl)" -#: app/widgets/gimpcontrollerkeyboard.c:156 +#: ../app/widgets/gimpcontrollerkeyboard.c:156 msgid "Key Right (Alt)" msgstr "Tast højre (Alt)" -#: app/widgets/gimpcontrollerkeyboard.c:159 +#: ../app/widgets/gimpcontrollerkeyboard.c:159 msgid "Key Right (Control)" msgstr "Tast højre (Ctrl)" -#: app/widgets/gimpcontrollerkeyboard.c:162 +#: ../app/widgets/gimpcontrollerkeyboard.c:162 msgid "Key Right (Shift)" msgstr "Tast højre (Skift)" -#: app/widgets/gimpcontrollerkeyboard.c:165 +#: ../app/widgets/gimpcontrollerkeyboard.c:165 msgid "Key Right" msgstr "Tast højre" -#: app/widgets/gimpcontrollerkeyboard.c:207 +#: ../app/widgets/gimpcontrollerkeyboard.c:207 msgid "Keyboard" msgstr "Tastatur" -#: app/widgets/gimpcontrollerkeyboard.c:230 +#: ../app/widgets/gimpcontrollerkeyboard.c:230 msgid "Keyboard Events" msgstr "Tastaturhændelser" -#: app/widgets/gimpcontrollerkeyboard.c:231 -#: app/widgets/gimpcontrollerwheel.c:230 +#: ../app/widgets/gimpcontrollerkeyboard.c:231 +#: ../app/widgets/gimpcontrollerwheel.c:230 msgid "Ready" msgstr "Parat" -#: app/widgets/gimpcontrollerwheel.c:68 +#: ../app/widgets/gimpcontrollerwheel.c:68 msgid "Scroll Up (Shift + Control + Alt)" msgstr "Rul op (Skift + Ctrl + Alt)" -#: app/widgets/gimpcontrollerwheel.c:71 +#: ../app/widgets/gimpcontrollerwheel.c:71 msgid "Scroll Up (Control + Alt)" msgstr "Rul op (Ctrl + Alt)" -#: app/widgets/gimpcontrollerwheel.c:74 +#: ../app/widgets/gimpcontrollerwheel.c:74 msgid "Scroll Up (Shift + Alt)" msgstr "Rul op (Skift + Alt)" -#: app/widgets/gimpcontrollerwheel.c:77 +#: ../app/widgets/gimpcontrollerwheel.c:77 msgid "Scroll Up (Shift + Control)" msgstr "Rul op (Skift + Ctrl)" -#: app/widgets/gimpcontrollerwheel.c:80 +#: ../app/widgets/gimpcontrollerwheel.c:80 msgid "Scroll Up (Alt)" msgstr "Rul op (Alt)" -#: app/widgets/gimpcontrollerwheel.c:83 +#: ../app/widgets/gimpcontrollerwheel.c:83 msgid "Scroll Up (Control)" msgstr "Rul op (Ctrl)" -#: app/widgets/gimpcontrollerwheel.c:86 +#: ../app/widgets/gimpcontrollerwheel.c:86 msgid "Scroll Up (Shift)" msgstr "Rul op (Skift)" -#: app/widgets/gimpcontrollerwheel.c:89 +#: ../app/widgets/gimpcontrollerwheel.c:89 msgid "Scroll Up" msgstr "Rul op" -#: app/widgets/gimpcontrollerwheel.c:93 +#: ../app/widgets/gimpcontrollerwheel.c:93 msgid "Scroll Down (Shift + Control + Alt)" msgstr "Rul ned (Skift + Ctrl + Alt)" -#: app/widgets/gimpcontrollerwheel.c:96 +#: ../app/widgets/gimpcontrollerwheel.c:96 msgid "Scroll Down (Control + Alt)" msgstr "Rul ned (Ctrl + Alt)" -#: app/widgets/gimpcontrollerwheel.c:99 +#: ../app/widgets/gimpcontrollerwheel.c:99 msgid "Scroll Down (Shift + Alt)" msgstr "Rul ned (Skift + Alt)" -#: app/widgets/gimpcontrollerwheel.c:102 +#: ../app/widgets/gimpcontrollerwheel.c:102 msgid "Scroll Down (Shift + Control)" msgstr "Rul ned (Skift + Ctrl)" -#: app/widgets/gimpcontrollerwheel.c:105 +#: ../app/widgets/gimpcontrollerwheel.c:105 msgid "Scroll Down (Alt)" msgstr "Rul ned (Alt)" -#: app/widgets/gimpcontrollerwheel.c:108 +#: ../app/widgets/gimpcontrollerwheel.c:108 msgid "Scroll Down (Control)" msgstr "Rul ned (Ctrl)" -#: app/widgets/gimpcontrollerwheel.c:111 +#: ../app/widgets/gimpcontrollerwheel.c:111 msgid "Scroll Down (Shift)" msgstr "Rul ned (Skift)" -#: app/widgets/gimpcontrollerwheel.c:114 +#: ../app/widgets/gimpcontrollerwheel.c:114 msgid "Scroll Down" msgstr "Rul ned" -#: app/widgets/gimpcontrollerwheel.c:118 +#: ../app/widgets/gimpcontrollerwheel.c:118 msgid "Scroll Left (Shift + Control + Alt)" msgstr "Rul venstre (Skift + Ctrl + Alt)" -#: app/widgets/gimpcontrollerwheel.c:121 +#: ../app/widgets/gimpcontrollerwheel.c:121 msgid "Scroll Left (Control + Alt)" msgstr "Rul venstre (Ctrl + Alt)" -#: app/widgets/gimpcontrollerwheel.c:124 +#: ../app/widgets/gimpcontrollerwheel.c:124 msgid "Scroll Left (Shift + Alt)" msgstr "Rul venstre (Skift + Alt)" -#: app/widgets/gimpcontrollerwheel.c:127 +#: ../app/widgets/gimpcontrollerwheel.c:127 msgid "Scroll Left (Shift + Control)" msgstr "Rul venstre (Skift + Ctrl)" -#: app/widgets/gimpcontrollerwheel.c:130 +#: ../app/widgets/gimpcontrollerwheel.c:130 msgid "Scroll Left (Alt)" msgstr "Rul venstre (Alt)" -#: app/widgets/gimpcontrollerwheel.c:133 +#: ../app/widgets/gimpcontrollerwheel.c:133 msgid "Scroll Left (Control)" msgstr "Rul venstre (Ctrl)" -#: app/widgets/gimpcontrollerwheel.c:136 +#: ../app/widgets/gimpcontrollerwheel.c:136 msgid "Scroll Left (Shift)" msgstr "Rul venstre (Skift)" -#: app/widgets/gimpcontrollerwheel.c:139 +#: ../app/widgets/gimpcontrollerwheel.c:139 msgid "Scroll Left" msgstr "Rul venstre" -#: app/widgets/gimpcontrollerwheel.c:143 +#: ../app/widgets/gimpcontrollerwheel.c:143 msgid "Scroll Right (Shift + Control + Alt)" msgstr "Rul højre (Skift + Ctrl + Alt)" -#: app/widgets/gimpcontrollerwheel.c:146 +#: ../app/widgets/gimpcontrollerwheel.c:146 msgid "Scroll Right (Control + Alt)" msgstr "Rul højre (Ctrl + Alt)" -#: app/widgets/gimpcontrollerwheel.c:149 +#: ../app/widgets/gimpcontrollerwheel.c:149 msgid "Scroll Right (Shift + Alt)" msgstr "Rul højre (Skift + Alt)" -#: app/widgets/gimpcontrollerwheel.c:152 +#: ../app/widgets/gimpcontrollerwheel.c:152 msgid "Scroll Right (Shift + Control)" msgstr "Rul højre (Skift + Ctrl)" -#: app/widgets/gimpcontrollerwheel.c:155 +#: ../app/widgets/gimpcontrollerwheel.c:155 msgid "Scroll Right (Alt)" msgstr "Rul højre (Alt)" -#: app/widgets/gimpcontrollerwheel.c:158 +#: ../app/widgets/gimpcontrollerwheel.c:158 msgid "Scroll Right (Control)" msgstr "Rul højre (Ctrl)" -#: app/widgets/gimpcontrollerwheel.c:161 +#: ../app/widgets/gimpcontrollerwheel.c:161 msgid "Scroll Right (Shift)" msgstr "Rul højre (Skift)" -#: app/widgets/gimpcontrollerwheel.c:164 +#: ../app/widgets/gimpcontrollerwheel.c:164 msgid "Scroll Right" msgstr "Rul højre" -#: app/widgets/gimpcontrollerwheel.c:206 +#: ../app/widgets/gimpcontrollerwheel.c:206 msgid "Mouse Wheel" msgstr "Musehjul" -#: app/widgets/gimpcontrollerwheel.c:229 +#: ../app/widgets/gimpcontrollerwheel.c:229 msgid "Mouse Wheel Events" msgstr "Musehjulshændelser" -#: app/widgets/gimpdataeditor.c:205 +#: ../app/widgets/gimpdataeditor.c:205 msgid "Save" msgstr "Gem" -#: app/widgets/gimpdataeditor.c:213 +#: ../app/widgets/gimpdataeditor.c:213 msgid "Revert" msgstr "Forkast" -#: app/widgets/gimpdevicestatus.c:281 +#: ../app/widgets/gimpdevicestatus.c:281 msgid "Save device status" msgstr "Gem enhedsstatus" -#: app/widgets/gimpdevicestatus.c:385 +#: ../app/widgets/gimpdevicestatus.c:385 #, c-format msgid "Foreground: %d, %d, %d" msgstr "Forgrund: %d, %d, %d" -#: app/widgets/gimpdevicestatus.c:390 +#: ../app/widgets/gimpdevicestatus.c:390 #, c-format msgid "Background: %d, %d, %d" msgstr "Baggrund: %d, %d, %d" -#: app/widgets/gimpdock.c:348 app/widgets/gimpdock.c:359 -#, fuzzy +#: ../app/widgets/gimpdock.c:348 ../app/widgets/gimpdock.c:359 msgid "Close all tabs?" -msgstr "_Luk fane" +msgstr "Luk alle faneblade?" -#: app/widgets/gimpdock.c:354 -#, fuzzy +#: ../app/widgets/gimpdock.c:354 msgid "Close all Tabs" -msgstr "_Luk fane" +msgstr "Luk alle faneblade" -#: app/widgets/gimpdock.c:361 +#: ../app/widgets/gimpdock.c:361 #, c-format msgid "" "This window has %d tabs open. Closing the window will also close all its " "tabs." -msgstr "" +msgstr "Dette vindue har %d faneblade åbne. Hvis du lukker vinduet, vil alle fanebladene også blive lukket." -#: app/widgets/gimpdock.c:474 +#: ../app/widgets/gimpdock.c:474 msgid "You can drop dockable dialogs here." msgstr "Du kan slippe dokvinduer her." -#: app/widgets/gimpdockable.c:210 +#: ../app/widgets/gimpdockable.c:210 msgid "Close this Tab" msgstr "Luk denne fane" -#: app/widgets/gimperrorconsole.c:235 app/widgets/gimperrordialog.c:252 +#: ../app/widgets/gimperrorconsole.c:235 ../app/widgets/gimperrordialog.c:252 #, c-format msgid "%s Message" msgstr "%s-meddelelse" -#: app/widgets/gimperrordialog.c:229 +#: ../app/widgets/gimperrordialog.c:229 msgid "Too many error messages!" msgstr "For mange fejlmeddelelser!" -#: app/widgets/gimperrordialog.c:230 +#: ../app/widgets/gimperrordialog.c:230 msgid "Messages are redirected to stderr." msgstr "Meddelelse bliver videresendt til stderr." -#: app/widgets/gimpfiledialog.c:304 +#: ../app/widgets/gimpfiledialog.c:304 msgid "Automatically Detected" msgstr "Automatisk bestemt" -#: app/widgets/gimpfiledialog.c:310 +#: ../app/widgets/gimpfiledialog.c:310 msgid "By Extension" msgstr "Efter endelse" -#: app/widgets/gimpfiledialog.c:469 +#: ../app/widgets/gimpfiledialog.c:469 msgid "All Files" msgstr "Alle filer" -#: app/widgets/gimpfiledialog.c:608 +#: ../app/widgets/gimpfiledialog.c:608 #, c-format msgid "Select File _Type (%s)" msgstr "Vælg fil_type (%s)" -#: app/widgets/gimpfileprocview.c:234 +#: ../app/widgets/gimpfileprocview.c:234 msgid "File Type" msgstr "Filtype" -#: app/widgets/gimpfileprocview.c:253 +#: ../app/widgets/gimpfileprocview.c:253 msgid "Extensions" msgstr "Programudvidelser" -#: app/widgets/gimpgradienteditor.c:362 +#: ../app/widgets/gimpgradienteditor.c:362 msgid "Instant update" msgstr "Øjeblikkelig opdatering" -#: app/widgets/gimpgradienteditor.c:619 +#: ../app/widgets/gimpgradienteditor.c:619 #, c-format msgid "Zoom factor: %d:1" msgstr "Zoomfaktor: %d:1" -#: app/widgets/gimpgradienteditor.c:622 +#: ../app/widgets/gimpgradienteditor.c:622 #, c-format msgid "Displaying [%0.6f, %0.6f]" msgstr "Viser [%0.6f, %0.6f]" -#: app/widgets/gimpgradienteditor.c:814 +#: ../app/widgets/gimpgradienteditor.c:814 #, c-format msgid "Position: %0.6f" msgstr "Position: %0.6f" -#: app/widgets/gimpgradienteditor.c:816 +#: ../app/widgets/gimpgradienteditor.c:816 #, c-format msgid "RGB (%0.3f, %0.3f, %0.3f)" msgstr "RGB (%0.3f, %0.3f, %0.3f)" -#: app/widgets/gimpgradienteditor.c:819 +#: ../app/widgets/gimpgradienteditor.c:819 #, c-format msgid "HSV (%0.3f, %0.3f, %0.3f)" msgstr "HSV (%0.3f, %0.3f, %0.3f)" -#: app/widgets/gimpgradienteditor.c:821 +#: ../app/widgets/gimpgradienteditor.c:821 #, c-format msgid "Intensity: %0.3f Opacity: %0.3f" msgstr "Intensitet: %0.3f Ugennemsigtighed: %0.3f" -#: app/widgets/gimpgradienteditor.c:854 app/widgets/gimpgradienteditor.c:889 +#: ../app/widgets/gimpgradienteditor.c:854 +#: ../app/widgets/gimpgradienteditor.c:889 #, c-format msgid "RGB (%d, %d, %d)" msgstr "RGB (%d, %d, %d)" -#: app/widgets/gimpgradienteditor.c:862 +#: ../app/widgets/gimpgradienteditor.c:862 msgid "Foreground color set to:" msgstr "Forgrundsfarve sat til:" -#: app/widgets/gimpgradienteditor.c:894 +#: ../app/widgets/gimpgradienteditor.c:894 #, c-format msgid "(%0.3f, %0.3f, %0.3f)" msgstr "(%0.3f, %0.3f, %0.3f)" -#: app/widgets/gimpgradienteditor.c:898 +#: ../app/widgets/gimpgradienteditor.c:898 msgid "Background color set to:" msgstr "Baggrundsfarve sat til:" -#: app/widgets/gimpgradienteditor.c:1101 app/widgets/gimpgradienteditor.c:1167 +#: ../app/widgets/gimpgradienteditor.c:1101 +#: ../app/widgets/gimpgradienteditor.c:1167 #, c-format msgid "%s%sDrag: move & compress" msgstr "%s%stræk: flyt og komprimér" -#: app/widgets/gimpgradienteditor.c:1107 +#: ../app/widgets/gimpgradienteditor.c:1107 msgid "Drag: move" msgstr "Træk: flyt" -#: app/widgets/gimpgradienteditor.c:1114 app/widgets/gimpgradienteditor.c:1128 -#: app/widgets/gimpgradienteditor.c:1142 app/widgets/gimpgradienteditor.c:1164 +#: ../app/widgets/gimpgradienteditor.c:1114 +#: ../app/widgets/gimpgradienteditor.c:1128 +#: ../app/widgets/gimpgradienteditor.c:1142 +#: ../app/widgets/gimpgradienteditor.c:1164 #, c-format msgid "%s%sClick: extend selection" msgstr "%s%sklik: udvid markering" -#: app/widgets/gimpgradienteditor.c:1120 app/widgets/gimpgradienteditor.c:1134 +#: ../app/widgets/gimpgradienteditor.c:1120 +#: ../app/widgets/gimpgradienteditor.c:1134 msgid "Click: select" msgstr "Klik: markér" -#: app/widgets/gimpgradienteditor.c:1148 app/widgets/gimpgradienteditor.c:1172 +#: ../app/widgets/gimpgradienteditor.c:1148 +#: ../app/widgets/gimpgradienteditor.c:1172 msgid "Click: select Drag: move" msgstr "Klik: markér Træk: flyt" -#: app/widgets/gimpgradienteditor.c:1394 app/widgets/gimpgradienteditor.c:1402 +#: ../app/widgets/gimpgradienteditor.c:1394 +#: ../app/widgets/gimpgradienteditor.c:1402 #, c-format msgid "Handle position: %0.6f" msgstr "Håndtagsposition: %0.6f" -#: app/widgets/gimpgradienteditor.c:1419 +#: ../app/widgets/gimpgradienteditor.c:1419 #, c-format msgid "Distance: %0.6f" msgstr "Afstand: %0.6f" -#: app/widgets/gimpgrideditor.c:219 +#: ../app/widgets/gimpgrideditor.c:219 msgid "Line _Style:" msgstr "Linje_stil:" -#: app/widgets/gimpgrideditor.c:223 -#, fuzzy +#: ../app/widgets/gimpgrideditor.c:223 msgid "Change grid foreground color" msgstr "Skift gitterforgrundsfarve" -#: app/widgets/gimpgrideditor.c:228 -#, fuzzy +#: ../app/widgets/gimpgrideditor.c:228 msgid "_Foreground color:" msgstr "_Forgrundsfarve:" -#: app/widgets/gimpgrideditor.c:232 -#, fuzzy +#: ../app/widgets/gimpgrideditor.c:232 msgid "Change grid background color" msgstr "Skift gitterbaggrundsfarve" -#: app/widgets/gimpgrideditor.c:237 -#, fuzzy +#: ../app/widgets/gimpgrideditor.c:237 msgid "_Background color:" msgstr "_Baggrundsfarve:" -#: app/widgets/gimpgrideditor.c:242 +#: ../app/widgets/gimpgrideditor.c:242 msgid "Spacing" msgstr "Mellemrum" -#: app/widgets/gimpgrideditor.c:263 app/widgets/gimpgrideditor.c:295 +#: ../app/widgets/gimpgrideditor.c:263 ../app/widgets/gimpgrideditor.c:295 msgid "Width" msgstr "Bredde" -#: app/widgets/gimpgrideditor.c:265 app/widgets/gimpgrideditor.c:297 +#: ../app/widgets/gimpgrideditor.c:265 ../app/widgets/gimpgrideditor.c:297 msgid "Height" msgstr "Højde" -#: app/widgets/gimphelp.c:187 -#, fuzzy +#: ../app/widgets/gimphelp.c:187 msgid "Help browser not found" -msgstr "Hjælpe_fremviser:" +msgstr "Hjælpefremviser ikke fundet" -#: app/widgets/gimphelp.c:188 -#, fuzzy +#: ../app/widgets/gimphelp.c:188 msgid "Could not find GIMP help browser." -msgstr "Kunne ikke finde Gimp'ens hjælpelæser" +msgstr "Kunne ikke finde Gimp'ens hjælpefremviser." -#: app/widgets/gimphelp.c:189 +#: ../app/widgets/gimphelp.c:189 msgid "" "The GIMP help browser plug-in appears to be missing from your installation." -msgstr "" +msgstr "Gimp'ens hjælpefremvisermodul mangler tilsyneladende fra din installation." -#: app/widgets/gimphelp.c:213 -#, fuzzy +#: ../app/widgets/gimphelp.c:213 msgid "Help browser doesn't start" -msgstr "Hjælpe_fremviser:" +msgstr "Hjælpefremviser starter ikke" -#: app/widgets/gimphelp.c:214 -#, fuzzy +#: ../app/widgets/gimphelp.c:214 msgid "Could not start the GIMP help browser plug-in." -msgstr "Kunne ikke starte Gimp'ens hjælpelæser." +msgstr "Kunne ikke starte Gimp'ens hjælpefremvisermodul." -#: app/widgets/gimphelp.c:240 -#, fuzzy +#: ../app/widgets/gimphelp.c:240 msgid "Use _web browser instead" -msgstr "Benyt internetsurfningsprogram i stedet" +msgstr "Benyt _internetsurfningsprogram i stedet" -#: app/widgets/gimphistogrameditor.c:134 +#: ../app/widgets/gimphistogrameditor.c:134 msgid "Mean:" msgstr "Middelværdi:" -#: app/widgets/gimphistogrameditor.c:135 +#: ../app/widgets/gimphistogrameditor.c:135 msgid "Std Dev:" msgstr "Std.afvig:" -#: app/widgets/gimphistogrameditor.c:136 +#: ../app/widgets/gimphistogrameditor.c:136 msgid "Median:" msgstr "Median:" -#: app/widgets/gimphistogrameditor.c:137 +#: ../app/widgets/gimphistogrameditor.c:137 msgid "Pixels:" msgstr "Punkter:" -#: app/widgets/gimphistogrameditor.c:138 +#: ../app/widgets/gimphistogrameditor.c:138 msgid "Count:" msgstr "Antal:" -#: app/widgets/gimphistogrameditor.c:139 +#: ../app/widgets/gimphistogrameditor.c:139 msgid "Percentile:" msgstr "Procentdel:" -#: app/widgets/gimpimagedock.c:203 +#: ../app/widgets/gimpimagedock.c:203 msgid "Auto" msgstr "Auto" -#: app/widgets/gimpimagedock.c:214 +#: ../app/widgets/gimpimagedock.c:214 msgid "" "When enabled the dialog automatically follows the image you are working on." msgstr "" "Hvis aktiveret, vil vinduet automatisk følge det billede du arbejder på." -#: app/widgets/gimpitemtreeview.c:996 +#: ../app/widgets/gimpitemtreeview.c:996 msgid "Set Item Exclusive Visible" msgstr "Sæt element eksklusivt synligt" -#: app/widgets/gimpitemtreeview.c:1004 +#: ../app/widgets/gimpitemtreeview.c:1004 msgid "Set Item Exclusive Linked" msgstr "Sæt element eksklusivt kædet" -#: app/widgets/gimplayertreeview.c:252 +#: ../app/widgets/gimplayertreeview.c:252 msgid "Reorder Layer" msgstr "Omordn lag" -#: app/widgets/gimplayertreeview.c:313 -#, fuzzy +#: ../app/widgets/gimplayertreeview.c:313 msgid "Keep transparency" msgstr "Behold gennemsigtighed" -#: app/widgets/gimplayertreeview.c:848 +#: ../app/widgets/gimplayertreeview.c:848 msgid "Empty Layer" msgstr "Tomt lag" -#: app/widgets/gimpmessagebox.c:460 +#: ../app/widgets/gimpmessagebox.c:460 #, c-format msgid "Message repeated %d times." msgstr "Meddelelse gentaget %d gange." -#: app/widgets/gimpmessagebox.c:462 +#: ../app/widgets/gimpmessagebox.c:462 msgid "Message repeated once." msgstr "Meddelelse gentaget én gang." -#: app/widgets/gimppaletteeditor.c:258 app/widgets/gimppaletteeditor.c:999 +#: ../app/widgets/gimppaletteeditor.c:258 +#: ../app/widgets/gimppaletteeditor.c:999 msgid "Undefined" msgstr "Ikkedefineret" -#: app/widgets/gimppaletteeditor.c:266 +#: ../app/widgets/gimppaletteeditor.c:266 msgid "Columns:" msgstr "Kolonner:" -#: app/widgets/gimppropwidgets.c:1537 +#: ../app/widgets/gimppropwidgets.c:1537 #, c-format msgid "This text input field is limited to %d characters." msgstr "Dette indtastningsfelt er begrænset til %d tegn." -#: app/widgets/gimpselectiondata.c:317 +#: ../app/widgets/gimpselectiondata.c:319 #, c-format msgid "" "The filename '%s' couldn't be converted to a valid URI:\n" @@ -10574,101 +10517,92 @@ "\n" "%s" -#: app/widgets/gimpselectiondata.c:321 +#: ../app/widgets/gimpselectiondata.c:323 msgid "Invalid UTF-8" msgstr "Ugyldig UTF-8" -#: app/widgets/gimpsizebox.c:456 -#, fuzzy, c-format +#: ../app/widgets/gimpsizebox.c:456 +#, c-format msgid "%d x %d dpi" -msgstr "%d x %d punkter" +msgstr "%d x %d dpi" -#: app/widgets/gimpsizebox.c:458 -#, fuzzy, c-format +#: ../app/widgets/gimpsizebox.c:458 +#, c-format msgid "%d dpi" -msgstr "dpi" +msgstr "%d dpi" -#: app/widgets/gimpstrokeeditor.c:198 -#, fuzzy +#: ../app/widgets/gimpstrokeeditor.c:198 msgid "Line Width:" -msgstr "Lagets bredde:" +msgstr "Linjebredde:" -#: app/widgets/gimpstrokeeditor.c:209 -#, fuzzy +#: ../app/widgets/gimpstrokeeditor.c:209 msgid "_Line Style" -msgstr "Linje_stil:" +msgstr "Linje_stil" -#: app/widgets/gimpstrokeeditor.c:228 -#, fuzzy +#: ../app/widgets/gimpstrokeeditor.c:228 msgid "_Cap style:" msgstr "_Endestil:" -#: app/widgets/gimpstrokeeditor.c:234 -#, fuzzy +#: ../app/widgets/gimpstrokeeditor.c:234 msgid "_Join style:" msgstr "_Koblingsstil:" -#: app/widgets/gimpstrokeeditor.c:239 -#, fuzzy +#: ../app/widgets/gimpstrokeeditor.c:239 msgid "_Miter limit:" msgstr "_Mellemgrænse:" -#: app/widgets/gimpstrokeeditor.c:246 -#, fuzzy +#: ../app/widgets/gimpstrokeeditor.c:246 msgid "Dash pattern:" msgstr "Stiplingsmønster:" -# RETMIG: hvad i alverden er dette? -#: app/widgets/gimpstrokeeditor.c:288 -#, fuzzy +#: ../app/widgets/gimpstrokeeditor.c:288 msgid "Dash preset:" -msgstr "Stiplingsstandard:" +msgstr "Stiplingsforvalg:" -#: app/widgets/gimpstrokeeditor.c:300 +#: ../app/widgets/gimpstrokeeditor.c:300 msgid "_Antialiasing" msgstr "_Udjævning" -#: app/widgets/gimptemplateeditor.c:255 +#: ../app/widgets/gimptemplateeditor.c:255 #, c-format msgid "%p" msgstr "%p" -#: app/widgets/gimptemplateeditor.c:330 +#: ../app/widgets/gimptemplateeditor.c:330 msgid "_Advanced Options" msgstr "_Avancerede indstillinger" -#: app/widgets/gimptemplateeditor.c:437 +#: ../app/widgets/gimptemplateeditor.c:437 msgid "Color_space:" msgstr "Farve_rum:" -#: app/widgets/gimptemplateeditor.c:445 +#: ../app/widgets/gimptemplateeditor.c:445 msgid "_Fill with:" msgstr "_Udfyld med:" -#: app/widgets/gimptemplateeditor.c:455 -#, fuzzy +#: ../app/widgets/gimptemplateeditor.c:455 msgid "Comme_nt:" msgstr "Kom_mentar:" -#: app/widgets/gimptemplateeditor.c:565 +#: ../app/widgets/gimptemplateeditor.c:565 msgid "_Name:" msgstr "_Navn:" -#: app/widgets/gimptemplateeditor.c:576 +#: ../app/widgets/gimptemplateeditor.c:576 msgid "_Icon:" msgstr "_Ikon:" -#: app/widgets/gimptemplateeditor.c:699 -#, fuzzy, c-format +#: ../app/widgets/gimptemplateeditor.c:699 +#, c-format msgid "%d x %d dpi, %s" -msgstr "%d x %d punkter" +msgstr "%d x %d dpi, %s" -#: app/widgets/gimptemplateeditor.c:701 +#: ../app/widgets/gimptemplateeditor.c:701 #, c-format msgid "%d dpi, %s" -msgstr "" +msgstr "%d dpi, %s" -#: app/widgets/gimpthumbbox.c:337 +#: ../app/widgets/gimpthumbbox.c:337 #, c-format msgid "" "Click to update preview\n" @@ -10678,39 +10612,36 @@ "%s Klik for at gennemtvinge opdatering også selvom miniaturen er opdateret" # i filvælgervinduet - derfor valgt i stedet for markeret -#: app/widgets/gimpthumbbox.c:407 app/widgets/gimpthumbbox.c:477 -#, fuzzy +#: ../app/widgets/gimpthumbbox.c:407 ../app/widgets/gimpthumbbox.c:477 msgid "No selection" -msgstr "Intet valg" +msgstr "Intet valgt" -#: app/widgets/gimpthumbbox.c:602 app/widgets/gimpthumbbox.c:626 +#: ../app/widgets/gimpthumbbox.c:602 ../app/widgets/gimpthumbbox.c:626 #, c-format msgid "Thumbnail %d of %d" msgstr "Miniature %d af %d" -#: app/widgets/gimpthumbbox.c:730 app/widgets/gimpthumbbox.c:740 -#, fuzzy +#: ../app/widgets/gimpthumbbox.c:730 ../app/widgets/gimpthumbbox.c:740 msgid "Creating Preview ..." -msgstr "Indlæser miniature..." +msgstr "Opretter miniature..." -#: app/widgets/gimptoolbox-color-area.c:135 +#: ../app/widgets/gimptoolbox-color-area.c:135 msgid "Change Foreground Color" msgstr "Skift forgrundsfarve" -#: app/widgets/gimptoolbox-color-area.c:140 +#: ../app/widgets/gimptoolbox-color-area.c:140 msgid "Change Background Color" msgstr "Skift baggrundsfarve" -#: app/widgets/gimptoolbox-image-area.c:90 -#, fuzzy +#: ../app/widgets/gimptoolbox-image-area.c:90 msgid "" "The active image.\n" "Click to open the Image Dialog." msgstr "" -"Det aktive mønster.\n" -"Klik for at åbne mønstervinduet." +"Det aktive billede.\n" +"Klik for at åbne billedvinduet." -#: app/widgets/gimptoolbox-indicator-area.c:143 +#: ../app/widgets/gimptoolbox-indicator-area.c:143 msgid "" "The active brush.\n" "Click to open the Brush Dialog." @@ -10718,7 +10649,7 @@ "Den aktive pensel.\n" "Klik for at åbne penselvinduet." -#: app/widgets/gimptoolbox-indicator-area.c:174 +#: ../app/widgets/gimptoolbox-indicator-area.c:174 msgid "" "The active pattern.\n" "Click to open the Pattern Dialog." @@ -10726,7 +10657,7 @@ "Det aktive mønster.\n" "Klik for at åbne mønstervinduet." -#: app/widgets/gimptoolbox-indicator-area.c:205 +#: ../app/widgets/gimptoolbox-indicator-area.c:205 msgid "" "The active gradient.\n" "Click to open the Gradient Dialog." @@ -10735,7 +10666,7 @@ "Klik for at åbne farveovergangsvinduet." # lettere omformulering af skønhedshensyn -#: app/widgets/gimptoolbox.c:854 +#: ../app/widgets/gimptoolbox.c:854 msgid "" "Foreground & background colors. The black and white squares reset colors. " "The arrows swap colors. Double click to open the color selection dialog." @@ -10743,259 +10674,259 @@ "Forgrunds- og baggrundsfarver. De sorte og hvide firkanter nulstiller farver " "mens pilene ombytter dem. Dobbeltklik for at åbne farvevælgeren." -#: app/widgets/gimptooloptionseditor.c:185 +#: ../app/widgets/gimptooloptionseditor.c:185 msgid "Save options to..." msgstr "Gem indstillinger som..." -#: app/widgets/gimptooloptionseditor.c:193 +#: ../app/widgets/gimptooloptionseditor.c:193 msgid "Restore options from..." msgstr "Gendan indstillinger fra..." -#: app/widgets/gimptooloptionseditor.c:201 +#: ../app/widgets/gimptooloptionseditor.c:201 msgid "Delete saved options..." msgstr "Slet gemte indstillinger..." -#: app/widgets/gimpuimanager.c:495 +#: ../app/widgets/gimpuimanager.c:495 msgid "Your GIMP installation is incomplete:" msgstr "Den Gimp-installation er ufuldstændig:" -#: app/widgets/gimpuimanager.c:497 +#: ../app/widgets/gimpuimanager.c:497 msgid "Plase make sure the menu XML files are correctly installed." msgstr "Kontrollér at menu-XML-filerne er korrekt installeret." -#: app/widgets/gimpundoeditor.c:255 +#: ../app/widgets/gimpundoeditor.c:255 msgid "[ Base Image ]" msgstr "[ grundbillede ]" -#: app/widgets/gimpvectorstreeview.c:151 +#: ../app/widgets/gimpvectorstreeview.c:151 msgid "Reorder path" msgstr "Omordn bane" -#: app/widgets/gimpvectorstreeview.c:289 +#: ../app/widgets/gimpvectorstreeview.c:289 msgid "Empty Path" msgstr "Tøm bane" -#: app/widgets/gimpviewablebox.c:75 +#: ../app/widgets/gimpviewablebox.c:75 msgid "Open the brush selection dialog" msgstr "Åbn penselvælgeren" -#: app/widgets/gimpviewablebox.c:115 +#: ../app/widgets/gimpviewablebox.c:115 msgid "Open the pattern selection dialog" msgstr "Åbn mønstervælgeren" -#: app/widgets/gimpviewablebox.c:155 +#: ../app/widgets/gimpviewablebox.c:155 msgid "Open the gradient selection dialog" msgstr "Åbn farveovergangsvælgeren" -#: app/widgets/gimpviewablebox.c:167 +#: ../app/widgets/gimpviewablebox.c:167 msgid "Reverse" msgstr "Omvendt" # "dialog" overflødigt -#: app/widgets/gimpviewablebox.c:210 +#: ../app/widgets/gimpviewablebox.c:210 msgid "Open the palette selection dialog" msgstr "Åbn paletvælgeren" -#: app/widgets/gimpviewablebox.c:250 +#: ../app/widgets/gimpviewablebox.c:250 msgid "Open the font selection dialog" msgstr "Åbn skrifttypevælgeren" -#: app/widgets/gimpwidgets-constructors.c:50 -#: app/widgets/gimpwidgets-constructors.c:85 +#: ../app/widgets/gimpwidgets-constructors.c:50 +#: ../app/widgets/gimpwidgets-constructors.c:85 msgid "Normal" msgstr "Normal" -#: app/widgets/gimpwidgets-constructors.c:51 -#: app/widgets/gimpwidgets-constructors.c:86 +#: ../app/widgets/gimpwidgets-constructors.c:51 +#: ../app/widgets/gimpwidgets-constructors.c:86 msgid "Dissolve" msgstr "Opløs" # tegner bagved de andre ting i billedet -#: app/widgets/gimpwidgets-constructors.c:52 +#: ../app/widgets/gimpwidgets-constructors.c:52 msgid "Behind" msgstr "Bagved" -#: app/widgets/gimpwidgets-constructors.c:53 +#: ../app/widgets/gimpwidgets-constructors.c:53 msgid "Color erase" msgstr "Farveslet" -#: app/widgets/gimpwidgets-constructors.c:55 -#: app/widgets/gimpwidgets-constructors.c:88 +#: ../app/widgets/gimpwidgets-constructors.c:55 +#: ../app/widgets/gimpwidgets-constructors.c:88 msgid "Multiply" msgstr "Gang" -#: app/widgets/gimpwidgets-constructors.c:56 -#: app/widgets/gimpwidgets-constructors.c:89 +#: ../app/widgets/gimpwidgets-constructors.c:56 +#: ../app/widgets/gimpwidgets-constructors.c:89 msgid "Divide" msgstr "Dividér" -#: app/widgets/gimpwidgets-constructors.c:57 -#: app/widgets/gimpwidgets-constructors.c:90 +#: ../app/widgets/gimpwidgets-constructors.c:57 +#: ../app/widgets/gimpwidgets-constructors.c:90 msgid "Screen" msgstr "Skærm" -#: app/widgets/gimpwidgets-constructors.c:58 -#: app/widgets/gimpwidgets-constructors.c:91 +#: ../app/widgets/gimpwidgets-constructors.c:58 +#: ../app/widgets/gimpwidgets-constructors.c:91 msgid "Overlay" msgstr "Læg over" -#: app/widgets/gimpwidgets-constructors.c:62 -#: app/widgets/gimpwidgets-constructors.c:95 +#: ../app/widgets/gimpwidgets-constructors.c:62 +#: ../app/widgets/gimpwidgets-constructors.c:95 msgid "Hard light" msgstr "Hårdgør lys" -#: app/widgets/gimpwidgets-constructors.c:63 -#: app/widgets/gimpwidgets-constructors.c:96 +#: ../app/widgets/gimpwidgets-constructors.c:63 +#: ../app/widgets/gimpwidgets-constructors.c:96 msgid "Soft light" msgstr "Blødgør lys" # RETMIG: rigtigt? -#: app/widgets/gimpwidgets-constructors.c:64 -#: app/widgets/gimpwidgets-constructors.c:97 +#: ../app/widgets/gimpwidgets-constructors.c:64 +#: ../app/widgets/gimpwidgets-constructors.c:97 msgid "Grain extract" msgstr "Udtræk korn" -#: app/widgets/gimpwidgets-constructors.c:65 -#: app/widgets/gimpwidgets-constructors.c:98 +#: ../app/widgets/gimpwidgets-constructors.c:65 +#: ../app/widgets/gimpwidgets-constructors.c:98 msgid "Grain merge" msgstr "Forén korn" -#: app/widgets/gimpwidgets-constructors.c:67 -#: app/widgets/gimpwidgets-constructors.c:100 +#: ../app/widgets/gimpwidgets-constructors.c:67 +#: ../app/widgets/gimpwidgets-constructors.c:100 msgid "Difference" msgstr "Træk fra" -#: app/widgets/gimpwidgets-constructors.c:68 -#: app/widgets/gimpwidgets-constructors.c:101 +#: ../app/widgets/gimpwidgets-constructors.c:68 +#: ../app/widgets/gimpwidgets-constructors.c:101 msgid "Addition" msgstr "Læg til" -#: app/widgets/gimpwidgets-constructors.c:70 -#: app/widgets/gimpwidgets-constructors.c:103 +#: ../app/widgets/gimpwidgets-constructors.c:70 +#: ../app/widgets/gimpwidgets-constructors.c:103 msgid "Darken only" msgstr "Gør kun mørkere" -#: app/widgets/gimpwidgets-constructors.c:71 -#: app/widgets/gimpwidgets-constructors.c:104 +#: ../app/widgets/gimpwidgets-constructors.c:71 +#: ../app/widgets/gimpwidgets-constructors.c:104 msgid "Lighten only" msgstr "Gør kun lysere" -#: app/widgets/gimpwidgets-constructors.c:73 -#: app/widgets/gimpwidgets-constructors.c:106 +#: ../app/widgets/gimpwidgets-constructors.c:73 +#: ../app/widgets/gimpwidgets-constructors.c:106 msgid "Hue" msgstr "Farvetone" -#: app/widgets/gimpwidgets-constructors.c:74 -#: app/widgets/gimpwidgets-constructors.c:107 +#: ../app/widgets/gimpwidgets-constructors.c:74 +#: ../app/widgets/gimpwidgets-constructors.c:107 msgid "Saturation" msgstr "Mætning" #. The format string which is used to display modifier names #. * , and #. -#: app/widgets/gimpwidgets-utils.c:391 +#: ../app/widgets/gimpwidgets-utils.c:391 #, c-format msgid "<%s>" msgstr "<%s>" -#: app/widgets/gimpwidgets-utils.c:795 +#: ../app/widgets/gimpwidgets-utils.c:795 #, c-format msgid "Invalid UTF-8 data in file '%s'." msgstr "Ugyldige UTF-8-data i filen '%s'." -#: app/widgets/widgets-enums.c:23 +#: ../app/widgets/widgets-enums.c:23 msgid "Foreground" msgstr "Forgrund" -#: app/widgets/widgets-enums.c:53 +#: ../app/widgets/widgets-enums.c:53 msgid "Portrait" msgstr "Portræt" -#: app/widgets/widgets-enums.c:54 +#: ../app/widgets/widgets-enums.c:54 msgid "Landscape" msgstr "Landskab" -#: app/widgets/widgets-enums.c:113 +#: ../app/widgets/widgets-enums.c:113 msgid "Pixel values" msgstr "Punktværdier" -#: app/widgets/widgets-enums.c:115 +#: ../app/widgets/widgets-enums.c:115 msgid "HSV" msgstr "HSV" -#: app/widgets/widgets-enums.c:116 +#: ../app/widgets/widgets-enums.c:116 msgid "CMYK" msgstr "CMYK" -#: app/widgets/widgets-enums.c:171 +#: ../app/widgets/widgets-enums.c:171 msgid "Black & white" msgstr "Sort og hvid" -#: app/widgets/widgets-enums.c:172 +#: ../app/widgets/widgets-enums.c:172 msgid "Fancy" msgstr "Smart" -#: app/widgets/widgets-enums.c:199 +#: ../app/widgets/widgets-enums.c:199 msgid "GIMP help browser" msgstr "Hjælpefremviser" -#: app/widgets/widgets-enums.c:200 +#: ../app/widgets/widgets-enums.c:200 msgid "Web browser" msgstr "Internetsurfningsprogram" -#: app/widgets/widgets-enums.c:228 +#: ../app/widgets/widgets-enums.c:228 msgid "Logarithmic" msgstr "Logaritmisk" -#: app/widgets/widgets-enums.c:261 +#: ../app/widgets/widgets-enums.c:261 msgid "Icon" msgstr "Ikon" -#: app/widgets/widgets-enums.c:262 +#: ../app/widgets/widgets-enums.c:262 msgid "Current status" msgstr "Aktuel status" -#: app/widgets/widgets-enums.c:264 +#: ../app/widgets/widgets-enums.c:264 msgid "Description" msgstr "Beskrivelse" -#: app/widgets/widgets-enums.c:265 +#: ../app/widgets/widgets-enums.c:265 msgid "Icon & text" msgstr "Ikon og tekst" -#: app/widgets/widgets-enums.c:266 +#: ../app/widgets/widgets-enums.c:266 msgid "Icon & desc" msgstr "Ikon og beskrivelse" -#: app/widgets/widgets-enums.c:267 +#: ../app/widgets/widgets-enums.c:267 msgid "Status & text" msgstr "Status og tekst" -#: app/widgets/widgets-enums.c:268 +#: ../app/widgets/widgets-enums.c:268 msgid "Status & desc" msgstr "Status og beskrivelse" -#: app/widgets/widgets-enums.c:295 +#: ../app/widgets/widgets-enums.c:295 msgid "View as list" msgstr "Vis som liste" -#: app/widgets/widgets-enums.c:296 +#: ../app/widgets/widgets-enums.c:296 msgid "View as grid" msgstr "Vis som gitter" -#: app/widgets/widgets-enums.c:324 +#: ../app/widgets/widgets-enums.c:324 msgid "Normal window" msgstr "Normalt vindue" -#: app/widgets/widgets-enums.c:325 +#: ../app/widgets/widgets-enums.c:325 msgid "Utility window" msgstr "Værktøjsvindue" -#: app/widgets/widgets-enums.c:326 +#: ../app/widgets/widgets-enums.c:326 msgid "Keep above" msgstr "Behold over" -#: app/xcf/xcf-load.c:297 +#: ../app/xcf/xcf-load.c:297 msgid "" "XCF warning: version 0 of XCF file format\n" "did not save indexed colormaps correctly.\n" @@ -11005,56 +10936,44 @@ "gemte ikke indekserede farvekort rigtigt.\n" "Erstatter gråtonekort." -#: app/xcf/xcf-read.c:107 +#: ../app/xcf/xcf-read.c:107 msgid "Invalid UTF-8 string in XCF file" msgstr "Ugyldig UTF-8-streng i XCF-fil" -#: app/xcf/xcf-save.c:157 app/xcf/xcf-save.c:167 app/xcf/xcf-save.c:177 -#: app/xcf/xcf-save.c:187 app/xcf/xcf-save.c:211 app/xcf/xcf.c:342 +#: ../app/xcf/xcf-save.c:157 ../app/xcf/xcf-save.c:167 +#: ../app/xcf/xcf-save.c:177 ../app/xcf/xcf-save.c:187 +#: ../app/xcf/xcf-save.c:211 ../app/xcf/xcf.c:342 #, c-format msgid "Error saving XCF file: %s" msgstr "Fejl ved gemning af XCF-fil: %s" -#: app/xcf/xcf-write.c:86 +#: ../app/xcf/xcf-write.c:86 #, c-format msgid "Error writing XCF: %s" msgstr "Fejl ved skrivning af XCF-fil: %s" -#: app/xcf/xcf-seek.c:44 app/xcf/xcf-seek.c:61 app/xcf/xcf-seek.c:72 +#: ../app/xcf/xcf-seek.c:44 ../app/xcf/xcf-seek.c:61 ../app/xcf/xcf-seek.c:72 #, c-format msgid "Could not seek in XCF file: %s" msgstr "Kunne ikke søge i XCF-fil: %s" -#: app/xcf/xcf.c:86 app/xcf/xcf.c:143 -#, fuzzy +#: ../app/xcf/xcf.c:86 ../app/xcf/xcf.c:143 msgid "GIMP XCF image" msgstr "Gimp XCF-billede" -#: app/xcf/xcf.c:282 +#: ../app/xcf/xcf.c:282 #, c-format msgid "XCF error: unsupported XCF file version %d encountered" msgstr "XCF-fejl: ikke-understøttet XCF-filversion %d mødt" -#: data/misc/gimp.desktop.in.in.h:1 +#: ../data/misc/gimp.desktop.in.in.h:1 msgid "Create and edit images or photographs" msgstr "Opret og redigér billeder eller fotografier" -#: data/misc/gimp.desktop.in.in.h:2 +#: ../data/misc/gimp.desktop.in.in.h:2 msgid "Image Editor" msgstr "Billedredigering" -#, fuzzy -#~ msgid "Keep aspect ratio" -#~ msgstr "Fast formatforhold" - -#~ msgid "Y:" -#~ msgstr "y:" - -# ser kønnest ud uden bindestreg (kig selv på konteksten), gælder også for nogle efterfølgende -#, fuzzy -#~ msgid "Y ratio:" -#~ msgstr "Forhold x:" - #~ msgid "Constrain aspect ratio" #~ msgstr "Bevar formatforhold" @@ -11081,37 +11000,9 @@ #~ msgid "Delete Channel" #~ msgstr "Sletning af kanal" -#, fuzzy -#~ msgid "" -#~ "Channel to selection\n" -#~ "%s Add\n" -#~ "%s Subtract\n" -#~ "%s Intersect" -#~ msgstr "" -#~ "Kanal til markering \n" -#~ "%s Tilføj\n" -#~ "%s Træk fra\n" -#~ "%s%s%s Kryds med" - -#, fuzzy -#~ msgid "He_x triplet:" -#~ msgstr "He_x-triplet:" - -#, fuzzy -#~ msgid "" -#~ "Add color from FG\n" -#~ "%s from BG" -#~ msgstr "" -#~ "Tilføj farve fra forgr.\n" -#~ "%s fra baggr." - #~ msgid "Edit Indexed Color" #~ msgstr "Redigér indekseret farve" -#, fuzzy -#~ msgid "Edit indexed image palette color" -#~ msgstr "Redigér paletfarve for indekseret billede" - #~ msgid "" #~ "Open the selected entry\n" #~ "%s Raise window if already open\n" @@ -11130,14 +11021,6 @@ #~ "%s Genindlæs alle miniaturer\n" #~ "%s Fjern ekstra elementer" -#, fuzzy -#~ msgid "" -#~ "Save all errors\n" -#~ "%s Save selection" -#~ msgstr "" -#~ "Gem alle fejl\n" -#~ "%s Gem markering" - #~ msgid "" #~ "%s\n" #~ "%s To Top" @@ -11162,22 +11045,6 @@ #~ msgid "Delete Layer" #~ msgstr "Sletning af lag" -#, fuzzy -#~ msgid "" -#~ "New color from FG\n" -#~ "%s from BG" -#~ msgstr "" -#~ "Ny farve fra forgr.\n" -#~ "%s fra baggr." - -#, fuzzy -#~ msgid "" -#~ "Selection to path\n" -#~ "%s Advanced options" -#~ msgstr "" -#~ "Markering til bane\n" -#~ "%s Avancerede indstillinger" - #~ msgid "" #~ "Reset to default values\n" #~ "%s Reset all Tool Options" @@ -11215,11 +11082,6 @@ #~ msgid "Layer Too Small" #~ msgstr "Lag er for lille" -# RETMIG: find ud af hvad algoritmen dækker over og find på et bedre navn -#, fuzzy -#~ msgid "Positioned color dithering" -#~ msgstr "Positioneret farvereducering" - #~ msgid "General Palette Options" #~ msgstr "Generelle paletindstillinger" @@ -11274,11 +11136,11 @@ #~ "Could not find the GIMP Help Browser procedure. It probably was not " #~ "compiled because you don't have GtkHtml2 installed." #~ msgstr "" -#~ "Kunne ikke finde Gimp-hjælpelæserfunktionen. Den blev sandsynligvis ikke " +#~ "Kunne ikke finde Gimp-hjælpefremviserfunktionen. Den blev sandsynligvis ikke " #~ "oversat med resten af programmet fordi du ikke har GtkHtml2 installeret." #~ msgid "Could not start GIMP Help Browser" -#~ msgstr "Kunne ikke starte Gimp'ens hjælpelæser" +#~ msgstr "Kunne ikke starte Gimp'ens hjælpefremviser" #~ msgid "Internal" #~ msgstr "Intern" @@ -11286,10 +11148,6 @@ #~ msgid "Black" #~ msgstr "Sort" -# til undo-info -#~ msgid "Move Floating Layer" -#~ msgstr "Flytning af flydende markering" - #~ msgid "Changes were made to '%s'." #~ msgstr "'%s' er blevet ændret." @@ -11331,50 +11189,9 @@ #~ "Der er for mange åbne meddelelsesvinduer.\n" #~ "Meddelelser sendes til stderr istedet." -# pænere med flertal -#, fuzzy -#~ msgid "RGB color" -#~ msgstr "RGB-farver" - -#, fuzzy -#~ msgid "Indexed color" -#~ msgstr "Indekserede farver" - -#, fuzzy -#~ msgid "RGB-alpha" -#~ msgstr "RBG-alfa" - -#, fuzzy -#~ msgid "Grayscale-alpha" -#~ msgstr "Gråtone-alfa" - -#, fuzzy -#~ msgid "Indexed-alpha" -#~ msgstr "Indekseret-alfa" - -#, fuzzy -#~ msgid "Clear Saved Keyboard Shortcuts Now" -#~ msgstr "Nulstil gemte tastegenveje nu" - #~ msgid "Clear Saved Window Positions Now" #~ msgstr "Nulstil gemte vinduesplaceringer nu" -#, fuzzy -#~ msgid "Automatic" -#~ msgstr "/Automatisk" - -#, fuzzy -#~ msgid "File Open Menu" -#~ msgstr "Åbn menu" - -#, fuzzy -#~ msgid "File Save Menu" -#~ msgstr "Gem menu" - -#, fuzzy -#~ msgid "Foreground Color" -#~ msgstr "_Forgrundsfarve:" - #~ msgid "" #~ "File '%s' exists.\n" #~ "Overwrite it?" @@ -11395,16 +11212,6 @@ #~ "Kunne ikke udføre tilbagekaldsfunktionen til farveovergange. Måske er det " #~ "tilsvarende modul gået ned." -#, fuzzy -#~ msgid "" -#~ "Some images have unsaved changes.\n" -#~ "\n" -#~ "Really quit The GIMP?" -#~ msgstr "" -#~ "Nogle filer er ikke gemt.\n" -#~ "\n" -#~ "Vil du virkelig afslutte Gimp'en?" - #~ msgid "" #~ "Unable to run palette callback. The corresponding plug-in may have " #~ "crashed." @@ -11423,31 +11230,6 @@ #~ msgid "Pointer Movement Feedback" #~ msgstr "Markørbevægelse" -#, fuzzy -#~ msgid "Controller Class:" -#~ msgstr "Kontrastcykler:" - -#~ msgid "Select Temp Dir" -#~ msgstr "Vælg mappe til midlertidige filer" - -#, fuzzy -#~ msgid "Swap dir:" -#~ msgstr "Reservehukommelse:" - -#~ msgid "Select Swap Dir" -#~ msgstr "Vælg mappe til reservehukommelse" - -#, fuzzy -#~ msgid "Don't show grid" -#~ msgstr "Vis ikke gitter" - -#~ msgid "Determine File _Type:" -#~ msgstr "Bestem fil_type:" - -#, fuzzy -#~ msgid "Zoom to _Fit Window" -#~ msgstr "Zoom til vinduet" - #~ msgid "Trying legacy loader on file '%s' with unknown extension." #~ msgstr "Prøver tidligere indlæser på filen '%s' med ukendt endelse." diff -uraN gimp-2.2.4/po/es.gmo gimp-2.2.5/po/es.gmo --- gimp-2.2.4/po/es.gmo 2005-02-17 15:52:11.000000000 +0100 +++ gimp-2.2.5/po/es.gmo 2005-03-08 16:48:49.000000000 +0100 @@ -329,8 +329,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: es Report-Msgid-Bugs-To: -POT-Creation-Date: 2005-02-06 15:54+0100 -PO-Revision-Date: 2005-02-12 17:30+0100 +POT-Creation-Date: 2005-03-05 23:31+0100 +PO-Revision-Date: 2005-03-05 23:35+0100 Last-Translator: Francisco Javier F. Serrador Language-Team: Spanish MIME-Version: 1.0 @@ -372,7 +372,7 @@ Copyright © 1995-2004 Spencer Kimball, Peter Mattis y el equipo de desarrollo de El Gimp.¡El archivo de consejos de El Gimp no ha podido ser analizado!¡El archivo de consejos de GIMP para estar perdido!Un archivo llamado '%s' ya existe._Añadir a selecciónÁ_nguloAcerca de El GimpAcciónActivar la imagen con el _focoFiltros activosSupermuestreo adaptativoAñadirAñadir canal al_faAñadir un canal alfaAñadir un anclaAñadir un canalAñadir color al mapa de coloresAñadir guía:Añadir guíasAñadir una guía horizontalAñadir má_scara de capa...Añadir una capaAñadir máscara de capaAñadir una rutaAñadir un trazoAñadir una capa de textoAñadir una guía verticalAñadir una máscara a la capaAñade color desde el fondoAñade color desde el frenteAñadir máscara de capaAñadir texto a la imagenAñadir el color actual al historial de coloresAñadir el filtro seleccionado a la lista de filtros activos.Añadir a la paleta %sAñadir a la selección actualAñadiendo el tema «%s» (%s) SumaControles adicionales de entradaAjustar el brillo y el contrasteAjustar el balance de coloresAjustar las curvas de colorAjustar los niveles de colorAjustar el brillo y el contrasteAjustar el balance de coloresAjustar las curvas de colorAjustar niveles de colorAjustar el tono / luminosidad / saturaciónAjustar el tono y la saturaciónAjustar los niveles automáticamenteAjusteOpciones avanzadasAfectar:Área afectada %sAerógrafoAerógrafo de presión variableAlfa a _selecciónAlineadoAlienaciónTodos los canalesTodos los archivosTodos los archivos (*.*)Todas las imágenes y datos de «deshacer» que no quepan en la «cache de mosaico» serán escritos en un archivo de intercambio. Este archivo debería estar situado en un sistema de archivos local con suficiente espacio libre (varios cientos de Mib). En un sistema UNIX, debería usar el directorio temporal global del sistema («/tmp» ó «/var/tmp»).Permitir a las regiones completamente transparentes ser rellenadasPermitir que las regiones completamente transparentes sean seleccionadasPermitir agrandar %sAlfaAlfa a selecciónAlfa:Una imagen del tamaño elegido usará más memoria que lo que está configurado como «Tamaño de imagen máximo» en el diálogo Preferencias (actualmente %s).An_imaciónAnclar la selección flotanteAncla la capa flotanteAnclar la selección flotanteÁngulo:Anti-borrado %sAlisadoAparienciaAplicar máscara de capaAplicar _máscara de capaAplicar umbralAplicar máscara de capa¿Está seguro de que quiere borrar «%s» de la lista y del disco?¿Está seguro de que quiere borrar «%s» de la lista y del disco?Como en las _preferenciasSolicitar una confirmación antes de cerrar una imagen que no ha sido guardada.Proporción:Proporción:Adjuntar parásitoAdjuntar parásito a la imagenAdjuntar una parásito al elementoAdjuntar parásitoAutor:Auto_Seguir automáticamente la imagen activaAuto encogerEncoger selección automáticamenteAuto-redimensionar ventanaCarga automáticaDetectado automáticamenteFiltros disponiblesTipos disponibles:Relleno con color de fondo_Brillo-ContrasteB_úferesFondoColor de fondoColor de fondo establecido a:Fondo: %d, %d, %dInversa (correctivo)Área base rellenada en todas las capas visiblesSelección base en todas las capas visiblesDetrásBiselBilinealNegro y blancoNegro:Mezclar colores de los pu_ntos finales_Mezcla (Blend)MezclaMezclar opacidad de los puntos f_inalesMezcla: Mezcla: No válido para imágenes indexadas.Mezclando...AzulAzul:DesenfoqueDesenfocar o enfocarBor_de...Bordear el canalSelección de bordeSelección de borde enBrillo-ContrasteBrillo-Contraste no funciona sobre capas indexadas.BrochaEditor de brochasCarpetas de brochasInterfaz de brochasBrochas:BrochasMenú de brochasRelleno de cubetaBúferesMenú de búferesEnnegrecerCaboPor extensiónAl revertir la imagen al estado guardado en el disco, perderá todos sus cambios, incluyendo toda la información de deshacer.CMYKC_alibrar..._Recoge-colorC_olumnas:C_ombinarCalibrar resolución del monitorNo se puede deshacer %sTamaño del _lienzo...CancelarCancelar la guíaNo se puede añadir una máscara de capa de dimensiones distintas a la capa especificada.No se puede añadir una máscara de capa a una capa sin canal alfa.No se puede añadir una máscara a la capa dado que no es parte de una imagen.No se puede fijar esta capa porque no es una selección flotante.No se puede convertir a una paleta con más de 256 colores.No se puede crear una nueva capa a partir de la selección flotante porque ésta pertenece a una máscara de capa o canal.No se puede crear la carpeta «%s»: %sNo se puede crear la vista previaNo se puede recortar porque la selección actual está vacía.No se puede expandir ${%s}No se puede hacer flotar la selección porque la región seleccionada está vacía.No se puede elevar una capa sin alfa.No se puede guardar. No hay nada seleccionado.No se puede trazar un canal vacío.No se puede trazar una ruta vacía.Tamaño del lienzoModo de _relleno del lienzo:Centro X:Centro Y:CentradoCambiar el color de fondoCambiar entrada del mapa de coloresCambiar el color de frenteCambiar la resolución de la imagenCambiar la unidad de medidaCambiar el tamaño de la impresiónCambiar la capa actual o rutaCambiar el color de fondo de la rejillaCambiar el color de frente de la rejillaCambiar la paleta indexadaCambiar la perspectiva de la capa o la selecciónHa fallado el cambio de la combinación de teclas.CanalAtributos del canalNombre del canal:El canal no puede descender más.El canal no puede ser elevado más alto.Color del canalEl canal ya está en el fondo.El canal ya está en la cima.Canal a sele_cciónCanal a selecciónCanal a selecciónCanal:CanalesMenú de canalesTa_maño de la cuadrícula:Seleccionar el estilo de trazoCírculo_LimpiarLimpiarLimpiar el canalVaciar historial de deshacerBorrar todo el textoLimpiar los erroresVaciar historial de deshacer...Presione «Continuar» para aceptar los ajustes de arriba.Pulse en «Continuar» para crear su carpeta personal de El Gimp.Pulse en «Continuar» para iniciar la instalación de usuario de El Gimp.Pulse «Continuar» para proceder con la instalación de usuario.Pulse para conectar esta ancla con el extremo seleccionado.Pulse para crear una ruta nueva. (pruebe con Mayús.)Pulse para crear un componente nuevo de la ruta.Pulse para crear una ruta nueva.Pulsar para crear la vista previaPulse para borrar esta ancla.Pulse para insertar un ancla en la ruta. (pruebe con Mayús.)Pulse para hacer este nodo angular.Pulse para abrir la ruta.Pulse para seleccionar la ruta a editar.Pulse para actualizar la vista previa -Presione %s veces para forzar la actualización aún si la vista previa está actualizadaPulse y arrastre para cambiar la forma de la curva. (Mayús.: simétricamente)Pulse y arrastre para mover el ancla.Pulse y arrastre para mover las anclas.Pulse y arrastre para mover el componente. (pruebe con Mayús.)Pulse y arrastre para mover el ancla. (pruebe con Mayús.)Pulse y arrastre para mover la ruta.Pulsar: seleccionarPulsar: seleccionar Arrastrar: moverResultado del recortePortapapelesRecortada hasta la capa más bajaRecortada según la imagenClonarCerrar %sCerrar todas las solapas¿Desea cerrar todas las solapas?Cerrar esta solapaCo_piar rutaColo_resColorBalance de colorFiltros de pantalla de colorRecoge-colorInformación del recoge-color_Balance de color..._Difuminar el color:Balance de color sólo funciona sobre capas con color RGB.Borrar colorÍndice de colores:Color:_Mapa de coloresE_spacio de color:Colori_zar..._Tipo de coloreado para el segmento_Tipo de coloreado para la selecciónColorearColorear sólo funciona sobre capas de color RGB.Colorear la imagenColorear la imagenMapa de coloresEditor del mapa de coloresMenú del mapa de coloresColumnas:Come_ntario:ComentarioCon_traste:_ConvoluciónConfiguración de los filtros de colores de la pantallaConfigurar los dispositivos de entrada e_xtendidosConfigurar la _rejillaConfigurar la rejillaConfigurar la imagen de la rejillaConfigurar combinaciones de teclasConfigurar las combinaciones de _teclas...Configurar el filtro seleccionadoConfigurar el filtro seleccionado: %sConfirmar el tamaño de la imagenConfirmar escaladoConfirmar la edición del textoConfirmar el cierre de las _imágenes no guardadasCombinaciones de teclas en conflictoCónico (asimétrico)Cónico (simétrico)Conectar los trazosConstanteRestriccionesContextoLos cursores dependientes del contexto son divertidos. Están habilitados de forma predeterminada. Sin embargo requieren procesamiento extra que quizá usted podría necesitar si no los utiliza.ContinuarContribucionesConvertirConvertir el bordeConvertir la imagen a escala de grisesConvertir la imagen a colores indexadosConvertir la imagen a colores indexadosConvertir la imagen a RGBConvertir la imagenConvertir a indexados (paso 2)...Convertir la imagen a indexados (paso 3)Convertir a indexado...ConvoluciónTipo de convolución %sCopiar (con nombre)Copiar _visibleCopiando el archivo «%s» desde «%s»...Copyright:Segmento corrupto %d en el archivo de degradado «%s».No se ha podido crear «%s»: %sNo se ha podido crear el archivo temporal para «%s»: %sNo se ha podido borrar «%s»: %sNo se ha podido encontrar el navegador de ayuda de El Gimp.No se ha podido abrir «%s» para lectura: %sNo se ha podido abrir «%s» para escritura: %sNo se ha podido abrir la miniatura «%s»: %sNo se ha podido leer %d bytes de «%s»: %sNo se ha podido buscar dentro del archivo XCF: %sNo se ha podido iniciar el complemento del navegador de ayuda de El Gimp.Cuenta:_Recortar la capaCrear un _empotrable nuevoCrear una plantilla nuevaCrear una imagen nuevaCrear una capa nuevaCrear una plantilla nuevaCrear una nueva vista para esta imagenCrear una imagen nueva desde la plantilla seleccionadaCrear una plantilla nuevaCree y edite imágenes o fotografíasCrear y editar rutasCrear una ruta desde el textoCrear una selección desde la rutaCreando la vista previa...Creando la carpeta «%s»...RecortarRecortar y cambiar tamañoInformación de recorte y cambio de tamañoRecortar la imagenRecortar la capaRecortar la imagenRecortar o redimensionar una imagenRecortar: Sólo cruzCor_tarCor_tar con nombre...Cúbica (la mejor)E_stado actualAltura actual:Sólo la capa actualEstado actualAnchura actual:CursorM_odo del cursor:Re_nderizado del cursor:Tipo de curvaCurvasLas curvas para capas indexadas no pueden ser ajustadas.PersonalizadaColor personalizadoDegradado personalizadoColor de relleno del lienzo:CortarCortar (con nombre)CíanCían:D_uplicar brochaD_uplicar canalD_uplicar degradadoD_uplicar la capaD_uplicar paletaD_uplicar rutaD_uplicar patrónD_uplicar la plantilla...Color de los cuadros oscurosOscurecer sóloGuión punto punto...Punto y guión...Patrón de guiones:Preparación del guión:Con guionesFecha:DepurarApariencia predeterminada en el modo de pantalla completaApariencia predeterminada en el modo normalRejilla predeterminadaRejilla de imagen predeterminada_Interpolación predeterminada:Tamaño predeterminado de las vistas previas de _capas y canales:Umbral prede_terminado:Borrar el anclaBorrar anclasBorrar másca_ra de capaBorrar máscara de capaBorrar objetoBorrar el segmentoBorrar la plantillaBorrar brochaBorra el canalBorrar el colorBorra el degradadoBorra la capaBorrar máscara de capaBorrar paletaBorrar rutaBorrar patrón...Borrar las opciones guardadas...Borra el búfer seleccionadoBorrar la plantilla seleccionadaBorrar esta imagenBorrar vectoresEl borrado de «%s» ha fallado: %sPuntos densosDesaturarLa desaturación sólo funciona sobre capas de color RGB.DescripciónDiseñoEstado del dispositivoDispositivosDiálogosMenú de diálogosDiamanteDiferenciaColor directoDesactivar máscara de capaDesactivar la máscara rápidaEliminar la información de textoPantallaNavegación de la vistaMostrar _filtros...Mostrar procedimientosTipo de pantalla:Mostrando [%0.6f, %0.6f]DisolverDistancia:Distancia: %0.6fDifuminadoDividirHacer una instalación de usuario _fresca¿Realmente desea reiniciar todos los filtros con sus valores predeterminados?¿Realmente desea reiniciar todas las opciones de herramientas con sus valores predeterminados?¿Quiere reemplazarlo con la imagen que está guardando?_No guardarEmpotrable_Historial del documentoHistorial del documentoDocumentosMenú de documentosQuemadoBlanquearBlanquear o ennegrecer los trazosblanquear/ennegrecerGuiones doblesArrastrar el anclaArrastrar las anclasArrastrar la curvaArrastrar el tiradorArrastrar la rutaArrastrar: moverDibujar con tintaDibujableMod dibujableProcedimientos de dibujablesSoltar la capa nuevaBorrar la ruta nuevaDebido a la falta de tipografías la funcionalidad de texto no está disponible.Volcar eventos desde este controladorDuplicar brochaDuplicar canalDuplicar degradadoDuplica la capaDuplicar paletaDuplicar rutaDuplicar patrónDuplicar las plantilla seleccionada¡AY!: No se puede deshacerE_xportar ruta..._Muy pequeñoComportamiento de los bordesDe_tectar bordesEditarEditar los atributos del canalEditar el color del canalEditar la entrada de la paleta de coloresEditar la entrada del mapa de coloresEditar atributos de capaAñadir máscara de capaModo ediciónEditar el color de la paletaEditar atributos de la rutaEditar los atributos de la máscara rápidaEditar el color de las máscara rápidaEditar plantillaEditar brochaEditar los atributos del canalEditar el colorEditar la entrada #%d del mapa de coloresEdita el degradadoEditar atributos de capaEditar paleta...Editar atributos de la rutaEditar patrón...Procedimientos de ediciónEditar la plantilla seleccionadaSelección elípticaCanal vacíoCapa vacíaRuta vacíaCapa de texto vacíaNombre de variable vacío en el archivo de entorno %sRea_lzar [Enhance]Activar la máscara rápidaActivar difuminado de _transparenciaActivar este controladorActiva la visualización de un útil consejo de El Gimp al iniciar.Activa la visualización de los consejos de las herramientas.MonumentalIngrese un nombre para la paleta combinadaIngrese un nombre para las opciones guardadasPonga un nombre a este búferIngrese el nombre para esta plantillaIngrese un nombre nuevo para las opciones guardadasIntroduzca dirección (URI):EntornoCarpetas de entornoBalancearLa ecualización no funciona en capas indexadas.Borrar el color de fondo o la transparenciaGomaCo_nsola de erroresConsola de erroresMenú de la consola de errorOcurrió un error al guardar el archivo XCF: %sHa ocurrido un error al analizar «%s» en la línea %d: %sOcurrió un error al leer «%s»: %sOcurrió un error al leer el archivo de brocha «%s»: %sOcurrió un error al escribir «%s»: %sOcurrió un error al escribir XCF: %sError al escribir el archivo «%s»: +Presione %s veces para forzar la actualización aún si la vista previa está actualizadaPulse y arrastre para cambiar la forma de la curva. (Mayús.: simétricamente)Pulse y arrastre para mover el ancla.Pulse y arrastre para mover las anclas.Pulse y arrastre para mover el componente. (pruebe con Mayús.)Pulse y arrastre para mover el ancla. (pruebe con Mayús.)Pulse y arrastre para mover la ruta.Pulsar: seleccionarPulsar: seleccionar Arrastrar: moverResultado del recortePortapapelesRecortada hasta la capa más bajaRecortada según la imagenClonarCerrar %sCerrar todas las solapas¿Desea cerrar todas las solapas?Cerrar esta solapaCo_piar rutaColo_resColorBalance de colorFiltros de pantalla de colorRecoge-colorInformación del recoge-color_Balance de color..._Difuminar el color:Balance de color sólo funciona sobre capas con color RGB.Borrar colorÍndice de colores:Color:_Mapa de coloresE_spacio de color:Colori_zar..._Tipo de coloreado para el segmento_Tipo de coloreado para la selecciónColorearColorear sólo funciona sobre capas de color RGB.Colorear la imagenColorear la imagenMapa de coloresEditor del mapa de coloresMenú del mapa de coloresColumnas:Come_ntario:ComentarioCon_traste:_ConvoluciónConfiguración de los filtros de colores de la pantallaConfigurar los dispositivos de entrada e_xtendidosConfigurar la _rejillaConfigurar la rejillaConfigurar la rejilla de la imagenConfigurar combinaciones de teclasConfigurar las combinaciones de _teclas...Configurar el filtro seleccionadoConfigurar el filtro seleccionado: %sConfirmar el tamaño de la imagenConfirmar escaladoConfirmar la edición del textoConfirmar el cierre de las _imágenes no guardadasCombinaciones de teclas en conflictoCónico (asimétrico)Cónico (simétrico)Conectar los trazosConstanteRestriccionesContextoLos cursores dependientes del contexto son divertidos. Están habilitados de forma predeterminada. Sin embargo requieren procesamiento extra que quizá usted podría necesitar si no los utiliza.ContinuarContribucionesConvertirConvertir el bordeConvertir la imagen a escala de grisesConvertir la imagen a colores indexadosConvertir la imagen a colores indexadosConvertir la imagen a RGBConvertir la imagenConvertir a indexados (paso 2)...Convertir la imagen a indexados (paso 3)Convertir a indexado...ConvoluciónTipo de convolución %sCopiar (con nombre)Copiar _visibleCopiando el archivo «%s» desde «%s»...Copyright:Segmento corrupto %d en el archivo de degradado «%s».No se ha podido crear «%s»: %sNo se ha podido crear el archivo temporal para «%s»: %sNo se ha podido borrar «%s»: %sNo se ha podido encontrar el navegador de ayuda de El Gimp.No se ha podido abrir «%s» para lectura: %sNo se ha podido abrir «%s» para escritura: %sNo se ha podido abrir la miniatura «%s»: %sNo se ha podido leer %d bytes de «%s»: %sNo se ha podido buscar dentro del archivo XCF: %sNo se ha podido iniciar el complemento del navegador de ayuda de El Gimp.Cuenta:_Recortar la capaCrear un _empotrable nuevoCrear una plantilla nuevaCrear una imagen nuevaCrear una capa nuevaCrear una plantilla nuevaCrear una nueva vista para esta imagenCrear una imagen nueva desde la plantilla seleccionadaCrear una plantilla nuevaCree y edite imágenes o fotografíasCrear y editar rutasCrear una ruta desde el textoCrear una selección desde la rutaCreando la vista previa...Creando la carpeta «%s»...RecortarRecortar y cambiar tamañoInformación de recorte y cambio de tamañoRecortar la imagenRecortar la capaRecortar la imagenRecortar o redimensionar una imagenRecortar: Sólo cruzCor_tarCor_tar con nombre...Cúbica (la mejor)E_stado actualAltura actual:Sólo la capa actualEstado actualAnchura actual:CursorM_odo del cursor:Re_nderizado del cursor:Tipo de curvaCurvasLas curvas para capas indexadas no pueden ser ajustadas.PersonalizadaColor personalizadoDegradado personalizadoColor de relleno del lienzo:CortarCortar (con nombre)CíanCían:D_uplicar brochaD_uplicar canalD_uplicar degradadoD_uplicar la capaD_uplicar paletaD_uplicar rutaD_uplicar patrónD_uplicar la plantilla...Color de los cuadros oscurosOscurecer sóloGuión punto punto...Punto y guión...Patrón de guiones:Preparación del guión:Con guionesFecha:DepurarApariencia predeterminada en el modo de pantalla completaApariencia predeterminada en el modo normalRejilla predeterminadaRejilla de imagen predeterminada_Interpolación predeterminada:Tamaño predeterminado de las vistas previas de _capas y canales:Umbral prede_terminado:Borrar el anclaBorrar anclasBorrar másca_ra de capaBorrar máscara de capaBorrar objetoBorrar el segmentoBorrar la plantillaBorrar brochaBorra el canalBorrar el colorBorra el degradadoBorra la capaBorrar máscara de capaBorrar paletaBorrar rutaBorrar patrón...Borrar las opciones guardadas...Borra el búfer seleccionadoBorrar la plantilla seleccionadaBorrar esta imagenBorrar vectoresEl borrado de «%s» ha fallado: %sPuntos densosDesaturarLa desaturación sólo funciona sobre capas de color RGB.DescripciónDiseñoEstado del dispositivoDispositivosDiálogosMenú de diálogosDiamanteDiferenciaColor directoDesactivar máscara de capaDesactivar la máscara rápidaEliminar la información de textoPantallaNavegación de la vistaMostrar _filtros...Mostrar procedimientosTipo de pantalla:Mostrando [%0.6f, %0.6f]DisolverDistancia:Distancia: %0.6fDifuminadoDividirHacer una instalación de usuario _fresca¿Realmente desea reiniciar todos los filtros con sus valores predeterminados?¿Realmente desea reiniciar todas las opciones de herramientas con sus valores predeterminados?¿Quiere reemplazarlo con la imagen que está guardando?_No guardarEmpotrable_Historial del documentoHistorial del documentoDocumentosMenú de documentosQuemadoBlanquearBlanquear o ennegrecer los trazosblanquear/ennegrecerGuiones doblesArrastrar el anclaArrastrar las anclasArrastrar la curvaArrastrar el tiradorArrastrar la rutaArrastrar: moverDibujar con tintaDibujableMod dibujableProcedimientos de dibujablesSoltar la capa nuevaBorrar la ruta nuevaDebido a la falta de tipografías la funcionalidad de texto no está disponible.Volcar eventos desde este controladorDuplicar brochaDuplicar canalDuplicar degradadoDuplica la capaDuplicar paletaDuplicar rutaDuplicar patrónDuplicar las plantilla seleccionada¡AY!: No se puede deshacerE_xportar ruta..._Muy pequeñoComportamiento de los bordesDe_tectar bordesEditarEditar los atributos del canalEditar el color del canalEditar la entrada de la paleta de coloresEditar la entrada del mapa de coloresEditar atributos de capaAñadir máscara de capaModo ediciónEditar el color de la paletaEditar atributos de la rutaEditar los atributos de la máscara rápidaEditar el color de las máscara rápidaEditar plantillaEditar brochaEditar los atributos del canalEditar el colorEditar la entrada #%d del mapa de coloresEdita el degradadoEditar atributos de capaEditar paleta...Editar atributos de la rutaEditar patrón...Procedimientos de ediciónEditar la plantilla seleccionadaSelección elípticaCanal vacíoCapa vacíaRuta vacíaCapa de texto vacíaNombre de variable vacío en el archivo de entorno %sRea_lzar [Enhance]Activar la máscara rápidaActivar difuminado de _transparenciaActivar este controladorActiva la visualización de un útil consejo de El Gimp al iniciar.Activa la visualización de los consejos de las herramientas.MonumentalIngrese un nombre para la paleta combinadaIngrese un nombre para las opciones guardadasPonga un nombre a este búferIngrese el nombre para esta plantillaIngrese un nombre nuevo para las opciones guardadasIntroduzca dirección (URI):EntornoCarpetas de entornoBalancearLa ecualización no funciona en capas indexadas.Borrar el color de fondo o la transparenciaGomaCo_nsola de erroresConsola de erroresMenú de la consola de errorOcurrió un error al guardar el archivo XCF: %sHa ocurrido un error al analizar «%s» en la línea %d: %sOcurrió un error al leer «%s»: %sOcurrió un error al leer el archivo de brocha «%s»: %sOcurrió un error al escribir «%s»: %sOcurrió un error al escribir XCF: %sError al escribir el archivo «%s»: %sOcurrió un error al escribir en «%s»: %sHa ocurrido un error al escribir el archivo temporal para «%s»: %s No se ha creado ningún archivo.Ha ocurrido un error mientras se escribía el archivo temporal para «%s»: %s El archivo original no ha sido modificado.ErroresEvento_Muy grandeExpandida lo necesarioExportar ruta a un SVGExportar todas las rutas desde esta imagenExportar la ruta activaExposición:Dispositivos de entrada extendidosExtensionesRelleno con color de frenteFrente a fondo (HSV tono en sentido horario)Frente a fondo (HSV en sentido anti-horario)Frente a fondo (HSV)Frente a fondo (RGB)Frente a transparenteFrente a transparentePP/SPColor PP/SPFS relajadoFS rigurosoFS a capa_Ajustar lienzo a las capasDesvanecimientoFallo al importar degradados desde «%s»: %sFallo al importar rutas desde «%s»: %sFantasíaError fatal de análisis en el archivo de brocha «%s»: Bytes = 0.Error fatal de análisis en el archivo de brocha «%s»: El archivo parece estar truncado.Error fatal de análisis en el archivo de brocha «%s»: El archivo está corrupto.Error fatal de análisis en el archivo de brocha «%s»: Altura = 0.Error fatal de análisis: en el archivo de brocha «%s»: No es un archivo de brocha de de El Gimp.Error fatal de análisis en el archivo de brocha «%s»: Forma de brocha de GIMP desconocida.Error fatal de análisis en el archivo de brocha «%s»: Versión de brocha de El Gimp desconocida.Error fatal de análisis en el archivo de brocha «%s»: Profundidad desconocida %d.Error fatal de análisis en el archivo de brocha «%s»: Versión desconocida %d.Error fatal de análisis en el archivo de broca «%s»: Profundidad de brocha no soportada %d diff -uraN gimp-2.2.4/po/es.po gimp-2.2.5/po/es.po --- gimp-2.2.4/po/es.po 2005-02-14 16:33:59.000000000 +0100 +++ gimp-2.2.5/po/es.po 2005-03-08 16:48:00.000000000 +0100 @@ -12,8 +12,8 @@ msgstr "" "Project-Id-Version: es\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-02-06 15:54+0100\n" -"PO-Revision-Date: 2005-02-12 17:30+0100\n" +"POT-Creation-Date: 2005-03-05 23:31+0100\n" +"PO-Revision-Date: 2005-03-05 23:35+0100\n" "Last-Translator: Francisco Javier F. Serrador \n" "Language-Team: Spanish \n" "MIME-Version: 1.0\n" @@ -158,7 +158,8 @@ #: ../app/main.c:522 msgid " --session Use an alternate sessionrc file.\n" -msgstr " --session U so de un archivo de sesión alternativo.\n" +msgstr "" +" --session U so de un archivo de sesión alternativo.\n" #: ../app/main.c:523 msgid " -g, --gimprc Use an alternate gimprc file.\n" @@ -166,10 +167,12 @@ #: ../app/main.c:524 msgid " --system-gimprc Use an alternate system gimprc file.\n" -msgstr " --system-gimprc Usar un archivo de sistema «gimprc» alternativo.\n" +msgstr "" +" --system-gimprc Usar un archivo de sistema «gimprc» alternativo.\n" #: ../app/main.c:525 -msgid " --dump-gimprc Output a gimprc file with default settings.\n" +msgid "" +" --dump-gimprc Output a gimprc file with default settings.\n" msgstr "" " --dump-gimprc Saca un archivo gimprc con la configuración " "predeterminada.\n" @@ -185,7 +188,8 @@ # //R Posiblemente estará mal # Creo que ahora está un poco mejor. FVD #: ../app/main.c:527 -msgid " --debug-handlers Enable non-fatal debugging signal handlers.\n" +msgid "" +" --debug-handlers Enable non-fatal debugging signal handlers.\n" msgstr "" " --debug-handlers Activar los manejadores de señales no fatales de " "depuración.\n" @@ -1064,7 +1068,7 @@ #: ../app/actions/documents-commands.c:251 ../app/actions/file-commands.c:170 #: ../app/dialogs/file-open-dialog.c:198 ../app/dialogs/file-open-dialog.c:249 -#: ../app/dialogs/file-open-location-dialog.c:193 +#: ../app/dialogs/file-open-location-dialog.c:195 #: ../app/display/gimpdisplayshell-dnd.c:334 #: ../app/widgets/gimplayertreeview.c:804 ../app/widgets/gimptoolbox-dnd.c:125 #, c-format @@ -1362,7 +1366,7 @@ msgid "_Quit" msgstr "_Salir" -#: ../app/actions/file-commands.c:215 ../app/dialogs/file-save-dialog.c:281 +#: ../app/actions/file-commands.c:215 ../app/dialogs/file-save-dialog.c:282 #, c-format msgid "" "Saving '%s' failed:\n" @@ -1391,7 +1395,8 @@ #: ../app/actions/file-commands.c:291 msgid "Revert failed. No file name associated with this image." -msgstr "Falló al revertir. No hay un nombre de archivo asociado con esta imagen." +msgstr "" +"Falló al revertir. No hay un nombre de archivo asociado con esta imagen." #: ../app/actions/file-commands.c:303 msgid "Revert Image" @@ -2466,7 +2471,8 @@ #: ../app/actions/plug-in-commands.c:207 msgid "Do you really want to reset all filters to default values?" -msgstr "¿Realmente desea reiniciar todos los filtros con sus valores predeterminados?" +msgstr "" +"¿Realmente desea reiniciar todos los filtros con sus valores predeterminados?" #: ../app/actions/qmask-actions.c:42 msgid "Quick Mask Menu" @@ -2697,7 +2703,8 @@ #: ../app/actions/templates-commands.c:243 #, c-format -msgid "Are you sure you want to delete template '%s' from the list and from disk?" +msgid "" +"Are you sure you want to delete template '%s' from the list and from disk?" msgstr "¿Está seguro de que quiere borrar «%s» de la lista y del disco?" #: ../app/actions/text-editor-actions.c:44 @@ -3527,7 +3534,8 @@ #: ../app/config/gimprc-blurbs.h:157 msgid "Sets the text to appear in image window titles." -msgstr "Establece el texto que aparecerá en los títulos de las ventanas de imágenes." +msgstr "" +"Establece el texto que aparecerá en los títulos de las ventanas de imágenes." #: ../app/config/gimprc-blurbs.h:160 msgid "When enabled, the GIMP will use a different info window per image view." @@ -3544,13 +3552,15 @@ "después de abrirse, de otro modo será mostrada con una escala de 1:1." #: ../app/config/gimprc-blurbs.h:167 -msgid "Install a private colormap; might be useful on 8-bit (256 colors) displays." +msgid "" +"Install a private colormap; might be useful on 8-bit (256 colors) displays." msgstr "" "Instala un mapa de color privado; podría ser muy útil en las pantallas de 8 " "bits (256 colores)." #: ../app/config/gimprc-blurbs.h:170 -msgid "Sets the level of interpolation used for scaling and other transformations." +msgid "" +"Sets the level of interpolation used for scaling and other transformations." msgstr "" "Establece el nivel de interpolación utilizado para el redimensionado y otras " "transformaciones." @@ -3693,7 +3703,8 @@ "inicio." #: ../app/config/gimprc-blurbs.h:265 -msgid "Remember the current tool, pattern, color, and brush across GIMP sessions." +msgid "" +"Remember the current tool, pattern, color, and brush across GIMP sessions." msgstr "" "Recordar la herramienta, el patrón, el color y las brochas actuales entre " "distintas sesiones de El Gimp." @@ -3853,7 +3864,8 @@ #: ../app/config/gimprc-blurbs.h:350 msgid "Restore saved keyboard shortcuts on each GIMP startup." -msgstr "Restaurar las combinaciones de teclas guardadas en cada inicio de El Gimp." +msgstr "" +"Restaurar las combinaciones de teclas guardadas en cada inicio de El Gimp." # "si es", no "si sea". FVD #: ../app/config/gimprc-blurbs.h:353 @@ -3916,7 +3928,8 @@ #: ../app/config/gimprc-blurbs.h:391 msgid "Sets the size of the checkerboard used to display transparency." -msgstr "Establece el tamaño del cuadriculado utilizado para mostrar la transparencia." +msgstr "" +"Establece el tamaño del cuadriculado utilizado para mostrar la transparencia." #: ../app/config/gimprc-blurbs.h:394 msgid "" @@ -4454,7 +4467,7 @@ msgstr "Cortar" #: ../app/core/core-enums.c:1058 ../app/core/core-enums.c:1086 -#: ../app/tools/gimptexttool.c:142 ../app/widgets/widgets-enums.c:263 +#: ../app/tools/gimptexttool.c:144 ../app/widgets/widgets-enums.c:263 msgid "Text" msgstr "Texto" @@ -4689,7 +4702,8 @@ #: ../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." +msgstr "" +"Error fatal de análisis en el archivo de brocha «%s»: Versión desconocida %d." #: ../app/core/gimpbrush.c:625 ../app/core/gimpbrush.c:745 #, c-format @@ -5021,7 +5035,8 @@ msgstr "El color de frente de la rejilla." #: ../app/core/gimpgrid.c:139 -msgid "The background color of the grid; only used in double dashed line style." +msgid "" +"The background color of the grid; only used in double dashed line style." msgstr "" "El color de fondo de la rejilla, sólo se utiliza en el estilo de línea de " "guiones dobles." @@ -5035,7 +5050,8 @@ msgstr "Espacio vertical de las líneas de la rejilla." #: ../app/core/gimpgrid.c:159 -msgid "Horizontal offset of the first grid line; this may be a negative number." +msgid "" +"Horizontal offset of the first grid line; this may be a negative number." msgstr "" "Deslizamiento horizontal de la primera línea de la rejilla, puede ser un " "número negativo." @@ -5421,7 +5437,8 @@ #: ../app/core/gimplayer.c:1035 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." +msgstr "" +"No se puede añadir una máscara a la capa dado que no es parte de una imagen." #: ../app/core/gimplayer.c:1042 msgid "Unable to add a layer mask since the layer already has one." @@ -5513,22 +5530,26 @@ #: ../app/core/gimppalette.c:484 #, c-format msgid "Reading palette file '%s': Missing RED component in line %d." -msgstr "Leyendo el archivo de paleta «%s»: Falta la componente ROJO en la línea %d." +msgstr "" +"Leyendo el archivo de paleta «%s»: Falta la componente ROJO en la línea %d." #: ../app/core/gimppalette.c:492 #, c-format msgid "Reading palette '%s': Missing GREEN component in line %d." -msgstr "Leyendo el archivo de paleta «%s»: Falta la componente VERDE en la línea %d." +msgstr "" +"Leyendo el archivo de paleta «%s»: Falta la componente VERDE en la línea %d." #: ../app/core/gimppalette.c:500 #, c-format msgid "Reading palette file '%s': Missing BLUE component in line %d." -msgstr "Leyendo el archivo de paleta «%s»: Falta la componente AZUL en la línea %d." +msgstr "" +"Leyendo el archivo de paleta «%s»: Falta la componente AZUL en la línea %d." #: ../app/core/gimppalette.c:510 #, c-format msgid "Reading palette file '%s': RGB value out of range in line %d." -msgstr "Leyendo el archivo de paleta «%s»: Valor RGB fuera de rango en la línea %d." +msgstr "" +"Leyendo el archivo de paleta «%s»: Valor RGB fuera de rango en la línea %d." #: ../app/core/gimppattern.c:337 ../app/core/gimppattern.c:384 #: ../app/core/gimppattern.c:415 @@ -5540,7 +5561,8 @@ #: ../app/core/gimppattern.c:357 #, c-format -msgid "Fatal parse error in pattern file '%s': Unknown pattern format version %d." +msgid "" +"Fatal parse error in pattern file '%s': Unknown pattern format version %d." msgstr "" "Error de análisis fatal en el archivo de patrón «%s»: Versión del formato de " "patrón desconocida %d." @@ -5815,20 +5837,20 @@ msgid "Enter location (URI):" msgstr "Introduzca dirección (URI):" -#: ../app/dialogs/file-save-dialog.c:184 +#: ../app/dialogs/file-save-dialog.c:185 msgid "File exists" msgstr "El archivo ya existe" -#: ../app/dialogs/file-save-dialog.c:189 +#: ../app/dialogs/file-save-dialog.c:190 msgid "_Replace" msgstr "_Reemplazar" -#: ../app/dialogs/file-save-dialog.c:199 +#: ../app/dialogs/file-save-dialog.c:200 #, c-format msgid "A file named '%s' already exists." msgstr "Un archivo llamado '%s' ya existe." -#: ../app/dialogs/file-save-dialog.c:204 +#: ../app/dialogs/file-save-dialog.c:205 msgid "Do you want to replace it with the image you are saving?" msgstr "¿Quiere reemplazarlo con la imagen que está guardando?" @@ -5838,7 +5860,7 @@ #: ../app/dialogs/grid-dialog.c:82 msgid "Configure Image Grid" -msgstr "Configurar la imagen de la rejilla" +msgstr "Configurar la rejilla de la imagen" #: ../app/dialogs/image-merge-layers-dialog.c:60 msgid "Merge Layers" @@ -6289,7 +6311,8 @@ #: ../app/dialogs/preferences-dialog.c:294 msgid "You will have to restart GIMP for the following changes to take effect:" -msgstr "Necesitará reiniciar El Gimp para que los siguientes cambios tengan efecto:" +msgstr "" +"Necesitará reiniciar El Gimp para que los siguientes cambios tengan efecto:" #: ../app/dialogs/preferences-dialog.c:501 msgid "Configure Keyboard Shortcuts" @@ -6769,7 +6792,8 @@ #: ../app/dialogs/preferences-dialog.c:2163 msgid "_Reset Saved Window Positions to Default Values" -msgstr "R_estaurar la posiciones de ventana guardadas a los valores predeterminados" +msgstr "" +"R_estaurar la posiciones de ventana guardadas a los valores predeterminados" #: ../app/dialogs/preferences-dialog.c:2178 #: ../app/dialogs/preferences-dialog.c:2181 @@ -7046,7 +7070,8 @@ #: ../app/dialogs/tips-dialog.c:92 #, c-format msgid "There should be a file called '%s'. Please check your installation." -msgstr "Debería haber un archivo llamado «%s». Por favor compruebe su instalación." +msgstr "" +"Debería haber un archivo llamado «%s». Por favor compruebe su instalación." #: ../app/dialogs/tips-dialog.c:98 msgid "The GIMP tips file could not be parsed!" @@ -7323,7 +7348,8 @@ #: ../app/dialogs/user-install-dialog.c:771 msgid "Click \"Continue\" to enter the GIMP user installation." -msgstr "Pulse en «Continuar» para iniciar la instalación de usuario de El Gimp." +msgstr "" +"Pulse en «Continuar» para iniciar la instalación de usuario de El Gimp." #: ../app/dialogs/user-install-dialog.c:778 msgid "" @@ -7432,7 +7458,8 @@ msgstr "Presione «Continuar» para aceptar los ajustes de arriba." #: ../app/dialogs/user-install-dialog.c:1005 -msgid "For optimal GIMP performance, some settings may have to be adjusted." +msgid "" +"For optimal GIMP performance, some settings may have to be adjusted." msgstr "" "Para obtener un rendimiento óptimo de El Gimp podrían tener que ajustarse " "algunas opciones." @@ -7680,7 +7707,7 @@ msgid "Style of bevel around the statusbar text" msgstr "Estilo de marco alrededor del texto de la barra de estado" -#: ../app/display/gimpstatusbar.c:218 +#: ../app/display/gimpstatusbar.c:222 msgid "Cancel" msgstr "Cancelar" @@ -7880,7 +7907,8 @@ msgstr "(cadena UTF-8 inválida)" #: ../app/pdb/image_cmds.c:3898 -msgid "Image resolution is out of bounds, using the default resolution instead." +msgid "" +"Image resolution is out of bounds, using the default resolution instead." msgstr "" "La resolución de la Imagen se sale de los límites; usando la resolución " "predefinida en su lugar." @@ -8146,7 +8174,7 @@ "Fidel exporta gazpacho,\n" "jamón, kiwi, viñas y buques." -#: ../app/text/gimptext-compat.c:106 ../app/tools/gimptexttool.c:697 +#: ../app/text/gimptext-compat.c:108 ../app/tools/gimptexttool.c:699 msgid "Add Text Layer" msgstr "Añadir una capa de texto" @@ -8449,11 +8477,11 @@ msgid "_Clone" msgstr "_Clonar" -#: ../app/tools/gimpclonetool.c:266 +#: ../app/tools/gimpclonetool.c:288 msgid "Source" msgstr "Origen" -#: ../app/tools/gimpclonetool.c:275 +#: ../app/tools/gimpclonetool.c:297 msgid "Alignment" msgstr "Alienación" @@ -9289,7 +9317,8 @@ #: ../app/tools/gimpselectionoptions.c:150 msgid "Allow completely transparent regions to be selected" -msgstr "Permitir que las regiones completamente transparentes sean seleccionadas" +msgstr "" +"Permitir que las regiones completamente transparentes sean seleccionadas" #: ../app/tools/gimpselectionoptions.c:156 msgid "Base selection on all visible layers" @@ -9297,7 +9326,8 @@ #: ../app/tools/gimpselectionoptions.c:171 msgid "Use all visible layers when shrinking the selection" -msgstr "Utilizar todas las capas visibles cuando se está achicando la selección" +msgstr "" +"Utilizar todas las capas visibles cuando se está achicando la selección" #: ../app/tools/gimpselectionoptions.c:382 ../app/tools/gimptextoptions.c:447 msgid "Antialiasing" @@ -9354,7 +9384,8 @@ msgstr "_Emborronar [Smudge]" #: ../app/tools/gimptextoptions.c:146 -msgid "Hinting alters the font outline to produce a crisp bitmap at small sizes" +msgid "" +"Hinting alters the font outline to produce a crisp bitmap at small sizes" msgstr "" "El «hinting» altera el contorno de la tipografía para producir un mapa de " "bits preciso en tamaños pequeños" @@ -9415,23 +9446,23 @@ msgid "Create path from text" msgstr "Crear una ruta desde el texto" -#: ../app/tools/gimptexttool.c:143 +#: ../app/tools/gimptexttool.c:145 msgid "Add text to the image" msgstr "Añadir texto a la imagen" -#: ../app/tools/gimptexttool.c:144 +#: ../app/tools/gimptexttool.c:146 msgid "Te_xt" msgstr "Te_xto" -#: ../app/tools/gimptexttool.c:732 +#: ../app/tools/gimptexttool.c:744 msgid "GIMP Text Editor" msgstr "Editor de textos de El Gimp" -#: ../app/tools/gimptexttool.c:842 ../app/tools/gimptexttool.c:845 +#: ../app/tools/gimptexttool.c:854 ../app/tools/gimptexttool.c:857 msgid "Confirm Text Editing" msgstr "Confirmar la edición del texto" -#: ../app/tools/gimptexttool.c:866 +#: ../app/tools/gimptexttool.c:878 msgid "" "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 " @@ -9632,7 +9663,8 @@ #: ../app/tools/gimpvectortool.c:1217 msgid "Click-Drag to change the shape of the curve. (SHIFT: symmetrical)" -msgstr "Pulse y arrastre para cambiar la forma de la curva. (Mayús.: simétricamente)" +msgstr "" +"Pulse y arrastre para cambiar la forma de la curva. (Mayús.: simétricamente)" #: ../app/tools/gimpvectortool.c:1221 msgid "Click-Drag to move the component around. (try SHIFT)" @@ -10269,7 +10301,9 @@ msgid "" "This window has %d tabs open. Closing the window will also close all its " "tabs." -msgstr "Esta ventana tiene %d solapas abiertas. Cerrar la ventana cerrará también todas sus solapas." +msgstr "" +"Esta ventana tiene %d solapas abiertas. Cerrar la ventana cerrará también " +"todas sus solapas." #: ../app/widgets/gimpdock.c:474 msgid "You can drop dockable dialogs here." @@ -10451,7 +10485,8 @@ msgstr "No se ha podido encontrar el navegador de ayuda de El Gimp." #: ../app/widgets/gimphelp.c:189 -msgid "The GIMP help browser plug-in appears to be missing from your installation." +msgid "" +"The GIMP help browser plug-in appears to be missing from your installation." msgstr "" "Parece que el complemento del visor de la ayuda de Gimp falta en su " "instalación." @@ -10463,7 +10498,8 @@ #: ../app/widgets/gimphelp.c:214 msgid "Could not start the GIMP help browser plug-in." -msgstr "No se ha podido iniciar el complemento del navegador de ayuda de El Gimp." +msgstr "" +"No se ha podido iniciar el complemento del navegador de ayuda de El Gimp." #: ../app/widgets/gimphelp.c:240 msgid "Use _web browser instead" @@ -10498,7 +10534,8 @@ msgstr "Auto" #: ../app/widgets/gimpimagedock.c:214 -msgid "When enabled the dialog automatically follows the image you are working on." +msgid "" +"When enabled the dialog automatically follows the image you are working on." msgstr "" "Cuando está activado el diálogo automáticamente sigue a la imagen en la que " "está trabajando." @@ -10547,7 +10584,7 @@ msgid "This text input field is limited to %d characters." msgstr "Este campo de entrada de texto está limitado a %d caracteres." -#: ../app/widgets/gimpselectiondata.c:317 +#: ../app/widgets/gimpselectiondata.c:319 #, c-format msgid "" "The filename '%s' couldn't be converted to a valid URI:\n" @@ -10558,7 +10595,7 @@ "\n" "%s" -#: ../app/widgets/gimpselectiondata.c:321 +#: ../app/widgets/gimpselectiondata.c:323 msgid "Invalid UTF-8" msgstr "UTF-8 inválido" @@ -10733,7 +10770,8 @@ #: ../app/widgets/gimpuimanager.c:497 msgid "Plase make sure the menu XML files are correctly installed." -msgstr "Asegúrese de que los archivos de menú XML están instalados correctamente." +msgstr "" +"Asegúrese de que los archivos de menú XML están instalados correctamente." #: ../app/widgets/gimpundoeditor.c:255 msgid "[ Base Image ]" @@ -11003,7 +11041,8 @@ #: ../app/xcf/xcf.c:282 #, c-format msgid "XCF error: unsupported XCF file version %d encountered" -msgstr "Error XCF: Se encontró una versión %d de archivo de tipo XCF no soportada" +msgstr "" +"Error XCF: Se encontró una versión %d de archivo de tipo XCF no soportada" #: ../data/misc/gimp.desktop.in.in.h:1 msgid "Create and edit images or photographs" @@ -11030,4 +11069,3 @@ #~ msgid "Main Mouse Wheel" #~ msgstr "Rueda del ratón principal" - diff -uraN gimp-2.2.4/po/nl.gmo gimp-2.2.5/po/nl.gmo --- gimp-2.2.4/po/nl.gmo 2005-01-22 17:33:16.000000000 +0100 +++ gimp-2.2.5/po/nl.gmo 2005-04-09 21:48:07.000000000 +0200 @@ -1,256 +1,259 @@ -E &Gƺ9GHANһi!<kȼ@42u;PO529-9 ;Z7 οؿ -߿ - - -& -5@CS -kv~0 -.7? -Vahpx - -   K$p.1%!Wy -  $ -0;P cm| -*6>u+?^s -0D L V cm}13 -  -'8JZAkJ< H Vdt ->V -_j{&$   $29RY_y"  -7#[ a n|   mG L Z hr{  C7=F@6da3<#!>`} ,If,  4J_t}   .5K578)(,R2  'OCA%&4"1W#   -(8 -GRZ `n 0   $1Li+r   - $;`s   0E[k t -$ ,9Tm  -  -)8,R!##!%%K.j # -1_%u  - - -!,DKZ _ mz -- ! %/4:K^r  $+1%7!]   * :G Vc s  -% -0-; iu |  - " 5C] fp :?8* cox  - -  -# .:CW f>t  +:Ll|  ( 8BUj - -   5BRm | -*.,H#Q"u& 1,:#g '!>TpFT&- 3@Vi  - , 2>T$]=6<A:7|9c9RB=f >tCJgB   * < I We|+Gb * -= HV [ -h s}  -  -6Rfls { -O - -  .&Uh{ -   &=uLcg zSYra.C&T'{ B  $*1 6CRdj ( -2= FPW_ d q} -H -  +5E -MHX!B -1KP Ubiy -  `C0V  - -, D(R -{ -H  -  #0F[ j w    (BXt x   36,;"Q t~ $    &  G (h + ) * ! -4 -/F -v -} - -* - - -' - . > G  -Y d v         ' 6 O b  y        !& H d v  }       -<EUhl  3 %5 M -Z e q~ .<S Zf{@- .; @ LYw ~   $ . :F ]k  -  & -<G\em  - #+Oh~   -  *>Wp " ( HV\ag$}   ' , 9F -^ i -v    #A]dm  -   !* ; HRo~  -    , M!`)   '38GN _ kyBA& 8BIX hu1@RZc -hs  "!?!a       V' +~  (  " ! ! (!4!N!%f! -! !!!!! -!! !" "" /" 9"G"M"`" u" " ""&"," ### -+# -6#A#^#|#### -### -### # $$$ 9$E$ Z$!f$$ $$ $$$$%% &%3%:%;B%?~%%%%%%&3&4& -''-' I(S(\( l(#v((-( ((( ))#):)C) -L) W)c) **1* :*G*P*X*^*t* -* -*** -* * *** + + $+!.+P+ T+b+v+ ++++ +++ +, -,,1, D,R, g,s, -,,,,,, ,!,-!4-#V-z- - --9-U-=8.<v.=.."./,/ =/I/M/R/(W/,///// -//0'0J;0 0000 0 00 -1 $1 01>1V1p11;111 1 2222 D2R2 b2 p2 }222 222233(3;3M3+b3333 3 3 33 3 44#,4 P4 \4h4}4464444 575L5j555555 5 555 66 <6H6]6c6 -j6 -u66 66 66 -666 66 -77 17=7O7j77 77777748D8a8t88888.8E9[9 l9 z99 9 999 9 9 9 -: : : -*:5:D: S:`:}: -::::: :::: -;#$;H;f; z;;;;;#;<&< :<G<Z<w<<$<<< = ==6=J=!b==== -=== ==>(><>T> j>v>>>>>> -??+? >?K?`?r????? -???@*@ D@P@k@@@=@6@S!AJuAAA AABB&B@BOBmB BBBBB BBB C !C.CDC_CyCCC CCCC)DND$EK8F=FF*FGqGH?H`H2ZII=K4@L/uLL `MlMtMzMMMMMMM M MM;NAN QN^NnN NN NNN#N NO O 'O&4O[O -nOyOOO"OOOOP!P7PGP\PlP{PPPPPPP+PQQ,Q 3Q@Q GQ -TQ_QeQlQtQ }Q Q8QvQFRMReR }R RR R!RRRS.SGSdSSSSSSSS S S S TTT#T ,T9T ITUTfTT!TT(TT#T U ,U9U@U -FU QU ^UhUwUUU -U U -UUU1U7V1PV5VHV;W!=W_W !XBX)Y}Y*PZB{[[\\F]] ]])]5^D^1^0&_0W_1_(_C_'`S`,`2)a \aA}bAb*c,cc defFgghAiDjGj%kl2l1m Km-Um -mmmmmmmmmmn n&n8n Hn Vn`nynn nn -n<n oo -pp&p:pJpYpnpppppppp qq$q -4q?qDqMq3dq;q;qrr ss s sssst -ttt9t3RttttttttttFuMu -mu -xuu u u u u u u u u+uKvQjvv$Uw5zwPwGx-IxjwyoyeRzjz~#{p{o|w|<|?8}>x}t}t,~`~ 0CIPbw 6oπ?AH4P#Gr%  - % 1; DNW#i ȃу$ ) 7E \fnt w ΄   1> FPa d p z - ʅ҅  = LX -`k}  Ȇ ܆  (>N` q }  Ň -҇݇/IZs  Lj шۈ  # )7GNT[ n{~   - -ʉӉ ۉ  - ( ; GTn vŠ -  '/7M \ iu xċ̋ߋ  "06FLS -[ fs   -   Ō ό ܌   -#. 7C L Yen u   ˍ ԍ   $',4 C P \i~ ю(&/E]o/Ϗߏ .#?c"̐ -Ԑߐ ( 9ELTdv - - -ő ˑّߑ - -'28AF[q -ȒϒԒ5ؒ *:?F N\ q  -ӓ ޓ  )/6 =K.^n)0IZ9TޖD3Rxr˗F>kK:=Ax]M-fC5ؚD:S8ǛЛ -כ -   .:=L -d o |!Ŝۜ.# -7BK ht{     - -ʝ ՝    ,S;>.O$~ Οԟ 4D Uvڠ  0Mj!2СCG^"} Ƣ'E[q" -ʣգ - -B -M XetP1ڥ4 AG[b 'E_}  ѧGM@P   <Wj r~  ǩѩ# ,8Ih,(Ȫ  8@(G p-z ȫ - 6&] e s -   ȬҬج   í O)>yOC5Lh -4(]Hw'(%7 R ` j tֱ "( K8lȲ ٲ#! +AVks {  ó$Գ ';A9}77>'6f2"е;&Ls"jF"e"75 :"Jmv -˸޸  .:S%c    ùҹ -$ 2H ^k  -  ̺,->Zs!%׻!<M Vbj %(%N.t׽)- -W-b1ݾ(#$'H)p$"1 *>Wo1A+*Vq  7>PYu  = )3DLdjq -APb y *BYl ,#M"q   %  % 4> GU] ft )9*?>jWC E Saw -!  - % -4?S co9$  2EUfu!  -1Lg (BQp   '3<)P z.(*@ _* 0-GK Zh {*##" FPgc# )5Ia x *!-A GT -r&}JAG8I?? -}JAF -LQ>$FcM}v  # 1 -R]z 0Mi .!>[m ~ (#= a n{ -  -Z* :If| -@$ : GQ bp u   -njD p,2}; -   #+1,] -J   '6GZ c!   & -< -GR [elu z O -C NX h uS*W Xb/s - -   'r9Y8 -?J\r - %# -ITbf  &7Pgx   6Hg#   -79Q-  (0Mfz))22/D2t9 -/-@n+ - -6ARm"  (>#X| $Bav  g   3KZ p}   - -!!;Xg -[ g>o   - $ 1?$W$| '!1ARd t  - -  2?G PZm %  *I&_ .@\x''@ h!v&3/D ` m z  !8I`p  < [iz -   - 9CT d r  - % C P/^' -$ R`ZXl  - *;R l z!4HZmt #  2 #S !w #     -  - ( -5 -H -X -_ -n -Z~ -- -  :  -L ,W      5 :  B L  R ^  o {       -    -     * 6 O 5o .       #BUgy -  -  "  $#0T cp    AAW "#6"+h3 - )/ - -:EYj p|       - -$/D T -al~ !,>\dl|   -    -% 0'=$e%#!":Wf8wW87A7y?2DIO,a9 &<ZVw.C#Tx D(m ' )9JSnv  %9 8_  -       !$%!=J! ! -! !!!.! " "!"="GT"!""""" # # /# <#H#Z#n## -#### # ####$,$ 3$?$G$`$o$$ $$$$&%.%N%^%p%%%%2%$&-&D&%`&&&&7&X'Z'm'''' ' ''(( "( /(;(M( `(m((((( -((((( ())3)K)%g))))))**&<* c*******'+!A+c+ {+++++#+ -,(, -<,G,X,q,,,,,,,-'->-W-)p-!-----.(.?.Y.s......!. /@/_/p////O/B.0_q0[0-1C1V1_1o1111 11 -112%292 M2Z2s2!2222#2#3<3W3p333334T4E"5Kh6=6x6)k77B8N8e<9C989<A=@^== v>>>> >>>>>> ?? ?:*?e?v???????? ? @2@C@S@+c@@ @@@@+@&A6AHA#\AAAAAAAAB.B6BKBdB7mBBB B BBB BCC C C'C6CAGC}C DD&D xTxxxx6x-.yw\yFz%{A{Z{ c{o{ x{{{ { { -{ {{,{ || &|0|6|J| P|\|t|||||||| - } } }-} 0}:}M}b}|} } }} }}}} }} ~ ~~$~%3~Y~a~ j~w~~~+~~ ~ -~~(~#9M -Vaq):Rq ΀ ހ   ,6Ki|ہ*A H U _i r -΂  $ ' 1=F O] y      -ƃ у ݃   &9 O[nu{ ˄ׄ - -  -6 E R^ -a ly!؅+&/? F Tahp  ̆ ܆ -  $ 1 ;IOVgz -ʇ   - FRds  Ljو':Ody. ҉ -܉ %34Y׊ -&%Tz0 ܋     0 N[bj ό -ٌ - - # 0=L[k ~ - -Ѝ ۍ    % -79;u  Ҏ$(#; -_ jv}  ď̏vۏ5R.R<#$f2u2X39R:6/}Nt5MjgHO}hS/1 U_TEzd8f_`A97aMua GLeBM5b'#%o/{Jj".`euG&'sNhs-J -LM@RLZ#I(ryMN"%d%]ZmPt4qB;,` s#KyT8EWnH"nU_DKsXnxUhx~k7{;c<7 <*M%6 -Z`3fD@nOPo))]Q/+39 CpH]+[GzGocc>4 K^F'W pD9rtP\ TCI;1E!'e;VUA"ZGR|&y5'&3n8#NbJ>"&If 2QoN_0j8+Q5^DkxFm[3:[q _W4F##J^6 \fGCH |ixCFU2tLPP,z_ndKV}RY }!) -$@9a{nv,Tup:!Sz(=bOK8"v=B+BId+.9, 8Y2--|\}q^Y $[8!F&AS- r`zEOJET\}w{';,pyambKo|B -~VA4$vYO\Xg)>*kS?t]h> Xh&_)(f SR2U yY1p^`V0hC6|2aTnvtM }eGC \TVJQ<!Z9= f 5v%^M<|Qp-rIXO(KXpke.6~bA=]P!B m F+Tw4  VEWJU"1 -Va3f#OEAl4ro7`wZc_9BNz1l-LpqIFqDBL/1.!j -Al~gTx%<3 lhi*{F?dAUnkl#h67>*V./ORJ/60!W6w ^m/&vXd?5%:ri -{ 5GqCl'HlQ-(%K4]q;xjW]:'o=88Lt?adHsmj>.s[2=s1v-qQ+ 4cg^kO0u$20 dYv7*)( (buN)@="$e-y:K{*gl=PYD]QM%0P) j[N:c{u1cB;3SeJ,P xgh:"(vqRIc -} @\Ls\Edai7[S$i^~g*mDw?,b[eik49U0j6>DWw+.io@'EW*?s|!0V it -~@ DQ,rI5  >$Cx `3?Gg<mR?@  |7 ~_Zy@lp;F(rxwfwH;7=rbLZmZ:.yjYb&}\+SazH $u`1{o5Xtcy~/ez|SA?)I]>~<HuWXCiwzYg[Nk*0,<k& + H% ̑`a&wG9G AhNi<ck@ 2M;PO 2]9-9;27n  + + +  + + +CNV^z0 +.9@HP _ m y + +   KH.1!/Qcjy +  +( ;ET +]hw*6M`}6K_s + $ . ;EU1j3 +| +"2ACJ< .<Le}  $< +EPaz&$ +8?E_"g  +7 A G Tbkr z   m- 2 @ NXa ~ C7=,@j6dGe3{<#!$Fc } (Eb,  & G!Uw ! '5H Wd.z5578M),2. aOA %K&q41# #1 MWo +   02 c o| +':C Sa jt +| $ *Ke    5"C"f +  +)*,Dq!##!%=.\ #-#Q%g  + + +6=L Q _l| +- # '16<M`t  &-3%9!_   , <I Xe u  / +H +S-^    + )1DX ky  :? 8`   +   + +8 C O +Y dpy >  +,?Oap  4H^ nx + + %3 IV kx +*..Et#"&C Yey,#  +'$L'iFTA   + * Ghw ($)0/=`61<?DA79c809B=Jf>C.Jrg %1AShm   3FYk +)D[o  +   +  ) +:Ea iu ( IOV ^ksy +O +z +   . 8K^ +m x      u/cJ z6 < rD      + + +* +? +&P +'w + +B + + +     & - 2  D Q ` r x           6  +@ K  T ^ e m  r        +  H  +.  9 C S  +[ Hf ! B 1'Y^ cpw +  `C 1d0   + +&6Gfy ( + +H +' 2 +?J Q]l {     )0 8F _k    K3e6" ":N ]$g   ( +5)a*!/!0*Al}' +(:IRaz  "5 Lm !7I P]t-(;? Yciy 3  +- 8 DQo & -9Nbq@y-   ,J Q] b nz    0>V o{ +   +  / 8 @ S X ` i q        + # "!;!Q!W!_!|!!! ! ! +! ! !!!"*"C" X"e" t"""""""" # )#7#=#B#H#$^##### ## # ##$ $ $'$ +?$ J$ +W$b$ r$|$$ $ $$$$$%"%>%P%W%`% s%%%%% +% %%%%& & $&.&7& H& U& _&k&&&& & +& && & '' +' 7' C',O'|'!'''')' #(0( H( V(b(g(v(}( ( ((B(A(@)^)s) )))) ))))))~***** +** *** ++*+J+"i+!+!+++, , #, -,7,G,V, ^,l,Vt,+, ,(-*-"0-S- i- u---%- +- ---.. +).4. C.Q. Z.h. |. .... . . ..&/,)/ V/c/h/ +x/ +/////00%070 +=0H0P0 +`0 k0x00 0000 00 0!01 (161 L1X1i1111 111;1?2O2^2f2z22224f333-3 444 +4 5#565-I5 w555 55555 +5 55666 666667 +(7 +37>7T7 +d7 o7 y7777 7 7!77 778 !8.8I8P8 X8f8{8 88 +888 88 99 +"9-9?9[9x9}9 9!99!9#9: ,: +9:9D:U~:=:<;=O;;";;; ;;;;(;,<I<Y<k<|< +<<<<J< "=/=>=W= q= ~=== = === >>;6>r>> > >>> > >> +? ? %?1?9? W?a?|???????@@5@G@\@+s@@@@@ @ @ AA %A 2A>A#UA yAA AAAA6AB&B-B BB7OBBBBBBBB C C&C8C LCYC wCCCC +C +CC CC CC +CD D D*D +ADLDlD DDDDD DEE.E>ERE4gEEEEEFF$F.>FEmFF F FF F GG.G 4G BG NG +ZGeG vG +GGG GGGG +GGH HH &H2HDH`HvH#HHH HHI I6I#PItII IIIII$J:JYJ nJxJJJJ!JJ KK +%K0KEK UKbK}KKKK KKKL'LFL]L vLLL LLLLL MM5M +GMRMbM|MM MMMMNN=,N6jNSNJN@OSO fOpOOOOOOO O PP/PBP VPbP{PP PPPPPQ,Q @QLQaQvQQQQQ)oRNRRKS=HTT* +U5UU3}VTV?W`FW2WW\X Z4[/D[t[ /\;\C\I\P\a\r\\\\\\\\\ ] ]&];/]k] {]]] ]] ]]]#] !^.^ C^ Q^&^^^ +^^^^"^^_#_3_D_c_y_____ ___ ```)`>`+D`p`v`` `` `` ` +````` ` a8avHaaaaa a bb b!>b`bxbbbbbc ccc(c"tat֏`K60 ! 2@6Boy4#/SG%d +Ĕ ϔ ۔ #7 ?MV\kr{ Εؕ ݕ  "( +5Hc  Ɩ    $ .<PW +^i q~ ×җ   +1 AO^ n|   ɘܘ % 1=LUf   +ә8I[ k    Ěٚ    3@C L V +` +kv  Ûɛϛ֛ݛ  3 ;HOV^x +Ŝ Ԝ  ! .: =GLRe ڝ   +  +8 H V +d o }    ɞ ў۞ +   *3 :HX_ h u    ğП   !.C Vcir( +"41N/ơ֡  %#6 Z{" + !*@ Q]dl| + +ǣ +ңݣ   +4?PV +_jpy~ϤӤ٤ܤ + 5F Xbrw~ ! ˥   +- 8DKOW\bh o y .ns)I9T8DRҩr%FkߪKK:Aҫ]Mr-C52Dh:8!* +1< +E P \hx  + ɮ ֮!5.<k} + ¯ίկܯ     + +$ / <H \ ht yS>j.$ر (.> Wax в4C Ygvij۳!2*C]"״  >Tj˵" +$/CL `j + + ζP144f w׹ ݹ +=GRMP L Vb uĻ ̻ػ  !+AUhx Ҽ,(2[b is|( ڽ- ")2J +S ^k|6Ǿ Ͼ ݾ +  % 2<BS +  !-Lg vO>O"Cr5hUt4H'*(R%{     'Aa" 8Lho #! .CX` h u $ ';.9j77>6S2"';%&a"jF3"z"75 .O"_ + ". COh%x     +$"G] s  +  ,-BSo!% +6Qh~ .7 MY%j%.&&@g) +->1Y(#')$H"m1 21KA}+9V^ s #3CSbs z =   &-AThy  5?FO _m~(<Qex # "Dg   %    & /=E N\q )9*?>jWC E Saw +!  + % +4?S co9$  2EUfu!  +1Lg (BQp   '3<)P z.(*,W v* 0-0^b q **#%I#d Pc^e kw  *!'IZk  +)& 9'JaA:G)KqI??G};AAFL>FM#}q2:Y kx   +1EYl  .A`}  1 @Nbu#  )B_|* + +Z ku /Lb| +@ +  -7 HV [ iv Tj* p}! +   "+0,\ +J  &8GXk t!  7 +M +Xc lv}  O +T _i y S*W is/ + +   8rJY18I + + ;If%z +b 3C S` r ) 2>[ bo#3 8FV ftS79I`-v   $8)H)r22/22e9 +-,@+X +   +2 = N i ~ "      +$ +: +#T +x + + + + + + +$ > ] r {       g           3GV ly   + +!8Ud +[d>l   +  ! .<$T$y '.>Oa q~  + + + /<D MWj % *F&\ +=Yu 9'R z!&3 AV r   3J[r  -Nm  +  (<Qf x     #1 BNn }  /'C[ w- (0CZjZX9V j +x     2 A [ n  ~ #  # !!#*!N!h!!! ! !!!!!!Z"-j" ":" +","#1#C#R#q#5## ## ## #$ $ $)$ 2$@$ +S$^${$ +$$ $ $$$5$.0% _%m% q%%% %%%%&&'&9& +?&J& R& +`&k& z&& &&&"& && &#&#' 2'?' Y'f' w'''' '''A'A&(h((( ("(#((6))*h* +q+|++ + +)++/+ +,&,:,K, Q,], v,, ,,,`-u- - -- -- -- +- +..%. 5. +B.M._.c.}. ..!..... //=/E/M/]/m/ ~/ / +/ / /// // +0 0'0$F0k0p0v0%0#0!0"0181G18X1W1817"27Z22?2223%3*303,B39o33333 344;4VX444445$5#55Y5w55555 5D 6N6m6~6 6'666 6677)7:7C7^7f7}77777778-;8i88,8%8!889 +J9U9g9}99999$9=9 ::H: +[: f:s::.: : ::;G;!a;;;;;;; ; < <<3<F< +`<k<~<< < <<<<<< <= =%=4=Q= d=====&= >+>;>M>m>>>2>$> +?!?%=?c?z??7?X?7@J@\@x@@ @ @@@@ @ AA*A =AJA^ArAzAAA +AAAAA AAB!B9B%UB{BBBBBB C&*C QCrCCCCCC'D!/DQD iDvDDDD#DDE +*E5EFE_EsEEEEEEFF,FEF)^F!FFFFFGG-GGGaG|GGGGG!GH.HMH^HvHHHHOHB4I_wI[I3JIJ\JeJuJJJJ JJ +JKK+K?K SK`KyK!KKKK#K#LBL]LvLLLLL L!M=M3NTJNENKO=1PxoP)PQQ;jR[RNSeQSCSS8TVAW@XSX *Y6YFYKYQYdYwY YYYY +Y +YYY ZZ !Z:+ZfZwZZZZZZZZ [![3[D[T[+d[[ [[[[+['\F\V\h\#|\\\\\\ ]]5]T]g]]]]]7]]] ^ ^.^5^G^^^ q^}^^ ^ ^^^A^}_ ____ __`! `#+`O`j```!`"` aa%a -a7aUaua|aaaaaa aaa b$b=b'Vb~b/bb!b#c 'c1cPc +_c jcwc~cc ccccc +c c cdd#d=+dCidCdGdC9eX}eFe!f?f$g?gNh"iiMvj j"kk{lm m)m51mEgmm6n4n2n3!o2UoLoo_Xp0p@p*qUqW.r.rrwsytou^vwwxS:yzK){u{ t|4~}"}f} =~5K~~~~~ ~~ ~ +~~.AYo$ ]o~ Ձ#6I[ r ΂  8%=^ID">GP"f$'dž<!,Nh# և 0 8QB( + +Ȉӈو + 7*D,o + +.bHDn3PЋi!J+֌TzWҎpVgǏ/}-N5NNӒ}"N"q*Õ˕ ԕ">$c6-=wkF%*Pi r~    +Ǚ ҙޙ,% 5?EY _kš +ך  +# . :G JTg|  Ǜ Лڛ +& )5>%Ms{ +՜ ޜ +(=Sg +p{Ɲڝ0CTl ʞמ  3A Q ]g|Ÿޟ !7*Gr y   Π +  '4EU X bnw    ˡ ѡ ߡ  +    (4 IWj ˢܢ  +& +1< +EPg v  + ȣ! ++W`p w  Ϥ   + %3B U b lz +ɥҥۥ '4 E Q^ wæȦЦ ߦ  +&EXk.ԧ  + - C%d-46 ?MVp-!%թ0, ] is   Ϫܪ8 P +Z +epw +  $ $0 +7BGa +v    ˬ Ӭݬ9 .;MR Yfx)$(#  +/ :FMT\agm t ~v5"X :e$L;^K;|d +$6?7 xx]kkO;*[+M"nH1uIZ' qXeB)JN,W5c1} q6H;w@hU`r_F<A'a%/2O ynTpFv6T]`^h +4).s bPuu30DwVeB[BI:"9gbuwN- vc+gag}a[W2Qtlmxv6`-QXm,v/_fG_UI5Y wGhC nT Ac<AJ]Xi\bu.Z= o nO! #1MYt^<KM 6LBIFCNs >w Ok!Tt9e]@ +7 +%L H{K~~H?\x N wPMCXZWxX0gNS $t,oIj''4)1l%&#5/rpp1){E"'Hf L+T9z7VQxmD7RC/2~lA'hup mnZh|R+/(t{V #H 8a`?f/e}2V&& U]G/p @bS6z? +W RBZc8e4oNQR>3fz*Y-9O$ U$h o}5tF!Q7,dBAKUxGS+<29d`l - *AiE`s0; {P s:GDpb :Wp)_8 _"xkKjP. zE4><(uhWfz40dPl;P%4--=&.<!"S{J[\?^s1/?3OLQ8cMqjWIfD#soV{lll5nhfiLHoJ-c!rB i*Z9b-(EHj7 +~K}iN=yn?#GZTbQwJ 29%Pt 5[2\ >F=cA msQSLO5(f +7gZ,yk4=zC"^o+(*<tiY'c%FT(a_~ +>"`KEo&P XzE@0@*D~ C\y pKwW k8];\(Gjk0E=V|)N*?~>C ^$` %@qH&jm?}YiTVvXKz'"Dg@r3|VIXrj,2]3g}0dRig# Gl!WhR1: aILmSr0/ a + y +y f_T$]vqyP F |AUtM !=:Qde53zE=vu<18)C1#}. [!&v8@&->:dq>ZR ^ kjR{G_ Y xV(!U +`E|%6{.$+qrYYm].53y)\;#:c*.["g j3|[,_dw:uqrb8=;,NJdm >onvYJUS&^bF9@MM DyRAD44*#XeaIi'JqBUp207S~r, {$\ ( 69)sD e~ %BnSa<\ 8[OCF73.|M6^ +k  }LsJ|O Invalid option "%s" Usage: %s [option ... ] [file ... ] @@ -280,43 +283,44 @@ (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 GIMPActionActive 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 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 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?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-resize windowAutoloadAutomatically DetectedAvailable FiltersAvailable Types:B_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 SizeCenter X:Center Y:CenteredChange Background ColorChange Foreground ColorChange Image ResolutionChange Image UnitChange Print SizeChange 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...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 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 height:Current statusCurrent width:CursorCursor _mode:Curve TypeCurvesCurves for indexed layers cannot be adjusted.CustomCustom colorCutCut 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 _threshold:Delete AnchorDelete AnchorsDelete Layer Mas_kDelete Layer MaskDelete ObjectDelete SegmentDelete TemplateDelete brushDelete channelDelete colorDelete gradientDelete layerDelete paletteDelete pathDelete patternDelete 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 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 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 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 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': +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 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 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?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-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 SizeCenter 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: moveClipboardClipped to bottom layerClipped to imageCloneClose %sClose all TabsClose all tabs?Close this TabCo_py PathColo_rsColorColor BalanceColor Display FiltersColor PickerColor Picker InformationColor _Balance...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 EditingConflicting 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 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 height:Current statusCurrent width:CursorCursor _mode:Curve TypeCurvesCurves for indexed layers cannot be adjusted.CustomCustom colorCustom gradientCutCut 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 _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 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 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 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 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 ColorF_it Canvas to LayersFade 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. +The original file has not been touched.ErrorsEventEx_tra LargeExpanded as necessaryExport Path to SVGExport 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': %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 selection byFileFile Open _DialogFile OperationsFile TypeFile existsFile is truncatedFill ChannelFill Opacity:Fill Type %sFill 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 selectionFloating Selection to LayerFloating selection to layerFloating selectionsFocusFolderFoldersFont FoldersFont UIFont:FontsFonts 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. +GIMP Patterns must be GRAY or RGB.Fea_ther...Feather ChannelFeather SelectionFeather selection byFileFile Open _DialogFile OperationsFile TypeFile existsFile is truncatedFill ChannelFill Opacity:Fill Type %sFill 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.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 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)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:HighlightsHintingHinting 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 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.Invert selectionIs 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 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 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 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 Layers...Merge _Visible PathsMerge layersMerge palettesMessage 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: MultiplyN_umber of colors:Na_vigationNa_vigation WindowNameName:NavigationNew ChannelNew Channel ColorNew Channel OptionsNew Color from _BGNew Color from _FGNew ImageNew LayerNew PathNew Path OptionsNew TemplateNew brushNew channel with last valuesNew channel...New color from BGNew color from FGNew 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 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: +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 MenuGrayGrayscaleGreenGreen: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:HighlightsHintingHinting 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.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 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 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 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 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 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: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 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" +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 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 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.PreferencesPreserve _luminosityPressure sensitivityPressure:PreviewPreview is out of datePreview:PreviewsPrint SizePrint size:Problems 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: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_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?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 LayerRender StrokeReorder ChannelReorder LayerReorder pathRepeat LastRepeat:Replace the current selectionReplicateReplicate Gradient SegmentReplicate Gradient SelectionReplicate SegmentReplicate SelectionRescan font listReset Tool OptionsReset all FiltersReset all Filters...Reset 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: +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_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?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.ReverseRevertRevert '%s' to '%s'?Revert ImageRevert failed. No file name associated with this image.Reverting to '%s' failed: -%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 mergedSat.: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 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' +%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 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: -%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...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 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 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 X:Scale ratio Y:Scale ratio:Scale the layer or selectionScalingScaling informationScaling...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 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 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.Select 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 Image Canvas SizeSet Image Print ResolutionSet Item Exclusive LinkedSet Item Exclusive VisibleSet Layer Boundary SizeSet Name from _TextSet OpacitySet background colorSet foreground colorSets 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_oolsTe_xtTe_xt ToolTemp folder:TemplatesTemplates MenuTemporary ProcedureTerminating plug-in: '%s' -TextText ColorText EditorText LayerText proceduresThe GIMPThe active brush. +in which to split the selected segment.Select 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 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 opacitySet preserve transSets 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 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:StipplesStock IDStro_ke PathStro_ke Path...Stroke PathStroke SelectionStroke lineStroke 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 image. Click to open the Image Dialog.The active pattern. @@ -324,14 +328,19 @@ %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 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 _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.UndefinedUndoUndo HistoryUndo _HistoryUnitsUnknownUnknown file typeUnloadUnnamedUntitledUse "_Dot for dot" by defaultUse _web browser insteadUse all visible layers when shrinking the selectionUse info windowUser 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' +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.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: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.UndefinedUndoUndo HistoryUndo _HistoryUnitsUnknownUnknown file typeUnknown type of palette file: +%sUnloadUnnamedUntitledUse "_Dot for dot" by defaultUse _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, 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: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_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..._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 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 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_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 +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_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..._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 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:_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.gimp-2-0 Report-Msgid-Bugs-To: -POT-Creation-Date: 2005-01-22 17:32+0100 -PO-Revision-Date: 2005-01-03 00:27+0100 +POT-Creation-Date: 2005-03-12 19:09+0100 +PO-Revision-Date: 2005-03-20 02:39+0100 Last-Translator: Tino Meinen Language-Team: Dutch MIME-Version: 1.0 @@ -368,42 +377,43 @@ (Naamloze buffer)(Naamloze sjabloon)(Varieert)(schoon)(ongeldige UTF-8-tekenreeks)(gewijzigd)(geen)1 laag1 laag15 graden %s16: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._Toevoegan aan selectieHoe_kOver de GIMPActieActieve filtersAdaptieve overmonsteringToevoegenAl_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.Aan palet %s toevoegenToevoegen aan huidige selectieThema '%s' (%s) toevoegen (bezig) -OptellingAanvullende invoerapparatenHelderheid-Contrast aanpassenKleurbalans aanpassenKleurcurves aanpassenKleurniveaus aanpassenHelderheid-Contrast aanpassenKleurbalans aanpassenKleurcurves aanpassenKleurniveaus aanpassenKleurtoon en verzadiging aanpassenNiveau's automatisch aanpassenAanpassingGeavanceerde optiesBetreft: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?Als in _voorkeurenVraag om bevestiging alvorens een afbeelding te sluiten zonder deze op te slaan.Platheid:Verhouding:Parasiet aanhangenParasiet aan afbeelding koppelenParasiet aan item koppelenParasiet aanhangenAuteur:Automatisch_Actieve afbeelding auto-volgenAutokrimpenVenster automatish aanpassenAutoladenAutomatisch opgemerktBeschikbare filtersBeschikbare typen:_Helderheid-ContrastB_uffersAchtergrondAchtergrondkleurAchtergrondkleur ingesteld op:Achtergrond: %d, %d, %dAchterwaarts (corrigerend)Baseer gevuld gebied op alle zichtbare lagenSelectie baseren op alle zichtbare lagenAchterSchuinBilineairZwartwitZwart:Kleuren van eindpunten _mengen_MengenMengen_Ondoorzichtigheid van eindpunten 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 extensieDoor de afbeelding terug te zetten naar de versie die op de schijf is opgeslagen zult u alle wijzigingen verliezen, inclusief alle informatie over ongedaan maken.CMYK_Kalibreren...K_leurkiezerKolommen:_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:Midden Y:GecentreerdAchtergrondkleur veranderenVoorgrondkleur veranderenAfbeeldingsresolutie veranderenAfbeeldingseenheid veranderenAfdrukgrootte wijzigenHuidige 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 kleurenkiezerKleur_balans...Kleurbalans werkt enkel op RGB-lagen.Kleur wissenKleurindex:Kleur:_Kleurenkaart_Kleurtype:_Verkleuren...Kleur_type voor segmentKleurtype voor selectieVerkleurenVerkleuren werkt enkel op RGB-lagen.Afbeelding verkleurenAfbeelding verkleurenKleurenkaartKleurenkaart editorMenu KleurenkaartKolommen:_Tekstbijlage:CommentaarContrast:_ConvoluerenKleurweergavefilters instellen_Uitgebreide invoerapparaten configureren..._Raster instellen...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 hoogte:Huidige statusHuidige breedte:CursorCursor_modus:CurvetypeCurvesCurves voor geïndexeerde lagen kunnen niet worden aangepast.AangepastAangepaste kleurKnippenBenoemde buffer knippenCyaanCyaan:Penseel d_uplicerenKanaal d_uplicerenVerloop d_uplicerenLaag d_uplicerenPalet d_uplicerenPad d_uplicerenPatroon d_uplicerenSjabloon d_upliceren...Donkere vakjesEnkel donker makenStreep stip stip...Streep stip...Streepjespatroon:Streep-voorinstelling:GestreeptDatum:DebuggenVolledig schermNormale standStandaard rasterStandaard rasterStandaard _interpolatie:Standaard drempelwaarde:Anker verwijderenAnkers verwijderenLaagmasker _verwijderenLaagmasker verwijderenObject verwijderenSegment verwijderenSjabloon verwijderenPenseel verwijderenKanaal verwijderenKleur verwijderenVerloop verwijderenLaag verwijderenPalet verwijderenPad verwijderenPatroon verwijderen...Opgeslagen 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 uitvoerenWilt u echt alle filters herstellen naar hun standaardwaarden?Weet 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 duplicerenPalet duplicerenPad duplicerenPatroon duplicerenGeselecteerde sjabloon duplicerenEek: kan niet ongedaan makenPad e_xporteren..._Zeer kleinRandgedragR_andenBewerkenKanaalattributen bewerkenKanaalkleur bewerkenKleur paletingang bewerkenKleur-paletingang bewerkenLaagattributen bewerkenLaagmaskter bewerkenBewerkstandPaletkleur bewerkenPadattributen bewerkenSnelmaskerattributen bewerkenSnelmaskerkleur bewerkenSjabloon bewerkenPenseel bewerken...Kanaalattributen bewerkenKleur bewerkenKleur-paletingang #%d bewerkenVerloop bewerkenLaagattributen bewerkenPalet bewerken...Padattributen 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': +OptellingAanvullende invoerapparatenHelderheid-Contrast aanpassenKleurbalans aanpassenKleurcurves aanpassenKleurniveaus aanpassenHelderheid-Contrast aanpassenKleurbalans aanpassenKleurcurves aanpassenKleurniveaus aanpassenKleurtoon en verzadiging aanpassenNiveau's automatisch aanpassenAanpassingGeavanceerde optiesBetreft: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?Als in _voorkeurenVraag om bevestiging alvorens een afbeelding te sluiten zonder deze op te slaan.Platheid:Verhouding:Parasiet aanhangenParasiet aan afbeelding koppelenParasiet aan item koppelenParasiet aanhangenAuteur:Automatisch_Actieve afbeelding auto-volgenAutokrimpenVenster automatish aanpassenAutoladenAutomatisch opgemerktBeschikbare filtersBeschikbare typen:AG-kleur vullen_Helderheid-ContrastB_uffersAchtergrondAchtergrondkleurAchtergrondkleur ingesteld op:Achtergrond: %d, %d, %dAchterwaarts (corrigerend)Baseer gevuld gebied op alle zichtbare lagenSelectie baseren op alle zichtbare lagenAchterSchuinBilineairZwartwitZwart:Kleuren van eindpunten _mengen_MengenMengen_Ondoorzichtigheid van eindpunten 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 extensieDoor de afbeelding terug te zetten naar de versie die op de schijf is opgeslagen zult u alle wijzigingen verliezen, inclusief alle informatie over ongedaan maken.CMYK_Kalibreren...K_leurkiezerKolommen:_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:Midden Y:GecentreerdAchtergrondkleur veranderenKleur van kleurenkaart wijzigen.Voorgrondkleur veranderenAfbeeldingsresolutie veranderenAfbeeldingseenheid veranderenAfdrukgrootte wijzigenHuidige laag of pad wijzigenAchtergrondkleur raster veranderenVoorgrondkleur raster veranderenGeïndexeerd palet wijzigenVerander het perspectief van de huidige laag of selectieWijzigen sneltoets mislukt.KanaalKanaalattributenKanaalnaam:Kanaal kan niet verder naar benedenKanaal kan niet verder naar bovenKanaalkleurKanaal is reeds de onderste.Kanaal is reeds de bovenste.Kanaal 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 makenKlikken om een vooruitblik 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 kleurenkiezerKleur_balans...Kleurbalans werkt enkel op RGB-lagen.Kleur wissenKleurindex:Kleur:_Kleurenkaart_Kleurtype:_Verkleuren...Kleur_type voor segmentKleurtype voor selectieVerkleurenVerkleuren werkt enkel op RGB-lagen.Afbeelding verkleurenAfbeelding verkleurenKleurenkaartKleurenkaart editorMenu KleurenkaartKolommen:_Tekstbijlage:CommentaarContrast:_ConvoluerenKleurweergavefilters instellen_Uitgebreide invoerapparaten configureren..._Raster instellen...Raster instellenAfbeeldingsraster instellenSneltoetsen configurerenSneltoetsen configureren...Geselecteerde filter configurerenGeselecteerde filter configureren: %sAfbeeldingsgrootte bevestigenSchalen bevestigenTekstbewerken bevestigenConflicterende sneltoetsenConisch (asymmetrisch)Conisch (symmetrisch)Lijnen 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 converterenNaar geïndexeerd omzetten (stap 2)...Naar geïndexeerd omzetten (stap 3)...Naar geïndexeerd omzetten...Vervagen/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 hoogte:Huidige statusHuidige breedte:CursorCursor_modus:CurvetypeCurvesCurves voor geïndexeerde lagen kunnen niet worden aangepast.AangepastAangepaste kleurEigen verloopKnippenBenoemde buffer knippenCyaanCyaan:Penseel d_uplicerenKanaal d_uplicerenVerloop d_uplicerenLaag d_uplicerenPalet d_uplicerenPad d_uplicerenPatroon d_uplicerenSjabloon d_upliceren...Donkere vakjesEnkel donker makenStreep stip stip...Streep stip...Streepjespatroon:Streep-voorinstelling:GestreeptDatum:DebuggenVolledig schermNormale standStandaard rasterStandaard rasterStandaard _interpolatie:Standaard drempelwaarde:Anker verwijderenAnkers verwijderenLaagmasker _verwijderenLaagmasker verwijderenObject verwijderenSegment verwijderenSjabloon verwijderenPenseel verwijderenKanaal verwijderenKleur verwijderenVerloop verwijderenLaag verwijderenLaagmasker verwijderenPalet verwijderenPad verwijderenPatroon verwijderen...Opgeslagen opties verwijderen...De geselecteerde buffer verwijderenGeselecteerde sjabloon verwijderenVerwijder deze afbeeldingVectoren verwijderenVerwijderen van '%s' mislukt: %sVeel stippenDesaturerenDesatureren werkt enkel op RGB-lagen.OmschrijvingOntwerpenApparaatstatusApparatenDialogenMenu DialogenDiamandVerschilDirecte kleurLaagmasker uitzettenSnelmasker uitschakelenTekstinformatie wegwerpenWeergaveWeergavenavigatie_Weergavefilters...WeergaveproceduresWeergavetype:Tonen [%0.6f, %0.6f]OplossenAfstand:Afstand: %0.6fKleurbenaderingDelenEen _verse gebruikersinstallatie uitvoerenWilt u echt alle filters herstellen naar hun standaardwaarden?Weet 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 duplicerenPalet duplicerenPad duplicerenPatroon duplicerenGeselecteerde sjabloon duplicerenEek: kan niet ongedaan makenPad e_xporteren..._Zeer kleinRandgedragR_andenBewerkenKanaalattributen bewerkenKanaalkleur bewerkenKleur paletingang bewerkenKleur-paletingang bewerkenLaagattributen bewerkenLaagmaskter bewerkenBewerkstandPaletkleur bewerkenPadattributen bewerkenSnelmaskerattributen bewerkenSnelmaskerkleur bewerkenSjabloon bewerkenPenseel bewerken...Kanaalattributen bewerkenKleur bewerkenKleur-paletingang #%d bewerkenVerloop bewerkenLaagattributen bewerkenPalet bewerken...Padattributen bewerkenPatroon bewerken...BewerkingsproceduresGeselecteerde sjabloon bewerkenOvale selectieNieuw kanaalNieuwe laagLeeg padTekstlaag leegmakenLege variabelenaam in omgevingsbestand %sVer_sterkenSnelmasker inschakelenDit 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 lezen penseelbestand '%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.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-kleurCanvas laten _passen op lagenUitvloeienKon 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. +Het originele bestand is niet getouched.FoutenActieZ_eer grootVergroot waar nodigPad naar SVG exporterenActieve pad exporterenBelichting:Uitgebreide invoerapparatenExtensiesVG-kleur vullenVG 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-kleurCanvas laten _passen op lagenUitvloeienKon verlopen niet importeren uit '%s': %sKon paden niet importeren uit '%s': %sChiqueFatale verwerkingsfout in penseelbestand '%s': Bytes = 0.Fatale parseerfout in penseelbestand '%s': bestand lijkt te zijn ingekort.Fatale parseerfout in penseelbestand '%s': bestand is beschadigd.Fatale verwerkingsfout in penseelbestand '%s': Hoogte = 0.Fatale parseerfout in penseelbestand '%s': is geen GIMP-penseelbestand.Fatale verwerkingsfout in penseelbestand '%s': onbekende vorm GIMP-penseel.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 verwerkingsfout in penseelbestand '%s': Breedte = 0.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._Verzachten...Kanaal verzachtenStraalselectieStraalselectie metBestand_Dialoogvenster Bestand openenBestandsoperatiesBestandstypeBestand bestaatBestand is afgekaptKanaal vullenOndoorzichtigheid van opvullen: Vultype %sTransparante gebieden vullenHele selectie vullenVullen 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 verhoudingVaste 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-UIFont:FontsMenu 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. +GIMP-patronen moeten Grijswaarden of RGB zijn._Verzachten...Kanaal verzachtenStraalselectieStraalselectie metBestand_Dialoogvenster Bestand openenBestandsoperatiesBestandstypeBestand bestaatBestand is afgekaptKanaal vullenOndoorzichtigheid van opvullen: Vultype %sTransparante gebieden vullenHele selectie vullenVullen 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 verhoudingVaste grootteAfbeelding plettenOmkerenKanaal spiegelenLaag spiegelenPad spiegelenTekstlaag spiegelenSpiegelrichting %s_Horizontaal spiegelen_Verticaal spiegelenAfbeelding spiegelenSpiegel de huidige laag of selectieSpiegelen...Spiegelen...Drijvende selectieDrijvende selectieDrijvende laagDrijvende Selectie< +(%s)Drijvende selectie naar laagDrijvende selectie naar laagDrijvende selectiesFloyd-Steinberg (normaal)Floyd-Steinberg (verminderde kleuruitloop)FocusMapMappenFontmappenFont-UIFont:FontsMenu 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 optie '--no-interface' gebruikt werd. -Om de gebruikersinstallatie uit te voeren, start de u GIMP zonder deze optie '--no-interface'.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)KVW (_kleurtoon tegen de klok in)KVW (k_leurtoon kloksgewijs)HTML-notatie:Hoogt_e: Te gebruiken hulpbrowser:Handel positie: %0.6fHarde randHard lichtHardheidHardheid:HoogteHoogte: HulpHulpbrowserHulpsysteemHulpbrowser start niet opHulpbrowser niet gevondenHulpproceduresHex:Lichtere kleurenHintingHinten 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 importerenPalet 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.Selectie inverterenIs 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.ToetsenbordToetsaanslagenSneltoetsenLNR_Kleur van linkereindpunt...LiggendGrootGroot (256×256)Grotere vooruitblikkenLaatste fout:LaagLaag '%s' heeft geen alpha. Laag erboven geplaatst.LaagattributenLaag _grensgrootte...Vultype laagLaagmasker naar selectieLaagselectieLaaggrootteLaag_modusNaam laag:Laag kan niet verder naar benedenLaag kan niet verder naar bovenLaag is reeds op de bodemLaag is reeds de bovensteLaag naar afbeeldingsgrootteLaag _onderaanLaag naar _afbeeldingsgrootteLaag _bovenaan_Alphakanaal van laagLagenMenu 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 laden_Rechterkleur laden uitCurve-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 bodemPad naar _bodemKanaal verlagenKanaal onderaan zettenLaag omlaagLaag onderaan zettenPad omlaagPad naar bodemVer_grotenAllemaal_Verplaatsen naar scherm..._ProjecterenMagentaMagenta:Vergroten_Transparant makenLaadbare modules beherenSnelheid _marcherende mieren:Ondoorzichtigheid van masker:Geselecteerde _gebieden maskeren_Niet-geselecteerde gebieden maskerenMatrix:Max. Diepte:Maximale _bestandsgrootte voor miniaturen:Maximum kleurverschilMax. _geheugenruimte "Ongedaan maken":Gemiddelde:MetenAfstanden en hoeken metenAfstanden en hoeken metenMediaan:MediumMedium streepjes_Neerwaarts samenvoegenNeerwaarts samenvoegenLagen samenvoegenPalet samenvoegenZichtbare lagen samenvoegenZichtbare paden samenvoegen_Zichtbare lagen samenvoegen..._Zichtbare lagen samenvoegen...Zichtbare paden samen_voegenLagen samenvoegenPaletten 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 aanpassenModulemappenModulebeheerModulepadModulesMuisaanwijzersMuiswielMuiswielgebeurtenissenVerplaatsenAnkers 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 kleur uit _AGNieuwe kleur uit _VGNieuwe afbeeldingNieuwe laagNieuw padOpties nieuw padNieuwe sjabloonNieuw penseelNieuw kanaal met laatste waardesNieuw kanaal...Nieuwe kleur uit AGNieuwe kleur uit VGNieuw 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 rasterlijnenAantal 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 paletkeuzedialoogvensterOpen het patroonkeuzedialoogvensterGeselecteerde item openenOpenen van '%s' mislukte. +Om de gebruikersinstallatie uit te voeren, start de u GIMP zonder deze optie '--no-interface'.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).Optimaal palet genererenBeeldscherminformatieGigantischGimprc-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:RasterRasterlijnafstandKanaal groeienSelectie groeienGroei selectie metHulplijnMagnetische hulplijnen en rasterHulplijnproceduresKVWKVW (%0.3f, %0.3f, %0.3f)KVW (_kleurtoon tegen de klok in)KVW (k_leurtoon kloksgewijs)HTML-notatie:Hoogt_e: Te gebruiken hulpbrowser:Handel positie: %0.6fHarde randHard lichtHardheidHardheid:HoogteHoogte: HulpHulpbrowserHulpsysteemHulpbrowser start niet opHulpbrowser niet gevondenHulpproceduresHex:Lichtere kleurenHintingHinten 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-opgeslagen wijzigingen zullen verloren gaan.Niet toegestane variabelenaam in omgevingsbestand %s: %sAfbeeldingAfbeelding + rasterAfbeelding-editorAfbeeldingsinformatieAfbeeldingsmenuAfbeeldingsgrootteFormaat statusbalkAfbeeldingssjablonenMiniaturenFormaat titel en statusbalkFormaat titelWeergave afbeeldingsvenstersAfbeeldingsvenstersAfbeelding bevat geen zichtbare lagenAfbeeldingAfbeeldingsmaskerAfbeeldingsresolutie is buiten het bereik, in plaats daarvan wordt de standaardresolutie gebruikt.AfbeeldingsgrootteAfbeeldingsbronAfbeeldingstypeAfbeeldingenMenu AfbeeldingenImportoptiesPalet importerenPaden importerenPaden uit SVG importerenNieuw palet importerenPalet 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 invoegenInstalleer een eigen kleurkaart; kan nuttig zijn voor 8-bit (256 kleuren) displays.Installatie 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.Selectie inverterenIs dit wat u wilt doen?Blijkbaar heeft u eerder GIMP 2.0 gebruikt.Eigenschappen itemZichtbaarheid itemUitvullen:Transparantie behoudenZichtbaar houdenVerhouding behouden %sHoogte behouden %sTransparantie behoudenBreedte behouden %sToets 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.ToetsenbordToetsaanslagenSneltoetsenLNR_Kleur van linkereindpunt...LiggendGrootGroot (256×256)Grotere vooruitblikkenLaatste fout:LaagLaag '%s' heeft geen alpha. Laag erboven geplaatst.LaagattributenLaag _grensgrootte...Vultype laagLaagmasker naar selectieLaagselectieLaaggrootteLaag_modusNaam laag:Laag kan niet verder naar benedenLaag kan niet verder naar bovenLaag is reeds de onderste.Laag is reeds de bovensteLaag naar afbeeldingsgrootteLaag _onderaanLaag naar _afbeeldingsgrootteLaag _bovenaan_Alphakanaal van laagLagenMenu 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 laden_Rechterkleur laden uitCurve-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 bodemPad naar _bodemKanaal verlagenKanaal onderaan zettenLaag omlaagLaag onderaan zettenPad omlaagPad naar bodemVer_grotenAllemaal_Verplaatsen naar scherm..._ProjecterenMagentaMagenta:Vergroten_Transparant makenLaadbare modules beherenSnelheid _marcherende mieren:Ondoorzichtigheid van masker:Geselecteerde _gebieden maskeren_Niet-geselecteerde gebieden maskerenMatrix:Max. Diepte:Maximale _bestandsgrootte voor miniaturen:Maximum kleurverschilMax. _geheugenruimte "Ongedaan maken":Gemiddelde:MetenAfstanden en hoeken metenAfstanden en hoeken metenMediaan:MediumMedium streepjes_Neerwaarts samenvoegenNeerwaarts samenvoegenLagen samenvoegenPalet samenvoegenZichtbare lagen samenvoegenZichtbare paden samenvoegen_Zichtbare lagen samenvoegen..._Zichtbare lagen samenvoegen...Zichtbare paden samen_voegenLagen samenvoegenPaletten samenvoegenVectoren 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 aanpassenModulemappenModulebeheerModulepadModulesMuisaanwijzersMuiswielMuiswielgebeurtenissenVerplaatsenAnkers 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 naar scherm...Verplaatsen: Vermenigvuldigen_Aantal kleuren:Na_vigatie_Navigatievenster_Navigatievooruitblikgrootte:NaamNaam:NavigatieNieuw kanaalNieuwe kanaalkleurOpties Nieuw kanaalNieuwe kleur uit _AGNieuwe kleur uit _VGNieuwe afbeeldingNieuwe laagNieuw padOpties nieuw padNieuwe sjabloonNieuw penseelNieuw kanaalNieuw kanaal met laatste waardesNieuw kanaal...Nieuwe kleur uit AGNieuwe kleur uit VGNieuw verloopNieuw importerenNieuwe laagNieuwe laag met laatste waardesNieuwe laag...Nieuw paletNieuw pad met laatste waardesNieuw pad...Nieuw patroonNieuwe vectorenGeen 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 processors gebruiken:Aantal rasterlijnenAantal 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 paletkeuzedialoogvensterOpen het patroonkeuzedialoogvensterGeselecteerde item openenOpenen van '%s' mislukte. %sOpenen van '%s' mislukte: %sOpties: 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 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" +je psyche een beetje afwijken.SchilderenSchilderopties gedeeld tussen gereedschappenTekengereedschapsproceduresTekengereedschap:_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 bovenLaag is reeds de onderste.Pad is reeds de bovenste.Pad naar sele_ctiePad naar selectiePad naar selectiePadenMenu PadenPatroonPatroonmappenPatroon-UIPatroon vullenPatroonbronPatronenMenu 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...Een ogenblik geduld...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.6fPosteriserenPosteriseren (aantal kleuren verminderen)Posterisatie_niveaus:Posteriseren werkt niet op geïndexeerde lagen.Voorkeuren_Lichtheid behoudenDrukgevoeligheidDruk:VooruitblikVooruitblik is verouderdVooruitblik:VooruitblikkenAfdrukgrootteAfdrukgrootte:Problemen met het parseren van de tekstparasiet voor laag '%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.6fMet positiePosteriserenPosteriseren (aantal kleuren verminderen)Posterisatie_niveaus:Posteriseren werkt niet op geïndexeerde lagen.Voorkeuren_Lichtheid behoudenDrukgevoeligheidDruk:VooruitblikVooruitblik is verouderdVooruitblik:VooruitblikkenAfdrukgrootteAfdrukgrootte: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) -Snel ladenSnelmaskerSnelmaskerattributenMenu SnelmaskerSnel opslaanSnelmaskerDe 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" opnieu_w tonenGereedschapsopties _herstellenKanaal _herstellenKleur _herstellenKl_eur van rechtereindpunt...RadiaalStraal:Kanaal verhogenKanaal bovenaanKanaal _bovenaanLaag omhoogLaag bovenaanPad omhoogPad naar topPad naar _topKanaal verhogenKanaal bovenaan zettenLaag omhoogLaag bovenaan zettenPad omhoogPad naar topDe 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" _herhalen_Terugdraaien...Laden 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.KlaarOverzicht 'ongedaan maken' voor deze afbeelding echt leegmaken?_Vooruitblik opnieuw aanmakenVooruitblik opnieuw aanmakenRechthoekselectieRoodRood:Opnieuw uitvoerenAfbeelding tot vast aantal kleuren reducerenAfbeelding tot twee kleuren reduceren met een grenswaardePenselen vernieuwenVerlopen vernieuwenPaletten vernieuwenPatronen vernieuwenGeregistreerdHuidig thema herladen_Alle vooruitblikken herladenAlle vooruitblikken herladenOnthou het huidige gereedschap, patroon, de kleur en penseel voor een volgende sessie.NetwerkafbeeldingKanaal verwijderenLosse i_ngangen verwijderenDrijvende selectie verwijderenHulplijn verwijderenLaag verwijderenParasiet uit afbeelding verwijderenParasiet van item verwijderenPad verwijderen_Item verwijderenLosse ingangen verwijderenDrijvende selectie verwijderenParasiet verwijderenGeselecteerde ingang 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 selectieLettertypelijst opnieuw inlezenGereedschapsopties herinstellenAlle filters herstellenAlle filters herstellen...Geselecteerd 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. +Snel ladenSnelmaskerSnelmaskerattributenMenu SnelmaskerSnel opslaanSnelmaskerDe 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" opnieu_w tonenGereedschapsopties _herstellenKanaal _herstellenKleur _herstellenKl_eur van rechtereindpunt...RadiaalStraal:Kanaal verhogenKanaal bovenaanKanaal _bovenaanLaag omhoogLaag bovenaanPad omhoogPad naar topPad naar _topKanaal verhogenKanaal bovenaan zettenLaag omhoogLaag bovenaan zettenPad omhoogPad naar topDe 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" _herhalen_Terugdraaien...Laden 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.KlaarOverzicht 'ongedaan maken' voor deze afbeelding echt leegmaken?_Vooruitblik opnieuw aanmakenVooruitblik opnieuw aanmakenRechthoekselectieRoodRood:Opnieuw uitvoerenAfbeelding tot vast aantal kleuren reducerenAfbeelding tot twee kleuren reduceren met een grenswaardePenselen vernieuwenVerlopen vernieuwenPaletten vernieuwenPatronen vernieuwenGeregistreerdHuidig thema herladen_Alle vooruitblikken herladenAlle vooruitblikken herladenOnthou het huidige gereedschap, patroon, de kleur en penseel voor een volgende sessie.NetwerkafbeeldingKanaal verwijderenLosse i_ngangen verwijderenDrijvende selectie verwijderenHulplijn verwijderenLaag verwijderenParasiet uit afbeelding verwijderenParasiet van item verwijderenPad verwijderen_Item verwijderenLosse ingangen verwijderenDrijvende selectie verwijderenParasiet verwijderenGeselecteerde ingang verwijderenVerwijder het geselecteerde filter uit de lijst van actieve filters.Verwijderen sneltoets mislukt.Kanaal hernoemenLaag hernoemenPad hernoemenOpgeslagen gereedschapsopties hernoemenTekstlaag hernoemenItem hernoemenLijn renderenHerrangschik kanaalLaag herschikkenPad herschikkenLaatste herhalenHerhaal:Huidige selectie vervangenKopieerKopieer verloopsegmentKopieer verloopselectieKopieer segmentKopieer selectieKanaal herpositionerenLaag herpositionerenVectoren herpositionerenLettertypelijst opnieuw inlezenGereedschapsopties herinstellen_Alle gereedschapsopties opnieuw instellen...Alle filters herstellenAlle filters herstellen...Alle gereedschapsopties opnieuw instellen...Geselecteerd filter naar beginwaardenTerugzetten naar standaardwaardenVolgorde en zichtbaarheid van het gereedschap herstellenHerschalenKanaal herschalenAfbeelding herschalenLaag herschalenPad herschalenTekstlaag herschalenAfbeelding herschalenItem herschalenVenstergrootte aanpassen bij _zoomen_Venstergrootte aanpassen bij vergroten/verkleinen afbeeldingHerschalen...ResolutiewijzigingResolutie: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 uitgelijndRoteren90 graden draaien _TKI_90 graden draaien MKMKanaal draaienLaag draaienPad draaienTekstlaag draaien_180 graden draaienAfbeelding draaienDraai de laag of selectieRoteren...Rotatie-informatieRond_Hellen_Raster tonen_Krimpen...S_pakenKleuren _wisselenRechterkleur opsl_aan naarSamengevoegd monsterenVerz.: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 opslaan...Kopie van de afbeelding opslaanAlle fouten opslaanAls _POV-Ray opslaan...Opslaan als s_jabloon...Sla gewijzigde sneltoetsen op als de GIMP afsluit.Sla curve-instellingen op in bestandApparaatstatus opslaanVerloop opslaan als POV-RayNiveauinstellingen 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' +%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_Hellen_Raster tonen_Krimpen...S_pakenKleuren _wisselenRechterkleur opsl_aan naarSamengevoegd monsterenVerz.:VerzadigingOpslaan'%s' opslaan als POV-RayCurves opslaanFoutenlog in bestand opslaanAfbeelding opslaanApparaatinstellingen _nu opslaanSneltoetsen _nu opslaanNiveaus opslaanGereedschapsopties opslaanVensterposities _nu opslaan_Alle fouten naar bestand schrijven...Selectie op_slaan in bestand...Opslaan _als..._Kopie opslaan...Kopie van de afbeelding opslaanAlle fouten opslaanAls _POV-Ray opslaan...Opslaan als s_jabloon...Sla gewijzigde sneltoetsen op als de GIMP afsluit.Sla curve-instellingen op in bestandApparaatstatus opslaanVerloop opslaan als POV-RayNiveauinstellingen 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 schalenItem schalenSchaalverhouding X:Schaalverhouding Y:Schaal:Schaal de laag of selectieSchalenSchalen...ScharenSchermScript-Fu-mappenScriptsMuiswiel neerMuiswiel neer (Alt)Muiswiel neer (Control + Alt)Muiswiel neer (Control)Muiswiel neer (Shift + Alt)Muiswiel neer (Shift + Control + Alt)Muiswiel neer (Shift + Control)Muiswiel neer (Shift)Muiswiel linksMuiswiel links (Alt)Muiswiel links (Control + Alt)Muiswiel links (Control)Muiswiel links (Shift + Alt)Muiswiel links (Shift + Control + Alt)Muiswiel links (Shift + Control)Muiswiel links (Shift)Muiswiel rechtsMuiswiel rechts (Alt)Muiswiel rechts (Control + Alt)Muiswiel rechts (Control)Muiswiel rechts (Shift + Alt)Muiswiel rechts (Shift + Control + Alt)Muiswiel rechts (Shift + Control)Muiswiel rechts (Shift)Muiswiel op Muiswiel op (Alt)Muiswiel op (Control + Alt)Muiswiel op (Control)Muiswiel op (Shift + Alt)Muiswiel op (Shift + Control + Alt)Muiswiel op (Shift + Control)Muiswiel op (Shift)SelecterenAlles 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 selecterenO_nderste laag selecteren_Eigen kleur selecteren...V_olgende laag selecteren_Vorige laag selecteren_Bovenste laag selecterenAlles 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 +%sAfbeeldingen opslaanZaagtandgolfSchaalbaar vectorbestand (*.svg)SchalenKanaal schalenAfbeelding schalenLaag schalenPad schalenTekstlaag schalenAfbeelding schalenItem schalenSchaalverhouding X:Schaalverhouding Y:Schaal:Schaal de laag of selectieSchalenSchaalinformatieSchalen...ScharenSchermScript-Fu-mappenScriptsMuiswiel neerMuiswiel neer (Alt)Muiswiel neer (Control + Alt)Muiswiel neer (Control)Muiswiel neer (Shift + Alt)Muiswiel neer (Shift + Control + Alt)Muiswiel neer (Shift + Control)Muiswiel neer (Shift)Muiswiel linksMuiswiel links (Alt)Muiswiel links (Control + Alt)Muiswiel links (Control)Muiswiel links (Shift + Alt)Muiswiel links (Shift + Control + Alt)Muiswiel links (Shift + Control)Muiswiel links (Shift)Muiswiel rechtsMuiswiel rechts (Alt)Muiswiel rechts (Control + Alt)Muiswiel rechts (Control)Muiswiel rechts (Shift + Alt)Muiswiel rechts (Shift + Control + Alt)Muiswiel rechts (Shift + Control)Muiswiel rechts (Shift)Muiswiel op Muiswiel op (Alt)Muiswiel op (Control + Alt)Muiswiel op (Control)Muiswiel op (Shift + Alt)Muiswiel op (Shift + Control + Alt)Muiswiel op (Shift + Control)Muiswiel op (Shift)SelecterenAlles 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 selecterenO_nderste laag selecteren_Eigen kleur selecteren...V_olgende laag selecteren_Vorige laag selecteren_Bovenste laag selecterenAlles selecterenSelecteer op kleurSelecteer aaneengesloten gebiedenElliptische gebieden selecterenSelecteer gebieden met de handNiets selecterenPaletbestand 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 selecterenSele_ctie naar padSelectieSelectie-editorMenu Selectie-editorSelectiemaskerSelectiegereedschapsproceduresSelectiemaskerSelectie naar pad (ge_avanceerd)Selectie naar padSelectie: Selectie: TOEVOEGENSelectie: SNIJDENSelectie: VERVANGENSelectie: AFTREKKENGevoeligheidStel canvasopvulkleur inKanaalkleur instellenKanaalondoorzichtigheid instellenKleurenkaart instellenCanvasgrootte instellenAfdrukresolutie instellenStel item in op exclusief gekoppeldStel item in op exclusief zichtbaarLaaggrensgrootte instellenNaam uit tekst instellenOndoorzichtigheid instellenAchtergrondkleur instellenVoorgrondkleur 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)SplitsenSplits 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:_Gereedschap_Tekst_TekstTijdelijke map:SjablonenMenu SjablonenTijdelijke procedurePlug-in afsluiten: '%s' -TekstTekstkleurTeksteditorTekstlaagTekstproceduresDe GIMPHet actieve penseel. +geselecteerd segment moet worden opgesplitst.Webbrowser selecterenSele_ctie naar padSelectieSelectie-editorMenu Selectie-editorSelectiemaskerSelectiegereedschapsproceduresSelectiemaskerSelectie naar pad (ge_avanceerd)Selectie naar padSelectie: Selectie: TOEVOEGENSelectie: SNIJDENSelectie: VERVANGENSelectie: AFTREKKENGevoeligheidStel canvasopvulkleur inKanaalkleur instellenKanaalondoorzichtigheid instellenKleurenkaart instellenCanvasgrootte instellenAfdrukresolutie instellenStel item in op exclusief gekoppeldStel item in op exclusief zichtbaarLaaggrensgrootte instellenNaam uit tekst instellenOndoorzichtigheid instellenAchtergrondkleur instellenVoorgrondkleur instellenItem op vastgekoppeld instellenLaagmodus instellenOndoorzichtigheid laag instellen'Behoudt transparantie' 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.Steld het pixelformaat in van de cursors die GIMP gebruikt.De standaardgrootte van de vooruitblik voor lagen en kanalen in nieuw aangemaakte dialogen.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 grootte van de miniatuurafbeelding in het dialoogvenster "Openen". Merk op dat GIMP geen miniaturen kan aanmaken als laagvooruitblikken zijn uitgeschakeld.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:Naar vorm (hoekig)Naar vorm (putjes)Naar vorm (rond)VerscherpenKanaal verscherpenSelectie verscherpenHellenHelling X:Helling Y:De 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)_Tekengereedschap cursor tonenS_electie tonenS_tatusbalk tonen_Schuifbalken tonenToon tip bij het opstarten van GIMP_Tips tonen bij opstarten_Tooltips tonenZoompercentage weergevenZoomverhouding weergevenKanaal krimpenSelectie krimpenNaar _afbeeldingsgrootteKrimp vanaf de afbeeldingsrandKrimp selectie metNaar afbeeldingsgrootteGrootteGrootte in geheugen:Grootte van _miniaturen:Grootte:'%s' wordt overgeslagen: verkeerde GIMP-protocolversie.KleinKleinere vooruitblikkenGeleidelijkGladde randenSmerenAfbeelding smeren_Hulplijnen magnetisch_Raster magnetischZacht 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)Spaken:Spiraalvormig (tegen de klok in)Spiraalvormig (met de klok mee)SplitsenSplits 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 op selectie tekenenLijn tekenen op pad met laatste waardesLijn tekenen op pad...Lijn tekenen op selectie met de laatste waardesLijn tekenen op selectie...Lijn tekenen met tekengereedschapSoort kader rond de statusbalktekstAftrekkenVan huidige selectie aftrekkenOvermonsteringWisselmap:_Gereedschap_Tekst_TekstTijdelijke map:SjablonenMenu SjablonenTijdelijke procedurePlug-in afsluiten: '%s' +TekstTekstkleurTeksteditorTekstlaagTekst gewijzigdTekstproceduresDe GIMPDe GIMP-hulp browserplug-in is schijnbaar niet geinstalleerd.Het actieve penseel. Klik om het dialoogvenster Penselen te openen.Het actieve verloop. Klik om het dialoogvenster Verlopen te openen.De actieve afbeelding. Klik om het dialoogvenster Afbeelding te openen.Het actieve patroon. @@ -411,14 +421,19 @@ %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 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 & StatusNaar _pad_SpeeltjesSnelmasker schakelen_Snelmasker 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 transformerenTekstlaag transformerenTransformatiegereedschapsproceduresLaag transformerenPad transformerenSelectie transformerenTransformatieTransformatieproceduresTransformatie (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 rechten van de wisselmap die in uw Voorkeuren staan 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'_Overzicht 'Ongedaan maken'EenhedenOnbekendOnbekend bestandstypeLossenNaamloosNaamloosStandaard "stip voor stip" gebruiken_Webbrowser gebruiken in plaats hiervanGebruik alle zichtbare lagen bij het krimpen van de selectieInfovenster gebruiken GebruikersinstallatielogBedieningWerktuigvensterWaardeWaarde: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) +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.Dit venster heeft %d tabs openstaan. Wanneer u het venster sluit zullen ook alle tabs worden gesloten DrempelwaardeDrempelgereedschap werkt niet op geïndexeerde lagen.Drempel:Miniatuur %d van %dGrootte van TegelbufferHelling:MiniscuulTitel & StatusNaar _pad_SpeeltjesSnelmasker schakelen_Snelmasker 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 transformerenTekstlaag transformerenTransformatiegereedschapsproceduresLaag transformerenPad transformerenSelectie transformerenTransformatieTransformatieproceduresTransformatie (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 rechten van de wisselmap die in uw Voorkeuren staan 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'_Overzicht 'Ongedaan maken'EenhedenOnbekendOnbekend bestandstypeOnbekend type van paletbestand: +%sLossenNaamloosNaamloosStandaard "stip voor stip" gebruiken_Webbrowser gebruiken in plaats hiervanGebruik alle zichtbare lagen bij het krimpen van de selectieZwart/wit (1-bit) palet gebruikenGebruik kleur uit verloopAangepast palet gebruikenInfovenster gebruiken Web-geoptimaliseerd palet gebruikenGebruikersinstallatielogBedieningWerktuigvensterWaardeWaarde:VectorwijzigingVersie %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:Waarschuwing: Kon gegevens niet laden: + +%sWaarschuwing: Kon gegevens niet opslaan: + +%sWebbrowserWebbrowserWelkom bij de +GIMP %d.%d gebruikersinstallatieWanneer ingeschakeld volgt het dialoogvenster automatisch de afbeelding die waar u mee bezig bent.Indien ingeschakeld worden in de menus van de GIMP sneltoetsen gebruikt.Wanneer ingeschakkeld zal al het tekengereedschap 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, zal de cursor zichtbaar zijn tijdens het tekenen op de afbeelding.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:1Alles tonenInzoomenUitzoomenZoomverhoudingZoomverhouding:_Alles tonen_Inzoomen_UitzoomenAlles tonenZoomfactor: %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_VervagenHe_lderheid:Pe_nseel_Penselen_Penselen, Patronen & Verlopen_Vullen_BuffersOp _kleurOp kle_urselectie_C_Hoekstijl:_Kanalen_Fouten wissenOverzicht 'Ongedaan maken' _leegmaken_KlonenSl_uitenTab sl_uitenW_olken_Kleur_KleurenKleur en ondoorzichtigheid _configureren..._Context_Contexthulp_KopiërenBenoemde buffer _kopiëren..._Afbeelding volgens sjabloon aanmaken..._Knippen & herschalenAfbeelding _snijden_Gebogen_Curves..._Donkere vakjes_StandaardkleurenPenseel _verwijderenBuffer _verwijderenKanaal _verwijderenKleur verwij_deren_Verloop verwijderen... Afbeelding _verwijderenLaag _verwijderenPalet verwij_derenPad _verwijderenPatroon verwij_deren...Opgeslagen opties _verwijderenSegment verwijderenSelectie verwijderenSjabloon _verwijderen_DesaturerenTab _loskoppelen_Apparaatstatus_DialogenTekstinformatie weggooien_Vervormingen_Punt voor punt_DuplicerenBe_werkenPenseel be_werken...Kanaalattributen be_werken...Kleur be_werken...Verloop be_werken...Laagattributen be_werken...Palet be_werken...Padattributen be_werken...Patroon be_werken...Sjabloon be_werken..._Ovale selectie_Laag- en kanaalvooruitblikken inschakelenE_norm_Gelijkmaken_Gummetje_VG-kleur_Bestand_Vullen met:A_fbeelding in venster passenAfbeelding _pletten_SpiegelenSegment spiegelenSelectie spiegelen_Zwevend_Lettertype_Lettertypes_Voorgrondkleur:_Vrije selectie_G_GeneriekGig_antisch_Verloop_Verloop_Grijswaarden_Grijswaardenkopie van laag_Uitdijen..._Hulplijn_Hardheid_Hulp_Horizontaal:Kleur_toon:_Reusachtig_Pictogram_Pictogram:_Afbeelding_Afbeeldingen_ImporterenPalet _importeren...Geï_ndexeerd_InformatievensterMet selectie _snijden_Inverteren_Verbindingsstijl:_Groot_Laag_Lagen_Lagen, Kanalen & Paden_Linker eindpunt_Rechtereindpunt van linkerbuur_Niveaus..._Lichte vakjes_LichteffectenLichtheid:_Lijnstijl_Lineair_Gekoppeld_Linkerkleur laden uitKanaal om_laagLaag om_laagPad om_laag_M_HandmatigPro_jecteren_Masker_Masker naar selectie_Maximum aantal kleuren:_Meten_MiddelPaletten _samenvoegen..._Geïmporteerde paden samenvoegenGIMP 2.0 _gebruikersinstellingen overzetten_OverigeVerste_klimiet:_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_Posteriseren..._Voorkeuren_Vooruitblik_Grootte van vooruitblikV_orige tipA_fdrukgrootte..._Eigenschappen_Snelmasker actiefSl_uiten_R_RGB_StraalKanaal om_hoogLaag om_hoogPad om_hoog_Weergaven omhoog_Afbeelding openen of tonen_Sneltoetsen opnieuw toewijzen_RechthoekselectieO_pnieuw uitvoeren%s opnieuw uitvoeren_Penselen vernieuwenVerlopen ve_rnieuwenPaletten ver_nieuwenPatronen _vernieuwen_Ongebruikte kleuren uit het palet verwijderen_Renderen_VervangenSegment kopiëren...Selectie kopiëren..._Lettertypelijst opnieuw inlezenVolgorde en zichtbaarheid _herstellen_Opgeslagen vensterposities herstellen bij opstartenOpties he_rstellen uit_Rechter eindpunt_Linkereindpunt van rechterbuur_RoterenVer_zadiging:Op_slaanLinkerkleur op_slaan naarOpties op_slaan naar_Apparaatinstellingen opslaan bij verlaten...Vensterposities op_slaan bij verlaten_SchalenAfbeelding _schalen...Laag _schalen...Geïmporteerde paden _schalen naar afbeeldinging_Selecteren_Selectie_Selectie-editor_Selectie_VormVer_scherpen_Selectie tonen_Tonen in de gereedschapskist_Sinusvormig_Klein_Smeren_Magnetische afstand:_Lijn tekenen op selectie_Lijn tekenen op selectie...Van selectie _aftrekkenTab_stijl_Sjabloon:_Sjablonen_Tekst_Drempelwaarde...Minisc_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 +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:1Alles tonenInzoomenUitzoomenZoomverhoudingZoomverhouding:_Alles tonen_Inzoomen_UitzoomenAlles tonenZoomfactor: %d:1Afbeelding zoomen als venstergrootte wijzigtInzoomenIn- & uitzoomenUitzoomenZoom:[ Basisafbeelding ]I_nfo_ImporterenKleur _toevoegen uit AGKleur _toevoegen uit VG_Tab toevoegen_Aan selectie toevoegen_Geavanceerde opties_Verfspuit_AllesLaag ver_ankeren_Anti-aliasing_Willekeurige draaiing..._Artistiek_Verhouding_Automatisch_B_AG-kleur_Achtergrondkleur:_Zwart (transparant)_Mengfunctie voor segmentMengfunctie voor selectie_VervagenHe_lderheid:Pe_nseel_Penselen_Penselen, Patronen & Verlopen_Vullen_BuffersOp _kleurOp kle_urselectie_C_Hoekstijl:_Kanalen_Fouten wissenOverzicht 'Ongedaan maken' _leegmaken_KlonenSl_uitenTab sl_uitenW_olken_Kleur_KleurenKleur en ondoorzichtigheid _configureren..._Context_Contexthulp_KopiërenBenoemde buffer _kopiëren..._Afbeelding volgens sjabloon aanmaken..._Knippen & herschalenAfbeelding _snijden_Gebogen_Curves..._Donkere vakjes_StandaardkleurenPenseel _verwijderenBuffer _verwijderenKanaal _verwijderenKleur verwij_deren_Verloop verwijderen... Afbeelding _verwijderenLaag _verwijderenPalet verwij_derenPad _verwijderenPatroon verwij_deren...Opgeslagen opties _verwijderenSegment verwijderenSelectie verwijderenSjabloon _verwijderen_DesaturerenTab _loskoppelen_Apparaatstatus_Dialogen_Wijzigingen verwerpenTekstinformatie weggooien_Vervormingen_Punt voor punt_DuplicerenBe_werkenPenseel be_werken...Kanaalattributen be_werken...Kleur be_werken...Verloop be_werken...Laagattributen be_werken...Palet be_werken...Padattributen be_werken...Patroon be_werken...Sjabloon be_werken..._Ovale selectie_Laag- en kanaalvooruitblikken inschakelenE_norm_Gelijkmaken_Gummetje_VG-kleur_Bestand_Vullen met:A_fbeelding in venster passenAfbeelding _pletten_SpiegelenSegment spiegelenSelectie spiegelen_Zwevend_Lettertype_Lettertypes_Voorgrondkleur:_Vrije selectie_G_GeneriekGig_antisch_Verloop_Verloop_Grijswaarden_Grijswaardenkopie van laag_Uitdijen..._Hulplijn_Hardheid_Hulp_Horizontaal:Kleur_toon:_Reusachtig_Pictogram_Pictogram:_Afbeelding_Afbeeldingen_ImporterenPalet _importeren...Geï_ndexeerd_InformatievensterMet selectie _snijden_Inverteren_Verbindingsstijl:_Groot_Laag_Lagen_Lagen, Kanalen & Paden_Linker eindpunt_Rechtereindpunt van linkerbuur_Niveaus..._Lichte vakjes_LichteffectenLichtheid:_Lijnstijl_Lineair_Gekoppeld_Linkerkleur laden uitKanaal om_laagLaag om_laagPad om_laag_M_HandmatigPro_jecteren_Masker_Masker naar selectie_Maximum aantal kleuren:_Meten_MiddelPaletten _samenvoegen..._Geïmporteerde paden samenvoegenGIMP 2.0 _gebruikersinstellingen overzetten_OverigeVerste_klimiet:_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_Posteriseren..._Voorkeuren_Vooruitblik_Grootte van vooruitblikV_orige tipA_fdrukgrootte..._Eigenschappen_Snelmasker actiefSl_uiten_R_RGB_StraalKanaal om_hoogLaag om_hoogPad om_hoog_Weergaven omhoog_Afbeelding openen of tonen_Sneltoetsen opnieuw toewijzen_RechthoekselectieO_pnieuw uitvoeren%s opnieuw uitvoeren_Penselen vernieuwenVerlopen ve_rnieuwenPaletten ver_nieuwenPatronen _vernieuwen_Ongebruikte kleuren uit het palet verwijderen_Renderen_VervangenSegment kopiëren...Selectie kopiëren..._Lettertypelijst opnieuw inlezenVolgorde en zichtbaarheid _herstellenHerstel opgeslagen sneltoetsen bij opstarten._Opgeslagen vensterposities herstellen bij opstartenOpties he_rstellen uit_Rechter eindpunt_Linkereindpunt van rechterbuur_RoterenVer_zadiging:Op_slaanLinkerkleur op_slaan naarOpties op_slaan naar_Apparaatinstellingen opslaan bij verlaten..._Sneltoetsen opslaan bij verlatenVensterposities op_slaan bij verlaten_SchalenAfbeelding _schalen...Laag _schalen...Geïmporteerde paden _schalen naar afbeeldinging_Selecteren_Selectie_Selectie-editor_Selectie_VormVer_scherpen_Selectie tonen_Tonen in de gereedschapskist_Sinusvormig_Klein_Smeren_Magnetische afstand:_Lijn tekenen op selectie_Lijn tekenen op selectie...Van selectie _aftrekkenTab_stijl_Sjabloon:_Sjablonen_Tekst_Drempelwaarde...Minisc_uul_Tip van de dag_Gereedschap_Gereedschap_Alphakanaal van de laag verplaatsen_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 pictogramtypeongeldige 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.4/po/nl.po gimp-2.2.5/po/nl.po --- gimp-2.2.4/po/nl.po 2005-01-22 17:33:06.000000000 +0100 +++ gimp-2.2.5/po/nl.po 2005-04-09 21:46:24.000000000 +0200 @@ -9,12 +9,13 @@ # -------------------------------------------------- # posterise - kleurverarming # font - lettertype/font +# paint tools - schilder(gereedschap) msgid "" msgstr "" "Project-Id-Version: gimp.gimp-2-0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-01-22 17:32+0100\n" -"PO-Revision-Date: 2005-01-03 00:27+0100\n" +"POT-Creation-Date: 2005-03-12 19:09+0100\n" +"PO-Revision-Date: 2005-03-20 02:39+0100\n" "Last-Translator: Tino Meinen \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" @@ -1044,7 +1045,7 @@ #: app/actions/documents-commands.c:251 app/actions/file-commands.c:170 #: app/dialogs/file-open-dialog.c:198 app/dialogs/file-open-dialog.c:249 -#: app/dialogs/file-open-location-dialog.c:193 +#: app/dialogs/file-open-location-dialog.c:195 #: app/display/gimpdisplayshell-dnd.c:334 app/widgets/gimplayertreeview.c:804 #: app/widgets/gimptoolbox-dnd.c:125 #, c-format @@ -1350,7 +1351,7 @@ msgid "_Quit" msgstr "Sl_uiten" -#: app/actions/file-commands.c:215 app/dialogs/file-save-dialog.c:281 +#: app/actions/file-commands.c:215 app/dialogs/file-save-dialog.c:282 #, c-format msgid "" "Saving '%s' failed:\n" @@ -2785,20 +2786,19 @@ msgid "R_eset Tool Options" msgstr "Gereedschapsopties _herstellen" +# beginwaarden/standaardwaarden #: app/actions/tool-options-actions.c:82 -#, fuzzy msgid "Reset to default values" -msgstr "Geselecteerd filter naar beginwaarden" +msgstr "Terugzetten naar standaardwaarden" +# herstellen/opnieuw instellen #: app/actions/tool-options-actions.c:87 -#, fuzzy msgid "Reset _all Tool Options..." -msgstr "/Alle gereedschapsopties opnieuw instellen..." +msgstr "_Alle gereedschapsopties opnieuw instellen..." #: app/actions/tool-options-actions.c:88 -#, fuzzy msgid "Reset all tool options" -msgstr "/Alle gereedschapsopties opnieuw instellen..." +msgstr "Alle gereedschapsopties opnieuw instellen..." #: app/actions/tool-options-commands.c:73 msgid "Save Tool Options" @@ -3110,20 +3110,17 @@ # Shrink wrap is the phenomenon of fitting the image window to the image dimensions #: app/actions/view-actions.c:105 -#, fuzzy msgid "Shrink _Wrap" -msgstr "Naar afbeeldingsgrootte" +msgstr "Naar _afbeeldingsgrootte" # Shrink wrap is the phenomenon of fitting the image window to the image dimensions #: app/actions/view-actions.c:106 -#, fuzzy msgid "Shrink wrap" msgstr "Naar afbeeldingsgrootte" #: app/actions/view-actions.c:111 -#, fuzzy msgid "Move to Screen..." -msgstr "/Naar scherm..." +msgstr "Verplaatsen naar scherm..." #: app/actions/view-actions.c:119 msgid "_Dot for Dot" @@ -3142,18 +3139,16 @@ msgstr "Hulplijnen tonen" #: app/actions/view-actions.c:143 -#, fuzzy msgid "Sn_ap to Guides" -msgstr "/Beeld/Hulplijnen magnetisch" +msgstr "_Hulplijnen magnetisch" #: app/actions/view-actions.c:149 msgid "S_how Grid" msgstr "_Raster tonen" #: app/actions/view-actions.c:155 -#, fuzzy msgid "Sna_p to Grid" -msgstr "/Beeld/Raster magnetisch" +msgstr "_Raster magnetisch" #: app/actions/view-actions.c:161 msgid "Show _Menubar" @@ -3486,9 +3481,8 @@ "slaan." #: app/config/gimprc-blurbs.h:33 -#, fuzzy msgid "Sets the pixel format of cursors the GIMP will use." -msgstr "De modus van de cursor die GIMP gebruikt." +msgstr "Steld het pixelformaat in van de cursors die GIMP gebruikt." #: app/config/gimprc-blurbs.h:36 msgid "Sets the mode of cursor the GIMP will use." @@ -3580,13 +3574,10 @@ "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." -# Visual is an X11-term; but what's the translation? #: app/config/gimprc-blurbs.h:167 -#, fuzzy msgid "" "Install a private colormap; might be useful on 8-bit (256 colors) displays." -msgstr "" -"Installeer een eigen kleurkaart; kan nuttig zijn voor pseudo-kleur-visuals." +msgstr "Installeer een eigen kleurkaart; kan nuttig zijn voor 8-bit (256 kleuren) displays." #: app/config/gimprc-blurbs.h:170 msgid "" @@ -3617,10 +3608,8 @@ "te maken die meer geheugen vereist." #: app/config/gimprc-blurbs.h:185 -#, fuzzy msgid "When enabled, GIMP will show mnemonics in menus." -msgstr "" -"Als dit aanstaat gebruikt de GIMP een infovenster per afbeeldingsweergave." +msgstr "Indien ingeschakeld worden in de menus van de GIMP sneltoetsen gebruikt." #: app/config/gimprc-blurbs.h:188 msgid "" @@ -3699,11 +3688,10 @@ "van het programma vertragen als u met grote afbeeldingen werkt." #: app/config/gimprc-blurbs.h:250 -#, fuzzy msgid "" "Sets the preview size used for layers and channel previews in newly created " "dialogs." -msgstr "De standaard grootte van de vooruitblik voor lagen en kanalen." +msgstr "De standaardgrootte van de vooruitblik voor lagen en kanalen in nieuw aangemaakte dialogen." #: app/config/gimprc-blurbs.h:254 msgid "" @@ -3744,9 +3732,7 @@ msgid "" "When enabled, all paint tools will show a preview of the current brush's " "outline." -msgstr "" -"Wanneer ingeschakkeld zullen alle schildergereedschappen een vooruitblik van " -"de omtrek van het huidige penseel tonen." +msgstr "Wanneer ingeschakkeld zal al het tekengereedschap een vooruitblik van de omtrek van het huidige penseel tonen." #: app/config/gimprc-blurbs.h:279 msgid "" @@ -3756,13 +3742,10 @@ msgstr "" #: app/config/gimprc-blurbs.h:284 -#, fuzzy msgid "" "When enabled, the cursor will be shown over the image while using a paint " "tool." -msgstr "" -"Als dit aanstaat, slaat de GIMP een afbeelding niet op als deze niet " -"gewijzigd is sinds hij werd geopend." +msgstr "Als dit aanstaat, zal de cursor zichtbaar zijn tijdens het tekenen op de afbeelding." #: app/config/gimprc-blurbs.h:288 msgid "" @@ -3897,14 +3880,10 @@ "niet delen met andere gebruikers." #: 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." -msgstr "" -"De grootte van de miniatuurafbeelding die met elke afbeelding wordt " -"opgeslagen. Merk op dat GIMP geen miniaturen kan opslaan als " -"laagvooruitblikken zijn uitgeschakeld." +msgstr "De grootte van de miniatuurafbeelding in het dialoogvenster \"Openen\". Merk op dat GIMP geen miniaturen kan aanmaken als laagvooruitblikken zijn uitgeschakeld." #: app/config/gimprc-blurbs.h:369 msgid "" @@ -4017,9 +3996,8 @@ msgstr "_Alphakanaal van laag" #: app/core/core-enums.c:30 -#, fuzzy msgid "_Transfer layer's alpha channel" -msgstr "Verplaats alphakanaal van laag" +msgstr "_Alphakanaal van de laag verplaatsen" #: app/core/core-enums.c:31 msgid "_Selection" @@ -4042,22 +4020,18 @@ msgstr "VG naar transparant" #: app/core/core-enums.c:64 -#, fuzzy msgid "Custom gradient" msgstr "Eigen verloop" #: app/core/core-enums.c:92 -#, fuzzy msgid "FG color fill" msgstr "VG-kleur vullen" #: app/core/core-enums.c:93 -#, fuzzy msgid "BG color fill" msgstr "AG-kleur vullen" #: app/core/core-enums.c:94 -#, fuzzy msgid "Pattern fill" msgstr "Patroon vullen" @@ -4090,40 +4064,34 @@ msgid "None" msgstr "Geen" +# kleurbenadering #: app/core/core-enums.c:220 -#, fuzzy msgid "Floyd-Steinberg (normal)" -msgstr "Floyd-Steinberg-kleurbenadering (normaal)" +msgstr "Floyd-Steinberg (normaal)" #: app/core/core-enums.c:221 -#, fuzzy msgid "Floyd-Steinberg (reduced color bleeding)" -msgstr "Floyd-Steinberg-kleurbenadering (verminderde kleuruitloop)" +msgstr "Floyd-Steinberg (verminderde kleuruitloop)" #: app/core/core-enums.c:222 -#, fuzzy msgid "Positioned" -msgstr "Positie: %0.6f" +msgstr "Met positie" #: app/core/core-enums.c:251 -#, fuzzy msgid "Generate optimum palette" -msgstr "Genereer optimaal palet:" +msgstr "Optimaal palet genereren" #: app/core/core-enums.c:252 -#, fuzzy msgid "Use web-optimized palette" -msgstr "Gebruik WWW-geoptimaliseerd palet" +msgstr "Web-geoptimaliseerd palet gebruiken" #: app/core/core-enums.c:253 -#, fuzzy msgid "Use black and white (1-bit) palette" -msgstr "Gebruik zwart/wit (1-bit) palet" +msgstr "Zwart/wit (1-bit) palet gebruiken" #: app/core/core-enums.c:254 -#, fuzzy msgid "Use custom palette" -msgstr "Gebruik aangepast palet:" +msgstr "Aangepast palet gebruiken" #: app/core/core-enums.c:329 msgid "Foreground color" @@ -4161,27 +4129,22 @@ msgstr "Vierkant" #: app/core/core-enums.c:374 -#, fuzzy msgid "Conical (sym)" msgstr "Conisch (symmetrisch)" #: app/core/core-enums.c:375 -#, fuzzy msgid "Conical (asym)" msgstr "Conisch (asymmetrisch)" #: app/core/core-enums.c:376 -#, fuzzy msgid "Shaped (angular)" msgstr "Naar vorm (hoekig)" #: app/core/core-enums.c:377 -#, fuzzy msgid "Shaped (spherical)" msgstr "Naar vorm (rond)" #: app/core/core-enums.c:378 -#, fuzzy msgid "Shaped (dimpled)" msgstr "Naar vorm (putjes)" @@ -4215,14 +4178,12 @@ msgstr "Vast" #: app/core/core-enums.c:441 -#, fuzzy msgid "Stroke line" msgstr "Lijn op selectie tekenen" #: app/core/core-enums.c:442 -#, fuzzy msgid "Stroke with a paint tool" -msgstr "Lijn tekenen met schildergereedschap" +msgstr "Lijn tekenen met tekengereedschap" #: app/core/core-enums.c:498 msgid "Miter" @@ -4418,7 +4379,6 @@ msgstr "Lagen samenvoegen" #: app/core/core-enums.c:1037 -#, fuzzy msgid "Merge vectors" msgstr "Vectoren samenvoegen" @@ -4502,7 +4462,7 @@ msgstr "Knippen" #: app/core/core-enums.c:1058 app/core/core-enums.c:1086 -#: app/tools/gimptexttool.c:142 app/widgets/widgets-enums.c:263 +#: app/tools/gimptexttool.c:144 app/widgets/widgets-enums.c:263 msgid "Text" msgstr "Tekst" @@ -4538,97 +4498,79 @@ msgstr "Afbeeldingstype" #: app/core/core-enums.c:1066 -#, fuzzy msgid "Image size" msgstr "Afbeeldingsgrootte" #: app/core/core-enums.c:1067 -#, fuzzy msgid "Resolution change" msgstr "Resolutiewijziging" #: app/core/core-enums.c:1070 -#, fuzzy msgid "Change indexed palette" -msgstr "Geïndexeerd palet veranderen" +msgstr "Geïndexeerd palet wijzigen" #: app/core/core-enums.c:1074 -#, fuzzy msgid "Rename item" msgstr "Item hernoemen" +# item vastkoppelen #: app/core/core-enums.c:1077 -#, fuzzy msgid "Set item linked" -msgstr "Item op gekoppeld instellen" +msgstr "Item op vastgekoppeld instellen" #: app/core/core-enums.c:1078 -#, fuzzy msgid "New layer" msgstr "Nieuwe laag" #: app/core/core-enums.c:1081 -#, fuzzy msgid "Delete layer mask" msgstr "Laagmasker verwijderen" #: app/core/core-enums.c:1082 -#, fuzzy msgid "Reposition layer" msgstr "Laag herpositioneren" #: app/core/core-enums.c:1083 -#, fuzzy msgid "Set layer mode" msgstr "Laagmodus instellen" #: app/core/core-enums.c:1084 -#, fuzzy msgid "Set layer opacity" msgstr "Ondoorzichtigheid laag instellen" #: app/core/core-enums.c:1085 -#, fuzzy msgid "Set preserve trans" msgstr "'Behoudt transparantie' instellen" #: app/core/core-enums.c:1087 -#, fuzzy msgid "Text modified" msgstr "Tekst gewijzigd" #: app/core/core-enums.c:1088 -#, fuzzy msgid "New channel" msgstr "Nieuw kanaal" #: app/core/core-enums.c:1090 -#, fuzzy msgid "Reposition channel" msgstr "Kanaal herpositioneren" #: app/core/core-enums.c:1091 -#, fuzzy msgid "Channel color" msgstr "Kanaalkleur" #: app/core/core-enums.c:1092 -#, fuzzy msgid "New vectors" msgstr "Nieuwe vectoren" #: app/core/core-enums.c:1093 -#, fuzzy msgid "Delete vectors" msgstr "Vectoren verwijderen" #: app/core/core-enums.c:1094 -#, fuzzy msgid "Vectors mod" msgstr "Vectorwijziging" #: app/core/core-enums.c:1095 -#, fuzzy msgid "Reposition vectors" msgstr "Vectoren herpositioneren" @@ -4735,19 +4677,19 @@ msgstr "Kan %d bytes niet lezen uit '%s': %s" #: app/core/gimpbrush.c:554 -#, fuzzy, c-format +#, c-format msgid "Fatal parse error in brush file '%s': Width = 0." -msgstr "Fatale parseerfout in penseelbestand '%s': onbekende diepte %d." +msgstr "Fatale verwerkingsfout in penseelbestand '%s': Breedte = 0." #: app/core/gimpbrush.c:563 -#, fuzzy, c-format +#, c-format msgid "Fatal parse error in brush file '%s': Height = 0." -msgstr "Fatale parseerfout in penseelbestand '%s': bestand is beschadigd." +msgstr "Fatale verwerkingsfout in penseelbestand '%s': Hoogte = 0." #: app/core/gimpbrush.c:572 -#, fuzzy, c-format +#, c-format msgid "Fatal parse error in brush file '%s': Bytes = 0." -msgstr "Fatale parseerfout in penseelbestand '%s': bestand is beschadigd." +msgstr "Fatale verwerkingsfout in penseelbestand '%s': Bytes = 0." #: app/core/gimpbrush.c:596 #, c-format @@ -4800,15 +4742,14 @@ "Fatale parseerfout in penseelbestand '%s': onbekende versie GIMP-penseel." #: app/core/gimpbrushgenerated.c:669 -#, fuzzy, c-format +#, c-format msgid "Fatal parse error in brush file '%s': Unknown GIMP brush shape." -msgstr "" -"Fatale parseerfout in penseelbestand '%s': onbekende versie GIMP-penseel." +msgstr "Fatale verwerkingsfout in penseelbestand '%s': onbekende vorm GIMP-penseel." #: app/core/gimpbrushgenerated.c:750 -#, fuzzy, c-format +#, c-format msgid "Error while reading brush file '%s': %s" -msgstr "Fout tijdens lezen '%s': %s" +msgstr "Fout tijdens lezen penseelbestand '%s': %s" #: app/core/gimpbrushgenerated.c:752 msgid "File is truncated" @@ -4938,13 +4879,14 @@ msgstr "Kan '%s' niet verwijderen: %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 "" -"Waarschuwing: Kan gegevens niet opslaan:\n" +"Waarschuwing: Kon gegevens niet opslaan:\n" +"\n" "%s" #: app/core/gimpdatafactory.c:411 app/core/gimpdatafactory.c:414 @@ -4958,13 +4900,14 @@ msgstr "%s kopiëren" #: app/core/gimpdatafactory.c:614 -#, fuzzy, c-format +#, c-format msgid "" "Warning: Failed to load data:\n" "\n" "%s" msgstr "" -"Waarschuwing: Kan gegevens niet laden:\n" +"Waarschuwing: Kon gegevens niet laden:\n" +"\n" "%s" #: app/core/gimpdrawable-blend.c:238 app/tools/gimpblendtool.c:101 @@ -5065,9 +5008,9 @@ msgstr "Geen lineaire verlopen gevonden in '%s'" #: app/core/gimpgradient-load.c:291 -#, fuzzy, c-format +#, c-format msgid "Failed to import gradients from '%s': %s" -msgstr "Kon paden niet importeren uit '%s': %s" +msgstr "Kon verlopen niet importeren uit '%s': %s" #: app/core/gimpgrid.c:128 msgid "Line style used for the grid." @@ -5110,35 +5053,32 @@ msgstr "Kleurenkaart instellen" #: app/core/gimpimage-colormap.c:115 -#, fuzzy msgid "Change Colormap entry" -msgstr "Afbeeldingseenheid veranderen" +msgstr "Kleur van kleurenkaart wijzigen." #: app/core/gimpimage-colormap.c:135 msgid "Add Color to Colormap" msgstr "Kleur toevoegen aan kleurenkaart" -#: app/core/gimpimage-convert.c:788 +#: app/core/gimpimage-convert.c:789 msgid "Convert Image to RGB" msgstr "Afbeelding naar RGB omzetten" -#: app/core/gimpimage-convert.c:792 +#: app/core/gimpimage-convert.c:793 msgid "Convert Image to Grayscale" msgstr "Afbeelding naar Grijswaarden omzetten" -#: app/core/gimpimage-convert.c:796 +#: app/core/gimpimage-convert.c:797 msgid "Convert Image to Indexed" msgstr "Afbeelding naar Geïndexeerd omzetten" -#: app/core/gimpimage-convert.c:875 -#, fuzzy +#: app/core/gimpimage-convert.c:879 msgid "Converting to indexed (stage 2)..." -msgstr "Afbeelding naar Geïndexeerd omzetten" +msgstr "Naar geïndexeerd omzetten (stap 2)..." -#: app/core/gimpimage-convert.c:919 -#, fuzzy +#: app/core/gimpimage-convert.c:923 msgid "Converting to indexed (stage 3)..." -msgstr "Afbeelding naar Geïndexeerd omzetten" +msgstr "Naar geïndexeerd omzetten (stap 3)..." #: app/core/gimpimage-crop.c:123 msgid "Crop Image" @@ -5197,12 +5137,10 @@ "minstens twee zijn." #: app/core/gimpimage-qmask.c:67 -#, fuzzy msgid "Enable Quick Mask" msgstr "Snelmasker inschakelen" #: app/core/gimpimage-qmask.c:117 -#, fuzzy msgid "Disable Quick Mask" msgstr "Snelmasker uitschakelen" @@ -5265,7 +5203,7 @@ #: app/core/gimpimage.c:2897 msgid "Layer is already on the bottom." -msgstr "Laag is reeds op de bodem" +msgstr "Laag is reeds de onderste." #: app/core/gimpimage.c:2902 msgid "Lower Layer to Bottom" @@ -5293,9 +5231,8 @@ msgstr "Kanaal verhogen" #: app/core/gimpimage.c:3104 -#, fuzzy msgid "Channel is already on top." -msgstr "Laag is reeds de bovenste" +msgstr "Kanaal is reeds de bovenste." #: app/core/gimpimage.c:3109 msgid "Raise Channel to Top" @@ -5310,9 +5247,8 @@ msgstr "Kanaal verlagen" #: app/core/gimpimage.c:3151 -#, fuzzy msgid "Channel is already on the bottom." -msgstr "Laag is reeds op de bodem" +msgstr "Kanaal is reeds de onderste." #: app/core/gimpimage.c:3156 msgid "Lower Channel to Bottom" @@ -5335,9 +5271,8 @@ msgstr "Pad omhoog" #: app/core/gimpimage.c:3342 -#, fuzzy msgid "Path is already on top." -msgstr "Laag is reeds de bovenste" +msgstr "Pad is reeds de bovenste." #: app/core/gimpimage.c:3347 msgid "Raise Path to Top" @@ -5352,9 +5287,8 @@ msgstr "Pad verlagen" #: app/core/gimpimage.c:3389 -#, fuzzy msgid "Path is already on the bottom." -msgstr "Laag is reeds op de bodem" +msgstr "Laag is reeds de onderste." #: app/core/gimpimage.c:3394 msgid "Lower Path to Bottom" @@ -5374,9 +5308,8 @@ msgstr "Speciaal bestand" #: app/core/gimpimagefile.c:605 -#, fuzzy msgid "Click to create preview" -msgstr "Kan geen vooruitblik aanmaken" +msgstr "Klikken om een vooruitblik aan te maken" #: app/core/gimpimagefile.c:609 msgid "Loading preview ..." @@ -5479,11 +5412,13 @@ msgstr "%s masker" #: app/core/gimplayer.c:385 -#, fuzzy, c-format +#, c-format msgid "" "Floating Selection\n" "(%s)" -msgstr "Drijvende Selectie" +msgstr "" +"Drijvende Selectie<\n" +"(%s)" #: app/core/gimplayer.c:1035 msgid "Cannot add layer mask to layer which is not part of an image." @@ -5530,12 +5465,12 @@ msgstr "Laagmasker verplaatsen" #: app/core/gimppalette-import.c:490 -#, fuzzy, c-format +#, c-format msgid "" "Unknown type of palette file:\n" "%s" msgstr "" -"Geen RIFF paletbestand:\n" +"Onbekend type van paletbestand:\n" "%s" #: app/core/gimppalette.c:375 @@ -5631,7 +5566,7 @@ #: app/core/gimpprogress.c:107 app/core/gimpprogress.c:154 msgid "Please wait..." -msgstr "Wacht A.U.B. ..." +msgstr "Een ogenblik geduld..." #: app/core/gimpselection.c:183 app/tools/gimpeditselectiontool.c:258 msgid "Move Selection" @@ -5667,9 +5602,8 @@ msgstr "Drijvende selectie" #: app/core/gimpselection.c:839 -#, fuzzy msgid "Floated Layer" -msgstr "Geplakte laag" +msgstr "Drijvende laag" #: app/core/gimptemplate.c:158 msgid "The unit used for coordinate display when not in dot-for-dot mode." @@ -5811,9 +5745,8 @@ msgstr "Kleurbenadering van transparantie inschakelen" #: app/dialogs/convert-dialog.c:274 -#, fuzzy msgid "Converting to indexed..." -msgstr "Afbeelding naar Geïndexeerd omzetten" +msgstr "Naar geïndexeerd omzetten..." #: app/dialogs/convert-dialog.c:382 msgid "Cannot convert to a palette with more than 256 colors." @@ -5887,20 +5820,20 @@ msgid "Enter location (URI):" msgstr "Locatie invoeren (URI):" -#: app/dialogs/file-save-dialog.c:184 +#: app/dialogs/file-save-dialog.c:185 msgid "File exists" msgstr "Bestand bestaat" -#: app/dialogs/file-save-dialog.c:189 +#: app/dialogs/file-save-dialog.c:190 msgid "_Replace" msgstr "_Vervangen" -#: app/dialogs/file-save-dialog.c:199 +#: app/dialogs/file-save-dialog.c:200 #, c-format msgid "A file named '%s' already exists." msgstr "Een bestand genaamd '%s' bestaat al." -#: app/dialogs/file-save-dialog.c:204 +#: app/dialogs/file-save-dialog.c:205 msgid "Do you want to replace it with the image you are saving?" msgstr "Wilt u het vervangen door de afbeelding die u aan het opslaan bent?" @@ -6325,9 +6258,8 @@ msgstr "Palet_bestand" #: app/dialogs/palette-import-dialog.c:273 -#, fuzzy msgid "Select palette file" -msgstr "Paletmappen selecteren" +msgstr "Paletbestand selecteren" #. The "Import" frame #: app/dialogs/palette-import-dialog.c:304 @@ -6480,9 +6412,8 @@ msgstr "Standaard grootte vooruitblik lagen en kanalen" #: app/dialogs/preferences-dialog.c:1380 -#, fuzzy msgid "Na_vigation preview size:" -msgstr "Navigatievooruitblikgrootte:" +msgstr "_Navigatievooruitblikgrootte:" #. Keyboard Shortcuts #: app/dialogs/preferences-dialog.c:1384 @@ -6505,17 +6436,14 @@ msgstr "Sneltoetsen configureren..." #: app/dialogs/preferences-dialog.c:1402 -#, fuzzy msgid "_Save keyboard shortcuts on exit" -msgstr "Sla sneltoetsen op bij verlaten" +msgstr "_Sneltoetsen opslaan bij verlaten" #: app/dialogs/preferences-dialog.c:1406 -#, fuzzy msgid "Save Keyboard Shortcuts _Now" -msgstr "Sneltoetsen nu opslaan" +msgstr "Sneltoetsen _nu opslaan" #: app/dialogs/preferences-dialog.c:1413 -#, fuzzy msgid "_Reset Saved Keyboard Shortcuts to Default Values" msgstr "Herstel opgeslagen sneltoetsen bij opstarten." @@ -6684,7 +6612,7 @@ #: app/dialogs/preferences-dialog.c:1736 msgid "Show paint _tool cursor" -msgstr "" +msgstr "_Tekengereedschap cursor tonen" #: app/dialogs/preferences-dialog.c:1742 msgid "Cursor _mode:" @@ -6881,9 +6809,8 @@ # processors/processoren #: app/dialogs/preferences-dialog.c:2213 -#, fuzzy msgid "Number of _processors to use:" -msgstr "Aantal processoren gebruiken:" +msgstr "Aantal processors gebruiken:" #. Image Thumbnails #: app/dialogs/preferences-dialog.c:2218 @@ -7055,7 +6982,6 @@ msgstr "De GIMP afsluiten" #: app/dialogs/quit-dialog.c:126 -#, fuzzy msgid "If you quit GIMP now, these changes will be lost." msgstr "Niet-opgeslagen wijzigingen zullen verloren gaan." @@ -7069,9 +6995,8 @@ msgstr "ER zijn %d bestanden met niet opgeslagen wijzigingen:" #: app/dialogs/quit-dialog.c:183 -#, fuzzy msgid "_Discard Changes" -msgstr "Veranderingen verwerpen" +msgstr "_Wijzigingen verwerpen" #: app/dialogs/resize-dialog.c:115 msgid "Canvas Size" @@ -7127,7 +7052,7 @@ #: app/dialogs/stroke-dialog.c:209 msgid "Paint Tool:" -msgstr "Schildergereedschap:" +msgstr "Tekengereedschap:" #: app/dialogs/tips-dialog.c:90 msgid "Your GIMP tips file appears to be missing!" @@ -7774,7 +7699,7 @@ msgid "Style of bevel around the statusbar text" msgstr "Soort kader rond de statusbalktekst" -#: app/display/gimpstatusbar.c:218 +#: app/display/gimpstatusbar.c:222 msgid "Cancel" msgstr "Annuleren" @@ -8053,7 +7978,7 @@ #: app/pdb/internal_procs.c:161 msgid "Paint Tool procedures" -msgstr "Schildergereedschapsprocedures" +msgstr "Tekengereedschapsprocedures" #: app/pdb/internal_procs.c:164 msgid "Palette" @@ -8169,9 +8094,9 @@ msgstr "ongeldige waarde '%s' voor pictogramtype" #: app/plug-in/plug-in-rc.c:447 -#, fuzzy, c-format +#, c-format msgid "invalid value '%ld' for icon type" -msgstr "ongeldige waarde '%ld' voor token %s" +msgstr "ongeldige waarde '%ld' voor pictogramtype" #: app/plug-in/plug-ins.c:139 msgid "Resource configuration" @@ -8234,7 +8159,7 @@ "Voor de GIMP Pixelquiz moet\n" "je psyche een beetje afwijken." -#: app/text/gimptext-compat.c:106 app/tools/gimptexttool.c:697 +#: app/text/gimptext-compat.c:108 app/tools/gimptexttool.c:699 msgid "Add Text Layer" msgstr "Tekstlaag toevoegen" @@ -8356,9 +8281,8 @@ msgstr "Omtrek" #: app/tools/tools-enums.c:177 -#, fuzzy msgid "Image + Grid" -msgstr "Standaard afbeeldingsraster" +msgstr "Afbeelding + raster" #: app/tools/tools-enums.c:204 msgid "Number of grid lines" @@ -8366,9 +8290,8 @@ # rasterlijnafstand/spatiering #: app/tools/tools-enums.c:205 -#, fuzzy msgid "Grid line spacing" -msgstr "Rasterlijnspatiëring" +msgstr "Rasterlijnafstand" #: app/tools/gimp-tools.c:283 msgid "This tool has no options." @@ -8379,9 +8302,8 @@ msgstr "Verfspuit met variabele druk" #: app/tools/gimpairbrushtool.c:57 -#, fuzzy msgid "_Airbrush" -msgstr "Verfspuit" +msgstr "_Verfspuit" # snelheid/mate/frequentie #: app/tools/gimpairbrushtool.c:123 app/tools/gimpconvolvetool.c:211 @@ -8401,7 +8323,7 @@ msgid "Shape:" msgstr "Vorm:" -#: app/tools/gimpblendoptions.c:261 app/tools/gimppaintoptions-gui.c:417 +#: app/tools/gimpblendoptions.c:261 app/tools/gimppaintoptions-gui.c:419 msgid "Repeat:" msgstr "Herhaal:" @@ -8536,11 +8458,11 @@ msgid "_Clone" msgstr "_Klonen" -#: app/tools/gimpclonetool.c:266 +#: app/tools/gimpclonetool.c:288 msgid "Source" msgstr "Bron" -#: app/tools/gimpclonetool.c:275 +#: app/tools/gimpclonetool.c:297 msgid "Alignment" msgstr "Uitlijning" @@ -8912,7 +8834,7 @@ msgid "Hue-Saturation operates only on RGB color layers." msgstr "Kleurtoon-Verzadiging werkt enkel op RGB-lagen." -# de schuif die alles bedient +# de schuif die alles bedient/hoofdschuif #: app/tools/gimphuesaturationtool.c:263 msgid "M_aster" msgstr "Allemaal" @@ -9197,7 +9119,7 @@ msgid "Brush:" msgstr "Penseel:" -#: app/tools/gimppaintoptions-gui.c:135 app/tools/gimppaintoptions-gui.c:394 +#: app/tools/gimppaintoptions-gui.c:135 app/tools/gimppaintoptions-gui.c:395 msgid "Gradient:" msgstr "Verloop:" @@ -9229,12 +9151,11 @@ msgid "Fade out" msgstr "Uitvloeien" -#: app/tools/gimppaintoptions-gui.c:333 app/tools/gimppaintoptions-gui.c:403 +#: app/tools/gimppaintoptions-gui.c:333 app/tools/gimppaintoptions-gui.c:404 msgid "Length:" msgstr "Lengte:" -#: app/tools/gimppaintoptions-gui.c:367 -#, fuzzy +#: app/tools/gimppaintoptions-gui.c:368 msgid "Use color from gradient" msgstr "Gebruik kleur uit verloop" @@ -9346,8 +9267,8 @@ msgid "_Scale" msgstr "_Schalen" +# schalingsinfo #: app/tools/gimpscaletool.c:152 -#, fuzzy msgid "Scaling information" msgstr "Schaalinformatie" @@ -9432,15 +9353,15 @@ msgid "Shearing Information" msgstr "Hellingsinformatie" +# Helgrootte/helling #: app/tools/gimpsheartool.c:167 -#, fuzzy msgid "Shear magnitude X:" -msgstr "Helgrootte X:" +msgstr "Helling X:" +# Helgrootte/helling #: app/tools/gimpsheartool.c:174 -#, fuzzy msgid "Shear magnitude Y:" -msgstr "Helgrootte X:" +msgstr "Helling Y:" #: app/tools/gimpsmudgetool.c:55 msgid "Smudge image" @@ -9517,23 +9438,23 @@ msgid "Create path from text" msgstr "Pad van tekst maken" -#: app/tools/gimptexttool.c:143 +#: app/tools/gimptexttool.c:145 msgid "Add text to the image" msgstr "Tekst aan de afbeelding toevoegen" -#: app/tools/gimptexttool.c:144 +#: app/tools/gimptexttool.c:146 msgid "Te_xt" msgstr "_Tekst" -#: app/tools/gimptexttool.c:732 +#: app/tools/gimptexttool.c:744 msgid "GIMP Text Editor" msgstr "GIMP-teksteditor" -#: app/tools/gimptexttool.c:842 app/tools/gimptexttool.c:845 +#: app/tools/gimptexttool.c:854 app/tools/gimptexttool.c:857 msgid "Confirm Text Editing" msgstr "Tekstbewerken bevestigen" -#: app/tools/gimptexttool.c:866 +#: app/tools/gimptexttool.c:878 msgid "" "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 " @@ -9598,19 +9519,19 @@ msgstr "15 graden %s" #: app/tools/gimptransformoptions.c:445 -#, fuzzy, c-format +#, c-format msgid "Keep height %s" -msgstr "Behoud hoogte %s" +msgstr "Hoogte behouden %s" #: app/tools/gimptransformoptions.c:447 -#, fuzzy, c-format +#, c-format msgid "Keep width %s" -msgstr "Behoud breedte %s" +msgstr "Breedte behouden %s" #: app/tools/gimptransformoptions.c:449 -#, fuzzy, c-format +#, c-format msgid "Keep aspect %s" -msgstr "Behoud hoogte %s" +msgstr "Verhouding behouden %s" #: app/tools/gimptransformtool.c:253 msgid "Transforming..." @@ -9885,9 +9806,8 @@ # spaken #: app/widgets/gimpbrusheditor.c:168 -#, fuzzy msgid "Spikes:" -msgstr "Grootte:" +msgstr "Spaken:" #: app/widgets/gimpbrusheditor.c:181 msgid "Hardness:" @@ -10377,7 +10297,7 @@ msgid "" "This window has %d tabs open. Closing the window will also close all its " "tabs." -msgstr "" +msgstr "Dit venster heeft %d tabs openstaan. Wanneer u het venster sluit zullen ook alle tabs worden gesloten " #: app/widgets/gimpdock.c:474 msgid "You can drop dockable dialogs here." @@ -10554,7 +10474,7 @@ #: app/widgets/gimphelp.c:189 msgid "" "The GIMP help browser plug-in appears to be missing from your installation." -msgstr "" +msgstr "De GIMP-hulp browserplug-in is schijnbaar niet geinstalleerd." #: app/widgets/gimphelp.c:213 msgid "Help browser doesn't start" @@ -10647,7 +10567,7 @@ msgid "This text input field is limited to %d characters." msgstr "Het tekstinvoerveld kan maximaal %d tekens bevatten." -#: app/widgets/gimpselectiondata.c:317 +#: app/widgets/gimpselectiondata.c:319 #, c-format msgid "" "The filename '%s' couldn't be converted to a valid URI:\n" @@ -10658,7 +10578,7 @@ "\n" "%s" -#: app/widgets/gimpselectiondata.c:321 +#: app/widgets/gimpselectiondata.c:323 msgid "Invalid UTF-8" msgstr "Ongeldige UTF-8" diff -uraN gimp-2.2.4/po/pa.gmo gimp-2.2.5/po/pa.gmo --- gimp-2.2.4/po/pa.gmo 2005-01-22 17:33:16.000000000 +0100 +++ gimp-2.2.5/po/pa.gmo 2005-03-14 11:01:06.000000000 +0100 @@ -1,106 +1,182 @@ -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  ղ  +/A + &׮kGj9GA4NviŰ</kl@ر2;LPOٲ2)9\-9ij;7: r| + + + ʴ +ٴ +"*F`v0}ɵ +   + +9 +D O \h x  K.1!+2N]at +  +ʸ߸  +.AYk}*6͹4LUrκ#*Nh +û  103b +ۼ  ! +.9J\lA}J +< Z hv~ Ҿ۾ #; +DO`y&$Ϳ % -9> +DO^o7   "' ,9 > L Zdm  #!(Jg ,If,  + * K!Y{ % +9L [h.~5578Q),22 eOA %O&u41# '5 Q ]gx~ +  * < HU \ f s   +$ATcx "&I_ n|   !"/"Ru  +), +7!Q#s#%./ 6BSgz#-% 1G]x  + +  )6FVix  +- *.39J]q  #%)!O q~   ! 0= MZl { + ++ 6B IW_ gt +|  #= FP `jq:?8 + COXj { + +    ,:J\o +>Wk { + + 2@ Vc x +* !2T.k# $8#Ael {''-C_FyT "/E Xy  +  &8J P \h(q$0=641k<?A9\c09+Be=f>M     )7Kbw-Helu  +  +% 0: JXk +|  )=CJ R_gm +sO~ + +  .>Qd +s ~   'u6 z!:QZir    ":KOi +   )5Pgw +| +  +!BX\k~  + C10J{  + +- E(S +| + + +    - :HM Uai    ) 63D6x"  -$7\w (+)1![}' ,5 +GRbx %@QZi  -A!Y{ 2AJZm q{ 3 +- 8 DQo & -9N]@e-  &D KW \ ht  !9 R^ +t   +#6>GO ao +w#6> E S +_ j w  2M"d $ +0? NZ b p|   +  +  " ,6O^u  +$ /;Mat      ( +5 @ J Wc }  ,!.)K u    B AP v +  "B"a!!     % / ? N  V d +l         + +  + +% +4 + +D +O + ^ +l + u + + + + + + + + +& +,&  S ` e  +u  +       4" W i  +o z   +            !) K  Z h  ~        ?O^fz  + # 1-D r~  + " +8AIOe +} + +    !A ESg v    +/ BP eq +  ++ <HLQ(V, +&J:      :J;d      ,9A_r+-Eel {       "6:q    /< Zf{ + +   +  + 4 Q]o 4Kh{.Eb s       +  % +1<K Zg #4Xv #6 JWj$   , F Z !r     +    !%!@!W!k!! !!!!! " " 9"G"Z" m"z""""""" - '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 +##%#?#Y# s#######$$ .$8$I$_$n$$$$ $$$$ +% %*%<% P%]%x%% %%%%%&)&=>&*|&3&T&?0'2p'4'/' ((("()(:(K(^(f(l(((( ( ((;(") 2)?)O) `)m) )))#) )) ) *&*<* +O*Z*m*}*******+'+7+L+\+k+p++++++++ ++ + , +,,%,,,4, =, I,8V,,, , ,,,,,,,,- - %- 1- ?-M-V-_- h-u-- -- - --!--.'.#0. T.a.h. +n. y. ..... +. . +. .//1/7N/1/5/H/A70;y0!0 001 1+1)215\101(1C102,2G22&3Y3 s3-}3 +3333333444'4:4 S4`4r4 4 4444 44 +4 44 55#575G5V5k55555555 6 6!6 +16<6A6J63a66 77A7 F7 S7a7g7o7 77777737#'8K8c8v8888888 88 +999 +<9 +G9R9 W9 e9 s9 9 9!9!9 9 9+9K#:$o:5:G:O;eb;j;<3<?p<><`<P======> %>3>65>ol>>>>#>%?7?@?I?Q? +Z? e? q?{? ???? ???????@@@.@ @@ J@ X@ f@p@x@~@ @@@@ @@@@ @A AA+A .A :A DARAfAmA +tAA AAAA AAAAB B +"B-B?B OB]BlB |BB B BB BBBCC !C -C9CHCQCbC |C C +CCCCCCC +DD4DEDWD gD qD{D DD DDDD DDDDDD EEE 'E 1E +;E +FEQEjEsE {EE EEEEEEEEE E EEF F#F*F1F9F +SF^FqF F FFFFF F FF FFFFG,G5G=GPGfG GGGGGG +G GG G G +H H H (H 2H ?HLH ]HgH oHyHH HHH H HHH HHHH I I I+I 4I BIPI _IkI~IIIII I I III IIJ JJ1JCJUJ]JfJxJ4J1J/J)K?K GKTKZKnK#K KKKKK +L +LL/L@LGLPLfLwL~LLLL +L +L +LL LLMMMM +>MIMZM`M +iMtMzMMMMM MMMMMMMN +NNNN5"NXN jNtNNNN NN!N N NO +?O JOVO]OaOiOnOtOzO O OOOO OO.OOPQ8QRRRSxeS`S?TTaUUiVZW]qWWOXQXkBYNYSY_QZWZ [[ +#[.[A[Q[ d[p[[ +[[[ [[ [\5\8M\\\o\+"] N],Z] ]] ] ]] ] ] ] +^ + ^ ^ #^/^ H^ T^`^ e^(s^^0T_v`e`Oba-a aab9bUbub0b,b"b c=)c7gcc;c3c)d,Fdsdd0dAd-#e#Qe#ue,e9eafzbf:f<gSUgg2gUg9Eh6h3hUh9@i6zi3iRi98j:rjjjj)jkI8k!kkkkkkl}l m*m ImWm&nm3m&m +mmn 5n0Bn*sn6n&nno49pnp p q 1q ?q=Iq"q6q&qr"r"?r&brr>r rr"sF)s$pssZsP t]t mtzt#t ttt*t u #u1uHuhu7uu>vNvkvvvvv#v w +w $w 1w%>wdwiw w wwEwX xbx xxMx-x)yTFytyRzQczzzzz<{3E{3y{O{={);|Ce|I|J|6>}[u}<} ~~2~eJ~\~ =$Hb!  $>#]   #/K|huqoWf=-D*o_-]>ʆ\bu؈YJ܉'<C"ߊ  <Zx  3ŋ2 I!j +̌ 3!3U)#ʍ #M:F%ώ"2?KF6ҏ: 6D"{-h̐"50X-,  +K9[]FH:FB/-]\x!ՔQGIM@ߕj GDӖQEjHY*w))̘ )GAN)ؙS-V-*HݚB&i0yFT1 Ĝ& &3G"{& ŝҝ'3C ̞֞( 0 =J i'՟ #<)`8( $ :HDX:ء).Kh*&ע%B\s&#ˣ ,&&S,z#ˤ2; Taq  Υ ۥ&&))Pz &"Ҧ/ C P^r Iܧ4ѩ)%,R%k%ת4Q,o"1ث +)+Ur#ެ:BP&ح   #[D@#J'd-- @7T$ Ѱ -,Jwȱ c#jI&زg=gA1#,P%fX #&LFb@Y7=8϶G9P7 )%+OG{)ù +,%ACXM""3V\lIF+Z;pZur]Iw  $ 0 %=c}3# -*/X   ##*/N ~ :-7) an?09?-9m)5" *7Q#h* #47l|''-DWgw  0[Q#G%d]#|#$ + /<\,|""#2;F  2  6DT d""<;?x   +&.(K3t%#6 GT>f)  * 7E%X"~`B+Eq%1", O\Oo t& $  <P#` Vda!q"%?V"vS,,GSg2O_|#.7#8\v  $J2CS%m4W^ "("/N.X#<2(4 ]9j-0V"IyWdi' 2<SgH{~%Ci(/9 +D(b"",&*B4m.$",6&c*4.$>"[,~&*4.2$a)#'16+h! , 0=Tq o *'HpXU:sETI8h!.#=Wh 1{>&" $ 6!W3y $ R*C}1D +8C%_J)-'E0m:> /)Pz0:8*It))&2VYE)7  +X c-m-  -*23]&P3 C==7&8%X<~CMMia  +#A#]#"+*D&^# *, .6 e - # # &  + 7 +4X +# +0 +3 +C @Z    +  #  8  +B M a #{ # $ $  * > #X |   = #+#Os @4Qk\3R&lBGa8&3)]m)B<' 3'Dl8,33M"`9@ 8/Y90<919k20/  9EUe"{_ s/}9C[u"&! '-U#lE7D!&f43`Jw   X6 [ = H)!!r!!\!" -":"T"d"""""""#B#b#,##;##$7,$#d$,$-$/$%,0%]%{%%%%6M&&,&%&M&L;'''''''(J(*h(j((,)4E) z)):))))*(**%S*y** ** *X*U-+++#+&++,3,J,N,h, y,,!,,+,:,3%-0Y-3-4- -..02.4c..-..7.;//k/0//-//70:M0m0 0 1:1!L1"n1 1-1)11 2 +2 (2}I22Q3q3&333736&46]44H5h565&5%566&762^6&6%6/6t7I7-7*7'&8-N8&|88,8 8,9>99R9)9&9,9@ +:6K:D:/:G:`?;F;J;2<&L<)s<#<:<-<)*=#T=Gx=.==>,>TL>>GO? ????`?JR@@@@0@&+A"RA:uA&A(A B +B#B?BYBmBBBBBB" CM.C"|CSCMCAD&aD@D_DC)E(mE,E,E9E2*F]F\G6qG@GYG)CHmH0HtH0I*IJA-J6oJ:J"J1K6KMK"gKKK&K"KL,1L,^L&L>LL,M1M DM,QM~MM%M/M) +N-4N7bN1N'NN"O,4O&aO*O4O.O$Pn.o/o Co$Mo rooTo[o@pQphp#p pppqq/qMqdq{qqqq:qr*/r Zr9grr r rrr ss:sKZs sssss t #td0tit`t``uuvw:wKwDx ^xkx x;xx_ly^y+zz{8|j|?M}}t}"~=~!]~~~~)~~)-D4r 9,&f" ƀЀMQa~#Ձ,&@]w:,-.\| ,tރS"Յ*'3 [h/~N"MB0w[933Ɉ5C38w0  D6 {U )-6*d)& TZVь}lXG3+)Hr `m%50AfC;  Z\^̙ 4Uj%-( BPn ''ϛ) ?`~"$ٜ  '7Ay;̝ #1!Ikn)1Ğ +!:K cCq ß =4?"t-ܠ 0Ni'#-$R i! ɢ&-"P*d  'Σ +$L'q  #ۤ* ;IZCiʥۥ +(<e¦"Ӧ.%(<e| ɧݧ *J)]  Ԩ 59*M)xݩ$  0Q#o $Ī> (6-G-uN# ,$Qix  ά&0D$[#ڭ (Id&ٮ* =^~ԯ ##Gd-z ܰ 8<U- )#+O*l#Ҳ6Dbnh\AŴ87O*n!Q%#9 ] k u-ӷ79J[v&ٸ &7'K s Aѹ.EV5g7 պ "/R Vc"f  Ļ}׻&U|  ͼ(@4W?2̽ 1>[ t ԾEcY^FZ!i4Ra) +/$ZeP)dg>Ot+yE2uU&[Z$pz pL[m:mc:Y@<0X#hQN^~:SXkfx<*2~|0l6_ 0pDus)}989sKGz%((Ay YHd%v,K=C AD\"|WTN/|(CbDa_.2|&Jq$x_s_H('_] VJaqN36+@T& Yu?R`yXo% zk\S-goM>tCN9E'z XQ3B%\vK WfWxom:!SX$#dh$. +Lbj.Ni'MIP@Ql3p?-\"C +nI2$7PamE=Dkv?DTqd urka78QA^6FqjrzZ'K HrVRS`,ht(1pn{E1Y+yV^rBHiT#  e(6<]krK=]IYc~~tMm}N2!j'y[[">U}_U7Qfl-:'F5OHdW;]qVw@GcaVbq +4*{k(}dvEL StY8-0;26 :%5~u CRu^S6Se`pA168gpgR{f@V{;wq 9J,Y8e xsS$_G2G;O+g LJ*u&!QzI{*-1l *jg*t&3j/DLo=+#^B?c`9/+] rMAT!{%_(<POo + g`i4 -n"I.}+.%CbUVvTT1)>iG4Ie*w ,G5vYB:>,U.wK%)j@o \Ec$si*` +^{U4= +BJmZP|qFQCX'4CUxm:OX%FI[Nf3 E7Bz".ng U.# s#wiL=W 50P D^}7B~3o3v4, D&lW=pxx5#d7<&y),@y=t 9Q*c]' ` `87'0h|k>f)L|O95-)eywHL sA48<   "n}F9ibm+WHd1b@b;Mb0Xltlw[/chwuf AnOjJ,\/PR5 ~o + ; 1$|KhjR;!Fs.5-&Rn}#&T +M + >6\WB\H Kc?E{Nf]"h?G!aaG;xA1/l83?,(<"J~[v"k-OZFMzZ>eJ^/!M#h!0n)?]2<VrZPe/r[I7 Invalid option "%s" Usage: %s [option ... ] [file ... ] @@ -128,44 +204,56 @@ -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%d dpi, %s%d layers%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 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 Template)(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.A_ngleAbout The GIMPActive FiltersAddAdd Alpha ChannelAdd AnchorAdd ChannelAdd Horizontal GuideAdd LayerAdd Layer MaskAdd PathAdd StrokeAdd Text LayerAdd Vertical GuideAdd color from BGAdd color from FGAdd text to the imageAdd 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 levels automaticallyAdjustmentAffect:Affected Area %sAirbrushAirbrush with variable pressureAll ChannelsAll FilesAllow 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:Author:AutoAutoloadAutomatically DetectedAvailable FiltersAvailable Types:B_uffersBackgroundBackground color set to:Background: %d, %d, %dBase filled area on all visible layersBase selection on all visible layersBehindBevelBlack & whiteBlack:Blend: Blending...BlueBlue:Border ChannelBorder SelectionBrightness-ContrastBrightness-Contrast does not operate on indexed layers.Brush EditorBrush FoldersBrush UIBrush:BrushesBrushes MenuBuffersBuffers MenuButtBy ExtensionCMYKC_olumns:Can't undo %sCan_vas Size...CancelCannot create folder '%s': %sCannot create previewCannot expand ${%s}Cannot raise a layer without alpha.Cannot save. Nothing is selected.Cannot stroke empty channel.Cannot stroke empty path.Center X:CenteredChange Background ColorChange Foreground ColorChange Image ResolutionChange Image UnitChange Print SizeChange grid background colorChange grid foreground colorChange perspective of the layer or selectionChannelChannel AttributesChannel Name:Channel cannot be lowered more.Channel cannot be raised higher.Channel to Sele_ctionChannel to SelectionChannel to selectionChannel:ChannelsChannels MenuCl_earClearClear ChannelClear Undo HistoryClear errorsClear undo history...Click "Continue" to accept the settings above.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: moveCloneClose this TabColo_rsColorColor BalanceColor Display FiltersColor PickerColor Picker InformationColor eraseColor index:Color:Color_mapColor_space:ColorizeColorize the ImageColorize the imageColormapColormap EditorColormap MenuColumns:Comme_nt:Con_trast:Configure Color Display FiltersConfigure G_rid...Configure GridConfigure Image GridConfirm Image SizeConfirm Text EditingConnect StrokesConstantConstraintsContextContinueContributions byConvertConvert EdgeConvert Image to GrayscaleConvert Image to IndexedConvert Image to RGBCopying 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 read %d bytes from '%s': %sCould not seek in XCF file: %sCount:Create 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 or Resize an imageCrop: Cu_tCu_t Named...Cubic (Best)Current _StatusCurrent statusCurve TypeCurves for indexed layers cannot be adjusted.CustomCutCyanCyan:D_uplicate BrushD_uplicate ChannelD_uplicate GradientD_uplicate LayerDarken onlyDash pattern:DashedDate:DebugDefault GridDefault Image GridDelete AnchorDelete Layer MaskDelete ObjectDelete SegmentDelete TemplateDelete brushDelete channelDelete gradientDelete saved options...Delete the selected bufferDelete the selected templateDelete this imageDesaturateDescriptionDesignDevice StatusDevicesDialogsDialogs MenuDifferenceDirect ColorDiscard Text InformationDisplayDisplay proceduresDisplaying [%0.6f, %0.6f]DissolveDistance:Distance: %0.6fDivideDo you really want to reset all tool options to default values?DockableDocument Histor_yDocument HistoryDocumentsDocuments MenuDrag AnchorDrag AnchorsDrag CurveDrag HandleDrag PathDrag: moveDraw in inkDrawableDrop New LayerDrop New PathDuplicate brushDuplicate channelDuplicate gradientDuplicate the selected templateEEK: can't undoE_xtra SmallEditEdit Channel AttributesEdit Channel ColorEdit Color Palette EntryEdit Colormap EntryEdit ModeEdit Palette ColorEdit Path AttributesEdit TemplateEdit brushEdit channel attributesEdit colorEdit colormap entry #%dEdit gradientEdit layer attributesEdit proceduresEdit the selected templateEllipse SelectEmpty ChannelEmpty LayerEmpty PathEmpty Text LayerEmpty variable name in environment file %sEnable this controllerEnable to display a handy GIMP tip on startup.Enable to display tooltips.EnormousEnter a name for the merged paletteEnter a name for this templateEnvironmentEnvironment FoldersEqualizeErase to background or transparencyEraserError Co_nsoleError ConsoleError 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 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 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 (*.*)Allow completely transparent regions to be filledAllow completely transparent regions to be selectedAlphaAlpha to SelectionAlpha: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:Author: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:Blen_dBlend: Blending...BlueBlue:Bo_rder...Border ChannelBorder SelectionBrightness-ContrastBrightness-Contrast does not operate on indexed layers.BrushBrush EditorBrush FoldersBrush UIBrush:BrushesBrushes MenuBucket FillBuffersBuffers MenuBurnButtBy ExtensionCMYKC_alibrate...C_olor PickerC_olumns:C_ombineCalibrate Monitor ResolutionCan't undo %sCan_vas Size...CancelCancel GuideCannot create folder '%s': %sCannot create previewCannot expand ${%s}Cannot raise a layer without alpha.Cannot save. Nothing is selected.Cannot stroke empty channel.Cannot stroke empty path.Canvas SizeCenter 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 imageCloneClose %sClose all TabsClose all tabs?Close this TabCo_py PathColo_rsColorColor BalanceColor Display FiltersColor PickerColor Picker InformationColor _Balance...Color _dithering:Color eraseColor index:Color:Color_mapColor_space:Colori_ze...ColorizeColorize the ImageColorize the imageColormapColormap EditorColormap MenuColumns:Comme_nt:CommentCon_trast:Configure 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 StrokesConstantConstraintsContextContinueContributions byConvertConvert EdgeConvert Image to GrayscaleConvert Image to IndexedConvert Image to RGBConvert imageConverting to indexed (stage 2)...Converting to indexed (stage 3)...Converting to indexed...Copy _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 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 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:CutCyanCyan: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:DashedDate:DebugDefault Appearance in Fullscreen ModeDefault Appearance in Normal ModeDefault GridDefault Image GridDefault _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 dotsDesaturateDescriptionDesignDevice 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 MenuDouble dashedDrag AnchorDrag AnchorsDrag CurveDrag HandleDrag PathDrag: moveDraw in inkDrawableDrawable modDrawable proceduresDrop New LayerDrop New PathDuplicate brushDuplicate channelDuplicate gradientDuplicate layerDuplicate paletteDuplicate pathDuplicate patternDuplicate the selected templateEEK: can't undoE_xport Path...E_xtra SmallEdge BehaviourEditEdit Channel AttributesEdit Channel ColorEdit Color Palette EntryEdit Colormap EntryEdit 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 %sEnable 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 this templateEnter location (URI):EnvironmentEnvironment FoldersEqualizeErase to background or transparencyEraserError Co_nsoleError ConsoleError 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 LargeExport Path to SVGExposure:ExtensionsFG 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': %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 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.Feather ChannelFeather selection byFileFile Open _DialogFile OperationsFile TypeFill 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 a color gradientFill with a color or patternFilledFinding Similar ColorsFlipFlip ChannelFlip LayerFlip PathFlip Text LayerFlip Type %sFlip _HorizontallyFlip _VerticallyFlip the layer or selectionFloat SelectionFloating Selection to LayerFocusFolderFoldersFont FoldersFont UIFontsFonts MenuForegroundForeground & 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 SelectFreehandGIMPGIMP ExtensionGIMP MessageGIMP Performance TuningGIMP Plug-InGIMP StartupGIMP Text EditorGIMP Tip of the DayGIMP User InstallationGIMP XCF imageGIMP could not initialize the graphical user interface. +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 layerFade 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 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.Feather ChannelFeather 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 Similar ColorsFit Image to WindowFit image in windowFit image to windowFit to windowFixed aspect ratioFixed sizeFlipFlip ChannelFlip LayerFlip PathFlip Text LayerFlip Type %sFlip _HorizontallyFlip _VerticallyFlip imageFlip the layer or selectionFlip...Float SelectionFloat selectionFloated LayerFloating Selection +(%s)Floating Selection to LayerFloating selection to layerFloating selectionsFocusFolderFoldersFont 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_eenGIMPGIMP 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 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 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: +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.GammaGeneralGenerate optimum paletteGet Monitor ResolutionGiganticGla_ss EffectsGradientGradient EditorGradient FoldersGradient UIGradient:GradientsGradients MenuGrain extractGrain mergeGrayGrayscaleGreenGreen:GridGrid line spacingGrow ChannelGuideGuide 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:HintingHistogra_mHistogramHistogram ScaleHistoryHorizontalHorizontal spacing of grid lines.How many recently opened image filenames to keep on the File menu.HueHue-SaturationHue-_Saturation...Hue:HugeI_con & TextI_mageI_mport Path...I_nterval:IconIcon & descIcon & textIf 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 sizeImage sourceImage typeImagesImages MenuImport OptionsImport PaletteImport PathsImport Paths from SVGImport a New PaletteImport paletteImport pathsImported PathIn_kIn_vertIncrementalIndent:Indentation of the first lineIndex:IndexedIndexed ColorInfo WindowInitial zoom _ratio: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 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'Invalid character sequence in URIInvalid shortcut.InvertInvert ChannelInvert SelectionInvert 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)KeyboardKeyboard EventsKeyboard ShortcutsLTRLandscapeLargeLarge (256x256)Larger PreviewsLast Error:LayerLayer '%s' has no alpha. Layer was placed above it.Layer AttributesLayer B_oundary Size...Layer Fill TypeLayer 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 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 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...MagentaMagenta:MagnifyMake _transparentMask Opacity:Matrix:Max Depth:Maximum _filesize for thumbnailing:Maximum _new image size: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 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 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 WindowNameName: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...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...Offset: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: -Original Width:Other (%s) ...Output LevelsOverlayPDB calling error: -procedure '%s' not foundP_atternsPaintPaint Tool:Paint _ModePaint fuzzy brush strokesPaint hard edged pixelsPaintbrushPal_ettesPalettePalette EditorPalette FoldersPalette UIPalette _Name:PalettesPalettes MenuParsing '%s' -PastePaste Buffer _IntoPaste Buffer as _NewPaste _IntoPaste as _NewPaste the selected bufferPaste the selected buffer as new imagePaste the selected buffer into the selectionPasted LayerPathPath AttributesPath 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 imagePixel valuesPixelsPixels:Please wait while your personal GIMP folder is being created...Please wait...Plug-InPlug-In EnvironmentPlug-In FoldersPlug-InsPlug-inPolygonalPortraitPosition: %0.6fPosterize (Reduce Number of Colors)Posterize does not operate on indexed layers.PreferencesPressure:PreviewPreview is out of datePreviewsProcedural databaseProgressPseudo ColorPurpose:QueryQuerying new Plug-insQuerying plug-in: '%s' -QuickMaskRGBRGB (%0.3f, %0.3f, %0.3f)RGB (%d, %d, %d)RGB ColorRGB-emptyRGBA (%0.3f, %0.3f, %0.3f, %0.3f)R_e-show "%s"RadialRadius:Raise ChannelRaise Channel to TopRaise Channel to _TopRaise LayerRaise Layer to TopRaise PathRaise Path to TopRaise channelRaise channel to topRaise this image's displaysRaise window if already openRateRate:Re_peat "%s"Re_vert...Recreate _PreviewRecreate previewRect SelectRedRed:RedoReduce image to a fixed number of colorsReduce image to two colors using a thresholdRefresh brushesRefresh gradientsRegisteredReload _all PreviewsReload all previewsRemember the current tool, pattern, color, and brush across GIMP sessions.Remote imageRemove ChannelRemove Dangling E_ntriesRemove Floating SelectionRemove GuideRemove LayerRemove PathRemove _EntryRemove dangling entriesRemove the selected filter from the list of active filters.Rename ChannelRename LayerRename PathRender StrokeReorder ChannelReorder LayerReorder pathRepeat:Replace the current selectionRescan font listReset Tool OptionsReset the selected filter to default valuesResizeResize ChannelResize ImageResize LayerResize PathResizing...Resolution:Resource configurationRestore options from...Restore saved keyboard shortcuts on each GIMP startup.ReverseRevertRotateRotate 90 degrees CC_WRotate 90 degrees _CWRotate ChannelRotate LayerRotate PathRotate Text LayerRotate _180 degreesRotate the layer or selectionRotating...Rotation InformationRoundS_pikesS_wap ColorsSat.:SaturationSaveSave CurvesSave Error Log to FileSave ImageSave LevelsSave Tool OptionsSave _All Errors to File...Save _Selection to File...Save _as...Save a Cop_y...Save 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 the positions and sizes of the main dialogs when the GIMP exits.Saved OptionsSaving '%s' +Origin X:Origin Y:Original Width:Other (%s) ...OutlineOutput LevelsOverlayPDB calling error: +procedure '%s' not foundP_atternsPaintPaint Tool proceduresPaint Tool:Paint _ModePaint fuzzy brush strokesPaint hard edged pixelsPaintbrushPal_ettesPalettePalette EditorPalette FoldersPalette UIPalette _Name:Palette _filePalettesPalettes MenuParsing '%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: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-InsPlug-inPolygonalPortraitPosition: %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: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_name Saved OptionsRe_peat "%s"Re_vert...ReadyRecreate _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 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 Text LayerRename itemRender StrokeReorder ChannelReorder LayerReorder pathRepeat:Replace the current selectionReposition channelReposition layerReposition vectorsRescan font listReset Tool OptionsReset _all Tool Options...Reset 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 itemResizing...Resolution changeResolution:Resource ConsumptionResource configurationRestore options from...Restore saved keyboard shortcuts on each GIMP startup.Restrict editing to polygonsReverseRevertRight 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 ColorsSample averageSample mergedSat.:SaturationSaveSave 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 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 PathScale the layer or selectionScissorsScreenScript-Fu FoldersScriptsScroll RightSelectSelect 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 ThemeSelect Theme FoldersSelect Zoom RatioSelect by ColorSelect elliptical regionsSelect hand-drawn regionsSelect rectangular regionsSelect regions by colorSelect shapes from imageSelectionSelection EditorSelection MaskSelection Tool proceduresSelection: Selection: ADDSelection: INTERSECTSelection: REPLACESelection: SUBTRACTSensitivitySet Channel ColorSet Channel OpacitySet Image Print ResolutionSet Item Exclusive LinkedSet Item Exclusive VisibleSets the browser used by the help system.Sets the manner in which transparency is displayed in images.Sets the mode of cursor the GIMP will use.Sets the size of the checkerboard used to display transparency.Sets the size of the previews in the Undo History.Sets the text to appear in image window status bars.Sets the text to appear in image window titles.ShadowsShapeShape:ShearShear the layer or selectionShearing InformationShearing...Show S_tatusbarShow Scroll_barsShow _GuidesShow _Layer BoundaryShow _MenubarShow tip next time GIMP startsShrink ChannelSizeSize:Skipping '%s': wrong GIMP protocol version.SmallSmaller PreviewsSmoothSmooth edgesSmudgeSmudge imageSoft lightSolidSourceSpacingSpacing:Special FileSpecifies how the area around the image should be drawn.Speed:SplitSquareSt_atus & TextStac_kStandardStarting ExtensionsStarting extension: '%s' -State:Static ColorStatus & descStatus & textStd Dev:StipplesStroke PathStroke SelectionSubtractSubtract from the current selectionT_oolsTe_xt ToolTemplatesTemplates MenuTemporary ProcedureTextText ColorText EditorText LayerText proceduresThe GIMPThe active brush. +%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 informationScissorsScreenScript-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 elliptical regionsSelect hand-drawn regionsSelect noneSelect palette fileSelect rectangular regionsSelect regions by colorSelect shapes from imageSelect swap dirSelect 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 Channel ColorSet Channel OpacitySet ColormapSet Image Print ResolutionSet Item Exclusive LinkedSet Item Exclusive VisibleSet OpacitySet background colorSet foreground colorSet item linkedSet layer modeSet layer opacitySets the browser used by the help system.Sets the manner in which transparency is displayed in images.Sets the mode of cursor the GIMP will use.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 previews in the Undo History.Sets the text to appear in image window status bars.Sets the text to appear in image window titles.Shadow typeShadowsShapeShape:Shaped (angular)Shaped (dimpled)Shaped (spherical)SharpenShearShear 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 paint _tool cursorShow s_electionShow s_tatusbarShow scroll_barsShow tip next time GIMP startsShow tips on _startupShow tool _tipsShow zoom percentageShow zoom ratioShrink ChannelSizeSize in memory:Size of _thumbnails:Size:Skipping '%s': wrong GIMP protocol version.SmallSmaller PreviewsSmoothSmooth edgesSmudgeSmudge imageSna_p to GridSoft lightSolidSourceSpacingSpacing:Sparse dotsSpecial FileSpecifies how the area around the image should be drawn.Speed:Spikes:Spiral (ccw)Spiral (cw)SplitSquareSt_atus & TextStac_kStandardStarting ExtensionsStarting extension: '%s' +State:Static ColorStatic GrayStatus & descStatus & textStd Dev:StipplesStock IDStro_ke PathStro_ke Path...Stroke ChannelStroke PathStroke SelectionStroke lineStroke pathStroke path...Stroke selection with last valuesStroke selection...Stroke with a paint toolSubtractSubtract from the current selectionSwap folder:T_oolsTe_xtTe_xt ToolTemp folder:TemplatesTemplates MenuTemporary ProcedureTerminating plug-in: '%s' +TextText ColorText EditorText LayerText modifiedText proceduresThe GIMPThe active brush. Click to open the Brush Dialog.The active gradient. 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 filename '%s' couldn't be converted to a valid URI: -%sThe foreground color of the grid.The vertical image resolution.ThemeTheme FoldersThemesThere are not enough visible layers for a merge down.There is no active layer or channel to stroke toThere was an error parsing your '%s' file. Default values will be used. A backup of your configuration has been created at '%s'.This is the distance in pixels where Guide and Grid snapping activates.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 & StatusToo many error messages!Tool OptionsTool Options MenuTool Toggle %sTool _OptionsTool_boxToolbox MenuToolsTr_ansparencyTransfer Alpha to MaskTransformTransform ChannelTransform DirectionTransform LayerTransform PathTransform Tool proceduresTransformationTransforming...Translation byTransparencyTrue ColorTypeType %sUnable 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 HistoryUndo _HistoryUnitsUnknownUnknown file typeUnloadUnnamedUntitledUse _web browser insteadUse all visible layers when shrinking the selectionUser Installation LogUser InterfaceUtility windowValueValue:Version %s brought to you byVersion:VerticalVertical spacing of grid lines.ViewView as _GridView as _ListView as gridView as listWeb BrowserWeb browserWhen enabled the dialog automatically follows the image you are working on.When enabled, menus can be torn off.When enabled, pressing F1 will open the help browser.When enabled, the GIMP will use a different info window per image view.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 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, 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.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 horizontal image resolution.The vertical image resolution.ThemeTheme FoldersThemesThere are %d images with unsaved changes:There are not enough visible layers for a merge down.There is no active layer or channel to stroke toThere 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 folder is searched for image templates.This is the distance in pixels where Guide and Grid snapping activates.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 MenuTr_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 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 HistoryUndo _HistoryUnitsUnknownUnknown file typeUnknown type of palette file: +%sUnloadUnnamedUntitledUse _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 spacing of grid lines.Very largeVery smallViewView as _GridView as _ListView as gridView as listVisual 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, menus can be torn off.When enabled, pressing F1 will open the help browser.When enabled, the GIMP will use a different info window per image view.When enabled, the cursor will be shown over the image while using a paint tool.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 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, 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.WhiteWidthWidth: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.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 +Substituting grayscale map.YYellowYellow:You can drop dockable dialogs here.Your GIMP installation is incomplete:Zoom 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_Anchor Layer_Antialiasing_Artistic_Aspect_Auto_B_BG Color_Background color:_Black (full transparency)_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_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 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_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_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_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_None_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_Render_Replace_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_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 Image Selection_Show in Toolbox_Small_Smudge_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 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.gimp-2-2 Report-Msgid-Bugs-To: -POT-Creation-Date: 2005-01-22 17:32+0100 -PO-Revision-Date: 2004-12-10 11:34+0530 -Last-Translator: Amanpreet Singh Alam +POT-Creation-Date: 2005-03-08 20:16+0100 +PO-Revision-Date: 2005-03-09 09:29+0530 +Last-Translator: Amanpreet Singh Alam Language-Team: Punjabi MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 @@ -200,35 +288,45 @@ -i, --no-interface ਯੂਜਰ ਇੰਟਫੇਸ ਨਾ ਚਰਤੋ। -s, --no-splash ਸ਼ੁਰੂਆਤੀ ਝਰੋਖਾ ਨਾ ਵੇਖਾਉ। -v, --version ਆਉਟਪੁੱਟ ਵਰਜਨ ਜਾਣਕਾਰੀ। -%d ਪਰਤਾਂ%d dpi%d dpi, %s%d ਪਰਤਾਂ%d x %d dpi%d x %d dpi, %s%d x %d ਪਿਕਸਲ%g x %g %s%p%s ਚੈਨਲ ਨਕਲਚੋਣ ਲਈ %s ਚੈਨਲ%s ਸੁਨੇਹਾ%s ਨਕਲ%s ਮਖੌਟਾ%s%s ਦਬਾਉ: ਵਿਸਥਾਰਿਤ ਚੋਣ%s%sਚੁੱਕੋ: ਹਿਲਾਉ ਤੇ ਦਬਾਉ(%0.3f, %0.3f, %0.3f)(ਕੋਈ ਨਹੀ)(ਕੰਨਸੋਲ ਝਰੋਖਾ 10 ਸਕਿੰਟਾਂ ਵਿੱਚ ਬੰਦ ਹੋ ਜਾਵੇਗਾ) -(ਬਿਨਾਂ ਨਾਂ ਨਮੂਨਾ)(ਗਲਤ ਯੂਟੀਐਫ-੮ ਸਤਰ)(ਕੋਈ ਨਹੀ)1 ਪਰਤ1 ਪਰਤ<%s><<ਗਲਤ>><ਕੋਈ ਮੈਡੀਊਲ ਨਹੀ>ਜੈਮਪ ਦੀ ਅਨੁਕੂਲ ਕਾਰਜਕੁਸ਼ਤਾ ਲਈ, ਕੁਝ ਵਿਵਸਥਾਵਾਂ ਨੂੰ ਅਨੁਕੂਲ ਕਰਨਾ ਪਵੇਗਾ।ਜੈਮਪ(GIMP) - GNU ਚਿੱਤਰਾਂ ਲਈ ਇਸਤੇਮਾਲ ਕਰਨ ਵਾਲਾ ਕਾਰਜ +%d ਪਰਤਾਂ%d dpi%d dpi, %s%d ਪਰਤਾਂ%d ਮਿੰਟ%d ਸਕਿੰਟ%d x %d dpi%d x %d dpi, %s%d x %d ਪਿਕਸਲ%g x %g %s%p%s ਚੈਨਲ ਨਕਲਚੋਣ ਲਈ %s ਚੈਨਲ%s ਸੁਨੇਹਾ%s ਨਕਲ%s ਮਖੌਟਾ%s%s ਦਬਾਉ: ਵਿਸਥਾਰਿਤ ਚੋਣ%s%sਚੁੱਕੋ: ਹਿਲਾਉ ਤੇ ਦਬਾਉ(%0.3f, %0.3f, %0.3f)(ਕੋਈ ਨਹੀ)(ਕੰਨਸੋਲ ਝਰੋਖਾ 10 ਸਕਿੰਟਾਂ ਵਿੱਚ ਬੰਦ ਹੋ ਜਾਵੇਗਾ) +(ਬਿਨਾਂ ਨਾਂ ਨਮੂਨਾ)(ਸਾਫ਼)(ਗਲਤ ਯੂਟੀਐਫ-੮ ਸਤਰ)(ਸੋਧ)(ਕੋਈ ਨਹੀ)1 ਪਰਤ1 ਪਰਤ15 ਡਿਗਰੀ %s16:1 (1600%)1:1 (100%)1:16 (6.25%)1:2 (50%)1:4 (25%)1:8 (12.5%)2:1 (200%)2D ਤਬਦੀਲੀ...4:1 (400%)8:1 (800%)<%s><<ਗਲਤ>><ਕੋਈ ਮੈਡੀਊਲ ਨਹੀ>ਜੈਮਪ ਦੀ ਅਨੁਕੂਲ ਕਾਰਜਕੁਸ਼ਤਾ ਲਈ, ਕੁਝ ਵਿਵਸਥਾਵਾਂ ਨੂੰ ਅਨੁਕੂਲ ਕਰਨਾ ਪਵੇਗਾ।ਜੈਮਪ(GIMP) - GNU ਚਿੱਤਰਾਂ ਲਈ ਇਸਤੇਮਾਲ ਕਰਨ ਵਾਲਾ ਕਾਰਜ ਹੱਕ ਰਾਖਵੇ ਹਨ (C) ੧੯੯੫-੨੦੦੪ -ਸਪੈਨਸਰ ਕਿਮਬਿਲ, ਪੀਟਰ ਮਟੀਟੀਸ ਅਤੇ ਗਨੋਮ ਵਿਕਾਸ ਟੀਮ।ਕੋਣ(_n)ਜੈਮਪ ਬਾਰੇਸਰਗਰਮ ਫਿਲਟਰਜੋੜ੍ਹੋਐਲਫਾ ਚੈਨਲ ਜੋੜ੍ਹੋਸਹਾਰਾ ਜੋੜ੍ਹੋਚੈਨਲ ਜੋੜ੍ਹੋਲੇਟਵੀ ਨਿਰਦੇਸ਼ਕ ਜੋੜ੍ਹੋਪਰਤ ਜੋੜ੍ਹੋਪਰਤ ਮਖੋਟਾ ਜੋੜ੍ਹੋਰਸਤਾ ਜੋੜ੍ਹੋਛੋਹ ਜੋੜ੍ਹੋਨਵੀ ਪਾਠ ਪਰਤ ਜੋੜ੍ਹੋਲੰਬਕਾਰੀ ਨਿਰਦੇਸ਼ਕ ਜੋੜ੍ਹੋBG ਤੋ ਰੰਗ ਸ਼ਾਮਿਲFG ਤੋ ਰੰਗ ਸ਼ਾਮਿਲਚਿੱਤਰ ਵਿੱਚ ਪਾਠ ਜੋੜ੍ਹੋਸਰਗਰਮ ਫਿਲਟਰ ਦੀ ਸੂਚੀ ਵਿੱਚ ਚੁਣੇ ਫਿਲਟਰ ਨੂੰ ਜੋੜ੍ਹੋਮੌਜੂਦਾ ਚੋਣ ਵਿੱਚ ਜੋੜ੍ਹੋਸਰੂਪ '%s' ਸ਼ਾਮਿਲ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ (%s) -ਜੋੜ੍ਹੋਚਮਕੀਲਾਪਨ-ਅਸਮਾਨਤਾ ਨੂੰ ਅਨੁਕੂਲ ਕਰੋਰੰਗ ਸੰਤੁਲਨ ਅਨੁਕੂਲ ਕਰੋਰੰਗ ਗੋਲਾਈ ਅਨੁਕੂਲ ਕਰੋਰੰਗ ਪੱਧਰ ਅਨੁਕੂਲ ਕਰੋਚਮਕੀਲਾਪਨ-ਅਸਮਾਨਤਾ ਨੂੰ ਅਨੁਕੂਲ ਕਰੋਰੰਗ ਸੰਤੁਲਨ ਅਨੁਕੂਲ ਕਰੋਰੰਗ ਗੋਲਾਈ ਅਨੁਕੂਲ ਕਰੋਰੰਗ ਪੱਧਰ ਅਨੁਕੂਲ ਕਰੋਪੱਧਰ ਸਵੈ ਹੀ ਅਨੁਕੂਲ ਕਰੋਅਨੁਕੂਲਣਪ੍ਰਭਾਵ:ਪ੍ਰਭਾਵਿਤ ਖੇਤਰ %sਏਅਰ-ਬੁਰਸ਼ਹਵਾਈ-ਬੁਰਸ਼ ਬਦਲਣਯੋਗ ਦਬਾਉ ਨਾਲਸਾਰੇ ਚੈਨਲਸਭ ਫਾਇਲਾਂਪੂਰੀ ਤਰ੍ਹਾਂ ਪਾਰਦਰਸ਼ੀ ਖੇਤਰ ਨੂੰ ਭਰਨ ਦੀ ਮਨਜ਼ੂਰੀ ਦਿਉਪੂਰੀ ਤਰ੍ਹਾਂ ਪਾਰਦਰਸ਼ੀ ਖੇਤਰ ਦੀ ਚੋਣ ਦੀ ਮਨਜ਼ੂਰੀ ਦਿਉਐਲਫਾਚੋਣ ਲਈ ਐਲਫਾ ਐਲਫਾ:ਸਹਾਰਾ ਤਰਦੀ ਚੋਣਕੋਣ:ਐਟੀਲਾਈਸਿੰਗਦਿੱਖਪਰਤ ਮਖੌਟਾ ਲਾਗੂ ਕਰੋਮੁੱਢਲਾ-ਮੁੱਲ ਲਾਗੂ ਕਰੋਕੀ ਤੁਸੀ ਯਕੀਨਨ ਹੀ '%s' ਨੂੰ ਸੂਚੀ ਅਤੇ ਡਿਸਕ ਤੋ ਹਟਾਉਣਾ ਚਾਹੁੰਦੇ ਹੋ?ਕੀ ਤੁਸੀ ਯਕੀਨਨ ਹੀ ਨਮੂਨਾ '%s' ਨੂੰ ਸੂਚੀ ਅਤੇ ਡਿਸਕ ਤੋ ਹਟਾਉਣਾ ਚਾਹੁੰਦੇ ਹੋ ?ਬਿਨਾਂ ਸੰਭਾਲੇ ਚਿੱਤਰ ਨੂੰ ਬੰਦ ਕਰਨ ਤੋ ਪਹਿਲ਼ਾਂ ਪੁੱਛੋ।ਅਕਾਰ ਅਨੁਪਾਤ:ਲੇਖਕ:ਸਵੈਸਵੈ-ਲੋਡਸਵੈਚਾਲਿਤ ਖੋਜਉਪਲੱਬਧ ਫਿਲਟਰਉਪਲੱਬਧ ਕਿਸਮਾਂ:ਬਫਰ(_u)ਪਿੱਠਭੂਮੀਪਿੱਠਭੂਮੀ ਰੰਗ ਨਿਰਧਾਰਿਤ ਕਰੋ:ਪਿੱਠਭੂਮੀ: %d, %d, %dਸਾਰੀਆਂ ਦਿੱਖ ਪਰਤਾਂ ਲਈ ਅਧਾਰ ਭਰਨ ਖੇਤਰਸਾਰੀਆ ਉਪਲੱਬਧ ਪਰਤਾਂ ਤੇ ਅਧਾਰ ਚੋਣਪਿੱਛੇਝੁੰਡਕਾਲਾ ਤੇ ਚਿੱਟਾਕਾਲਾ:ਮਿਲਾਵਟ:ਮਿਲਾ ਜਾ ਰਿਹਾ ਹੈ...ਨੀਲਾਨੀਲਾ:ਹਾਸ਼ੀਆ ਚੈਨਲਹਾਸ਼ੀਆ ਚੋਣਪਰਕਾਸ਼ਵਾਨਤਾ-ਵੱਖਰੇਵਾਂਤਤਕਰਾ ਪਰਤਾਂ ਤੇ ਚਮਕੀਲਾਪਨ-ਅਸਮਾਨਤਾ ਕੰਮ ਨਹੀ ਕਰਦੇ ਹਨ।ਬੁਰਸ਼ ਸੋਧਕਬੁਰਸ਼ ਫੋਲਡਰਬੁਰਸ਼ UIਬੁਰਸ਼:ਬੁਰਸ਼ਬੁਰਸ਼ ਮੇਨੂਬਫਰਬਫ਼ਰ ਮੇਨੂਉੱਚਾਐਕਸ਼ਟੇਸ਼ਨ ਨਾਲCMYKਕਾਲਮ:%s ਨੂੰ ਪੁਨਰ-ਪ੍ਰਾਪਤ ਨਹੀ ਕੀਤਾ ਜਾ ਸਕਦਾ ਖਾਕਾ ਅਕਾਰ...ਰੱਦਫੋਲਡਰ '%s' ਬਣਾਇਆ ਨਹੀ ਜਾ ਸਕਿਆ ਹੈ: %sਦਰਿਸ਼ ਨਹੀ ਬਣ ਸਕਿਆ${%s} ਫੈਲਾ ਨਹੀ ਸਕਦਾਪਰਤ ਨੂੰ ਐਲਫਾ ਬਿਨਾਂ ਉਠਾਇਆ ਜਾ ਸਕਦਾਸੰਭਾਲਿਆ ਨਹੀ ਜਾ ਸਕਦਾ ਹੈ। ਕੁਝ ਨਹੀ ਸੰਭਾਲਿਆ ਗਿਆ।ਖਾਲੀ ਚੈਨਲ ਨੂੰ ਦਬਾਇਆ ਨਹੀ ਜਾ ਸਕਦਾ ਖਾਲੀ ਰਸਤੇ ਨੂੰ ਛੋਹਿਆ ਨਹੀ ਜਾ ਸਕਦਾਕੇਦਰੀ X:ਕੇਦਰੀਪਿੱਠਭੂਮੀ ਰੰਗ ਤਬਦੀਲ ਕਰੋਮੁੱਖ-ਭੂਮੀ ਰੰਗ ਤਬਦੀਲਚਿੱਤਰ ਦੀ ਰੈਜ਼ੋਲੇਸ਼ਨ ਤਬਦੀਲ ਕਰੋਚਿੱਤਰ ਦੀ ਇਕਾਈ ਤਬਦੀਲ ਕਰੋਛਾਪਣ ਅਕਾਰ ਤਬਦੀਲਗਰਿੱਡ ਦਾ ਪਿੱਠਭੂਮੀ ਰੰਗ ਤਬਦੀਲਗਰਿੱਡ ਦਾ ਮੁੱਖ-ਭੂਮੀ-ਰੰਗ ਤਬਦੀਲਮੌਜੂਦਾ ਪਰਤ ਜਾਂ ਚੋਣ ਦਾ ਅਵਲੋਕਣ ਤਬਦੀਲ ਚੈਨਲਚੈਨਲ ਗੁਣਚੈਨਲ ਨਾਂ:ਚੈਨਲ ਨੂੰ ਹੋਰ ਹੇਠਾਂ ਨਹੀ ਕੀਤਾ ਜਾ ਸਕਦਾ ਹੈ।ਚੈਨਲ ਨੂੰ ਹੋਰ ਉਭਾਰਿਆ ਨਹੀ ਜਾ ਸਕਦਾ ਹੈ।ਚੋਣ ਲਈ ਚੈਨਲ(_c)ਚੋਣ ਲਈ ਚੈਨਲਚੋਣ ਲਈ ਚੈਨਲਚੈਨਲ:ਚੈਨਲਚੈਨਲ ਮੇਨੂਸਾਫ਼ਸਾਫ਼ਸਾਫ ਚੈਨਲਵਾਪਿਸ ਦਾ ਅਤੀਤਗਲਤੀ ਸਾਫ਼ਮੁਡ਼ ਕਰੋ ਅਤੀਤ ਸਾਫ..ਉਪਰ ਦਿੱਤੀਆਂ ਵਿਵਸਥਾਵਾਂ ਨੂੰ ਮਨਜ਼ੂਰ ਕਰਨ ਲਈ "ਜਾਰੀ ਰੱਖੋ" ਨੂੰ ਦਬਾਉ।ਇਸ ਸਹਾਰੇ ਨੂੰ ਚੁਣੇ ਅਖੀਰੀ-ਬਿੰਦੂਆਂ ਨਾਲ ਜੋਡ਼ਨ ਲਈ ਦਬਾਉ।ਨਵਾਂ ਸਹਾਰਾ ਬਣਾਉਣ ਲਈ ਦਬਾਉ (SHIFT ਨਾਲ ਕੋਸ਼ਿਸ ਕਰੋ)ਰਸਤੇ ਵਿੱਚ ਨਵਾਂ ਭਾਗ ਬਣਾਉਣ ਲਈ ਦਬਾਉ।ਨਵਾਂ ਰਸਤਾ ਬਣਾਉਣ ਲਈ ਦਬਾਉਇਸ ਸਹਾਰੇ ਨੂੰ ਹਟਾਉਣ ਲਈ ਦਬਾਉਇਸ ਰਸਤੇ ਵਿੱਚ ਸਹਾਰੇ ਨੂੰ ਜੋਡ਼ਨ ਲਈ ਦਬਾਉ (SHIFT ਨਾਲ ਕੋਸ਼ਿਸ ਕਰੋ)ਇਸ ਨੋਡ ਨੂੰ ਕੋਣੀ ਨਹੀ ਬਣਾਇਆ ਜਾ ਸਕਦਾ ਹੈ।ਰਸਤਾ ਖੋਲਣ ਲਈ ਦਬਾਉਸੋਧ ਲਈ ਰਸਤਾ ਚੁਣਨ ਲਈ ਦਬਾਉਨਮੂਨਾ ਦਾ ਨਵੀਨੀਕਰਨ ਲਈ ਦਬਾਉ -%s ਦਬਾਉ ਨਵੀਨੀਕਰਨ ਲਈ ਭਾਵੇ ਕਿ ਨਮੂਨਾ ਪਹਿਲਾਂ ਹੀ ਨਵੀਨ ਹੋਵੇ ਗੋਲਾਈ ਦੀ ਸਥਿਤੀ ਤਬਦੀਲ ਕਰਨ ਲਈ ਦਬਾਉ-ਚੁੱਕੋ (SHIFT: ਸਮਮਿਤੀ)ਸਹਾਰੇ ਨੂੰ ਏਧਰ-ਓਧਰ ਕਰਨ ਲਈ ਦਬਾਉ-ਚੁੱਕੋ ਸਹਾਰਿਆਂ ਨੂੰ ਏਧਰ-ਓਧਰ ਕਰਨ ਲਈ ਦਬਾਉ-ਚੁੱਕੋ ਭਾਗ ਨੂੰ ਪਾਸੇ ਭੇਜਣ ਲਈ ਦਬਾਉ-ਚੁੱਕੋ (SHIFT ਨਾਲ ਕੋਸ਼ਿਸ ਕਰੋ)ਹੈਡਲਰ ਨੂੰ ਘੁੰਮਾੳਣ ਲਈ ਦਬਾਉ-ਚੁੱਕੋ (SHIFT ਨਾਲ ਕੋਸ਼ਿਸ ਕਰੋ)ਰਸਤਾ ਪਾਸੇ ਭੇਜਣ ਲਈ ਦਬਾਉ-ਚੁੱਕੋਦਬਾਉ: ਚੁਣੋ ਦਬਾਉ: ਚੁਣੋ ਚੁਕੋ: ਹਿਲਾਉਸਮਰੂਪਇਹ ਟੈਬ ਹਟਾਉਰੰਗ(_r)ਰੰਗਰੰਗ ਸਾਵਾਂਰੰਗ-ਵੇਖਾਉਣ ਲਈ ਫਿਲਟਰਰੰਗ ਚੋਣਕਾਰਰੰਗ ਚੋਣਕਾਰ ਜਾਣਕਾਰੀਰੰਗ ਮੇਟਾਉਰੰਗ ਤਤਕਰਾ:ਰੰਗ:ਰੰਗ-ਖਾਕਾ(_m)ਰੰਗ ਥਾਂ(_s):ਰੰਗਤਚਿੱਤਰ ਨੂੰ ਰੰਗੀਨ ਕਰੋਚਿੱਤਰ ਨੂੰ ਰੰਗੀਨ ਕਰੋਰੰਗ-ਖਾਕਾਰੰਗ-ਖਾਕਾ ਸੰਪਾਦਕਰੰਗ-ਖਾਕਾ ਮੇਨੂਕਾਲਮ:ਟਿੱਪਣੀ:ਅਸਮਾਨਤਾ:ਰੰਗ-ਵੇਖਾਉਣ ਲਈ ਫਿਲਟਰ ਦੀ ਸੰਰਚਨਾਗਰਿੱਡ ਸੰਰਚਨਾ...ਗਰਿੱਡ ਸੰਰਚਨਾਚਿੱਤਰ ਗਰਿੱਡ ਸੰਰਚਨਾਚਿੱਤਰ ਅਕਾਰ ਦੀ ਪੁਸ਼ਟੀਪਾਠ ਸੋਧ ਦੀ ਪੁਸ਼ਟੀਛੋਹਾਂ ਨੂੰ ਜੋੜ੍ਹੋਸਥਿਰਸੀਮਾਵਾਂਪਾਠਜਾਰੀ ਰੱਖੋਯੋਗਦਾਨ ਰਿਹਾਤਬਦੀਲਕਿਨਾਰੇ ਵਿੱਚ ਤਬਦੀਲ ਕਰੋਚਿੱਤਰ ਨੂੰ ਗਰੇ-ਪੈਮਾਨਾ ਵਿੱਚ ਤਬਦੀਲ ਕਰੋਚਿੱਤਰ ਨੂੰ ਤਤਕਰਾ ਵਿੱਚ ਤਬਦੀਲ ਕਰੋਚਿੱਤਰ ਨੂੰ RGB ਵਿੱਚ ਤਬਦੀਲ਼ ਕਰੋਫਾਇਲ '%s' ਨੂੰ '%s' ਤੋ ਨਕਲ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ...ਹੱਕ ਰਾਖਵੇ ਹਨ:ਨਿਕਾਰਾ ਭਾਗ %d ਢਾਂਲਵਾ ਫਾਇਲ '%s' ਵਿੱਚ'%s' ਨੂੰ ਬਣਾਇਆ ਨਹੀ ਜਾ ਸਕਿਆ ਹੈ: %s'%s' ਲਈ ਆਰਜ਼ੀ ਫਾਇਲ ਨਹੀ ਬਣਾ ਸਕਿਆ: %s'%s' ਨੂੰ ਹਟਾਇਆ ਨਹੀ ਜਾ ਸਕਿਆ: %sਜੈਮਪ ਸਹਾਇਤਾ ਝਲਕਾਰਾ ਲੱਭਿਆ ਨਹੀ ਜਾ ਸਕਿਆ ਹੈ। '%s' ਨੂੰ ਪੜ੍ਹਨ ਲਈ ਖੋਲਣਾ ਅਸਫਲ: %s '%s' ਨੂੰ ਲਿਖਣ ਲਈ ਖੋਲਣਾ ਅਸਫਲ: %s %d ਬਾਈਟ'%s' ਤੋ ਪੜ੍ਹੇ ਨਹੀ ਜਾ ਸਕੇ ਹਨ: %sXCF ਫਾਇਲ ਵਿੱਚ ਲੱਭਿਆ ਜਾ ਸਕਿਆ: %sਗਿਣਤੀ:ਨਵਾਂ ਤਰਦਾ ਬਣਾਓ(_k)ਨਵਾਂ ਨਮੂਨਾ ਬਣਾਉਨਵਾਂ ਚਿੱਤਰ ਬਣਾਉਨਵੀ ਪਰਤ ਬਣਾਉਨਵਾਂ ਨਮੂਨਾ ਬਣਾਉਇਸ ਚਿੱਤਰ ਲਈ ਨਵਾਂ ਦਰਿਸ਼ ਬਣਾਉਚੁਣੇ ਨਮੂਨੇ ਤੋ ਨਵਾਂ ਚਿੱਤਰ ਬਣਾਉ ਨਵਾਂ ਨਮੂਨਾ ਬਣਾਉਚਿੱਤਰ ਜਾਂ ਤਸਵੀਰਾਂ ਬਣਾਉ ਜਾਂ ਸੋਧੋਰਸਤਾ ਬਣਾਉ ਤੇ ਸੋਧੋਨਮੂਨਾ ਤਿਆਰ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ ...ਫੋਲਡਰ '%s' ਬਣਾਇਆ ਜਾ ਰਿਹਾ ਹੈ...ਫੈਲਾਉਫੈਲਾਉ ਤੇ ਮੁਡ਼-ਅਕਾਰਫੈਲਾਉ ਤੇ ਮੁਡ਼-ਅਕਾਰ ਜਾਣਕਾਰੀਚਿੱਤਰ ਫੈਲਾਉਚਿੱਤਰ ਨੂੰ ਫੈਲਾਉ ਤੇ ਮੁਡ਼-ਅਕਾਰ ਦਿਉਫੈਲਾਉ:ਕੱਟੋਕੱਟਿਆ ਨਾਂ...ਘਣਕਾਰ(ਉੱਤਮ)ਮੌਜੂਦਾ ਸਥਿਤੀ(_S)ਮੌਜੂਦਾ ਸਥਿਤੀਗੋਲਾਈ ਕਿਸਮਤਤਕਰਾ ਪਰਤਾਂ ਲਈ ਗੋਲਾਈ ਨੂੰ ਅਨੁਕੂਲ ਨਹੀ ਕੀਤਾ ਜਾ ਸਕਦਾ ਹੈ।ਸੋਧਕੱਟੋਨੀਲਾਯਰਕਾਨ(ਨੀਲਾ):ਨਕਲੀ ਬੁਰਸ਼(_u)ਨਕਲੀ ਚੈਨਲਨਕਲੀ ਢਾਲੂਨਕਲੀ ਪਰਤਸਿਰਫ ਹਨੇਰਾਡੈਸ਼ ਤਰਤੀਬ:ਧਾਰੀਦਾਰਮਿਤੀ:ਡੀਬੱਗਮੂਲ ਗਰਿੱਡਮੂਲ ਚਿੱਤਰ ਗਰਿੱਡਸਹਾਰਾ ਹਟਾਉਪਰਤ ਮਖੌਟਾ ਹਟਾਉਇਕਾਈ ਹਟਾਉਖੰਡ ਹਟਾਉਨਮੂਨਾ ਹਟਾਉਬੁਰਸ਼ ਹਟਾਓਚੈਨਲ ਹਟਾਉਢਾਲੂ ਹਟਾਓਸੰਭਾਲੀ ਚੋਣ ਹਟਾਉ...ਚੁਣਿਆ ਬਫਰ ਹਟਾਉਚੁਣਿਆ ਨਮੂਨਾ ਹਟਾਉਇਹ ਚਿੱਤਰ ਹਟਾਉਅਸਤ੍ਰਿਪਤਵਰਣਨਢਾਂਚਾਯੰਤਰ ਸਥਿਤੀਯੰਤਰਵਾਰਤਾਲਾਪਤਖਤੀ ਮੇਨੂਅੰਤਰਸਿੱਧੇ ਰੰਗਪਾਠ ਜਾਣਕਾਰੀ ਰੱਦਦਰਿਸ਼ਕਾਰਵਾਈ ਵੇਖਾਓਦਿੱਖ ਰਿਹਾ ਹੈ[%0.6f, %0.6f]ਘੋਲੋਦੂਰੀ:ਦੂਰੀ: %0.6fਵੰਡੋਕੀ ਤੁਸੀ ਨਿਸ਼ਚਿਤ ਹੀ ਸੰਦ ਚੋਣ ਨੂੰ ਮੂਲ ਹੀ ਮੁਡ਼ ਨਿਰਧਾਰਿਤ ਕਰਨਾ ਚਾਹੋਗੇ ?ਤਰਨਯੋਗਦਸਤਾਵੇਜ਼ ਅਤੀਤ(_y)ਦਸਤਾਵੇਜ਼ ਅਤੀਤਦਸਤਾਵੇਜ਼ਦਸਤਾਵੇਜ਼ ਮੇਨੂਸਹਾਰਾ ਚੁੱਕੋਸਹਾਰੇ ਚੁੱਕੋਗੋਲਾਈ ਚੁੱਕੋਹੈਡਲ ਚੁੱਕੋਰਸਤਾ ਚੁੱਕੋਚੁਕੋ: ਹਿਲਾਉਸਿਆਹੀ ਵਿੱਚ ਉਲੀਕੋਉਲੀਕਣਯੋਗਨਵੀ ਪਰਤ ਸੁਟੋਨਵਾਂ ਰਸਤਾ ਸੁੱਟੋਨਕਲੀ ਬੁਰਸ਼ਨਕਲੀ ਚੈਨਲਨਕਲੀ ਢਾਲੂਚੁਣੇ ਨਮੂਨੇ ਦੀ ਨਕਲ ਬਣਾਉEEK: ਮੁਡ਼ ਪਹਿਲਾਂ ਨਹੀ ਕਰ ਸਕਿਆਬਹੁਤ ਛੋਟਾ(_x)ਸੋਧਚੈਨਲ ਗੁਣ ਸੋਧਚੈਨਲ ਰੰਗ ਸੋਧਰੰਗ ਦੀ ਰੰਗ-ਪੱਟੀ ਵਿੱਚ ਇੰਦਰਾਜ਼ ਦੀ ਸੋਧਰੰਗ-ਪੱਟੀ ਇੰਦਰਾਜ਼ ਵਿੱਚ ਸੋਧਸੋਧ ਮੋਡਰੰਗ-ਪੱਟੀ ਵਿੱਚ ਇੰਦਰਾਜ਼ ਦੀ ਸੋਧਰਸਤਾ ਗੁਣ ਦੀ ਸੋਧਨਮੂਨਾ ਸੋਧਬੁਰਸ਼ ਸੋਧ...ਚੈਨਲ ਗੁਣ ਸੋਧਰੰਗ ਸੋਧਰੰਗ-ਪੱਟੀ ਇੰਦਰਾਜ਼ ਸੋਧ #%dਢਾਲਵਾਂ ਸੋਧ...ਪਰਤ ਗੁਣ ਦੀ ਸੋਧਕਾਰਵਾਈ ਸੋਧਚੁਣਿਆ ਨਮੂਨਾ ਸੋਧੋਅੰਡਾਕਾਰ ਚੋਣਖਾਲੀ ਚੈਨਲਖਾਲੀ ਪਰਤਖਾਲ਼ੀ ਮਾਰਗਖਾਲੀ ਪਾਠ ਪਰਤਵਾਤਾਵਰਣ ਫਾਇਲ %s ਵਿੱਚ ਵੇਰੀਬਲ ਨਾਂ ਖਾਲੀ ਹੈਇਹ ਕੰਟਰੋਲਰ ਯੋਗਸ਼ੁਰੂ ਵੇਲੇ ਜੈਮਪ ਸੰਕੇਤ ਨੂੰ ਵੇਖਾਉ ਯੋਗ ਕਰੋਸੰਕੇਤ ਨੂੰ ਵੇਖਾਉ ਯੋਗ ਕਰੋਵਿਸ਼ਾਲਵਿਲੀਨ ਰੰਗ-ਪੱਟੀ ਲਈ ਨਾਮ ਭਰੋਇਸ ਨਮੂਨੇ ਦਾ ਨਾਂ ਭਰੋਵਾਤਾਵਰਣਵਾਤਾਵਰਣ ਫੋਲਡਰਸਮਰੂਪਪਿੱਠਭੂਮੀ ਜਾਂ ਪਾਰਦਰਸ਼ਤਾ ਨੂੰ ਮੇਟਾਉਰਬਡ਼ਕੰਨਸੋਲ ਗਲਤੀ(_n)ਕੰਨਸੋਲ ਗਲਤੀਗਲਤੀ, XCF ਫਾਇਲ ਨੂੰ ਸੰਭਾਲਣ ਵਿੱਚ: %sਗਲਤੀ, '%s' ਨੂੰ ਪਾਰਸ ਕਰਨ ਦੌਰਾਨ, ਸਤਰ %d ਵਿੱਚ: %sਗਲਤੀ, '%s' ਨੂੰ ਪੜ੍ਹਨ ਦੌਰਾਨ: %sਗਲਤੀ, '%s' ਨੂੰ ਲਿਖਣ ਦੌਰਾਨ: %sਗਲਤੀ XCF ਨੂੰ ਲਿਖਣ ਵਿੱਚ: %sਗਲਤੀ, ਫਾਇਲ '%s' ਨੂੰ ਲਿਖਣ ਵਿੱਚ: +ਸਪੈਨਸਰ ਕਿਮਬਿਲ, ਪੀਟਰ ਮਟੀਟੀਸ ਅਤੇ ਗਨੋਮ ਵਿਕਾਸ ਟੀਮ।ਜੈਮਪ ਇਸ਼ਾਰਾ ਫਾਇਲ ਨੂੰ ਪਾਰਸ ਨਹੀਂ ਕੀਤਾ ਜਾ ਸਕਿਆ!ਤੁਹਡੀ ਜੈਮਪ ਇਸ਼ਾਰਾ ਫਾਇਲ ਗੁੰਮ ਲੱਗਦੀ ਹੈ!ਫਾਇਲ ਨਾਂ '%s' ਪਹਿਲਾਂ ਹੀ ਮੌਜੂਦ ਹੈ।ਚੋਣ ਵਿੱਚ ਜੋੜ੍ਹੋ(_d)ਕੋਣ(_n)ਜੈਮਪ ਬਾਰੇਕਾਰਵਾਈਕੇਂਦਰਿਤ ਚਿੱਤਰ ਸਰਗਰਮ(_f)ਸਰਗਰਮ ਫਿਲਟਰਜੋੜ੍ਹੋਐਲ਼ਫਾ ਚੈਨਲ ਜੋੜ੍ਹੋ(_h)ਐਲਫਾ ਚੈਨਲ ਜੋੜ੍ਹੋਸਹਾਰਾ ਜੋੜ੍ਹੋਚੈਨਲ ਜੋੜ੍ਹੋਰੰਗ-ਖਾਕੇ ਤੋਂ ਰੰਗ ਜੋੜ੍ਹੋਦਿਸ਼ਾ-ਨਿਰਦੇਸ਼ਨ ਸ਼ਾਮਲ: ਗਾਈਡ ਸ਼ਾਮਲਲੇਟਵੀ ਨਿਰਦੇਸ਼ਕ ਜੋੜ੍ਹੋਪਰਤ ਮਖੌਟਾ ਜੋੜ੍ਹੋ(_y)...ਪਰਤ ਜੋੜ੍ਹੋਪਰਤ ਮਖੋਟਾ ਜੋੜ੍ਹੋਮਾਰਗ ਜੋੜ੍ਹੋਛੋਹ ਜੋੜ੍ਹੋਨਵੀ ਪਾਠ ਪਰਤ ਜੋੜ੍ਹੋਲੰਬਕਾਰੀ ਨਿਰਦੇਸ਼ਕ ਜੋੜ੍ਹੋਪਰਤ ਲਈ ਮਖੌਟਾ ਸ਼ਾਮਲBG ਤੋ ਰੰਗ ਸ਼ਾਮਿਲFG ਤੋ ਰੰਗ ਸ਼ਾਮਿਲਪਰਤ ਮਖੌਟਾ ਜੋੜ੍ਹੋਚਿੱਤਰ ਵਿੱਚ ਪਾਠ ਜੋੜ੍ਹੋਮੌਜੂਦਾ ਰੰਗ ਨੂੰ ਰੰਗ ਅਤੀਤ ਵਿੱਚ ਸ਼ਾਮਲ ਕਰੋਸਰਗਰਮ ਫਿਲਟਰ ਦੀ ਸੂਚੀ ਵਿੱਚ ਚੁਣੇ ਫਿਲਟਰ ਨੂੰ ਜੋੜ੍ਹੋਰੰਗ-ਪੱਟੀ ਵਿੱਚ ਜੋੜ੍ਹੋ %sਮੌਜੂਦਾ ਚੋਣ ਵਿੱਚ ਜੋੜ੍ਹੋਸਰੂਪ '%s' ਸ਼ਾਮਿਲ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ (%s) +ਜੋੜ੍ਹੋਹੋਰ ਇੰਪੁੱਟ ਕੰਟਰੋਲਰਚਮਕੀਲਾਪਨ-ਅਸਮਾਨਤਾ ਨੂੰ ਅਨੁਕੂਲ ਕਰੋਰੰਗ ਸੰਤੁਲਨ ਅਨੁਕੂਲ ਕਰੋਰੰਗ ਗੋਲਾਈ ਅਨੁਕੂਲ ਕਰੋਰੰਗ ਪੱਧਰ ਅਨੁਕੂਲ ਕਰੋਚਮਕੀਲਾਪਨ-ਅਸਮਾਨਤਾ ਨੂੰ ਅਨੁਕੂਲ ਕਰੋਰੰਗ ਸੰਤੁਲਨ ਅਨੁਕੂਲ ਕਰੋਰੰਗ ਗੋਲਾਈ ਅਨੁਕੂਲ ਕਰੋਰੰਗ ਪੱਧਰ ਅਨੁਕੂਲ ਕਰੋਆਭਾ / ਚਮਕੀਲਾਪਨ / ਸਤ੍ਰਿਪਤਾ ਅਨੁਕੂਲਆਭਾ ਤੇ ਸਤ੍ਰਿਪਤ ਅਨੁਕੂਲਪੱਧਰ ਸਵੈ ਹੀ ਅਨੁਕੂਲ ਕਰੋਅਨੁਕੂਲਣਤਕਨੀਕੀ ਚੋਣਪ੍ਰਭਾਵ:ਪ੍ਰਭਾਵਿਤ ਖੇਤਰ %sਏਅਰ-ਬੁਰਸ਼ਹਵਾਈ-ਬੁਰਸ਼ ਬਦਲਣਯੋਗ ਦਬਾਉ ਨਾਲਚੋਣ ਲਈ ਐਲਫਾ(_p)ਇਕਸਾਰਇਕਸਾਰਤਾਸਾਰੇ ਚੈਨਲਸਭ ਫਾਇਲਾਂਸਭ ਫਾਇਲਾਂ (*.*)ਪੂਰੀ ਤਰ੍ਹਾਂ ਪਾਰਦਰਸ਼ੀ ਖੇਤਰ ਨੂੰ ਭਰਨ ਦੀ ਮਨਜ਼ੂਰੀ ਦਿਉਪੂਰੀ ਤਰ੍ਹਾਂ ਪਾਰਦਰਸ਼ੀ ਖੇਤਰ ਦੀ ਚੋਣ ਦੀ ਮਨਜ਼ੂਰੀ ਦਿਉਐਲਫਾਚੋਣ ਲਈ ਐਲਫਾ ਐਲਫਾ:ਸਜੀਵਤਾ(_i)ਸਹਾਰਾ ਤਰਦੀ ਚੋਣਤਰਦੀ ਪਰਤ ਨੂੰ ਜੋੜ੍ਹੋਲਟਕਦੀ ਤਰਦੀ ਚੋਣਕੋਣ:ਗੈਰ ਮੇਟੋ %sਐਟੀਲਾਈਸਿੰਗਦਿੱਖਪਰਤ ਮਖੌਟਾ ਲਾਗੂ ਕਰੋਪਰਤ ਮਖੌਟਾ ਲਾਗੂ(_M)ਮੁੱਢਲਾ-ਮੁੱਲ ਲਾਗੂ ਕਰੋਪਰਤ ਮਖੌਟਾ ਲਾਗੂਕੀ ਤੁਸੀ ਯਕੀਨਨ ਹੀ '%s' ਨੂੰ ਸੂਚੀ ਅਤੇ ਡਿਸਕ ਤੋ ਹਟਾਉਣਾ ਚਾਹੁੰਦੇ ਹੋ?ਕੀ ਤੁਸੀ ਯਕੀਨਨ ਹੀ ਨਮੂਨਾ '%s' ਨੂੰ ਸੂਚੀ ਅਤੇ ਡਿਸਕ ਤੋ ਹਟਾਉਣਾ ਚਾਹੁੰਦੇ ਹੋ ?ਜਿਵੇਂ ਕਿ ਪਸੰਦ ਵਿੱਚ(_P)ਬਿਨਾਂ ਸੰਭਾਲੇ ਚਿੱਤਰ ਨੂੰ ਬੰਦ ਕਰਨ ਤੋ ਪਹਿਲ਼ਾਂ ਪੁੱਛੋ।ਅਕਾਰ ਅਨੁਪਾਤ:ਅਕਾਰ ਅਨੁਪਾਤ:ਲੇਖਕ:ਸਵੈਸਰਗਰਮ ਚਿੱਤਰ ਸਵੈ-ਸੰਭਾਲ(_F)ਸਵੈ ਸੁੰਘੜ੍ਹੋਚੋਣ ਨੂੰ ਸਵੈ-ਸੰਗੇੜ੍ਹੋਸਵੈ-ਅਕਾਰ ਝਰੋਖਾਸਵੈ-ਲੋਡਸਵੈਚਾਲਿਤ ਖੋਜਉਪਲੱਬਧ ਫਿਲਟਰਉਪਲੱਬਧ ਕਿਸਮਾਂ:BG ਰੰਗ ਭਰੋਪਰਕਾਸ਼ਵਾਨਤਾ-ਵੱਖਰੇਵਾਂ(_r)...ਬਫਰ(_u)ਪਿੱਠਭੂਮੀਪਿੱਠਭੂਮੀ ਰੰਗਪਿੱਠਭੂਮੀ ਰੰਗ ਨਿਰਧਾਰਿਤ ਕਰੋ:ਪਿੱਠਭੂਮੀ: %d, %d, %dਪਿੱਛੇ (ਸਹੀ)ਸਾਰੀਆਂ ਦਿੱਖ ਪਰਤਾਂ ਲਈ ਅਧਾਰ ਭਰਨ ਖੇਤਰਸਾਰੀਆ ਉਪਲੱਬਧ ਪਰਤਾਂ ਤੇ ਅਧਾਰ ਚੋਣਪਿੱਛੇਝੁੰਡਦੋ-ਧਾਰੀਕਾਲਾ ਤੇ ਚਿੱਟਾਕਾਲਾ:ਮਿਲਾਵਟ(_d)ਮਿਲਾਵਟ:ਮਿਲਾ ਜਾ ਰਿਹਾ ਹੈ...ਨੀਲਾਨੀਲਾ:ਹਾਸ਼ੀਆ(_r)...ਹਾਸ਼ੀਆ ਚੈਨਲਹਾਸ਼ੀਆ ਚੋਣਪਰਕਾਸ਼ਵਾਨਤਾ-ਵੱਖਰੇਵਾਂਤਤਕਰਾ ਪਰਤਾਂ ਤੇ ਚਮਕੀਲਾਪਨ-ਅਸਮਾਨਤਾ ਕੰਮ ਨਹੀ ਕਰਦੇ ਹਨ।ਬੁਰਸ਼ਬੁਰਸ਼ ਸੋਧਕਬੁਰਸ਼ ਫੋਲਡਰਬੁਰਸ਼ UIਬੁਰਸ਼:ਬੁਰਸ਼ਬੁਰਸ਼ ਮੇਨੂਬਾਲਟੀ ਨਾਲ ਭਰੋਬਫਰਬਫ਼ਰ ਮੇਨੂਲਿਖੋਉੱਚਾਐਕਸ਼ਟੇਸ਼ਨ ਨਾਲCMYKਇਕਸਾਰ(_a)...ਰੰਗ ਚੋਣਕਾਰ(_o)ਕਾਲਮ:ਸੰਯੋਗ(_o)ਮਾਨੀਟਰ ਰੈਜ਼ੋਲੇਸ਼ਨ ਨਾਲ ਇਕਸਾਰ%s ਨੂੰ ਪੁਨਰ-ਪ੍ਰਾਪਤ ਨਹੀ ਕੀਤਾ ਜਾ ਸਕਦਾ ਖਾਕਾ ਅਕਾਰ...ਰੱਦਗਾਈਡ ਰੱਦਫੋਲਡਰ '%s' ਬਣਾਇਆ ਨਹੀ ਜਾ ਸਕਿਆ ਹੈ: %sਦਰਿਸ਼ ਨਹੀ ਬਣ ਸਕਿਆ${%s} ਫੈਲਾ ਨਹੀ ਸਕਦਾਪਰਤ ਨੂੰ ਐਲਫਾ ਬਿਨਾਂ ਉਠਾਇਆ ਜਾ ਸਕਦਾਸੰਭਾਲਿਆ ਨਹੀ ਜਾ ਸਕਦਾ ਹੈ। ਕੁਝ ਨਹੀ ਸੰਭਾਲਿਆ ਗਿਆ।ਖਾਲੀ ਚੈਨਲ ਨੂੰ ਦਬਾਇਆ ਨਹੀ ਜਾ ਸਕਦਾ ਖਾਲੀ ਰਸਤੇ ਨੂੰ ਛੋਹਿਆ ਨਹੀ ਜਾ ਸਕਦਾਕੈਨਵਸ ਅਕਾਰਕੇਦਰੀ X:ਕੇਦਰੀ X:ਕੇਦਰੀਪਿੱਠਭੂਮੀ ਰੰਗ ਤਬਦੀਲ ਕਰੋਰੰਗ-ਖਾਕੇ ਇਕਾਈ ਤਬਦੀਲਮੁੱਖ-ਭੂਮੀ ਰੰਗ ਤਬਦੀਲਚਿੱਤਰ ਦੀ ਰੈਜ਼ੋਲੇਸ਼ਨ ਤਬਦੀਲ ਕਰੋਚਿੱਤਰ ਦੀ ਇਕਾਈ ਤਬਦੀਲ ਕਰੋਛਾਪਣ ਅਕਾਰ ਤਬਦੀਲਮੌਜੂਦਾ ਪਰਤ ਜਾਂ ਮਾਰਗ ਤਬਦੀਲਗਰਿੱਡ ਦਾ ਪਿੱਠਭੂਮੀ ਰੰਗ ਤਬਦੀਲਗਰਿੱਡ ਦਾ ਮੁੱਖ-ਭੂਮੀ-ਰੰਗ ਤਬਦੀਲਤਤਕਰਾ ਰੰਗ-ਪੱਟੀ ਤਬਦੀਲਮੌਜੂਦਾ ਪਰਤ ਜਾਂ ਚੋਣ ਦਾ ਅਵਲੋਕਣ ਤਬਦੀਲ ਸ਼ਾਰਟਕੱਟ ਬਦਲਣਾ ਅਸਫਲ ਹੈ।ਚੈਨਲਚੈਨਲ ਗੁਣਚੈਨਲ ਨਾਂ:ਚੈਨਲ ਨੂੰ ਹੋਰ ਹੇਠਾਂ ਨਹੀ ਕੀਤਾ ਜਾ ਸਕਦਾ ਹੈ।ਚੈਨਲ ਨੂੰ ਹੋਰ ਉਭਾਰਿਆ ਨਹੀ ਜਾ ਸਕਦਾ ਹੈ।ਚੈਨਲ ਰੰਗਚੈਨਲ ਪਹਿਲਾਂ ਹੀ ਹੇਠਾਂ ਹੈਚੈਨਲ ਪਹਿਲਾਂ ਹੀ ਸਭ ਤੋ ਉਪੱਰ ਹੈਚੋਣ ਲਈ ਚੈਨਲ(_c)ਚੋਣ ਲਈ ਚੈਨਲਚੋਣ ਲਈ ਚੈਨਲਚੈਨਲ:ਚੈਨਲਚੈਨਲ ਮੇਨੂਅਕਾਰ ਜਾਂਚ(_s):ਛੋਹ ਸ਼ੈਲੀ ਚੁਣੋਚੱਕਰਸਾਫ਼ਸਾਫ਼ਸਾਫ ਚੈਨਲਵਾਪਿਸ ਦਾ ਅਤੀਤਸਭ ਪਾਠ ਸਾਫ਼ਗਲਤੀ ਸਾਫ਼ਮੁਡ਼ ਕਰੋ ਅਤੀਤ ਸਾਫ..ਉਪਰ ਦਿੱਤੀਆਂ ਵਿਵਸਥਾਵਾਂ ਨੂੰ ਮਨਜ਼ੂਰ ਕਰਨ ਲਈ "ਜਾਰੀ ਰੱਖੋ" ਨੂੰ ਦਬਾਉ।ਆਪਣਾ ਨਿੱਜੀ ਜੈਮਪ ਫੋਲਡਰ ਬਣਾਉਣ ਲਈ "ਜਾਰੀ ਰੱਖੋ" ਦਬਾਓ।ਜੈਮਪ ਉਪਭੋਗੀ ਇੰਸਟਾਲੇਸ਼ਨ ਨਾਲ ਜਾਰੀ ਰੱਖਣ ਲਈ "ਜਾਰੀ ਰੱਖੋ" ਦਬਾਓ।ਉਪਭੋਗੀ ਇੰਸਟਾਲੇਸ਼ਨ ਕਰਨ ਲਈ "ਜਾਰੀ ਰੱਖੋ" ਨੂੰ ਦਬਾਓ।ਇਸ ਸਹਾਰੇ ਨੂੰ ਚੁਣੇ ਅਖੀਰੀ-ਬਿੰਦੂਆਂ ਨਾਲ ਜੋਡ਼ਨ ਲਈ ਦਬਾਉ।ਨਵਾਂ ਸਹਾਰਾ ਬਣਾਉਣ ਲਈ ਦਬਾਉ (SHIFT ਨਾਲ ਕੋਸ਼ਿਸ ਕਰੋ)ਰਸਤੇ ਵਿੱਚ ਨਵਾਂ ਭਾਗ ਬਣਾਉਣ ਲਈ ਦਬਾਉ।ਨਵਾਂ ਮਾਰਗ ਬਣਾਉਣ ਲਈ ਦਬਾਉਦਿੱਖ ਵੇਖਣ ਲਈ ਦਬਾਓਇਸ ਸਹਾਰੇ ਨੂੰ ਹਟਾਉਣ ਲਈ ਦਬਾਉਇਸ ਰਸਤੇ ਵਿੱਚ ਸਹਾਰੇ ਨੂੰ ਜੋਡ਼ਨ ਲਈ ਦਬਾਉ (SHIFT ਨਾਲ ਕੋਸ਼ਿਸ ਕਰੋ)ਇਸ ਨੋਡ ਨੂੰ ਕੋਣੀ ਨਹੀ ਬਣਾਇਆ ਜਾ ਸਕਦਾ ਹੈ।ਮਾਰਗ ਖੋਲਣ ਲਈ ਦਬਾਉਸੋਧ ਲਈ ਮਾਰਗ ਚੁਣਨ ਲਈ ਦਬਾਉਨਮੂਨਾ ਦਾ ਨਵੀਨੀਕਰਨ ਲਈ ਦਬਾਉ +%s ਦਬਾਉ ਨਵੀਨੀਕਰਨ ਲਈ ਭਾਵੇ ਕਿ ਨਮੂਨਾ ਪਹਿਲਾਂ ਹੀ ਨਵੀਨ ਹੋਵੇ ਗੋਲਾਈ ਦੀ ਸਥਿਤੀ ਤਬਦੀਲ ਕਰਨ ਲਈ ਦਬਾਉ-ਚੁੱਕੋ (SHIFT: ਸਮਮਿਤੀ)ਸਹਾਰੇ ਨੂੰ ਏਧਰ-ਓਧਰ ਕਰਨ ਲਈ ਦਬਾਉ-ਚੁੱਕੋ ਸਹਾਰਿਆਂ ਨੂੰ ਏਧਰ-ਓਧਰ ਕਰਨ ਲਈ ਦਬਾਉ-ਚੁੱਕੋ ਭਾਗ ਨੂੰ ਪਾਸੇ ਭੇਜਣ ਲਈ ਦਬਾਉ-ਚੁੱਕੋ (SHIFT ਨਾਲ ਕੋਸ਼ਿਸ ਕਰੋ)ਹੈਡਲਰ ਨੂੰ ਘੁੰਮਾੳਣ ਲਈ ਦਬਾਉ-ਚੁੱਕੋ (SHIFT ਨਾਲ ਕੋਸ਼ਿਸ ਕਰੋ)ਮਾਰਗ ਪਾਸੇ ਭੇਜਣ ਲਈ ਦਬਾਉ-ਚੁੱਕੋਦਬਾਉ: ਚੁਣੋ ਦਬਾਉ: ਚੁਣੋ ਚੁਕੋ: ਹਿਲਾਉਕਲਿੱਪ ਨਤੀਜਾਕਲਿੱਪਬੋਰਡਚੁੱਕਿਆ ਚਿੱਤਰਸਮਰੂਪ%s ਬੰਦਸਭ ਟੈਬਾਂ ਬੰਦਕੀ ਸਭ ਟੈਬ ਬੰਦ ਕਰਨੀਆਂ ਹਨ?ਇਹ ਟੈਬ ਹਟਾਉਨਕਲ ਮਾਰਗ(_p)ਰੰਗ(_r)ਰੰਗਰੰਗ ਸਾਵਾਂਰੰਗ-ਵੇਖਾਉਣ ਲਈ ਫਿਲਟਰਰੰਗ ਚੋਣਕਾਰਰੰਗ ਚੋਣਕਾਰ ਜਾਣਕਾਰੀਰੰਗ ਸਾਵਾਂ(_B)...ਰੰਗ ਥਰਾਹਰਟ(_d):ਰੰਗ ਮੇਟਾਉਰੰਗ ਤਤਕਰਾ:ਰੰਗ:ਰੰਗ-ਖਾਕਾ(_m)ਰੰਗ ਥਾਂ(_s):ਰੰਗਤ(_z)...ਰੰਗਤਚਿੱਤਰ ਨੂੰ ਰੰਗੀਨ ਕਰੋਚਿੱਤਰ ਨੂੰ ਰੰਗੀਨ ਕਰੋਰੰਗ-ਖਾਕਾਰੰਗ-ਖਾਕਾ ਸੰਪਾਦਕਰੰਗ-ਖਾਕਾ ਮੇਨੂਕਾਲਮ:ਟਿੱਪਣੀ:ਟਿੱਪਣੀਅਸਮਾਨਤਾ:ਰੰਗ-ਵੇਖਾਉਣ ਲਈ ਫਿਲਟਰ ਦੀ ਸੰਰਚਨਾਵਾਧੂ ਇੰਪੁੱਟ ਜੰਤਰ ਸੰਰਚਨਾ(_x)...ਗਰਿੱਡ ਸੰਰਚਨਾ...ਗਰਿੱਡ ਸੰਰਚਨਾਚਿੱਤਰ ਗਰਿੱਡ ਸੰਰਚਨਾਕੀ-ਬੋਰਡ ਸ਼ਾਰਟਕੱਟ ਸੰਰਚਨਾਕੀ-ਬੋਰਡ ਸ਼ਾਰਟਕੱਟ ਸੰਰਚਨਾ(_K)...ਚੁਣੇ ਫਿਲਟਰ ਦੀ ਸੰਰਚਨਾਚੁਣੇ ਫਿਲਟਰ ਦੀ ਸੰਰਚਨਾ: %sਚਿੱਤਰ ਅਕਾਰ ਦੀ ਪੁਸ਼ਟੀਪੈਮਾਨਾ ਪੁਸ਼ਟੀਪਾਠ ਸੋਧ ਦੀ ਪੁਸ਼ਟੀਨਾ-ਸੰਭਾਲੇ ਚਿੱਤਰ ਨੂੰ ਬੰਦ ਕਰਨ ਸਮੇਂ ਪੁਸ਼ਟੀ(_v)ਸ਼ਾਰਟਕੱਟ ਟਕਰਾਸ਼ੰਕੂਕਾਰ (ਅਸਮਮਿਤੀ)ਸ਼ੰਕੂਕਾਰ (ਸਮਮਿਤੀ)ਛੋਹਾਂ ਨੂੰ ਜੋੜ੍ਹੋਸਥਿਰਸੀਮਾਵਾਂਪਾਠਜਾਰੀ ਰੱਖੋਯੋਗਦਾਨ ਰਿਹਾਤਬਦੀਲਕਿਨਾਰੇ ਵਿੱਚ ਤਬਦੀਲ ਕਰੋਚਿੱਤਰ ਨੂੰ ਗਰੇ-ਪੈਮਾਨਾ ਵਿੱਚ ਤਬਦੀਲ ਕਰੋਚਿੱਤਰ ਨੂੰ ਤਤਕਰਾ ਵਿੱਚ ਤਬਦੀਲਚਿੱਤਰ ਨੂੰ RGB ਵਿੱਚ ਤਬਦੀਲ਼ ਕਰੋਚਿੱਤਰ ਤਬਦੀਲਤਤਕਰੇ ਵਿੱਚ ਤਬਦੀਲ ਕਰੋ (ਪਗ ੨)...ਤਤਕਰੇ ਵਿੱਚ ਤਬਦੀਲ (ਪੱਧਰ ੩)...ਤਤਕਰਾ ਵਿੱਚ ਤਬਦੀਲ...ਦਿੱਖ ਨਕਲ(_V)ਫਾਇਲ '%s' ਨੂੰ '%s' ਤੋ ਨਕਲ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ...ਹੱਕ ਰਾਖਵੇ ਹਨ:ਨਿਕਾਰਾ ਭਾਗ %d ਢਾਂਲਵਾ ਫਾਇਲ '%s' ਵਿੱਚ'%s' ਨੂੰ ਬਣਾਇਆ ਨਹੀ ਜਾ ਸਕਿਆ ਹੈ: %s'%s' ਲਈ ਆਰਜ਼ੀ ਫਾਇਲ ਨਹੀ ਬਣਾ ਸਕਿਆ: %s'%s' ਨੂੰ ਹਟਾਇਆ ਨਹੀ ਜਾ ਸਕਿਆ: %sਜੈਮਪ ਸਹਾਇਤਾ ਝਲਕਾਰਾ ਲੱਭਿਆ ਨਹੀ ਜਾ ਸਕਿਆ ਹੈ। '%s' ਨੂੰ ਪੜ੍ਹਨ ਲਈ ਖੋਲਣਾ ਅਸਫਲ: %s '%s' ਨੂੰ ਲਿਖਣ ਲਈ ਖੋਲਣਾ ਅਸਫਲ: %s %d ਬਾਈਟ'%s' ਤੋ ਪੜ੍ਹੇ ਨਹੀ ਜਾ ਸਕੇ ਹਨ: %sXCF ਫਾਇਲ ਵਿੱਚ ਲੱਭਿਆ ਜਾ ਸਕਿਆ: %sਜੈਮਪ ਸਹਾਇਤਾ ਝਲਕਾਰਾ ਪਲੱਗਿੰਨ ਨੂੰ ਸ਼ੁਰੂ ਨਹੀ ਕੀਤਾ ਜਾ ਸਕਦਾ ਹੈ।ਗਿਣਤੀ:ਪਰਤ ਫੈਲਾਓ(_o)ਨਵਾਂ ਤਰਦਾ ਬਣਾਓ(_k)ਨਵਾਂ ਨਮੂਨਾ ਬਣਾਉਨਵਾਂ ਚਿੱਤਰ ਬਣਾਉਨਵੀ ਪਰਤ ਬਣਾਉਨਵਾਂ ਨਮੂਨਾ ਬਣਾਉਇਸ ਚਿੱਤਰ ਲਈ ਨਵਾਂ ਦਰਿਸ਼ ਬਣਾਉਚੁਣੇ ਨਮੂਨੇ ਤੋ ਨਵਾਂ ਚਿੱਤਰ ਬਣਾਉ ਨਵਾਂ ਨਮੂਨਾ ਬਣਾਉਚਿੱਤਰ ਜਾਂ ਤਸਵੀਰਾਂ ਬਣਾਉ ਜਾਂ ਸੋਧੋਮਾਰਗ ਬਣਾਉ ਤੇ ਸੋਧੋਪਾਠ ਤੋਂ ਮਾਰਗ ਬਣਾਓਮਾਰਗ ਤੋ ਚੋਣ ਬਣਾਓਨਮੂਨਾ ਤਿਆਰ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ ...ਫੋਲਡਰ '%s' ਬਣਾਇਆ ਜਾ ਰਿਹਾ ਹੈ...ਫੈਲਾਉਫੈਲਾਉ ਤੇ ਮੁਡ਼-ਅਕਾਰਫੈਲਾਉ ਤੇ ਮੁਡ਼-ਅਕਾਰ ਜਾਣਕਾਰੀਚਿੱਤਰ ਫੈਲਾਉਚਿੱਤਰ ਫੈਲਾਓਚਿੱਤਰ ਨੂੰ ਫੈਲਾਉ ਤੇ ਮੁਡ਼-ਅਕਾਰ ਦਿਉਫੈਲਾਉ:ਕਰਾਸਹੇਅਰ ਹੀਕੱਟੋਕੱਟਿਆ ਨਾਂ...ਘਣਕਾਰ(ਉੱਤਮ)ਮੌਜੂਦਾ ਸਥਿਤੀ(_S)ਮੌਜੂਦਾ ਉਚਾਈ:ਸਿਰਫ਼ ਮੌਜੂਦਾ ਪਰਤ ਲਈਮੌਜੂਦਾ ਸਥਿਤੀਮੌਜੂਦਾ ਚੌਡ਼ਾਈ:ਕਰਸਰਕਰਸਰ ਮੋਡ(_m):ਕਰਸਰ ਪੇਸ਼ਕਾਰੀ(_n):ਗੋਲਾਈ ਕਿਸਮਚਾਪਾਂਤਤਕਰਾ ਪਰਤਾਂ ਲਈ ਗੋਲਾਈ ਨੂੰ ਅਨੁਕੂਲ ਨਹੀ ਕੀਤਾ ਜਾ ਸਕਦਾ ਹੈ।ਸੋਧਸੋਧ ਰੰਗਢਾਲਵਾਂ ਸੋਧਸੋਧ ਚਿਣਿਆ ਰੰਗ(_a):ਕੱਟੋਨੀਲਾਯਰਕਾਨ(ਨੀਲਾ):ਨਕਲੀ ਬੁਰਸ਼(_u)ਨਕਲੀ ਚੈਨਲਨਕਲੀ ਢਾਲੂਨਕਲੀ ਪਰਤਨਕਲੀ ਰੰਗ-ਪੱਟੀ(_u)ਨਕਲੀ ਮਾਰਗ(_u)ਨਕਲੀ ਤਰਤੀਬ(_u)ਨਕਲੀ ਨਮੂਨਾ(_u)...ਗੂੜ੍ਹੇ ਜਾਂਚ ਰੰਗਸਿਰਫ ਹਨੇਰਾਧਾਰੀਦਾਰ ਬਿੰਦੂ ਬਿੰਦੂ...ਧਾਰੀਦਾਰ ਬਿੰਦੂ...ਡੈਸ਼ ਤਰਤੀਬ:ਧਾਰੀਦਾਰਮਿਤੀ:ਡੀਬੱਗਪੂਰੇ ਪਰਦਾ ਢੰਗ ਵਿੱਚ ਮੂਲ ਸ਼ਕਲਸਧਾਰਨ ਢੰਗ ਵਿੱਚ ਮੂਲ ਸ਼ਕਲਮੂਲ ਗਰਿੱਡਮੂਲ ਚਿੱਤਰ ਗਰਿੱਡਮੂਲ ਮੁੱਢਲਾ ਮੁੱਲ(_t):ਸਹਾਰਾ ਹਟਾਉਸਹਾਰਾ ਹਟਾਓਪਰਤ ਮਖੌਟਾ ਹਟਾਓ(_k)ਪਰਤ ਮਖੌਟਾ ਹਟਾਉਇਕਾਈ ਹਟਾਉਖੰਡ ਹਟਾਉਨਮੂਨਾ ਹਟਾਉਬੁਰਸ਼ ਹਟਾਓਚੈਨਲ ਹਟਾਉਰੰਗ ਹਟਾਓਢਾਲੂ ਹਟਾਓਪਰਤ ਹਟਾਓਪਰਤ ਮਖੌਟਾ ਹਟਾਓਰੰਗ-ਪੱਟੀ ਹਟਾਓਮਾਰਗ ਹਟਾਓਤਰਤੀਬ ਹਟਾਓਸੰਭਾਲੀ ਚੋਣ ਹਟਾਉ...ਚੁਣਿਆ ਬਫਰ ਹਟਾਉਚੁਣਿਆ ਨਮੂਨਾ ਹਟਾਉਇਹ ਚਿੱਤਰ ਹਟਾਉਵੈਕਟਰ ਹਟਾਓ"%s" ਨੂੰ ਹਟਾਉਣਾ ਅਸਫਲ: %sਸੰਘਣੇ ਬਿੰਦੂਅਸਤ੍ਰਿਪਤਵਰਣਨਢਾਂਚਾਯੰਤਰ ਸਥਿਤੀਯੰਤਰਵਾਰਤਾਲਾਪਤਖਤੀ ਮੇਨੂਹੀਰਾਅੰਤਰਸਿੱਧੇ ਰੰਗਪਰਤ ਮਖੌਟਾ ਆਯੋਗਤੇਜ਼ ਮਖੌਟਾ ਆਯੋਗਪਾਠ ਜਾਣਕਾਰੀ ਰੱਦਦਰਿਸ਼ਦਰਿਸ਼ ਏਧਰ-ਓਧਰਫਿਲਟਰ ਵੇਖਾਓ(_F)...ਕਾਰਵਾਈ ਵੇਖਾਓਦਰਿਸ਼ ਕਿਸਮ:[%0.6f, %0.6f] ਦਿੱਖ ਰਿਹਾ ਹੈਘੋਲੋਦੂਰੀ:ਦੂਰੀ: %0.6fਥਰਾਹਰਟਵੰਡੋਤਾਜ਼ਾ ਉਪਭੋਗੀ ਇੰਸਟਾਲੇਸ਼ਨ ਕਰੋ(_f)ਕੀ ਤੁਸੀ ਨਿਸ਼ਚਿਤ ਹੀ ਸਭ ਫਿਲਟਰਾਂ ਨੂੰ ਮੂਲ ਹੀ ਮੁਡ਼ ਨਿਰਧਾਰਿਤ ਕਰਨਾ ਚਾਹੋਗੇ?ਕੀ ਤੁਸੀ ਨਿਸ਼ਚਿਤ ਹੀ ਸੰਦ ਚੋਣ ਨੂੰ ਮੂਲ ਹੀ ਮੁਡ਼ ਨਿਰਧਾਰਿਤ ਕਰਨਾ ਚਾਹੋਗੇ ?ਕੀ ਤੁਸੀਂ ਇਸ ਨੂੰ ਸੰਭਾਲਣ ਵਾਲੇ ਚਿੱਤਰ ਨਾਲ ਤਬਦੀਲ ਕਰਨਾ ਚਾਹੁੰਦੇ ਹੋ?ਸੰਭਾਲੋ ਨਾ(_n)ਤਰਨਯੋਗਦਸਤਾਵੇਜ਼ ਅਤੀਤ(_y)ਦਸਤਾਵੇਜ਼ ਅਤੀਤਦਸਤਾਵੇਜ਼ਦਸਤਾਵੇਜ਼ ਮੇਨੂਦੂਹਰੀ-ਧਾਰੀਦਾਰਸਹਾਰਾ ਚੁੱਕੋਸਹਾਰੇ ਚੁੱਕੋਗੋਲਾਈ ਚੁੱਕੋਹੈਡਲ ਚੁੱਕੋਮਾਰਗ ਚੁੱਕੋਚੁਕੋ: ਹਿਲਾਉਸਿਆਹੀ ਵਿੱਚ ਉਲੀਕੋਉਲੀਕਣਯੋਗਉਲੀਕਣਯੋਗ ਮੋਡਖਿੱਚਣਯੋਗ ਕਾਰਵਾਈਆਂਨਵੀ ਪਰਤ ਸੁਟੋਨਵਾਂ ਮਾਰਗ ਸੁੱਟੋਨਕਲੀ ਬੁਰਸ਼ਨਕਲੀ ਚੈਨਲਨਕਲੀ ਢਾਲੂਨਕਲ ਪਰਤਨਕਲੀ ਰੰਗ-ਪੱਟੀਨਕਲੀ ਮਾਰਗਨਕਲੀ ਤਰਤੀਬਚੁਣੇ ਨਮੂਨੇ ਦੀ ਨਕਲ ਬਣਾਉEEK: ਮੁਡ਼ ਪਹਿਲਾਂ ਨਹੀ ਕਰ ਸਕਿਆਨਿਰਯਾਤ ਮਾਰਗ(_x)...ਬਹੁਤ ਛੋਟਾ(_x)ਬਾਹੀ ਵਿਵਹਾਰਸੋਧਚੈਨਲ ਗੁਣ ਸੋਧਚੈਨਲ ਰੰਗ ਸੋਧਰੰਗ ਦੀ ਰੰਗ-ਪੱਟੀ ਵਿੱਚ ਇੰਦਰਾਜ਼ ਦੀ ਸੋਧਰੰਗ-ਪੱਟੀ ਇੰਦਰਾਜ਼ ਵਿੱਚ ਸੋਧਪਰਤ ਮਖੌਟਾ ਸੋਧਸੋਧ ਮੋਡਰੰਗ-ਪੱਟੀ ਵਿੱਚ ਇੰਦਰਾਜ਼ ਦੀ ਸੋਧਮਾਰਗ ਗੁਣ ਦੀ ਸੋਧਤੇਜ਼ ਮਖੌਟਾ ਗੁਣ ਸੋਧਤੇਜ਼ ਮਖੌਟਾ ਰੰਗ ਸੋਧਨਮੂਨਾ ਸੋਧਬੁਰਸ਼ ਸੋਧ...ਚੈਨਲ ਗੁਣ ਸੋਧਰੰਗ ਸੋਧਰੰਗ-ਪੱਟੀ ਇੰਦਰਾਜ਼ ਸੋਧ #%dਢਾਲਵਾਂ ਸੋਧ...ਪਰਤ ਗੁਣ ਦੀ ਸੋਧਰੰਗ-ਪੱਟੀ ਸੋਧਮਾਰਗ ਗੁਣ ਸੋਧਤਰਤੀਬ ਸੋਧਕਾਰਵਾਈ ਸੋਧਚੁਣਿਆ ਨਮੂਨਾ ਸੋਧੋਅੰਡਾਕਾਰ ਚੋਣਖਾਲੀ ਚੈਨਲਖਾਲੀ ਪਰਤਖਾਲ਼ੀ ਮਾਰਗਖਾਲੀ ਪਾਠ ਪਰਤਵਾਤਾਵਰਣ ਫਾਇਲ %s ਵਿੱਚ ਵੇਰੀਬਲ ਨਾਂ ਖਾਲੀ ਹੈਤੇਜ਼ ਮਖੌਟਾ ਯੋਗਪਾਰਦਰਸ਼ਤਾ ਨੂੰ ਮੇਟਾਉਣਾ ਯੋਗ(_t)ਇਹ ਕੰਟਰੋਲਰ ਯੋਗਸ਼ੁਰੂ ਵੇਲੇ ਜੈਮਪ ਸੰਕੇਤ ਨੂੰ ਵੇਖਾਉ ਯੋਗ ਕਰੋਸੰਕੇਤ ਨੂੰ ਵੇਖਾਉ ਯੋਗ ਕਰੋਵਿਸ਼ਾਲਵਿਲੀਨ ਰੰਗ-ਪੱਟੀ ਲਈ ਨਾਮ ਭਰੋਇਸ ਨਮੂਨੇ ਦਾ ਨਾਂ ਭਰੋਟਿਕਾਣਾ ਦਿਓ (URI):ਵਾਤਾਵਰਣਵਾਤਾਵਰਣ ਫੋਲਡਰਸਮਰੂਪਪਿੱਠਭੂਮੀ ਜਾਂ ਪਾਰਦਰਸ਼ਤਾ ਨੂੰ ਮੇਟਾਉਰਬਡ਼ਕੰਨਸੋਲ ਗਲਤੀ(_n)ਕੰਨਸੋਲ ਗਲਤੀਗਲਤੀ, XCF ਫਾਇਲ ਨੂੰ ਸੰਭਾਲਣ ਵਿੱਚ: %sਗਲਤੀ, '%s' ਨੂੰ ਪਾਰਸ ਕਰਨ ਦੌਰਾਨ, ਸਤਰ %d ਵਿੱਚ: %sਗਲਤੀ, '%s' ਨੂੰ ਪੜ੍ਹਨ ਦੌਰਾਨ: %sਬੁਰਸ਼ ਫਾਇਲ਼ '%s' ਨੂੰ ਪੜ੍ਹਨ ਦੌਰਾਨ ਗਲਤੀ: %sਗਲਤੀ, '%s' ਨੂੰ ਲਿਖਣ ਦੌਰਾਨ: %sਗਲਤੀ XCF ਨੂੰ ਲਿਖਣ ਵਿੱਚ: %sਗਲਤੀ, ਫਾਇਲ '%s' ਨੂੰ ਲਿਖਣ ਵਿੱਚ: %sਗਲਤੀ '%s' ਨੂੰ ਲਿਖਣ ਵਿੱਚ: %s'%s' ਲਈ ਆਰਜ਼ੀ ਫਾਇਲ ਲਿਖਣ ਵਿੱਚ ਗਲਤੀ: %s ਕੋਈ ਫਾਇਲ ਨੂੰ ਬਣਾਇਆ ਨਹੀ ਜਾ ਸਕਿਆ ਹੈ।'%s' ਲਈ ਆਰਜ਼ੀ ਫਾਇਲ ਲਿਖਣ ਵਿੱਚ ਗਲਤੀ: %s -ਅਸਲੀ ਫਾਇਲ ਨੂੰ ਛੂਹਿਆ ਨਹੀ ਜਾ ਸਕਦਾ ਹੈ।ਗਲਤੀਆਂਘਟਨਾਬਹੁਤ ਵੱਡਾ(_t)SVG ਤੇ ਭੇਜਣ ਲਈ ਰਸਤਾਪੱਖ:ਐਕਸ਼ਟੇਸ਼ਨFG ਤੋ BG (HSV ਘਡ਼ੀ ਦੀ ਦਿਸ਼ਾ ਵਿੱਚ)FG ਤੋ BG (HSV ਘਡ਼ੀ ਦੀ ਉਲਟ-ਦਿਸ਼ਾ ਵਿੱਚ)FG ਤੋ BG (HSV)FG ਤੋ BG (RGB)FG ਤੋ ਪਾਰਦਰਸ਼ੀFG/BGFG/BG ਰੰਗ'%s' ਤੋ ਰਸਤਾ ਲਿਆਉਣ ਵਿੱਚ ਅਸਫਲ: %sਫੈਂਸੀਬੁਰਸ਼ ਫਾਇਲ '%s' ਵਿੱਚ ਘਾਤਕ ਗਲਤੀ: ਫਾਇਲ ਤਬਦੀਲ ਜਾਪਦੀ ਹੈ।ਬੁਰਸ਼ ਫਾਇਲ '%s' ਵਿੱਚ ਘਾਤਕ ਗਲਤੀ: ਫਾਇਲ ਨਕਾਰਾ ਹੈ।ਬੁਰਸ਼ ਫਾਇਲ '%s' ਵਿੱਚ ਘਾਤਕ ਗਲਤੀ: ਇੱਕ ਜੈਮਪ ਬੁਰਸ਼ ਫਾਇਲ ਨਹੀ ਹੈ।ਬੁਰਸ਼ ਫਾਇਲ '%s' ਵਿੱਚ ਘਾਤਕ ਗਲਤੀ: ਅਣਪਛਾਤਾ ਜੈਮਪ ਬੁਰਸ਼ ਵਰਜਨ ਬੁਰਸ਼ ਫਾਇਲ '%s' ਵਿੱਚ ਘਾਤਕ ਗਲਤੀ: ਅਣਪਛਾਤਾ ਵਰਜਨ %d।ਬੁਰਸ਼ ਫਾਇਲ '%s' ਵਿੱਚ ਘਾਤਕ ਗਲਤੀ: ਅਣ-ਸਹਿਯੋਗੀ ਬੁਰਸ਼ ਡੂੰਘਾਈ %d।ਜੈਮਪ ਬੁਰਸ਼ GRAY ਜਾਂ RGBA ਹੋਣੇ ਜ਼ਰੂਰ ਹਨ।ਢਾਲਵਾਂ ਫਾਇਲ '%s' ਵਿੱਚ ਘਾਤਕ ਪਾਰਸ ਗਲਤੀ ਹੈ: ਫਾਇਲ ਨਕਾਰਾ ਹੈ।ਢਾਲਵਾਂ ਫਾਇਲ '%s' ਵਿੱਚ ਘਾਤਕ ਪਾਰਸ ਗਲਤੀ ਹੈ: ਇਹ ਜੈਪਮ ਢਾਲਵਾਂ ਫਾਇਲ ਨਹੀ ਹੈਰੰਗ-ਪੱਟੀ '%s' ਵਿੱਚ ਘਾਤਕ ਪਾਰਸ ਗਲਤੀ ਹੈ: ਮੈਜਿਕ ਸਿਰਲੇਖ ਗਲਤੀ ਹੈ।ਰੰਗ-ਪੱਟੀ '%s' ਵਿੱਚ ਘਾਤਕ ਪਾਰਸ ਗਲਤੀ ਹੈ: ਮੈਜਿਕ ਸਿਰਲੇਖ ਗਲਤੀ ਹੈ।ਕੀ ਇਸ ਫਾਇਲ ਨੂੰ ਡਾਸ (DOS) ਤੋ ਤਬਦੀਲ ਕਰਨ ਦੀ ਲੋਡ਼ ਹੈ ?ਰੰਗ-ਪੱਟੀ '%s' ਵਿੱਚ ਘਾਤਕ ਪਾਰਸ ਗਲਤੀ ਹੈ: ਸਤਰ %d ਵਿੱਚ ਪੜ੍ਹਨ ਦੀ ਗਲਤੀਹੋਰ ਚੈਨਲਹੋਰ ਚੋਣ ਇਸ ਨਾਲਫਾਇਲਫਾਇਲ ਖੋਲ੍ਹੋ ਤਖਤੀ(_D)ਫਾਇਲ ਕਾਰਵਾਈਆਂਫਾਇਲ ਕਿਸਮਭਰੋ ਚੈਨਲਧੁੰਦਲਾਪਨ ਭਰੋ:ਭਰਨ ਦੀ ਕਿਸਮ %sBG ਰੰਗ ਨਾਲ ਭਰੋBG ਰੰਗ ਨਾਲ ਭਰੋFG ਰੰਗ ਨਾਲ ਭਰੋਤਰਤੀਬ ਨਾਲ ਭਰੋਤਰਤੀਬ ਨਾਲ ਭਰੋਪਾਰਦਰਸ਼ਤਾ ਨਾਲ ਭਰੋਸਫੈਦ ਨਾਲ ਭਰੋFG ਰੰਗ ਨਾਲ ਭਰੋਰੰਗ ਢਾਲਵੇ ਨਾਲ ਭਰੋਰੰਗ ਜਾਂ ਤਰਤੀਬ ਨਾਲ ਭਰੋਭਰਿਆਮਿਲ-ਜੁਲਦੇ ਰੰਗ ਖੋਜੋਝਟਕਾਝਟਕਾ ਚੈਨਲਪਰਤ ਝਟਕਾਰਸਤਾ ਨੂੰ ਝਟਕੋਪਾਠ ਪਰਤ ਨੂੰ ਝਟਕੋਝਟਕਾ ਕਿਸਮ %sਖਿਤਿਜੀ ਝਟਕੋ:ਲੰਬਕਾਰੀ ਝਟਕੋ:ਚੋਣ ਜਾਂ ਚੋਣ ਨੂੰ ਝਟਕੋਤਰਦੀ ਚੋਣਪਰਤ ਲਈ ਤਰਦੀ ਚੋਣਕੇਦਰਿਤਫੋਲਡਰਫੋਲਡਰਫੋਂਟ ਫੋਲਡਰਫੋਂਟ UIਫੋਂਟਫੋਂਟ ਮੇਨੂਮੁੱਖ-ਭੂਮੀਮੁੱਖ-ਭੂਮੀ ਤੇ ਪਿੱਠਭੂਮੀ ਰੰਗ। ਕਾਲੇ-ਸਫੈਦ ਵਰਗ ਰੰਗ ਨੂੰ ਮੁਡ਼ ਨਿਰਧਾਰਿਤ ਕਰਦੇ ਹਨ।ਤੀਰ ਰੰਗ ਸੰਭਾਲਦਾ ਹੈ। ਦੋ ਵਾਰ ਦਬਾਉ ਤੇ ਰੰਗ ਚੋਣ ਤਖਤੀ ਖੁੱਲਦੀ ਹੈ।ਮੁੱਖ-ਭੂਮੀ ਰੰਗ ਨਿਰਧਾਰਿਤ ਕਰੋ:ਮੁੱਖ-ਭੂਮੀ: %d, %d, %dਮੁਕਤ ਚੋਣਹੱਥ ਨਾਲਜੈਮਪਜੈਮਪ ਵਿਸਥਾਰਜੈਮਪ ਸੁਨੇਹਾਗਨੋਮ ਕਾਰਜਕੁਸ਼ਤਾ ਜੈਮਪ ਪਲੱਗ-ਇਨਜੈਮਪ ਸ਼ੁਰੂਆਤਜੈਮਪ ਪਾਠ ਸੋਧਕਜੈਮਪ - ਅੱਜ ਦਾ ਇਸ਼ਾਰਾਜੈਮਪ ਉਪਭੋਗੀ ਇੰਸਟਾਲੇਸ਼ਨਜੈਮਪ XCF ਚਿੱਤਰਜੈਮਪ ਗਰਾਫਿਕਲ ਯੂਜਰ ਇੰਟਰਫੇਸ਼ ਆਰੰਭ ਨਹੀ ਕਰ ਸਕਿਆ ਹੈ। +ਅਸਲੀ ਫਾਇਲ ਨੂੰ ਛੂਹਿਆ ਨਹੀ ਜਾ ਸਕਦਾ ਹੈ।ਗਲਤੀਆਂਘਟਨਾਬਹੁਤ ਵੱਡਾ(_t)ਲੋੜ ਅਨੁਸਾਰ ਫੈਲੇSVG ਤੇ ਭੇਜਣ ਲਈ ਮਾਰਗਇਸ ਚਿੱਤਰ ਤੋਂ ਸਭ ਮਾਰਗ ਨਿਰਯਾਤਸਰਗਰਮ ਮਾਰਗ ਆਯਾਤਪੱਖ:ਵਾਧੂ ਇੰਪੁੱਟ ਜੰਤਰਐਕਸ਼ਟੇਸ਼ਨFG ਰੰਗ ਭਰੋFG ਤੋ BG (HSV ਘਡ਼ੀ ਦੀ ਦਿਸ਼ਾ ਵਿੱਚ)FG ਤੋ BG (HSV ਘਡ਼ੀ ਦੀ ਉਲਟ-ਦਿਸ਼ਾ ਵਿੱਚ)FG ਤੋ BG (HSV)FG ਤੋ BG (RGB)FG ਤੋ ਪਾਰਦਰਸ਼ੀFG ਤੋ ਪਾਰਦਰਸ਼ੀFG/BGFG/BG ਰੰਗFS ਤੋ ਪਰਤਫਿੱਕਾ ਕਰੋ'%s' ਤੋਂ ਢਾਲੂ ਲਿਆਉਣ ਵਿੱਚ ਅਸਫਲ: %s'%s' ਤੋ ਮਾਰਗ ਲਿਆਉਣ ਵਿੱਚ ਅਸਫਲ: %sਫੈਂਸੀਬੁਰਸ਼ ਫਾਇਲ '%s' ਵਿੱਚ ਘਾਤਕ ਗਲਤੀ: ਬਾਇਟ = 0ਬੁਰਸ਼ ਫਾਇਲ '%s' ਵਿੱਚ ਘਾਤਕ ਗਲਤੀ: ਫਾਇਲ ਤਬਦੀਲ ਜਾਪਦੀ ਹੈ।ਬੁਰਸ਼ ਫਾਇਲ '%s' ਵਿੱਚ ਘਾਤਕ ਗਲਤੀ: ਫਾਇਲ ਨਕਾਰਾ ਹੈ।ਬੁਰਸ਼ ਫਾਇਲ '%s' ਵਿੱਚ ਘਾਤਕ ਗਲਤੀ: ਉਚਾਈ = 0ਬੁਰਸ਼ ਫਾਇਲ '%s' ਵਿੱਚ ਘਾਤਕ ਗਲਤੀ: ਇੱਕ ਜੈਮਪ ਬੁਰਸ਼ ਫਾਇਲ ਨਹੀ ਹੈ।ਬੁਰਸ਼ ਫਾਇਲ '%s' ਵਿੱਚ ਘਾਤਕ ਗਲਤੀ: ਅਣਪਛਾਤਾ ਜੈਮਪ ਬੁਰਸ਼ ਰੂਪ ਹੈ।ਬੁਰਸ਼ ਫਾਇਲ '%s' ਵਿੱਚ ਘਾਤਕ ਗਲਤੀ: ਅਣਪਛਾਤਾ ਜੈਮਪ ਬੁਰਸ਼ ਵਰਜਨ ਬੁਰਸ਼ ਫਾਇਲ '%s' ਵਿੱਚ ਘਾਤਕ ਗਲਤੀ: ਅਣਪਛਾਤਾ ਵਰਜਨ %d।ਬੁਰਸ਼ ਫਾਇਲ '%s' ਵਿੱਚ ਘਾਤਕ ਗਲਤੀ: ਅਣ-ਸਹਿਯੋਗੀ ਬੁਰਸ਼ ਡੂੰਘਾਈ %d।ਜੈਮਪ ਬੁਰਸ਼ GRAY ਜਾਂ RGBA ਹੋਣੇ ਜ਼ਰੂਰ ਹਨ।ਬੁਰਸ਼ ਫਾਇਲ '%s' ਵਿੱਚ ਘਾਤਕ ਗਲਤੀ: ਚੌੜਾਈ = 0ਢਾਲਵਾਂ ਫਾਇਲ '%s' ਵਿੱਚ ਘਾਤਕ ਪਾਰਸ ਗਲਤੀ ਹੈ: ਫਾਇਲ ਨਕਾਰਾ ਹੈ।ਢਾਲਵਾਂ ਫਾਇਲ '%s' ਵਿੱਚ ਘਾਤਕ ਪਾਰਸ ਗਲਤੀ ਹੈ: ਇਹ ਜੈਪਮ ਢਾਲਵਾਂ ਫਾਇਲ ਨਹੀ ਹੈਰੰਗ-ਪੱਟੀ '%s' ਵਿੱਚ ਘਾਤਕ ਪਾਰਸ ਗਲਤੀ ਹੈ: ਮੈਜਿਕ ਸਿਰਲੇਖ ਗਲਤੀ ਹੈ।ਰੰਗ-ਪੱਟੀ '%s' ਵਿੱਚ ਘਾਤਕ ਪਾਰਸ ਗਲਤੀ ਹੈ: ਮੈਜਿਕ ਸਿਰਲੇਖ ਗਲਤੀ ਹੈ।ਕੀ ਇਸ ਫਾਇਲ ਨੂੰ ਡਾਸ (DOS) ਤੋ ਤਬਦੀਲ ਕਰਨ ਦੀ ਲੋਡ਼ ਹੈ ?ਰੰਗ-ਪੱਟੀ '%s' ਵਿੱਚ ਘਾਤਕ ਪਾਰਸ ਗਲਤੀ ਹੈ: ਸਤਰ %d ਵਿੱਚ ਪੜ੍ਹਨ ਦੀ ਗਲਤੀਹੋਰ ਚੈਨਲਪਤਲੇ ਕਿਨਾਰੇਹੋਰ ਚੋਣ ਇਸ ਨਾਲਫਾਇਲਫਾਇਲ ਖੋਲ੍ਹੋ ਤਖਤੀ(_D)ਫਾਇਲ ਕਾਰਵਾਈਆਂਫਾਇਲ ਕਿਸਮਫਾਇਲ ਮੌਜੂਦਫਾਇਲ ਇਕਸਾਰ ਨਹੀਂ ਰਹੀਭਰੋ ਚੈਨਲਧੁੰਦਲਾਪਨ ਭਰੋ:ਭਰਨ ਦੀ ਕਿਸਮ %sਮਿਲ-ਜੁਲਦੇ ਰੰਗ ਭਰੋਪਾਰਦਰਸ਼ੀ ਖੇਤਰ ਭਰੋਸਭ ਚੋਣ ਭਰੋBG ਰੰਗ ਨਾਲ ਭਰੋBG ਰੰਗ ਨਾਲ ਭਰੋFG ਰੰਗ ਨਾਲ ਭਰੋਤਰਤੀਬ ਨਾਲ ਭਰੋਤਰਤੀਬ ਨਾਲ ਭਰੋਪਾਰਦਰਸ਼ਤਾ ਨਾਲ ਭਰੋਸਫੈਦ ਨਾਲ ਭਰੋFG ਰੰਗ ਨਾਲ ਭਰੋਪਿੱਠਭੂਮੀ ਰੰਗ ਨਾਲ ਭਰੋ(_b)ਰੰਗ ਢਾਲਵੇ ਨਾਲ ਭਰੋਰੰਗ ਜਾਂ ਤਰਤੀਬ ਨਾਲ ਭਰੋਭਰਿਆਫਿਲਟਰ(_r)ਅੰਤ ਵਿੱਚ, ਪਰਤ ਮਿਲਾਨ ਹੋਵੇ:ਮਿਲ-ਜੁਲਦੇ ਰੰਗ ਖੋਜੋਚਿੱਤਰ ਝਰੋਖੇ ਦੇ ਅਨੁਕੂਲਚਿੱਤਰ ਝਰੋਖੇ ਵਿੱਚ ਅਨੁਕੂਲਚਿੱਤਰ ਝਰੋਖੇ ਦੇ ਅਨੁਕੂਲਝਰੋਖੇ ਦੇ ਅਨੁਕੂਲਨਿਸ਼ਚਿਤ ਅਕਾਰ ਅਨੁਪਾਤਨਿਸ਼ਚਿਤ ਅਕਾਰਝਟਕਾਝਟਕਾ ਚੈਨਲਪਰਤ ਝਟਕਾਮਾਰਗ ਨੂੰ ਝਟਕੋਪਾਠ ਪਰਤ ਨੂੰ ਝਟਕੋਝਟਕਾ ਕਿਸਮ %sਖਿਤਿਜੀ ਝਟਕੋ:ਲੰਬਕਾਰੀ ਝਟਕੋ:ਚਿੱਤਰ ਝਟਕੋਚੋਣ ਜਾਂ ਚੋਣ ਨੂੰ ਝਟਕੋਝਟਕਾ...ਤਰਦੀ ਚੋਣਤਰਦੀ ਚੋਣਤਰਦੀ ਪਰਤਤਰਦੀ ਚੋਣ +(%s)ਪਰਤ ਲਈ ਤਰਦੀ ਚੋਣਪਰਤ ਲਈ ਤਰਦੀ ਚੋਣਤਰਦੀ ਚੋਣਕੇਦਰਿਤਫੋਲਡਰਫੋਲਡਰਫੋਂਟ ਫੋਲਡਰਫੋਂਟ UIਫੋਂਟ:ਫੋਂਟਫੋਂਟ ਮੇਨੂਠੀਕ ਜੈਮਪ ਇੰਸਟਾਲੇਸ਼ਨ ਲਈ, ਫੋਲਡਰ '%s' ਬਣਾਉਣ ਦੀ ਲੋੜ ਹੈ।ਸਵੈ-ਸੰਕੇਤ ਲਈ ਮਜਬੂਰਮੁੱਖ-ਭੂਮੀਮੁੱਖ-ਭੂਮੀ ਤੇ ਪਿੱਠਭੂਮੀ ਰੰਗ। ਕਾਲੇ-ਸਫੈਦ ਵਰਗ ਰੰਗ ਨੂੰ ਮੁਡ਼ ਨਿਰਧਾਰਿਤ ਕਰਦੇ ਹਨ।ਤੀਰ ਰੰਗ ਸੰਭਾਲਦਾ ਹੈ। ਦੋ ਵਾਰ ਦਬਾਉ ਤੇ ਰੰਗ ਚੋਣ ਤਖਤੀ ਖੁੱਲਦੀ ਹੈ।ਮੁੱਖ-ਭੂਮੀ ਰੰਗਮੁੱਖ-ਭੂਮੀ ਰੰਗ ਨਿਰਧਾਰਿਤ ਕਰੋ:ਮੁੱਖ-ਭੂਮੀ: %d, %d, %dਅੱਗੇ (ਮੂਲ਼)ਮਾਰਗ ਤੋਂ(_o)ਮੁਕਤ ਚੋਣਮੁਕਤ ਚੋਣਹੱਥ ਨਾਲਸਰੂਪ ਤੋਂ(_T)ਝਰੋਖਾ ਸਿਸਟਮ (ਮੌਜੂਦਾ %d x %d ਡੀਪੀਆਈ) ਤੋਂ(_w)ਖੱਬੇ ਤੋਂ ਸੱਜੇਸੱਜੇ ਤੋਂ ਖੱਬੇਚੋਣ ਤੋਂਸਰੂਪ ਤੋਂਮੁਕਤ ਚੋਣ(_z)ਪੂਰੇ ਪਰਦੇ ਤੇ(_e)ਜੈਮਪਜੈਮਪ ਵਿਸਥਾਰਜੈਮਪ ਸੁਨੇਹਾਗਨੋਮ ਕਾਰਜਕੁਸ਼ਤਾ ਜੈਮਪ ਪਲੱਗਿੰਨਜੈਮਪ ਸ਼ੁਰੂਆਤਜੈਮਪ ਪਾਠ ਸੋਧਕਜੈਮਪ - ਅੱਜ ਦਾ ਇਸ਼ਾਰਾਜੈਮਪ ਉਪਭੋਗੀ ਇੰਸਟਾਲੇਸ਼ਨਜੈਮਪ XCF ਚਿੱਤਰਜੈਮਪ ਗਰਾਫਿਕਲ ਯੂਜਰ ਇੰਟਰਫੇਸ਼ ਆਰੰਭ ਨਹੀ ਕਰ ਸਕਿਆ ਹੈ। ਜਾਂਚ ਲਵੋ ਕਿ ਤੁਹਾਡਾ ਦਰਿਸ਼ ਨਿਰਧਾਰਨ ਠੀਕ ਨਿਸ਼ਚਿਤ ਕੀਤਾ ਹੈ।ਜੈਮਪ ਸਹਾਇਤਾ ਝਲਕਾਰਾਜੈਮਪ ਮੌਜੂਦਾ ਉਪਭੋਗਤਾ ਲਈ ਸਹੀ ਤਰਾਂ ਇੰਸਟਾਲ ਨਹੀ ਹੈ। ਉਪਭੋਗਤਾ ਇੰਸਟਾਲੇਸ਼ਨ ਬਾਕੀ ਰਹਿ ਗਈ ਹੈ, ਕਿਉਕਿ '--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' ਨੂੰ ਖੋਲਣਾ ਅਸਫਲ: +ਉਪਭੋਗਤਾ ਇੰਸਟਾਲੇਸ਼ਨ ਕਰਨ ਲਈ, ਜੈਮਪ ਨੂੰ '--no-interface' ਨਾਲ ਚਲਾਉ।ਜੈਮਪ ਵਰਜਨਜੈਪਮ ਉਪਭੋਗਤਾ ਨੂੰ ਚੇਤਵਾਨੀ ਦੇਵੇਗਾ, ਜਦੋ ਕਿ ਚਿੱਤਰ ਜੋ ਕਿ ਬਣਾਉਣਾ ਹੈ, ਨਿਰਧਾਰਿਤ ਮੈਮੋਰੀ ਨਾਲੋ ਜਿਆਦਾ ਥਾਂ ਵਰਤੇਗਾ।ਗਾਮਾਸਧਾਰਨਅਨੁਕੂਲ ਰੰਗ-ਪੱਟੀ ਬਣਾਓਮਾਨੀਟਰ ਰੈਜ਼ੋਲੇਸ਼ਨ ਪ੍ਰਾਪਤਵਿਰਾਟਕੱਚ ਪ੍ਰਭਾਵ(_s)ਢਾਲਵਾਂਢਾਲਵਾ ਸੰਪਾਦਕਢਾਲਵਾਂ ਫੋਲਡਰਢਾਲਵਾਂ UIਢਾਲਵਾਂ:ਢਾਲਵਾਂਢਾਲਵਾਂ ਮੇਨੂਲੱਕਡ਼ ਦੀਆਂ ਧਾਰੀਆਂ ਖੋਲੋਲੱਕਡ਼ ਦੀਆਂ ਧਾਰੀਆਂ ਵਿਲੀਨਭੂਰਾਗਰੇ-ਪੈਮਾਨਾਹਰਾਹਰਾ:ਗਰਿੱਡਗਰਿੱਡ ਰੇਖਾ ਥਾਂਉਭਾਰੋ ਚੈਨਲਦਿਸ਼ਾ-ਨਿਰਦੇਸ਼ਨਗਾਈਡ ਤੇ ਗਰਿੱਡ ਤਸਵੀਰਗਾਇਡ ਕਾਰਵਾਈਆਂHSVHSV (%0.3f, %0.3f, %0.3f)HSV (ਘੜੀ-ਉਲਟ ਆਭਾ)HSV (ਘਡ਼ੀ ਦੀ ਦਿਸ਼ਾ ਵਿੱਚ)HTML ਪਗ:ਉਚਾਈ(_e):ਵਰਤਣ ਲਈ ਸਹਾਇਤਾ ਝਲਕਾਰਾ(_e):ਸਥਿਤੀ ਸੰਭਾਲੋ: %0.6fਸਖਤ ਕਿਨਾਰਾਹਾਰਡ ਰੋਸ਼ਨੀਸਖਤਕਠੋਰਤਾ:ਉਚਾਈਉਚਾਈ:ਸਹਾਇਤਾਸਹਾਇਤਾ ਝਲਕਾਰਾਸਹਾਇਤਾ ਸਿਸਟਮਸਹਾਇਤਾ ਝਲਕਾਰਾ ਚਾਲੂ ਨਹੀਂ ਕੀਤਾ ਜਾ ਸਕਿਆਸਹਾਇਤਾ ਝਲਕਾਰਾ ਨਹੀਂ ਲੱਭਿਆਸਹਾਇਤਾ ਕਾਰਵਾਈਆਂਹੈਕਸਾ:ਉਭਾਰੋਡੌਕ ਲਈ ਸੰਕੇਤ(_d):ਸੰਦਖਾਨੇ ਲਈ ਸੰਕੇਤ(_t):ਸੰਕੇਤਆਇਤ ਗਰਾਫ(_m)ਆਇਤ ਗਰਾਫਭਿੰਨ ਸਕੇਲਿੰਗਅਤੀਤਖਿਤਿਜੀਗਰਿੱਡ ਰੇਖਾਵਾਂ ਵਿੱਚ ਲੇਟਵੀ ਦੂਰੀਫਾਇਲ ਮੇਨੂ-ਸੂਚੀ ਵਿੱਚ ਕਿੰਨੇ ਤਾਜ਼ਾ ਖੋਲ੍ਹੋ ਚਿੱਤਰਾਂ ਦੇ ਫਾਇਲ-ਨਾਂ ਰੱਖਦਟ ਹਨ।ਰੰਗਤਆਭਾ-ਸਤ੍ਰਿਪਤਆਭਾ-ਸਤ੍ਰਿਪਤ(_S)...ਰੰਗਤ:ਵਿਰਾਟਆਈਕਾਨ ਤੇ ਪਾਠ(_c)ਚਿੱਤਰਆਯਾਤ ਮਾਰਗ(_m)...ਅੰਤਰਾਲ:ਆਈਕਾਨਆਈਕਾਨ ਤੇ ਵਰਣਨਆਈਕਾਨ ਤੇ ਪਾਠਜੇਕਰ ਤੁਸੀਂ ਚਿੱਤਰ ਨਾ ਸੰਭਾਲਿਆ ਤਾਂ ਆਖਰੀ %s ਤੋਂ ਤਬਦੀਲੀਆਂ ਗੁੰਮ ਹੋ ਜਾਣਗੀਆ।ਜੇਕਰ ਤੁਸੀਂ ਜੈਮਪ ਹੁਣ ਬੰਦ ਕੀਤਾ ਤਾਂ ਅਣ-ਸੰਭਾਲਿਆ ਡਾਟਾ ਖਤਮ ਹੋ ਜਾਵੇਗਾ।ਵਾਤਾਵਰਣ ਫਾਇਲ %s ਵਿੱਚ ਵੇਰੀਬਲ ਨਾਂ ਗਲਤ ਹੈ: %sਚਿੱਤਰਚਿੱਤਰ + ਗਰਿੱਡਚਿੱਤਰ ਸੰਪਾਦਕਚਿੱਤਰ ਜਾਣਕਾਰੀਚਿੱਤਰ ਮੇਨੂਚਿੱਤਰ ਕਿਸਮਚਿੱਤਰ ਸਥਿਤੀ ਪੱਟੀ ਫਾਰਮਿਟਚਿੱਤਰ ਨਮੂਨੇਚਿੱਤਰ ਥੰਮਨੇਲਚਿੱਤਰ ਨਾਂ ਅਤੇ ਸਥਿਤੀ ਪੱਟੀ ਫਾਰਮਿਟਚਿੱਤਰ ਨਾਂ ਫਾਰਮਿਟਚਿੱਤਰ ਝਰੋਖਾ ਦਿੱਖਚਿੱਤਰ ਝਰੋਖੇਕਿਸੇ ਉਪਲੱਬਧ ਪਰਤਾਂ ਤੇ ਚਿੱਤਰ ਨਹੀਂਚਿੱਤਰ ਫਾਇਲਚਿੱਤਰ ਮਖੌਟਾਚਿੱਤਰ ਕਿਸਮਚਿੱਤਰ ਸਰੋਤਚਿੱਤਰ ਕਿਸਮਚਿੱਤਰਚਿੱਤਰ ਮੇਨੂਲਿਆਉ ਚੋਣਰੰਗ-ਪੱਟੀ ਆਯਾਤਮਾਰਗ ਲਿਆਉSVG ਤੋ ਲਿਆਉਣ ਲਈ ਮਾਰਗਨਵੀ ਰੰਗ-ਪੱਟੀ ਆਯਾਤ ਕਰੋਰੰਗ-ਪੱਟੀ ਆਯਾਤਮਾਰਗ ਲਿਆਓਲਿਆਦਾ ਮਾਰਗਸਿਆਹੀ(_k)ਉਲਟ(_v)ਵਾਧਾਹਾਸ਼ੀਏ ਤੋ ਪਰਾ:ਪਹਿਲੀ ਸਤਰ ਦਾ ਹਾਸ਼ੀਏ ਤੋ ਪਰ੍ਹਾਤਤਕਰਾ:ਤਤਕਰਾਤਤਕਰਾ ਰੰਗਜਾਣਕਾਰੀ ਝਰੋਖਾਸ਼ੁਰੂ ਆਕਾਰ ਅਨੁਪਾਤ(_r):ਪਲੱਗਿੰਨ ਨੂੰ ਸ਼ੁਰੂ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈਪਲੱਗਿੰਨ ਨੂੰ ਸ਼ੁਰੂ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ: '%s' +ਸਿਆਹੀਇੰਲਾਇਨ ਪਿਕਬਫਇੰਪੁੱਟ ਕੰਟਰੋਲਰਇੰਟਪੁੱਟ ਯੰਤਰਇੰਪੁੱਟ ਪੱਧਰਸਹਾਰਾ ਵਿੱਚ ਜੋੜ੍ਹੋਇੰਸਟਾਲੇਸ਼ਨ ਅਸਫਲ ਰਹੀ। ਸਿਸਟਮ ਪ੍ਰਬੰਧਕ ਨਾਲ ਸੰਪਰਕ ਕਰੋ।ਇੰਸਟਾਲੇਸ਼ਨ ਸਫਲ ਰਹੀ ਹੈ। ਜਾਰੀ ਰਹਿਣ ਲਈ "ਜਾਰੀ ਰੱਖੋ" ਦਬਾਓ।ਤਤਕਾਲਿਕ ਨਵੀਨੀਕਰਨਕੁਸ਼ਲ ਛਾਂਗਈ(_S)ਤੀਬਰਤਾ: %0.3f ਧੁੰਦਲਾਪਨ: %0.3fਇੰਟਰਫੇਸ਼ਅੰਦਰੂਨੀ ਜੈਮਪ ਤਰੀਕਾਅੰਦਰੂਨੀ ਕਾਰਵਾਈਕਾਂਟਮੌਜੂਦਾ ਚੋਣ ਨਾਲ ਜੋੜ੍ਹੋਅੰਤਰ-ਖੰਡ(ਧਾਰੀਦਾਰ)ਅੰਤਰ-ਖੰਡ(ਬਿੰਦੂਦਾਰ)ਗਲਤ ਯੂਟੀਐਫ-8ਫਾਇਲ '%s' ਵਿੱਚ ਗਲਤ ਯੂਟੀਐਫ-੮ ਡਾਟਾ ਹੈ।XCF ਫਾਇਲ ਵਿੱਚ ਗਲਤ ਯੂਟੀਐਫ-8 ਡਾਟਾਬੁਰਸ਼ ਫਾਇਲ '%s' ਵਿੱਚ ਗਲਤ ਯੂਟੀਐਫ-8 ਸਤਰਢਾਲਵਾਂ ਫਾਇਲ '%s' ਵਿੱਚ ਗਲਤ ਯੂਟੀਐਫ-8 ਸਤਰ ਹੈ।ਰੰਗ-ਪੱਟੀ ਫਾਇਲ '%s' ਵਿੱਚ ਗਲਤ ਯੂਟੀਐਫ-8 ਸਤਰ ਹੈ।URI ਵਿੱਚ ਗਲਤ ਅੱਖਰਗਲਤ ਸ਼ਾਰਟਕੱਟਉਲਟਉਲਟ ਚੈਨਲਉਲਟ ਚੋਣਉਲਟ ਚੋਣਕੀ ਤੁਸੀਂ ਇਹ ਕਰਨਾ ਚਾਹੁੰਦੇ ਹੋ?ਇਸਤਰਾਂ ਜਾਪਦਾ ਹੈ ਕਿ ਤੁਸੀਂ ਪਹਿਲਾਂ ਜੈਮਪ 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)ਕੀ-ਬੋਰਡਕੀ-ਬੋਰਡ ਘਟਨਾਕੀ-ਬੋਰਡ ਸ਼ਾਰਟਕੱਟLTRਭੂ ਦਰਿਸ਼ਵੱਡਾਵੱਡਾ (256x256)ਵੱਡੇ ਨਮੂਨੇਅਖੀਰੀ ਗਲਤੀ:ਪਰਤਪਰਤ '%s' ਦਾ ਕੋਈ ਅਲਫਾ ਨਹੀ ਹੈ। ਪਰਤ ਇਸ ਤੋ ਉੱਪਰ ਹੈ।ਪਰਤ ਗੁਣਪਰਤ ਸੀਮਾ ਅਕਾਰ(_o)...ਪਰਤ ਭਰਨ ਦੀ ਕਿਸਮਪਰਤ ਚੋਣਪਰਤ ਅਕਾਰਪਰਤ ਮੋਡਪਰਤ ਨਾਂ:ਪਰਤ ਨੂੰ ਹੋਰ ਹੇਠਾਂ ਨਹੀ ਕੀਤਾ ਜਾ ਸਕਦਾਪਰਤ ਨੂੰ ਹੋਰ ਉਠਾਇਆ ਨਹੀ ਜਾ ਸਕਦਾ ਹੈ।ਪਰਤ ਪਹਿਲਾਂ ਹੀ ਹੇਠਾਂ ਹੈਪਰਤ ਪਹਿਲਾਂ ਹੀ ਸਭ ਤੋ ਉਪੱਰ ਹੈਪਰਤ ਨੂੰ ਚਿੱਤਰ ਦੇ ਅਕਾਰ ਅਨੁਸਾਰ ਕਰੋਹੇਠ ਲਈ ਪਰਤ(_B)ਚਿੱਤਰ ਦੇ ਅਕਾਰ ਦੀ ਪਰਤ(_I)ਉੱਪਰ ਲਈ ਪਰਤ(_T)ਪਰਤ ਦਾ ਐਲਫਾ ਚੈਨਲ(_a)ਪਰਤਾਂਪਰਤ ਮੇਨੂਪਰਤ ਵਿਲੀਨ ਚੋਣਖੱਬੇ ਪਾਸੇਲੰਬਾਈ:ਜੈਪਮ ਨੂੰ ਆਪਣੇ ਅਖੀਰੀ ਸੰਭਾਲੇ ਅਜਲਾਸ ਨੂੰ ਸ਼ੁਰੂ ਵੇਲੇ ਮੁਡ਼-ਪ੍ਰਾਪਤ ਕਰਨ ਦੀ ਆਗਿਆ ਦਿਉ।ਪੱਧਰਤਤਕਰਾ ਪਰਤਾਂ ਲਈ ਪੱਧਰ ਅਨੁਕੂਲ ਨਹੀ ਕੀਤਾ ਜਾ ਸਕਦਾ ਹੈ।ਫਿੱਕੇ ਜਾਂਚ ਰੰਗਸਿਰਫ਼ ਰੋਸ਼ਨੀਰੇਖਾਲਾਈਨ +ਖਾਲੀ ਥਾਂ:ਰੇਖਾ ਚੌਡ਼ਾਈ:ਰੇਖਾ ਸ਼ੈਲੀ(_S):ਗਰਿੱਡ ਲਈ ਰੇਖਾ ਸ਼ੈਲੀਰੇਖਿਕਸਬੰਧਤ ਇਕਾਈਲੋਡਗੋਲਾਈ ਲੋਡ ਕਰੋਪੱਧਰ ਲੋਡ ਕਰੋਫਾਇਲ ਵਿੱਚੋ ਗੋਲਾਈ ਵਿਵਸਥਾ ਖੋਲ੍ਹੋਫਾਇਲ ਤੋ ਪੱਧਰ ਵਿਵਸਥਾ ਪੜ੍ਹੋਫਾਇਲ ਤੋ ਪਾਠ ਲੋਡ ਕਰੋਦਰਿਸ਼ ਲੋਡ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ...ਥਾਂ:ਲਾਗਰਿਥਮਿਕਲੰਬੀਆਂ ਧਾਰੀਆਂਡਾਟਾ ਫਾਇਲਾਂ ਵਿੱਚ ਖੋਜ ਜਾਰੀ ਹੈਚੈਨਲ ਹੇਠਾਂਹੇਠਲਾ ਚੈਨਲ ਥੱਲੇਹੇਠਲਾ ਚੈਨਲ ਥੱਲੇ(_B)ਪਰਤ ਨੂੰ ਹੇਠ ਕਰੋਪਰਤ ਨੂੰ ਹੇਠਾਂ ਭੇਜੋਮਾਰਗ ਹੇਠਰਸਤੇ ਨੂੰ ਹੇਠ ਵੱਲ ਨਿਵਾਉਮਾਰਗ ਨੂੰ ਹੇਠ ਵੱਲ ਨਿਵਾਓ(_B)ਚੈਨਲ ਹੇਠ ਕਰੋਹੇਠਲਾ ਚੈਨਲ ਥੱਲੇਹੇਠਲੀ ਪਰਤਪਰਤ ਨੂੰ ਹੇਠਾਂ ਭੇਜੋਮਾਰਗ ਹੇਠਾਂਮਾਰਗ ਨੂੰ ਹੇਠ ਵੱਲ ਨਿਵਾਓਵੱਡ-ਦਰਿਸ਼(_a)ਮੁੱਖ(_a)ਪਰਦੇ ਤੇ ਏਧਰ-ਓਧਰ...ਮੈਜ਼ੀਨਟਾਮੈਜ਼ਾਨਟਿਕ:ਵੱਡ-ਦਰਿਸ਼ਪਾਰਦਰਸ਼ੀ ਬਣਾਓ(_t)ਮਖੌਟਾ ਧੁੰਦਲਾਪਨ:ਮੈਟ੍ਰਿਕਸ:ਅਧਿਕਤਮ ਡੂੰਘਾਈ:ਥੰਮਨੇਲ ਲਈ ਵੱਧ-ਤੋਂ ਵੱਧ ਫਾਇਲ ਅਕਾਰ(_f):ਨਵੇ ਚਿੱਤਰ ਦਾ ਅਧਿਕਤਮ ਅਕਾਰ(_n):ਅਧਿਕਤਮ ਰੰਗ ਫ਼ਰਕਅਧਿਕਤਜ਼ ਵਾਪਸ ਮੈਮੋਰੀ(_m):ਮੱਧ:ਮਾਪਦੂਰੀ ਅਤੇ ਕੋਣ ਮਾਪੋਦੂਰੀ ਅਤੇ ਕੋਣ ਮਾਪੋਮੱਧਮ:ਮੱਧਮਮੱਧਮ ਧਾਰੀਆਂਹੇਠਾਂ ਨੂੰ ਵਿਲੀਨ(_w)ਹੇਠਾਂ ਨੂੰ ਵਿਲੀਨ ਪਰਤਾਂ ਨੂੰ ਵਿਲੀਨ ਕਰੋਰੰਗ-ਪੱਟੀ ਵਿਲੀਨਦਿੱਸ ਰਹੀਆਂ ਪਰਤਾਂ ਨੂੰ ਵਿਲੀਨ ਕਰੋਦਿੱਖ ਰਸਤੇ ਵਿਲੀਨ ਕਰੋਦਿੱਖ ਪਰਤਾਂ ਨੂੰ ਵਿਲੀਨ ਕਰੋ...ਦਿੱਖ ਪਰਤਾਂ ਨੂੰ ਵਿਲੀਨ(_V)...ਦਿੱਸ ਰਹੇ ਮਾਰਗ ਵਿਲੀਨ(_V)ਪਰਤ ਵਿਲੀਨਰੰਗ-ਪੱਟੀ ਵਿਲੀਨਵੈਕਟਰ ਵਿਲੀਨਸੁਨੇਹਾ ਕਾਰਵਾਈਸੁਨੇਹਾ %d ਵਾਰ ਮੁਡ਼ ਵੇਖਾਉਸੁਨੇਹਾ ਇੱਕ ਵਾਰ ਮੁਡ਼ ਵੇਖਾਉਸੁਨੇਹਿਆਂ ਨੂੰ stderr ਲਈ ਭੇਜਿਆ ਗਿਆ।ਮੱਧ-ਟੋਨਵਾਪਸ ਹੋਣ ਵਾਲੇ ਪੱਧਰਾਂ ਦੀ ਘੱਟੋ-ਘੱਟ ਗਿਣਤੀ(_u):ਫੁਟਕਲਕਣਢੰਗਮੋਡ:ਚੁਣੇ ਰੰਗ ਸੋਧੋਰੰਗ ਪੱਧਰ ਦੀ ਚੁਣੀ ਸੀਮਾ ਸੋਧਸਾਰੇ ਰੰਗ ਸੋਧੋਰੇਖਾ ਥਾਂ ਸੋਧੋਮੈਡੀਊਲ ਫੋਲਡਰਮੈਡੀਲਿਊ ਪ੍ਰਬੰਧਕਮੈਡੀਊਲ ਮਾਰਗਮੈਡੀਲਿਊਮਾਊਸ ਕਰਸਰਮਾਊਸ ਪਹੀਆਮਾਊਸ ਪਹੀਆ ਘਟਨਾਏਧਰ-ਓਧਰਸਹਾਰੇ ਏਧਰ-ਓਧਰਚੈਨਲ ਏਧਰ-ਓਧਰਤਰਦੀ ਚੋਣ ਏਧਰ-ਓਧਰਨਿਰਦੇਸ਼ਕ ਏਧਰ-ਓਧਰਨਿਰਦੇਸ਼ਕ ਏਧਰ-ਓਧਰ: ਪਰਤ ਏਧਰ-ਓਧਰਪਰਤ-ਮਖੌਟਾ ਏਧਰ-ਓਧਰਮਾਰਗਂ ਏਧਰ-ਓਧਰਚੁਣਿਆ ਏਧਰ-ਓਧਰਪਾਠ ਪਰਤ ਘੁੰਮਾਓਭੇਜਣ ਸੰਦਇਕਾਈ ਏਧਰ-ਓਧਰਪਰਤਾਂ ਤੇ ਚੋਣ ਏਧਰ-ਓਧਰਚੁਣਿਆ ਏਧਰ-ਓਧਰਮੌਜੂਦਾ ਪਰਤ ਏਧਰ-ਓਧਰਮੌਜੂਦਾ ਮਾਰਗ ਏਧਰ-ਓਧਰਚੁਣੇ ਫਿਲਟਰ ਨੂੰ ਹੇਠਾਂ ਭੇਜੋਚੁਣੇ ਫਿਲਟਰ ਨੂੰ ਉੱਪਰ ਭੇਜੋਪਰਦੇ ਤੇ ਜਾਓ...ਭੇਜੋ:ਬਹੁਰੰਗਾਂ ਦੀ ਗਿਣਤੀ(_u):ਏਧਰ-ਓਧਰਏਧਰ-ਓਧਰ ਝਰੋਖਾਨਾਂਨਾਂ:ਏਧਰ-ਓਧਰਨਵਾਂ ਚੈਨਲਨਵਾਂ ਚੈਨਲ ਰੰਗਨਵਾਂ ਚੈਨਲ ਚੋਣ_BG ਤੋਂ ਨਵੇਂ ਰੰਗ_FG ਤੋਂ ਨਵੇਂ ਰੰਗਨਵਾਂ ਚਿੱਤਰਨਵੀ ਪਰਤਨਵਾਂ ਮਾਰਗਨਵਾਂ ਮਾਰਗ ਚੋਣਨਵਾਂ ਨਮੂਨਾਨਵਾਂ ਬੁਰਸ਼ਨਵਾਂ ਚੈਨਲਆਖਰੀ ਮੁੱਲ ਨਾਲ ਨਵਾਂ ਚੈਨਲਨਵਾਂ ਚੈਨਲ...BG ਤੋਂ ਨਵੇਂ ਰੰਗFG ਤੋਂ ਨਵੇਂ ਰੰਗਨਵਾਂ ਢਾਲੂਨਵੀ ਆਯਾਤਨਵੀਂ ਪਰਤਨਵੀ ਪਰਤ...ਨਵੀ ਰੰਗ-ਪੱਟੀਆਖਰੀ ਮੁੱਲਾ ਨਾਲ ਨਵਾਂ ਮਾਰਗਨਵਾਂ ਮਾਰਗ...ਨਵੀ ਤਰਤੀਬਨਵਾਂ ਵੈਕਟਰਇਸ ਸੰਦ ਨਾਲ ਵਰਤਣ ਲਈ ਕੋਈ ਬੁਰਸ਼ ਨਹੀਂ ਹੈ।ਕੋਈ ਫਿਲਟਰ ਨਹੀ ਚੁਣਿਆ'%s' ਵਿੱਚ ਕੋਈ ਰੇਖਿਕ ਢਾਲੂ ਨਹੀ ਲੱਭਿਆਹੁਣ ਉਪਲੱਬਧ ਨਹੀ'%s' ਵਿੱਚ ਕੋਈ ਮਾਰਗ ਨਹੀ ਲੱਭਿਆਬਫਰ ਵਿੱਚ ਕੋਈ ਮਾਰਗ ਨਹੀ ਲੱਭਿਆਇਸ ਕਾਰਵਾਈ ਲਈ ਕੋਈ ਤਰਤੀਬ ਉਪਲੱਬਧ ਨਹੀ ਹੈ।ਕੋਈ ਚੋਣ ਨਹੀਝਟਕੇ ਲਈ ਕੋਈ ਚੋਣ ਨਹੀ ਹੈਕੋਈ ਥੰਮਨੇਲ ਨਹੀਨਾ-ਇਕਸਾਰਕੋਈ ਨਹੀਕੋਈ ਨਹੀ (ਸੱਭ ਤੋ ਤੇਜ਼)ਸਧਾਰਨਸਧਾਰਨ (128x128)ਸਧਾਰਨ ਬਿੰਦੂਸਧਾਰਨ ਝਰੋਖਾਨਿਯਮਤ ਫਾਇਲ ਨਹੀਂਵਿਲੀਨ ਕਰਨ ਲਈ ਲੋਡ਼ੀਦੀਆ ਪਰਤਾਂ ਨਹੀ ਹਨ। ਘੱਟੋ-ਘੱਟ ਦੋ ਪਰਤਾਂ ਹੋਣੀਆ ਚਾਹੀਦੀਆਂ ਹਨ।ਦਿੱਖ ਰਸਤੇ ਨੂੰ ਵਿਲੀਨ ਕਰਨ ਲਈ ਲੋਡ਼ੀਦੇ ਉਪਲੱਬਧ ਰਸਤੇ ਨਹੀ ਹਨ। ਘੱਟੋ-ਘੱਟ ਦੋ ਰਸਤੇ ਲੋਡ਼ੀਦੇ ਹਨ।ਵਰਤਣ ਲਈ ਕਾਰਜਾਂ ਦੀ ਗਿਣਤੀ(_p):ਗਰਿੱਡ ਰੇਖਾਵਾਂ ਦੀ ਗਿਣਤੀਪਰਤਾਂ ਦੀ ਗਿਣਤੀ:ਹੋਰ(_t)...ਹਾਸ਼ੀਏ ਤੋਂ ਦੂਰੀ:ਡਿਸਕ ਤੇਬਹੁ-ਪ੍ਰੋਸੈਸਰ ਮਸ਼ੀਨਤੇ, ਜੇਕਰ ਜੈਮਪ --enable-mp ਨਾਲ ਕੰਪਾਇਲ ਹੋਇਆ ਹੈ ਤਾਂ, ਇਹਨਿਰਧਾਰਿਤ ਕਰੇਗਾ ਇੱਕ ਸਮੇਂ ਜੈਮਪ ਕਿੰਨੇ ਪ੍ਰੋਸੈਸਰ ਵਰਤ ਸਕਦਾ ਹੈ।ਸਿਰਫ ਮੈਮੋਰੀ ਵਿੱਚਨਵੀਂ ਪਰਤ ਵਾਂਗ ਖੋਲੋ...ਧੁੰਦਲਾਪਨਧੁੰਦਲਾਪਨ:ਖੋਲ੍ਹੋਚਿੱਤਰ ਖੋਲ੍ਹੋਚਿੱਤਰ ਪਰਤ ਵਾਂਗ ਖੋਲ੍ਹੋਟਿਕਾਣਾ ਖੋਲੋਪਾਠ ਫਾਇਲ (ਯੂਟੀਐਫ-8) ਖੋਲ੍ਹੋਥਾਂ ਖੋਲੋ...ਤਾਜ਼ਾ ਖੋਲੇ(_R)ਚਿੱਤਰ ਖੋਲ੍ਹੋ ਤਖਤੀਬੁਰਸ਼ ਚੋਣ ਤਖਤੀ ਖੋਲ੍ਹੋਫੋਂਟ ਚੋਣ ਤਖਤੀ ਖੋਲੋਢਾਲਵਾਂ ਚੋਣ ਤਖਤੀ ਖੋਲ੍ਹੋਤਰਤੀਬ ਚੋਣ ਤਖਤੀ ਖੋਲ੍ਹੋਤਰਤੀਬ ਚੋਣ ਤਖਤੀ ਖੋਲ੍ਹੋਚੁਣਿਆ ਇੰਦਰਾਜ਼ ਖੋਲੋ'%s' ਨੂੰ ਖੋਲਣਾ ਅਸਫਲ: %s'%s' ਨੂੰ ਖੋਲਣਾ ਅਸਫਲ: %sਚੋਣ: -ਅਸਲੀ ਚੌੜਾਈ:ਹੋਰ (%s) ...ਆਉਟਪੁੱਟ ਪੱਧਰਪਰਤ ਫੈਲਾਉPDB ਨੂੰ ਲਿਆਉਣ ਵਿੱਚ ਗਲਤੀ: -ਤਰੀਕਾ '%s' ਨਹੀ ਲੱਭਿਆ ਜਾ ਸਕਿਆਤਰਤੀਬ(_a)ਪੇਟਪੇਟ ਸੰਦ:ਪੇਂਟ ਢੰਗ(_M)ਧੁੰਦਲਾ ਬੁਰਸ਼ ਛੋਹ ਬਣਾਉਸਖਤ ਕਿਨਾਰੇ ਪਿਕਸਲ਼ ਪੇਟ ਕਰੋਪੇਟ-ਬੁਰਸ਼ਰੰਗ-ਪੱਟੀ(_e)ਰੰਗ-ਪੱਟੀਤਰਤੀਬ ਸੰਪਾਦਕਰੰਗ-ਪੱਟੀ ਫੋਲਡਰਰੰਗ-ਪੱਟੀ UIਰੰਗ-ਪੱਟੀ ਨਾਮ:ਰੰਗ-ਪੱਟੀਰੰਗ-ਪੱਟੀ ਮੇਨੂ'%s' ਨੂੰ ਪਾਰਸ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ -ਚਿਪਕਾਉਬਫਰ ਨੂੰ ਇੱਥੇ ਚਿਪਕਾਉ(_I)ਬਫਰ ਨੂੰ ਨਵੇਂ ਵਾਂਗ ਚਿਪਕਾਉ(_N)ਵਿੱਚ ਚਿਪਕਾਉਨਵੇ ਦੇ ਤੌਰ ਤੇ ਚਿਪਕਾਉਚੁਣੇ ਬਫਰ ਨੂੰ ਚਿਪਕਾਉਚੁਣਿਆ ਬਫਰ ਨੂੰ ਨਵੇਂ ਚਿੱਤਰ ਵਾਂਗ ਚਿਪਕਾਉਚੁਣੇ ਬਫਰ ਨੂੰ ਚੋਣ ਵਿੱਚ ਚਿਪਕਾਉਚਿਪਕਾਈ ਪਰਤਰਸਤਾਰਸਤਾ ਗੁਣਰਸਤੇ ਨੂੰ ਹੋਰ ਉਭਾਰਿਆ ਨਹੀ ਜਾ ਸਕਦਾ ਹੈ।ਚੋਣ ਲਈ ਰਸਤਾਮਾਰਗਰਸਤਾ ਮੇਨੂਤਰਤੀਬਤਰਤੀਬ ਫੋਲਡਰਤਰਤੀਬ UIਤਰਤੀਬਤਰਤੀਬ ਮੇਨੂਪਿਨਸਲਬੁਰਸ਼ ਦੀ ਪ੍ਰਤੀਸ਼ਤ ਚੌਡ਼ਾਈਪ੍ਰਤੀਸ਼ਤਤਾ:ਨਿੱਜੀ ਜੈਮਪ ਫੋਲਡਰਅਵਲੋਕਣਅਵਲੋਕਣ ਤਬਦੀਲੀ ਜਾਣਕਾਰੀਅਵਲੋਕਣ਼ਚੋਣ ਮੋਡ %sਚਿੱਤਰ ਤੋ ਰੰਗ ਚੁਣੋਪਿਕਸਲ ਮੁੱਲਪਿਕਸਲਪਿਕਸਲ:ਕਿਰਪਾ ਕਰਕੇ ਉਡੀਕ ਕਰੋ, ਜਦੋਂ ਕਿ ਜੈਮਪ ਫੋਲਡਰ ਬਣਾਇਆ ਜਾ ਰਿਹਾ ਹੈ...ਕਿਰਪਾ ਕਰਕੇ ਉਡੀਕ ਕਰੋ...ਪਲੱਗਇੰਨਪਲੱਗ-ਇੰਨ ਵਾਤਾਵਰਣਪਲੱਗ-ਇਨ ਫੋਲਡਰਪਲੱਗਿੰਨਪਲੱਗ-ਇਨਬਹੁਭੁਜਪੋਰਟਰੇਟਸਥਿਤੀ: %0.6fਇਸ਼ਤਹਾਰੀ(ਰੰਗਾਂ ਦੀ ਗਿਣਤੀ ਘੱਟ)ਇਸ਼ਤਹਾਰੀ ਤਤਕਰੀ ਪਰਤਾਂ ਤੇ ਕੰਮ ਨਹੀ ਕਰਦਾ ਹੈ।ਮੇਰੀ-ਪਸੰਦਦਬਾਉ:ਨਮੂਨਾਦਰਿਸ਼ ਪੁਰਾਣਾ ਹੋ ਗਿਆ ਹੈਨਮੂਨਾਤਰੀਕਾ ਡਾਟਾਬੇਸਤਰੱਕੀਫ਼ਰਜੀ ਰੰਗਲੋਡ਼:ਸਵਾਲਨਵੀ ਪਲੱਗ-ਇਨ ਲਈ ਜਾਂਚ ਕੀਤੀ ਜਾ ਰਹੀ ਹੈਪਲੱਗ-ਇਨ ਲਈ ਜਾਂਚ ਕੀਤੀ ਜਾ ਰਹੀ ਹੈ: '%s' -ਤੇਜ਼ ਮਖੌਟਾRGBRGB (%0.3f, %0.3f, %0.3f)RGB (%d, %d, %d)RGB ਰੰਗRGB-ਖਾਲੀRGBA (%0.3f, %0.3f, %0.3f, %0.3f)"%s" ਨੂੰ ਮੁਡ਼ ਵਿਖਾਓਕਰਣੀਅਰਧ-ਵਿਆਸ:ਚੈਨਲ ਉਠਾਉਉਪਰਲਾ ਚੈਨਲ ਨੂੰ ਉਪਰਉਪਰਲਾ ਚੈਨਲ ਨੂੰ ਉਪਰ(_T)ਪਰਤ ਉਠਾਓਪਰਤ ਨੂੰ ਉਪੱਰ ਉਠਾਉਰਸਤਾ ਉਠਾਉਰਸਤੇ ਨੂੰ ਉਪਰ ਵੱਲ ਉਠਾਉਚੈਨਲ ਉਠਾਉਉਪਰਲਾ ਚੈਨਲ ਨੂੰ ਉਪਰਇਸ ਚਿੱਤਰ ਦਾ ਦਰਿਸ਼ ਉਠਾਉਜੇਕਰ ਝਰੋਖਾ ਪਹਿਲਾਂ ਹੀ ਖੁੱਲਾ ਹੋਵੇਂ ਤਾ ਉਭਾਰੋਮੁੱਲਮੁੱਲ:ਮੁਡ਼-ਦਹਰਾਓ "%s"ਪੁਨਰ-ਪ੍ਰਾਪਤ...ਨਮੂਨਾ ਮੁਡ਼-ਬਣਾਉ(_P)ਨਮੂਨਾ ਮੁਡ਼-ਬਣਾਉਆਇਤਕਾਰ ਚੋਣਲਾਲਲਾਲ:ਮੁਡ਼ ਉਹੀ ਕਰੋਚਿੱਤਰ ਨੂੰ ਨਿਸ਼ਚਿਤ ਗਿਣਤੀ ਦੇ ਰੰਗਾਂ ਵਿੱਚ ਤਬਦੀਲ ਕਰੋਮੁੱਢਲਾ-ਮੁੱਲ ਵਰਤ ਕੇ ਚਿੱਤਰ ਨੂੰ ਦੋ ਰੰਗ ਵਿੱਚ ਤਬਦੀਲ ਕਰ ਦਿਉਬੁਰਸ਼ ਤਾਜ਼ਾਢਾਲੂ ਤਾਜ਼ਾਰਜਿਸਟਰਿਡਸਾਰੇ ਨਮੂਨੇ ਮੁਡ਼-ਬਣਾਉਸਾਰੇ ਨਮੂਨੇ ਮੁਡ਼-ਬਣਾਉਜੈਮਪ ਅਜਲਾਸ ਦੌਰਾਨ ਮੌਜੂਦਾ ਸੰਦ, ਤਰਤੀਬ, ਰੰਗ ਅਤੇ ਬੁਰਸ਼ ਵਗੈਰਾ ਨੂੰ ਯਾਦ ਰੱਖੋ।ਰਿਮੋਟ ਚਿੱਤਰਚੈਨਲ ਹਟਾਉਲਟਕਦੇ ਇੰਦਰਾਜ਼ ਹਟਾਓ(_n)ਅਸਥਿਰ ਚੋਣ ਹਟਾਉਨਿਰਦੇਸ਼ਕ ਹਟਾਉਪਰਤ ਹਟਾਉਰਸਤਾ ਹਟਾਉਇੰਦਰਾਜ਼ ਹਟਾਉ(_E)ਲਟਕਦੇ ਇੰਦਰਾਜ਼ ਹਟਾਓਸਰਗਰਮ ਫਿਲਟਰ ਦੀ ਸੂਚੀ ਵਿਚੋ ਚੁਣੇ ਫਿਲਟਰ ਨੂੰ ਹਟਾਉਚੈਨਲ ਦਾ ਨਾਂ-ਤਬਦੀਲਪਰਤ ਦਾ ਨਾਂ-ਤਬਦੀਲਰਸਤਾ ਨਾਂ-ਤਬਦੀਲਹਾਜ਼ਰੀ ਝਟਕਾਚੈਨਲ ਮੁਡ਼-ਕਰਮਬੱਧਮੁਡ਼-ਕਰਮ ਪਰਤਮਾਰਗ ਮੁਡ਼-ਕਰਮਬੱਧਦੁਹਰਾਉ:ਮੌਜੂਦਾ ਚੋਣ ਵਿੱਚ ਤਬਦੀਲਫੋਂਟ ਸੂਚੀ ਦਾ ਮੁਡ਼ ਨਿਰੀਖਣਸੰਦ ਚੋਣ ਮੁਡ਼ ਨਿਰਧਾਰਨਚੁਣੇ ਫਿਲਟਰ ਦਾ ਮੁੱਲ ਮੁਡ਼ ਨਿਰਧਾਰਿਤ ਕਰੋਮੁਡ਼-ਅਕਾਰਚੈਨਲ ਮੁਡ਼-ਅਕਾਰਚਿੱਤਰ ਮੁਡ਼-ਅਕਾਰਪਰਤ ਮੁਡ਼-ਅਕਾਰਰਸਤਾ ਨੂੰ ਮੁਡ਼-ਅਕਾਰ ਦਿਉਮੁਡ਼-ਅਕਾਰ ਦਿੱਤਾ ਜਾ ਰਿਹਾ ਹੈ...ਰੈਜ਼ੋਲੇਸ਼ਨ:ਸਰੋਤ ਸੰਰਚਨਾਇਸ ਤੋ ਚੋਣ ਨੂੰ ਮੁਡ਼-ਨਿਰਧਾਰਿਤ ਕਰੋ...ਹਰੇਕ ਜੈਮਪ ਸ਼ੁਰੂ ਕਰਨ ਸਮੇਂ ਸੰਭਾਲੇ ਕੀ-ਬੋਰਡ ਸ਼ਾਰਟਕੱਟ ਪੁਨਰ-ਪ੍ਰਾਪਤ ਕਰੋ।ਉੱਲਟਪੁਨਰ-ਪ੍ਰਾਪਤਘੁੰਮਾਉਘੁੰਮਾੳ 90 ਡਿਗਰੀ ਘਡ਼ੀ ਦੀ ਉਲਟ-ਦਿਸ਼ਾ ਵਿੱਚਘੜੀ ਦੀ ਦਿਸ਼ਾ 90 ਡਿਗਰੀ ਤੇ ਘੁੰਮਾਓਘੁੰਮਾਉ ਚੈਨਲਪਰਤ ਘੁੰਮਾਉਰਸਤਾ ਘੁੰਮਾਉਪਾਠ ਪਰਤ ਨੂੰ ਘੁੰਮਾਉਘੁੰਮਾੳ 180 ਡਿਗਰੀਪਰਤ ਜਾਂ ਚੋਣ ਨੂੰ ਘੁੰਮਾਉਘੁੰਮਾ ਰਿਹਾ ਹੈ...ਘੁੰਮਾਉ ਜਾਣਕਾਰੀਗੋਲਸਪੀਇਕ(_p)ਸਵੈਪ ਰੰਗ(_w)ਸਤ੍ਰਿਪਤੀ:ਸੰਤ੍ਰਿਪਤੀਸੰਭਾਲੋਗੋਲਾਈ ਸੰਭਾਲੋਗਲਤੀ ਲਾਗ ਨੂੰ ਫਾਇਲ ਵਿੱਚ ਸੰਭਾਲੋਚਿੱਤਰ ਸੰਭਾਲੋਪੱਧਰ ਸੰਭਾਲੋਸੰਦ ਚੋਣ ਸੰਭਾਲੋਸਾਰੀਆਂ ਗਲਤੀਆਂ ਨੂੰ ਫਾਇਲ ਵਿੱਚ ਸੰਭਾਲੋ...ਚੋਣ ਨੂੰ ਫਾਇਲ ਵਿੱਚ ਸੰਭਾਲੋ...ਇਸਤਰਾਂ ਸੰਭਾਲੋ...ਨਕਲ ਕਰਕੇ ਸੰਭਾਲੋ...ਸਭ ਗਲਤੀਆਂ ਸੰਭਾਲੋPOV-ਕਿਰਨ ਇਸਤਰਾਂ ਸੰਭਾਲੋ...ਨਮੂਨਾ ਵਾਂਗ ਸੰਭਾਲੋ...ਜਦੋ ਵੀ ਜੈਮਪ ਬੰਦ ਹੋਵੇ ਤਾਂ, ਕੀ-ਬੋਰਡ ਸ਼ਾਰਟਕੱਟ ਵਿੱਚ ਤਬਦੀਲੀਆ ਨੂੰ ਸੰਭਾਲ ਲਵੇ।ਗੋਲਾਈ ਵਿਵਸਥਾਂ ਨੂੰ ਫਾਇਲ ਵਿੱਚ ਸੰਭਾਲੋਯੰਤਰ ਦੀ ਸਥਿਤੀ ਸੰਭਾਲੋPOV-ਕਿਰਨ ਢਾਲੂ ਵਾਂਗ ਸੰਭਾਲੋ...ਪੱਧਰ ਵਿਵਸਥਾਂ ਨੂੰ ਫਾਇਲ ਵਿੱਚ ਸੰਭਾਲੋਚੋਣ ਨੂੰ ਸੰਭਾਲੋ...ਚੋਣ ਸੰਭਾਲੋਜਦੋ ਵੀ ਜੈਮਪ ਬੰਦ ਹੋਵੇ ਤਾਂ, ਮੁੱਖ ਤਖਤੀਆ ਦਾ ਅਕਾਰ ਤੇ ਸਥਿਤੀਆਂ ਨੂੰ ਸੰਭਾਲ ਲਵੇ।ਸੰਭਾਲੀ ਚੋਣ'%s' ਨੂੰ ਸੰਭਾਲਿਆ ਜਾ ਰਿਹਾ ਹੈ +ਖੇਤਰ X:ਖੇਤਰ Y:ਅਸਲੀ ਚੌੜਾਈ:ਹੋਰ (%s) ...ਹਾਸ਼ੀਆਆਉਟਪੁੱਟ ਪੱਧਰਪਰਤ ਫੈਲਾਉPDB ਨੂੰ ਲਿਆਉਣ ਵਿੱਚ ਗਲਤੀ: +ਤਰੀਕਾ '%s' ਨਹੀ ਲੱਭਿਆ ਜਾ ਸਕਿਆਤਰਤੀਬ(_a)ਪੇਟਪੇਂਟ ਸੰਦ ਕਾਰਵਾਈਆਂਪੇਟ ਸੰਦ:ਪੇਂਟ ਢੰਗ(_M)ਧੁੰਦਲਾ ਬੁਰਸ਼ ਛੋਹ ਬਣਾਉਸਖਤ ਕਿਨਾਰੇ ਪਿਕਸਲ਼ ਪੇਟ ਕਰੋਪੇਟ-ਬੁਰਸ਼ਰੰਗ-ਪੱਟੀ(_e)ਰੰਗ-ਪੱਟੀਤਰਤੀਬ ਸੰਪਾਦਕਰੰਗ-ਪੱਟੀ ਫੋਲਡਰਰੰਗ-ਪੱਟੀ UIਰੰਗ-ਪੱਟੀ ਨਾਮ:ਰੰਗ-ਪੱਟੀ ਫਾਇਲ(_f)ਰੰਗ-ਪੱਟੀਰੰਗ-ਪੱਟੀ ਮੇਨੂ'%s' ਨੂੰ ਪਾਰਸ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ +ਚਿਪਕਾਉਬਫਰ ਨੂੰ ਇੱਥੇ ਚਿਪਕਾਉ(_I)ਬਫਰ ਨੂੰ ਨਵੇਂ ਵਾਂਗ ਚਿਪਕਾਉ(_N)ਚਿਪਕਾਉਣ ਮਾਰਗ(_h)ਵਿੱਚ ਚਿਪਕਾਉਨਵੇ ਦੇ ਤੌਰ ਤੇ ਚਿਪਕਾਉਚੁਣੇ ਬਫਰ ਨੂੰ ਚਿਪਕਾਉਚੁਣਿਆ ਬਫਰ ਨੂੰ ਨਵੇਂ ਚਿੱਤਰ ਵਾਂਗ ਚਿਪਕਾਉਚੁਣੇ ਬਫਰ ਨੂੰ ਚੋਣ ਵਿੱਚ ਚਿਪਕਾਉਚਿਪਕਾਈ ਪਰਤਮਾਰਗਮਾਰਗ ਗੁਣਮਾਰਗ ਨਾਂ:ਮਾਰਗ ਸੰਦ(_T)ਮਾਰਗ ਨੂੰ ਹੇਠ ਨਹੀਂ ਕੀਤਾ ਜਾ ਸਕਦਾ ਹੈ।ਰਸਤੇ ਨੂੰ ਹੋਰ ਉਭਾਰਿਆ ਨਹੀ ਜਾ ਸਕਦਾ ਹੈ।ਮਾਰਗ ਪਹਿਲਾਂ ਹੀ ਹੇਠਾ ਹੈ।ਮਾਰਗ ਪਹਿਲਾਂ ਹੀ ਸਭ ਤੋ ਉਪੱਰ ਹੈਚੋਣ ਲਈ ਮਾਰਗ(_c)ਚੋਣ ਲਈ ਮਾਰਗਚੋਣ ਲਈ ਮਾਰਗ +%s ਜੋੜ੍ਹੋ +%s ਘਟਾਓ +%s ਵਿਚਕਾਰ ਚੋਣ ਲਈ ਮਾਰਗਮਾਰਗਮਾਰਗ ਮੇਨੂਤਰਤੀਬਤਰਤੀਬ ਫੋਲਡਰਤਰਤੀਬ UIਤਰਤੀਬ ਭਰੋਤਰਤੀਬ ਸਰੋਤਤਰਤੀਬਤਰਤੀਬ ਮੇਨੂਪਿਨਸਲ(_n)ਪਿਨਸਲਬੁਰਸ਼ ਦੀ ਪ੍ਰਤੀਸ਼ਤ ਚੌਡ਼ਾਈਪ੍ਰਤੀਸ਼ਤਤਾ:ਨਿੱਜੀ ਜੈਮਪ ਫੋਲਡਰਅਵਲੋਕਣਅਵਲੋਕਣ ਤਬਦੀਲੀ ਜਾਣਕਾਰੀਅਵਲੋਕਣ਼ਚੋਣ ਮੋਡ %sਇੱਕ ਪਰਤ ਜਾਂ ਗਾਈਡ ਚੁਣੋਇੱਕ ਮਾਰਗ ਚੁਣੋਕਾਲਾ ਬਿੰਦੂ ਚੁੱਕੋਚਿੱਤਰ ਤੋ ਰੰਗ ਚੁਣੋਸਲੇਟੀ ਬਿੰਦੂ ਚੁੱਕੋਸਿਰਫ ਚੁੱਕੋਸਫੈਦ ਬਿੰਦੂ ਚੁੱਕੋਪਿਕਸਾਲ ਮਾਪ:ਪਿਕਸਲ ਮੁੱਲਪਿਕਸਲਪਿਕਸਲ:ਕਿਰਪਾ ਕਰਕੇ ਉਡੀਕ ਕਰੋ, ਜਦੋਂ ਕਿ ਜੈਮਪ ਫੋਲਡਰ ਬਣਾਇਆ ਜਾ ਰਿਹਾ ਹੈ...ਕਿਰਪਾ ਕਰਕੇ ਉਡੀਕ ਕਰੋ...ਪਲੱਗਇੰਨਪਲੱਗ-ਇੰਨ ਵਾਤਾਵਰਣਪਲੱਗਿੰਨ ਫੋਲਡਰਪਲੱਗਿੰਨ ਫਾਇਲ ਨੂੰ ਖੋਲ ਨਹੀਂ ਸਕੀਪਲੱਗਿੰਨ ਚਿੱਤਰ ਸੰਭਾਲ ਨਹੀਂ ਸਕੀਪਲੱਗਿੰਨਪਲੱਗਿੰਨਬਹੁਭੁਜਪੋਰਟਰੇਟਸਥਿਤੀ: %0.6fਸਥਿਤੀਇਸ਼ਤਾਹਰੀਇਸ਼ਤਹਾਰੀ(ਰੰਗਾਂ ਦੀ ਗਿਣਤੀ ਘੱਟ)ਇਸ਼ਤਹਾਰੀ ਪੱਧਰ(_l):ਇਸ਼ਤਹਾਰੀ ਤਤਕਰੀ ਪਰਤਾਂ ਤੇ ਕੰਮ ਨਹੀ ਕਰਦਾ ਹੈ।ਮੇਰੀ-ਪਸੰਦਪਰਕਾਸ਼ਵਾਨੀ ਰੱਖੋ(_l)ਦਬਾਉ ਸ਼ੰਵੇਦਨਸ਼ੀਲਤਾਦਬਾਉ:ਨਮੂਨਾਦਰਿਸ਼ ਪੁਰਾਣਾ ਹੋ ਗਿਆ ਹੈਨਮੂਨਾ:ਨਮੂਨਾਛਾਪਈ ਅਕਾਰ:ਛਾਪਈ ਅਕਾਰ:ਕਾਰਵਾਈ ਡਾਟਾਬੇਸਤਰੀਕਾ ਡਾਟਾਬੇਸਤਰੱਕੀਫ਼ਰਜੀ ਰੰਗਲੋਡ਼:ਗੁਣਵੱਤਾਸਵਾਲਨਵੀ ਪਲੱਗਿੰਨ ਲਈ ਜਾਂਚ ਕੀਤੀ ਜਾ ਰਹੀ ਹੈਪਲੱਗਿੰਨ ਲਈ ਜਾਂਚ ਕੀਤੀ ਜਾ ਰਹੀ ਹੈ: '%s' +ਤੇਜ਼ ਲੋਡਤੇਜ਼ ਮਖੌਟਾਤੇਜ਼ ਮਖੌਟਾ ਗੁਣਤੇਜ਼ ਮਖੌਟਾ ਮੇਨੂਤੇਜ਼ ਸੰਭਾਲੋਤੇਜ਼ ਮਖੌਟਾਜੈਮਪ ਬੰਦRGBRGB (%0.3f, %0.3f, %0.3f)RGB (%d, %d, %d)RGB ਰੰਗRGB-ਖਾਲੀRGBA (%0.3f, %0.3f, %0.3f, %0.3f)RTL"%s" ਨੂੰ ਮੁਡ਼ ਵਿਖਾਓਸੰਦ ਚੋਣ ਮੁਡ਼ ਨਿਰਧਾਰਨ(_e)ਚੈਨਲ ਮੁਡ਼ ਨਿਰਧਾਰਨ(_e)ਰੰਗ ਮੁਡ਼-ਨਿਰਧਾਰਨ(_e)ਸੀਮਾ ਮੁਡ਼ ਨਿਰਧਾਰਨ(_e)ਸੱਜਾ ਅੰਤ-ਬਿੰਦ ਰੰਗ(_i)...ਕਰਣੀਅਰਧ-ਵਿਆਸ:ਚੈਨਲ ਉਠਾਉਉਪਰਲਾ ਚੈਨਲ ਨੂੰ ਉਪਰਉਪਰਲਾ ਚੈਨਲ ਨੂੰ ਉਪਰ(_T)ਪਰਤ ਉਠਾਓਪਰਤ ਨੂੰ ਉਪੱਰ ਉਠਾਉਮਾਰਗ ਉਠਾਉਰਸਤੇ ਨੂੰ ਉਪਰ ਵੱਲ ਉਠਾਉਮਾਰਗ ਨੂੰ ਉਪਰ ਵੱਲ ਉਠਾਓ(_T)ਚੈਨਲ ਉਠਾਉਉਪਰਲਾ ਚੈਨਲ ਨੂੰ ਉਪਰਪਰਤ ਉਠਾਓਪਰਤ ਨੂੰ ਉਪੱਰ ਉਠਾਓਮਾਰਗ ਉਠਾਓਮਾਰਗ ਨੂੰ ਉਪਰ ਵੱਲ ਉਠਾਓਇਸ ਚਿੱਤਰ ਦਾ ਦਰਿਸ਼ ਉਠਾਉਜੇਕਰ ਝਰੋਖਾ ਪਹਿਲਾਂ ਹੀ ਖੁੱਲਾ ਹੋਵੇਂ ਤਾ ਉਭਾਰੋਮੁੱਲਮੁੱਲ:ਸੰਭਾਲੀ ਚੋਣ ਨਾਂ-ਤਬਦੀਲ(_n)ਮੁਡ਼-ਦਹਰਾਓ "%s"ਪੁਨਰ-ਪ੍ਰਾਪਤ...ਤਿਆਰਨਮੂਨਾ ਮੁਡ਼-ਬਣਾਉ(_P)ਨਮੂਨਾ ਮੁਡ਼-ਬਣਾਉਆਇਤਕਾਰ ਚੋਣਲਾਲਲਾਲ:ਮੁਡ਼ ਉਹੀ ਕਰੋਚਿੱਤਰ ਨੂੰ ਨਿਸ਼ਚਿਤ ਗਿਣਤੀ ਦੇ ਰੰਗਾਂ ਵਿੱਚ ਤਬਦੀਲ ਕਰੋਮੁੱਢਲਾ-ਮੁੱਲ ਵਰਤ ਕੇ ਚਿੱਤਰ ਨੂੰ ਦੋ ਰੰਗ ਵਿੱਚ ਤਬਦੀਲ ਕਰ ਦਿਉਬੁਰਸ਼ ਤਾਜ਼ਾਢਾਲੂ ਤਾਜ਼ਾਰੰਗ-ਪੱਟੀ ਤਾਜ਼ਾਤਰਤੀਬ ਤਾਜ਼ਾਰਜਿਸਟਰਿਡਮੌਜੂਦਾ ਸਰੂਪ ਮੁੜ-ਲੋਡ(_u)ਸਾਰੇ ਨਮੂਨੇ ਮੁਡ਼-ਬਣਾਉਸਾਰੇ ਨਮੂਨੇ ਮੁਡ਼-ਬਣਾਉਜੈਮਪ ਅਜਲਾਸ ਦੌਰਾਨ ਮੌਜੂਦਾ ਸੰਦ, ਤਰਤੀਬ, ਰੰਗ ਅਤੇ ਬੁਰਸ਼ ਵਗੈਰਾ ਨੂੰ ਯਾਦ ਰੱਖੋ।ਰਿਮੋਟ ਚਿੱਤਰਚੈਨਲ ਹਟਾਉਲਟਕਦੇ ਇੰਦਰਾਜ਼ ਹਟਾਓ(_n)ਅਸਥਿਰ ਚੋਣ ਹਟਾਉਨਿਰਦੇਸ਼ਕ ਹਟਾਉਪਰਤ ਹਟਾਉਮਾਰਗ ਹਟਾਉਇੰਦਰਾਜ਼ ਹਟਾਉ(_E)ਲਟਕਦੇ ਇੰਦਰਾਜ਼ ਹਟਾਓਅਸਥਿਰ ਚੋਣ ਹਟਾਓਪਾਰਾਸਾਇਟ ਹਟਾਓਚੁਣੇ ਇੰਦਰਾਜ਼ ਹਟਾਓਸਰਗਰਮ ਫਿਲਟਰ ਦੀ ਸੂਚੀ ਵਿਚੋ ਚੁਣੇ ਫਿਲਟਰ ਨੂੰ ਹਟਾਉਸ਼ਾਰਟਕੱਟ ਨੂੰ ਹਟਾਉਣਾ ਅਸਫਲ ਹੈ।ਚੈਨਲ ਦਾ ਨਾਂ-ਤਬਦੀਲਪਰਤ ਦਾ ਨਾਂ-ਤਬਦੀਲਮਾਰਗ ਨਾਂ-ਤਬਦੀਲਪਾਠ ਪਰਤ ਨਾਂ-ਤਬਦੀਲਇਕਾਈ ਨਾਂ-ਤਬਦੀਲਹਾਜ਼ਰੀ ਝਟਕਾਚੈਨਲ ਮੁਡ਼-ਕਰਮਬੱਧਮੁਡ਼-ਕਰਮ ਪਰਤਮਾਰਗ ਮੁਡ਼-ਕਰਮਬੱਧਦੁਹਰਾਉ:ਮੌਜੂਦਾ ਚੋਣ ਵਿੱਚ ਤਬਦੀਲਚੈਨਲ ਮੁਡ਼-ਸਥਾਪਨਪਰਤ ਮੁਡ਼-ਸਥਾਪਨਵੈਕਟਰ ਮੁਡ਼-ਸਥਾਪਤਫੋਂਟ ਸੂਚੀ ਦਾ ਮੁਡ਼ ਨਿਰੀਖਣਸੰਦ ਚੋਣ ਮੁਡ਼ ਨਿਰਧਾਰਨਸਭ ਸੰਦ ਚੋਣ ਮੁਡ਼ ਨਿਰਧਾਰਨ(_a)...ਸਭ ਫਿਲਟਰ ਮੁੜ-ਤਿਆਰ..ਸਭ ਸੰਦ ਚੋਣ ਮੁਡ਼ ਨਿਰਧਾਰਨ ਕਰੋਚੁਣੇ ਫਿਲਟਰ ਦਾ ਮੁੱਲ ਮੁਡ਼ ਨਿਰਧਾਰਿਤ ਕਰੋਮੂਲ ਮੁੱਲ ਮੁਡ਼ ਨਿਰਧਾਰਿਤ ਕਰੋਸੰਦ ਕ੍ਰਮ ਤੇ ਦਿੱਖ ਮੁੜ-ਨਿਰਧਾਰਨਮੁਡ਼-ਅਕਾਰਚੈਨਲ ਮੁਡ਼-ਅਕਾਰਚਿੱਤਰ ਮੁਡ਼-ਅਕਾਰਪਰਤ ਮੁਡ਼-ਅਕਾਰਮਾਰਗ ਨੂੰ ਮੁਡ਼-ਅਕਾਰ ਦਿਉਪਾਠ ਪਰਤ ਮੁਡ਼-ਅਕਾਰਚਿੱਤਰ ਮੁਡ਼-ਅਕਾਰਇਕਾਈ ਮੁੜ-ਅਕਾਰਮੁਡ਼-ਅਕਾਰ ਦਿੱਤਾ ਜਾ ਰਿਹਾ ਹੈ...ਰੈਜ਼ੋਲੇਸ਼ਨ ਤਬਦੀਲਰੈਜ਼ੋਲੇਸ਼ਨ:ਸਰੋਤ ਵਰਤੋਂਸਰੋਤ ਸੰਰਚਨਾਇਸ ਤੋ ਚੋਣ ਨੂੰ ਮੁਡ਼-ਨਿਰਧਾਰਿਤ ਕਰੋ...ਹਰੇਕ ਜੈਮਪ ਸ਼ੁਰੂ ਕਰਨ ਸਮੇਂ ਸੰਭਾਲੇ ਕੀ-ਬੋਰਡ ਸ਼ਾਰਟਕੱਟ ਪੁਨਰ-ਪ੍ਰਾਪਤ ਕਰੋ।ਬਹੁਭੁਜ ਦੀ ਸੋਧ ਤੇ ਪਾਬੰਦੀ ਲਾਓਉੱਲਟਪੁਨਰ-ਪ੍ਰਾਪਤਸੱਜੇ ਪਾਸੇਘੁੰਮਾਉਘੁੰਮਾੳ 90 ਡਿਗਰੀ ਘਡ਼ੀ ਦੀ ਉਲਟ-ਦਿਸ਼ਾ ਵਿੱਚਘੜੀ ਦੀ ਦਿਸ਼ਾ 90 ਡਿਗਰੀ ਤੇ ਘੁੰਮਾਓਘੁੰਮਾਉ ਚੈਨਲਪਰਤ ਘੁੰਮਾਉਮਾਰਗ ਘੁੰਮਾਉਪਾਠ ਪਰਤ ਨੂੰ ਘੁੰਮਾਉਘੁੰਮਾੳ 180 ਡਿਗਰੀਚਿੱਤਰ ਘੁੰਮਾਓਪਰਤ ਜਾਂ ਚੋਣ ਨੂੰ ਘੁੰਮਾਉਘੁੰਮਾ ਰਿਹਾ ਹੈ...ਘੁੰਮਾਉ ਜਾਣਕਾਰੀਗੋਲਘਟਾਓ(_h)ਗਰਿੱਡ ਵੇਖਾਓ(_h)ਸੁੰਘੜੋ(_h)...ਸਪੀਇਕ(_p)ਸਵੈਪ ਰੰਗ(_w)ਸਧਾਰਨ ਔਸਤਨਮੂਨਾ ਮਿਲਾਨਸਤ੍ਰਿਪਤੀ:ਸੰਤ੍ਰਿਪਤੀਸੰਭਾਲੋਗੋਲਾਈ ਸੰਭਾਲੋਗਲਤੀ ਲਾਗ ਨੂੰ ਫਾਇਲ ਵਿੱਚ ਸੰਭਾਲੋਚਿੱਤਰ ਸੰਭਾਲੋਇੰਪੁੱਟ ਜੰਤਰ ਵਿਵਸਥਾ ਹੁਣ ਸੰਭਾਲੋ(_N)ਕੀ-ਬੋਰਡ ਸ਼ਾਰਟਕੱਟ ਹੁਣ ਸੰਭਾਲੋ(_N)ਪੱਧਰ ਸੰਭਾਲੋਸੰਦ ਚੋਣ ਸੰਭਾਲੋਝਰੋਖਾ ਸਥਿਤੀ ਹੁਣ ਸੰਭਾਲੋ(_N)ਸਾਰੀਆਂ ਗਲਤੀਆਂ ਨੂੰ ਫਾਇਲ ਵਿੱਚ ਸੰਭਾਲੋ...ਚੋਣ ਨੂੰ ਫਾਇਲ ਵਿੱਚ ਸੰਭਾਲੋ...ਇਸਤਰਾਂ ਸੰਭਾਲੋ...ਨਕਲ ਕਰਕੇ ਸੰਭਾਲੋ...ਸਭ ਗਲਤੀਆਂ ਸੰਭਾਲੋPOV-ਕਿਰਨ ਇਸਤਰਾਂ ਸੰਭਾਲੋ...ਨਮੂਨਾ ਵਾਂਗ ਸੰਭਾਲੋ...ਜਦੋ ਵੀ ਜੈਮਪ ਬੰਦ ਹੋਵੇ ਤਾਂ, ਕੀ-ਬੋਰਡ ਸ਼ਾਰਟਕੱਟ ਵਿੱਚ ਤਬਦੀਲੀਆ ਨੂੰ ਸੰਭਾਲ ਲਵੇ।ਗੋਲਾਈ ਵਿਵਸਥਾਂ ਨੂੰ ਫਾਇਲ ਵਿੱਚ ਸੰਭਾਲੋਯੰਤਰ ਦੀ ਸਥਿਤੀ ਸੰਭਾਲੋPOV-ਕਿਰਨ ਢਾਲੂ ਵਾਂਗ ਸੰਭਾਲੋ...ਪੱਧਰ ਵਿਵਸਥਾਂ ਨੂੰ ਫਾਇਲ ਵਿੱਚ ਸੰਭਾਲੋਚੋਣ ਨੂੰ ਸੰਭਾਲੋ...ਚੋਣ ਸੰਭਾਲੋਚੈਨਲ ਤੇ ਚੋਣ ਸੰਭਾਲੋਕੀ ਚਿੱਤਰ '%s' ਨੂੰ ਬੰਦ ਕਰਨ ਤੋਂ ਪਹਿਲਾਂ ਸੰਭਾਲਣਾ ਹੈ?ਜਦੋ ਵੀ ਜੈਮਪ ਬੰਦ ਹੋਵੇ ਤਾਂ, ਮੁੱਖ ਤਖਤੀਆ ਦਾ ਅਕਾਰ ਤੇ ਸਥਿਤੀਆਂ ਨੂੰ ਸੰਭਾਲ ਲਵੇ।ਚੈਨਲ ਤੇ ਸੰਭਾਲੋ(_C)ਸੰਭਾਲੀ ਚੋਣ'%s' ਨੂੰ ਸੰਭਾਲਿਆ ਜਾ ਰਿਹਾ ਹੈ '%s' ਨੂੰ ਸੰਭਾਲਣਾ ਅਸਫਲ: -%sਮਾਪ-ਜਾਂਚਸਕੇਲ ਚੈਨਲਚਿੱਤਰ ਪੈਮਾਨਾਪਰਤ ਪੈਮਾਨਾਰਸਤਾ ਪੈਮਾਨਾਪਰਤ ਜਾਂ ਚੋਣ ਨੂੰ ਮਾਪ-ਜਾਂਚਛਾਂਗਣਾਪਰਦਾਸਕਰਿਪਟ-ਫੂ ਫੋਲਡਰਸਕਰਿਪਟਸੱਜਾ ਸਕਰੋਲਚੋਣਸਾਰੇ ਚੁਣੋਬੁਰਸ਼ ਫੋਲਡਰ ਚੁਣੋਰੰਗ ਅਨੁਸਾਰ ਚੁਣੋਰੰਗ ਚੁਣੋਵਾਤਾਵਰਣ ਫੋਲਡਰ ਚੁਣੋਫਾਇਲ ਕਿਸਮ (%s) ਚੁਣੋਫੋਂਟ ਫੋਲਡਰ ਚੁਣੋਢਾਲਵਾਂ ਫੋਲਡਰ ਚੁਣੋਮੈਡੀਊਲ ਫੋਲਡਰ ਚੁਣੋਕੋਈ ਨਾ ਚੁਣੋਰੰਗ-ਪੱਟੀ ਫੋਲਡਰ ਚੁਣੋਤਰਤੀਬ ਫੋਲਡਰ ਚੁਣੋਪਲੱਗ-ਇਨ ਫੋਲਡਰ ਚੁਣੋਮੁੱਖ ਰੰਗ ਨੂੰ ਸੋਧ ਲਈ ਚੁਣੋਸੋਧ ਲਈ ਸੀਮਾ ਸੋਧਸਕਰਿਪਟ-ਫੂ ਫੋਲਡਰ ਚੁਣੋਸਰੋਤ ਚੋਣਸਰੂਪ ਚੋਣਸਰੂਪ ਫੋਲਡਰ ਚੁਣੋਆਕਾਰ ਅਨੁਪਾਤ ਚੁਣੋਰੰਗ ਨਾਲ ਚੁਣੋਅੰਡਾਕਾਰ ਖੇਤਰ ਚੁਣੋਦਸਤੀ-ਉਲੀਕੇ ਖੇਤਰ ਚੁਣੋਆਇਤਕਾਰ ਖੇਤਰ ਚੁਣੋਖੇਤਰ ਨੂੰ ਰੰਗ ਅਨੁਸਾਰ ਚੁਣੋਚਿੱਤਰ ਤੋ ਖਾਕਾ ਚੁਣੋਚੋਣਚੋਣ ਸੋਧਕਮਖੋਟਾ ਚੋਣਚੋਣ ਸੰਦ ਤਰੀਕਾਚੋਣ:ਚੋਣ: ਜੋੜ੍ਹੋਚੋਣ: ਵਿੱਚਕਾਰ ਲਿਖੋਚੋਣ: ਤਬਦੀਲਚੋਣ: ਘਟਾਉਸੰਵੇਦਨਸ਼ੀਲਤਾਚੈਨਲ ਦਾ ਰੰਗ ਨਿਰਧਾਰਿਤ ਕਰੋਚੈਨਲ ਦਾ ਧੁੰਦਾਲਪਨ ਨਿਰਧਾਰਿਤ ਕਰੋਚਿੱਤਰ ਦੀ ਰੈਜ਼ੋਲੇਸ਼ਨ ਤਬਦੀਲ ਕਰੋਇਕਾਈ ਨੂੰ ਨਿਵੇਕਲਾਂ ਸੰਬੰਧਿਤ ਨਿਰਧਾਰਿਤ ਕਰੋਇਕਾਈ ਨੂੰ ਨਿਵੇਕਲਾਂ ਦਿੱਖ ਨਿਰਧਾਰਿਤ ਕਰੋਸਹਾਇਤਾ ਸਿਸਟਮ ਲਈ ਝਲਕਾਰਾ ਨਿਰਧਾਰਿਤ ਕਰੋ।ਨਿਰਧਾਰਿਤ ਕਰੋ ਕਿ ਚਿੱਤਰ ਵਿੱਚ ਪਾਰਦਰਸ਼ਤਾ ਕਿਵੇ ਵੇਖਾਈ ਜਾਵੇਕਰਸਰ ਦਾ ਮੋਡ ਨਿਰਧਾਰਿਤ ਕਰੋ ਜੋਕਿ ਜੈਮਪ ਵਰਤੇਗਾ।ਪਾਰਦਰਸ਼ਤਾ ਵੇਖਾਉਣ ਲਈ ਡੱਬੀਦਾਰ-ਖਾਕੇ ਦਾ ਅਕਾਰ ਨਿਰਧਾਰਿਤ ਕਰੋ।ਮੁਡ਼-ਉਹੀ ਅਤੀਤ ਵਿੱਚ ਨਮੂਨਿਆਂ ਦਾ ਅਕਾਰ ਨਿਰਧਾਰਿਤ ਕਰੋ।ਚਿੱਤਰ ਝਰੋਖੇ ਵਿੱਚ ਸਥਿਤੀ-ਪੱਟੀ ਵਿੱਚ ਪਾਠ ਦੇ ਦਰਿਸ਼ ਦਾ ਨਿਰਧਾਰਨ ਕਰੋਚਿੱਤਰ ਝਰੋਖੇ ਦੇ ਸਿਰਲੇਖ ਵਿੱਚ ਪਾਠ ਦੇ ਦਰਿਸ਼ ਦਾ ਨਿਰਧਾਰਨ ਕਰੋਪ੍ਛਾਵਾਂਖਾਕਾਖਾਕਾਘਟਾਉਪਰਤ ਜਾਂ ਚੋਣ ਨੂੰ ਘਟਾਉਘਟਾਉਣ ਦੀ ਜਾਣਕਾਰੀਘਟਾਇਆ ਜਾ ਰਿਹਾ ਹੈ...ਸਥਿਤੀ-ਪੱਟੀ ਵੇਖਾਓਸਕਰੋਲ-ਪੱਟੀ ਵੇਖਾਓਸੰਕੇਤ ਵਿਖਾਓਪਰਤ-ਹਾਸ਼ੀਆ ਵੇਖਾਓਮੇਨੂ-ਪੱਟੀ ਵੇਖਾਉਅਗਲੀ ਵਾਰ ਜੈਮਪ ਚੱਲਣ ਤੇ ਇਸ਼ਾਰਾ ਵਿਖਾਓਸੁੰਘੜ੍ਹੋ ਚੈਨਲਅਕਾਰਅਕਾਰ:ਛੱਡਿਆ ਜਾ ਰਿਹਾ ਹੈ '%s': ਗਲਤ ਜੈਮਪ ਪੋਰੋਟੋਕੋਲ ਵਰਜਨਛੋਟਾਛੋਟੇ ਨਮੂਨੇਮੁਲਾਇਮਮੁਲਾਅਮ ਕਿਨਾਰੇਧੱਬਾਧੱਬਾ ਚਿੱਤਰਸਾਫਟ ਰੋਸ਼ਨੀਇੱਕਸਰੋਤਖਾਲੀ-ਥਾਂਖਾਲ਼ੀ ਥਾਂ:ਖਾਸ ਫਾਇਲਨਿਰਧਾਰਿਤ ਕਰੋ ਚਿੱਤਰ ਦੁਆਲੇ ਖੇਤਰ ਕਿਸ-ਤਰਾਂ ਉਲੀਕਿਆ ਜਾਵੇ।ਗਤੀ:ਵੱਖ ਕਰੋਵਰਗਸਥਿਤੀ ਤੇ ਪਾਠ(_a)ਸਟਾਕਮਿਆਰੀਵਿਸਥਾਰ ਨੂੰ ਸ਼ੁਰੂ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈਵਿਸਥਾਰ ਨੂੰ ਸ਼ੁਰੂ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ: '%s' -ਸਥਿਤੀ:ਸਥਿਰ ਰੰਗਸਥਿਤੀ ਤੇ ਵਰਣਨਸਥਿਤੀ ਤੇ ਪਾਠਮਿਆਰੀ ਯੰਤਰ:ਬਿੰਦੀਕਾਰੀਛੋਹ ਰਸਤਾਝਟਕਾ ਚੋਣਘਟਾਉਮੌਜੂਦਾ ਚੋਣ ਵਿੱਚੋ ਹਟਾਉਸੰਦ(_o)ਪਾਠ ਸੰਦਨਮੂਨੇਨਮੂਨਾ ਮੇਨੂਆਰਜ਼ੀ ਤਰੀਕਾਪਾਠਪਾਠ ਰੰਗਪਾਠ ਸੰਪਾਦਕਪਾਠ ਪਰਤਪਾਠ ਤਰੀਕਾਜੈਮਪਸਰਗਰਮ ਬੁਰਸ਼। +%sਚਿੱਤਰ ਸੰਭਾਲੇ ਜਾ ਰਹੇ ਹਨਧਾਰੀਦਾਰ ਲਹਿਰਫੈਲਣਯੋਗ SVG ਚਿੱਤਰ (*.svg)ਮਾਪ-ਜਾਂਚਸਕੇਲ ਚੈਨਲਚਿੱਤਰ ਪੈਮਾਨਾਪਰਤ ਪੈਮਾਨਾਮਾਰਗ ਪੈਮਾਨਾਪਾਠ ਪਰਤ ਪੈਮਾਨਾਚਿੱਤਰ ਪੈਮਾਨਾਇਕਾਈ ਪੈਮਾਨਾਮਾਪ-ਜਾਂਚ ਅਨੁਪਾਤ X:ਮਾਪ-ਜਾਂਚ ਅਨੁਪਾਤ X:ਪੈਮਾਨਾ ਅਨੁਪਾਤ:ਪਰਤ ਜਾਂ ਚੋਣ ਨੂੰ ਮਾਪ-ਜਾਂਚਪੈਮਾਨਾਮਾਪ-ਜਾਂਚ ਜਾਣਕਾਰੀਛਾਂਗਣਾਪਰਦਾਸਕ੍ਰਿਪਟ-ਫੂ ਫੋਲਡਰਸਕ੍ਰਿਪਟਸਕਰੋਲ ਹੇਠਾਂਸਕਰੋਲ ਹੇਠਾਂ (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)ਚੋਣਸਾਰੇ ਚੁਣੋਬੁਰਸ਼ ਫੋਲਡਰ ਚੁਣੋਰੰਗ ਅਨੁਸਾਰ ਚੁਣੋਰੰਗ ਚੁਣੋਕੰਟਰੋਲਰ ਘਟਨਾ ਕਾਰਵਾਈ ਚੁਣੋਵਾਤਾਵਰਣ ਫੋਲਡਰ ਚੁਣੋਫਾਇਲ ਕਿਸਮ (%s) ਚੁਣੋਫੋਂਟ ਫੋਲਡਰ ਚੁਣੋਢਾਲਵਾਂ ਫੋਲਡਰ ਚੁਣੋਮੈਡੀਊਲ ਫੋਲਡਰ ਚੁਣੋਕੋਈ ਨਾ ਚੁਣੋਰੰਗ-ਪੱਟੀ ਫੋਲਡਰ ਚੁਣੋਤਰਤੀਬ ਫੋਲਡਰ ਚੁਣੋਪਲੱਗਿੰਨ ਫੋਲਡਰ ਚੁਣੋਮੁੱਖ ਰੰਗ ਨੂੰ ਸੋਧ ਲਈ ਚੁਣੋਸੋਧ ਲਈ ਸੀਮਾ ਸੋਧਸਕ੍ਰਿਪਟ-ਫੂ ਫੋਲਡਰ ਚੁਣੋਸਰੋਤ ਚੋਣਸਵੈਪ ਫੋਲਡਰ ਚੁਣੋਆਰਜ਼ੀ ਫੋਲਡਰ ਚੁਣੋਸਰੂਪ ਚੋਣਸਰੂਪ ਫੋਲਡਰ ਚੁਣੋਆਕਾਰ ਅਨੁਪਾਤ ਚੁਣੋਥੱਲੇ ਵਾਲੀ ਪਰਤ ਚੁਣੋ(_B)ਪਸੰਦੀਦਾ ਰੰਗ ਵਰਤੋਂ(_C)...ਅਗਲੀ ਪਰਤ ਚੁਣੋ(_N)ਪਿਛਲੀ ਪਰਤ ਚੁਣੋ(_P)ਉਪਰਲੀ ਪਰਤ ਚੁਣੋ(_T)ਸਭ ਚੁਣੋਰੰਗ ਨਾਲ ਚੁਣੋਲਗਾਤਾਰ ਖੇਤਰ ਚੁਣੋਅੰਡਾਕਾਰ ਖੇਤਰ ਚੁਣੋਦਸਤੀ-ਉਲੀਕੇ ਖੇਤਰ ਚੁਣੋਕੋਈ ਨਾ ਚੁਣੋਰੰਗ-ਪੱਟੀ ਫੋਲਡਰ ਚੁਣੋਆਇਤਕਾਰ ਖੇਤਰ ਚੁਣੋਖੇਤਰ ਨੂੰ ਰੰਗ ਅਨੁਸਾਰ ਚੁਣੋਚਿੱਤਰ ਤੋ ਖਾਕਾ ਚੁਣੋਸਵੈਪ ਡਾਇ ਚੁਣੋਪਾਰਦਰਸ਼ੀ ਖੇਤਰ ਚੁਣੋਵੈਬ ਝਲਕਾਰਾ ਚੁਣੋਮਾਰਗ ਲਈ ਚੋਣ(_o)ਚੋਣਚੋਣ ਸੋਧਕਚੋਣ ਸੰਪਾਦਕ ਮੇਨੂਮਖੋਟਾ ਚੋਣਚੋਣ ਸੰਦ ਤਰੀਕਾਮਖੌਟਾ ਚੋਣਮਾਰਗ ਲਈ ਚੋਣ (ਤਕਨੀਕੀ(_A))ਮਾਰਗ ਲਈ ਚੋਣਚੋਣ:ਚੋਣ: ਜੋੜ੍ਹੋਚੋਣ: ਵਿੱਚਕਾਰ ਲਿਖੋਚੋਣ: ਤਬਦੀਲਚੋਣ: ਘਟਾਉਸੰਵੇਦਨਸ਼ੀਲਤਾਚੈਨਲ ਦਾ ਰੰਗ ਨਿਰਧਾਰਿਤ ਕਰੋਚੈਨਲ ਦਾ ਧੁੰਦਾਲਪਨ ਨਿਰਧਾਰਿਤ ਕਰੋਰੰਗ-ਖਾਕਾ ਨਿਰਧਾਰਨਚਿੱਤਰ ਦੀ ਰੈਜ਼ੋਲੇਸ਼ਨ ਤਬਦੀਲ ਕਰੋਇਕਾਈ ਨੂੰ ਨਿਵੇਕਲਾਂ ਸੰਬੰਧਿਤ ਨਿਰਧਾਰਿਤ ਕਰੋਇਕਾਈ ਨੂੰ ਨਿਵੇਕਲਾਂ ਦਿੱਖ ਨਿਰਧਾਰਿਤ ਕਰੋਧੁੰਦਲਾਪਨ ਨਿਧਾਰਨਪਿੱਠਭੂਮੀ ਰੰਗ ਨਿਰਧਾਰਨਮੁੱਖ-ਭੂਮੀ ਰੰਗ ਨਿਰਧਾਰਨਇਕਾਈ ਸਬੰਧ ਨਿਰਧਾਰਨਪਰਤ ਮੋਡ ਨਿਰਧਾਰਨਪਰਤ ਧੁੰਦਲਾਪਨ ਨਿਰਧਾਰਨਸਹਾਇਤਾ ਸਿਸਟਮ ਲਈ ਝਲਕਾਰਾ ਨਿਰਧਾਰਿਤ ਕਰੋ।ਨਿਰਧਾਰਿਤ ਕਰੋ ਕਿ ਚਿੱਤਰ ਵਿੱਚ ਪਾਰਦਰਸ਼ਤਾ ਕਿਵੇ ਵੇਖਾਈ ਜਾਵੇਕਰਸਰ ਦਾ ਮੋਡ ਨਿਰਧਾਰਿਤ ਕਰੋ ਜੋਕਿ ਜੈਮਪ ਵਰਤੇਗਾ।ਕਰਸਰ ਦੇ ਪਿਕਸਲ ਫਾਰਮਿਟ ਦਿਓ, ਜੋ ਕਿ ਜੈਮਪ ਵਰਤੇਗਾ।ਨਵੇਂ ਬਣੇ ਵਾਰਤਾਲਾਪ ਵਿੱਚ ਪਰਤਾਂ ਅਤੇ ਚੈਨਲਾਂ ਦਾ ਮੂਲ ਨਮੂਨਾ ਅਕਾਰ ਨਿਰਧਾਰਿਤ ਕਰੋ।ਪਾਰਦਰਸ਼ਤਾ ਵੇਖਾਉਣ ਲਈ ਡੱਬੀਦਾਰ-ਖਾਕੇ ਦਾ ਅਕਾਰ ਨਿਰਧਾਰਿਤ ਕਰੋ।ਮੁਡ਼-ਉਹੀ ਅਤੀਤ ਵਿੱਚ ਨਮੂਨਿਆਂ ਦਾ ਅਕਾਰ ਨਿਰਧਾਰਿਤ ਕਰੋ।ਚਿੱਤਰ ਝਰੋਖੇ ਵਿੱਚ ਸਥਿਤੀ-ਪੱਟੀ ਵਿੱਚ ਪਾਠ ਦੇ ਦਰਿਸ਼ ਦਾ ਨਿਰਧਾਰਨ ਕਰੋਚਿੱਤਰ ਝਰੋਖੇ ਦੇ ਸਿਰਲੇਖ ਵਿੱਚ ਪਾਠ ਦੇ ਦਰਿਸ਼ ਦਾ ਨਿਰਧਾਰਨ ਕਰੋਛਾਂ ਕਿਸਮਪ੍ਛਾਵਾਂਖਾਕਾਖਾਕਾਸ਼ਕਲ (ਕੋਣਾਕਾਰ)ਸ਼ਕਲ (ਲਹਿਰਦਾਰ)ਸ਼ਕਲ (ਗੋਲਾਕਾਰ)ਉਘੜਵਾਂਘਟਾਉX ਦੇ ਮੁੱਲ ਨੂੰ ਘਟਾਓ:X ਦੇ ਮੁੱਲ ਨੂੰ ਘਟਾਓ:ਪਰਤ ਜਾਂ ਚੋਣ ਨੂੰ ਘਟਾਉਘਟਾਉਣ ਦੀ ਜਾਣਕਾਰੀਘਟਾਇਆ ਜਾ ਰਿਹਾ ਹੈ...ਛੋਟੀਆਂ ਧਾਰੀਆਂਸ਼ਾਰਟਕੱਟਸ਼ਾਰਟਕੱਟ "%s" ਨੂੰ ਪਹਿਲਾਂ ਹੀ "%s" ਨੇ ਸਮੂਹ "%s" ਰਾਹੀਂ ਲੈ ਲਿਆ ਹੈ।ਪਰਤ-ਮਖੌਟਾ ਵੇਖਾਓਪੈਮਾਨਾ ਵੇਖਾਓ(_u)ਸਥਿਤੀ-ਪੱਟੀ ਵੇਖਾਓਸਕਰੋਲ-ਪੱਟੀ ਵੇਖਾਓਸੰਕੇਤ ਵਿਖਾਓਪਰਤ-ਹਾਸ਼ੀਆ ਵੇਖਾਓਮੇਨੂ-ਪੱਟੀ ਵੇਖਾਉਚੋਣ ਵੇਖਾਓ(_S)ਬੁਰਸ਼ ਖਾਕਾ ਵੇਖਾਓ(_b)ਮੁੱਖਭੂਮੀ ਤੇ ਪਿੱਠਭੂਮੀ ਰੰਗ ਵੇਖਾਓਸੰਕੇਤ ਵਿਖਾਓ(_g)ਪਰਤ-ਹਾਸ਼ੀਆ ਵੇਖਾਓ(_l)ਮੇਨੂ-ਪੱਟੀ ਵੇਖਾਓ(_m)ਪੈਮਾਨਾ ਵੇਖਾਓ(_r)ਬੁਰਸ਼, ਤਰਤੀਬਾਂ ਤੇ ਢਾਲੂ ਵੇਖਾਓ(_b)ਸਰਗਰਮ ਚਿੱਤਰ ਵੇਖਾਓ(_i)ਗਰਿੱਡ ਵੇਖਾਓ(_d)ਸਹਾਇਤਾ ਬਟਨ ਵੇਖਾਓ(_b)ਚਿੱਤਰ ਅਕਾਰ ਵੇਖਾਓਪਰਸਰ-ਪ੍ਰਭਾਵੀ ਹਾਸ਼ੀਏ ਵੇਖਾਓਵਰਤੀ ਮੈਮੋਰੀ ਵੇਖਾਓਪੇਂਟ ਸੰਦ ਕਰਸਰ ਵੇਖਾਓ(_t)ਚੋਣ ਵੇਖਾਓ(_e)ਸਥਿਤੀ-ਪੱਟੀ ਵੇਖਾਓ(_t)ਸਕਰੋਲ-ਪੱਟੀ ਵੇਖਾਓ(_b)ਅਗਲੀ ਵਾਰ ਜੈਮਪ ਚੱਲਣ ਤੇ ਇਸ਼ਾਰਾ ਵਿਖਾਓਸ਼ੁਰੂ ਤੇ ਇਸ਼ਾਰਾ ਵੇਖਾਓ(_s)ਸੰਦ-ਸੰਕੇਤ ਵੇਖਾਓ(_t)ਜ਼ੂਮ ਪ੍ਰਤੀਸ਼ਤ ਵੇਖਾਓਜ਼ੂਮ ਅਕਾਰ ਵੇਖਾਓਸੁੰਘੜ੍ਹੋ ਚੈਨਲਅਕਾਰਮੈਮੋਰੀ ਵਿੱਚ ਅਕਾਰ:ਥੰਮਨੇਲ ਅਕਾਰ(_t):ਅਕਾਰ:ਛੱਡਿਆ ਜਾ ਰਿਹਾ ਹੈ '%s': ਗਲਤ ਜੈਮਪ ਪ੍ਰੋਟੋਕਾਲ ਵਰਜਨ ਹੈ।ਛੋਟਾਛੋਟੇ ਨਮੂਨੇਮੁਲਾਇਮਮੁਲਾਅਮ ਕਿਨਾਰੇਧੱਬਾਧੱਬਾ ਚਿੱਤਰਗਰਿੱਡ ਦੀ ਤਸਵੀਰ(_p)ਸਾਫਟ ਰੋਸ਼ਨੀਇੱਕਸਰੋਤਖਾਲੀ-ਥਾਂਖਾਲ਼ੀ ਥਾਂ:ਵਿਰਲੇ ਬਿੰਦੂਖਾਸ ਫਾਇਲਨਿਰਧਾਰਿਤ ਕਰੋ ਚਿੱਤਰ ਦੁਆਲੇ ਖੇਤਰ ਕਿਸ-ਤਰਾਂ ਉਲੀਕਿਆ ਜਾਵੇ।ਗਤੀ:ਕਿੱਲ:ਘੁੰਮਾਓ (ਘਡ਼ੀ ਦਿਸ਼ਾ ਵਿੱਚ)ਘੁੰਮਾਓ (ਸੱਜਾ ਪਾਸੇ)ਵੱਖ ਕਰੋਵਰਗਸਥਿਤੀ ਤੇ ਪਾਠ(_a)ਸਟਾਕਮਿਆਰੀਵਿਸਥਾਰ ਨੂੰ ਸ਼ੁਰੂ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈਵਿਸਥਾਰ ਨੂੰ ਸ਼ੁਰੂ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ: '%s' +ਸਥਿਤੀ:ਸਥਿਰ ਰੰਗਸਥਿਰ ਸਲੇਟੀਸਥਿਤੀ ਤੇ ਵਰਣਨਸਥਿਤੀ ਤੇ ਪਾਠਮਿਆਰੀ ਯੰਤਰ:ਬਿੰਦੀਕਾਰੀਸਟਾਕ IDਛੋਹ ਮਾਰਗ(_k)ਛੋਹ ਮਾਰਗ(_k)...ਚੈਨਲ ਛੋਹਛੋਹ ਮਾਰਗਝਟਕਾ ਚੋਣਝਟਕਾ ਸਤਰਛੋਹ ਮਾਰਗਛੋਹ ਮਾਰਗ...ਆਖਰੀ ਮੁੱਲ ਨਾਲ ਚੋਣ ਝਟਕਾਚੋਣ ਝਟਕਾ...ਪੇਂਟ ਸੰਦ ਨਾਲ ਛੋਹਘਟਾਉਮੌਜੂਦਾ ਚੋਣ ਵਿੱਚੋ ਹਟਾਉਸਵੈਪ ਫੋਲਡਰ:ਸੰਦ(_o)ਪਾਠ(_x)ਪਾਠ ਸੰਦਆਰਜ਼ੀ ਫੋਲਡਰ:ਨਮੂਨੇਨਮੂਨਾ ਮੇਨੂਆਰਜ਼ੀ ਤਰੀਕਾਪਲੱਗਿੰਨ ਖਤਮ ਕੀਤੀ ਜਾ ਰਹੀ ਹੈ: '%s' +ਪਾਠਪਾਠ ਰੰਗਪਾਠ ਸੰਪਾਦਕਪਾਠ ਪਰਤਪਾਠ ਸੋਧਪਾਠ ਤਰੀਕਾਜੈਮਪਸਰਗਰਮ ਬੁਰਸ਼। ਬੁਰਸ਼ ਤਖਤੀ ਖੋਲਣ ਲਈ ਦਬਾਉ।ਸਰਗਰਮ ਢਾਲਵਾਂ। ਢਾਲਵਾਂ ਤਖਤੀ ਖੋਲਣ ਲਈ ਦਬਾਉ।ਸਰਗਰਮ ਚਿੱਤਰ ਚਿੱਤਰ ਤਖਤੀ ਖੋਲਣ ਲਈ ਦਬਾਉ।ਸਰਗਰਮ ਤਰਤੀਬ ਤਰਤੀਬ ਤਖਤੀ ਖੋਲਣ ਲਈ ਦਬਾਉ।ਗਰਿੱਡ ਦਾ ਪਿੱਠਭੂਮੀ ਰੰਗ; ਕੇਵਲ ਦੂਹਰੀ ਧਾਰੀਦਾਰ ਰੇਖਾ ਸ਼ੈਲੀ ਨਾਲ ਹੀ ਵਰਤਿਆ ਜਾਵੇਗਾ।ਬੈਚ ਇੰਟਰਪ੍ਰੇਟਰ '%s' ਉਪਲੱਬਧ ਨਹੀਂ ਹੈ, ਬੈਚ ਢੰਗ ਆਯੋਗ ਹੈ।ਫਾਇਲ-ਨਾਂ '%s' ਨੂੰ ਜਾਇਜ਼ URI ਵਿੱਚ ਤਬਦੀਲ ਨਹੀ ਕੀਤਾ ਜਾ ਸਕਦਾ ਹੈ: -%sਗਰਿੱਡ ਦਾ ਮੁੱਖ-ਭੂਮੀ ਰੰਗਲੰਬਕਾਰੀ ਚਿੱਤਰ ਰੈਜ਼ੋਲੇਸ਼ਨਸਰੂਪਸਰੂਪ ਫੋਲਡਰਸਰੂਪਹੇਠਾਂ ਨੂੰ ਵਿਲੀਨ ਕਰਨ ਲਈ ਲੋਡ਼ੀਦੀਆਂ ਉਪਲੱਬਧ ਦਿੱਖ ਪਰਤਾਂ ਨਹੀ ਹਨ।ਛੋਹਣ ਲਈ ਕੋਈ ਸਰਗਰਮ ਪਰਤ ਜਾਂ ਚੈਨਲ ਨਹੀ ਹੈਤੁਹਾਡੀ ਫਾਇਲ '%s' ਨੂੰ ਪਾਰਸ ਕਰਨ ਵਿੱਚ ਗਲਤੀ ਹੈ। ਤੁਹਾਡੀ ਸੰਰਚਨਾ ਦਾਇੱਕ ਬੈਕਅੱਪ '%s' ਤੇ ਬਣਾਇਆ ਗਿਆ ਹੈ।ਇਹ ਪਿਕਸਲਾਂ ਵਿੱਚਕਾਰ ਦੂਰੀ ਹੈ, ਜਿਥੇ ਕਿ ਗਾਈਡ ਤੇ ਗਰਿਡ ਅਚਾਨਕ ਸਰਗਰਮੀ ਹੈ।ਇਹ ਪਾਠ ਇੰਪੁੱਟ ਖੇਤਰ %d ਅੱਖਰਾਂ ਲਈ ਰਾਖਵਾਂ ਹੈ।ਇਸ ਸੰਦ ਲਈ ਕੋਈ ਚੋਣ ਨਹੀ ਹੈ।ਮੁੱਢਲਾ ਮੁੱਲਮੁੱਢਲਾ-ਮੁੱਲ ਤਤਕਰਾ-ਪਰਤਾਂ ਤੇ ਕਾਰਜ ਨਹੀ ਕਰਦਾ ਹੈ।ਅਧਾਰ ਮੁੱਲ:ਥੰਮਨੇਲ %d ਦਾ %dਸਿਰਲੇਖ:ਬਾਰੀਕਸਿਰਲੇਖ ਤੇ ਸਥਿਤੀਕਈ ਗਲਤੀਆਂ ਲੱਭੀਆਂ ਹਨ!ਸੰਦ ਚੋਣਸੰਦ ਚੋਣ ਮੇਨੂਸੰਦ ਤਬਦੀਲ %sਸੰਦ ਚੋਣ(_O)ਸੰਦਪੱਟੀ ਬਕਸਾ(_b)ਸੰਦਪੱਟੀ ਮੇਨੂਸੰਦਪਾਰਦਰਸ਼ਤਾਐਲਫਾ ਨੂੰ ਮਖੌਟੇ ਵਿੱਚ ਤਬਦੀਲ ਕਰੋਤਬਦੀਲਤਬਦੀਲ ਚੈਨਲਤਬਦੀਲ ਦਿਸ਼ਾਤਬਦੀਲ ਪਰਤਰਸਤਾ ਤਬਦੀਲਤਬਦੀਲੀ ਸੰਦ ਤਰੀਕਾਤਬਦੀਲੀਤਬਦੀਲ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ...ਭਾਸ਼ਾ ਤਬਦੀਲ ਕੀਤੀਪਾਰਦਰਸ਼ਤਾਅਸਲੀ ਰੰਗਕਿਸਮਕਿਸਮ %sਜਾਂਚ ਸਵੈਪ ਫਾਇਲ ਖੋਲਣ ਵਿੱਚ ਅਸਫਲ ਹੈ। ਡਾਟਾ ਗੁਆਉਣ ਤੋ ਬਚਣ ਲਈ ਕਿਰਪਾ ਕਰਕੇ ਆਪਣੀ ਪਸੰਦ ਵਿੱਚ ਨਿਰਧਾਰਿਤ ਕੀਤੀ ਸਵੈਪ ਡਾਇਰੈਕਟਰੀ ਦੀ ਸਥਿਤੀ ਅਤੇ ਅਧਿਕਾਰ ਵੇਖ ਲਵੋ (ਮੌਜੂਦਾ "%s")ਨਾ-ਪਰਾਭਾਸ਼ਿਤਵਾਪਿਸਮੁਡ਼ ਕਰੋ ਦਾ ਅਤੀਤਮੁਡ਼ ਕਰੋ ਅਤੀਤ(_H)ਇਕਾਈਅਣਪਛਾਤਾਅਣਪਛਾਤੀ ਫਾਇਲ ਕਿਸਮਅਨ-ਲੋਡਬੇ-ਨਾਮਬਿਨਾਂ ਸਿਰਲੇਖਵੈਬ ਝਲਕਾਰਾ ਵਰਤੋਂ(_w)ਸਾਰੀਆਂ ਪਰਤੋ ਵਰਤੋ ਜਦੋ ਕਿ ਚੋਣ ਨੂੰ ਸੰਗੇਡ਼ਿਆ ਜਾਵੇਉਪਭੋਗੀ ਇੰਸਟਾਲੇਸ਼ਨ ਲਾਗਯੂਜਰ ਇੰਟਰਫੇਸ(ਸ਼ਕਲ)ਸਹੂਲਤ ਝਰੋਖਾਮੁੱਲਮੁੱਲ:ਵਰਜਨ %s ਤੁਹਾਡੇ ਲਈ ਲੈਕੇ ਆਏ ਹਨਵਰਜਨ:ਲੰਬਕਾਰੀਗਰਿੱਡ ਰੇਖਾਵਾਂ ਵਿੱਚ ਲੰਬਕਾਰੀ ਦੂਰੀਵੇਖੋਗਰਿੱਡ ਵਾਂਗ ਵੇਖੋ(_G)ਸੂਚੀ ਵਾਂਗ ਵੇਖੋ(_L)ਗਰਿੱਡ ਵਾਂਗ ਵੇਖੋਸੂਚੀ ਵਾਂਗ ਵੇਖੋਵੈਬ ਬਰਾਊਜ਼ਰਵੈਬ ਝਲਕਾਰਾਜੇਕਰ ਯੋਗ ਕਰ ਦਿੱਤਾ ਗਿਆ ਹੈ ਤਾਂ ਤਖਤੀ ਸਵੈ ਹੀ ਚਿੱਤਰ ਜਿਸ ਤੇ ਤੁਸੀ ਕੰਮ ਕਰ ਰਹੇ ਹੋ ਦੇ ਨਾਲ ਚਲੇਗਾ।ਯੋਗ ਕਰਨ ਤੇ ਮੇਨੂ ਵੱਖ ਕੀਤੇ ਜਾ ਸਕਣਗੇ।ਜਦੋ ਯੋਗ ਕੀਤਾ ਤਾਂ , F1 ਦਬਾਉਣ ਨਾਲ ਸਹਾਇਤਾ ਝਲਕਾਰਾ ਖੁੱਲ ਜਾਵੇਗਾ।ਜਦੋ ਨਿਰਧਾਰਿਤ ਕੀਤਾ ਤਾਂ, ਜੈਮਪ ਹਰੇਕ ਚਿੱਤਰ ਲਈ ਵੱਖਰਾ ਜਾਣਕਾਰੀ ਝਰੋਖਾ ਵਰਤੇਗਾ।ਜਦੋ ਨਿਰਧਾਰਿਤ ਕੀਤਾ ਤਾਂ, ਚਿੱਤਰ ਝਰੋਖਾ ਅਕਾਰ ਦੇ ਵਾਧੇ ਅਤੇ ਘਟਾ ਸਾਰਆਪਣੇ ਆਪ ਨੂੰ ਤਬਦੀਲ ਕਰ ਲਵੇਗਾ।ਜਦੋ ਨਿਰਧਾਰਿਤ ਕੀਤਾ ਤਾਂ, ਚਿੱਤਰ ਝਰੋਖਾ ਵਾਸਵਤਿਕ ਚਿੱਤਰ ਦੇ ਅਕਾਰ ਵਿੱਚ ਤਬਦੀਲੀ ਅਨੁਸਾਰ ਆਪਣੇ ਆਪ ਨੂੰ ਤਬਦੀਲ ਕਰ ਲਵੇਗਾ।ਜਦੋ ਚੁਣਿਆ ਗਿਆ ਤਾਂ, ਚੁਣਿਆ ਬੁਰਸ਼ ਸਭ ਸੰਦਾਂ ਲਈ ਵਰਤਿਆ ਜਾਵੇਗਾ।ਜਦੋ ਚੁਣਿਆ ਗਿਆ ਤਾਂ, ਚੁਣਿਆ ਢਾਲੂ ਸਭ ਸੰਦਾਂ ਲਈ ਵਰਤਿਆ ਜਾਵੇਗਾ।ਜਦੋ ਚੁਣਿਆ ਗਿਆ ਤਾਂ, ਚੁਣੀ ਤਰਤੀਬ ਸਭ ਸੰਦਾਂ ਲਈ ਵਰਤੀ ਜਾਵੇਗੀ।ਜਦੋ ਇਹ ਨਿਰਧਾਰਿਤ ਕੀਤਾ ਗਿਆ ਤਾਂ ਇਹ ਯਕੀਨੀ ਬਣਾਇਆ ਜਾਵੇਗਾ ਕਿ ਚਿੱਤਰ ਦਾ ਹਰੇਕ ਪਿਕਸਲ ਨੂੰਸਕਰੀਨ ਦੇ ਪਿਕਸਲ ਨਾਲ ਮੇਲ ਦਿੱਤਾ ਜਾਵੇਗਾ।ਜਦੋ ਨਿਰਧਾਰਿਤ ਕੀਤਾ ਤਾਂ, ਫਾਇਲ ਖੋਲਣ ਮਗਰੋਂ ਪੂਰਾ ਚਿੱਤਰ ਖੁਲੇਗਾ, ਨਹੀ ਤਾਂਇਹ 1:1 ਅਨੁਪਾਤ ਵਿੱਚ ਖੁੱਲੇਗਾ ।ਸਫੈਦਚੌਡ਼ਾਈਚੌਡ਼ਾਈ:ਝਰੋਖਾ ਪ੍ਰਬੰਧਨਝਰੋਖਾ ਸਥਿਤੀਲਿਖਿਆ ਜਾ ਰਿਹਾ ਹੈ '%s' -XCF ਗਲਤੀ: ਨਾ-ਸਹਿਯੋਗੀ XCF ਫਾਇਲ ਵਰਜਨ %d ਮਿਲਿਆ ਹੈXCF ਚੇਤਵਾਨੀ: XCF ਫਾਇਲ ਫਾਰਮਿਟ ਦਾ ਵਰਜਨ 0 +%sਗਰਿੱਡ ਦਾ ਮੁੱਖ-ਭੂਮੀ ਰੰਗਖਿਤਿਜੀ ਚਿੱਤਰ ਰੈਜ਼ੋਲੇਸ਼ਨ ਹੈ।ਲੰਬਕਾਰੀ ਚਿੱਤਰ ਰੈਜ਼ੋਲੇਸ਼ਨਸਰੂਪਸਰੂਪ ਫੋਲਡਰਸਰੂਪ%d ਚਿੱਤਰ ਨਾ ਸੰਭਾਲੇ ਗਏ ਹਨ:ਹੇਠਾਂ ਨੂੰ ਵਿਲੀਨ ਕਰਨ ਲਈ ਲੋਡ਼ੀਦੀਆਂ ਉਪਲੱਬਧ ਦਿੱਖ ਪਰਤਾਂ ਨਹੀ ਹਨ।ਛੋਹਣ ਲਈ ਕੋਈ ਸਰਗਰਮ ਪਰਤ ਜਾਂ ਚੈਨਲ ਨਹੀ ਹੈਇੱਕ ਚਿੱਤਰ ਵਿੱਚ ਇੱਕ ਨਾ ਸੰਭਾਲਿਆ ਚਿੱਤਰ:ਫਾਇਲ %s ਹੋਣੀ ਚਾਹੀਦੀ ਹੈ। ਕਿਰਪਾ ਕਰਕੇ ਆਪਣੀ ਇੰਸਟਾਲੇਸ਼ਨ ਦੀ ਪੜਤਾਲ ਕਰੋ।ਤੁਹਾਡੀ ਫਾਇਲ '%s' ਨੂੰ ਪਾਰਸ ਕਰਨ ਵਿੱਚ ਗਲਤੀ ਹੈ। ਤੁਹਾਡੀ ਸੰਰਚਨਾ ਦਾਇੱਕ ਬੈਕਅੱਪ '%s' ਤੇ ਬਣਾਇਆ ਗਿਆ ਹੈ।ਇਹ ਫੋਲਡਰ ਚਿੱਤਰ ਨਮੂਨਿਆਂ ਦੀ ਖੋਜ ਕਰਨ ਲਈ ਵਰਤਿਆ ਜਾਦਾ ਹੈ।ਇਹ ਪਿਕਸਲਾਂ ਵਿੱਚਕਾਰ ਦੂਰੀ ਹੈ, ਜਿਥੇ ਕਿ ਗਾਈਡ ਤੇ ਗਰਿਡ ਅਚਾਨਕ ਸਰਗਰਮੀ ਹੈ।ਇਹ ਪਾਠ ਇੰਪੁੱਟ ਖੇਤਰ %d ਅੱਖਰਾਂ ਲਈ ਰਾਖਵਾਂ ਹੈ।ਇਸ ਸੰਦ ਲਈ ਕੋਈ ਚੋਣ ਨਹੀ ਹੈ।ਮੁੱਢਲਾ ਮੁੱਲਮੁੱਢਲਾ-ਮੁੱਲ ਤਤਕਰਾ-ਪਰਤਾਂ ਤੇ ਕਾਰਜ ਨਹੀ ਕਰਦਾ ਹੈ।ਅਧਾਰ ਮੁੱਲ:ਥੰਮਨੇਲ %d ਦਾ %dਕੈਂਚੇ ਅਕਾਰ(_s):ਕੈਂਚੇ ਅਕਾਰ:ਸਿਰਲੇਖ:ਬਾਰੀਕਸਿਰਲੇਖ ਤੇ ਸਥਿਤੀਮਾਰਗ ਲਈ(_P)ਖਿਡੌਣੇ(_y)ਤੇਜ਼ ਮਖੌਟਾ ਤਬਦੀਲਤੇਜ਼ ਮਖੌਟਾ ਤਬਦੀਲ(_Q)ਕਈ ਗਲਤੀਆਂ ਲੱਭੀਆਂ ਹਨ!ਸੰਦ ਚੋਣਸੰਦ ਚੋਣ ਮੇਨੂਸੰਦ ਤਬਦੀਲ %sਸੰਦ ਚੋਣ(_O)ਸੰਦ ਆਈਕਾਨਕਰਾਸਹੇਅਰ ਲਈ ਸੰਦ ਆਈਕਾਨਸੰਦਪੱਟੀ ਬਕਸਾ(_b)ਸੰਦਬਕਸਾਸੰਦਪੱਟੀ ਮੇਨੂਸੰਦਸੰਦ ਮੇਨੂਪਾਰਦਰਸ਼ਤਾਐਲਫਾ ਨੂੰ ਮਖੌਟੇ ਵਿੱਚ ਤਬਦੀਲ ਕਰੋਤਬਦੀਲਤਬਦੀਲ ਚੈਨਲਤਬਦੀਲ ਦਿਸ਼ਾਤਬਦੀਲ ਪਰਤਮਾਰਗ ਤਬਦੀਲਪਾਠ ਤਬਦੀਲ ਪਰਤਤਬਦੀਲੀ ਸੰਦ ਤਰੀਕਾਤਬਦੀਲ ਪਰਤਮਾਰਗ ਤਬਦੀਲਚੋਣ ਤਬਦੀਲਤਬਦੀਲੀਤਬਦੀਲੀ ਵਿਧੀਤਬਦੀਲ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ...ਭਾਸ਼ਾ ਤਬਦੀਲ ਕੀਤੀਪਾਰਦਰਸ਼ਤਾਪਾਰਦਰਸ਼ਤਾ ਕਿਸਮ(_t):ਤਿਕੋਨੀ ਲਹਿਰਅਸਲੀ ਰੰਗਕਿਸਮਕਿਸਮ %sਨਵਾਂ ਪ੍ਰਵੇਸ਼ਕ ਦਿਓਨਵਾਂ ਪ੍ਰਵੇਸ਼ਕ ਦਿਓ ਜਾਂ ਸਾਫ਼ ਕਰਨ ਲਈ ਬੈਕਸਪੇਸ ਦਿਓ।ਜਾਂਚ ਸਵੈਪ ਫਾਇਲ ਖੋਲਣ ਵਿੱਚ ਅਸਫਲ ਹੈ। ਡਾਟਾ ਗੁਆਉਣ ਤੋ ਬਚਣ ਲਈ ਕਿਰਪਾ ਕਰਕੇ ਆਪਣੀ ਪਸੰਦ ਵਿੱਚ ਨਿਰਧਾਰਿਤ ਕੀਤੀ ਸਵੈਪ ਡਾਇਰੈਕਟਰੀ ਦੀ ਸਥਿਤੀ ਅਤੇ ਅਧਿਕਾਰ ਵੇਖ ਲਵੋ (ਮੌਜੂਦਾ "%s")ਨਾ-ਪਰਾਭਾਸ਼ਿਤਵਾਪਿਸਮੁਡ਼ ਕਰੋ ਦਾ ਅਤੀਤਮੁਡ਼ ਕਰੋ ਅਤੀਤ(_H)ਇਕਾਈਅਣਪਛਾਤਾਅਣਪਛਾਤੀ ਫਾਇਲ ਕਿਸਮਰੰਗ-ਪੱਟੀ ਫਾਇਲ ਦੀ ਅਣਜਾਣੀ ਕਿਸਮ: +%sਅਨ-ਲੋਡਬੇ-ਨਾਮਬਿਨਾਂ ਸਿਰਲੇਖਸਫ਼ਰੀ ਕੀ-ਬੋਰਡ ਸ਼ਾਰਟਕੱਟ ਵਰਤੋਂ(_d)ਵੈਬ ਝਲਕਾਰਾ ਵਰਤੋਂ(_w)ਸਾਰੀਆਂ ਪਰਤੋ ਵਰਤੋ ਜਦੋ ਕਿ ਚੋਣ ਨੂੰ ਸੰਗੇਡ਼ਿਆ ਜਾਵੇਕਾਲੀ ਤੇ ਚਿੱਟੀ ਰੰਗ ਪੱਟੀ (1-ਬਿੱਟ) ਵਰਤੋਂਢਾਲਵੇਂ ਤੋ ਰੰਗ ਵਰਤੋਂਸੋਧੀ ਰੰਗ-ਪੱਟੀ ਵਰਤੋਂਜਾਣਕਾਰੀ ਝਰੋਖਾ ਵਰਤੋਂਵੈਬ-ਅਨੁਕੂਲ ਰੰਗ-ਪੱਟੀ ਵਰਤੋਂਉਪਭੋਗੀ ਇੰਸਟਾਲੇਸ਼ਨ ਲਾਗਯੂਜਰ ਇੰਟਰਫੇਸ(ਸ਼ਕਲ)ਸਹੂਲਤ ਝਰੋਖਾਮੁੱਲਮੁੱਲ:ਵੈਕਟਰ ਢੰਗਵਰਜਨ %s ਤੁਹਾਡੇ ਲਈ ਲੈਕੇ ਆਏ ਹਨਵਰਜਨ:ਲੰਬਕਾਰੀਗਰਿੱਡ ਰੇਖਾਵਾਂ ਵਿੱਚ ਲੰਬਕਾਰੀ ਦੂਰੀਬਹੁਤ ਵੱਡਾਬਹੁਤ ਛੋਟਾਵੇਖੋਗਰਿੱਡ ਵਾਂਗ ਵੇਖੋ(_G)ਸੂਚੀ ਵਾਂਗ ਵੇਖੋ(_L)ਗਰਿੱਡ ਵਾਂਗ ਵੇਖੋਸੂਚੀ ਵਾਂਗ ਵੇਖੋਦਿੱਖ ਡੂੰਘਾਈ:ਚੇਤਾਵਨੀ: ਡਾਟਾ ਸੰਭਾਲਣ ਵਿੱਚ ਅਸਫਲ: +%sਚੇਤਾਵਨੀ: ਡਾਟਾ ਸੰਭਾਲਣ ਵਿੱਚ ਅਸਮੱਰਥ: +%sਵੈਬ ਬਰਾਊਜ਼ਰਵੈਬ ਝਲਕਾਰਾਜੀ ਆਇਆਂ ਨੂੰ +ਜੈਮਪ %d.%d ਉਪਭੋਗੀ ਇੰਸਟਾਲੇਸ਼ਨ ਤੇ ਸਵਾਗਤ ਹੈਜੇਕਰ ਯੋਗ ਕਰ ਦਿੱਤਾ ਗਿਆ ਹੈ ਤਾਂ ਤਖਤੀ ਸਵੈ ਹੀ ਚਿੱਤਰ ਜਿਸ ਤੇ ਤੁਸੀ ਕੰਮ ਕਰ ਰਹੇ ਹੋ ਦੇ ਨਾਲ ਚਲੇਗਾ।ਯੋਗ ਕਰਨ ਤੇ ਮੇਨੂ ਵੱਖ ਕੀਤੇ ਜਾ ਸਕਣਗੇ।ਜਦੋ ਯੋਗ ਕੀਤਾ ਤਾਂ , F1 ਦਬਾਉਣ ਨਾਲ ਸਹਾਇਤਾ ਝਲਕਾਰਾ ਖੁੱਲ ਜਾਵੇਗਾ।ਜਦੋ ਨਿਰਧਾਰਿਤ ਕੀਤਾ ਤਾਂ, ਜੈਮਪ ਹਰੇਕ ਚਿੱਤਰ ਲਈ ਵੱਖਰਾ ਜਾਣਕਾਰੀ ਝਰੋਖਾ ਵਰਤੇਗਾ।ਜਦੋ ਚੁਣਿਆ ਗਿਆ ਤਾਂ, ਕਰਸਰ ਨੂੰ ਚਿੱਤਰ ਉਪਰ ਵੇਖਾਇਆ ਜਾਵੇ, ਜਦੋਂ ਕਿ ਪੇਂਟ ਸੰਦ ਹੋਵੇ।ਜਦੋ ਨਿਰਧਾਰਿਤ ਕੀਤਾ ਤਾਂ, ਚਿੱਤਰ ਝਰੋਖਾ ਅਕਾਰ ਦੇ ਵਾਧੇ ਅਤੇ ਘਟਾ ਸਾਰਆਪਣੇ ਆਪ ਨੂੰ ਤਬਦੀਲ ਕਰ ਲਵੇਗਾ।ਜਦੋ ਨਿਰਧਾਰਿਤ ਕੀਤਾ ਤਾਂ, ਚਿੱਤਰ ਝਰੋਖਾ ਵਾਸਵਤਿਕ ਚਿੱਤਰ ਦੇ ਅਕਾਰ ਵਿੱਚ ਤਬਦੀਲੀ ਅਨੁਸਾਰ ਆਪਣੇ ਆਪ ਨੂੰ ਤਬਦੀਲ ਕਰ ਲਵੇਗਾ।ਜਦੋ ਚੁਣਿਆ ਗਿਆ ਤਾਂ, ਚੁਣਿਆ ਬੁਰਸ਼ ਸਭ ਸੰਦਾਂ ਲਈ ਵਰਤਿਆ ਜਾਵੇਗਾ।ਜਦੋ ਚੁਣਿਆ ਗਿਆ ਤਾਂ, ਚੁਣਿਆ ਢਾਲੂ ਸਭ ਸੰਦਾਂ ਲਈ ਵਰਤਿਆ ਜਾਵੇਗਾ।ਜਦੋ ਚੁਣਿਆ ਗਿਆ ਤਾਂ, ਚੁਣੀ ਤਰਤੀਬ ਸਭ ਸੰਦਾਂ ਲਈ ਵਰਤੀ ਜਾਵੇਗੀ।ਜਦੋ ਇਹ ਨਿਰਧਾਰਿਤ ਕੀਤਾ ਗਿਆ ਤਾਂ ਇਹ ਯਕੀਨੀ ਬਣਾਇਆ ਜਾਵੇਗਾ ਕਿ ਚਿੱਤਰ ਦਾ ਹਰੇਕ ਪਿਕਸਲ ਨੂੰਸਕਰੀਨ ਦੇ ਪਿਕਸਲ ਨਾਲ ਮੇਲ ਦਿੱਤਾ ਜਾਵੇਗਾ।ਜਦੋ ਨਿਰਧਾਰਿਤ ਕੀਤਾ ਤਾਂ, ਫਾਇਲ ਖੋਲਣ ਮਗਰੋਂ ਪੂਰਾ ਚਿੱਤਰ ਖੁਲੇਗਾ, ਨਹੀ ਤਾਂਇਹ 1:1 ਅਨੁਪਾਤ ਵਿੱਚ ਖੁੱਲੇਗਾ ।ਸਫੈਦਚੌਡ਼ਾਈਚੌਡ਼ਾਈ:ਝਰੋਖਾ ਪ੍ਰਬੰਧਨਝਰੋਖਾ ਪ੍ਰਬੰਧਕ ਇਸ਼ਾਰੇਝਰੋਖਾ ਸਥਿਤੀਲਿਖਿਆ ਜਾ ਰਿਹਾ ਹੈ '%s' +XXCF ਗਲਤੀ: ਨਾ-ਸਹਿਯੋਗੀ XCF ਫਾਇਲ ਵਰਜਨ %d ਮਿਲਿਆ ਹੈXCF ਚੇਤਵਾਨੀ: XCF ਫਾਇਲ ਫਾਰਮਿਟ ਦਾ ਵਰਜਨ 0 ਤਤਕਰਾ ਰੰਗ-ਖਾਕਿਆਂ ਨੂੰ ਠੀਕ ਤਰਾਂ ਸੰਭਾਲ ਸਕਦਾ ਹੈ। -ਸਲੇਟੀ-ਸਕੇਲ ਖਾਕੇ ਨਾਲ ਤਬਦੀਲ਼ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ।ਪੀਲਾਪੀਲਾ:ਤੁਸੀ ਡੋਕਬਲ ਤਖਤੀਆਂ ਇਥੇ ਰੱਖ ਸਕਦੇ ਹੋ।ਆਕਾਰ 1:1ਸਭ ਆਕਾਰਅਕਾਰ ਵਧਾਉਅਕਾਰ ਘਟਾਉਆਕਾਰ ਅਨੁਪਾਤਆਕਾਰ ਅਨੁਪਾਤ:ਸਭ ਆਕਾਰਆਕਾਰ ਗੁਣਾਂਕ: %d:1ਅਕਾਰ ਵਧਾਉਅਕਾਰ ਵੱਡਾ ਤੇ ਛੋਟਾਅਕਾਰ ਘਟਾਉਆਕਾਰ:[ ਮੂਲ ਚਿੱਤਰ ]ਇਸ ਬਾਰੇ(_A)ਪ੍ਰਾਪਤ ਕਰੋ(_A)BG ਤੋ ਰੰਗ ਸ਼ਾਮਿਲ(_A)FG ਤੋ ਰੰਗ ਸ਼ਾਮਿਲ(_A)ਟੈਬ ਸ਼ਾਮਿਲ(_A)ਚੋਣ ਵਿੱਚ ਜੋੜ੍ਹੋਤਕਨੀਕੀ ਚੋਣ(_A)ਐਟੀਲਾਸੀਇੰਗ(_A)ਅਕਾਰ ਅਨੁਪਾਤ(_A):ਸਵੈ_B_BG ਰੰਗਪਿੱਠਭੂਮੀ ਰੰਗ(_B):ਚਮਕੀਲਾਪਨ:ਬੁਰਸ਼(_B)ਬੁਰਸ਼(_B)ਬੁਰਸ਼, ਤਰਤੀਬਾਂ ਤੇ ਢਾਲੂ(_B)ਬਫਰ(_B)_Cਕੈਪ ਸ਼ੈਲੀ:ਚੈਨਲ(_C)ਗਲਤੀਆਂ ਸਾਫ਼ ਕਰੋਮੁਡ਼ ਕਰੋ ਅਤੀਤ ਸਾਫ(_C)ਟੈਬ ਬੰਦ ਕਰੋ(_C)ਰੰਗ(_C)ਪਾਠ(_C)ਭਾਗ ਸਹਾਇਤਾਨਕਲਨਕਲ ਨਾਂ...ਚਿੱਤਰ ਫੈਲਾਉ...ਮੂਲ ਰੰਗ(_D)ਬੁਰਸ਼ ਹਟਾਓ(_D)ਬਫਰ ਹਟਾਓ(_D)ਚੈਨਲ ਹਟਾਉ(_D)ਢਾਲੂ ਹਟਾਓ...ਚਿੱਤਰ ਹਟਾਓਪਰਤ ਹਟਾਓਖੰਡ ਹਟਾਓਅਸਤ੍ਰਿਪਤ(_D)ਟੈਬ ਵੱਖ ਕਰੋ(_D)ਜੰਤਰ ਸਥਿਤੀ(_D)ਤਖਤੀ(_D)ਨਕਲ਼...ਸੋਧ(_E)ਬੁਰਸ਼ ਸੋਧ(_E)...ਚੈਨਲ ਗੁਣ ਸੋਧ(_E)...ਰੰਗ ਸੋਧ(_E)...ਢਾਲੂ ਸੋਧ...ਪਰਤ ਗੁਣ ਸੋਧ...ਵਿਸ਼ਾਲ(_E)ਸਮਰੂਪ(_E)_FG ਰੰਗਫਾਇਲ(_F)ਭਰੋ(_F):ਚਿੱਤਰ ਹਟਾਓਫਾਇਲ਼ ਖੰਡਚੋਣ ਝਟਕੋਫੋਂਟ(_F)ਫੋਂਟ(_F)ਮੁੱਖ-ਭੂਮੀ ਰੰਗ(_F):_Gਵਿਰਾਟ(_G)ਢਾਲਵਾਂ(_G)ਢਾਲੂ(_G)ਸਲੇਟੀ-ਪੈਮਾਨਾਦਿਸ਼ਾ-ਨਿਰਦੇਸ਼ਨਕਠੋਰਤਾ(_H)ਸਹਾਇਤਾ(_H)ਖਿਤਿਜੀ:ਰੰਗਤ:ਵਿਰਾਟ(_H)ਆਈਕਾਨ(_I)ਆਈਕਾਨ:ਚਿੱਤਰਚਿੱਤਰ(_I)ਲਿਆਉਤਤਕਰਾ...ਚੋਣ ਨਾਲ ਕਾਂਟਜੋਡ਼ ਸ਼ੈਲੀ:ਵੱਡਾ(_L)ਪਰਤਪਰਤਾਂ(_L)ਪਰਤਾਂ, ਚੈਨਲ ਤੇ ਰਸਤਾ(_L)ਪਰਕਾਸ਼਼ਮਾਨ:ਰੇਖਾ ਸ਼ੈਲੀ:ਰੇਖਿਕ(_L)ਸੰਬੰਧਿਤ(_L)ਹੇਠਲਾ ਚੈਨਲ(_L)_Mਦਸਤੀਮਖੌਟਾਮੱਧਮ(_M)ਫੁਟਕਲ ਭੰਡਾਰ(_M)ਮੋਡ(_M)ਮੈਡੀਊਲ ਪ੍ਰਬੰਧਕ(_M)ਨਾਂ(_N):ਨਵਾਂ ਬੁਰਸ਼(_N)ਨਵਾਂ ਚੈਨਲ(_N)ਨਵਾਂ ਚੈਨਲ(_N)...ਨਵਾਂ ਢਾਲੂਨਵੀ ਪਰਤਨਵੀ ਪਰਤ...ਨਵਾਂ ਦਰਿਸ਼ਨਵਾਂ...ਧੁੰਦਲਾਪਨ(_O)ਚਿੱਤਰ ਖੋਲ੍ਹੋ(_O)ਖੋਲ੍ਹੋ...ਰੰਗ-ਪੱਟੀ(_P)ਚਿਪਕਾਉਬਫਰ ਚਿਪਕਾਉ(_P)ਚਿਪਕਾਉ ਨਾਂ...ਮਾਰਗ(_P)ਤਰਤੀਬ(_P)ਮੇਰੀ-ਪਸੰਦ(_P)ਨਮੂਨਾਨਮੂਨਾ ਅਕਾਰ(_P)ਛਾਪਣ ਅਕਾਰ...ਵਿਸ਼ੇਸਤਾਬਾਹਰ(_Q)_R_RGBਅਰਧ-ਵਿਆਸ(_R)ਉਭਰਿਆ ਚੈਨਲ(_R)ਪਰਤ ਉਭਾਰੋਦਰਿਸ਼ ਉਭਾਰੋਚਿੱਤਰ ਖੋਲ੍ਹੋ ਜਾਂ ਉਭਾਰੋਮੁਡ਼ ਪਹਿਲਾਂਮੁੜ ਪਹਿਲਾਂ ਕਰੋ %sਬੁਰਸ਼ ਤਾਜ਼ਾ(_R)ਢਾਲੂ ਤਾਜ਼ਾਫੋਂਟ ਸੂਚੀ ਮੁਡ਼-ਜਾਂਚੋਸਤ੍ਰਿਪਤੀ:ਸੰਭਾਲੋ(_S)ਚਿੱਤਰ ਪੈਮਾਨਾ...ਚੋਣਚੋਣ ਸੰਪਾਦਕ(_S)ਖਾਕਾ(_S)ਚਿੱਤਰ ਚੋਣ ਵੇਖਾਓ(_S)ਛੋਟਾ(_S)ਚੋਣ ਵਿਚੋਂ ਘਟਾਉਟੈਬ ਸ਼ੈਲੀ(_T)ਨਮੂਨੇ(_T)ਪਾਠ(_T)ਨਿੰਮਾ(_T)ਅੱਜ ਦਾ ਇਸ਼ਾਰਾ(_T)ਸੰਦ(_T)ਵਾਪਿਸ(_U)ਮੁੜ ਕਰੋ %sਲੰਬਕਾਰੀ:ਦਿੱਖ(_V)_X:ਵਾਧਾ_Y_Y:ਆਕਾਰ (%s)ਰੰਗਨਕਲਡੀਪੀਆਈਬੂਲੀਅਨ ਟੋਕਨ %s ਲਈ 'ਹਾਂ' ਜਾਂ 'ਨਹੀ' ਦੀ ਉਮੀਦ ਸੀ, ਮਿਲਿਆ '%s'ਘਾਤਕ ਪਾਰਸ ਗਲਤੀਇੰਚਇੰਚਤਤਕਰਾਤਤਕਰਾ-ਖਾਲ਼ੀਗਲਤ ਯੂਟੀਐਫ-8 ਸਤਰਗਲਤ ਮੁੱਲ '%ld' ਟੋਕਨ %s ਲਈਗਲਤ ਮੁੱਲ '%s' ਟੋਕਨ %s ਲਈਮਿਲੀਮੀਟਰਮਿਲੀਮੀਟਰਉਪਲੱਬਧ ਨਹੀਪ੍ਰਤੀਸ਼ਤਪੀਕਾਪੀਕਾਪਿਕਸਲਪਿਕਸਲਪਿਕਸਲ/%aਪਿਕਸਲ/%sਬਿੰਦੂਬਿੰਦੂਅਮਨਪਰੀਤ ਸਿੰਘ ਆਲਮ (amanlinux@netscape.net)ਟੋਕਨ %s ਦਾ ਮੁੱਲ ਜਾਇਜ ਯੂਟੀਐਫ-8 ਸਤਰ ਨ੍ਰਿ ਹੈਜਦੋ ਟੋਕਨ '%s' ਨੂੰ ਪਾਰਸ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ: %s \ No newline at end of file +ਸਲੇਟੀ-ਸਕੇਲ ਖਾਕੇ ਨਾਲ ਤਬਦੀਲ਼ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ।Yਪੀਲਾਪੀਲਾ:ਤੁਸੀ ਡੋਕਬਲ ਤਖਤੀਆਂ ਇਥੇ ਰੱਖ ਸਕਦੇ ਹੋ।ਤੁਹਾਡੀ ਜੈਮਪ ਇੰਸਟਾਲੇਸ਼ਨ ਮੁਕੰਮਲ ਨਹੀਂ:ਆਕਾਰ 1:1ਸਭ ਆਕਾਰਅਕਾਰ ਵਧਾਉਅਕਾਰ ਘਟਾਉਆਕਾਰ ਅਨੁਪਾਤਆਕਾਰ ਅਨੁਪਾਤ:ਸਭ ਜ਼ੂਮ(_A)ਅਕਾਰ ਵਧਾਓ(_I)ਅਕਾਰ ਘਟਾਓ(_O)ਸਭ ਆਕਾਰਆਕਾਰ ਗੁਣਾਂਕ: %d:1ਅਕਾਰ ਵਧਾਉਅਕਾਰ ਵੱਡਾ ਤੇ ਛੋਟਾਅਕਾਰ ਘਟਾਉਆਕਾਰ:[ ਮੂਲ ਚਿੱਤਰ ]ਇਸ ਬਾਰੇ(_A)ਪ੍ਰਾਪਤ ਕਰੋ(_A)BG ਤੋ ਰੰਗ ਸ਼ਾਮਿਲ(_A)FG ਤੋ ਰੰਗ ਸ਼ਾਮਿਲ(_A)ਟੈਬ ਸ਼ਾਮਿਲ(_A)ਚੋਣ ਵਿੱਚ ਜੋੜ੍ਹੋਤਕਨੀਕੀ ਚੋਣ(_A)ਏਅਰ-ਬੁਰਸ਼(_A)ਲਟਕਦੀ ਪਰਤ(_A)ਐਟੀਲਾਸੀਇੰਗ(_A)ਕਲਾਕਾਰੀ(_A)ਅਕਾਰ ਅਨੁਪਾਤ(_A):ਸਵੈ_B_BG ਰੰਗਪਿੱਠਭੂਮੀ ਰੰਗ(_B):ਕਾਲਾ(ਪੂਰਾ ਪਾਰਦਰਸ਼ੀ)(_B)ਧੱਬਾ(_B)ਚਮਕੀਲਾਪਨ:ਬੁਰਸ਼(_B)ਬੁਰਸ਼(_B)ਬੁਰਸ਼, ਤਰਤੀਬਾਂ ਤੇ ਢਾਲੂ(_B)ਬਲਟੀ ਭਰਨ(_B)ਬਫਰ(_B)ਰੰਗ ਨਾਲ(_B)ਰੰਗ ਚੋਣ ਨਾਲ(_B)_Cਕੈਪ ਸ਼ੈਲੀ:ਚੈਨਲ(_C)ਗਲਤੀਆਂ ਸਾਫ਼ ਕਰੋਮੁਡ਼ ਕਰੋ ਅਤੀਤ ਸਾਫ(_C)ਸਮਰੂਪ(_C)ਬੰਦ(_C)ਟੈਬ ਬੰਦ ਕਰੋ(_C)ਬੱਦਲ(_C)ਰੰਗ ਸੰਦ(_C)ਰੰਗ(_C)ਰੰਗ ਤੇ ਧੁੰਦਲਾਪਨ ਸੰਰਚਨਾ(_C)...ਪਾਠ(_C)ਭਾਗ ਸਹਾਇਤਾਨਕਲਨਕਲ ਨਾਂ...ਨਮੂਨੇ ਤੋਂ ਚਿੱਤਰ ਬਣਾਓ(_C)...ਫੈਲਾਉ ਤੇ ਮੁਡ਼-ਅਕਾਰ(_C)ਚਿੱਤਰ ਫੈਲਾਉ...ਘਾਤਾਂ(_C)...ਗੂੜ੍ਹੇ ਜਾਂਚ ਰੰਗ(_D)ਮੂਲ ਰੰਗ(_D)ਬੁਰਸ਼ ਹਟਾਓ(_D)ਬਫਰ ਹਟਾਓ(_D)ਚੈਨਲ ਹਟਾਉ(_D)ਰੰਗ ਹਟਾਓ(_D)ਢਾਲੂ ਹਟਾਓ...ਚਿੱਤਰ ਹਟਾਓਪਰਤ ਹਟਾਓਰੰਗ-ਪੱਟੀ ਹਟਾਓ(_D)ਮਾਰਗ ਹਟਾਓ(_D)ਤਰਤੀਬ ਹਟਾਓ(_D)...ਸੰਭਾਲੀ ਚੋਣ ਹਟਾਓ(_D)ਖੰਡ ਹਟਾਓਨਮੂਨਾ ਹਟਾਓ(_D)ਅਸਤ੍ਰਿਪਤ(_D)ਟੈਬ ਵੱਖ ਕਰੋ(_D)ਜੰਤਰ ਸਥਿਤੀ(_D)ਤਖਤੀ(_D)ਤਬਦੀਲੀਆਂ ਰੱਦ(_D)ਪਾਠ ਜਾਣਕਾਰੀ ਰੱਦ(_D)ਖਿੰਡਣ(_D)ਬਿੰਦੂ ਤੋ ਬਿੰਦੂ(_D)ਨਕਲ਼...ਸੋਧ(_E)ਬੁਰਸ਼ ਸੋਧ(_E)...ਚੈਨਲ ਗੁਣ ਸੋਧ(_E)...ਰੰਗ ਸੋਧ(_E)...ਢਾਲੂ ਸੋਧ...ਪਰਤ ਗੁਣ ਸੋਧ...ਰੰਗ-ਪੱਟੀ ਸੋਧ(_E)ਮਾਰਗ ਗੁਣ ਸੋਧ(_E)...ਤਰਤੀਬ ਸੋਧ(_E)...ਨਮੂਨਾ ਸੋਧ(_E)...ਅੰਡਾਕਾਰ ਚੋਣ(_E)ਵਿਸ਼ਾਲ(_E)ਸਮਰੂਪ(_E)ਰਬਡ਼(_E)_FG ਰੰਗਫਾਇਲ(_F)ਭਰੋ(_F):ਚਿੱਤਰ ਝਰੋਖੇ ਵਿੱਚ ਅਨੁਕੂਲ(_F)ਚਿੱਤਰ ਹਟਾਓਝਟਕਾ(_F)ਫਾਇਲ਼ ਖੰਡਚੋਣ ਝਟਕੋਤਰਦਾ(_F)ਫੋਂਟ(_F)ਫੋਂਟ(_F)ਮੁੱਖ-ਭੂਮੀ ਰੰਗ(_F):ਮੁਕਤ ਚੋਣ(_F)_Gਸਧਾਰਨ(_G)ਵਿਰਾਟ(_G)ਢਾਲਵਾਂ(_G)ਢਾਲੂ(_G)ਸਲੇਟੀ-ਪੈਮਾਨਾਪਰਤ ਦੀ ਸਲੇਟੀ ਨਕਲ(_G)ਫੈਲਾਓ(_G)...ਦਿਸ਼ਾ-ਨਿਰਦੇਸ਼ਨਕਠੋਰਤਾ(_H)ਸਹਾਇਤਾ(_H)ਖਿਤਿਜੀ:ਰੰਗਤ:ਵਿਰਾਟ(_H)ਆਈਕਾਨ(_I)ਆਈਕਾਨ:ਚਿੱਤਰਚਿੱਤਰ(_I)ਲਿਆਉਰੰਗ-ਪੱਟੀ ਆਯਾਤ(_I)...ਤਤਕਰਾ...ਜਾਣਕਾਰੀ ਝਰੋਖਾ(_I)ਚੋਣ ਨਾਲ ਕਾਂਟਉਲਟ(_I)ਜੋਡ਼ ਸ਼ੈਲੀ:ਵੱਡਾ(_L)ਪਰਤਪਰਤਾਂ(_L)ਪਰਤਾਂ, ਚੈਨਲ ਤੇ ਮਾਰਗ(_L)ਪੱਧਰ(_L)...ਫਿੱਕੇ ਜਾਂਚ ਰੰਗ(_L)ਰੋਸ਼ਨੀ ਪ੍ਰਭਾਵ(_L)ਪਰਕਾਸ਼਼ਮਾਨ:ਰੇਖਾ ਸ਼ੈਲੀ:ਰੇਖਿਕ(_L)ਸੰਬੰਧਿਤ(_L)ਖੱਬਾ ਰੰਗ ਲੋਡ(_L)ਹੇਠਲਾ ਚੈਨਲ(_L)ਹੇਠਲੀ ਪਰਤ(_L)ਹੇਠਲਾਂ ਮਾਰਗ(_L)_Mਦਸਤੀਨਕਸ਼ਾ(_M)ਮਖੌਟਾਚੋਣ ਤੇ ਮਖੌਟਾ(_M)ਰੰਗਾਂ ਦੀ ਅਧਿਕਤਮ ਗਿਣਤੀ(_M):ਮਾਪ(_M)ਮੱਧਮ(_M)ਵਿਲੀਨ ਰੰਗ-ਪੱਟੀ(_M)...ਮਿਲਾਨ ਆਯਾਤ ਮਾਰਗ(_M)ਜੈਮਪ 2.0 ਦੀ ਉਪਭੋਗੀ ਵਿਵਸਥਾ ਰੱਖੋ(_M)ਫੁਟਕਲ ਭੰਡਾਰ(_M)ਮੋਡ(_M)ਮੈਡੀਊਲ ਪ੍ਰਬੰਧਕ(_M)ਏਧਰ-ਓਧਰ(_M)ਨਾਂ(_N):ਕੁਦਰਤੀ(_N)ਨਵਾਂ ਬੁਰਸ਼(_N)ਨਵਾਂ ਚੈਨਲ(_N)ਨਵਾਂ ਚੈਨਲ(_N)...ਨਵਾਂ ਇੰਦਰਾਜ਼(_N)...ਨਵਾਂ ਢਾਲੂਨਵੀ ਪਰਤਨਵੀ ਪਰਤ...ਨਵੀ ਰੰਗ-ਪੱਟੀ(_N)ਨਵਾਂ ਮਾਰਗ(_N)ਨਵਾਂ ਮਾਰਗ(_N)ਨਵੀ ਤਰਤੀਬ(_N)ਨਵਾਂ ਨਮੂਨਾ(_N)...ਨਵਾਂ ਦਰਿਸ਼ਨਵਾਂ...ਅੱਗੇ ਇਸ਼ਾਰਾ(_N)ਕੋਈ ਨਹੀਂ(_N)ਧੁੰਦਲਾਪਨ(_O)ਚਿੱਤਰ ਖੋਲ੍ਹੋ(_O)ਖੋਲ੍ਹੋ...ਚਿਣੇ ਰੰਗ(_P)ਪੇਟ ਸੰਦ(_P)ਪੇਟ-ਬੁਰਸ਼(_P)ਰੰਗ-ਪੱਟੀ(_P)ਚਿਪਕਾਉਬਫਰ ਚਿਪਕਾਉ(_P)ਚਿਪਕਾਉ ਨਾਂ...ਮਾਰਗ(_P)ਤਰਤੀਬ(_P)ਅਵਲੋਕਣ(_P)ਇਸ਼ਤਹਾਰ(_P)...ਮੇਰੀ-ਪਸੰਦ(_P)ਨਮੂਨਾਨਮੂਨਾ ਅਕਾਰ(_P)ਪਿੱਛੇ ਇਸ਼ਾਰਾ(_P)ਛਾਪਣ ਅਕਾਰ...ਵਿਸ਼ੇਸਤਾਤੇਜ਼ ਮਖੌਟਾ ਸਰਗਰਮ(_Q)ਬਾਹਰ(_Q)_R_RGBਅਰਧ-ਵਿਆਸ(_R)ਉਭਰਿਆ ਚੈਨਲ(_R)ਪਰਤ ਉਭਾਰੋਉਠਾਇਆ ਮਾਰਗ(_R)ਦਰਿਸ਼ ਉਭਾਰੋਚਿੱਤਰ ਖੋਲ੍ਹੋ ਜਾਂ ਉਭਾਰੋਸ਼ਾਰਟਕੱਟ ਮੁੜ-ਦਿਓ(_R)ਆਇਤਕਾਰ ਚੋਣ(_R)ਮੁਡ਼ ਪਹਿਲਾਂਮੁੜ ਪਹਿਲਾਂ ਕਰੋ %sਬੁਰਸ਼ ਤਾਜ਼ਾ(_R)ਢਾਲੂ ਤਾਜ਼ਾਰੰਗ-ਪੱਟੀ ਤਾਜ਼ਾ(_R)ਤਰਤੀਬ ਤਾਜ਼ਾ(_R)ਪੇਸ਼ਕਾਰ(_R)ਤਬਦੀਲ(_R)ਫੋਂਟ ਸੂਚੀ ਮੁਡ਼-ਜਾਂਚੋਕ੍ਰਮ ਤੇ ਦਿੱਖ ਮੁੜ-ਨਿਰਧਾਰਨ(_R)ਸੰਭਾਲੀ ਇੰਪੁੱਟ ਜੰਤਰ ਵਿਵਸਥਾ ਦਾ ਮੁੱਲ ਮੁਡ਼ ਮੂਲ ਨਿਰਧਾਰਨ(_R)ਸੰਭਾਲੇ ਕੀ-ਬੋਰਡ ਸ਼ਾਰਟਕੱਟ ਨੂੰ ਮੂਲ ਮੁੱਲ ਦਿਓ(_R)ਸੰਭਾਲੀ ਝਰੋਖਾ ਸਥਿਤੀ ਲਈ ਮੁੜ-ਮੂਲ ਮੁੱਲ ਕਰੋ(_R)ਇਸ ਤੋਂ ਚੋਣ ਮੁਡ਼-ਨਿਰਧਾਰਨ(_R)ਘੁੰਮਾਓ(_R)ਸਤ੍ਰਿਪਤੀ:ਸੰਭਾਲੋ(_S)ਖੱਬੇ ਰੰਗ ਨੂੰ ਸੰਭਾਲੋ(_S)ਚੋਣ ਨੂੰ ਸੰਭਾਲੋ(_S)ਬੰਦ ਕਰਨ ਤੇ ਇੰਪੁੱਟ ਜੰਤਰ ਵਿਵਸਥਾ ਨੂੰ ਸੰਭਾਲੋ(_S)ਬੰਦ ਕਰਨ ਤੇ ਕੀ-ਬੋਰਡ ਸ਼ਾਰਟਕੱਟ ਵਿੱਚ ਤਬਦੀਲੀਆਂ ਸੰਭਾਲੋ(_S)ਬੰਦ ਕਰਨ ਤੇ ਝਰੋਖਾ ਸਥਿਤੀ ਸੰਭਾਲੋ(_S)ਮਾਪ-ਜਾਂਚ(_S)ਚਿੱਤਰ ਪੈਮਾਨਾ...ਪਰਤ ਪੈਮਾਨਾ(_S)...ਚੋਣ(_S)ਚੋਣਚੋਣ ਸੰਪਾਦਕ(_S)ਚੋਣ ਸੰਦ(_S)ਖਾਕਾ(_S)ਤਿੱਖਾ(_S)ਚਿੱਤਰ ਚੋਣ ਵੇਖਾਓ(_S)ਸੰਦ-ਬਕਸੇ ਵਿੱਚ ਵੇਖਾਓ(_S)ਛੋਟਾ(_S)ਧੱਬਾ(_S)ਚੋਣ ਝਟਕਾ(_S)ਚੋਣ ਝਟਕਾ(_S)...ਚੋਣ ਵਿਚੋਂ ਘਟਾਉਟੈਬ ਸ਼ੈਲੀ(_T)ਨਮੂਨਾ(_T):ਨਮੂਨੇ(_T)ਪਾਠ(_T)ਮੁੱਢਲਾ ਮੁੱਲ(_T)...ਨਿੰਮਾ(_T)ਅੱਜ ਦਾ ਇਸ਼ਾਰਾ(_T)ਸੰਦ(_T)ਸੰਦ(_T)ਤਬਦੀਲੀ ਪਰਤ ਦਾ ਐਲਫਾ ਚੈਨਲ(_T)ਤਬਦੀਲ(_T)ਤਬਦੀਲ ਸੰਦ(_T)ਵਾਪਿਸ(_U)ਮੁੜ ਕਰੋ %sਲੰਬਕਾਰੀ:ਵੇਖੋ(_V)ਦਿੱਖ(_V)ਵਰਤਣ ਲਈ ਵੈਬ ਝਲਕਾਰਾ(_W):ਸਫੇਦ(ਪੂਰਾ ਧੁੰਦਲਾਪਨ)(_W)ਸਫੈਟ ਸਾਵਾਂ(_W)ਚੌਡ਼ਾਈ(_W):ਪਾਸੇ ਸਮੇਟੋ(_W)_X ਰੈਜ਼ੋਲੇਸ਼ਨ:_X:ਵਾਧਾ_Y_Y ਰੈਜ਼ੋਲੇਸ਼ਨ:_Y:ਅਕਾਰ(_Z)ਆਕਾਰ (%s)ਰੰਗਨਕਲਡੀਪੀਆਈਬੂਲੀਅਨ ਟੋਕਨ %s ਲਈ 'ਹਾਂ' ਜਾਂ 'ਨਹੀ' ਦੀ ਉਮੀਦ ਸੀ, ਮਿਲਿਆ '%s'ਘਾਤਕ ਪਾਰਸ ਗਲਤੀਸਲੇਟੀਸਲੇਟੀ-ਖਾਲੀਇੰਚਇੰਚਤਤਕਰਾਤਤਕਰਾ-ਖਾਲ਼ੀਗਲਤ ਯੂਟੀਐਫ-8 ਸਤਰਆਈਕਾਨ ਕਿਸਮ ਲਈ ਗਲਤ ਮੁੱਲ '%ld'ਗਲਤ ਮੁੱਲ '%ld' ਟੋਕਨ %s ਲਈਆਈਕਾਨ ਕਿਸਮ ਲਈ ਗਲਤ ਮੁੱਲ '%s'ਗਲਤ ਮੁੱਲ '%s' ਟੋਕਨ %s ਲਈਮਿਲੀਮੀਟਰਮਿਲੀਮੀਟਰਮਿੰਟਉਪਲੱਬਧ ਨਹੀਪ੍ਰਤੀਸ਼ਤਪੀਕਾਪੀਕਾਪਿਕਸਲਪਿਕਸਲਪਿਕਸਲ/%aਪਿਕਸਲ/%sਬਿੰਦੂਬਿੰਦੂਸਕਿੰਟtips-locale:paਅਮਨਪਰੀਤ ਸਿੰਘ ਆਲਮ (amanlinux@netscape.net)ਟੋਕਨ %s ਦਾ ਮੁੱਲ ਜਾਇਜ ਯੂਟੀਐਫ-8 ਸਤਰ ਨ੍ਰਿ ਹੈਜਦੋ ਟੋਕਨ '%s' ਨੂੰ ਪਾਰਸ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ: %s \ No newline at end of file diff -uraN gimp-2.2.4/po/pa.po gimp-2.2.5/po/pa.po --- gimp-2.2.4/po/pa.po 2005-01-22 17:33:07.000000000 +0100 +++ gimp-2.2.5/po/pa.po 2005-03-14 11:00:56.000000000 +0100 @@ -1,16 +1,18 @@ +# translation of gimp.gimp-2-2.po to Punjabi # translation of pa.po to Punjabi # Copyright (C) 2004 THE gimp.HEAD'S COPYRIGHT HOLDER # This file is distributed under the same license as the gimp.HEAD package. # Punjab Linux Technology , 2004. # Amanpreet Singh Alam , 2004. +# Amanpreet Singh Alam , 2005. # msgid "" msgstr "" -"Project-Id-Version: pa\n" +"Project-Id-Version: gimp.gimp-2-2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-01-22 17:32+0100\n" -"PO-Revision-Date: 2004-12-10 11:34+0530\n" -"Last-Translator: Amanpreet Singh Alam \n" +"POT-Creation-Date: 2005-03-08 20:16+0100\n" +"PO-Revision-Date: 2005-03-09 09:29+0530\n" +"Last-Translator: Amanpreet Singh Alam \n" "Language-Team: Punjabi \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -153,8 +155,7 @@ msgstr " --system-gimprc ਇੱਕ ਬਦਲਵੀ ਸਿਸਟਮ gimprc ਫਾਇਲ ਵਰਤੋ।\n" #: app/main.c:525 -msgid "" -" --dump-gimprc Output a gimprc file with default settings.\n" +msgid " --dump-gimprc Output a gimprc file with default settings.\n" msgstr " --dump-gimprc ਮੂਲ ਵਿਵਸਥਾ ਨਾਲ ਆਉਟਪੁੱਟ ਇੱਕ gimprc ਫਾਇਲ \n" #: app/main.c:526 @@ -164,8 +165,7 @@ msgstr " -c, --console-messages ਤਖਤੀ ਦੀ ਬਜਾਏ ਕੰਨਸੋਲ ਤੇ ਚੇਤਵਾਨੀ ਵੇਖਾਉ।\n" #: app/main.c:527 -msgid "" -" --debug-handlers Enable non-fatal debugging signal handlers.\n" +msgid " --debug-handlers Enable non-fatal debugging signal handlers.\n" msgstr " --debug-handlers ਨਾ-ਘਾਤਕ ਡੀਬੱਗ ਸੰਕੇਤ ਹੈਡਲਰਾਂ ਨੂੰ ਯੋਗ ਕਰੋ। \n" #: app/main.c:528 @@ -733,7 +733,7 @@ #: app/actions/dialogs-actions.c:42 msgid "_Layers, Channels & Paths" -msgstr "ਪਰਤਾਂ, ਚੈਨਲ ਤੇ ਰਸਤਾ(_L)" +msgstr "ਪਰਤਾਂ, ਚੈਨਲ ਤੇ ਮਾਰਗ(_L)" #: app/actions/dialogs-actions.c:47 msgid "_Brushes, Patterns & Gradients" @@ -884,9 +884,8 @@ msgstr "ਚਿੱਤਰ ਚੋਣ ਵੇਖਾਓ(_S)" #: app/actions/dockable-actions.c:82 -#, fuzzy msgid "Auto _Follow Active Image" -msgstr "ਚਿੱਤਰ ਸੰਭਾਲੋ" +msgstr "ਸਰਗਰਮ ਚਿੱਤਰ ਸਵੈ-ਸੰਭਾਲ(_F)" #: app/actions/dockable-actions.c:101 msgid "_Tiny" @@ -985,9 +984,8 @@ msgstr "ਇੰਦਰਾਜ਼ ਹਟਾਉ(_E)" #: app/actions/documents-actions.c:65 -#, fuzzy msgid "Remove the selected entry" -msgstr "ਚੁਣੇ ਇੰਦਰਾਜ਼ ਹਟਾਉ" +msgstr "ਚੁਣੇ ਇੰਦਰਾਜ਼ ਹਟਾਓ" #: app/actions/documents-actions.c:70 msgid "Recreate _Preview" @@ -1015,7 +1013,7 @@ #: app/actions/documents-commands.c:251 app/actions/file-commands.c:170 #: app/dialogs/file-open-dialog.c:198 app/dialogs/file-open-dialog.c:249 -#: app/dialogs/file-open-location-dialog.c:193 +#: app/dialogs/file-open-location-dialog.c:195 #: app/display/gimpdisplayshell-dnd.c:334 app/widgets/gimplayertreeview.c:804 #: app/widgets/gimptoolbox-dnd.c:125 #, c-format @@ -1042,7 +1040,7 @@ #: app/actions/drawable-actions.c:60 msgid "_White Balance" -msgstr "" +msgstr "ਸਫੈਟ ਸਾਵਾਂ(_W)" #: app/actions/drawable-actions.c:65 msgid "_Offset..." @@ -1136,9 +1134,8 @@ #. GIMP_STOCK_COPY_VISIBLE, #: app/actions/edit-actions.c:93 -#, fuzzy msgid "Copy _Visible" -msgstr "ਦਿੱਖ(_V)" +msgstr "ਦਿੱਖ ਨਕਲ(_V)" #: app/actions/edit-actions.c:98 msgid "_Paste" @@ -1315,7 +1312,7 @@ msgid "_Quit" msgstr "ਬਾਹਰ(_Q)" -#: app/actions/file-commands.c:215 app/dialogs/file-save-dialog.c:281 +#: app/actions/file-commands.c:215 app/dialogs/file-save-dialog.c:282 #, c-format msgid "" "Saving '%s' failed:\n" @@ -1398,14 +1395,12 @@ msgstr "" #: app/actions/gradient-editor-actions.c:50 -#, fuzzy msgid "_Load Left Color From" -msgstr "/BG ਤੋ ਜੋੜ੍ਹੋ" +msgstr "ਖੱਬਾ ਰੰਗ ਲੋਡ(_L)" #: app/actions/gradient-editor-actions.c:52 -#, fuzzy msgid "_Save Left Color To" -msgstr "ਰੰਗ ਮੁਡ਼-ਨਿਰਧਾਰਨ" +msgstr "ਖੱਬੇ ਰੰਗ ਨੂੰ ਸੰਭਾਲੋ(_S)" #: app/actions/gradient-editor-actions.c:55 msgid "Load Right Color Fr_om" @@ -1416,14 +1411,12 @@ msgstr "" #: app/actions/gradient-editor-actions.c:63 -#, fuzzy msgid "L_eft Endpoint's Color..." -msgstr "/ਰੰਗ ਸੋਧ..." +msgstr "" #: app/actions/gradient-editor-actions.c:68 -#, fuzzy msgid "R_ight Endpoint's Color..." -msgstr "/ਰੰਗ ਸੋਧ..." +msgstr "ਸੱਜਾ ਅੰਤ-ਬਿੰਦ ਰੰਗ(_i)..." #: app/actions/gradient-editor-actions.c:108 msgid "Ble_nd Endpoints' Colors" @@ -1763,9 +1756,8 @@ msgstr "ਮੋਡ(_M)" #: app/actions/image-actions.c:61 app/actions/layers-actions.c:57 -#, fuzzy msgid "_Transform" -msgstr "ਤਬਦੀਲ" +msgstr "ਤਬਦੀਲ(_T)" #: app/actions/image-actions.c:62 msgid "_Guides" @@ -1954,7 +1946,6 @@ msgstr "ਨਕਲੀ ਪਰਤ" #: app/actions/layers-actions.c:87 -#, fuzzy msgid "Duplicate layer" msgstr "ਨਕਲ ਪਰਤ" @@ -1963,173 +1954,140 @@ msgstr "ਪਰਤ ਹਟਾਓ" #: app/actions/layers-actions.c:93 app/core/core-enums.c:1079 -#, fuzzy msgid "Delete layer" -msgstr "ਪਰਤ ਹਟਾਉ" +msgstr "ਪਰਤ ਹਟਾਓ" #: app/actions/layers-actions.c:98 msgid "_Raise Layer" msgstr "ਪਰਤ ਉਭਾਰੋ" #: app/actions/layers-actions.c:99 -#, fuzzy msgid "Raise layer" msgstr "ਪਰਤ ਉਠਾਓ" #: app/actions/layers-actions.c:104 -#, fuzzy msgid "Layer to _Top" -msgstr "/ਉੱਪਰ ਲਈ ਪਰਤ" +msgstr "ਉੱਪਰ ਲਈ ਪਰਤ(_T)" #: app/actions/layers-actions.c:105 -#, fuzzy msgid "Raise layer to top" -msgstr "ਪਰਤ ਨੂੰ ਉਪੱਰ ਉਠਾਉ" +msgstr "ਪਰਤ ਨੂੰ ਉਪੱਰ ਉਠਾਓ" #: app/actions/layers-actions.c:110 -#, fuzzy msgid "_Lower Layer" -msgstr "/ਹੇਠਲੀ ਪਰਤ" +msgstr "ਹੇਠਲੀ ਪਰਤ(_L)" #: app/actions/layers-actions.c:111 -#, fuzzy msgid "Lower layer" -msgstr "ਪਰਤ ਨੂੰ ਹੇਠ ਕਰੋ" +msgstr "ਹੇਠਲੀ ਪਰਤ" #: app/actions/layers-actions.c:116 -#, fuzzy msgid "Layer to _Bottom" -msgstr "/ਹੇਠ ਲਈ ਪਰਤ" +msgstr "ਹੇਠ ਲਈ ਪਰਤ(_B)" #: app/actions/layers-actions.c:117 -#, fuzzy msgid "Lower layer to bottom" msgstr "ਪਰਤ ਨੂੰ ਹੇਠਾਂ ਭੇਜੋ" #: app/actions/layers-actions.c:122 -#, fuzzy msgid "_Anchor Layer" -msgstr "/ਲਟਕਦੀ ਪਰਤ" +msgstr "ਲਟਕਦੀ ਪਰਤ(_A)" #: app/actions/layers-actions.c:123 -#, fuzzy msgid "Anchor floating layer" msgstr "ਤਰਦੀ ਪਰਤ ਨੂੰ ਜੋੜ੍ਹੋ" #: app/actions/layers-actions.c:128 -#, fuzzy msgid "Merge Do_wn" -msgstr "/ਹੇਠਾਂ ਨੂੰ ਵਿਲੀਨ" +msgstr "ਹੇਠਾਂ ਨੂੰ ਵਿਲੀਨ(_w)" #: app/actions/layers-actions.c:133 -#, fuzzy msgid "Merge _Visible Layers..." -msgstr "/ਦਿੱਖ ਪਰਤਾਂ ਨੂੰ ਵਿਲੀਨ ਕਰੋ..." +msgstr "ਦਿੱਖ ਪਰਤਾਂ ਨੂੰ ਵਿਲੀਨ(_V)..." #: app/actions/layers-actions.c:143 -#, fuzzy msgid "_Discard Text Information" -msgstr "/ਪਾਠ ਜਾਣਕਾਰੀ ਰੱਦ" +msgstr "ਪਾਠ ਜਾਣਕਾਰੀ ਰੱਦ(_D)" #: app/actions/layers-actions.c:148 -#, fuzzy msgid "Layer B_oundary Size..." -msgstr "/ਪਰਤ ਸੀਮਾ ਅਕਾਰ" +msgstr "ਪਰਤ ਸੀਮਾ ਅਕਾਰ(_o)..." #: app/actions/layers-actions.c:153 -#, fuzzy msgid "Layer to _Image Size" -msgstr "/ਚਿੱਤਰ ਦੇ ਅਕਾਰ ਦੀ ਪਰਤ" +msgstr "ਚਿੱਤਰ ਦੇ ਅਕਾਰ ਦੀ ਪਰਤ(_I)" #: app/actions/layers-actions.c:158 -#, fuzzy msgid "_Scale Layer..." -msgstr "/ਪਰਤ ਪੈਮਾਨਾ..." +msgstr "ਪਰਤ ਪੈਮਾਨਾ(_S)..." #: app/actions/layers-actions.c:163 -#, fuzzy msgid "Cr_op Layer" -msgstr "/ਪਰਤ/ਪਰਤ ਫੈਲਾਓ" +msgstr "ਪਰਤ ਫੈਲਾਓ(_o)" #: app/actions/layers-actions.c:168 -#, fuzzy msgid "Add La_yer Mask..." -msgstr "/ਪਰਤ ਮਖੌਟਾ ਜੋੜ੍ਹੋ..." +msgstr "ਪਰਤ ਮਖੌਟਾ ਜੋੜ੍ਹੋ(_y)..." #: app/actions/layers-actions.c:173 -#, fuzzy msgid "Add Alpha C_hannel" -msgstr "/ਐਲ਼ਫਾ ਚੈਨਲ ਜੋੜ੍ਹੋ" +msgstr "ਐਲ਼ਫਾ ਚੈਨਲ ਜੋੜ੍ਹੋ(_h)" #: app/actions/layers-actions.c:181 -#, fuzzy msgid "Keep Transparency" msgstr "ਪਾਰਦਰਸ਼ਤਾ ਰੱਖੋ" #: app/actions/layers-actions.c:187 -#, fuzzy msgid "Edit Layer Mask" -msgstr "ਪਰਤ ਮਖੋਟਾ ਜੋੜ੍ਹੋ" +msgstr "ਪਰਤ ਮਖੌਟਾ ਸੋਧ" #: app/actions/layers-actions.c:193 -#, fuzzy msgid "Show Layer Mask" -msgstr "ਪਰਤ-ਮਖੌਟਾ ਏਧਰ-ਓਧਰ" +msgstr "ਪਰਤ-ਮਖੌਟਾ ਵੇਖਾਓ" #: app/actions/layers-actions.c:199 -#, fuzzy msgid "Disable Layer Mask" -msgstr "ਪਰਤ ਮਖੌਟਾ ਹਟਾਉ" +msgstr "ਪਰਤ ਮਖੌਟਾ ਆਯੋਗ" #: app/actions/layers-actions.c:208 -#, fuzzy msgid "Apply Layer _Mask" -msgstr "/ਪਰਤ ਮਖੌਟਾ ਜੋੜ੍ਹੋ" +msgstr "ਪਰਤ ਮਖੌਟਾ ਲਾਗੂ(_M)" #: app/actions/layers-actions.c:213 -#, fuzzy msgid "Delete Layer Mas_k" -msgstr "/ਪਰਤ ਮਖੌਟਾ ਹਟਾਓ" +msgstr "ਪਰਤ ਮਖੌਟਾ ਹਟਾਓ(_k)" #: app/actions/layers-actions.c:221 -#, fuzzy msgid "_Mask to Selection" -msgstr "/ਚੋਣ ਤੇ ਮਖੌਟਾ" +msgstr "ਚੋਣ ਤੇ ਮਖੌਟਾ(_M)" #: app/actions/layers-actions.c:244 -#, fuzzy msgid "Al_pha to Selection" -msgstr "/ਚੋਣ ਲਈ ਐਲਫਾ" +msgstr "ਚੋਣ ਲਈ ਐਲਫਾ(_p)" #: app/actions/layers-actions.c:249 -#, fuzzy msgid "A_dd to Selection" -msgstr "/ ਚੋਣ ਵਿੱਚ ਜੋੜ੍ਹੋ" +msgstr "ਚੋਣ ਵਿੱਚ ਜੋੜ੍ਹੋ(_d)" #: app/actions/layers-actions.c:267 -#, fuzzy msgid "Select _Top Layer" -msgstr "/ਪਰਤ/ਸਟਾਕ/ਉਪਰਲੀ ਪਰਤ ਚੁਣੋ" +msgstr "ਉਪਰਲੀ ਪਰਤ ਚੁਣੋ(_T)" #: app/actions/layers-actions.c:272 -#, fuzzy msgid "Select _Bottom Layer" -msgstr "/ਪਰਤ/ਸਟਾਕ/ਥੱਲੇ ਵਾਲੀ ਪਰਤ ਚੁਣੋ" +msgstr "ਥੱਲੇ ਵਾਲੀ ਪਰਤ ਚੁਣੋ(_B)" #: app/actions/layers-actions.c:277 -#, fuzzy msgid "Select _Previous Layer" -msgstr "/ਪਰਤ/ਸਟਾਕ/ਪਿਛਲੀ ਪਰਤ ਚੁਣੋ" +msgstr "ਪਿਛਲੀ ਪਰਤ ਚੁਣੋ(_P)" #: app/actions/layers-actions.c:282 -#, fuzzy msgid "Select _Next Layer" -msgstr "/ਪਰਤ/ਸਟਾਕ/ਅਗਲੀ ਪਰਤ ਚੁਣੋ" +msgstr "ਅਗਲੀ ਪਰਤ ਚੁਣੋ(_N)" #: app/actions/layers-actions.c:290 -#, fuzzy msgid "Set Opacity" -msgstr "ਪਰਤ ਧੁੰਦਲਾਪਨ ਨਿਧਾਰਿਤ ਕਰੋ" +msgstr "ਧੁੰਦਲਾਪਨ ਨਿਧਾਰਨ" #: app/actions/layers-commands.c:196 msgid "Layer Attributes" @@ -2179,49 +2137,40 @@ msgstr "" #: app/actions/palette-editor-actions.c:53 -#, fuzzy msgid "_Delete Color" -msgstr "/ਰੰਗ ਹਟਾਉ" +msgstr "ਰੰਗ ਹਟਾਓ(_D)" #: app/actions/palette-editor-actions.c:54 -#, fuzzy msgid "Delete color" -msgstr "ਰੰਗ ਹਟਾਉ" +msgstr "ਰੰਗ ਹਟਾਓ" #: app/actions/palette-editor-actions.c:62 -#, fuzzy msgid "New Color from _FG" -msgstr "/FG ਤੋਂ ਨਵੇਂ ਰੰਗ" +msgstr "_FG ਤੋਂ ਨਵੇਂ ਰੰਗ" #: app/actions/palette-editor-actions.c:63 -#, fuzzy msgid "New color from FG" -msgstr "/FG ਤੋਂ ਨਵੇਂ ਰੰਗ" +msgstr "FG ਤੋਂ ਨਵੇਂ ਰੰਗ" #: app/actions/palette-editor-actions.c:68 -#, fuzzy msgid "New Color from _BG" -msgstr "/BG ਤੋਂ ਨਵੇਂ ਰੰਗ" +msgstr "_BG ਤੋਂ ਨਵੇਂ ਰੰਗ" #: app/actions/palette-editor-actions.c:69 -#, fuzzy msgid "New color from BG" -msgstr "/BG ਤੋਂ ਨਵੇਂ ਰੰਗ" +msgstr "BG ਤੋਂ ਨਵੇਂ ਰੰਗ" #: app/actions/palette-editor-actions.c:77 app/actions/view-actions.c:215 -#, fuzzy msgid "Zoom _In" -msgstr "/ਅਕਾਰ ਵਧਾਓ" +msgstr "ਅਕਾਰ ਵਧਾਓ(_I)" #: app/actions/palette-editor-actions.c:83 app/actions/view-actions.c:209 -#, fuzzy msgid "Zoom _Out" -msgstr "/ਅਕਾਰ ਘਟਾਓ" +msgstr "ਅਕਾਰ ਘਟਾਓ(_O)" #: app/actions/palette-editor-actions.c:89 -#, fuzzy msgid "Zoom _All" -msgstr "/ਸਭ ਜ਼ੂਮ" +msgstr "ਸਭ ਜ਼ੂਮ(_A)" #: app/actions/palette-editor-commands.c:68 msgid "Edit Palette Color" @@ -2236,74 +2185,60 @@ msgstr "ਰੰਗ-ਪੱਟੀ ਮੇਨੂ" #: app/actions/palettes-actions.c:48 -#, fuzzy msgid "_New Palette" -msgstr "/ਨਵੀ ਰੰਗ-ਪੱਟੀ " +msgstr "ਨਵੀ ਰੰਗ-ਪੱਟੀ(_N)" #: app/actions/palettes-actions.c:49 -#, fuzzy msgid "New palette" -msgstr "/ਨਵੀ ਰੰਗ-ਪੱਟੀ " +msgstr "ਨਵੀ ਰੰਗ-ਪੱਟੀ" #: app/actions/palettes-actions.c:54 -#, fuzzy msgid "_Import Palette..." -msgstr "/ਰੰਗ-ਪੱਟੀ ਆਯਾਤ..." +msgstr "ਰੰਗ-ਪੱਟੀ ਆਯਾਤ(_I)..." #: app/actions/palettes-actions.c:55 -#, fuzzy msgid "Import palette" msgstr "ਰੰਗ-ਪੱਟੀ ਆਯਾਤ" #: app/actions/palettes-actions.c:60 -#, fuzzy msgid "D_uplicate Palette" -msgstr "/ਨਕਲੀ ਰੰਗ-ਪੱਟੀ " +msgstr "ਨਕਲੀ ਰੰਗ-ਪੱਟੀ(_u)" #: app/actions/palettes-actions.c:61 -#, fuzzy msgid "Duplicate palette" -msgstr "/ਨਕਲੀ ਰੰਗ-ਪੱਟੀ " +msgstr "ਨਕਲੀ ਰੰਗ-ਪੱਟੀ" #: app/actions/palettes-actions.c:66 -#, fuzzy msgid "_Merge Palettes..." -msgstr "/ਵਿਲੀਨ ਰੰਗ-ਪੱਟੀ " +msgstr "ਵਿਲੀਨ ਰੰਗ-ਪੱਟੀ(_M)..." #: app/actions/palettes-actions.c:67 -#, fuzzy msgid "Merge palettes" msgstr "ਰੰਗ-ਪੱਟੀ ਵਿਲੀਨ" #: app/actions/palettes-actions.c:72 -#, fuzzy msgid "_Delete Palette" -msgstr "/ਰੰਗ-ਪੱਟੀ ਹਟਾਓ" +msgstr "ਰੰਗ-ਪੱਟੀ ਹਟਾਓ(_D)" #: app/actions/palettes-actions.c:73 -#, fuzzy msgid "Delete palette" -msgstr "/ਰੰਗ-ਪੱਟੀ ਹਟਾਓ" +msgstr "ਰੰਗ-ਪੱਟੀ ਹਟਾਓ" #: app/actions/palettes-actions.c:78 -#, fuzzy msgid "_Refresh Palettes" -msgstr "/ਰੰਗ-ਪੱਟੀ ਤਾਜ਼ਾ" +msgstr "ਰੰਗ-ਪੱਟੀ ਤਾਜ਼ਾ(_R)" #: app/actions/palettes-actions.c:79 -#, fuzzy msgid "Refresh palettes" -msgstr "/ਰੰਗ-ਪੱਟੀ ਤਾਜ਼ਾ" +msgstr "ਰੰਗ-ਪੱਟੀ ਤਾਜ਼ਾ" #: app/actions/palettes-actions.c:87 -#, fuzzy msgid "_Edit Palette..." -msgstr "/ਰੰਗ-ਪੱਟੀ ਸੋਧ..." +msgstr "ਰੰਗ-ਪੱਟੀ ਸੋਧ(_E)" #: app/actions/palettes-actions.c:88 -#, fuzzy msgid "Edit palette" -msgstr "/ਰੰਗ-ਪੱਟੀ ਸੋਧ..." +msgstr "ਰੰਗ-ਪੱਟੀ ਸੋਧ" #: app/actions/palettes-commands.c:72 msgid "Merge Palette" @@ -2318,73 +2253,60 @@ msgstr "ਤਰਤੀਬ ਮੇਨੂ" #: app/actions/patterns-actions.c:47 -#, fuzzy msgid "_New Pattern" -msgstr "/ਨਵੀ ਤਰਤੀਬ" +msgstr "ਨਵੀ ਤਰਤੀਬ(_N)" #: app/actions/patterns-actions.c:48 -#, fuzzy msgid "New pattern" -msgstr "/ਨਵੀ ਤਰਤੀਬ" +msgstr "ਨਵੀ ਤਰਤੀਬ" #: app/actions/patterns-actions.c:53 -#, fuzzy msgid "D_uplicate Pattern" -msgstr "/ਨਕਲੀ ਤਰਤੀਬ" +msgstr "ਨਕਲੀ ਤਰਤੀਬ(_u)" #: app/actions/patterns-actions.c:54 -#, fuzzy msgid "Duplicate pattern" -msgstr "/ਨਕਲੀ ਤਰਤੀਬ" +msgstr "ਨਕਲੀ ਤਰਤੀਬ" #: app/actions/patterns-actions.c:59 -#, fuzzy msgid "_Delete Pattern..." -msgstr "/ਤਰਤੀਬ ਹਟਾਓ..." +msgstr "ਤਰਤੀਬ ਹਟਾਓ(_D)..." #: app/actions/patterns-actions.c:60 -#, fuzzy msgid "Delete pattern" -msgstr "/ਤਰਤੀਬ ਹਟਾਓ..." +msgstr "ਤਰਤੀਬ ਹਟਾਓ" #: app/actions/patterns-actions.c:65 -#, fuzzy msgid "_Refresh Patterns" -msgstr "/ਤਰਤੀਬ ਤਾਜ਼ਾ" +msgstr "ਤਰਤੀਬ ਤਾਜ਼ਾ(_R)" #: app/actions/patterns-actions.c:66 -#, fuzzy msgid "Refresh patterns" -msgstr "/ਤਰਤੀਬ ਤਾਜ਼ਾ" +msgstr "ਤਰਤੀਬ ਤਾਜ਼ਾ" #: app/actions/patterns-actions.c:74 -#, fuzzy msgid "_Edit Pattern..." -msgstr "/ਤਰਤੀਬ ਸੋਧ..." +msgstr "ਤਰਤੀਬ ਸੋਧ(_E)..." #: app/actions/patterns-actions.c:75 -#, fuzzy msgid "Edit pattern" -msgstr "/ਤਰਤੀਬ ਸੋਧ..." +msgstr "ਤਰਤੀਬ ਸੋਧ" #: app/actions/plug-in-actions.c:62 -#, fuzzy msgid "Filte_rs" -msgstr "/ਫਿਲਟਰ" +msgstr "ਫਿਲਟਰ(_r)" #: app/actions/plug-in-actions.c:63 -#, fuzzy msgid "_Blur" -msgstr "ਨੀਲਾ" +msgstr "ਧੱਬਾ(_B)" #: app/actions/plug-in-actions.c:65 msgid "Ma_p" msgstr "" #: app/actions/plug-in-actions.c:66 -#, fuzzy msgid "_Noise" -msgstr "ਕੋਈ ਨਹੀ" +msgstr "" #: app/actions/plug-in-actions.c:67 msgid "Edge-De_tect" @@ -2395,70 +2317,60 @@ msgstr "" #: app/actions/plug-in-actions.c:69 -#, fuzzy msgid "_Generic" -msgstr "ਕੇਦਰ" +msgstr "ਸਧਾਰਨ(_G)" #: app/actions/plug-in-actions.c:70 msgid "Gla_ss Effects" -msgstr "" +msgstr "ਕੱਚ ਪ੍ਰਭਾਵ(_s)" #: app/actions/plug-in-actions.c:71 -#, fuzzy msgid "_Light Effects" -msgstr "ਰੋਸ਼ਨੀ ਜਾਂਚ" +msgstr "ਰੋਸ਼ਨੀ ਪ੍ਰਭਾਵ(_L)" #: app/actions/plug-in-actions.c:72 -#, fuzzy msgid "_Distorts" -msgstr "ਅਤੀਤ" +msgstr "ਖਿੰਡਣ(_D)" #: app/actions/plug-in-actions.c:73 msgid "_Artistic" -msgstr "" +msgstr "ਕਲਾਕਾਰੀ(_A)" #: app/actions/plug-in-actions.c:74 -#, fuzzy msgid "_Map" -msgstr "_M" +msgstr "ਨਕਸ਼ਾ(_M)" #: app/actions/plug-in-actions.c:75 -#, fuzzy msgid "_Render" -msgstr "ਕੇਦਰ" +msgstr "ਪੇਸ਼ਕਾਰ(_R)" #: app/actions/plug-in-actions.c:76 msgid "_Clouds" -msgstr "" +msgstr "ਬੱਦਲ(_C)" #: app/actions/plug-in-actions.c:77 -#, fuzzy msgid "_Nature" -msgstr "ਨਾਂ:" +msgstr "ਕੁਦਰਤੀ(_N)" #: app/actions/plug-in-actions.c:79 msgid "_Web" msgstr "" #: app/actions/plug-in-actions.c:80 -#, fuzzy msgid "An_imation" -msgstr "/ਫਿਲਟਰ/ਸਜੀਵਤਾ" +msgstr "ਸਜੀਵਤਾ(_i)" #: app/actions/plug-in-actions.c:81 -#, fuzzy msgid "C_ombine" -msgstr "ਜਾਰੀ ਰੱਖੋ" +msgstr "ਸੰਯੋਗ(_o)" #: app/actions/plug-in-actions.c:82 -#, fuzzy msgid "To_ys" -msgstr "ਸੰਦ" +msgstr "ਖਿਡੌਣੇ(_y)" #: app/actions/plug-in-actions.c:85 -#, fuzzy msgid "Reset all Filters..." -msgstr "/ਵੇਖੋ/ਦਰਿਸ਼ ਫਿਲਟਰ..." +msgstr "ਸਭ ਫਿਲਟਰ ਮੁੜ-ਤਿਆਰ.." #: app/actions/plug-in-actions.c:93 app/actions/plug-in-actions.c:363 msgid "Repeat Last" @@ -2479,34 +2391,28 @@ msgstr "\"%s\" ਨੂੰ ਮੁਡ਼ ਵਿਖਾਓ" #: app/actions/plug-in-commands.c:193 -#, fuzzy msgid "Reset all Filters" -msgstr "ਉਪਲੱਬਧ ਫਿਲਟਰ" +msgstr "" #: app/actions/plug-in-commands.c:207 -#, fuzzy msgid "Do you really want to reset all filters to default values?" -msgstr "ਕੀ ਤੁਸੀ ਨਿਸ਼ਚਿਤ ਹੀ ਸੰਦ ਚੋਣ ਨੂੰ ਮੂਲ ਹੀ ਮੁਡ਼ ਨਿਰਧਾਰਿਤ ਕਰਨਾ ਚਾਹੋਗੇ ?" +msgstr "ਕੀ ਤੁਸੀ ਨਿਸ਼ਚਿਤ ਹੀ ਸਭ ਫਿਲਟਰਾਂ ਨੂੰ ਮੂਲ ਹੀ ਮੁਡ਼ ਨਿਰਧਾਰਿਤ ਕਰਨਾ ਚਾਹੋਗੇ?" #: app/actions/qmask-actions.c:42 -#, fuzzy msgid "Quick Mask Menu" -msgstr "ਤੇਜ਼ ਮਖੌਟਾ" +msgstr "ਤੇਜ਼ ਮਖੌਟਾ ਮੇਨੂ" #: app/actions/qmask-actions.c:46 -#, fuzzy msgid "_Configure Color and Opacity..." -msgstr "ਰੰਗ-ਵੇਖਾਉਣ ਲਈ ਫਿਲਟਰ ਦੀ ਸੰਰਚਨਾ" +msgstr "ਰੰਗ ਤੇ ਧੁੰਦਲਾਪਨ ਸੰਰਚਨਾ(_C)..." #: app/actions/qmask-actions.c:54 -#, fuzzy msgid "_Quick Mask Active" -msgstr "/_Q ਮਖੌਟਾ ਸਰਗਰਮ" +msgstr "ਤੇਜ਼ ਮਖੌਟਾ ਸਰਗਰਮ(_Q)" #: app/actions/qmask-actions.c:60 -#, fuzzy msgid "Toggle _Quick Mask" -msgstr "ਤੇਜ਼ ਮਖੌਟਾ" +msgstr "ਤੇਜ਼ ਮਖੌਟਾ ਤਬਦੀਲ(_Q)" #: app/actions/qmask-actions.c:70 msgid "Mask _Selected Areas" @@ -2517,121 +2423,100 @@ msgstr "" #: app/actions/qmask-commands.c:106 -#, fuzzy msgid "Quick Mask Attributes" -msgstr "ਕਿਊ-ਮਾਸਕ ਗੁਣ ਸੋਧ" +msgstr "ਤੇਜ਼ ਮਖੌਟਾ ਗੁਣ" #: app/actions/qmask-commands.c:109 -#, fuzzy msgid "Edit Quick Mask Attributes" -msgstr "ਕਿਊ-ਮਾਸਕ ਗੁਣ ਸੋਧ" +msgstr "ਤੇਜ਼ ਮਖੌਟਾ ਗੁਣ ਸੋਧ" #: app/actions/qmask-commands.c:111 -#, fuzzy msgid "Edit Quick Mask Color" -msgstr "ਕਿਊ-ਮਾਸਕ ਰੰਗ ਸੋਧ" +msgstr "ਤੇਜ਼ ਮਖੌਟਾ ਰੰਗ ਸੋਧ" #: app/actions/qmask-commands.c:112 msgid "Mask Opacity:" msgstr "ਮਖੌਟਾ ਧੁੰਦਲਾਪਨ:" #: app/actions/select-actions.c:44 -#, fuzzy msgid "Selection Editor Menu" -msgstr "ਚੋਣ ਸੋਧਕ" +msgstr "ਚੋਣ ਸੰਪਾਦਕ ਮੇਨੂ" #: app/actions/select-actions.c:47 -#, fuzzy msgid "_Select" -msgstr "/ਚੋਣ" +msgstr "ਚੋਣ(_S)" #: app/actions/select-actions.c:50 msgid "_All" msgstr "" #: app/actions/select-actions.c:51 -#, fuzzy msgid "Select all" -msgstr "ਸਾਰੇ ਚੁਣੋ" +msgstr "ਸਭ ਚੁਣੋ" #: app/actions/select-actions.c:56 -#, fuzzy msgid "_None" -msgstr "ਕੋਈ ਨਹੀ" +msgstr "ਕੋਈ ਨਹੀਂ(_N)" #: app/actions/select-actions.c:57 -#, fuzzy msgid "Select none" msgstr "ਕੋਈ ਨਾ ਚੁਣੋ" #: app/actions/select-actions.c:62 -#, fuzzy msgid "_Invert" -msgstr "ਉਲਟ" +msgstr "ਉਲਟ(_I)" #: app/actions/select-actions.c:63 -#, fuzzy msgid "Invert selection" msgstr "ਉਲਟ ਚੋਣ" #: app/actions/select-actions.c:68 -#, fuzzy msgid "_Float" -msgstr "ਫੋਂਟ:" +msgstr "ਤਰਦਾ(_F)" #: app/actions/select-actions.c:73 msgid "Fea_ther..." msgstr "" #: app/actions/select-actions.c:78 -#, fuzzy msgid "_Sharpen" -msgstr "ਖਾਕਾ" +msgstr "ਤਿੱਖਾ(_S)" #: app/actions/select-actions.c:83 -#, fuzzy msgid "S_hrink..." -msgstr "ਘਟਾਇਆ ਜਾ ਰਿਹਾ ਹੈ..." +msgstr "ਸੁੰਘੜੋ(_h)..." #: app/actions/select-actions.c:88 -#, fuzzy msgid "_Grow..." -msgstr "/ਚੋਣ/ਉਭਾਰ..." +msgstr "ਫੈਲਾਓ(_G)..." #: app/actions/select-actions.c:93 -#, fuzzy msgid "Bo_rder..." -msgstr "/ਚੋਣ/ਹਾਸ਼ੀਆ..." +msgstr "ਹਾਸ਼ੀਆ(_r)..." #: app/actions/select-actions.c:98 -#, fuzzy msgid "Save to _Channel" -msgstr "/ਚੋਣ/ਚੈਨਲ ਤੇ ਸੰਭਾਲੋ..." +msgstr "ਚੈਨਲ ਤੇ ਸੰਭਾਲੋ(_C)" #: app/actions/select-actions.c:99 -#, fuzzy msgid "Save selection to channel" msgstr "ਚੈਨਲ ਤੇ ਚੋਣ ਸੰਭਾਲੋ" #: app/actions/select-actions.c:104 -#, fuzzy msgid "_Stroke Selection..." -msgstr "ਝਟਕਾ ਚੋਣ" +msgstr "ਚੋਣ ਝਟਕਾ(_S)..." #: app/actions/select-actions.c:105 -#, fuzzy msgid "Stroke selection..." -msgstr "ਝਟਕਾ ਚੋਣ" +msgstr "ਚੋਣ ਝਟਕਾ..." #: app/actions/select-actions.c:110 -#, fuzzy msgid "_Stroke Selection" -msgstr "ਝਟਕਾ ਚੋਣ" +msgstr "ਚੋਣ ਝਟਕਾ(_S)" #: app/actions/select-actions.c:111 -#, fuzzy msgid "Stroke selection with last values" -msgstr "ਝਟਕਾ ਚੋਣ" +msgstr "ਆਖਰੀ ਮੁੱਲ ਨਾਲ ਚੋਣ ਝਟਕਾ" #: app/actions/select-commands.c:136 app/core/gimpselection.c:201 msgid "Feather Selection" @@ -2684,45 +2569,40 @@ msgstr "ਨਮੂਨਾ ਮੇਨੂ" #: app/actions/templates-actions.c:46 -#, fuzzy msgid "_Create Image from Template..." -msgstr "ਨਵਾਂ ਨਮੂਨਾ ਬਣਾਉ" +msgstr "ਨਮੂਨੇ ਤੋਂ ਚਿੱਤਰ ਬਣਾਓ(_C)..." #: app/actions/templates-actions.c:47 msgid "Create a new image from the selected template" msgstr "ਚੁਣੇ ਨਮੂਨੇ ਤੋ ਨਵਾਂ ਚਿੱਤਰ ਬਣਾਉ " #: app/actions/templates-actions.c:52 -#, fuzzy msgid "_New Template..." -msgstr "/ਨਵਾਂ ਨਮੂਨਾ..." +msgstr "ਨਵਾਂ ਨਮੂਨਾ(_N)..." #: app/actions/templates-actions.c:53 msgid "Create a new template" msgstr "ਨਵਾਂ ਨਮੂਨਾ ਬਣਾਉ" #: app/actions/templates-actions.c:58 -#, fuzzy msgid "D_uplicate Template..." -msgstr "/ਨਕਲੀ ਨਮੂਨਾ..." +msgstr "ਨਕਲੀ ਨਮੂਨਾ(_u)..." #: app/actions/templates-actions.c:59 msgid "Duplicate the selected template" msgstr "ਚੁਣੇ ਨਮੂਨੇ ਦੀ ਨਕਲ ਬਣਾਉ" #: app/actions/templates-actions.c:64 -#, fuzzy msgid "_Edit Template..." -msgstr "/ਨਮੂਨਾ ਸੋਧ..." +msgstr "ਨਮੂਨਾ ਸੋਧ(_E)..." #: app/actions/templates-actions.c:65 msgid "Edit the selected template" msgstr "ਚੁਣਿਆ ਨਮੂਨਾ ਸੋਧੋ" #: app/actions/templates-actions.c:70 -#, fuzzy msgid "_Delete Template" -msgstr "/ਨਮੂਨਾ ਹਟਾਓ" +msgstr "ਨਮੂਨਾ ਹਟਾਓ(_D)" #: app/actions/templates-actions.c:71 msgid "Delete the selected template" @@ -2746,17 +2626,14 @@ #: app/actions/templates-commands.c:243 #, c-format -msgid "" -"Are you sure you want to delete template '%s' from the list and from disk?" +msgid "Are you sure you want to delete template '%s' from the list and from disk?" msgstr "ਕੀ ਤੁਸੀ ਯਕੀਨਨ ਹੀ ਨਮੂਨਾ '%s' ਨੂੰ ਸੂਚੀ ਅਤੇ ਡਿਸਕ ਤੋ ਹਟਾਉਣਾ ਚਾਹੁੰਦੇ ਹੋ ?" #: app/actions/text-editor-actions.c:44 -#, fuzzy msgid "Open" -msgstr "/ਫਾਇਲ/ਖੋਲ੍ਹੋ..." +msgstr "ਖੋਲ੍ਹੋ" #: app/actions/text-editor-actions.c:45 -#, fuzzy msgid "Load text from file" msgstr "ਫਾਇਲ ਤੋ ਪਾਠ ਲੋਡ ਕਰੋ" @@ -2765,27 +2642,24 @@ msgstr "ਸਾਫ਼" #: app/actions/text-editor-actions.c:51 -#, fuzzy msgid "Clear all text" -msgstr "ਸਾਰਾ ਪਾਠ ਸਾਫ਼ ਕਰੋ" +msgstr "ਸਭ ਪਾਠ ਸਾਫ਼" #: app/actions/text-editor-actions.c:59 msgid "LTR" -msgstr "" +msgstr "LTR" #: app/actions/text-editor-actions.c:60 app/text/text-enums.c:51 -#, fuzzy msgid "From left to right" -msgstr "ਖੱਬੇ ਤੋ ਸੱਜੇ" +msgstr "ਖੱਬੇ ਤੋਂ ਸੱਜੇ" #: app/actions/text-editor-actions.c:65 msgid "RTL" -msgstr "" +msgstr "RTL" #: app/actions/text-editor-actions.c:66 app/text/text-enums.c:52 -#, fuzzy msgid "From right to left" -msgstr "ਸੱਜੇ ਤੋ ਖੱਬੇ" +msgstr "ਸੱਜੇ ਤੋਂ ਖੱਬੇ" #: app/actions/text-editor-commands.c:60 msgid "Open Text File (UTF-8)" @@ -2806,49 +2680,40 @@ msgstr "ਸੰਦ ਚੋਣ ਮੇਨੂ" #: app/actions/tool-options-actions.c:60 -#, fuzzy msgid "_Save Options to" -msgstr "/ਚੋਣ ਨੂੰ ਸੰਭਾਲੋ" +msgstr "ਚੋਣ ਨੂੰ ਸੰਭਾਲੋ(_S)" #: app/actions/tool-options-actions.c:64 -#, fuzzy msgid "_Restore Options from" -msgstr "ਇਸ ਤੋ ਚੋਣ ਨੂੰ ਮੁਡ਼-ਨਿਰਧਾਰਿਤ ਕਰੋ..." +msgstr "ਇਸ ਤੋਂ ਚੋਣ ਮੁਡ਼-ਨਿਰਧਾਰਨ(_R)" #: app/actions/tool-options-actions.c:68 -#, fuzzy msgid "Re_name Saved Options" -msgstr "ਸੰਭਾਲੀ ਚੋਣ" +msgstr "ਸੰਭਾਲੀ ਚੋਣ ਨਾਂ-ਤਬਦੀਲ(_n)" #: app/actions/tool-options-actions.c:72 -#, fuzzy msgid "_Delete Saved Options" -msgstr "ਸੰਭਾਲੀ ਚੋਣ ਹਟਾਉ..." +msgstr "ਸੰਭਾਲੀ ਚੋਣ ਹਟਾਓ(_D)" #: app/actions/tool-options-actions.c:76 -#, fuzzy msgid "_New Entry..." -msgstr "/ਨਵਾਂ ਰਸਤਾ..." +msgstr "ਨਵਾਂ ਇੰਦਰਾਜ਼(_N)..." #: app/actions/tool-options-actions.c:81 -#, fuzzy msgid "R_eset Tool Options" -msgstr "ਸੰਦ ਚੋਣ ਮੁਡ਼ ਨਿਰਧਾਰਨ" +msgstr "ਸੰਦ ਚੋਣ ਮੁਡ਼ ਨਿਰਧਾਰਨ(_e)" #: app/actions/tool-options-actions.c:82 -#, fuzzy msgid "Reset to default values" -msgstr "ਚੁਣੇ ਫਿਲਟਰ ਦਾ ਮੁੱਲ ਮੁਡ਼ ਨਿਰਧਾਰਿਤ ਕਰੋ" +msgstr "ਮੂਲ ਮੁੱਲ ਮੁਡ਼ ਨਿਰਧਾਰਿਤ ਕਰੋ" #: app/actions/tool-options-actions.c:87 -#, fuzzy msgid "Reset _all Tool Options..." -msgstr "ਸੰਦ ਚੋਣ ਮੁਡ਼ ਨਿਰਧਾਰਨ" +msgstr "ਸਭ ਸੰਦ ਚੋਣ ਮੁਡ਼ ਨਿਰਧਾਰਨ(_a)..." #: app/actions/tool-options-actions.c:88 -#, fuzzy msgid "Reset all tool options" -msgstr "ਸੰਦ ਚੋਣ ਮੁਡ਼ ਨਿਰਧਾਰਨ" +msgstr "ਸਭ ਸੰਦ ਚੋਣ ਮੁਡ਼ ਨਿਰਧਾਰਨ ਕਰੋ" #: app/actions/tool-options-commands.c:73 msgid "Save Tool Options" @@ -2881,351 +2746,286 @@ msgstr "ਕੀ ਤੁਸੀ ਨਿਸ਼ਚਿਤ ਹੀ ਸੰਦ ਚੋਣ ਨੂੰ ਮੂਲ ਹੀ ਮੁਡ਼ ਨਿਰਧਾਰਿਤ ਕਰਨਾ ਚਾਹੋਗੇ ?" #: app/actions/tools-actions.c:47 -#, fuzzy msgid "Tools Menu" -msgstr "ਸੰਦਪੱਟੀ ਮੇਨੂ" +msgstr "ਸੰਦ ਮੇਨੂ" #: app/actions/tools-actions.c:50 -#, fuzzy msgid "_Tools" -msgstr "/ਸੰਦ" +msgstr "ਸੰਦ(_T)" #: app/actions/tools-actions.c:51 -#, fuzzy msgid "_Selection Tools" -msgstr "/ਸੰਦ/ਚੋਣ ਸੰਦ" +msgstr "ਚੋਣ ਸੰਦ(_S)" #: app/actions/tools-actions.c:52 -#, fuzzy msgid "_Paint Tools" -msgstr "ਪੇਟ ਸੰਦ:" +msgstr "ਪੇਟ ਸੰਦ(_P)" #: app/actions/tools-actions.c:53 -#, fuzzy msgid "_Transform Tools" -msgstr "/ਸੰਦ/ਤਬਦੀਲ ਸੰਦ" +msgstr "ਤਬਦੀਲ ਸੰਦ(_T)" #: app/actions/tools-actions.c:54 -#, fuzzy msgid "_Color Tools" -msgstr "/ਸੰਦ/ਰੰਗ ਸੰਦ" +msgstr "ਰੰਗ ਸੰਦ(_C)" #: app/actions/tools-actions.c:57 -#, fuzzy msgid "_Reset Order & Visibility" -msgstr "ਇਕਾਈ ਦਿੱਖ" +msgstr "ਕ੍ਰਮ ਤੇ ਦਿੱਖ ਮੁੜ-ਨਿਰਧਾਰਨ(_R)" #: app/actions/tools-actions.c:58 msgid "Reset tool order and visibility" -msgstr "" +msgstr "ਸੰਦ ਕ੍ਰਮ ਤੇ ਦਿੱਖ ਮੁੜ-ਨਿਰਧਾਰਨ" #: app/actions/tools-actions.c:66 -#, fuzzy msgid "_Show in Toolbox" -msgstr "ਸੰਦ-ਸੰਕੇਤ ਵੇਖਾਓ" +msgstr "ਸੰਦ-ਬਕਸੇ ਵਿੱਚ ਵੇਖਾਓ(_S)" #: app/actions/tools-actions.c:75 -#, fuzzy msgid "_By Color" -msgstr "RGB ਰੰਗ" +msgstr "ਰੰਗ ਨਾਲ(_B)" #: app/actions/tools-actions.c:80 -#, fuzzy msgid "_Arbitrary Rotation..." -msgstr "ਘੁੰਮਾ ਰਿਹਾ ਹੈ..." +msgstr "" #: app/actions/vectors-actions.c:44 msgid "Paths Menu" -msgstr "ਰਸਤਾ ਮੇਨੂ" +msgstr "ਮਾਰਗ ਮੇਨੂ" #: app/actions/vectors-actions.c:48 -#, fuzzy msgid "Path _Tool" -msgstr "/ਰਸਤਾ ਸੰਦ" +msgstr "ਮਾਰਗ ਸੰਦ(_T)" #: app/actions/vectors-actions.c:53 -#, fuzzy msgid "_Edit Path Attributes..." -msgstr "/ਰਸਤਾ ਗੁਣ ਦੀ ਸੋਧ..." +msgstr "ਮਾਰਗ ਗੁਣ ਸੋਧ(_E)..." #: app/actions/vectors-actions.c:54 -#, fuzzy msgid "Edit path attributes" -msgstr "ਰਸਤਾ ਗੁਣ ਦੀ ਸੋਧ" +msgstr "ਮਾਰਗ ਗੁਣ ਸੋਧ" #: app/actions/vectors-actions.c:59 -#, fuzzy msgid "_New Path..." -msgstr "/ਨਵਾਂ ਰਸਤਾ..." +msgstr "ਨਵਾਂ ਮਾਰਗ(_N)" #: app/actions/vectors-actions.c:60 -#, fuzzy msgid "New path..." -msgstr "/ਨਵਾਂ ਰਸਤਾ..." +msgstr "ਨਵਾਂ ਮਾਰਗ..." #: app/actions/vectors-actions.c:65 -#, fuzzy msgid "_New Path" -msgstr "ਨਵਾਂ ਰਸਤਾ" +msgstr "ਨਵਾਂ ਮਾਰਗ(_N)" #: app/actions/vectors-actions.c:66 -#, fuzzy msgid "New path with last values" -msgstr "" -"ਨਵਾਂ ਰਸਤਾ\n" -"%s ਨਵਾਂ ਰਸਤਾ ਤਖਤੀ" +msgstr "ਆਖਰੀ ਮੁੱਲਾ ਨਾਲ ਨਵਾਂ ਮਾਰਗ" #: app/actions/vectors-actions.c:71 -#, fuzzy msgid "D_uplicate Path" -msgstr "/ਨਕਲੀ ਰਸਤਾ" +msgstr "ਨਕਲੀ ਮਾਰਗ(_u)" #: app/actions/vectors-actions.c:72 -#, fuzzy msgid "Duplicate path" -msgstr "ਨਕਲੀ ਰਸਤਾ" +msgstr "ਨਕਲੀ ਮਾਰਗ" #: app/actions/vectors-actions.c:77 -#, fuzzy msgid "_Delete Path" -msgstr "/ਰਸਤਾ ਹਟਾਉ" +msgstr "ਮਾਰਗ ਹਟਾਓ(_D)" #: app/actions/vectors-actions.c:78 -#, fuzzy msgid "Delete path" -msgstr "ਰਸਤਾ ਹਟਾਉ" +msgstr "ਮਾਰਗ ਹਟਾਓ" #: app/actions/vectors-actions.c:83 -#, fuzzy msgid "Merge _Visible Paths" -msgstr "/ਦਿੱਸ ਰਹੇ ਰਸਤੇ ਵਿਲੀਨ ਕਰੋ" +msgstr "ਦਿੱਸ ਰਹੇ ਮਾਰਗ ਵਿਲੀਨ(_V)" #: app/actions/vectors-actions.c:88 -#, fuzzy msgid "_Raise Path" -msgstr "/ਉਪਰਲਾ ਰਸਤਾ" +msgstr "ਉਠਾਇਆ ਮਾਰਗ(_R)" #: app/actions/vectors-actions.c:89 -#, fuzzy msgid "Raise path" -msgstr "ਰਸਤਾ ਉਠਾਉ" +msgstr "ਮਾਰਗ ਉਠਾਓ" #: app/actions/vectors-actions.c:94 -#, fuzzy msgid "Raise Path to _Top" -msgstr "ਰਸਤੇ ਨੂੰ ਉਪਰ ਵੱਲ ਉਠਾਉ" +msgstr "ਮਾਰਗ ਨੂੰ ਉਪਰ ਵੱਲ ਉਠਾਓ(_T)" #: app/actions/vectors-actions.c:95 -#, fuzzy msgid "Raise path to top" -msgstr "ਰਸਤੇ ਨੂੰ ਉਪਰ ਵੱਲ ਉਠਾਉ" +msgstr "ਮਾਰਗ ਨੂੰ ਉਪਰ ਵੱਲ ਉਠਾਓ" #: app/actions/vectors-actions.c:100 -#, fuzzy msgid "_Lower Path" -msgstr "/ਹੇਠਲਾ ਰਸਤਾ" +msgstr "ਹੇਠਲਾਂ ਮਾਰਗ(_L)" #: app/actions/vectors-actions.c:101 -#, fuzzy msgid "Lower path" -msgstr "ਰਸਤਾ ਹੇਠ" +msgstr "ਮਾਰਗ ਹੇਠਾਂ" #: app/actions/vectors-actions.c:106 -#, fuzzy msgid "Lower Path to _Bottom" -msgstr "ਰਸਤੇ ਨੂੰ ਹੇਠ ਵੱਲ ਨਿਵਾਉ" +msgstr "ਮਾਰਗ ਨੂੰ ਹੇਠ ਵੱਲ ਨਿਵਾਓ(_B)" #: app/actions/vectors-actions.c:107 -#, fuzzy msgid "Lower path to bottom" -msgstr "ਰਸਤੇ ਨੂੰ ਹੇਠ ਵੱਲ ਨਿਵਾਉ" +msgstr "ਮਾਰਗ ਨੂੰ ਹੇਠ ਵੱਲ ਨਿਵਾਓ" #: app/actions/vectors-actions.c:112 -#, fuzzy msgid "Stro_ke Path..." -msgstr "/ਛੋਹ ਰਸਤਾ..." +msgstr "ਛੋਹ ਮਾਰਗ(_k)..." #: app/actions/vectors-actions.c:113 -#, fuzzy msgid "Stroke path..." -msgstr "/ਛੋਹ ਰਸਤਾ..." +msgstr "ਛੋਹ ਮਾਰਗ..." #: app/actions/vectors-actions.c:118 -#, fuzzy msgid "Stro_ke Path" -msgstr "ਛੋਹ ਰਸਤਾ" +msgstr "ਛੋਹ ਮਾਰਗ(_k)" #: app/actions/vectors-actions.c:119 msgid "Stroke path with last values" msgstr "" #: app/actions/vectors-actions.c:124 -#, fuzzy msgid "Co_py Path" -msgstr "/ਨਕਲ ਰਸਤਾ" +msgstr "ਨਕਲ ਮਾਰਗ(_p)" #: app/actions/vectors-actions.c:129 -#, fuzzy msgid "Paste Pat_h" -msgstr "/ਚਿਪਕਾਉਣ ਰਸਤਾ" +msgstr "ਚਿਪਕਾਉਣ ਮਾਰਗ(_h)" #: app/actions/vectors-actions.c:134 -#, fuzzy msgid "I_mport Path..." -msgstr "/ਲਿਆਉਣ ਲਈ ਰਸਤਾ..." +msgstr "ਆਯਾਤ ਮਾਰਗ(_m)..." #: app/actions/vectors-actions.c:139 -#, fuzzy msgid "E_xport Path..." -msgstr "/ਭੇਜਣ ਲਈ ਰਸਤਾ..." +msgstr "ਨਿਰਯਾਤ ਮਾਰਗ(_x)..." #: app/actions/vectors-actions.c:162 -#, fuzzy msgid "Path to Sele_ction" -msgstr "/ਚੋਣ ਲਈ ਰਸਤਾ" +msgstr "ਚੋਣ ਲਈ ਮਾਰਗ(_c)" #: app/actions/vectors-actions.c:163 app/tools/gimpvectortool.c:1893 -#, fuzzy msgid "Path to selection" -msgstr "ਚੋਣ ਲਈ ਰਸਤਾ" +msgstr "ਚੋਣ ਲਈ ਮਾਰਗ" #: app/actions/vectors-actions.c:168 -#, fuzzy msgid "Fr_om Path" -msgstr "/ਚੋਣ/ਰਸਤੇ ਤੋ" +msgstr "ਮਾਰਗ ਤੋਂ(_o)" #: app/actions/vectors-actions.c:194 -#, fuzzy msgid "Selecti_on to Path" -msgstr "/ਰਸਤੇ ਲਈ ਚੋਣ" +msgstr "ਮਾਰਗ ਲਈ ਚੋਣ(_o)" #: app/actions/vectors-actions.c:195 -#, fuzzy msgid "Selection to path" -msgstr "/ਰਸਤੇ ਲਈ ਚੋਣ" +msgstr "ਮਾਰਗ ਲਈ ਚੋਣ" #: app/actions/vectors-actions.c:200 -#, fuzzy msgid "To _Path" -msgstr "ਰਸਤਾਂ ਏਧਰ-ਓਧਰ" +msgstr "ਮਾਰਗ ਲਈ(_P)" #: app/actions/vectors-actions.c:205 -#, fuzzy msgid "Selection to Path (_Advanced)" -msgstr "" -"ਰਸਤਾ ਚੋਣ ਲਈ\n" -"%s ਤਕਨੀਕੀ ਚੋਣ" +msgstr "ਮਾਰਗ ਲਈ ਚੋਣ (ਤਕਨੀਕੀ(_A))" #: app/actions/vectors-actions.c:206 -#, fuzzy msgid "Advanced options" -msgstr "ਸੰਭਾਲੀ ਚੋਣ" +msgstr "ਤਕਨੀਕੀ ਚੋਣ" #: app/actions/vectors-commands.c:140 msgid "Path Attributes" -msgstr "ਰਸਤਾ ਗੁਣ" +msgstr "ਮਾਰਗ ਗੁਣ" #: app/actions/vectors-commands.c:143 msgid "Edit Path Attributes" -msgstr "ਰਸਤਾ ਗੁਣ ਦੀ ਸੋਧ" +msgstr "ਮਾਰਗ ਗੁਣ ਦੀ ਸੋਧ" #: app/actions/vectors-commands.c:167 app/actions/vectors-commands.c:168 #: app/actions/vectors-commands.c:190 msgid "New Path" -msgstr "ਨਵਾਂ ਰਸਤਾ" +msgstr "ਨਵਾਂ ਮਾਰਗ" #: app/actions/vectors-commands.c:171 msgid "New Path Options" -msgstr "ਨਵਾਂ ਰਸਤਾ ਚੋਣ" +msgstr "ਨਵਾਂ ਮਾਰਗ ਚੋਣ" #: app/actions/vectors-commands.c:299 app/pdb/paths_cmds.c:1210 msgid "Path to Selection" -msgstr "ਚੋਣ ਲਈ ਰਸਤਾ" +msgstr "ਚੋਣ ਲਈ ਮਾਰਗ" #: app/actions/vectors-commands.c:370 app/tools/gimpvectortool.c:1923 #: app/vectors/gimpvectors.c:237 msgid "Stroke Path" -msgstr "ਛੋਹ ਰਸਤਾ" +msgstr "ਛੋਹ ਮਾਰਗ" #: app/actions/view-actions.c:63 -#, fuzzy msgid "_View" -msgstr "/ਵੇਖੋ" +msgstr "ਵੇਖੋ(_V)" #: app/actions/view-actions.c:64 -#, fuzzy msgid "_Zoom" -msgstr "ਆਕਾਰ:" +msgstr "ਅਕਾਰ(_Z)" #: app/actions/view-actions.c:65 -#, fuzzy msgid "_Padding Color" -msgstr "ਰੰਗ ਸੋਧ" +msgstr "ਚਿਣੇ ਰੰਗ(_P)" #: app/actions/view-actions.c:73 -#, fuzzy msgid "_Close" -msgstr "ਸਮਰੂਪ" +msgstr "ਬੰਦ(_C)" #: app/actions/view-actions.c:78 -#, fuzzy msgid "_Fit Image in Window" -msgstr "ਚਿੱਤਰ ਝਰੋਖੇ" +msgstr "ਚਿੱਤਰ ਝਰੋਖੇ ਵਿੱਚ ਅਨੁਕੂਲ(_F)" #: app/actions/view-actions.c:79 -#, fuzzy msgid "Fit image in window" -msgstr "ਚਿੱਤਰ ਝਰੋਖੇ" +msgstr "ਚਿੱਤਰ ਝਰੋਖੇ ਵਿੱਚ ਅਨੁਕੂਲ" #: app/actions/view-actions.c:84 -#, fuzzy msgid "Fit Image to Window" -msgstr "ਝਰੋਖੇ ਦੇ ਅਨੁਕੂਲ" +msgstr "ਚਿੱਤਰ ਝਰੋਖੇ ਦੇ ਅਨੁਕੂਲ" #: app/actions/view-actions.c:85 -#, fuzzy msgid "Fit image to window" -msgstr "ਝਰੋਖੇ ਦੇ ਅਨੁਕੂਲ" +msgstr "ਚਿੱਤਰ ਝਰੋਖੇ ਦੇ ਅਨੁਕੂਲ" #: app/actions/view-actions.c:90 -#, fuzzy msgid "_Info Window" -msgstr "ਜਾਣਕਾਰੀ ਝਰੋਖਾ" +msgstr "ਜਾਣਕਾਰੀ ਝਰੋਖਾ(_I)" #: app/actions/view-actions.c:95 -#, fuzzy msgid "Na_vigation Window" -msgstr "ਝਰੋਖੇ ਦੇ ਅਨੁਕੂਲ" +msgstr "ਏਧਰ-ਓਧਰ ਝਰੋਖਾ" #: app/actions/view-actions.c:100 -#, fuzzy msgid "Display _Filters..." -msgstr "/ਵੇਖੋ/ਦਰਿਸ਼ ਫਿਲਟਰ..." +msgstr "ਫਿਲਟਰ ਵੇਖਾਓ(_F)..." #: app/actions/view-actions.c:105 -#, fuzzy msgid "Shrink _Wrap" -msgstr "ਸੁੰਘੜ੍ਹੋ ਚੈਨਲ" +msgstr "" #: app/actions/view-actions.c:106 -#, fuzzy msgid "Shrink wrap" -msgstr "ਸੁੰਘੜ੍ਹੋ ਚੈਨਲ" +msgstr "" #: app/actions/view-actions.c:111 -#, fuzzy msgid "Move to Screen..." -msgstr "/ਪਰਦੇ ਤੇ ਜਾਉ..." +msgstr "ਪਰਦੇ ਤੇ ਜਾਓ..." #: app/actions/view-actions.c:119 -#, fuzzy msgid "_Dot for Dot" -msgstr "/ਵੇਖੋ/ਬਿੰਦੂ ਤੋ ਬਿੰਦੂ" +msgstr "ਬਿੰਦੂ ਤੋ ਬਿੰਦੂ(_D)" #: app/actions/view-actions.c:125 -#, fuzzy msgid "Show _Selection" -msgstr "ਚੋਣ ਵੇਖਾਓ" +msgstr "ਚੋਣ ਵੇਖਾਓ(_S)" #: app/actions/view-actions.c:131 msgid "Show _Layer Boundary" @@ -3241,23 +3041,20 @@ msgstr "ਸੰਕੇਤ ਵਿਖਾਓ" #: app/actions/view-actions.c:149 -#, fuzzy msgid "S_how Grid" -msgstr "ਗਰਿੱਡ ਵੇਖਾਓ" +msgstr "ਗਰਿੱਡ ਵੇਖਾਓ(_h)" #: app/actions/view-actions.c:155 -#, fuzzy msgid "Sna_p to Grid" -msgstr "ਗਰਿੱਡ ਵੇਖਾਓ" +msgstr "ਗਰਿੱਡ ਦੀ ਤਸਵੀਰ(_p)" #: app/actions/view-actions.c:161 msgid "Show _Menubar" msgstr "ਮੇਨੂ-ਪੱਟੀ ਵੇਖਾਉ" #: app/actions/view-actions.c:167 -#, fuzzy msgid "Show R_ulers" -msgstr "ਪੈਮਾਨਾ ਵੇਖਾਓ" +msgstr "ਪੈਮਾਨਾ ਵੇਖਾਓ(_u)" #: app/actions/view-actions.c:173 msgid "Show Scroll_bars" @@ -3268,88 +3065,72 @@ msgstr "ਸਥਿਤੀ-ਪੱਟੀ ਵੇਖਾਓ" #: app/actions/view-actions.c:185 -#, fuzzy msgid "Fullscr_een" -msgstr "/ਵੇਖੋ/ਪੂਰੇ ਪਰਦੇ ਤੇ" +msgstr "ਪੂਰੇ ਪਰਦੇ ਤੇ(_e)" #: app/actions/view-actions.c:234 -#, fuzzy msgid "16:1 (1600%)" -msgstr "/ਵੇਖੋ/ਆਕਾਰ/ 16:1 (1600%)" +msgstr "16:1 (1600%)" #: app/actions/view-actions.c:239 -#, fuzzy msgid "8:1 (800%)" -msgstr "/ਵੇਖੋ/ਆਕਾਰ/8:1 (800%)" +msgstr "8:1 (800%)" #: app/actions/view-actions.c:244 -#, fuzzy msgid "4:1 (400%)" -msgstr "/ਵੇਖੋ/ਆਕਾਰ/4:1 (400%)" +msgstr "4:1 (400%)" #: app/actions/view-actions.c:249 -#, fuzzy msgid "2:1 (200%)" -msgstr "/ਵੇਖੋ/ਆਕਾਰ/2:1 (200%)" +msgstr "2:1 (200%)" #: app/actions/view-actions.c:254 -#, fuzzy msgid "1:1 (100%)" -msgstr "/ਵੇਖੋ/ਆਕਾਰ/1:1 (100%)" +msgstr "1:1 (100%)" #: app/actions/view-actions.c:255 msgid "Zoom 1:1" msgstr "ਆਕਾਰ 1:1" #: app/actions/view-actions.c:260 -#, fuzzy msgid "1:2 (50%)" -msgstr "/ਵੇਖੋ/ਆਕਾਰ/1:2 (50%)" +msgstr "1:2 (50%)" #: app/actions/view-actions.c:265 -#, fuzzy msgid "1:4 (25%)" -msgstr "/ਵੇਖੋ/ਆਕਾਰ/1:4 (25%)" +msgstr "1:4 (25%)" #: app/actions/view-actions.c:270 -#, fuzzy msgid "1:8 (12.5%)" -msgstr "/ਵੇਖੋ/ਆਕਾਰ/1:8 (12.5%)" +msgstr "1:8 (12.5%)" #: app/actions/view-actions.c:275 -#, fuzzy msgid "1:16 (6.25%)" -msgstr "/ਵੇਖੋ/ਆਕਾਰ/1:16 (6.25%)" +msgstr "1:16 (6.25%)" #: app/actions/view-actions.c:280 -#, fuzzy msgid "O_ther..." -msgstr "ਹੋਰ (%s) ..." +msgstr "ਹੋਰ(_t)..." #: app/actions/view-actions.c:288 -#, fuzzy msgid "From _Theme" -msgstr "/ਸਰੂਪ ਤੋ" +msgstr "ਸਰੂਪ ਤੋਂ(_T)" #: app/actions/view-actions.c:293 -#, fuzzy msgid "_Light Check Color" -msgstr "/ਫਿੱਕੇ ਜਾਂਚ ਰੰਗ" +msgstr "ਫਿੱਕੇ ਜਾਂਚ ਰੰਗ(_L)" #: app/actions/view-actions.c:298 -#, fuzzy msgid "_Dark Check Color" -msgstr "/ਗੂੜ੍ਹੇ ਜਾਂਚ ਰੰਗ" +msgstr "ਗੂੜ੍ਹੇ ਜਾਂਚ ਰੰਗ(_D)" #: app/actions/view-actions.c:303 -#, fuzzy msgid "Select _Custom Color..." -msgstr "/ਪਸੰਦੀਦਾ ਰੰਗ ਵਰਤੋਂ..." +msgstr "ਪਸੰਦੀਦਾ ਰੰਗ ਵਰਤੋਂ(_C)..." #: app/actions/view-actions.c:308 -#, fuzzy msgid "As in _Preferences" -msgstr "/ਜਿਵੇ ਕਿ ਪਸੰਦ ਵਿੱਚ" +msgstr "ਜਿਵੇਂ ਕਿ ਪਸੰਦ ਵਿੱਚ(_P)" #: app/actions/view-actions.c:592 #, c-format @@ -3366,9 +3147,8 @@ msgstr "" #: app/actions/view-commands.c:574 -#, fuzzy msgid "Set Custom Canvas Padding Color" -msgstr "ਸੋਧ ਰੰਗ" +msgstr "" #: app/base/base-enums.c:23 msgid "Smooth" @@ -3580,9 +3360,8 @@ msgstr "ਬਿਨਾਂ ਸੰਭਾਲੇ ਚਿੱਤਰ ਨੂੰ ਬੰਦ ਕਰਨ ਤੋ ਪਹਿਲ਼ਾਂ ਪੁੱਛੋ।" #: app/config/gimprc-blurbs.h:33 -#, fuzzy msgid "Sets the pixel format of cursors the GIMP will use." -msgstr "ਕਰਸਰ ਦਾ ਮੋਡ ਨਿਰਧਾਰਿਤ ਕਰੋ ਜੋਕਿ ਜੈਮਪ ਵਰਤੇਗਾ।" +msgstr "ਕਰਸਰ ਦੇ ਪਿਕਸਲ ਫਾਰਮਿਟ ਦਿਓ, ਜੋ ਕਿ ਜੈਮਪ ਵਰਤੇਗਾ।" #: app/config/gimprc-blurbs.h:36 msgid "Sets the mode of cursor the GIMP will use." @@ -3659,13 +3438,11 @@ #: app/config/gimprc-blurbs.h:167 #, fuzzy -msgid "" -"Install a private colormap; might be useful on 8-bit (256 colors) displays." +msgid "Install a private colormap; might be useful on 8-bit (256 colors) displays." msgstr "ਇੱਕ ਨਿੱਜੀ ਰੰਗ-ਖਾਕਾ ਇੰਸਟਾਲ ਕਰੋ, ਜੋ ਕਿ ਫਰਜ਼ੀ-ਰੰਗ ਦਿੱਖ ਲਈ ਬਹੁਤ ਜ਼ਰੂਰੀ ਹੈ" #: app/config/gimprc-blurbs.h:170 -msgid "" -"Sets the level of interpolation used for scaling and other transformations." +msgid "Sets the level of interpolation used for scaling and other transformations." msgstr "" #: app/config/gimprc-blurbs.h:174 @@ -3749,11 +3526,10 @@ msgstr "" #: app/config/gimprc-blurbs.h:250 -#, fuzzy msgid "" "Sets the preview size used for layers and channel previews in newly created " "dialogs." -msgstr "ਪਰਤਾਂ ਅਤੇ ਚੈਨਲਾਂ ਦਾ ਮੂਲ ਨਮੂਨਾ ਅਕਾਰ ਨਿਰਧਾਰਿਤ ਕਰੋ।" +msgstr "ਨਵੇਂ ਬਣੇ ਵਾਰਤਾਲਾਪ ਵਿੱਚ ਪਰਤਾਂ ਅਤੇ ਚੈਨਲਾਂ ਦਾ ਮੂਲ ਨਮੂਨਾ ਅਕਾਰ ਨਿਰਧਾਰਿਤ ਕਰੋ।" #: app/config/gimprc-blurbs.h:254 msgid "" @@ -3767,16 +3543,14 @@ msgid "" "When enabled, the image window will automatically resize itself, when " "zooming into and out of images." -msgstr "" -"ਜਦੋ ਨਿਰਧਾਰਿਤ ਕੀਤਾ ਤਾਂ, ਚਿੱਤਰ ਝਰੋਖਾ ਅਕਾਰ ਦੇ ਵਾਧੇ ਅਤੇ ਘਟਾ ਸਾਰਆਪਣੇ ਆਪ ਨੂੰ ਤਬਦੀਲ ਕਰ ਲਵੇਗਾ।" +msgstr "ਜਦੋ ਨਿਰਧਾਰਿਤ ਕੀਤਾ ਤਾਂ, ਚਿੱਤਰ ਝਰੋਖਾ ਅਕਾਰ ਦੇ ਵਾਧੇ ਅਤੇ ਘਟਾ ਸਾਰਆਪਣੇ ਆਪ ਨੂੰ ਤਬਦੀਲ ਕਰ ਲਵੇਗਾ।" #: app/config/gimprc-blurbs.h:262 msgid "Let GIMP try to restore your last saved session on each startup." msgstr "ਜੈਪਮ ਨੂੰ ਆਪਣੇ ਅਖੀਰੀ ਸੰਭਾਲੇ ਅਜਲਾਸ ਨੂੰ ਸ਼ੁਰੂ ਵੇਲੇ ਮੁਡ਼-ਪ੍ਰਾਪਤ ਕਰਨ ਦੀ ਆਗਿਆ ਦਿਉ।" #: app/config/gimprc-blurbs.h:265 -msgid "" -"Remember the current tool, pattern, color, and brush across GIMP sessions." +msgid "Remember the current tool, pattern, color, and brush across GIMP sessions." msgstr "ਜੈਮਪ ਅਜਲਾਸ ਦੌਰਾਨ ਮੌਜੂਦਾ ਸੰਦ, ਤਰਤੀਬ, ਰੰਗ ਅਤੇ ਬੁਰਸ਼ ਵਗੈਰਾ ਨੂੰ ਯਾਦ ਰੱਖੋ।" #: app/config/gimprc-blurbs.h:269 @@ -3797,11 +3571,10 @@ msgstr "" #: app/config/gimprc-blurbs.h:284 -#, fuzzy msgid "" "When enabled, the cursor will be shown over the image while using a paint " "tool." -msgstr "ਜਦੋ ਚੁਣਿਆ ਗਿਆ ਤਾਂ, ਚੁਣਿਆ ਬੁਰਸ਼ ਸਭ ਸੰਦਾਂ ਲਈ ਵਰਤਿਆ ਜਾਵੇਗਾ।" +msgstr "ਜਦੋ ਚੁਣਿਆ ਗਿਆ ਤਾਂ, ਕਰਸਰ ਨੂੰ ਚਿੱਤਰ ਉਪਰ ਵੇਖਾਇਆ ਜਾਵੇ, ਜਦੋਂ ਕਿ ਪੇਂਟ ਸੰਦ ਹੋਵੇ।" #: app/config/gimprc-blurbs.h:288 msgid "" @@ -3982,33 +3755,28 @@ msgstr "ਗਲਤੀ, '%s' ਨੂੰ ਪਾਰਸ ਕਰਨ ਦੌਰਾਨ, ਸਤਰ %d ਵਿੱਚ: %s" #: app/core/core-enums.c:27 -#, fuzzy msgid "_White (full opacity)" -msgstr "ਸਫੇਦ(ਪੂਰਾ ਧੁੰਦਲਾਪਨ)" +msgstr "ਸਫੇਦ(ਪੂਰਾ ਧੁੰਦਲਾਪਨ)(_W)" #: app/core/core-enums.c:28 -#, fuzzy msgid "_Black (full transparency)" -msgstr "ਕਾਲਾ(ਪੂਰਾ ਪਾਰਦਰਸ਼ੀ)" +msgstr "ਕਾਲਾ(ਪੂਰਾ ਪਾਰਦਰਸ਼ੀ)(_B)" #: app/core/core-enums.c:29 -#, fuzzy msgid "Layer's _alpha channel" -msgstr "ਪਰਤ ਦਾ ਐਲਫਾ ਚੈਨਲ " +msgstr "ਪਰਤ ਦਾ ਐਲਫਾ ਚੈਨਲ(_a)" #: app/core/core-enums.c:30 -#, fuzzy msgid "_Transfer layer's alpha channel" -msgstr "ਤਬਦੀਲੀ ਪਰਤ ਦਾ ਐਲਫਾ ਚੈਨਲ" +msgstr "ਤਬਦੀਲੀ ਪਰਤ ਦਾ ਐਲਫਾ ਚੈਨਲ(_T)" #: app/core/core-enums.c:31 msgid "_Selection" msgstr "ਚੋਣ" #: app/core/core-enums.c:32 -#, fuzzy msgid "_Grayscale copy of layer" -msgstr "ਪਰਤ ਦੀ ਭੂਰੀ ਨਕਲ" +msgstr "ਪਰਤ ਦੀ ਸਲੇਟੀ ਨਕਲ(_G)" #: app/core/core-enums.c:61 app/core/gimp-gradients.c:70 msgid "FG to BG (RGB)" @@ -4019,27 +3787,22 @@ msgstr "FG ਤੋ BG (HSV)" #: app/core/core-enums.c:63 -#, fuzzy msgid "FG to transparent" msgstr "FG ਤੋ ਪਾਰਦਰਸ਼ੀ" #: app/core/core-enums.c:64 -#, fuzzy msgid "Custom gradient" msgstr "ਢਾਲਵਾਂ ਸੋਧ" #: app/core/core-enums.c:92 -#, fuzzy msgid "FG color fill" msgstr "FG ਰੰਗ ਭਰੋ" #: app/core/core-enums.c:93 -#, fuzzy msgid "BG color fill" msgstr "BG ਰੰਗ ਭਰੋ" #: app/core/core-enums.c:94 -#, fuzzy msgid "Pattern fill" msgstr "ਤਰਤੀਬ ਭਰੋ" @@ -4081,38 +3844,32 @@ msgstr "" #: app/core/core-enums.c:222 -#, fuzzy msgid "Positioned" -msgstr "ਸਥਿਤੀ: %0.6f" +msgstr "ਸਥਿਤੀ" #: app/core/core-enums.c:251 -#, fuzzy msgid "Generate optimum palette" -msgstr "/ਰੰਗ-ਪੱਟੀ ਹਟਾਓ" +msgstr "ਅਨੁਕੂਲ ਰੰਗ-ਪੱਟੀ ਬਣਾਓ" #: app/core/core-enums.c:252 -#, fuzzy msgid "Use web-optimized palette" -msgstr "/ਰੰਗ-ਪੱਟੀ ਹਟਾਓ" +msgstr "ਵੈਬ-ਅਨੁਕੂਲ ਰੰਗ-ਪੱਟੀ ਵਰਤੋਂ" #: app/core/core-enums.c:253 msgid "Use black and white (1-bit) palette" -msgstr "" +msgstr "ਕਾਲੀ ਤੇ ਚਿੱਟੀ ਰੰਗ ਪੱਟੀ (1-ਬਿੱਟ) ਵਰਤੋਂ" #: app/core/core-enums.c:254 -#, fuzzy msgid "Use custom palette" -msgstr "/ਰੰਗ-ਪੱਟੀ ਹਟਾਓ" +msgstr "ਸੋਧੀ ਰੰਗ-ਪੱਟੀ ਵਰਤੋਂ" #: app/core/core-enums.c:329 -#, fuzzy msgid "Foreground color" -msgstr "ਮੁੱਖ-ਭੂਮੀ ਰੰਗ:" +msgstr "ਮੁੱਖ-ਭੂਮੀ ਰੰਗ" #: app/core/core-enums.c:330 -#, fuzzy msgid "Background color" -msgstr "ਪਿੱਠਭੂਮੀ ਰੰਗ:" +msgstr "ਪਿੱਠਭੂਮੀ ਰੰਗ" #: app/core/core-enums.c:331 msgid "White" @@ -4129,9 +3886,8 @@ msgstr "ਤਰਤੀਬ" #: app/core/core-enums.c:371 -#, fuzzy msgid "Bi-linear" -msgstr "ਦੋ-ਰੇਖਾਇਕ" +msgstr "ਦੋ-ਧਾਰੀ" #: app/core/core-enums.c:372 msgid "Radial" @@ -4143,39 +3899,32 @@ msgstr "ਵਰਗ" #: app/core/core-enums.c:374 -#, fuzzy msgid "Conical (sym)" -msgstr "ਸ਼ੰਕੂਕਾਰ(ਸਮਮਿਤੀ)" +msgstr "ਸ਼ੰਕੂਕਾਰ (ਸਮਮਿਤੀ)" #: app/core/core-enums.c:375 -#, fuzzy msgid "Conical (asym)" -msgstr "ਸ਼ੰਕੂਕਾਰ(ਅਸਮਮਿਤੀ)" +msgstr "ਸ਼ੰਕੂਕਾਰ (ਅਸਮਮਿਤੀ)" #: app/core/core-enums.c:376 -#, fuzzy msgid "Shaped (angular)" -msgstr "ਤੇਜ਼(ਕੋਣਾਕਾਰ)" +msgstr "ਸ਼ਕਲ (ਕੋਣਾਕਾਰ)" #: app/core/core-enums.c:377 -#, fuzzy msgid "Shaped (spherical)" -msgstr "ਤੇਜ਼(ਗੋਲਾਕਾਰ)" +msgstr "ਸ਼ਕਲ (ਗੋਲਾਕਾਰ)" #: app/core/core-enums.c:378 -#, fuzzy msgid "Shaped (dimpled)" -msgstr "ਤੇਜ਼(ਲਹਿਰਦਾਰ)" +msgstr "ਸ਼ਕਲ (ਲਹਿਰਦਾਰ)" #: app/core/core-enums.c:379 -#, fuzzy msgid "Spiral (cw)" -msgstr "ਘੁੰਮਾਓ(ਘਡ਼ੀ ਦੀ ਦਿਸ਼ਾ ਵਿੱਚ)" +msgstr "ਘੁੰਮਾਓ (ਸੱਜਾ ਪਾਸੇ)" #: app/core/core-enums.c:380 -#, fuzzy msgid "Spiral (ccw)" -msgstr "ਘੁੰਮਾਓ(ਘਡ਼ੀ ਦੀ ਦਿਸ਼ਾ ਵਿੱਚ)" +msgstr "ਘੁੰਮਾਓ (ਘਡ਼ੀ ਦਿਸ਼ਾ ਵਿੱਚ)" #: app/core/core-enums.c:410 msgid "Intersections (dots)" @@ -4190,7 +3939,6 @@ msgstr "ਧਾਰੀਦਾਰ" #: app/core/core-enums.c:413 -#, fuzzy msgid "Double dashed" msgstr "ਦੂਹਰੀ-ਧਾਰੀਦਾਰ" @@ -4199,13 +3947,12 @@ msgstr "ਇੱਕ" #: app/core/core-enums.c:441 -#, fuzzy msgid "Stroke line" -msgstr "ਝਟਕਾ ਚੋਣ" +msgstr "ਝਟਕਾ ਸਤਰ" #: app/core/core-enums.c:442 msgid "Stroke with a paint tool" -msgstr "" +msgstr "ਪੇਂਟ ਸੰਦ ਨਾਲ ਛੋਹ" #: app/core/core-enums.c:498 msgid "Miter" @@ -4232,69 +3979,60 @@ msgstr "ਰੇਖਾ" #: app/core/core-enums.c:568 -#, fuzzy msgid "Long dashes" msgstr "ਲੰਬੀਆਂ ਧਾਰੀਆਂ" #: app/core/core-enums.c:569 -#, fuzzy msgid "Medium dashes" msgstr "ਮੱਧਮ ਧਾਰੀਆਂ" #: app/core/core-enums.c:570 -#, fuzzy msgid "Short dashes" msgstr "ਛੋਟੀਆਂ ਧਾਰੀਆਂ" #: app/core/core-enums.c:571 -#, fuzzy msgid "Sparse dots" msgstr "ਵਿਰਲੇ ਬਿੰਦੂ" #: app/core/core-enums.c:572 -#, fuzzy msgid "Normal dots" msgstr "ਸਧਾਰਨ ਬਿੰਦੂ" #: app/core/core-enums.c:573 -#, fuzzy msgid "Dense dots" -msgstr "ਘਣੇ ਬਿੰਦੂ" +msgstr "ਸੰਘਣੇ ਬਿੰਦੂ" #: app/core/core-enums.c:574 msgid "Stipples" msgstr "ਬਿੰਦੀਕਾਰੀ" #: app/core/core-enums.c:575 -#, fuzzy msgid "Dash dot..." msgstr "ਧਾਰੀਦਾਰ ਬਿੰਦੂ..." #: app/core/core-enums.c:576 -#, fuzzy msgid "Dash dot dot..." msgstr "ਧਾਰੀਦਾਰ ਬਿੰਦੂ ਬਿੰਦੂ..." #: app/core/core-enums.c:604 msgid "Stock ID" -msgstr "" +msgstr "ਸਟਾਕ ID" #: app/core/core-enums.c:605 msgid "Inline pixbuf" -msgstr "" +msgstr "ਇੰਲਾਇਨ ਪਿਕਬਫ" #: app/core/core-enums.c:606 -#, fuzzy msgid "Image file" -msgstr "ਚਿੱਤਰ ਕਿਸਮ" +msgstr "ਚਿੱਤਰ ਫਾਇਲ" #: app/core/core-enums.c:634 msgid "Circle" -msgstr "" +msgstr "ਚੱਕਰ" #: app/core/core-enums.c:636 msgid "Diamond" -msgstr "" +msgstr "ਹੀਰਾ" #: app/core/core-enums.c:664 app/dialogs/preferences-dialog.c:1950 msgid "Horizontal" @@ -4313,7 +4051,6 @@ msgstr "ਬਾਰੀਕ" #: app/core/core-enums.c:731 -#, fuzzy msgid "Very small" msgstr "ਬਹੁਤ ਛੋਟਾ" @@ -4330,7 +4067,6 @@ msgstr "ਵੱਡਾ" #: app/core/core-enums.c:735 -#, fuzzy msgid "Very large" msgstr "ਬਹੁਤ ਵੱਡਾ" @@ -4347,17 +4083,14 @@ msgstr "ਵਿਰਾਟ" #: app/core/core-enums.c:767 -#, fuzzy msgid "Sawtooth wave" msgstr "ਧਾਰੀਦਾਰ ਲਹਿਰ" #: app/core/core-enums.c:768 -#, fuzzy msgid "Triangular wave" msgstr "ਤਿਕੋਨੀ ਲਹਿਰ" #: app/core/core-enums.c:830 -#, fuzzy msgid "No thumbnails" msgstr "ਕੋਈ ਥੰਮਨੇਲ ਨਹੀ" @@ -4370,12 +4103,10 @@ msgstr "ਵੱਡਾ (256x256)" #: app/core/core-enums.c:859 -#, fuzzy msgid "Forward (traditional)" msgstr "ਅੱਗੇ (ਮੂਲ਼)" #: app/core/core-enums.c:860 -#, fuzzy msgid "Backward (corrective)" msgstr "ਪਿੱਛੇ (ਸਹੀ)" @@ -4384,47 +4115,38 @@ msgstr "<<ਗਲਤ>>" #: app/core/core-enums.c:1030 -#, fuzzy msgid "Scale image" msgstr "ਚਿੱਤਰ ਪੈਮਾਨਾ" #: app/core/core-enums.c:1031 -#, fuzzy msgid "Resize image" msgstr "ਚਿੱਤਰ ਮੁਡ਼-ਅਕਾਰ" #: app/core/core-enums.c:1032 -#, fuzzy msgid "Flip image" msgstr "ਚਿੱਤਰ ਝਟਕੋ" #: app/core/core-enums.c:1033 -#, fuzzy msgid "Rotate image" -msgstr "ਚਿੱਤਰ ਘੁੰਮਾਉ" +msgstr "ਚਿੱਤਰ ਘੁੰਮਾਓ" #: app/core/core-enums.c:1034 -#, fuzzy msgid "Crop image" -msgstr "ਚਿੱਤਰ ਫੈਲਾਉ" +msgstr "ਚਿੱਤਰ ਫੈਲਾਓ" #: app/core/core-enums.c:1035 -#, fuzzy msgid "Convert image" msgstr "ਚਿੱਤਰ ਤਬਦੀਲ" #: app/core/core-enums.c:1036 -#, fuzzy msgid "Merge layers" -msgstr "ਪਰਤਾਂ ਨੂੰ ਵਿਲੀਨ ਕਰੋ" +msgstr "ਪਰਤ ਵਿਲੀਨ" #: app/core/core-enums.c:1037 -#, fuzzy msgid "Merge vectors" -msgstr "ਵੈਕਟਰਾਂ ਨੂੰ ਵਿਲੀਨ ਕਰੋ" +msgstr "ਵੈਕਟਰ ਵਿਲੀਨ" #: app/core/core-enums.c:1038 app/core/gimpchannel.c:383 -#, fuzzy msgid "Quick Mask" msgstr "ਤੇਜ਼ ਮਖੌਟਾ" @@ -4439,74 +4161,60 @@ msgstr "ਦਿਸ਼ਾ-ਨਿਰਦੇਸ਼ਨ" #: app/core/core-enums.c:1042 app/core/core-enums.c:1072 -#, fuzzy msgid "Drawable mod" msgstr "ਉਲੀਕਣਯੋਗ ਮੋਡ" #: app/core/core-enums.c:1043 app/core/core-enums.c:1073 -#, fuzzy msgid "Selection mask" -msgstr "ਮਖੋਟਾ ਚੋਣ" +msgstr "ਮਖੌਟਾ ਚੋਣ" #: app/core/core-enums.c:1044 app/core/core-enums.c:1076 -#, fuzzy msgid "Item visibility" msgstr "ਇਕਾਈ ਦਿੱਖ" #: app/core/core-enums.c:1045 -#, fuzzy msgid "Linked item" -msgstr "ਸੰਬੰਧਿਤ ਇਕਾਈ" +msgstr "ਸਬੰਧਤ ਇਕਾਈ" #: app/core/core-enums.c:1046 -#, fuzzy msgid "Item properties" msgstr "ਇਕਾਈ ਵਿਸ਼ੇਸਤਾ" #: app/core/core-enums.c:1047 app/core/core-enums.c:1075 -#, fuzzy msgid "Move item" msgstr "ਇਕਾਈ ਏਧਰ-ਓਧਰ" #: app/core/core-enums.c:1048 -#, fuzzy msgid "Scale item" -msgstr "ਰਸਤਾ ਪੈਮਾਨਾ" +msgstr "ਇਕਾਈ ਪੈਮਾਨਾ" #: app/core/core-enums.c:1049 -#, fuzzy msgid "Resize item" -msgstr "ਰਸਤਾ ਨੂੰ ਮੁਡ਼-ਅਕਾਰ ਦਿਉ" +msgstr "ਇਕਾਈ ਮੁੜ-ਅਕਾਰ" #: app/core/core-enums.c:1050 app/core/core-enums.c:1080 -#, fuzzy msgid "Add layer mask" -msgstr "ਪਰਤ ਮਖੋਟਾ ਜੋੜ੍ਹੋ" +msgstr "ਪਰਤ ਮਖੌਟਾ ਜੋੜ੍ਹੋ" #: app/core/core-enums.c:1051 -#, fuzzy msgid "Apply layer mask" -msgstr "ਪਰਤ ਮਖੌਟਾ ਲਾਗੂ ਕਰੋ" +msgstr "ਪਰਤ ਮਖੌਟਾ ਲਾਗੂ" #: app/core/core-enums.c:1052 -#, fuzzy msgid "Floating selection to layer" msgstr "ਪਰਤ ਲਈ ਤਰਦੀ ਚੋਣ" #: app/core/core-enums.c:1053 -#, fuzzy msgid "Float selection" msgstr "ਤਰਦੀ ਚੋਣ" #: app/core/core-enums.c:1054 -#, fuzzy msgid "Anchor floating selection" -msgstr "ਸਹਾਰਾ ਤਰਦੀ ਚੋਣ" +msgstr "ਲਟਕਦੀ ਤਰਦੀ ਚੋਣ" #: app/core/core-enums.c:1055 -#, fuzzy msgid "Remove floating selection" -msgstr "ਅਸਥਿਰ ਚੋਣ ਹਟਾਉ" +msgstr "ਅਸਥਿਰ ਚੋਣ ਹਟਾਓ" #: app/core/core-enums.c:1056 app/core/gimp-edit.c:267 msgid "Paste" @@ -4517,7 +4225,7 @@ msgstr "ਕੱਟੋ" #: app/core/core-enums.c:1058 app/core/core-enums.c:1086 -#: app/tools/gimptexttool.c:142 app/widgets/widgets-enums.c:263 +#: app/tools/gimptexttool.c:144 app/widgets/widgets-enums.c:263 msgid "Text" msgstr "ਪਾਠ" @@ -4536,73 +4244,60 @@ msgstr "" #: app/core/core-enums.c:1062 app/core/core-enums.c:1103 -#, fuzzy msgid "Remove parasite" -msgstr "ਰਸਤਾ ਹਟਾਉ" +msgstr "ਪਾਰਾਸਾਇਟ ਹਟਾਓ" #: app/core/core-enums.c:1063 -#, fuzzy msgid "Import paths" -msgstr "ਰਸਤਾ ਲਿਆਉ" +msgstr "ਮਾਰਗ ਲਿਆਓ" #: app/core/core-enums.c:1064 app/pdb/drawable_cmds.c:1693 msgid "Plug-In" msgstr "ਪਲੱਗਇੰਨ" #: app/core/core-enums.c:1065 -#, fuzzy msgid "Image type" msgstr "ਚਿੱਤਰ ਕਿਸਮ" #: app/core/core-enums.c:1066 -#, fuzzy msgid "Image size" msgstr "ਚਿੱਤਰ ਕਿਸਮ" #: app/core/core-enums.c:1067 -#, fuzzy msgid "Resolution change" msgstr "ਰੈਜ਼ੋਲੇਸ਼ਨ ਤਬਦੀਲ" #: app/core/core-enums.c:1070 -#, fuzzy msgid "Change indexed palette" msgstr "ਤਤਕਰਾ ਰੰਗ-ਪੱਟੀ ਤਬਦੀਲ" #: app/core/core-enums.c:1074 -#, fuzzy msgid "Rename item" -msgstr "ਇਕਾਈ ਦਾ ਨਾਂ-ਤਬਦੀਲ" +msgstr "ਇਕਾਈ ਨਾਂ-ਤਬਦੀਲ" #: app/core/core-enums.c:1077 -#, fuzzy msgid "Set item linked" -msgstr "ਇਕਾਈ ਸੰਬੰਧ ਨਿਰਧਾਰਨ" +msgstr "ਇਕਾਈ ਸਬੰਧ ਨਿਰਧਾਰਨ" #: app/core/core-enums.c:1078 -#, fuzzy msgid "New layer" -msgstr "ਨਵੀ ਪਰਤ" +msgstr "ਨਵੀਂ ਪਰਤ" #: app/core/core-enums.c:1081 -#, fuzzy msgid "Delete layer mask" -msgstr "ਪਰਤ ਮਖੌਟਾ ਹਟਾਉ" +msgstr "ਪਰਤ ਮਖੌਟਾ ਹਟਾਓ" #: app/core/core-enums.c:1082 -#, fuzzy msgid "Reposition layer" -msgstr "ਪਰਤ ਨੂੰ ਮੁਡ਼-ਸਥਾਪਿਤ ਕਰੋ" +msgstr "ਪਰਤ ਮੁਡ਼-ਸਥਾਪਨ" #: app/core/core-enums.c:1083 -#, fuzzy msgid "Set layer mode" -msgstr "ਪਰਤ ਮੋਡ ਨਿਰਧਾਰਿਤ ਕਰੋ" +msgstr "ਪਰਤ ਮੋਡ ਨਿਰਧਾਰਨ" #: app/core/core-enums.c:1084 -#, fuzzy msgid "Set layer opacity" -msgstr "ਪਰਤ ਧੁੰਦਲਾਪਨ ਨਿਧਾਰਿਤ ਕਰੋ" +msgstr "ਪਰਤ ਧੁੰਦਲਾਪਨ ਨਿਰਧਾਰਨ" #: app/core/core-enums.c:1085 msgid "Set preserve trans" @@ -4610,45 +4305,37 @@ #: app/core/core-enums.c:1087 msgid "Text modified" -msgstr "" +msgstr "ਪਾਠ ਸੋਧ" #: app/core/core-enums.c:1088 -#, fuzzy msgid "New channel" msgstr "ਨਵਾਂ ਚੈਨਲ" #: app/core/core-enums.c:1090 -#, fuzzy msgid "Reposition channel" -msgstr "ਚੈਨਲ ਨੂੰ ਮੁਡ਼-ਸਥਾਪਿਤ ਕਰੋ" +msgstr "ਚੈਨਲ ਮੁਡ਼-ਸਥਾਪਨ" #: app/core/core-enums.c:1091 -#, fuzzy msgid "Channel color" msgstr "ਚੈਨਲ ਰੰਗ" #: app/core/core-enums.c:1092 -#, fuzzy msgid "New vectors" -msgstr "ਨਵੈ ਵੈਕਟਰ" +msgstr "ਨਵਾਂ ਵੈਕਟਰ" #: app/core/core-enums.c:1093 -#, fuzzy msgid "Delete vectors" -msgstr "ਵੈਕਟਰ ਹਟਾਉ" +msgstr "ਵੈਕਟਰ ਹਟਾਓ" #: app/core/core-enums.c:1094 -#, fuzzy msgid "Vectors mod" -msgstr "ਵੈਕਟਰ ਹਟਾਉ" +msgstr "ਵੈਕਟਰ ਢੰਗ" #: app/core/core-enums.c:1095 -#, fuzzy msgid "Reposition vectors" -msgstr "ਵੈਕਟਰਾਂ ਨੂੰ ਮੁਡ਼-ਸਥਾਪਿਤ ਕਰੋ" +msgstr "ਵੈਕਟਰ ਮੁਡ਼-ਸਥਾਪਤ" #: app/core/core-enums.c:1096 -#, fuzzy msgid "FS to layer" msgstr "FS ਤੋ ਪਰਤ" @@ -4716,7 +4403,7 @@ #. register all internal procedures #: app/core/gimp.c:638 msgid "Procedural Database" -msgstr "" +msgstr "ਕਾਰਵਾਈ ਡਾਟਾਬੇਸ" #: app/core/gimp.c:641 msgid "Plug-In Environment" @@ -4747,19 +4434,19 @@ msgstr " %d ਬਾਈਟ'%s' ਤੋ ਪੜ੍ਹੇ ਨਹੀ ਜਾ ਸਕੇ ਹਨ: %s" #: app/core/gimpbrush.c:554 -#, fuzzy, c-format +#, c-format msgid "Fatal parse error in brush file '%s': Width = 0." -msgstr "ਬੁਰਸ਼ ਫਾਇਲ '%s' ਵਿੱਚ ਘਾਤਕ ਗਲਤੀ: ਫਾਇਲ ਨਕਾਰਾ ਹੈ।" +msgstr "ਬੁਰਸ਼ ਫਾਇਲ '%s' ਵਿੱਚ ਘਾਤਕ ਗਲਤੀ: ਚੌੜਾਈ = 0" #: app/core/gimpbrush.c:563 -#, fuzzy, c-format +#, c-format msgid "Fatal parse error in brush file '%s': Height = 0." -msgstr "ਬੁਰਸ਼ ਫਾਇਲ '%s' ਵਿੱਚ ਘਾਤਕ ਗਲਤੀ: ਫਾਇਲ ਨਕਾਰਾ ਹੈ।" +msgstr "ਬੁਰਸ਼ ਫਾਇਲ '%s' ਵਿੱਚ ਘਾਤਕ ਗਲਤੀ: ਉਚਾਈ = 0" #: app/core/gimpbrush.c:572 -#, fuzzy, c-format +#, c-format msgid "Fatal parse error in brush file '%s': Bytes = 0." -msgstr "ਬੁਰਸ਼ ਫਾਇਲ '%s' ਵਿੱਚ ਘਾਤਕ ਗਲਤੀ: ਫਾਇਲ ਨਕਾਰਾ ਹੈ।" +msgstr "ਬੁਰਸ਼ ਫਾਇਲ '%s' ਵਿੱਚ ਘਾਤਕ ਗਲਤੀ: ਬਾਇਟ = 0" #: app/core/gimpbrush.c:596 #, c-format @@ -4808,18 +4495,18 @@ msgstr "ਬੁਰਸ਼ ਫਾਇਲ '%s' ਵਿੱਚ ਘਾਤਕ ਗਲਤੀ: ਅਣਪਛਾਤਾ ਜੈਮਪ ਬੁਰਸ਼ ਵਰਜਨ " #: app/core/gimpbrushgenerated.c:669 -#, fuzzy, c-format +#, c-format msgid "Fatal parse error in brush file '%s': Unknown GIMP brush shape." -msgstr "ਬੁਰਸ਼ ਫਾਇਲ '%s' ਵਿੱਚ ਘਾਤਕ ਗਲਤੀ: ਅਣਪਛਾਤਾ ਜੈਮਪ ਬੁਰਸ਼ ਵਰਜਨ " +msgstr "ਬੁਰਸ਼ ਫਾਇਲ '%s' ਵਿੱਚ ਘਾਤਕ ਗਲਤੀ: ਅਣਪਛਾਤਾ ਜੈਮਪ ਬੁਰਸ਼ ਰੂਪ ਹੈ।" #: app/core/gimpbrushgenerated.c:750 -#, fuzzy, c-format +#, c-format msgid "Error while reading brush file '%s': %s" -msgstr "ਗਲਤੀ, '%s' ਨੂੰ ਪੜ੍ਹਨ ਦੌਰਾਨ: %s" +msgstr "ਬੁਰਸ਼ ਫਾਇਲ਼ '%s' ਨੂੰ ਪੜ੍ਹਨ ਦੌਰਾਨ ਗਲਤੀ: %s" #: app/core/gimpbrushgenerated.c:752 msgid "File is truncated" -msgstr "" +msgstr "ਫਾਇਲ ਇਕਸਾਰ ਨਹੀਂ ਰਹੀ" #: app/core/gimpbrushpipe.c:369 app/core/gimpbrushpipe.c:389 #: app/core/gimpbrushpipe.c:479 @@ -4860,9 +4547,8 @@ msgstr "ਤਬਦੀਲ ਚੈਨਲ" #: app/core/gimpchannel.c:288 -#, fuzzy msgid "Stroke Channel" -msgstr "ਸੁੰਘੜ੍ਹੋ ਚੈਨਲ" +msgstr "ਚੈਨਲ ਛੋਹ" #: app/core/gimpchannel.c:310 msgid "Feather Channel" @@ -4943,13 +4629,13 @@ msgstr "'%s' ਨੂੰ ਹਟਾਇਆ ਨਹੀ ਜਾ ਸਕਿਆ: %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 "" -"ਚੇਤਵਾਨੀ: ਡਾਟਾ ਸੰਭਾਲਣ ਵਿੱਚ ਅਸਮੱਰਥ:\n" +"ਚੇਤਾਵਨੀ: ਡਾਟਾ ਸੰਭਾਲਣ ਵਿੱਚ ਅਸਮੱਰਥ:\n" "%s" #: app/core/gimpdatafactory.c:411 app/core/gimpdatafactory.c:414 @@ -4963,7 +4649,7 @@ msgstr "%s ਨਕਲ" #: app/core/gimpdatafactory.c:614 -#, fuzzy, c-format +#, c-format msgid "" "Warning: Failed to load data:\n" "\n" @@ -4982,7 +4668,7 @@ #: app/core/gimpdrawable-bucket-fill.c:272 app/tools/gimpbucketfilltool.c:91 msgid "Bucket Fill" -msgstr "" +msgstr "ਬਾਲਟੀ ਨਾਲ ਭਰੋ" #: app/core/gimpdrawable-desaturate.c:98 msgid "Desaturate" @@ -5063,14 +4749,14 @@ msgstr "" #: app/core/gimpgradient-load.c:281 -#, fuzzy, c-format +#, c-format msgid "No linear gradients found in '%s'" -msgstr "'%s' ਵਿੱਚ ਕੋਈ ਰਸਤਾ ਨਹੀ ਲੱਭਿਆ" +msgstr "'%s' ਵਿੱਚ ਕੋਈ ਰੇਖਿਕ ਢਾਲੂ ਨਹੀ ਲੱਭਿਆ" #: app/core/gimpgradient-load.c:291 -#, fuzzy, c-format +#, c-format msgid "Failed to import gradients from '%s': %s" -msgstr "'%s' ਤੋ ਰਸਤਾ ਲਿਆਉਣ ਵਿੱਚ ਅਸਫਲ: %s" +msgstr "'%s' ਤੋਂ ਢਾਲੂ ਲਿਆਉਣ ਵਿੱਚ ਅਸਫਲ: %s" #: app/core/gimpgrid.c:128 msgid "Line style used for the grid." @@ -5081,8 +4767,7 @@ msgstr "ਗਰਿੱਡ ਦਾ ਮੁੱਖ-ਭੂਮੀ ਰੰਗ" #: app/core/gimpgrid.c:139 -msgid "" -"The background color of the grid; only used in double dashed line style." +msgid "The background color of the grid; only used in double dashed line style." msgstr "ਗਰਿੱਡ ਦਾ ਪਿੱਠਭੂਮੀ ਰੰਗ; ਕੇਵਲ ਦੂਹਰੀ ਧਾਰੀਦਾਰ ਰੇਖਾ ਸ਼ੈਲੀ ਨਾਲ ਹੀ ਵਰਤਿਆ ਜਾਵੇਗਾ।" #: app/core/gimpgrid.c:145 @@ -5094,8 +4779,7 @@ msgstr "ਗਰਿੱਡ ਰੇਖਾਵਾਂ ਵਿੱਚ ਲੰਬਕਾਰੀ ਦੂਰੀ" #: app/core/gimpgrid.c:159 -msgid "" -"Horizontal offset of the first grid line; this may be a negative number." +msgid "Horizontal offset of the first grid line; this may be a negative number." msgstr "" #: app/core/gimpgrid.c:166 @@ -5103,41 +4787,36 @@ msgstr "" #: app/core/gimpimage-colormap.c:63 -#, fuzzy msgid "Set Colormap" -msgstr "ਰੰਗ-ਖਾਕਾ" +msgstr "ਰੰਗ-ਖਾਕਾ ਨਿਰਧਾਰਨ" #: app/core/gimpimage-colormap.c:115 -#, fuzzy msgid "Change Colormap entry" -msgstr "ਚਿੱਤਰ ਦੀ ਇਕਾਈ ਤਬਦੀਲ ਕਰੋ" +msgstr "ਰੰਗ-ਖਾਕੇ ਇਕਾਈ ਤਬਦੀਲ" #: app/core/gimpimage-colormap.c:135 -#, fuzzy msgid "Add Color to Colormap" -msgstr "/FG ਤੋ ਰੰਗ ਜੋੜ੍ਹੋ" +msgstr "ਰੰਗ-ਖਾਕੇ ਤੋਂ ਰੰਗ ਜੋੜ੍ਹੋ" -#: app/core/gimpimage-convert.c:788 +#: app/core/gimpimage-convert.c:789 msgid "Convert Image to RGB" msgstr "ਚਿੱਤਰ ਨੂੰ RGB ਵਿੱਚ ਤਬਦੀਲ਼ ਕਰੋ" -#: app/core/gimpimage-convert.c:792 +#: app/core/gimpimage-convert.c:793 msgid "Convert Image to Grayscale" msgstr "ਚਿੱਤਰ ਨੂੰ ਗਰੇ-ਪੈਮਾਨਾ ਵਿੱਚ ਤਬਦੀਲ ਕਰੋ" -#: app/core/gimpimage-convert.c:796 +#: app/core/gimpimage-convert.c:797 msgid "Convert Image to Indexed" -msgstr "ਚਿੱਤਰ ਨੂੰ ਤਤਕਰਾ ਵਿੱਚ ਤਬਦੀਲ ਕਰੋ" +msgstr "ਚਿੱਤਰ ਨੂੰ ਤਤਕਰਾ ਵਿੱਚ ਤਬਦੀਲ" -#: app/core/gimpimage-convert.c:875 -#, fuzzy +#: app/core/gimpimage-convert.c:879 msgid "Converting to indexed (stage 2)..." -msgstr "ਚਿੱਤਰ ਨੂੰ ਤਤਕਰਾ ਵਿੱਚ ਤਬਦੀਲ ਕਰੋ" +msgstr "ਤਤਕਰੇ ਵਿੱਚ ਤਬਦੀਲ ਕਰੋ (ਪਗ ੨)..." -#: app/core/gimpimage-convert.c:919 -#, fuzzy +#: app/core/gimpimage-convert.c:923 msgid "Converting to indexed (stage 3)..." -msgstr "ਚਿੱਤਰ ਨੂੰ ਤਤਕਰਾ ਵਿੱਚ ਤਬਦੀਲ ਕਰੋ" +msgstr "ਤਤਕਰੇ ਵਿੱਚ ਤਬਦੀਲ (ਪੱਧਰ ੩)..." #: app/core/gimpimage-crop.c:123 msgid "Crop Image" @@ -5192,14 +4871,12 @@ msgstr "ਦਿੱਖ ਰਸਤੇ ਨੂੰ ਵਿਲੀਨ ਕਰਨ ਲਈ ਲੋਡ਼ੀਦੇ ਉਪਲੱਬਧ ਰਸਤੇ ਨਹੀ ਹਨ। ਘੱਟੋ-ਘੱਟ ਦੋ ਰਸਤੇ ਲੋਡ਼ੀਦੇ ਹਨ।" #: app/core/gimpimage-qmask.c:67 -#, fuzzy msgid "Enable Quick Mask" -msgstr "ਤੇਜ਼ ਮਖੌਟਾ" +msgstr "ਤੇਜ਼ ਮਖੌਟਾ ਯੋਗ" #: app/core/gimpimage-qmask.c:117 -#, fuzzy msgid "Disable Quick Mask" -msgstr "ਪਰਤ ਮਖੌਟਾ ਹਟਾਉ" +msgstr "ਤੇਜ਼ ਮਖੌਟਾ ਆਯੋਗ" #: app/core/gimpimage-undo-push.c:3055 #, c-format @@ -5288,9 +4965,8 @@ msgstr "ਚੈਨਲ ਉਠਾਉ" #: app/core/gimpimage.c:3104 -#, fuzzy msgid "Channel is already on top." -msgstr "ਪਰਤ ਪਹਿਲਾਂ ਹੀ ਸਭ ਤੋ ਉਪੱਰ ਹੈ" +msgstr "ਚੈਨਲ ਪਹਿਲਾਂ ਹੀ ਸਭ ਤੋ ਉਪੱਰ ਹੈ" #: app/core/gimpimage.c:3109 msgid "Raise Channel to Top" @@ -5302,12 +4978,11 @@ #: app/core/gimpimage.c:3131 msgid "Lower Channel" -msgstr "ਚੈਨਲ ਹੇਠ ਕਰੋ" +msgstr "ਚੈਨਲ ਹੇਠਾਂ" #: app/core/gimpimage.c:3151 -#, fuzzy msgid "Channel is already on the bottom." -msgstr "ਪਰਤ ਪਹਿਲਾਂ ਹੀ ਹੇਠਾਂ ਹੈ" +msgstr "ਚੈਨਲ ਪਹਿਲਾਂ ਹੀ ਹੇਠਾਂ ਹੈ" #: app/core/gimpimage.c:3156 msgid "Lower Channel to Bottom" @@ -5315,11 +4990,11 @@ #: app/core/gimpimage.c:3231 msgid "Add Path" -msgstr "ਰਸਤਾ ਜੋੜ੍ਹੋ" +msgstr "ਮਾਰਗ ਜੋੜ੍ਹੋ" #: app/core/gimpimage.c:3276 msgid "Remove Path" -msgstr "ਰਸਤਾ ਹਟਾਉ" +msgstr "ਮਾਰਗ ਹਟਾਉ" #: app/core/gimpimage.c:3320 msgid "Path cannot be raised higher." @@ -5327,12 +5002,11 @@ #: app/core/gimpimage.c:3325 msgid "Raise Path" -msgstr "ਰਸਤਾ ਉਠਾਉ" +msgstr "ਮਾਰਗ ਉਠਾਉ" #: app/core/gimpimage.c:3342 -#, fuzzy msgid "Path is already on top." -msgstr "ਪਰਤ ਪਹਿਲਾਂ ਹੀ ਸਭ ਤੋ ਉਪੱਰ ਹੈ" +msgstr "ਮਾਰਗ ਪਹਿਲਾਂ ਹੀ ਸਭ ਤੋ ਉਪੱਰ ਹੈ" #: app/core/gimpimage.c:3347 msgid "Raise Path to Top" @@ -5340,16 +5014,15 @@ #: app/core/gimpimage.c:3364 msgid "Path cannot be lowered more." -msgstr "" +msgstr "ਮਾਰਗ ਨੂੰ ਹੇਠ ਨਹੀਂ ਕੀਤਾ ਜਾ ਸਕਦਾ ਹੈ।" #: app/core/gimpimage.c:3369 msgid "Lower Path" -msgstr "ਰਸਤਾ ਹੇਠ" +msgstr "ਮਾਰਗ ਹੇਠ" #: app/core/gimpimage.c:3389 -#, fuzzy msgid "Path is already on the bottom." -msgstr "ਪਰਤ ਪਹਿਲਾਂ ਹੀ ਹੇਠਾਂ ਹੈ" +msgstr "ਮਾਰਗ ਪਹਿਲਾਂ ਹੀ ਹੇਠਾ ਹੈ।" #: app/core/gimpimage.c:3394 msgid "Lower Path to Bottom" @@ -5368,9 +5041,8 @@ msgstr "ਖਾਸ ਫਾਇਲ" #: app/core/gimpimagefile.c:605 -#, fuzzy msgid "Click to create preview" -msgstr "ਦਰਿਸ਼ ਨਹੀ ਬਣ ਸਕਿਆ" +msgstr "ਦਿੱਖ ਵੇਖਣ ਲਈ ਦਬਾਓ" #: app/core/gimpimagefile.c:609 msgid "Loading preview ..." @@ -5471,11 +5143,13 @@ msgstr "%s ਮਖੌਟਾ" #: app/core/gimplayer.c:385 -#, fuzzy, c-format +#, c-format msgid "" "Floating Selection\n" "(%s)" -msgstr "ਤਰਦੀ ਚੋਣ" +msgstr "" +"ਤਰਦੀ ਚੋਣ\n" +"(%s)" #: app/core/gimplayer.c:1035 msgid "Cannot add layer mask to layer which is not part of an image." @@ -5523,6 +5197,8 @@ "Unknown type of palette file:\n" "%s" msgstr "" +"ਰੰਗ-ਪੱਟੀ ਫਾਇਲ ਦੀ ਅਣਜਾਣੀ ਕਿਸਮ:\n" +"%s" #: app/core/gimppalette.c:375 #, c-format @@ -5585,8 +5261,7 @@ #: app/core/gimppattern.c:357 #, c-format -msgid "" -"Fatal parse error in pattern file '%s': Unknown pattern format version %d." +msgid "Fatal parse error in pattern file '%s': Unknown pattern format version %d." msgstr "" #: app/core/gimppattern.c:367 @@ -5643,18 +5318,16 @@ msgstr "ਤਰਦੀ ਚੋਣ" #: app/core/gimpselection.c:839 -#, fuzzy msgid "Floated Layer" -msgstr "ਪਰਤ ਘੁੰਮਾਉ" +msgstr "ਤਰਦੀ ਪਰਤ" #: app/core/gimptemplate.c:158 msgid "The unit used for coordinate display when not in dot-for-dot mode." msgstr "" #: app/core/gimptemplate.c:165 -#, fuzzy msgid "The horizontal image resolution." -msgstr "ਖਿਤਿਜੀ ਚਿੱਤਰ ਰੈਜ਼ੋਲੇਸ਼ਨ" +msgstr "ਖਿਤਿਜੀ ਚਿੱਤਰ ਰੈਜ਼ੋਲੇਸ਼ਨ ਹੈ।" #: app/core/gimptemplate.c:170 msgid "The vertical image resolution." @@ -5752,9 +5425,8 @@ msgstr "ਰੰਗ-ਖਾਕਾ" #: app/dialogs/convert-dialog.c:179 -#, fuzzy msgid "_Maximum number of colors:" -msgstr "ਰੰਗਾਂ ਦੀ ਅਧਿਕਤਮ ਗਿਣਤੀ:" +msgstr "ਰੰਗਾਂ ਦੀ ਅਧਿਕਤਮ ਗਿਣਤੀ(_M):" #: app/dialogs/convert-dialog.c:206 msgid "_Remove unused colors from final palette" @@ -5763,22 +5435,19 @@ #. dithering #: app/dialogs/convert-dialog.c:221 app/tools/gimpblendoptions.c:269 msgid "Dithering" -msgstr "" +msgstr "ਥਰਾਹਰਟ" #: app/dialogs/convert-dialog.c:233 -#, fuzzy msgid "Color _dithering:" -msgstr "ਕੋਈ ਰੰਗ ਵਿਚਲਨ ਨਹੀ" +msgstr "ਰੰਗ ਥਰਾਹਰਟ(_d):" #: app/dialogs/convert-dialog.c:248 -#, fuzzy msgid "Enable dithering of _transparency" -msgstr "ਪਿੱਠਭੂਮੀ ਜਾਂ ਪਾਰਦਰਸ਼ਤਾ ਨੂੰ ਮੇਟਾਉ" +msgstr "ਪਾਰਦਰਸ਼ਤਾ ਨੂੰ ਮੇਟਾਉਣਾ ਯੋਗ(_t)" #: app/dialogs/convert-dialog.c:274 -#, fuzzy msgid "Converting to indexed..." -msgstr "ਚਿੱਤਰ ਨੂੰ ਤਤਕਰਾ ਵਿੱਚ ਤਬਦੀਲ ਕਰੋ" +msgstr "ਤਤਕਰਾ ਵਿੱਚ ਤਬਦੀਲ..." #: app/dialogs/convert-dialog.c:382 msgid "Cannot convert to a palette with more than 256 colors." @@ -5825,14 +5494,12 @@ msgstr "ਮੁਡ਼ ਕਰੋ ਦਾ ਅਤੀਤ" #: app/dialogs/dialogs.c:189 -#, fuzzy msgid "Navigation" -msgstr "/ਫਾਇਲ/ਤਖਤੀ/ਏਧਰ-ਓਧਰ" +msgstr "ਏਧਰ-ਓਧਰ" #: app/dialogs/dialogs.c:189 -#, fuzzy msgid "Display Navigation" -msgstr "/ਫਾਇਲ/ਤਖਤੀ/ਏਧਰ-ਓਧਰ" +msgstr "ਦਰਿਸ਼ ਏਧਰ-ਓਧਰ" #: app/dialogs/dialogs.c:195 msgid "FG/BG" @@ -5847,32 +5514,29 @@ msgstr "ਬੁਰਸ਼ ਸੋਧਕ" #: app/dialogs/file-open-location-dialog.c:71 -#, fuzzy msgid "Open Location" -msgstr "ਥਾਂ:" +msgstr "ਟਿਕਾਣਾ ਖੋਲੋ" #: app/dialogs/file-open-location-dialog.c:104 msgid "Enter location (URI):" -msgstr "" +msgstr "ਟਿਕਾਣਾ ਦਿਓ (URI):" -#: app/dialogs/file-save-dialog.c:184 -#, fuzzy +#: app/dialogs/file-save-dialog.c:185 msgid "File exists" -msgstr "ਫਾਇਲ ਮੌਜੂਦ ਹੈ!" +msgstr "ਫਾਇਲ ਮੌਜੂਦ" -#: app/dialogs/file-save-dialog.c:189 -#, fuzzy +#: app/dialogs/file-save-dialog.c:190 msgid "_Replace" -msgstr "ਨਮੂਨੇ" +msgstr "ਤਬਦੀਲ(_R)" -#: app/dialogs/file-save-dialog.c:199 +#: app/dialogs/file-save-dialog.c:200 #, c-format msgid "A file named '%s' already exists." -msgstr "" +msgstr "ਫਾਇਲ ਨਾਂ '%s' ਪਹਿਲਾਂ ਹੀ ਮੌਜੂਦ ਹੈ।" -#: app/dialogs/file-save-dialog.c:204 +#: app/dialogs/file-save-dialog.c:205 msgid "Do you want to replace it with the image you are saving?" -msgstr "" +msgstr "ਕੀ ਤੁਸੀਂ ਇਸ ਨੂੰ ਸੰਭਾਲਣ ਵਾਲੇ ਚਿੱਤਰ ਨਾਲ ਤਬਦੀਲ ਕਰਨਾ ਚਾਹੁੰਦੇ ਹੋ?" #: app/dialogs/grid-dialog.c:81 msgid "Configure Grid" @@ -5888,19 +5552,19 @@ #: app/dialogs/image-merge-layers-dialog.c:62 msgid "Layers Merge Options" -msgstr "" +msgstr "ਪਰਤ ਵਿਲੀਨ ਚੋਣ" #: app/dialogs/image-merge-layers-dialog.c:77 msgid "Final, Merged Layer should be:" -msgstr "" +msgstr "ਅੰਤ ਵਿੱਚ, ਪਰਤ ਮਿਲਾਨ ਹੋਵੇ:" #: app/dialogs/image-merge-layers-dialog.c:81 msgid "Expanded as necessary" -msgstr "" +msgstr "ਲੋੜ ਅਨੁਸਾਰ ਫੈਲੇ" #: app/dialogs/image-merge-layers-dialog.c:84 msgid "Clipped to image" -msgstr "" +msgstr "ਚੁੱਕਿਆ ਚਿੱਤਰ" #: app/dialogs/image-merge-layers-dialog.c:87 msgid "Clipped to bottom layer" @@ -5911,9 +5575,8 @@ msgstr "ਨਵਾਂ ਚਿੱਤਰ ਬਣਾਉ" #: app/dialogs/image-new-dialog.c:130 app/dialogs/preferences-dialog.c:1313 -#, fuzzy msgid "_Template:" -msgstr "ਨਮੂਨੇ" +msgstr "ਨਮੂਨਾ(_T):" #: app/dialogs/image-new-dialog.c:265 msgid "Confirm Image Size" @@ -5932,9 +5595,8 @@ msgstr "" #: app/dialogs/image-scale-dialog.c:164 -#, fuzzy msgid "Confirm Scaling" -msgstr "ਪਾਠ ਸੋਧ ਦੀ ਪੁਸ਼ਟੀ" +msgstr "ਪੈਮਾਨਾ ਪੁਸ਼ਟੀ" #: app/dialogs/image-scale-dialog.c:199 #, c-format @@ -5952,7 +5614,7 @@ #: app/dialogs/image-scale-dialog.c:218 msgid "Is this what you want to do?" -msgstr "" +msgstr "ਕੀ ਤੁਸੀਂ ਇਹ ਕਰਨਾ ਚਾਹੁੰਦੇ ਹੋ?" #. General #: app/dialogs/info-dialog.c:377 app/dialogs/preferences-dialog.c:1543 @@ -5963,7 +5625,7 @@ #: app/dialogs/info-window.c:83 msgid "Static Gray" -msgstr "" +msgstr "ਸਥਿਰ ਸਲੇਟੀ" #: app/dialogs/info-window.c:84 app/dialogs/info-window.c:610 msgid "Grayscale" @@ -5986,9 +5648,8 @@ msgstr "ਸਿੱਧੇ ਰੰਗ" #: app/dialogs/info-window.c:131 -#, fuzzy msgid "Cursor" -msgstr "ਸੋਧ" +msgstr "ਕਰਸਰ" #: app/dialogs/info-window.c:141 app/dialogs/preferences-dialog.c:1932 #: app/widgets/gimpgrideditor.c:267 app/widgets/gimpgrideditor.c:299 @@ -6004,23 +5665,20 @@ 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" +msgstr "Y" #: app/dialogs/info-window.c:163 app/pdb/internal_procs.c:212 msgid "Units" msgstr "ਇਕਾਈ" #: app/dialogs/info-window.c:228 -#, fuzzy msgid "Comment" -msgstr "ਗਿਣਤੀ:" +msgstr "ਟਿੱਪਣੀ" #: app/dialogs/info-window.c:248 app/dialogs/info-window.c:634 #: app/display/gimpdisplayshell-title.c:337 @@ -6038,36 +5696,30 @@ #. add the information fields #: app/dialogs/info-window.c:294 -#, fuzzy msgid "Pixel dimensions:" msgstr "ਪਿਕਸਾਲ ਮਾਪ:" #: app/dialogs/info-window.c:296 -#, fuzzy msgid "Print size:" -msgstr "ਛਾਪਣ ਦਾ ਅਕਾਰ:" +msgstr "ਛਾਪਈ ਅਕਾਰ:" #: app/dialogs/info-window.c:298 msgid "Resolution:" msgstr "ਰੈਜ਼ੋਲੇਸ਼ਨ:" #: app/dialogs/info-window.c:300 -#, fuzzy msgid "Scale ratio:" -msgstr "ਪੈਮਾਨ ਅਨੁਪਾਤ:" +msgstr "ਪੈਮਾਨਾ ਅਨੁਪਾਤ:" #: app/dialogs/info-window.c:302 -#, fuzzy msgid "Number of layers:" msgstr "ਪਰਤਾਂ ਦੀ ਗਿਣਤੀ:" #: app/dialogs/info-window.c:304 -#, fuzzy msgid "Size in memory:" msgstr "ਮੈਮੋਰੀ ਵਿੱਚ ਅਕਾਰ:" #: app/dialogs/info-window.c:306 -#, fuzzy msgid "Display type:" msgstr "ਦਰਿਸ਼ ਕਿਸਮ:" @@ -6076,9 +5728,8 @@ msgstr "" #: app/dialogs/info-window.c:310 -#, fuzzy msgid "Visual depth:" -msgstr "ਅਧਿਕਤਮ ਡੂੰਘਾਈ:" +msgstr "ਦਿੱਖ ਡੂੰਘਾਈ:" #: app/dialogs/info-window.c:575 #, c-format @@ -6100,7 +5751,7 @@ #: app/dialogs/info-window.c:614 msgid "Indexed Color" -msgstr "" +msgstr "ਤਤਕਰਾ ਰੰਗ" #: app/dialogs/info-window.c:614 msgid "colors" @@ -6108,7 +5759,7 @@ #: app/dialogs/layer-add-mask-dialog.c:64 msgid "Add a Mask to the Layer" -msgstr "" +msgstr "ਪਰਤ ਲਈ ਮਖੌਟਾ ਸ਼ਾਮਲ" #: app/dialogs/layer-add-mask-dialog.c:86 msgid "Initialize Layer Mask to:" @@ -6154,9 +5805,8 @@ msgstr "ਸਵੈ-ਲੋਡ" #: app/dialogs/module-dialog.c:175 -#, fuzzy msgid "Module path" -msgstr "ਮੈਡੀਊਲ ਰਸਤਾ" +msgstr "ਮੈਡੀਊਲ ਮਾਰਗ" #: app/dialogs/module-dialog.c:418 msgid "" @@ -6254,24 +5904,20 @@ #. The edge behaviour frame #: app/dialogs/offset-dialog.c:206 -#, fuzzy msgid "Edge Behaviour" -msgstr "ਤਖਤੀ ਵਿਵਹਾਰ" +msgstr "ਬਾਹੀ ਵਿਵਹਾਰ" #: app/dialogs/offset-dialog.c:210 -#, fuzzy msgid "_Wrap around" -msgstr "ਪਿੱਠਭੂਮੀ" +msgstr "ਪਾਸੇ ਸਮੇਟੋ(_W)" #: app/dialogs/offset-dialog.c:213 -#, fuzzy msgid "Fill with _background color" -msgstr "ਪਿੱਠਭੂਮੀ ਰੰਗ ਸੋਧ" +msgstr "ਪਿੱਠਭੂਮੀ ਰੰਗ ਨਾਲ ਭਰੋ(_b)" #: app/dialogs/offset-dialog.c:216 -#, fuzzy msgid "Make _transparent" -msgstr "ਪਾਰਦਰਸ਼ੀ" +msgstr "ਪਾਰਦਰਸ਼ੀ ਬਣਾਓ(_t)" #: app/dialogs/palette-import-dialog.c:171 msgid "Import Palette" @@ -6295,12 +5941,10 @@ msgstr "ਚਿੱਤਰ" #: app/dialogs/palette-import-dialog.c:246 -#, fuzzy msgid "Palette _file" -msgstr "ਰੰਗ-ਪੱਟੀ ਨਾਮ:" +msgstr "ਰੰਗ-ਪੱਟੀ ਫਾਇਲ(_f)" #: app/dialogs/palette-import-dialog.c:273 -#, fuzzy msgid "Select palette file" msgstr "ਰੰਗ-ਪੱਟੀ ਫੋਲਡਰ ਚੁਣੋ" @@ -6310,7 +5954,6 @@ msgstr "ਲਿਆਉ ਚੋਣ" #: app/dialogs/palette-import-dialog.c:317 -#, fuzzy msgid "New import" msgstr "ਨਵੀ ਆਯਾਤ" @@ -6319,9 +5962,8 @@ msgstr "ਰੰਗ-ਪੱਟੀ ਨਾਮ:" #: app/dialogs/palette-import-dialog.c:325 -#, fuzzy msgid "N_umber of colors:" -msgstr "ਰੰਗਾਂ ਦੀ ਗਿਣਤੀ:" +msgstr "ਰੰਗਾਂ ਦੀ ਗਿਣਤੀ(_u):" #: app/dialogs/palette-import-dialog.c:338 msgid "C_olumns:" @@ -6341,9 +5983,8 @@ msgstr "" #: app/dialogs/preferences-dialog.c:501 -#, fuzzy msgid "Configure Keyboard Shortcuts" -msgstr "ਕੀ-ਬੋਰਡ ਸ਼ਾਰਟਕੱਟ" +msgstr "ਕੀ-ਬੋਰਡ ਸ਼ਾਰਟਕੱਟ ਸੰਰਚਨਾ" #: app/dialogs/preferences-dialog.c:551 msgid "" @@ -6370,54 +6011,44 @@ msgstr "" #: app/dialogs/preferences-dialog.c:1082 -#, fuzzy msgid "Show _menubar" -msgstr "ਮੇਨੂ-ਪੱਟੀ ਵੇਖਾਉ" +msgstr "ਮੇਨੂ-ਪੱਟੀ ਵੇਖਾਓ(_m)" #: app/dialogs/preferences-dialog.c:1085 -#, fuzzy msgid "Show _rulers" -msgstr "ਪੈਮਾਨਾ ਵੇਖਾਓ" +msgstr "ਪੈਮਾਨਾ ਵੇਖਾਓ(_r)" #: app/dialogs/preferences-dialog.c:1088 -#, fuzzy msgid "Show scroll_bars" -msgstr "ਸਕਰੋਲ-ਪੱਟੀ ਵੇਖਾਓ" +msgstr "ਸਕਰੋਲ-ਪੱਟੀ ਵੇਖਾਓ(_b)" #: app/dialogs/preferences-dialog.c:1091 -#, fuzzy msgid "Show s_tatusbar" -msgstr "ਸਥਿਤੀ-ਪੱਟੀ ਵੇਖਾਓ" +msgstr "ਸਥਿਤੀ-ਪੱਟੀ ਵੇਖਾਓ(_t)" #: app/dialogs/preferences-dialog.c:1099 -#, fuzzy msgid "Show s_election" -msgstr "ਚੋਣ ਵੇਖਾਓ" +msgstr "ਚੋਣ ਵੇਖਾਓ(_e)" #: app/dialogs/preferences-dialog.c:1102 -#, fuzzy msgid "Show _layer boundary" -msgstr "ਪਰਤ-ਹਾਸ਼ੀਆ ਵੇਖਾਓ" +msgstr "ਪਰਤ-ਹਾਸ਼ੀਆ ਵੇਖਾਓ(_l)" #: app/dialogs/preferences-dialog.c:1105 -#, fuzzy msgid "Show _guides" -msgstr "ਸੰਕੇਤ ਵਿਖਾਓ" +msgstr "ਸੰਕੇਤ ਵਿਖਾਓ(_g)" #: app/dialogs/preferences-dialog.c:1108 -#, fuzzy msgid "Show gri_d" -msgstr "ਗਰਿੱਡ ਵੇਖਾਓ" +msgstr "ਗਰਿੱਡ ਵੇਖਾਓ(_d)" #: app/dialogs/preferences-dialog.c:1114 -#, fuzzy msgid "Canvas _padding mode:" -msgstr "ਸੋਧ ਰੰਗ" +msgstr "" #: app/dialogs/preferences-dialog.c:1119 -#, fuzzy msgid "Custom p_adding color:" -msgstr "ਸੋਧ ਰੰਗ" +msgstr "ਸੋਧ ਚਿਣਿਆ ਰੰਗ(_a):" #: app/dialogs/preferences-dialog.c:1120 msgid "Select custom canvas padding color" @@ -6474,29 +6105,24 @@ msgstr "" #: app/dialogs/preferences-dialog.c:1391 -#, fuzzy msgid "Use _dynamic keyboard shortcuts" -msgstr "ਕੀ-ਬੋਰਡ ਸ਼ਾਰਟਕੱਟ" +msgstr "ਸਫ਼ਰੀ ਕੀ-ਬੋਰਡ ਸ਼ਾਰਟਕੱਟ ਵਰਤੋਂ(_d)" #: app/dialogs/preferences-dialog.c:1395 -#, fuzzy msgid "Configure _Keyboard Shortcuts..." -msgstr "ਕੀ-ਬੋਰਡ ਸ਼ਾਰਟਕੱਟ" +msgstr "ਕੀ-ਬੋਰਡ ਸ਼ਾਰਟਕੱਟ ਸੰਰਚਨਾ(_K)..." #: app/dialogs/preferences-dialog.c:1402 -#, fuzzy msgid "_Save keyboard shortcuts on exit" -msgstr "ਜਦੋ ਵੀ ਜੈਮਪ ਬੰਦ ਹੋਵੇ ਤਾਂ, ਕੀ-ਬੋਰਡ ਸ਼ਾਰਟਕੱਟ ਵਿੱਚ ਤਬਦੀਲੀਆ ਨੂੰ ਸੰਭਾਲ ਲਵੇ।" +msgstr "ਬੰਦ ਕਰਨ ਤੇ ਕੀ-ਬੋਰਡ ਸ਼ਾਰਟਕੱਟ ਵਿੱਚ ਤਬਦੀਲੀਆਂ ਸੰਭਾਲੋ(_S)" #: app/dialogs/preferences-dialog.c:1406 -#, fuzzy msgid "Save Keyboard Shortcuts _Now" -msgstr "ਕੀ-ਬੋਰਡ ਸ਼ਾਰਟਕੱਟ" +msgstr "ਕੀ-ਬੋਰਡ ਸ਼ਾਰਟਕੱਟ ਹੁਣ ਸੰਭਾਲੋ(_N)" #: app/dialogs/preferences-dialog.c:1413 -#, fuzzy msgid "_Reset Saved Keyboard Shortcuts to Default Values" -msgstr "ਹਰੇਕ ਜੈਮਪ ਸ਼ੁਰੂ ਕਰਨ ਸਮੇਂ ਸੰਭਾਲੇ ਕੀ-ਬੋਰਡ ਸ਼ਾਰਟਕੱਟ ਪੁਨਰ-ਪ੍ਰਾਪਤ ਕਰੋ।" +msgstr "ਸੰਭਾਲੇ ਕੀ-ਬੋਰਡ ਸ਼ਾਰਟਕੱਟ ਨੂੰ ਮੂਲ ਮੁੱਲ ਦਿਓ(_R)" #: app/dialogs/preferences-dialog.c:1428 app/dialogs/preferences-dialog.c:1431 #: app/dialogs/preferences-dialog.c:1467 @@ -6509,26 +6135,23 @@ #: app/dialogs/preferences-dialog.c:1519 msgid "Reload C_urrent Theme" -msgstr "" +msgstr "ਮੌਜੂਦਾ ਸਰੂਪ ਮੁੜ-ਲੋਡ(_u)" #: app/dialogs/preferences-dialog.c:1531 app/dialogs/preferences-dialog.c:1534 msgid "Help System" msgstr "ਸਹਾਇਤਾ ਸਿਸਟਮ" #: app/dialogs/preferences-dialog.c:1546 -#, fuzzy msgid "Show tool _tips" -msgstr "ਸੰਦ-ਸੰਕੇਤ ਵੇਖਾਓ" +msgstr "ਸੰਦ-ਸੰਕੇਤ ਵੇਖਾਓ(_t)" #: app/dialogs/preferences-dialog.c:1549 -#, fuzzy msgid "Show help _buttons" -msgstr "ਚੋਣ ਵੇਖਾਓ" +msgstr "ਸਹਾਇਤਾ ਬਟਨ ਵੇਖਾਓ(_b)" #: app/dialogs/preferences-dialog.c:1552 -#, fuzzy msgid "Show tips on _startup" -msgstr "ਅਗਲੀ ਵਾਰ ਜੈਮਪ ਚੱਲਣ ਤੇ ਇਸ਼ਾਰਾ ਵਿਖਾਓ" +msgstr "ਸ਼ੁਰੂ ਤੇ ਇਸ਼ਾਰਾ ਵੇਖਾਓ(_s)" #. Help Browser #: app/dialogs/preferences-dialog.c:1556 @@ -6536,33 +6159,29 @@ msgstr "ਸਹਾਇਤਾ ਝਲਕਾਰਾ" #: app/dialogs/preferences-dialog.c:1560 -#, fuzzy msgid "H_elp browser to use:" -msgstr "ਵਰਤਣ ਲਈ ਸਹਾਇਤਾ ਝਲਕਾਰਾ:" +msgstr "ਵਰਤਣ ਲਈ ਸਹਾਇਤਾ ਝਲਕਾਰਾ(_e):" #: app/dialogs/preferences-dialog.c:1565 msgid "Web Browser" msgstr "ਵੈਬ ਬਰਾਊਜ਼ਰ" #: app/dialogs/preferences-dialog.c:1569 -#, fuzzy msgid "Select web browser" -msgstr "ਵੈਬ ਬਰਾਊਜ਼ਰ ਚੁਣੋ" +msgstr "ਵੈਬ ਝਲਕਾਰਾ ਚੁਣੋ" #: app/dialogs/preferences-dialog.c:1572 -#, fuzzy msgid "_Web browser to use:" -msgstr "ਵਰਤਣ ਲਈ ਵੈਬ ਬਰਾਊਜ਼ਰ:" +msgstr "ਵਰਤਣ ਲਈ ਵੈਬ ਝਲਕਾਰਾ(_W):" #. Snapping Distance #: app/dialogs/preferences-dialog.c:1597 msgid "Guide and Grid Snapping" -msgstr "" +msgstr "ਗਾਈਡ ਤੇ ਗਰਿੱਡ ਤਸਵੀਰ" #: app/dialogs/preferences-dialog.c:1602 -#, fuzzy msgid "_Snap distance:" -msgstr "ਦੂਰੀ:" +msgstr "" #. Contiguous Regions #: app/dialogs/preferences-dialog.c:1606 @@ -6570,14 +6189,13 @@ msgstr "" #: app/dialogs/preferences-dialog.c:1611 -#, fuzzy msgid "Default _threshold:" -msgstr "ਮੂਲ ਗਰਿੱਡ" +msgstr "ਮੂਲ ਮੁੱਢਲਾ ਮੁੱਲ(_t):" #. Scaling #: app/dialogs/preferences-dialog.c:1615 msgid "Scaling" -msgstr "" +msgstr "ਪੈਮਾਨਾ" #: app/dialogs/preferences-dialog.c:1619 msgid "Default _interpolation:" @@ -6589,19 +6207,16 @@ msgstr "" #: app/dialogs/preferences-dialog.c:1636 -#, fuzzy msgid "Move Tool" -msgstr "ਭੇਜੋ:" +msgstr "ਭੇਜਣ ਸੰਦ" #: app/dialogs/preferences-dialog.c:1640 -#, fuzzy msgid "Change current layer or path" -msgstr "ਸਿਰਫ਼ ਮੌਜੂਦਾ ਪਰਤ ਲਈ" +msgstr "ਮੌਜੂਦਾ ਪਰਤ ਜਾਂ ਮਾਰਗ ਤਬਦੀਲ" #: app/dialogs/preferences-dialog.c:1653 app/dialogs/preferences-dialog.c:1656 -#, fuzzy msgid "Toolbox" -msgstr "ਸੰਦਪੱਟੀ ਮੇਨੂ" +msgstr "ਸੰਦਬਕਸਾ" #. Appearance #: app/dialogs/preferences-dialog.c:1663 app/dialogs/preferences-dialog.c:1760 @@ -6610,19 +6225,16 @@ msgstr "ਦਿੱਖ" #: app/dialogs/preferences-dialog.c:1667 -#, fuzzy msgid "Show _foreground & background color" -msgstr "ਪਿੱਠਭੂਮੀ ਰੰਗ ਨਿਰਧਾਰਿਤ ਕਰੋ" +msgstr "ਮੁੱਖਭੂਮੀ ਤੇ ਪਿੱਠਭੂਮੀ ਰੰਗ ਵੇਖਾਓ" #: app/dialogs/preferences-dialog.c:1671 -#, fuzzy msgid "Show active _brush, pattern & gradient" -msgstr "/ਤਖਤੀ/ਨਵਾਂ ਤਰਦਾ ਬਣਾਓ/ਬੁਰਸ਼, ਤਰਤੀਬਾਂ ਤੇ ਢਾਲੂ" +msgstr "ਬੁਰਸ਼, ਤਰਤੀਬਾਂ ਤੇ ਢਾਲੂ ਵੇਖਾਓ(_b)" #: app/dialogs/preferences-dialog.c:1675 -#, fuzzy msgid "Show active _image" -msgstr "ਚਿੱਤਰ ਸੰਭਾਲੋ" +msgstr "ਸਰਗਰਮ ਚਿੱਤਰ ਵੇਖਾਓ(_i)" #: app/dialogs/preferences-dialog.c:1685 app/dialogs/preferences-dialog.c:1688 msgid "Image Windows" @@ -6650,37 +6262,33 @@ msgstr "" #: app/dialogs/preferences-dialog.c:1723 -#, fuzzy msgid "Fit to window" msgstr "ਝਰੋਖੇ ਦੇ ਅਨੁਕੂਲ" #: app/dialogs/preferences-dialog.c:1725 -#, fuzzy msgid "Initial zoom _ratio:" -msgstr "ਸ਼ੁਰੂਆਤੀ ਆਕਾਰ ਅਨੁਪਾਤ:" +msgstr "ਸ਼ੁਰੂ ਆਕਾਰ ਅਨੁਪਾਤ(_r):" #. Mouse Cursors #: app/dialogs/preferences-dialog.c:1729 msgid "Mouse Cursors" -msgstr "" +msgstr "ਮਾਊਸ ਕਰਸਰ" #: app/dialogs/preferences-dialog.c:1733 msgid "Show _brush outline" -msgstr "" +msgstr "ਬੁਰਸ਼ ਖਾਕਾ ਵੇਖਾਓ(_b)" #: app/dialogs/preferences-dialog.c:1736 msgid "Show paint _tool cursor" -msgstr "" +msgstr "ਪੇਂਟ ਸੰਦ ਕਰਸਰ ਵੇਖਾਓ(_t)" #: app/dialogs/preferences-dialog.c:1742 -#, fuzzy msgid "Cursor _mode:" -msgstr "ਕਰਸਰ ਮੋਡ:" +msgstr "ਕਰਸਰ ਮੋਡ(_m):" #: app/dialogs/preferences-dialog.c:1745 -#, fuzzy msgid "Cursor re_ndering:" -msgstr "ਕਰਸਰ ਮੋਡ:" +msgstr "ਕਰਸਰ ਪੇਸ਼ਕਾਰੀ(_n):" #: app/dialogs/preferences-dialog.c:1757 msgid "Image Window Appearance" @@ -6688,15 +6296,15 @@ #: app/dialogs/preferences-dialog.c:1768 msgid "Default Appearance in Normal Mode" -msgstr "" +msgstr "ਸਧਾਰਨ ਢੰਗ ਵਿੱਚ ਮੂਲ ਸ਼ਕਲ" #: app/dialogs/preferences-dialog.c:1773 msgid "Default Appearance in Fullscreen Mode" -msgstr "" +msgstr "ਪੂਰੇ ਪਰਦਾ ਢੰਗ ਵਿੱਚ ਮੂਲ ਸ਼ਕਲ" #: app/dialogs/preferences-dialog.c:1782 msgid "Image Title & Statusbar Format" -msgstr "" +msgstr "ਚਿੱਤਰ ਨਾਂ ਅਤੇ ਸਥਿਤੀ ਪੱਟੀ ਫਾਰਮਿਟ" #: app/dialogs/preferences-dialog.c:1785 msgid "Title & Status" @@ -6708,50 +6316,48 @@ #: app/dialogs/preferences-dialog.c:1806 msgid "Show zoom percentage" -msgstr "" +msgstr "ਜ਼ੂਮ ਪ੍ਰਤੀਸ਼ਤ ਵੇਖਾਓ" #: app/dialogs/preferences-dialog.c:1807 msgid "Show zoom ratio" -msgstr "" +msgstr "ਜ਼ੂਮ ਅਕਾਰ ਵੇਖਾਓ" #: app/dialogs/preferences-dialog.c:1808 -#, fuzzy msgid "Show image size" -msgstr "/ਚਿੱਤਰ ਮੇਨੂ ਵੇਖਾਉ" +msgstr "ਚਿੱਤਰ ਅਕਾਰ ਵੇਖਾਓ" #: app/dialogs/preferences-dialog.c:1809 msgid "Show memory usage" -msgstr "" +msgstr "ਵਰਤੀ ਮੈਮੋਰੀ ਵੇਖਾਓ" #: app/dialogs/preferences-dialog.c:1820 msgid "Image Title Format" -msgstr "" +msgstr "ਚਿੱਤਰ ਨਾਂ ਫਾਰਮਿਟ" #: app/dialogs/preferences-dialog.c:1821 msgid "Image Statusbar Format" -msgstr "" +msgstr "ਚਿੱਤਰ ਸਥਿਤੀ ਪੱਟੀ ਫਾਰਮਿਟ" #: app/dialogs/preferences-dialog.c:1906 app/dialogs/preferences-dialog.c:1909 msgid "Display" msgstr "ਦਰਿਸ਼" #: app/dialogs/preferences-dialog.c:1922 -#, fuzzy msgid "Transparency _type:" -msgstr "ਪਾਰਦਰਸ਼ਤਾ ਕਿਸਮ:" +msgstr "ਪਾਰਦਰਸ਼ਤਾ ਕਿਸਮ(_t):" #: app/dialogs/preferences-dialog.c:1925 msgid "Check _size:" -msgstr "" +msgstr "ਅਕਾਰ ਜਾਂਚ(_s):" #: app/dialogs/preferences-dialog.c:1928 msgid "Get Monitor Resolution" -msgstr "ਮਾਨੀਟਰ ਰੈਜ਼ੋਲੇਸ਼ਨ ਪ੍ਰਾਪਤ ਕਰੋ" +msgstr "ਮਾਨੀਟਰ ਰੈਜ਼ੋਲੇਸ਼ਨ ਪ੍ਰਾਪਤ" #: app/dialogs/preferences-dialog.c:1970 -#, fuzzy, c-format +#, c-format msgid "From _windowing system (currently %d x %d dpi)" -msgstr "ਮੌਜੂਦਾ ਝਰੋਖਾ ਸਿਸਟਮ(ਮੌਜੂਦਾ %d x %d ਡੀਪੀਆਈ) ਤੋ ਰੈਜ਼ੋਲੇਸ਼ਨ ਪ੍ਰਾਪਤ ਕਰੋ" +msgstr "ਝਰੋਖਾ ਸਿਸਟਮ (ਮੌਜੂਦਾ %d x %d ਡੀਪੀਆਈ) ਤੋਂ(_w)" #: app/dialogs/preferences-dialog.c:1993 msgid "_Manually" @@ -6759,7 +6365,7 @@ #: app/dialogs/preferences-dialog.c:2008 msgid "C_alibrate..." -msgstr "" +msgstr "ਇਕਸਾਰ(_a)..." #: app/dialogs/preferences-dialog.c:2028 app/dialogs/preferences-dialog.c:2031 msgid "Input Devices" @@ -6768,54 +6374,47 @@ #. Extended Input Devices #: app/dialogs/preferences-dialog.c:2038 msgid "Extended Input Devices" -msgstr "" +msgstr "ਵਾਧੂ ਇੰਪੁੱਟ ਜੰਤਰ" #: app/dialogs/preferences-dialog.c:2042 -#, fuzzy msgid "Configure E_xtended Input Devices..." -msgstr "ਇੰਨਪੁੱਟ ਯੰਤਰ ਦੀ ਸੰਰਚਨਾ" +msgstr "ਵਾਧੂ ਇੰਪੁੱਟ ਜੰਤਰ ਸੰਰਚਨਾ(_x)..." #: app/dialogs/preferences-dialog.c:2049 -#, fuzzy msgid "_Save input device settings on exit" -msgstr "ਪੱਧਰ ਵਿਵਸਥਾਂ ਨੂੰ ਫਾਇਲ ਵਿੱਚ ਸੰਭਾਲੋ" +msgstr "ਬੰਦ ਕਰਨ ਤੇ ਇੰਪੁੱਟ ਜੰਤਰ ਵਿਵਸਥਾ ਨੂੰ ਸੰਭਾਲੋ(_S)" #: app/dialogs/preferences-dialog.c:2053 -#, fuzzy msgid "Save Input Device Settings _Now" -msgstr "ਗੋਲਾਈ ਵਿਵਸਥਾਂ ਨੂੰ ਫਾਇਲ ਵਿੱਚ ਸੰਭਾਲੋ" +msgstr "ਇੰਪੁੱਟ ਜੰਤਰ ਵਿਵਸਥਾ ਹੁਣ ਸੰਭਾਲੋ(_N)" #: app/dialogs/preferences-dialog.c:2060 -#, fuzzy msgid "_Reset Saved Input Device Settings to Default Values" -msgstr "ਚੁਣੇ ਫਿਲਟਰ ਦਾ ਮੁੱਲ ਮੁਡ਼ ਨਿਰਧਾਰਿਤ ਕਰੋ" +msgstr "ਸੰਭਾਲੀ ਇੰਪੁੱਟ ਜੰਤਰ ਵਿਵਸਥਾ ਦਾ ਮੁੱਲ ਮੁਡ਼ ਮੂਲ ਨਿਰਧਾਰਨ(_R)" #: app/dialogs/preferences-dialog.c:2075 msgid "Additional Input Controllers" -msgstr "" +msgstr "ਹੋਰ ਇੰਪੁੱਟ ਕੰਟਰੋਲਰ" #: app/dialogs/preferences-dialog.c:2078 msgid "Input Controllers" -msgstr "" +msgstr "ਇੰਪੁੱਟ ਕੰਟਰੋਲਰ" #: app/dialogs/preferences-dialog.c:2119 app/dialogs/preferences-dialog.c:2122 msgid "Window Management" msgstr "ਝਰੋਖਾ ਪ੍ਰਬੰਧਨ" #: app/dialogs/preferences-dialog.c:2128 -#, fuzzy msgid "Window Manager Hints" -msgstr "ਝਰੋਖਾ ਪ੍ਰਬੰਧਨ" +msgstr "ਝਰੋਖਾ ਪ੍ਰਬੰਧਕ ਇਸ਼ਾਰੇ" #: app/dialogs/preferences-dialog.c:2134 -#, fuzzy msgid "Hint for the _toolbox:" -msgstr "ਸੰਦਖਾਨੇ ਲਈ ਝਰੋਖਾ ਕਿਸਮ ਸੰਕੇਤ:" +msgstr "ਸੰਦਖਾਨੇ ਲਈ ਸੰਕੇਤ(_t):" #: app/dialogs/preferences-dialog.c:2138 -#, fuzzy msgid "Hint for the _docks:" -msgstr "ਡੌਕ ਲਈ ਝਰੋਖਾ ਕਿਸਮ ਸੰਕੇਤ:" +msgstr "ਡੌਕ ਲਈ ਸੰਕੇਤ(_d):" #: app/dialogs/preferences-dialog.c:2141 msgid "Focus" @@ -6823,7 +6422,7 @@ #: app/dialogs/preferences-dialog.c:2145 msgid "Activate the _focused image" -msgstr "" +msgstr "ਕੇਂਦਰਿਤ ਚਿੱਤਰ ਸਰਗਰਮ(_f)" #. Window Positions #: app/dialogs/preferences-dialog.c:2149 @@ -6831,19 +6430,16 @@ msgstr "ਝਰੋਖਾ ਸਥਿਤੀ" #: app/dialogs/preferences-dialog.c:2152 -#, fuzzy msgid "_Save window positions on exit" -msgstr "ਝਰੋਖਾ ਸਥਿਤੀ" +msgstr "ਬੰਦ ਕਰਨ ਤੇ ਝਰੋਖਾ ਸਥਿਤੀ ਸੰਭਾਲੋ(_S)" #: app/dialogs/preferences-dialog.c:2156 -#, fuzzy msgid "Save Window Positions _Now" -msgstr "ਝਰੋਖਾ ਸਥਿਤੀ" +msgstr "ਝਰੋਖਾ ਸਥਿਤੀ ਹੁਣ ਸੰਭਾਲੋ(_N)" #: app/dialogs/preferences-dialog.c:2163 -#, fuzzy msgid "_Reset Saved Window Positions to Default Values" -msgstr "ਚੁਣੇ ਫਿਲਟਰ ਦਾ ਮੁੱਲ ਮੁਡ਼ ਨਿਰਧਾਰਿਤ ਕਰੋ" +msgstr "ਸੰਭਾਲੀ ਝਰੋਖਾ ਸਥਿਤੀ ਲਈ ਮੁੜ-ਮੂਲ ਮੁੱਲ ਕਰੋ(_R)" #: app/dialogs/preferences-dialog.c:2178 app/dialogs/preferences-dialog.c:2181 #: app/dialogs/preferences-dialog.c:2329 @@ -6852,81 +6448,70 @@ #: app/dialogs/preferences-dialog.c:2189 msgid "Resource Consumption" -msgstr "" +msgstr "ਸਰੋਤ ਵਰਤੋਂ" #: app/dialogs/preferences-dialog.c:2199 -#, fuzzy msgid "Minimal number of _undo levels:" -msgstr "ਨਿਊਨਤਮ ਰੰਗਾਂ ਦੀ ਗਿਣਤੀ:" +msgstr "ਵਾਪਸ ਹੋਣ ਵਾਲੇ ਪੱਧਰਾਂ ਦੀ ਘੱਟੋ-ਘੱਟ ਗਿਣਤੀ(_u):" #: app/dialogs/preferences-dialog.c:2202 -#, fuzzy msgid "Maximum undo _memory:" -msgstr "ਮੈਮੋਰੀ ਵਿੱਚ ਅਕਾਰ:" +msgstr "ਅਧਿਕਤਜ਼ ਵਾਪਸ ਮੈਮੋਰੀ(_m):" #: app/dialogs/preferences-dialog.c:2205 msgid "Tile cache _size:" -msgstr "" +msgstr "ਕੈਂਚੇ ਅਕਾਰ(_s):" #: app/dialogs/preferences-dialog.c:2208 -#, fuzzy msgid "Maximum _new image size:" -msgstr "ਨਵੇ ਚਿੱਤਰ ਦਾ ਅਧਿਕਤਮ ਅਕਾਰ:" +msgstr "ਨਵੇ ਚਿੱਤਰ ਦਾ ਅਧਿਕਤਮ ਅਕਾਰ(_n):" #: app/dialogs/preferences-dialog.c:2213 -#, fuzzy msgid "Number of _processors to use:" -msgstr "ਰੰਗਾਂ ਦੀ ਗਿਣਤੀ:" +msgstr "ਵਰਤਣ ਲਈ ਕਾਰਜਾਂ ਦੀ ਗਿਣਤੀ(_p):" #. Image Thumbnails #: app/dialogs/preferences-dialog.c:2218 -#, fuzzy msgid "Image Thumbnails" -msgstr "ਚਿੱਤਰ ਮਖੌਟਾ" +msgstr "ਚਿੱਤਰ ਥੰਮਨੇਲ" #: app/dialogs/preferences-dialog.c:2223 -#, fuzzy msgid "Size of _thumbnails:" -msgstr "ਕੋਈ ਥੰਮਨੇਲ ਨਹੀ" +msgstr "ਥੰਮਨੇਲ ਅਕਾਰ(_t):" #: app/dialogs/preferences-dialog.c:2227 msgid "Maximum _filesize for thumbnailing:" -msgstr "" +msgstr "ਥੰਮਨੇਲ ਲਈ ਵੱਧ-ਤੋਂ ਵੱਧ ਫਾਇਲ ਅਕਾਰ(_f):" #. File Saving #: app/dialogs/preferences-dialog.c:2231 -#, fuzzy msgid "Saving Images" -msgstr "ਚਿੱਤਰ ਸੰਭਾਲੋ" +msgstr "ਚਿੱਤਰ ਸੰਭਾਲੇ ਜਾ ਰਹੇ ਹਨ" #: app/dialogs/preferences-dialog.c:2234 msgid "Confirm closing of unsa_ved images" -msgstr "" +msgstr "ਨਾ-ਸੰਭਾਲੇ ਚਿੱਤਰ ਨੂੰ ਬੰਦ ਕਰਨ ਸਮੇਂ ਪੁਸ਼ਟੀ(_v)" #: app/dialogs/preferences-dialog.c:2245 app/dialogs/preferences-dialog.c:2248 msgid "Folders" msgstr "ਫੋਲਡਰ" #: app/dialogs/preferences-dialog.c:2263 -#, fuzzy msgid "Temp folder:" -msgstr "ਸਰੂਪ ਫੋਲਡਰ" +msgstr "ਆਰਜ਼ੀ ਫੋਲਡਰ:" #: app/dialogs/preferences-dialog.c:2263 -#, fuzzy msgid "Select Temp Folder" -msgstr "ਸਰੂਪ ਫੋਲਡਰ ਚੁਣੋ" +msgstr "ਆਰਜ਼ੀ ਫੋਲਡਰ ਚੁਣੋ" #: app/dialogs/preferences-dialog.c:2264 #: app/dialogs/user-install-dialog.c:1403 -#, fuzzy msgid "Swap folder:" msgstr "ਸਵੈਪ ਫੋਲਡਰ:" #: app/dialogs/preferences-dialog.c:2264 -#, fuzzy msgid "Select Swap Folder" -msgstr "ਸਵੈਪ ਡਾਇ ਚੁਣੋ" +msgstr "ਸਵੈਪ ਫੋਲਡਰ ਚੁਣੋ" #: app/dialogs/preferences-dialog.c:2297 msgid "Brush Folders" @@ -6970,23 +6555,23 @@ #: app/dialogs/preferences-dialog.c:2317 msgid "Plug-In Folders" -msgstr "ਪਲੱਗ-ਇਨ ਫੋਲਡਰ" +msgstr "ਪਲੱਗਿੰਨ ਫੋਲਡਰ" #: app/dialogs/preferences-dialog.c:2319 msgid "Select Plug-In Folders" -msgstr "ਪਲੱਗ-ਇਨ ਫੋਲਡਰ ਚੁਣੋ" +msgstr "ਪਲੱਗਿੰਨ ਫੋਲਡਰ ਚੁਣੋ" #: app/dialogs/preferences-dialog.c:2321 msgid "Scripts" -msgstr "ਸਕਰਿਪਟ" +msgstr "ਸਕ੍ਰਿਪਟ" #: app/dialogs/preferences-dialog.c:2321 msgid "Script-Fu Folders" -msgstr "ਸਕਰਿਪਟ-ਫੂ ਫੋਲਡਰ" +msgstr "ਸਕ੍ਰਿਪਟ-ਫੂ ਫੋਲਡਰ" #: app/dialogs/preferences-dialog.c:2323 msgid "Select Script-Fu Folders" -msgstr "ਸਕਰਿਪਟ-ਫੂ ਫੋਲਡਰ ਚੁਣੋ" +msgstr "ਸਕ੍ਰਿਪਟ-ਫੂ ਫੋਲਡਰ ਚੁਣੋ" #: app/dialogs/preferences-dialog.c:2325 msgid "Module Folders" @@ -7017,35 +6602,30 @@ msgstr "ਸਰੂਪ ਫੋਲਡਰ ਚੁਣੋ" #: app/dialogs/print-size-dialog.c:128 -#, fuzzy msgid "Print Size" -msgstr "ਛਾਪਣ ਦਾ ਅਕਾਰ:" +msgstr "ਛਾਪਈ ਅਕਾਰ:" #. the image size labels #: app/dialogs/print-size-dialog.c:155 app/widgets/gimpsizebox.c:223 #: app/widgets/gimptemplateeditor.c:236 -#, fuzzy msgid "_Width:" -msgstr "ਚੌਡ਼ਾਈ:" +msgstr "ਚੌਡ਼ਾਈ(_W):" #: app/dialogs/print-size-dialog.c:162 app/widgets/gimpsizebox.c:227 #: app/widgets/gimptemplateeditor.c:243 -#, fuzzy msgid "H_eight:" -msgstr "ਉਚਾਈ:" +msgstr "ਉਚਾਈ(_e):" #. the resolution labels #: app/dialogs/print-size-dialog.c:210 app/widgets/gimpsizebox.c:276 #: app/widgets/gimptemplateeditor.c:363 -#, fuzzy msgid "_X resolution:" -msgstr "ਰੈਜ਼ੋਲੇਸ਼ਨ:" +msgstr "_X ਰੈਜ਼ੋਲੇਸ਼ਨ:" #: app/dialogs/print-size-dialog.c:217 app/widgets/gimpsizebox.c:279 #: app/widgets/gimptemplateeditor.c:370 -#, fuzzy msgid "_Y resolution:" -msgstr "ਰੈਜ਼ੋਲੇਸ਼ਨ:" +msgstr "_Y ਰੈਜ਼ੋਲੇਸ਼ਨ:" #: app/dialogs/print-size-dialog.c:228 app/widgets/gimpsizebox.c:272 #: app/widgets/gimptemplateeditor.c:383 @@ -7054,41 +6634,37 @@ msgstr "ਪਿਕਸਲ/%a" #: app/dialogs/quit-dialog.c:84 -#, fuzzy msgid "Quit The GIMP" -msgstr "ਜੈਮਪ ਵਿੱਚੋ ਬਾਹਰ ਜਾਣਾ ਹੈ?" +msgstr "ਜੈਮਪ ਬੰਦ" #: app/dialogs/quit-dialog.c:126 -#, fuzzy msgid "If you quit GIMP now, these changes will be lost." -msgstr "ਅਣ-ਸੰਭਾਲਿਆ ਡਾਟਾ ਖਤਮ ਹੋ ਜਾਵੇਗਾ।" +msgstr "ਜੇਕਰ ਤੁਸੀਂ ਜੈਮਪ ਹੁਣ ਬੰਦ ਕੀਤਾ ਤਾਂ ਅਣ-ਸੰਭਾਲਿਆ ਡਾਟਾ ਖਤਮ ਹੋ ਜਾਵੇਗਾ।" #: app/dialogs/quit-dialog.c:164 msgid "There is one image with unsaved changes:" -msgstr "" +msgstr "ਇੱਕ ਚਿੱਤਰ ਵਿੱਚ ਇੱਕ ਨਾ ਸੰਭਾਲਿਆ ਚਿੱਤਰ:" #: app/dialogs/quit-dialog.c:167 #, c-format msgid "There are %d images with unsaved changes:" -msgstr "" +msgstr "%d ਚਿੱਤਰ ਨਾ ਸੰਭਾਲੇ ਗਏ ਹਨ:" #: app/dialogs/quit-dialog.c:183 -#, fuzzy msgid "_Discard Changes" -msgstr "ਉਭਰਿਆ ਚੈਨਲ(_R)" +msgstr "ਤਬਦੀਲੀਆਂ ਰੱਦ(_D)" #: app/dialogs/resize-dialog.c:115 msgid "Canvas Size" -msgstr "" +msgstr "ਕੈਨਵਸ ਅਕਾਰ" #: app/dialogs/resize-dialog.c:126 app/dialogs/scale-dialog.c:107 -#, fuzzy msgid "Layer Size" -msgstr "ਪਰਤ ਚੋਣ" +msgstr "ਪਰਤ ਅਕਾਰ" #: app/dialogs/resolution-calibrate-dialog.c:67 msgid "Calibrate Monitor Resolution" -msgstr "" +msgstr "ਮਾਨੀਟਰ ਰੈਜ਼ੋਲੇਸ਼ਨ ਨਾਲ ਇਕਸਾਰ" #: app/dialogs/resolution-calibrate-dialog.c:120 msgid "Measure the rulers and enter their lengths:" @@ -7108,14 +6684,12 @@ msgstr "ਚਿੱਤਰ ਕਿਸਮ" #: app/dialogs/scale-dialog.c:166 -#, fuzzy msgid "Quality" -msgstr "/ਫਾਇਲ/ਬਾਹਰ" +msgstr "ਗੁਣਵੱਤਾ" #: app/dialogs/scale-dialog.c:178 -#, fuzzy msgid "I_nterpolation:" -msgstr "ਸਤ੍ਰਿਪਤੀ:" +msgstr "" #: app/dialogs/scale-dialog.c:192 msgid "" @@ -7125,7 +6699,7 @@ #: app/dialogs/stroke-dialog.c:104 msgid "Choose Stroke Style" -msgstr "" +msgstr "ਛੋਹ ਸ਼ੈਲੀ ਚੁਣੋ" #: app/dialogs/stroke-dialog.c:209 msgid "Paint Tool:" @@ -7133,16 +6707,16 @@ #: app/dialogs/tips-dialog.c:90 msgid "Your GIMP tips file appears to be missing!" -msgstr "" +msgstr "ਤੁਹਡੀ ਜੈਮਪ ਇਸ਼ਾਰਾ ਫਾਇਲ ਗੁੰਮ ਲੱਗਦੀ ਹੈ!" #: app/dialogs/tips-dialog.c:92 #, c-format msgid "There should be a file called '%s'. Please check your installation." -msgstr "" +msgstr "ਫਾਇਲ %s ਹੋਣੀ ਚਾਹੀਦੀ ਹੈ। ਕਿਰਪਾ ਕਰਕੇ ਆਪਣੀ ਇੰਸਟਾਲੇਸ਼ਨ ਦੀ ਪੜਤਾਲ ਕਰੋ।" #: app/dialogs/tips-dialog.c:98 msgid "The GIMP tips file could not be parsed!" -msgstr "" +msgstr "ਜੈਮਪ ਇਸ਼ਾਰਾ ਫਾਇਲ ਨੂੰ ਪਾਰਸ ਨਹੀਂ ਕੀਤਾ ਜਾ ਸਕਿਆ!" #: app/dialogs/tips-dialog.c:131 msgid "GIMP Tip of the Day" @@ -7153,14 +6727,12 @@ msgstr "ਅਗਲੀ ਵਾਰ ਜੈਮਪ ਚੱਲਣ ਤੇ ਇਸ਼ਾਰਾ ਵਿਖਾਓ" #: app/dialogs/tips-dialog.c:219 -#, fuzzy msgid "_Previous tip" -msgstr "ਪਿਛਲਾ ਇਸ਼ਾਰਾ" +msgstr "ਪਿੱਛੇ ਇਸ਼ਾਰਾ(_P)" #: app/dialogs/tips-dialog.c:228 -#, fuzzy msgid "_Next tip" -msgstr "ਅਗਲਾ ਇਸ਼ਾਰਾ" +msgstr "ਅੱਗੇ ਇਸ਼ਾਰਾ(_N)" #. 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 @@ -7169,7 +6741,7 @@ #. #: app/dialogs/tips-parser.c:165 msgid "tips-locale:C" -msgstr "" +msgstr "tips-locale:pa" #: app/dialogs/user-install-dialog.c:134 msgid "" @@ -7289,7 +6861,7 @@ #: app/dialogs/user-install-dialog.c:265 msgid "This folder is searched for image templates." -msgstr "" +msgstr "ਇਹ ਫੋਲਡਰ ਚਿੱਤਰ ਨਮੂਨਿਆਂ ਦੀ ਖੋਜ ਕਰਨ ਲਈ ਵਰਤਿਆ ਜਾਦਾ ਹੈ।" #: app/dialogs/user-install-dialog.c:270 msgid "This folder is searched for user-installed themes." @@ -7317,11 +6889,11 @@ #: app/dialogs/user-install-dialog.c:390 msgid "Installation successful. Click \"Continue\" to proceed." -msgstr "" +msgstr "ਇੰਸਟਾਲੇਸ਼ਨ ਸਫਲ ਰਹੀ ਹੈ। ਜਾਰੀ ਰਹਿਣ ਲਈ \"ਜਾਰੀ ਰੱਖੋ\" ਦਬਾਓ।" #: app/dialogs/user-install-dialog.c:396 msgid "Installation failed. Contact system administrator." -msgstr "" +msgstr "ਇੰਸਟਾਲੇਸ਼ਨ ਅਸਫਲ ਰਹੀ। ਸਿਸਟਮ ਪ੍ਰਬੰਧਕ ਨਾਲ ਸੰਪਰਕ ਕਰੋ।" #: app/dialogs/user-install-dialog.c:609 msgid "GIMP User Installation" @@ -7334,17 +6906,17 @@ #. 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 "" "ਜੀ ਆਇਆਂ ਨੂੰ\n" -"ਜੈਮਪ ਉਪਭੋਗੀ ਇੰਸਟਾਲੇਸ਼ਨ ਤੇ ਸਵਾਗਤ ਹੈ" +"ਜੈਮਪ %d.%d ਉਪਭੋਗੀ ਇੰਸਟਾਲੇਸ਼ਨ ਤੇ ਸਵਾਗਤ ਹੈ" #: app/dialogs/user-install-dialog.c:771 msgid "Click \"Continue\" to enter the GIMP user installation." -msgstr "" +msgstr "ਜੈਮਪ ਉਪਭੋਗੀ ਇੰਸਟਾਲੇਸ਼ਨ ਨਾਲ ਜਾਰੀ ਰੱਖਣ ਲਈ \"ਜਾਰੀ ਰੱਖੋ\" ਦਬਾਓ।" #: app/dialogs/user-install-dialog.c:778 msgid "" @@ -7384,22 +6956,20 @@ msgstr "" #: app/dialogs/user-install-dialog.c:811 -#, fuzzy msgid "Click \"Continue\" to proceed with the user installation." -msgstr "ਉਪਰ ਦਿੱਤੀਆਂ ਵਿਵਸਥਾਵਾਂ ਨੂੰ ਮਨਜ਼ੂਰ ਕਰਨ ਲਈ \"ਜਾਰੀ ਰੱਖੋ\" ਨੂੰ ਦਬਾਉ।" +msgstr "ਉਪਭੋਗੀ ਇੰਸਟਾਲੇਸ਼ਨ ਕਰਨ ਲਈ \"ਜਾਰੀ ਰੱਖੋ\" ਨੂੰ ਦਬਾਓ।" #: app/dialogs/user-install-dialog.c:816 msgid "It seems you have used GIMP 2.0 before." -msgstr "" +msgstr "ਇਸਤਰਾਂ ਜਾਪਦਾ ਹੈ ਕਿ ਤੁਸੀਂ ਪਹਿਲਾਂ ਜੈਮਪ 2.0 ਵਰਤਿਆ ਹੈ।" #: app/dialogs/user-install-dialog.c:820 msgid "_Migrate GIMP 2.0 user settings" -msgstr "" +msgstr "ਜੈਮਪ 2.0 ਦੀ ਉਪਭੋਗੀ ਵਿਵਸਥਾ ਰੱਖੋ(_M)" #: app/dialogs/user-install-dialog.c:823 -#, fuzzy msgid "Do a _fresh user installation" -msgstr "ਜੈਮਪ ਉਪਭੋਗੀ ਇੰਸਟਾਲੇਸ਼ਨ" +msgstr "ਤਾਜ਼ਾ ਉਪਭੋਗੀ ਇੰਸਟਾਲੇਸ਼ਨ ਕਰੋ(_f)" #: app/dialogs/user-install-dialog.c:851 msgid "Personal GIMP Folder" @@ -7407,14 +6977,14 @@ #: app/dialogs/user-install-dialog.c:852 msgid "Click \"Continue\" to create your personal GIMP folder." -msgstr "" +msgstr "ਆਪਣਾ ਨਿੱਜੀ ਜੈਮਪ ਫੋਲਡਰ ਬਣਾਉਣ ਲਈ \"ਜਾਰੀ ਰੱਖੋ\" ਦਬਾਓ।" #: app/dialogs/user-install-dialog.c:896 #, c-format msgid "" "For a proper GIMP installation, a folder named '%s' needs to be " "created." -msgstr "" +msgstr "ਠੀਕ ਜੈਮਪ ਇੰਸਟਾਲੇਸ਼ਨ ਲਈ, ਫੋਲਡਰ '%s' ਬਣਾਉਣ ਦੀ ਲੋੜ ਹੈ।" #: app/dialogs/user-install-dialog.c:903 msgid "" @@ -7439,8 +7009,7 @@ msgstr "ਉਪਰ ਦਿੱਤੀਆਂ ਵਿਵਸਥਾਵਾਂ ਨੂੰ ਮਨਜ਼ੂਰ ਕਰਨ ਲਈ \"ਜਾਰੀ ਰੱਖੋ\" ਨੂੰ ਦਬਾਉ।" #: app/dialogs/user-install-dialog.c:1005 -msgid "" -"For optimal GIMP performance, some settings may have to be adjusted." +msgid "For optimal GIMP performance, some settings may have to be adjusted." msgstr "ਜੈਮਪ ਦੀ ਅਨੁਕੂਲ ਕਾਰਜਕੁਸ਼ਤਾ ਲਈ, ਕੁਝ ਵਿਵਸਥਾਵਾਂ ਨੂੰ ਅਨੁਕੂਲ ਕਰਨਾ ਪਵੇਗਾ।" #: app/dialogs/user-install-dialog.c:1065 @@ -7467,7 +7036,7 @@ #: app/dialogs/user-install-dialog.c:1375 msgid "Tile cache size:" -msgstr "" +msgstr "ਕੈਂਚੇ ਅਕਾਰ:" #: app/dialogs/user-install-dialog.c:1387 msgid "" @@ -7478,80 +7047,70 @@ msgstr "" #: app/dialogs/user-install-dialog.c:1398 -#, fuzzy msgid "Select swap dir" msgstr "ਸਵੈਪ ਡਾਇ ਚੁਣੋ" #: app/dialogs/vectors-export-dialog.c:53 msgid "Export Path to SVG" -msgstr "SVG ਤੇ ਭੇਜਣ ਲਈ ਰਸਤਾ" +msgstr "SVG ਤੇ ਭੇਜਣ ਲਈ ਮਾਰਗ" #: app/dialogs/vectors-export-dialog.c:78 -#, fuzzy msgid "Export the active path" -msgstr "ਮੌਜੂਦਾ ਰਸਤਾ ਏਧਰ-ਓਧਰ" +msgstr "ਸਰਗਰਮ ਮਾਰਗ ਆਯਾਤ" #: app/dialogs/vectors-export-dialog.c:79 -#, fuzzy msgid "Export all paths from this image" -msgstr "ਇਸ ਚਿੱਤਰ ਲਈ ਨਵਾਂ ਦਰਿਸ਼ ਬਣਾਉ" +msgstr "ਇਸ ਚਿੱਤਰ ਤੋਂ ਸਭ ਮਾਰਗ ਨਿਰਯਾਤ" #: app/dialogs/vectors-import-dialog.c:57 msgid "Import Paths from SVG" -msgstr "SVG ਤੋ ਲਿਆਉਣ ਲਈ ਰਸਤਾ" +msgstr "SVG ਤੋ ਲਿਆਉਣ ਲਈ ਮਾਰਗ" #: app/dialogs/vectors-import-dialog.c:83 msgid "All Files (*.*)" -msgstr "" +msgstr "ਸਭ ਫਾਇਲਾਂ (*.*)" #: app/dialogs/vectors-import-dialog.c:88 msgid "Scalable SVG image (*.svg)" -msgstr "" +msgstr "ਫੈਲਣਯੋਗ SVG ਚਿੱਤਰ (*.svg)" #: app/dialogs/vectors-import-dialog.c:99 -#, fuzzy msgid "_Merge imported paths" -msgstr "ਰਸਤਾ ਲਿਆਉ" +msgstr "ਮਿਲਾਨ ਆਯਾਤ ਮਾਰਗ(_M)" #: app/dialogs/vectors-import-dialog.c:109 msgid "_Scale imported paths to fit image" msgstr "" #: app/dialogs/vectors-options-dialog.c:113 -#, fuzzy msgid "Path Name:" -msgstr "ਰਸਤਾ ਨਾਂ:" +msgstr "ਮਾਰਗ ਨਾਂ:" #: app/display/display-enums.c:24 -#, fuzzy msgid "Tool icon" msgstr "ਸੰਦ ਆਈਕਾਨ" #: app/display/display-enums.c:25 msgid "Tool icon with crosshair" -msgstr "" +msgstr "ਕਰਾਸਹੇਅਰ ਲਈ ਸੰਦ ਆਈਕਾਨ" #: app/display/display-enums.c:26 msgid "Crosshair only" -msgstr "" +msgstr "ਕਰਾਸਹੇਅਰ ਹੀ" #: app/display/display-enums.c:55 -#, fuzzy msgid "From theme" -msgstr "ਸਰੂਪ ਤੋ" +msgstr "ਸਰੂਪ ਤੋਂ" #: app/display/display-enums.c:56 -#, fuzzy msgid "Light check color" -msgstr "/ਫਿੱਕੇ ਜਾਂਚ ਰੰਗ" +msgstr "ਫਿੱਕੇ ਜਾਂਚ ਰੰਗ" #: app/display/display-enums.c:57 -#, fuzzy msgid "Dark check color" -msgstr "/ਗੂੜ੍ਹੇ ਜਾਂਚ ਰੰਗ" +msgstr "ਗੂੜ੍ਹੇ ਜਾਂਚ ਰੰਗ" #: app/display/display-enums.c:58 -#, fuzzy msgid "Custom color" msgstr "ਸੋਧ ਰੰਗ" @@ -7560,50 +7119,47 @@ msgstr "" #: app/display/gimpdisplayshell.c:963 -#, fuzzy msgid "Toggle Quick Mask" -msgstr "ਤੇਜ਼ ਮਖੌਟਾ" +msgstr "ਤੇਜ਼ ਮਖੌਟਾ ਤਬਦੀਲ" #: app/display/gimpdisplayshell-close.c:122 #: app/display/gimpdisplayshell-close.c:185 -#, fuzzy, c-format +#, c-format msgid "Close %s" -msgstr " %s ਨੂੰ ਬੰਦ ਕਰਨਾ ਹੈ ?" +msgstr "%s ਬੰਦ" #: app/display/gimpdisplayshell-close.c:131 msgid "Do_n't save" -msgstr "" +msgstr "ਸੰਭਾਲੋ ਨਾ(_n)" #: app/display/gimpdisplayshell-close.c:192 #, c-format msgid "Save the changes to image '%s' before closing?" -msgstr "" +msgstr "ਕੀ ਚਿੱਤਰ '%s' ਨੂੰ ਬੰਦ ਕਰਨ ਤੋਂ ਪਹਿਲਾਂ ਸੰਭਾਲਣਾ ਹੈ?" #: 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 "ਅਣ-ਸੰਭਾਲਿਆ ਡਾਟਾ ਖਤਮ ਹੋ ਜਾਵੇਗਾ।" +msgstr "ਜੇਕਰ ਤੁਸੀਂ ਚਿੱਤਰ ਨਾ ਸੰਭਾਲਿਆ ਤਾਂ ਆਖਰੀ %s ਤੋਂ ਤਬਦੀਲੀਆਂ ਗੁੰਮ ਹੋ ਜਾਣਗੀਆ।" #. one second, the time period #: app/display/gimpdisplayshell-close.c:266 -#, fuzzy msgid "second" -msgstr "ਆਈਕਾਨ" +msgstr "ਸਕਿੰਟ" #: app/display/gimpdisplayshell-close.c:269 #, c-format msgid "%d seconds" -msgstr "" +msgstr "%d ਸਕਿੰਟ" #: app/display/gimpdisplayshell-close.c:275 -#, fuzzy msgid "minute" -msgstr "ਰੇਖਾ" +msgstr "ਮਿੰਟ" #: app/display/gimpdisplayshell-close.c:277 #, c-format msgid "%d minutes" -msgstr "" +msgstr "%d ਮਿੰਟ" #: app/display/gimpdisplayshell-dnd.c:98 msgid "Drop New Layer" @@ -7611,7 +7167,7 @@ #: app/display/gimpdisplayshell-dnd.c:142 msgid "Drop New Path" -msgstr "ਨਵਾਂ ਰਸਤਾ ਸੁੱਟੋ" +msgstr "ਨਵਾਂ ਮਾਰਗ ਸੁੱਟੋ" #: app/display/gimpdisplayshell-filter-dialog.c:73 msgid "Color Display Filters" @@ -7647,11 +7203,11 @@ #: app/display/gimpdisplayshell-title.c:237 msgid "grayscale-empty" -msgstr "" +msgstr "ਸਲੇਟੀ-ਖਾਲੀ" #: app/display/gimpdisplayshell-title.c:237 msgid "grayscale" -msgstr "" +msgstr "ਸਲੇਟੀ" #: app/display/gimpdisplayshell-title.c:240 msgid "indexed-empty" @@ -7663,11 +7219,11 @@ #: app/display/gimpdisplayshell-title.c:292 msgid "(modified)" -msgstr "" +msgstr "(ਸੋਧ)" #: app/display/gimpdisplayshell-title.c:298 msgid "(clean)" -msgstr "" +msgstr "(ਸਾਫ਼)" #: app/display/gimpdisplayshell-title.c:325 msgid "1 layer" @@ -7679,15 +7235,14 @@ msgstr "%d ਪਰਤਾਂ" #: app/display/gimpstatusbar.c:142 -#, fuzzy msgid "Shadow type" -msgstr "ਪ੍ਛਾਵਾਂ" +msgstr "ਛਾਂ ਕਿਸਮ" #: app/display/gimpstatusbar.c:143 msgid "Style of bevel around the statusbar text" msgstr "" -#: app/display/gimpstatusbar.c:218 +#: app/display/gimpstatusbar.c:222 msgid "Cancel" msgstr "ਰੱਦ" @@ -7697,7 +7252,7 @@ #: app/file/file-open.c:120 app/file/file-save.c:146 msgid "Not a regular file" -msgstr "" +msgstr "ਨਿਯਮਤ ਫਾਇਲ ਨਹੀਂ" #: app/file/file-open.c:173 msgid "Plug-In returned SUCCESS but did not return an image" @@ -7705,25 +7260,24 @@ #: app/file/file-open.c:181 msgid "Plug-In could not open image" -msgstr "" +msgstr "ਪਲੱਗਿੰਨ ਫਾਇਲ ਨੂੰ ਖੋਲ ਨਹੀਂ ਸਕੀ" #: app/file/file-open.c:417 -#, fuzzy msgid "Image doesn't contain any visible layers" -msgstr "ਸਾਰੀਆ ਉਪਲੱਬਧ ਪਰਤਾਂ ਤੇ ਅਧਾਰ ਚੋਣ" +msgstr "ਕਿਸੇ ਉਪਲੱਬਧ ਪਰਤਾਂ ਤੇ ਚਿੱਤਰ ਨਹੀਂ" #: app/file/file-save.c:220 msgid "Plug-In could not save image" -msgstr "" +msgstr "ਪਲੱਗਿੰਨ ਚਿੱਤਰ ਸੰਭਾਲ ਨਹੀਂ ਸਕੀ" #: app/file/file-utils.c:107 msgid "Invalid character sequence in URI" -msgstr "" +msgstr "URI ਵਿੱਚ ਗਲਤ ਅੱਖਰ" #: 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 "'%s' ਨੂੰ ਖੋਲਣਾ ਅਸਫਲ: %s" +msgstr "\"%s\" ਨੂੰ ਹਟਾਉਣਾ ਅਸਫਲ: %s" #: app/gui/splash.c:118 msgid "GIMP Startup" @@ -7745,7 +7299,7 @@ #: app/paint/gimpbrushcore.c:369 msgid "No brushes available for use with this tool." -msgstr "" +msgstr "ਇਸ ਸੰਦ ਨਾਲ ਵਰਤਣ ਲਈ ਕੋਈ ਬੁਰਸ਼ ਨਹੀਂ ਹੈ।" #: app/paint/gimpclone.c:89 app/tools/gimpclonetool.c:89 msgid "Clone" @@ -7776,22 +7330,20 @@ msgstr "ਧੱਬਾ" #: app/paint/paint-enums.c:23 -#, fuzzy msgid "Image source" msgstr "ਚਿੱਤਰ ਸਰੋਤ" #: app/paint/paint-enums.c:24 -#, fuzzy msgid "Pattern source" msgstr "ਤਰਤੀਬ ਸਰੋਤ" #: app/paint/paint-enums.c:52 msgid "Non-aligned" -msgstr "" +msgstr "ਨਾ-ਇਕਸਾਰ" #: app/paint/paint-enums.c:53 msgid "Aligned" -msgstr "" +msgstr "ਇਕਸਾਰ" #: app/paint/paint-enums.c:54 msgid "Registered" @@ -7805,7 +7357,7 @@ #: app/paint/paint-enums.c:82 app/widgets/gimpwidgets-constructors.c:61 #: app/widgets/gimpwidgets-constructors.c:94 msgid "Burn" -msgstr "" +msgstr "ਲਿਖੋ" #: app/paint/paint-enums.c:109 msgid "Blur" @@ -7813,7 +7365,7 @@ #: app/paint/paint-enums.c:110 msgid "Sharpen" -msgstr "" +msgstr "ਉਘੜਵਾਂ" #: app/paint/paint-enums.c:167 msgid "Constant" @@ -7829,12 +7381,12 @@ #: app/pdb/color_cmds.c:457 app/tools/gimpposterizetool.c:78 msgid "Posterize" -msgstr "" +msgstr "ਇਸ਼ਤਾਹਰੀ" #: app/pdb/color_cmds.c:745 app/pdb/color_cmds.c:870 #: app/tools/gimpcurvestool.c:141 msgid "Curves" -msgstr "" +msgstr "ਚਾਪਾਂ" #: app/pdb/color_cmds.c:995 app/tools/gimpcolorbalancetool.c:96 msgid "Color Balance" @@ -7853,9 +7405,8 @@ msgstr "ਮੁੱਢਲਾ ਮੁੱਲ" #: app/pdb/drawable_transform_cmds.c:249 app/pdb/drawable_transform_cmds.c:404 -#, fuzzy msgid "Flip..." -msgstr "ਝਟਕਾ" +msgstr "ਝਟਕਾ..." #: app/pdb/drawable_transform_cmds.c:563 app/pdb/drawable_transform_cmds.c:746 #: app/pdb/transform_tools_cmds.c:197 app/tools/gimpperspectivetool.c:141 @@ -7872,9 +7423,8 @@ #: 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 "ਤਬਦੀਲ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ..." +msgstr "2D ਤਬਦੀਲੀ..." #: app/pdb/edit_cmds.c:673 app/tools/gimpblendtool.c:249 msgid "Blending..." @@ -7885,8 +7435,7 @@ msgstr "(ਗਲਤ ਯੂਟੀਐਫ-੮ ਸਤਰ)" #: app/pdb/image_cmds.c:3898 -msgid "" -"Image resolution is out of bounds, using the default resolution instead." +msgid "Image resolution is out of bounds, using the default resolution instead." msgstr "" #: app/pdb/internal_procs.c:86 @@ -7894,9 +7443,8 @@ msgstr "ਅੰਦਰੂਨੀ ਕਾਰਵਾਈ" #: app/pdb/internal_procs.c:86 -#, fuzzy msgid "Brush" -msgstr "ਬੁਰਸ਼:" +msgstr "ਬੁਰਸ਼" #: app/pdb/internal_procs.c:89 msgid "Brush UI" @@ -7918,12 +7466,11 @@ #: app/pdb/internal_procs.c:110 msgid "Drawable procedures" -msgstr "" +msgstr "ਖਿੱਚਣਯੋਗ ਕਾਰਵਾਈਆਂ" #: app/pdb/internal_procs.c:113 -#, fuzzy msgid "Transformation procedures" -msgstr "ਤਬਦੀਲੀ ਸੰਦ ਤਰੀਕਾ" +msgstr "ਤਬਦੀਲੀ ਵਿਧੀ" #: app/pdb/internal_procs.c:116 msgid "Edit procedures" @@ -7935,7 +7482,7 @@ #: app/pdb/internal_procs.c:122 msgid "Floating selections" -msgstr "" +msgstr "ਤਰਦੀ ਚੋਣ" #: app/pdb/internal_procs.c:125 msgid "Font UI" @@ -7946,9 +7493,8 @@ msgstr "" #: app/pdb/internal_procs.c:134 -#, fuzzy msgid "Gradient" -msgstr "ਢਾਲਵਾਂ:" +msgstr "ਢਾਲਵਾਂ" #: app/pdb/internal_procs.c:137 msgid "Gradient UI" @@ -7956,15 +7502,15 @@ #: app/pdb/internal_procs.c:143 msgid "Guide procedures" -msgstr "" +msgstr "ਗਾਇਡ ਕਾਰਵਾਈਆਂ" #: app/pdb/internal_procs.c:146 msgid "Help procedures" -msgstr "" +msgstr "ਸਹਾਇਤਾ ਕਾਰਵਾਈਆਂ" #: app/pdb/internal_procs.c:155 msgid "Message procedures" -msgstr "" +msgstr "ਸੁਨੇਹਾ ਕਾਰਵਾਈ" #: app/pdb/internal_procs.c:158 msgid "Miscellaneous" @@ -7972,7 +7518,7 @@ #: app/pdb/internal_procs.c:161 msgid "Paint Tool procedures" -msgstr "" +msgstr "ਪੇਂਟ ਸੰਦ ਕਾਰਵਾਈਆਂ" #: app/pdb/internal_procs.c:164 msgid "Palette" @@ -7992,7 +7538,7 @@ #: app/pdb/internal_procs.c:188 msgid "Plug-in" -msgstr "ਪਲੱਗ-ਇਨ" +msgstr "ਪਲੱਗਿੰਨ" #: app/pdb/internal_procs.c:191 msgid "Procedural database" @@ -8040,7 +7586,7 @@ #: app/pdb/procedural_db_cmds.c:81 msgid "GIMP Plug-In" -msgstr "ਜੈਮਪ ਪਲੱਗ-ਇਨ" +msgstr "ਜੈਮਪ ਪਲੱਗਿੰਨ" #: app/pdb/procedural_db_cmds.c:82 msgid "GIMP Extension" @@ -8055,9 +7601,9 @@ msgstr "ਮੁਕਤ ਚੋਣ" #: 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 "ਪਲੱਗ-ਇਨ ਲਈ ਜਾਂਚ ਕੀਤੀ ਜਾ ਰਹੀ ਹੈ: '%s'\n" +msgstr "ਪਲੱਗਿੰਨ ਖਤਮ ਕੀਤੀ ਜਾ ਰਹੀ ਹੈ: '%s'\n" #: app/plug-in/plug-in.c:730 #, c-format @@ -8072,17 +7618,17 @@ #: app/plug-in/plug-in-rc.c:176 #, c-format msgid "Skipping '%s': wrong GIMP protocol version." -msgstr "ਛੱਡਿਆ ਜਾ ਰਿਹਾ ਹੈ '%s': ਗਲਤ ਜੈਮਪ ਪੋਰੋਟੋਕੋਲ ਵਰਜਨ" +msgstr "ਛੱਡਿਆ ਜਾ ਰਿਹਾ ਹੈ '%s': ਗਲਤ ਜੈਮਪ ਪ੍ਰੋਟੋਕਾਲ ਵਰਜਨ ਹੈ।" #: app/plug-in/plug-in-rc.c:432 -#, fuzzy, c-format +#, c-format msgid "invalid value '%s' for icon type" -msgstr "ਗਲਤ ਮੁੱਲ '%s' ਟੋਕਨ %s ਲਈ" +msgstr "ਆਈਕਾਨ ਕਿਸਮ ਲਈ ਗਲਤ ਮੁੱਲ '%s'" #: app/plug-in/plug-in-rc.c:447 -#, fuzzy, c-format +#, c-format msgid "invalid value '%ld' for icon type" -msgstr "ਗਲਤ ਮੁੱਲ '%ld' ਟੋਕਨ %s ਲਈ" +msgstr "ਆਈਕਾਨ ਕਿਸਮ ਲਈ ਗਲਤ ਮੁੱਲ '%ld'" #: app/plug-in/plug-ins.c:139 msgid "Resource configuration" @@ -8093,22 +7639,22 @@ #. #: app/plug-in/plug-ins.c:153 msgid "Querying new Plug-ins" -msgstr "ਨਵੀ ਪਲੱਗ-ਇਨ ਲਈ ਜਾਂਚ ਕੀਤੀ ਜਾ ਰਹੀ ਹੈ" +msgstr "ਨਵੀ ਪਲੱਗਿੰਨ ਲਈ ਜਾਂਚ ਕੀਤੀ ਜਾ ਰਹੀ ਹੈ" #: app/plug-in/plug-ins.c:170 #, c-format msgid "Querying plug-in: '%s'\n" -msgstr "ਪਲੱਗ-ਇਨ ਲਈ ਜਾਂਚ ਕੀਤੀ ਜਾ ਰਹੀ ਹੈ: '%s'\n" +msgstr "ਪਲੱਗਿੰਨ ਲਈ ਜਾਂਚ ਕੀਤੀ ਜਾ ਰਹੀ ਹੈ: '%s'\n" #. initialize the plug-ins #: app/plug-in/plug-ins.c:180 msgid "Initializing Plug-ins" -msgstr "ਪਲੱਗ-ਇਨ ਨੂੰ ਸ਼ੁਰੂ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ" +msgstr "ਪਲੱਗਿੰਨ ਨੂੰ ਸ਼ੁਰੂ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ" #: app/plug-in/plug-ins.c:194 #, c-format msgid "Initializing plug-in: '%s'\n" -msgstr "ਪਲੱਗ-ਇਨ ਨੂੰ ਸ਼ੁਰੂ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ: '%s'\n" +msgstr "ਪਲੱਗਿੰਨ ਨੂੰ ਸ਼ੁਰੂ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ: '%s'\n" #: app/plug-in/plug-ins.c:351 msgid "Starting Extensions" @@ -8121,11 +7667,11 @@ #: app/text/text-enums.c:81 msgid "Left justified" -msgstr "" +msgstr "ਖੱਬੇ ਪਾਸੇ" #: app/text/text-enums.c:82 msgid "Right justified" -msgstr "" +msgstr "ਸੱਜੇ ਪਾਸੇ" #: app/text/text-enums.c:83 msgid "Centered" @@ -8143,7 +7689,7 @@ "five dozen liquor jugs." msgstr "" -#: app/text/gimptext-compat.c:106 app/tools/gimptexttool.c:697 +#: app/text/gimptext-compat.c:108 app/tools/gimptexttool.c:699 msgid "Add Text Layer" msgstr "ਨਵੀ ਪਾਠ ਪਰਤ ਜੋੜ੍ਹੋ" @@ -8152,24 +7698,20 @@ msgstr "ਪਾਠ ਪਰਤ" #: app/text/gimptextlayer.c:171 -#, fuzzy msgid "Rename Text Layer" -msgstr "ਪਰਤ ਦਾ ਨਾਂ-ਤਬਦੀਲ" +msgstr "ਪਾਠ ਪਰਤ ਨਾਂ-ਤਬਦੀਲ" #: app/text/gimptextlayer.c:172 -#, fuzzy msgid "Move Text Layer" -msgstr "ਪਾਠ ਪਰਤ ਨੂੰ ਘੁੰਮਾਉ" +msgstr "ਪਾਠ ਪਰਤ ਘੁੰਮਾਓ" #: app/text/gimptextlayer.c:173 -#, fuzzy msgid "Scale Text Layer" -msgstr "ਪਰਤ ਪੈਮਾਨਾ" +msgstr "ਪਾਠ ਪਰਤ ਪੈਮਾਨਾ" #: app/text/gimptextlayer.c:174 -#, fuzzy msgid "Resize Text Layer" -msgstr "ਪਰਤ ਮੁਡ਼-ਅਕਾਰ" +msgstr "ਪਾਠ ਪਰਤ ਮੁਡ਼-ਅਕਾਰ" #: app/text/gimptextlayer.c:175 msgid "Flip Text Layer" @@ -8180,9 +7722,8 @@ msgstr "ਪਾਠ ਪਰਤ ਨੂੰ ਘੁੰਮਾਉ" #: app/text/gimptextlayer.c:177 -#, fuzzy msgid "Transform Text Layer" -msgstr "ਤਬਦੀਲ ਪਰਤ" +msgstr "ਪਾਠ ਤਬਦੀਲ ਪਰਤ" #: app/text/gimptextlayer.c:531 msgid "Discard Text Information" @@ -8207,19 +7748,16 @@ msgstr "" #: app/tools/tools-enums.c:25 -#, fuzzy msgid "Pick only" msgstr "ਸਿਰਫ ਚੁੱਕੋ" #: app/tools/tools-enums.c:26 -#, fuzzy msgid "Set foreground color" -msgstr "ਮੁੱਖ-ਭੂਮੀ ਰੰਗ ਨਿਰਧਾਰਿਤ ਕਰੋ" +msgstr "ਮੁੱਖ-ਭੂਮੀ ਰੰਗ ਨਿਰਧਾਰਨ" #: app/tools/tools-enums.c:27 -#, fuzzy msgid "Set background color" -msgstr "ਪਿੱਠਭੂਮੀ ਰੰਗ ਨਿਰਧਾਰਿਤ ਕਰੋ" +msgstr "ਪਿੱਠਭੂਮੀ ਰੰਗ ਨਿਰਧਾਰਨ" #: app/tools/tools-enums.c:54 msgid "Crop" @@ -8230,34 +7768,28 @@ msgstr "ਮੁਡ਼-ਅਕਾਰ" #: app/tools/tools-enums.c:83 -#, fuzzy msgid "Free select" msgstr "ਮੁਕਤ ਚੋਣ" #: app/tools/tools-enums.c:84 -#, fuzzy msgid "Fixed size" msgstr "ਨਿਸ਼ਚਿਤ ਅਕਾਰ" #: app/tools/tools-enums.c:85 -#, fuzzy msgid "Fixed aspect ratio" msgstr "ਨਿਸ਼ਚਿਤ ਅਕਾਰ ਅਨੁਪਾਤ" #: app/tools/tools-enums.c:113 -#, fuzzy msgid "Transform layer" msgstr "ਤਬਦੀਲ ਪਰਤ" #: app/tools/tools-enums.c:114 -#, fuzzy msgid "Transform selection" msgstr "ਚੋਣ ਤਬਦੀਲ" #: app/tools/tools-enums.c:115 -#, fuzzy msgid "Transform path" -msgstr "ਰਸਤਾ ਤਬਦੀਲ" +msgstr "ਮਾਰਗ ਤਬਦੀਲ" #: app/tools/tools-enums.c:143 msgid "Design" @@ -8269,22 +7801,19 @@ #: app/tools/tools-enums.c:174 msgid "Outline" -msgstr "" +msgstr "ਹਾਸ਼ੀਆ" #: app/tools/tools-enums.c:177 -#, fuzzy msgid "Image + Grid" -msgstr "ਮੂਲ ਚਿੱਤਰ ਗਰਿੱਡ" +msgstr "ਚਿੱਤਰ + ਗਰਿੱਡ" #: app/tools/tools-enums.c:204 -#, fuzzy msgid "Number of grid lines" msgstr "ਗਰਿੱਡ ਰੇਖਾਵਾਂ ਦੀ ਗਿਣਤੀ" #: app/tools/tools-enums.c:205 -#, fuzzy msgid "Grid line spacing" -msgstr "ਰੇਖਾ ਥਾਂ ਸੋਧੋ" +msgstr "ਗਰਿੱਡ ਰੇਖਾ ਥਾਂ" #: app/tools/gimp-tools.c:283 msgid "This tool has no options." @@ -8295,9 +7824,8 @@ msgstr "ਹਵਾਈ-ਬੁਰਸ਼ ਬਦਲਣਯੋਗ ਦਬਾਉ ਨਾਲ" #: app/tools/gimpairbrushtool.c:57 -#, fuzzy msgid "_Airbrush" -msgstr "ਏਅਰ-ਬੁਰਸ਼" +msgstr "ਏਅਰ-ਬੁਰਸ਼(_A)" #: app/tools/gimpairbrushtool.c:123 app/tools/gimpconvolvetool.c:211 #: app/tools/gimpsmudgetool.c:123 @@ -8310,13 +7838,13 @@ #: app/tools/gimpblendoptions.c:246 msgid "Offset:" -msgstr "" +msgstr "ਹਾਸ਼ੀਏ ਤੋਂ ਦੂਰੀ:" #: app/tools/gimpblendoptions.c:255 app/widgets/gimpbrusheditor.c:145 msgid "Shape:" msgstr "ਖਾਕਾ" -#: app/tools/gimpblendoptions.c:261 app/tools/gimppaintoptions-gui.c:417 +#: app/tools/gimpblendoptions.c:261 app/tools/gimppaintoptions-gui.c:419 msgid "Repeat:" msgstr "ਦੁਹਰਾਉ:" @@ -8338,9 +7866,8 @@ msgstr "ਰੰਗ ਢਾਲਵੇ ਨਾਲ ਭਰੋ" #: app/tools/gimpblendtool.c:103 -#, fuzzy msgid "Blen_d" -msgstr "ਮਿਲਾਵਟ:" +msgstr "ਮਿਲਾਵਟ(_d)" #: app/tools/gimpblendtool.c:191 msgid "Blend: Invalid for indexed images." @@ -8356,9 +7883,8 @@ msgstr "ਚਮਕੀਲਾਪਨ-ਅਸਮਾਨਤਾ ਨੂੰ ਅਨੁਕੂਲ ਕਰੋ" #: app/tools/gimpbrightnesscontrasttool.c:87 -#, fuzzy msgid "B_rightness-Contrast..." -msgstr "ਪਰਕਾਸ਼ਵਾਨਤਾ-ਵੱਖਰੇਵਾਂ" +msgstr "ਪਰਕਾਸ਼ਵਾਨਤਾ-ਵੱਖਰੇਵਾਂ(_r)..." #: app/tools/gimpbrightnesscontrasttool.c:138 msgid "Adjust Brightness and Contrast" @@ -8401,12 +7927,10 @@ msgstr "ਪ੍ਰਭਾਵਿਤ ਖੇਤਰ %s" #: app/tools/gimpbucketfilloptions.c:254 -#, fuzzy msgid "Fill whole selection" -msgstr "ਸਾਰੀ ਚੋਣ ਭਰੋ" +msgstr "ਸਭ ਚੋਣ ਭਰੋ" #: app/tools/gimpbucketfilloptions.c:255 -#, fuzzy msgid "Fill similar colors" msgstr "ਮਿਲ-ਜੁਲਦੇ ਰੰਗ ਭਰੋ" @@ -8415,16 +7939,14 @@ msgstr "ਮਿਲ-ਜੁਲਦੇ ਰੰਗ ਖੋਜੋ" #: app/tools/gimpbucketfilloptions.c:277 -#, fuzzy msgid "Fill transparent areas" msgstr "ਪਾਰਦਰਸ਼ੀ ਖੇਤਰ ਭਰੋ" #: 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 "ਸਧਾਰਨ ਔਸਤ" +msgstr "ਨਮੂਨਾ ਮਿਲਾਨ" #: app/tools/gimpbucketfilltool.c:92 msgid "Fill with a color or pattern" @@ -8432,7 +7954,7 @@ #: app/tools/gimpbucketfilltool.c:93 msgid "_Bucket Fill" -msgstr "" +msgstr "ਬਲਟੀ ਭਰਨ(_B)" #: app/tools/gimpbycolorselecttool.c:82 msgid "Select By Color" @@ -8443,35 +7965,32 @@ msgstr "ਖੇਤਰ ਨੂੰ ਰੰਗ ਅਨੁਸਾਰ ਚੁਣੋ" #: app/tools/gimpbycolorselecttool.c:84 -#, fuzzy msgid "_By Color Select" -msgstr "ਪਰਤ ਚੋਣ" +msgstr "ਰੰਗ ਚੋਣ ਨਾਲ(_B)" #: app/tools/gimpclonetool.c:90 msgid "Paint using Patterns or Image Regions" msgstr "" #: app/tools/gimpclonetool.c:91 -#, fuzzy msgid "_Clone" -msgstr "ਸਮਰੂਪ" +msgstr "ਸਮਰੂਪ(_C)" -#: app/tools/gimpclonetool.c:266 +#: app/tools/gimpclonetool.c:288 msgid "Source" msgstr "ਸਰੋਤ" -#: app/tools/gimpclonetool.c:275 +#: app/tools/gimpclonetool.c:297 msgid "Alignment" -msgstr "" +msgstr "ਇਕਸਾਰਤਾ" #: app/tools/gimpcolorbalancetool.c:97 msgid "Adjust color balance" msgstr "ਰੰਗ ਸੰਤੁਲਨ ਅਨੁਕੂਲ ਕਰੋ" #: app/tools/gimpcolorbalancetool.c:98 -#, fuzzy msgid "Color _Balance..." -msgstr "ਰੰਗ ਸਾਵਾਂ" +msgstr "ਰੰਗ ਸਾਵਾਂ(_B)..." #: app/tools/gimpcolorbalancetool.c:149 msgid "Adjust Color Balance" @@ -8502,23 +8021,20 @@ msgstr "ਪੀਲਾ" #: app/tools/gimpcolorbalancetool.c:325 -#, fuzzy msgid "R_eset range" -msgstr "ਸੀਮਾ ਮੁਡ਼ ਨਿਰਧਾਰਿਤ ਕਰੋ" +msgstr "ਸੀਮਾ ਮੁਡ਼ ਨਿਰਧਾਰਨ(_e)" #: app/tools/gimpcolorbalancetool.c:334 -#, fuzzy msgid "Preserve _luminosity" -msgstr "ਪਰਕਾਸ਼ਵਾਨੀ ਨੂੰ ਰੱਖੋ" +msgstr "ਪਰਕਾਸ਼ਵਾਨੀ ਰੱਖੋ(_l)" #: app/tools/gimpcolorizetool.c:97 msgid "Colorize the image" msgstr "ਚਿੱਤਰ ਨੂੰ ਰੰਗੀਨ ਕਰੋ" #: app/tools/gimpcolorizetool.c:98 -#, fuzzy msgid "Colori_ze..." -msgstr "ਰੰਗਤ" +msgstr "ਰੰਗਤ(_z)..." #: app/tools/gimpcolorizetool.c:152 msgid "Colorize the Image" @@ -8545,7 +8061,6 @@ msgstr "ਪਰਕਾਸ਼਼ਮਾਨ:" #: app/tools/gimpcoloroptions.c:184 -#, fuzzy msgid "Sample average" msgstr "ਸਧਾਰਨ ਔਸਤ" @@ -8562,9 +8077,9 @@ #. the add to palette toggle #: app/tools/gimpcolorpickeroptions.c:193 -#, fuzzy, c-format +#, c-format msgid "Add to palette %s" -msgstr "/ਟੈਬ ਜੋੜ੍ਹੋ/ਰੰਗ-ਪੱਟੀ" +msgstr "ਰੰਗ-ਪੱਟੀ ਵਿੱਚ ਜੋੜ੍ਹੋ %s" #: app/tools/gimpcolorpickertool.c:99 msgid "Color Picker" @@ -8575,9 +8090,8 @@ msgstr "ਚਿੱਤਰ ਤੋ ਰੰਗ ਚੁਣੋ" #: app/tools/gimpcolorpickertool.c:101 -#, fuzzy msgid "C_olor Picker" -msgstr "ਰੰਗ ਚੋਣਕਾਰ" +msgstr "ਰੰਗ ਚੋਣਕਾਰ(_o)" #. tool->gdisp->shell #: app/tools/gimpcolorpickertool.c:343 @@ -8589,9 +8103,8 @@ msgstr "" #: app/tools/gimpconvolvetool.c:72 -#, fuzzy msgid "Con_volve" -msgstr "ਤਬਦੀਲ" +msgstr "" #. the type radio box #: app/tools/gimpconvolvetool.c:193 @@ -8607,7 +8120,6 @@ msgstr "ਸੰਦ ਤਬਦੀਲ %s" #: app/tools/gimpcropoptions.c:200 -#, fuzzy msgid "Current layer only" msgstr "ਸਿਰਫ਼ ਮੌਜੂਦਾ ਪਰਤ ਲਈ" @@ -8619,9 +8131,9 @@ #. layer toggle #: app/tools/gimpcropoptions.c:215 -#, fuzzy, c-format +#, c-format msgid "Keep aspect ratio %s" -msgstr "ਨਿਸ਼ਚਿਤ ਅਕਾਰ ਅਨੁਪਾਤ" +msgstr "ਨਿਸ਼ਚਿਤ ਅਕਾਰ ਅਨੁਪਾਤ %s" #: app/tools/gimpcroptool.c:164 msgid "Crop & Resize" @@ -8632,9 +8144,8 @@ msgstr "ਚਿੱਤਰ ਨੂੰ ਫੈਲਾਉ ਤੇ ਮੁਡ਼-ਅਕਾਰ ਦਿਉ" #: app/tools/gimpcroptool.c:166 -#, fuzzy msgid "_Crop & Resize" -msgstr "ਫੈਲਾਉ ਤੇ ਮੁਡ਼-ਅਕਾਰ" +msgstr "ਫੈਲਾਉ ਤੇ ਮੁਡ਼-ਅਕਾਰ(_C)" #. initialize the statusbar display #: app/tools/gimpcroptool.c:499 app/tools/gimpcroptool.c:983 @@ -8647,25 +8158,21 @@ #: app/tools/gimpcroptool.c:1029 msgid "Origin X:" -msgstr "" +msgstr "ਖੇਤਰ X:" #: app/tools/gimpcroptool.c:1033 -#, fuzzy msgid "Origin Y:" -msgstr "ਅਸਲੀ ਚੌੜਾਈ:" +msgstr "ਖੇਤਰ Y:" #: app/tools/gimpcroptool.c:1071 app/widgets/gimpbrusheditor.c:194 -#, fuzzy msgid "Aspect ratio:" msgstr "ਅਕਾਰ ਅਨੁਪਾਤ:" #: app/tools/gimpcroptool.c:1082 -#, fuzzy msgid "From selection" -msgstr "ਚੋਣ ਤੋ" +msgstr "ਚੋਣ ਤੋਂ" #: app/tools/gimpcroptool.c:1090 -#, fuzzy msgid "Auto shrink" msgstr "ਸਵੈ ਸੁੰਘੜ੍ਹੋ" @@ -8675,7 +8182,7 @@ #: app/tools/gimpcurvestool.c:143 msgid "_Curves..." -msgstr "" +msgstr "ਘਾਤਾਂ(_C)..." #: app/tools/gimpcurvestool.c:202 msgid "Adjust Color Curves" @@ -8686,9 +8193,8 @@ msgstr "ਗੋਲਾਈ ਲੋਡ ਕਰੋ" #: app/tools/gimpcurvestool.c:205 -#, fuzzy msgid "Load curves settings from file" -msgstr "ਫਾਇਲ ਵਿੱਚੋ ਗੋਲਾਈ ਵਿਵਸਥਾਂ ਖੋਲ੍ਹੋ" +msgstr "ਫਾਇਲ ਵਿੱਚੋ ਗੋਲਾਈ ਵਿਵਸਥਾ ਖੋਲ੍ਹੋ" #: app/tools/gimpcurvestool.c:206 msgid "Save Curves" @@ -8708,9 +8214,8 @@ msgstr "ਚੈਨਲ:" #: app/tools/gimpcurvestool.c:494 app/tools/gimplevelstool.c:430 -#, fuzzy msgid "R_eset channel" -msgstr "ਚੈਨਲ ਮੁਡ਼ ਨਿਰਧਾਰਨ" +msgstr "ਚੈਨਲ ਮੁਡ਼ ਨਿਰਧਾਰਨ(_e)" #. Horizontal button box for load / save #: app/tools/gimpcurvestool.c:596 app/tools/gimplevelstool.c:640 @@ -8738,7 +8243,7 @@ #: app/tools/gimpdodgeburntool.c:204 msgid "Mode" -msgstr "ਮੋਡ" +msgstr "ਢੰਗ" #: app/tools/gimpdodgeburntool.c:216 msgid "Exposure:" @@ -8746,9 +8251,8 @@ #: app/tools/gimpeditselectiontool.c:262 #: app/tools/gimpeditselectiontool.c:1203 -#, fuzzy msgid "Move Floating Selection" -msgstr "ਅਸਥਿਰ ਚੋਣ ਹਟਾਉ" +msgstr "ਤਰਦੀ ਚੋਣ ਏਧਰ-ਓਧਰ" #: app/tools/gimpeditselectiontool.c:464 app/tools/gimpeditselectiontool.c:732 msgid "Move: " @@ -8759,22 +8263,20 @@ msgstr "ਅੰਡਾਕਾਰ ਖੇਤਰ ਚੁਣੋ" #: app/tools/gimpellipseselecttool.c:73 -#, fuzzy msgid "_Ellipse Select" -msgstr "ਅੰਡਾਕਾਰ ਚੋਣ" +msgstr "ਅੰਡਾਕਾਰ ਚੋਣ(_E)" #: app/tools/gimperasertool.c:71 msgid "Erase to background or transparency" msgstr "ਪਿੱਠਭੂਮੀ ਜਾਂ ਪਾਰਦਰਸ਼ਤਾ ਨੂੰ ਮੇਟਾਉ" #: app/tools/gimperasertool.c:72 -#, fuzzy msgid "_Eraser" -msgstr "ਰਬਡ਼" +msgstr "ਰਬਡ਼(_E)" #. the anti_erase toggle #: app/tools/gimperasertool.c:185 -#, fuzzy, c-format +#, c-format msgid "Anti erase %s" msgstr "ਗੈਰ ਮੇਟੋ %s" @@ -8794,54 +8296,48 @@ msgstr "ਚੋਣ ਜਾਂ ਚੋਣ ਨੂੰ ਝਟਕੋ" #: app/tools/gimpfliptool.c:84 -#, fuzzy msgid "_Flip" -msgstr "ਝਟਕਾ" +msgstr "ਝਟਕਾ(_F)" #: app/tools/gimpfreeselecttool.c:97 msgid "Select hand-drawn regions" msgstr "ਦਸਤੀ-ਉਲੀਕੇ ਖੇਤਰ ਚੁਣੋ" #: app/tools/gimpfreeselecttool.c:98 -#, fuzzy msgid "_Free Select" -msgstr "ਮੁਕਤ ਚੋਣ" +msgstr "ਮੁਕਤ ਚੋਣ(_F)" #: app/tools/gimpfuzzyselecttool.c:98 msgid "Select contiguous regions" -msgstr "" +msgstr "ਲਗਾਤਾਰ ਖੇਤਰ ਚੁਣੋ" #: app/tools/gimpfuzzyselecttool.c:99 -#, fuzzy msgid "Fu_zzy Select" -msgstr "ਮੁਕਤ ਚੋਣ" +msgstr "ਮੁਕਤ ਚੋਣ(_z)" #: app/tools/gimphistogramoptions.c:151 msgid "Histogram Scale" -msgstr "" +msgstr "ਭਿੰਨ ਸਕੇਲਿੰਗ" #: app/tools/gimphuesaturationtool.c:111 msgid "Adjust hue and saturation" -msgstr "" +msgstr "ਆਭਾ ਤੇ ਸਤ੍ਰਿਪਤ ਅਨੁਕੂਲ" #: app/tools/gimphuesaturationtool.c:112 -#, fuzzy msgid "Hue-_Saturation..." -msgstr "ਆਭਾ-ਸਤ੍ਰਿਪਤ" +msgstr "ਆਭਾ-ਸਤ੍ਰਿਪਤ(_S)..." #: app/tools/gimphuesaturationtool.c:166 -#, fuzzy msgid "Adjust hue / lightness / saturation" -msgstr "ਚਮਕੀਲਾਪਨ-ਅਸਮਾਨਤਾ ਨੂੰ ਅਨੁਕੂਲ ਕਰੋ" +msgstr "ਆਭਾ / ਚਮਕੀਲਾਪਨ / ਸਤ੍ਰਿਪਤਾ ਅਨੁਕੂਲ" #: app/tools/gimphuesaturationtool.c:210 msgid "Hue-Saturation operates only on RGB color layers." msgstr "" #: app/tools/gimphuesaturationtool.c:263 -#, fuzzy msgid "M_aster" -msgstr "ਮੁੱਖ" +msgstr "ਮੁੱਖ(_a)" #: app/tools/gimphuesaturationtool.c:264 msgid "_R" @@ -8880,23 +8376,20 @@ msgstr "ਚੁਣੇ ਰੰਗ ਸੋਧੋ" #: app/tools/gimphuesaturationtool.c:405 -#, fuzzy msgid "R_eset color" -msgstr "ਰੰਗ ਮੁਡ਼-ਨਿਰਧਾਰਨ" +msgstr "ਰੰਗ ਮੁਡ਼-ਨਿਰਧਾਰਨ(_e)" #: app/tools/gimpimagemaptool.c:259 app/widgets/gimpthumbbox.c:354 msgid "_Preview" msgstr "ਨਮੂਨਾ" #: app/tools/gimpimagemaptool.c:292 -#, fuzzy msgid "Quick Load" -msgstr "ਤੇਜ਼ ਮਖੌਟਾ" +msgstr "ਤੇਜ਼ ਲੋਡ" #: app/tools/gimpimagemaptool.c:322 -#, fuzzy msgid "Quick Save" -msgstr "ਤੇਜ਼ ਮਖੌਟਾ" +msgstr "ਤੇਜ਼ ਸੰਭਾਲੋ" #. adjust sliders #: app/tools/gimpinkoptions-gui.c:59 @@ -8940,9 +8433,8 @@ msgstr "ਸਿਆਹੀ ਵਿੱਚ ਉਲੀਕੋ" #: app/tools/gimpinktool.c:64 -#, fuzzy msgid "In_k" -msgstr "ਸਿਆਹੀ" +msgstr "ਸਿਆਹੀ(_k)" #: app/tools/gimpiscissorstool.c:277 msgid "Scissors" @@ -8953,18 +8445,16 @@ msgstr "ਚਿੱਤਰ ਤੋ ਖਾਕਾ ਚੁਣੋ" #: app/tools/gimpiscissorstool.c:279 -#, fuzzy msgid "Intelligent _Scissors" -msgstr "ਸੰਦ/ਚੋਣ ਸੰਦ/ਕੁਸ਼ਲ ਛਾਂਗਣਾ" +msgstr "ਕੁਸ਼ਲ ਛਾਂਗਈ(_S)" #: app/tools/gimplevelstool.c:161 msgid "Adjust color levels" msgstr "ਰੰਗ ਪੱਧਰ ਅਨੁਕੂਲ ਕਰੋ" #: app/tools/gimplevelstool.c:162 -#, fuzzy msgid "_Levels..." -msgstr "ਪੱਧਰ" +msgstr "ਪੱਧਰ(_L)..." #: app/tools/gimplevelstool.c:220 msgid "Adjust Color Levels" @@ -8975,7 +8465,6 @@ msgstr "ਪੱਧਰ ਲੋਡ ਕਰੋ" #: app/tools/gimplevelstool.c:223 -#, fuzzy msgid "Load levels settings from file" msgstr "ਫਾਇਲ ਤੋ ਪੱਧਰ ਵਿਵਸਥਾ ਪੜ੍ਹੋ" @@ -8992,17 +8481,14 @@ msgstr "ਤਤਕਰਾ ਪਰਤਾਂ ਲਈ ਪੱਧਰ ਅਨੁਕੂਲ ਨਹੀ ਕੀਤਾ ਜਾ ਸਕਦਾ ਹੈ।" #: app/tools/gimplevelstool.c:355 -#, fuzzy msgid "Pick black point" msgstr "ਕਾਲਾ ਬਿੰਦੂ ਚੁੱਕੋ" #: app/tools/gimplevelstool.c:359 -#, fuzzy msgid "Pick gray point" -msgstr "ਗਰੇ ਬਿੰਦੂ ਚੁੱਕੋ" +msgstr "ਸਲੇਟੀ ਬਿੰਦੂ ਚੁੱਕੋ" #: app/tools/gimplevelstool.c:363 -#, fuzzy msgid "Pick white point" msgstr "ਸਫੈਦ ਬਿੰਦੂ ਚੁੱਕੋ" @@ -9026,7 +8512,7 @@ #: app/tools/gimpmagnifyoptions.c:203 msgid "Auto-resize window" -msgstr "" +msgstr "ਸਵੈ-ਅਕਾਰ ਝਰੋਖਾ" #: app/tools/gimpmagnifytool.c:95 msgid "Magnify" @@ -9037,14 +8523,12 @@ msgstr "ਅਕਾਰ ਵੱਡਾ ਤੇ ਛੋਟਾ" #: app/tools/gimpmagnifytool.c:97 -#, fuzzy msgid "M_agnify" -msgstr "ਵੱਡ-ਦਰਿਸ਼" +msgstr "ਵੱਡ-ਦਰਿਸ਼(_a)" #: app/tools/gimpmeasureoptions.c:157 -#, fuzzy msgid "Use info window" -msgstr "ਜਾਣਕਾਰੀ ਝਰੋਖਾ ਵਰਤੋ" +msgstr "ਜਾਣਕਾਰੀ ਝਰੋਖਾ ਵਰਤੋਂ" #: app/tools/gimpmeasuretool.c:118 msgid "Measure" @@ -9055,13 +8539,12 @@ msgstr "ਦੂਰੀ ਅਤੇ ਕੋਣ ਮਾਪੋ" #: app/tools/gimpmeasuretool.c:120 -#, fuzzy msgid "_Measure" -msgstr "ਮਾਪ" +msgstr "ਮਾਪ(_M)" #: app/tools/gimpmeasuretool.c:264 msgid "Add Guides" -msgstr "" +msgstr "ਗਾਈਡ ਸ਼ਾਮਲ" #. tool->gdisp->shell #: app/tools/gimpmeasuretool.c:847 @@ -9073,62 +8556,52 @@ msgstr "ਦੂਰੀ:" #: app/tools/gimpmoveoptions.c:171 -#, fuzzy msgid "Pick a layer or guide" -msgstr "ਏਧਰ-ਓਧਰ ਕਰਨ ਲਈ ਰਸਤਾ ਚੁਣੋ" +msgstr "ਇੱਕ ਪਰਤ ਜਾਂ ਗਾਈਡ ਚੁਣੋ" #: app/tools/gimpmoveoptions.c:172 -#, fuzzy msgid "Move the current layer" -msgstr "ਮੌਜੂਦਾ ਪਰਤ ਨੂੰ ਏਧਰ-ਓਧਰ ਕਰੋ" +msgstr "ਮੌਜੂਦਾ ਪਰਤ ਏਧਰ-ਓਧਰ" #: app/tools/gimpmoveoptions.c:176 -#, fuzzy msgid "Move selection" msgstr "ਚੁਣਿਆ ਏਧਰ-ਓਧਰ" #: app/tools/gimpmoveoptions.c:180 -#, fuzzy msgid "Pick a path" -msgstr "ਏਧਰ-ਓਧਰ ਕਰਨ ਲਈ ਰਸਤਾ ਚੁਣੋ" +msgstr "ਇੱਕ ਮਾਰਗ ਚੁਣੋ" #: app/tools/gimpmoveoptions.c:181 -#, fuzzy msgid "Move the current path" -msgstr "ਮੌਜੂਦਾ ਰਸਤਾ ਏਧਰ-ਓਧਰ" +msgstr "ਮੌਜੂਦਾ ਮਾਰਗ ਏਧਰ-ਓਧਰ" #: app/tools/gimpmovetool.c:117 msgid "Move layers & selections" msgstr "ਪਰਤਾਂ ਤੇ ਚੋਣ ਏਧਰ-ਓਧਰ" #: app/tools/gimpmovetool.c:118 -#, fuzzy msgid "_Move" -msgstr "ਏਧਰ-ਓਧਰ" +msgstr "ਏਧਰ-ਓਧਰ(_M)" #: app/tools/gimpmovetool.c:298 app/tools/gimpmovetool.c:576 -#, fuzzy msgid "Move Guide: " -msgstr "ਨਿਰਦੇਸ਼ਕ ਏਧਰ-ਓਧਰ" +msgstr "ਨਿਰਦੇਸ਼ਕ ਏਧਰ-ਓਧਰ: " #: app/tools/gimpmovetool.c:570 -#, fuzzy msgid "Cancel Guide" -msgstr "ਰੱਦ" +msgstr "ਗਾਈਡ ਰੱਦ" #: app/tools/gimpmovetool.c:576 -#, fuzzy msgid "Add Guide: " -msgstr "ਦਿਸ਼ਾ-ਨਿਰਦੇਸ਼ਨ" +msgstr "ਦਿਸ਼ਾ-ਨਿਰਦੇਸ਼ਨ ਸ਼ਾਮਲ: " #: app/tools/gimppaintbrushtool.c:52 msgid "Paint fuzzy brush strokes" msgstr "ਧੁੰਦਲਾ ਬੁਰਸ਼ ਛੋਹ ਬਣਾਉ" #: app/tools/gimppaintbrushtool.c:53 -#, fuzzy msgid "_Paintbrush" -msgstr "ਪੇਟ-ਬੁਰਸ਼" +msgstr "ਪੇਟ-ਬੁਰਸ਼(_P)" #: app/tools/gimppaintoptions-gui.c:103 app/widgets/gimpbrushselect.c:201 #: app/widgets/gimplayertreeview.c:332 @@ -9144,17 +8617,15 @@ msgid "Brush:" msgstr "ਬੁਰਸ਼:" -#: app/tools/gimppaintoptions-gui.c:135 app/tools/gimppaintoptions-gui.c:394 +#: app/tools/gimppaintoptions-gui.c:135 app/tools/gimppaintoptions-gui.c:395 msgid "Gradient:" msgstr "ਢਾਲਵਾਂ:" #: app/tools/gimppaintoptions-gui.c:177 -#, fuzzy msgid "Hard edge" msgstr "ਸਖਤ ਕਿਨਾਰਾ" #: app/tools/gimppaintoptions-gui.c:216 -#, fuzzy msgid "Pressure sensitivity" msgstr "ਦਬਾਉ ਸ਼ੰਵੇਦਨਸ਼ੀਲਤਾ" @@ -9175,27 +8646,24 @@ msgstr "ਅਕਾਰ" #: app/tools/gimppaintoptions-gui.c:313 -#, fuzzy msgid "Fade out" msgstr "ਫਿੱਕਾ ਕਰੋ" -#: app/tools/gimppaintoptions-gui.c:333 app/tools/gimppaintoptions-gui.c:403 +#: app/tools/gimppaintoptions-gui.c:333 app/tools/gimppaintoptions-gui.c:404 msgid "Length:" msgstr "ਲੰਬਾਈ:" -#: app/tools/gimppaintoptions-gui.c:367 -#, fuzzy +#: app/tools/gimppaintoptions-gui.c:368 msgid "Use color from gradient" -msgstr "ਢਾਲਚੇ ਤੋ ਰੰਗ ਵਰਤੋ" +msgstr "ਢਾਲਵੇਂ ਤੋ ਰੰਗ ਵਰਤੋਂ" #: app/tools/gimppenciltool.c:52 msgid "Paint hard edged pixels" msgstr "ਸਖਤ ਕਿਨਾਰੇ ਪਿਕਸਲ਼ ਪੇਟ ਕਰੋ" #: app/tools/gimppenciltool.c:53 -#, fuzzy msgid "Pe_ncil" -msgstr "ਪਿਨਸਲ" +msgstr "ਪਿਨਸਲ(_n)" #: app/tools/gimpperspectivetool.c:81 msgid "Perspective" @@ -9206,9 +8674,8 @@ msgstr "ਮੌਜੂਦਾ ਪਰਤ ਜਾਂ ਚੋਣ ਦਾ ਅਵਲੋਕਣ ਤਬਦੀਲ " #: app/tools/gimpperspectivetool.c:83 -#, fuzzy msgid "_Perspective" -msgstr "ਅਵਲੋਕਣ" +msgstr "ਅਵਲੋਕਣ(_P)" #: app/tools/gimpperspectivetool.c:140 msgid "Perspective Transform Information" @@ -9224,7 +8691,7 @@ #: app/tools/gimpposterizetool.c:80 msgid "_Posterize..." -msgstr "" +msgstr "ਇਸ਼ਤਹਾਰ(_P)..." #: app/tools/gimpposterizetool.c:131 msgid "Posterize (Reduce Number of Colors)" @@ -9235,18 +8702,16 @@ msgstr "ਇਸ਼ਤਹਾਰੀ ਤਤਕਰੀ ਪਰਤਾਂ ਤੇ ਕੰਮ ਨਹੀ ਕਰਦਾ ਹੈ।" #: app/tools/gimpposterizetool.c:223 -#, fuzzy msgid "Posterize _levels:" -msgstr "ਇਸ਼ਤਹਾਰੀ ਪੱਧਰ:" +msgstr "ਇਸ਼ਤਹਾਰੀ ਪੱਧਰ(_l):" #: app/tools/gimprectselecttool.c:97 msgid "Select rectangular regions" msgstr "ਆਇਤਕਾਰ ਖੇਤਰ ਚੁਣੋ" #: app/tools/gimprectselecttool.c:98 -#, fuzzy msgid "_Rect Select" -msgstr "ਆਇਤਕਾਰ ਚੋਣ" +msgstr "ਆਇਤਕਾਰ ਚੋਣ(_R)" #: app/tools/gimprectselecttool.c:224 msgid "Selection: ADD" @@ -9273,9 +8738,8 @@ msgstr "ਪਰਤ ਜਾਂ ਚੋਣ ਨੂੰ ਘੁੰਮਾਉ" #: app/tools/gimprotatetool.c:99 -#, fuzzy msgid "_Rotate" -msgstr "ਘੁੰਮਾਉ" +msgstr "ਘੁੰਮਾਓ(_R)" #: app/tools/gimprotatetool.c:158 msgid "Rotation Information" @@ -9286,7 +8750,6 @@ msgstr "ਕੇਦਰੀ X:" #: app/tools/gimprotatetool.c:190 -#, fuzzy msgid "Center Y:" msgstr "ਕੇਦਰੀ X:" @@ -9299,12 +8762,10 @@ msgstr "ਪਰਤ ਜਾਂ ਚੋਣ ਨੂੰ ਮਾਪ-ਜਾਂਚ" #: app/tools/gimpscaletool.c:93 -#, fuzzy msgid "_Scale" -msgstr "ਮਾਪ-ਜਾਂਚ" +msgstr "ਮਾਪ-ਜਾਂਚ(_S)" #: app/tools/gimpscaletool.c:152 -#, fuzzy msgid "Scaling information" msgstr "ਮਾਪ-ਜਾਂਚ ਜਾਣਕਾਰੀ" @@ -9313,22 +8774,18 @@ msgstr "ਅਸਲੀ ਚੌੜਾਈ:" #: app/tools/gimpscaletool.c:170 -#, fuzzy msgid "Current width:" msgstr "ਮੌਜੂਦਾ ਚੌਡ਼ਾਈ:" #: app/tools/gimpscaletool.c:174 -#, fuzzy msgid "Current height:" -msgstr "ਮੌਜੂਦਾ ਚੌਡ਼ਾਈ:" +msgstr "ਮੌਜੂਦਾ ਉਚਾਈ:" #: app/tools/gimpscaletool.c:189 -#, fuzzy msgid "Scale ratio X:" msgstr "ਮਾਪ-ਜਾਂਚ ਅਨੁਪਾਤ X:" #: app/tools/gimpscaletool.c:192 -#, fuzzy msgid "Scale ratio Y:" msgstr "ਮਾਪ-ਜਾਂਚ ਅਨੁਪਾਤ X:" @@ -9357,22 +8814,18 @@ msgstr "ਐਟੀਲਾਈਸਿੰਗ" #: app/tools/gimpselectionoptions.c:399 -#, fuzzy msgid "Feather edges" msgstr "ਪਤਲੇ ਕਿਨਾਰੇ" #: app/tools/gimpselectionoptions.c:425 -#, fuzzy msgid "Show interactive boundary" -msgstr "ਪਰਸਰ-ਪ੍ਰਭਾਵੀ ਹਾਸ਼ੀਏ ਵੇਖਾਉ" +msgstr "ਪਰਸਰ-ਪ੍ਰਭਾਵੀ ਹਾਸ਼ੀਏ ਵੇਖਾਓ" #: app/tools/gimpselectionoptions.c:448 -#, fuzzy msgid "Select transparent areas" msgstr "ਪਾਰਦਰਸ਼ੀ ਖੇਤਰ ਚੁਣੋ" #: app/tools/gimpselectionoptions.c:488 -#, fuzzy msgid "Auto shrink selection" msgstr "ਚੋਣ ਨੂੰ ਸਵੈ-ਸੰਗੇੜ੍ਹੋ" @@ -9385,36 +8838,31 @@ msgstr "ਪਰਤ ਜਾਂ ਚੋਣ ਨੂੰ ਘਟਾਉ" #: app/tools/gimpsheartool.c:100 -#, fuzzy msgid "S_hear" -msgstr "ਘਟਾਉ" +msgstr "ਘਟਾਓ(_h)" #: app/tools/gimpsheartool.c:157 msgid "Shearing Information" msgstr "ਘਟਾਉਣ ਦੀ ਜਾਣਕਾਰੀ" #: app/tools/gimpsheartool.c:167 -#, fuzzy msgid "Shear magnitude X:" -msgstr "X ਦੇ ਮੁੱਲ ਨੂੰ ਘਟਾਉ:" +msgstr "X ਦੇ ਮੁੱਲ ਨੂੰ ਘਟਾਓ:" #: app/tools/gimpsheartool.c:174 -#, fuzzy msgid "Shear magnitude Y:" -msgstr "X ਦੇ ਮੁੱਲ ਨੂੰ ਘਟਾਉ:" +msgstr "X ਦੇ ਮੁੱਲ ਨੂੰ ਘਟਾਓ:" #: app/tools/gimpsmudgetool.c:55 msgid "Smudge image" msgstr "ਧੱਬਾ ਚਿੱਤਰ" #: app/tools/gimpsmudgetool.c:56 -#, fuzzy msgid "_Smudge" -msgstr "ਧੱਬਾ" +msgstr "ਧੱਬਾ(_S)" #: app/tools/gimptextoptions.c:146 -msgid "" -"Hinting alters the font outline to produce a crisp bitmap at small sizes" +msgid "Hinting alters the font outline to produce a crisp bitmap at small sizes" msgstr "" #: app/tools/gimptextoptions.c:153 @@ -9432,19 +8880,16 @@ msgstr "ਰੇਖਾ ਥਾਂ ਸੋਧੋ" #: app/tools/gimptextoptions.c:419 -#, fuzzy msgid "Font:" msgstr "ਫੋਂਟ:" #: app/tools/gimptextoptions.c:431 -#, fuzzy msgid "Hinting" msgstr "ਸੰਕੇਤ" #: app/tools/gimptextoptions.c:438 -#, fuzzy msgid "Force auto-hinter" -msgstr "ਸਵੈ-ਸੰਕੇਤ ਲਈ ਮਜਬੂਰ ਕਰੋ" +msgstr "ਸਵੈ-ਸੰਕੇਤ ਲਈ ਮਜਬੂਰ" #: app/tools/gimptextoptions.c:453 msgid "Text Color" @@ -9463,7 +8908,6 @@ msgstr "ਹਾਸ਼ੀਏ ਤੋ ਪਰਾ:" #: app/tools/gimptextoptions.c:475 -#, fuzzy msgid "" "Line\n" "spacing:" @@ -9472,28 +8916,26 @@ "ਖਾਲੀ ਥਾਂ:" #: app/tools/gimptextoptions.c:478 -#, fuzzy msgid "Create path from text" -msgstr "ਪਾਠ ਤੋ ਰਸਤਾ ਬਣਾਉ" +msgstr "ਪਾਠ ਤੋਂ ਮਾਰਗ ਬਣਾਓ" -#: app/tools/gimptexttool.c:143 +#: app/tools/gimptexttool.c:145 msgid "Add text to the image" msgstr "ਚਿੱਤਰ ਵਿੱਚ ਪਾਠ ਜੋੜ੍ਹੋ" -#: app/tools/gimptexttool.c:144 -#, fuzzy +#: app/tools/gimptexttool.c:146 msgid "Te_xt" -msgstr "ਪਾਠ" +msgstr "ਪਾਠ(_x)" -#: app/tools/gimptexttool.c:732 +#: app/tools/gimptexttool.c:744 msgid "GIMP Text Editor" msgstr "ਜੈਮਪ ਪਾਠ ਸੋਧਕ" -#: app/tools/gimptexttool.c:842 app/tools/gimptexttool.c:845 +#: app/tools/gimptexttool.c:854 app/tools/gimptexttool.c:857 msgid "Confirm Text Editing" msgstr "ਪਾਠ ਸੋਧ ਦੀ ਪੁਸ਼ਟੀ" -#: app/tools/gimptexttool.c:866 +#: app/tools/gimptexttool.c:878 msgid "" "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 " @@ -9507,9 +8949,8 @@ msgstr "ਮੁੱਢਲਾ-ਮੁੱਲ ਵਰਤ ਕੇ ਚਿੱਤਰ ਨੂੰ ਦੋ ਰੰਗ ਵਿੱਚ ਤਬਦੀਲ ਕਰ ਦਿਉ" #: app/tools/gimpthresholdtool.c:94 -#, fuzzy msgid "_Threshold..." -msgstr "ਮੁੱਢਲਾ ਮੁੱਲ" +msgstr "ਮੁੱਢਲਾ ਮੁੱਲ(_T)..." #: app/tools/gimpthresholdtool.c:148 msgid "Apply Threshold" @@ -9533,14 +8974,12 @@ #. the clip resulting image toggle button #: app/tools/gimptransformoptions.c:353 -#, fuzzy msgid "Clip result" msgstr "ਕਲਿੱਪ ਨਤੀਜਾ" #: app/tools/gimptransformoptions.c:367 -#, fuzzy msgid "Preview:" -msgstr "ਨਮੂਨਾ" +msgstr "ਨਮੂਨਾ:" #. the constraints frame #: app/tools/gimptransformoptions.c:413 @@ -9548,33 +8987,32 @@ msgstr "ਸੀਮਾਵਾਂ" #: 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 ਰੱਖੋ" #: app/tools/gimptransformoptions.c:447 -#, fuzzy, c-format +#, c-format msgid "Keep width %s" msgstr "ਚੌਡ਼ਾਈ %s ਰੱਖੋ" #: app/tools/gimptransformoptions.c:449 -#, fuzzy, c-format +#, c-format msgid "Keep aspect %s" -msgstr "ਉਚਾਈ %s ਰੱਖੋ" +msgstr "ਅਕਾਰ ਅਨੁਪਾਤ %s ਰੱਖੋ" #: app/tools/gimptransformtool.c:253 msgid "Transforming..." msgstr "ਤਬਦੀਲ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ..." #: app/tools/gimpvectoroptions.c:113 -#, fuzzy msgid "Restrict editing to polygons" -msgstr "ਬਹੁਭੁਜ ਦੀ ਸੋਧ ਤੇ ਪਾਬੰਦੀ ਲਾਉ" +msgstr "ਬਹੁਭੁਜ ਦੀ ਸੋਧ ਤੇ ਪਾਬੰਦੀ ਲਾਓ" #: app/tools/gimpvectoroptions.c:177 msgid "Edit Mode" @@ -9585,31 +9023,29 @@ msgstr "ਬਹੁਭੁਜ" #: app/tools/gimpvectoroptions.c:186 -#, fuzzy, c-format +#, c-format msgid "" "Path to Selection\n" "%s Add\n" "%s Subtract\n" "%s Intersect" msgstr "" -"ਚੋਣ ਲਈ ਰਸਤਾ\n" +"ਚੋਣ ਲਈ ਮਾਰਗ\n" "%s ਜੋੜ੍ਹੋ\n" -"%s ਘਟਾਉ\n" -"%s%s%s ਵਿਚਕਾਰ ਲਿਖੋ" +"%s ਘਟਾਓ\n" +"%s ਵਿਚਕਾਰ " #: app/tools/gimpvectoroptions.c:196 -#, fuzzy msgid "Create selection from path" -msgstr "ਰਸਤਾ ਤੋ ਚੋਣ ਬਣਾਉ" +msgstr "ਮਾਰਗ ਤੋ ਚੋਣ ਬਣਾਓ" #: app/tools/gimpvectoroptions.c:207 -#, fuzzy msgid "Stroke path" -msgstr "ਛੋਹ ਰਸਤਾ" +msgstr "ਛੋਹ ਮਾਰਗ" #: app/tools/gimpvectortool.c:161 msgid "Create and edit paths" -msgstr "ਰਸਤਾ ਬਣਾਉ ਤੇ ਸੋਧੋ" +msgstr "ਮਾਰਗ ਬਣਾਉ ਤੇ ਸੋਧੋ" #: app/tools/gimpvectortool.c:363 msgid "Add Stroke" @@ -9645,7 +9081,7 @@ #: app/tools/gimpvectortool.c:557 msgid "Drag Path" -msgstr "ਰਸਤਾ ਚੁੱਕੋ" +msgstr "ਮਾਰਗ ਚੁੱਕੋ" #: app/tools/gimpvectortool.c:567 msgid "Convert Edge" @@ -9665,11 +9101,11 @@ #: app/tools/gimpvectortool.c:1196 msgid "Click to pick path to edit." -msgstr "ਸੋਧ ਲਈ ਰਸਤਾ ਚੁਣਨ ਲਈ ਦਬਾਉ" +msgstr "ਸੋਧ ਲਈ ਮਾਰਗ ਚੁਣਨ ਲਈ ਦਬਾਉ" #: app/tools/gimpvectortool.c:1199 msgid "Click to create a new path." -msgstr "ਨਵਾਂ ਰਸਤਾ ਬਣਾਉਣ ਲਈ ਦਬਾਉ" +msgstr "ਨਵਾਂ ਮਾਰਗ ਬਣਾਉਣ ਲਈ ਦਬਾਉ" #: app/tools/gimpvectortool.c:1202 msgid "Click to create a new component of the path." @@ -9701,7 +9137,7 @@ #: app/tools/gimpvectortool.c:1225 msgid "Click-Drag to move the path around." -msgstr "ਰਸਤਾ ਪਾਸੇ ਭੇਜਣ ਲਈ ਦਬਾਉ-ਚੁੱਕੋ" +msgstr "ਮਾਰਗ ਪਾਸੇ ਭੇਜਣ ਲਈ ਦਬਾਉ-ਚੁੱਕੋ" #: app/tools/gimpvectortool.c:1228 msgid "Click to insert an anchor on the path. (try SHIFT)" @@ -9717,16 +9153,15 @@ #: app/tools/gimpvectortool.c:1238 msgid "Click to open up the path." -msgstr "ਰਸਤਾ ਖੋਲਣ ਲਈ ਦਬਾਉ" +msgstr "ਮਾਰਗ ਖੋਲਣ ਲਈ ਦਬਾਉ" #: app/tools/gimpvectortool.c:1241 msgid "Click to make this node angular." msgstr "ਇਸ ਨੋਡ ਨੂੰ ਕੋਣੀ ਨਹੀ ਬਣਾਇਆ ਜਾ ਸਕਦਾ ਹੈ।" #: app/tools/gimpvectortool.c:1751 -#, fuzzy msgid "Delete Anchors" -msgstr "ਸਹਾਰਾ ਹਟਾਉ" +msgstr "ਸਹਾਰਾ ਹਟਾਓ" #: app/tools/gimpvectortool.c:1918 msgid "There is no active layer or channel to stroke to" @@ -9734,35 +9169,35 @@ #: app/vectors/gimpvectors.c:229 msgid "Path" -msgstr "ਰਸਤਾ" +msgstr "ਮਾਰਗ" #: app/vectors/gimpvectors.c:230 msgid "Rename Path" -msgstr "ਰਸਤਾ ਨਾਂ-ਤਬਦੀਲ" +msgstr "ਮਾਰਗ ਨਾਂ-ਤਬਦੀਲ" #: app/vectors/gimpvectors.c:231 app/vectors/gimpvectors.c:356 msgid "Move Path" -msgstr "ਰਸਤਾਂ ਏਧਰ-ਓਧਰ" +msgstr "ਮਾਰਗਂ ਏਧਰ-ਓਧਰ" #: app/vectors/gimpvectors.c:232 msgid "Scale Path" -msgstr "ਰਸਤਾ ਪੈਮਾਨਾ" +msgstr "ਮਾਰਗ ਪੈਮਾਨਾ" #: app/vectors/gimpvectors.c:233 msgid "Resize Path" -msgstr "ਰਸਤਾ ਨੂੰ ਮੁਡ਼-ਅਕਾਰ ਦਿਉ" +msgstr "ਮਾਰਗ ਨੂੰ ਮੁਡ਼-ਅਕਾਰ ਦਿਉ" #: app/vectors/gimpvectors.c:234 app/vectors/gimpvectors.c:447 msgid "Flip Path" -msgstr "ਰਸਤਾ ਨੂੰ ਝਟਕੋ" +msgstr "ਮਾਰਗ ਨੂੰ ਝਟਕੋ" #: app/vectors/gimpvectors.c:235 app/vectors/gimpvectors.c:491 msgid "Rotate Path" -msgstr "ਰਸਤਾ ਘੁੰਮਾਉ" +msgstr "ਮਾਰਗ ਘੁੰਮਾਉ" #: app/vectors/gimpvectors.c:236 app/vectors/gimpvectors.c:522 msgid "Transform Path" -msgstr "ਰਸਤਾ ਤਬਦੀਲ" +msgstr "ਮਾਰਗ ਤਬਦੀਲ" #: app/vectors/gimpvectors.c:551 msgid "Cannot stroke empty path." @@ -9770,25 +9205,25 @@ #: app/vectors/gimpvectors-import.c:287 msgid "Import Paths" -msgstr "ਰਸਤਾ ਲਿਆਉ" +msgstr "ਮਾਰਗ ਲਿਆਉ" #: app/vectors/gimpvectors-import.c:298 msgid "Imported Path" -msgstr "ਲਿਆਦਾ ਰਸਤਾ" +msgstr "ਲਿਆਦਾ ਮਾਰਗ" #: app/vectors/gimpvectors-import.c:324 #, c-format msgid "No paths found in '%s'" -msgstr "'%s' ਵਿੱਚ ਕੋਈ ਰਸਤਾ ਨਹੀ ਲੱਭਿਆ" +msgstr "'%s' ਵਿੱਚ ਕੋਈ ਮਾਰਗ ਨਹੀ ਲੱਭਿਆ" #: app/vectors/gimpvectors-import.c:327 msgid "No paths found in the buffer" -msgstr "ਬਫਰ ਵਿੱਚ ਕੋਈ ਰਸਤਾ ਨਹੀ ਲੱਭਿਆ" +msgstr "ਬਫਰ ਵਿੱਚ ਕੋਈ ਮਾਰਗ ਨਹੀ ਲੱਭਿਆ" #: app/vectors/gimpvectors-import.c:337 #, c-format msgid "Failed to import paths from '%s': %s" -msgstr "'%s' ਤੋ ਰਸਤਾ ਲਿਆਉਣ ਵਿੱਚ ਅਸਫਲ: %s" +msgstr "'%s' ਤੋ ਮਾਰਗ ਲਿਆਉਣ ਵਿੱਚ ਅਸਫਲ: %s" #: app/widgets/gimpactiongroup.c:803 #, c-format @@ -9796,36 +9231,33 @@ msgstr "RGBA (%0.3f, %0.3f, %0.3f, %0.3f)" #: app/widgets/gimpactionview.c:354 app/widgets/gimpcontrollereditor.c:374 -#, fuzzy msgid "Action" -msgstr "ਜੋੜ੍ਹੋ" +msgstr "ਕਾਰਵਾਈ" #: app/widgets/gimpactionview.c:383 -#, fuzzy msgid "Shortcut" -msgstr "ਕੀ-ਬੋਰਡ ਸ਼ਾਰਟਕੱਟ" +msgstr "ਸ਼ਾਰਟਕੱਟ" #: app/widgets/gimpactionview.c:405 -#, fuzzy msgid "Name" -msgstr "ਨਾਂ:" +msgstr "ਨਾਂ" #: app/widgets/gimpactionview.c:545 app/widgets/gimpactionview.c:738 msgid "Changing shortcut failed." -msgstr "" +msgstr "ਸ਼ਾਰਟਕੱਟ ਬਦਲਣਾ ਅਸਫਲ ਹੈ।" #: app/widgets/gimpactionview.c:585 msgid "Conflicting Shortcuts" -msgstr "" +msgstr "ਸ਼ਾਰਟਕੱਟ ਟਕਰਾ" #: app/widgets/gimpactionview.c:591 msgid "_Reassign shortcut" -msgstr "" +msgstr "ਸ਼ਾਰਟਕੱਟ ਮੁੜ-ਦਿਓ(_R)" #: app/widgets/gimpactionview.c:602 #, c-format msgid "Shortcut \"%s\" is already taken by \"%s\" from the \"%s\" group." -msgstr "" +msgstr "ਸ਼ਾਰਟਕੱਟ \"%s\" ਨੂੰ ਪਹਿਲਾਂ ਹੀ \"%s\" ਨੇ ਸਮੂਹ \"%s\" ਰਾਹੀਂ ਲੈ ਲਿਆ ਹੈ।" #: app/widgets/gimpactionview.c:606 #, c-format @@ -9834,16 +9266,15 @@ #: app/widgets/gimpactionview.c:673 msgid "Removing shortcut failed." -msgstr "" +msgstr "ਸ਼ਾਰਟਕੱਟ ਨੂੰ ਹਟਾਉਣਾ ਅਸਫਲ ਹੈ।" #: app/widgets/gimpactionview.c:678 msgid "Invalid shortcut." -msgstr "" +msgstr "ਗਲਤ ਸ਼ਾਰਟਕੱਟ" #: app/widgets/gimpbrusheditor.c:168 -#, fuzzy msgid "Spikes:" -msgstr "ਅਕਾਰ:" +msgstr "ਕਿੱਲ:" #: app/widgets/gimpbrusheditor.c:181 msgid "Hardness:" @@ -9867,11 +9298,11 @@ #: app/widgets/gimpcellrendereraccel.c:234 #: app/widgets/gimpcellrendereraccel.c:459 msgid "Type a new accelerator, or press Backspace to clear" -msgstr "" +msgstr "ਨਵਾਂ ਪ੍ਰਵੇਸ਼ਕ ਦਿਓ ਜਾਂ ਸਾਫ਼ ਕਰਨ ਲਈ ਬੈਕਸਪੇਸ ਦਿਓ।" #: app/widgets/gimpcellrendereraccel.c:462 msgid "Type a new accelerator" -msgstr "" +msgstr "ਨਵਾਂ ਪ੍ਰਵੇਸ਼ਕ ਦਿਓ" #: app/widgets/gimpchanneltreeview.c:151 msgid "Reorder Channel" @@ -9883,11 +9314,11 @@ #: app/widgets/gimpclipboard.c:283 msgid "Clipboard" -msgstr "" +msgstr "ਕਲਿੱਪਬੋਰਡ" #: app/widgets/gimpcolordialog.c:169 msgid "Add the current color to the color history" -msgstr "" +msgstr "ਮੌਜੂਦਾ ਰੰਗ ਨੂੰ ਰੰਗ ਅਤੀਤ ਵਿੱਚ ਸ਼ਾਮਲ ਕਰੋ" #: app/widgets/gimpcolordisplayeditor.c:177 msgid "Available Filters" @@ -9918,17 +9349,15 @@ msgstr "ਚੁਣੇ ਫਿਲਟਰ ਦਾ ਮੁੱਲ ਮੁਡ਼ ਨਿਰਧਾਰਿਤ ਕਰੋ" #: app/widgets/gimpcolordisplayeditor.c:543 -#, fuzzy, c-format +#, c-format msgid "Configure selected filter: %s" msgstr "ਚੁਣੇ ਫਿਲਟਰ ਦੀ ਸੰਰਚਨਾ: %s" #: app/widgets/gimpcolordisplayeditor.c:550 -#, fuzzy msgid "No filter selected" msgstr "ਕੋਈ ਫਿਲਟਰ ਨਹੀ ਚੁਣਿਆ" #: app/widgets/gimpcolordisplayeditor.c:554 -#, fuzzy msgid "Configure selected filter" msgstr "ਚੁਣੇ ਫਿਲਟਰ ਦੀ ਸੰਰਚਨਾ" @@ -10018,71 +9447,71 @@ #: app/widgets/gimpcontrollereditor.c:550 msgid "Select Controller Event Action" -msgstr "" +msgstr "ਕੰਟਰੋਲਰ ਘਟਨਾ ਕਾਰਵਾਈ ਚੁਣੋ" #: app/widgets/gimpcontrollerkeyboard.c:69 msgid "Key Up (Shift + Control + Alt)" -msgstr "" +msgstr "ਸਵਿੱਚ ਉਪਰ (Shift + Control + Alt)" #: app/widgets/gimpcontrollerkeyboard.c:72 msgid "Key Up (Control + Alt)" -msgstr "" +msgstr "ਸਵਿੱਚ ਉਪਰ (Control + Alt)" #: app/widgets/gimpcontrollerkeyboard.c:75 msgid "Key Up (Shift + Alt)" -msgstr "" +msgstr "ਸਵਿੱਚ ਉਪਰ (Shift + Alt)" #: app/widgets/gimpcontrollerkeyboard.c:78 msgid "Key Up (Shift + Control)" -msgstr "" +msgstr "ਸਵਿੱਚ ਉਪਰ (Shift + Control)" #: app/widgets/gimpcontrollerkeyboard.c:81 msgid "Key Up (Alt)" -msgstr "" +msgstr "ਸਵਿੱਚ ਉਪਰ (Alt)" #: app/widgets/gimpcontrollerkeyboard.c:84 msgid "Key Up (Control)" -msgstr "" +msgstr "ਸਵਿੱਚ ਉਪਰ (Control)" #: app/widgets/gimpcontrollerkeyboard.c:87 msgid "Key Up (Shift)" -msgstr "" +msgstr "ਸਵਿੱਚ ਉਪਰ (Shift)" #: app/widgets/gimpcontrollerkeyboard.c:90 msgid "Key Up" -msgstr "" +msgstr "ਸਵਿੱਚ ਉਪਰ" #: app/widgets/gimpcontrollerkeyboard.c:94 msgid "Key Down (Shift + Control + Alt)" -msgstr "" +msgstr "ਸਵਿੱਚ ਦਬਾਉ (Shift + Control + Alt)" #: app/widgets/gimpcontrollerkeyboard.c:97 msgid "Key Down (Control + Alt)" -msgstr "" +msgstr "ਸਵਿੱਚ ਦਬਾਉ (Control + Alt)" #: app/widgets/gimpcontrollerkeyboard.c:100 msgid "Key Down (Shift + Alt)" -msgstr "" +msgstr "ਸਵਿੱਚ ਦਬਾਉ (Shift + Alt)" #: app/widgets/gimpcontrollerkeyboard.c:103 msgid "Key Down (Shift + Control)" -msgstr "" +msgstr "ਸਵਿੱਚ ਦਬਾਉ (Shift + Control)" #: app/widgets/gimpcontrollerkeyboard.c:106 msgid "Key Down (Alt)" -msgstr "" +msgstr "ਸਵਿੱਚ ਦਬਾਉ (Alt)" #: app/widgets/gimpcontrollerkeyboard.c:109 msgid "Key Down (Control)" -msgstr "" +msgstr "ਸਵਿੱਚ ਦਬਾਉ (Control)" #: app/widgets/gimpcontrollerkeyboard.c:112 msgid "Key Down (Shift)" -msgstr "" +msgstr "ਸਵਿੱਚ ਦਬਾਉ (Shift)" #: app/widgets/gimpcontrollerkeyboard.c:115 msgid "Key Down" -msgstr "ਹੇਠ ਸਵਿੱਚ" +msgstr "ਸਵਿੱਚ ਦਬਾਉ" #: app/widgets/gimpcontrollerkeyboard.c:119 msgid "Key Left (Shift + Control + Alt)" @@ -10153,152 +9582,149 @@ msgstr "ਕੀ-ਬੋਰਡ" #: app/widgets/gimpcontrollerkeyboard.c:230 -#, fuzzy msgid "Keyboard Events" -msgstr "ਕੀ-ਬੋਰਡ" +msgstr "ਕੀ-ਬੋਰਡ ਘਟਨਾ" #: app/widgets/gimpcontrollerkeyboard.c:231 #: app/widgets/gimpcontrollerwheel.c:230 -#, fuzzy msgid "Ready" -msgstr "ਲਾਲ" +msgstr "ਤਿਆਰ" #: app/widgets/gimpcontrollerwheel.c:68 msgid "Scroll Up (Shift + Control + Alt)" -msgstr "" +msgstr "ਸਕਰੋਲ ਉੱਪਰ (Shift + Control + Alt)" #: app/widgets/gimpcontrollerwheel.c:71 msgid "Scroll Up (Control + Alt)" -msgstr "" +msgstr "ਸਕਰੋਲ ਉੱਪਰ (Control + Alt)" #: app/widgets/gimpcontrollerwheel.c:74 msgid "Scroll Up (Shift + Alt)" -msgstr "" +msgstr "ਸਕਰੋਲ ਉੱਪਰ (Shift + Alt)" #: app/widgets/gimpcontrollerwheel.c:77 msgid "Scroll Up (Shift + Control)" -msgstr "" +msgstr "ਸਕਰੋਲ ਉੱਪਰ (Shift + Control)" #: app/widgets/gimpcontrollerwheel.c:80 msgid "Scroll Up (Alt)" -msgstr "" +msgstr "ਸਕਰੋਲ ਉੱਪਰ (Alt)" #: app/widgets/gimpcontrollerwheel.c:83 msgid "Scroll Up (Control)" -msgstr "" +msgstr "ਸਕਰੋਲ ਉੱਪਰ (Control)" #: app/widgets/gimpcontrollerwheel.c:86 msgid "Scroll Up (Shift)" -msgstr "" +msgstr "ਸਕਰੋਲ ਉੱਪਰ (Shift)" #: app/widgets/gimpcontrollerwheel.c:89 msgid "Scroll Up" -msgstr "" +msgstr "ਸਕਰੋਲ ਉੱਪਰ" #: app/widgets/gimpcontrollerwheel.c:93 msgid "Scroll Down (Shift + Control + Alt)" -msgstr "" +msgstr "ਸਕਰੋਲ ਹੇਠਾਂ (Shift + Control + Alt)" #: app/widgets/gimpcontrollerwheel.c:96 msgid "Scroll Down (Control + Alt)" -msgstr "" +msgstr "ਸਕਰੋਲ ਹੇਠਾਂ (Control + Alt)" #: app/widgets/gimpcontrollerwheel.c:99 msgid "Scroll Down (Shift + Alt)" -msgstr "" +msgstr "ਸਕਰੋਲ ਹੇਠਾਂ (Shift + Alt)" #: app/widgets/gimpcontrollerwheel.c:102 msgid "Scroll Down (Shift + Control)" -msgstr "" +msgstr "ਸਕਰੋਲ ਹੇਠਾਂ (Shift + Control)" #: app/widgets/gimpcontrollerwheel.c:105 msgid "Scroll Down (Alt)" -msgstr "" +msgstr "ਸਕਰੋਲ ਹੇਠਾਂ (Alt)" #: app/widgets/gimpcontrollerwheel.c:108 msgid "Scroll Down (Control)" -msgstr "" +msgstr "ਸਕਰੋਲ ਹੇਠਾਂ (Control)" #: app/widgets/gimpcontrollerwheel.c:111 msgid "Scroll Down (Shift)" -msgstr "" +msgstr "ਸਕਰੋਲ ਹੇਠਾਂ (Shift)" #: app/widgets/gimpcontrollerwheel.c:114 msgid "Scroll Down" -msgstr "" +msgstr "ਸਕਰੋਲ ਹੇਠਾਂ" #: app/widgets/gimpcontrollerwheel.c:118 msgid "Scroll Left (Shift + Control + Alt)" -msgstr "" +msgstr "ਸਕਰੋਲ ਖੱਬੇ (Shift + Control + Alt)" #: app/widgets/gimpcontrollerwheel.c:121 msgid "Scroll Left (Control + Alt)" -msgstr "" +msgstr "ਸਕਰੋਲ ਖੱਬੇ (Control + Alt)" #: app/widgets/gimpcontrollerwheel.c:124 msgid "Scroll Left (Shift + Alt)" -msgstr "" +msgstr "ਸਕਰੋਲ ਖੱਬੇ (Shift + Alt)" #: app/widgets/gimpcontrollerwheel.c:127 msgid "Scroll Left (Shift + Control)" -msgstr "" +msgstr "ਸਕਰੋਲ ਖੱਬੇ (Shift + Control)" #: app/widgets/gimpcontrollerwheel.c:130 msgid "Scroll Left (Alt)" -msgstr "" +msgstr "ਸਕਰੋਲ ਖੱਬੇ (Alt)" #: app/widgets/gimpcontrollerwheel.c:133 msgid "Scroll Left (Control)" -msgstr "" +msgstr "ਸਕਰੋਲ ਖੱਬੇ (Control)" #: app/widgets/gimpcontrollerwheel.c:136 msgid "Scroll Left (Shift)" -msgstr "" +msgstr "ਸਕਰੋਲ ਖੱਬੇ (Shift)" #: app/widgets/gimpcontrollerwheel.c:139 msgid "Scroll Left" -msgstr "" +msgstr "ਸਕਰੋਲ ਖੱਬੇ" #: app/widgets/gimpcontrollerwheel.c:143 msgid "Scroll Right (Shift + Control + Alt)" -msgstr "" +msgstr "ਸਕਰੋਲ ਸੱਜੇ (Shift + Control + Alt)" #: app/widgets/gimpcontrollerwheel.c:146 msgid "Scroll Right (Control + Alt)" -msgstr "" +msgstr "ਸਕਰੋਲ ਸੱਜੇ (Control + Alt)" #: app/widgets/gimpcontrollerwheel.c:149 msgid "Scroll Right (Shift + Alt)" -msgstr "" +msgstr "ਸਕਰੋਲ ਸੱਜੇ (Shift + Alt)" #: app/widgets/gimpcontrollerwheel.c:152 msgid "Scroll Right (Shift + Control)" -msgstr "" +msgstr "ਸਕਰੋਲ ਸੱਜੇ (Shift + Control)" #: app/widgets/gimpcontrollerwheel.c:155 msgid "Scroll Right (Alt)" -msgstr "" +msgstr "ਸਕਰੋਲ ਸੱਜੇ (Alt)" #: app/widgets/gimpcontrollerwheel.c:158 msgid "Scroll Right (Control)" -msgstr "" +msgstr "ਸਕਰੋਲ ਸੱਜੇ (Control)" #: app/widgets/gimpcontrollerwheel.c:161 msgid "Scroll Right (Shift)" -msgstr "" +msgstr "ਸਕਰੋਲ ਸੱਜੇ (Shift)" #: app/widgets/gimpcontrollerwheel.c:164 msgid "Scroll Right" -msgstr "ਸੱਜਾ ਸਕਰੋਲ" +msgstr "ਸਕਰੋਲ ਸੱਜੇ" #: app/widgets/gimpcontrollerwheel.c:206 msgid "Mouse Wheel" msgstr "ਮਾਊਸ ਪਹੀਆ" #: app/widgets/gimpcontrollerwheel.c:229 -#, fuzzy msgid "Mouse Wheel Events" -msgstr "ਮਾਊਸ ਪਹੀਆ" +msgstr "ਮਾਊਸ ਪਹੀਆ ਘਟਨਾ" #: app/widgets/gimpdataeditor.c:205 msgid "Save" @@ -10323,14 +9749,12 @@ msgstr "ਪਿੱਠਭੂਮੀ: %d, %d, %d" #: app/widgets/gimpdock.c:348 app/widgets/gimpdock.c:359 -#, fuzzy msgid "Close all tabs?" -msgstr "ਟੈਬ ਬੰਦ ਕਰੋ(_C)" +msgstr "ਕੀ ਸਭ ਟੈਬ ਬੰਦ ਕਰਨੀਆਂ ਹਨ?" #: app/widgets/gimpdock.c:354 -#, fuzzy msgid "Close all Tabs" -msgstr "ਟੈਬ ਬੰਦ ਕਰੋ(_C)" +msgstr "ਸਭ ਟੈਬਾਂ ਬੰਦ" #: app/widgets/gimpdock.c:361 #, c-format @@ -10357,9 +9781,8 @@ msgstr "ਕਈ ਗਲਤੀਆਂ ਲੱਭੀਆਂ ਹਨ!" #: app/widgets/gimperrordialog.c:230 -#, fuzzy msgid "Messages are redirected to stderr." -msgstr "ਸੁਨੇਹਾ ਇੱਕ ਵਾਰ ਮੁਡ਼ ਵੇਖਾਉ" +msgstr "ਸੁਨੇਹਿਆਂ ਨੂੰ stderr ਲਈ ਭੇਜਿਆ ਗਿਆ।" #: app/widgets/gimpfiledialog.c:304 msgid "Automatically Detected" @@ -10398,7 +9821,7 @@ #: app/widgets/gimpgradienteditor.c:622 #, c-format msgid "Displaying [%0.6f, %0.6f]" -msgstr "ਦਿੱਖ ਰਿਹਾ ਹੈ[%0.6f, %0.6f]" +msgstr "[%0.6f, %0.6f] ਦਿੱਖ ਰਿਹਾ ਹੈ" #: app/widgets/gimpgradienteditor.c:814 #, c-format @@ -10416,9 +9839,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) ਧੁੰਦਲਾਪਨ: %0.3f" +msgstr "ਤੀਬਰਤਾ: %0.3f ਧੁੰਦਲਾਪਨ: %0.3f" #: app/widgets/gimpgradienteditor.c:854 app/widgets/gimpgradienteditor.c:889 #, c-format @@ -10512,8 +9935,7 @@ msgstr "ਜੈਮਪ ਸਹਾਇਤਾ ਝਲਕਾਰਾ ਲੱਭਿਆ ਨਹੀ ਜਾ ਸਕਿਆ ਹੈ।" #: app/widgets/gimphelp.c:189 -msgid "" -"The GIMP help browser plug-in appears to be missing from your installation." +msgid "The GIMP help browser plug-in appears to be missing from your installation." msgstr "" #: app/widgets/gimphelp.c:213 @@ -10521,9 +9943,8 @@ msgstr "ਸਹਾਇਤਾ ਝਲਕਾਰਾ ਚਾਲੂ ਨਹੀਂ ਕੀਤਾ ਜਾ ਸਕਿਆ" #: app/widgets/gimphelp.c:214 -#, fuzzy msgid "Could not start the GIMP help browser plug-in." -msgstr "ਜੈਮਪ ਸਹਾਇਤਾ ਝਲਕਾਰੇ ਨੂੰ ਸ਼ੁਰੂ ਨਹੀ ਕੀਤਾ ਜਾ ਸਕਦਾ ਹੈ।" +msgstr "ਜੈਮਪ ਸਹਾਇਤਾ ਝਲਕਾਰਾ ਪਲੱਗਿੰਨ ਨੂੰ ਸ਼ੁਰੂ ਨਹੀ ਕੀਤਾ ਜਾ ਸਕਦਾ ਹੈ।" #: app/widgets/gimphelp.c:240 msgid "Use _web browser instead" @@ -10558,10 +9979,8 @@ msgstr "ਸਵੈ" #: app/widgets/gimpimagedock.c:214 -msgid "" -"When enabled the dialog automatically follows the image you are working on." -msgstr "" -"ਜੇਕਰ ਯੋਗ ਕਰ ਦਿੱਤਾ ਗਿਆ ਹੈ ਤਾਂ ਤਖਤੀ ਸਵੈ ਹੀ ਚਿੱਤਰ ਜਿਸ ਤੇ ਤੁਸੀ ਕੰਮ ਕਰ ਰਹੇ ਹੋ ਦੇ ਨਾਲ ਚਲੇਗਾ।" +msgid "When enabled the dialog automatically follows the image you are working on." +msgstr "ਜੇਕਰ ਯੋਗ ਕਰ ਦਿੱਤਾ ਗਿਆ ਹੈ ਤਾਂ ਤਖਤੀ ਸਵੈ ਹੀ ਚਿੱਤਰ ਜਿਸ ਤੇ ਤੁਸੀ ਕੰਮ ਕਰ ਰਹੇ ਹੋ ਦੇ ਨਾਲ ਚਲੇਗਾ।" #: app/widgets/gimpitemtreeview.c:996 msgid "Set Item Exclusive Visible" @@ -10605,7 +10024,7 @@ msgid "This text input field is limited to %d characters." msgstr "ਇਹ ਪਾਠ ਇੰਪੁੱਟ ਖੇਤਰ %d ਅੱਖਰਾਂ ਲਈ ਰਾਖਵਾਂ ਹੈ।" -#: app/widgets/gimpselectiondata.c:317 +#: app/widgets/gimpselectiondata.c:319 #, c-format msgid "" "The filename '%s' couldn't be converted to a valid URI:\n" @@ -10616,7 +10035,7 @@ "\n" "%s" -#: app/widgets/gimpselectiondata.c:321 +#: app/widgets/gimpselectiondata.c:323 msgid "Invalid UTF-8" msgstr "ਗਲਤ ਯੂਟੀਐਫ-8" @@ -10785,7 +10204,7 @@ #: app/widgets/gimpuimanager.c:495 msgid "Your GIMP installation is incomplete:" -msgstr "" +msgstr "ਤੁਹਾਡੀ ਜੈਮਪ ਇੰਸਟਾਲੇਸ਼ਨ ਮੁਕੰਮਲ ਨਹੀਂ:" #: app/widgets/gimpuimanager.c:497 msgid "Plase make sure the menu XML files are correctly installed." @@ -11067,14 +10486,3 @@ msgid "Image Editor" msgstr "ਚਿੱਤਰ ਸੰਪਾਦਕ" -#~ msgid "Keep aspect ratio" -#~ msgstr "ਨਿਸ਼ਚਿਤ ਅਕਾਰ ਅਨੁਪਾਤ" - -#~ msgid "Y:" -#~ msgstr "Y:" - -#~ msgid "Transformations do not work on layers that contain layer masks." -#~ msgstr "ਤਬਦੀਲੀ ਉਹਨਾਂ ਪਰਤਾਂ ਤੇ ਕੰਮ ਨਹੀ ਕਰਦੀ ਹੈ, ਜੋ ਕਿ ਪਰਤ-ਮਖੌਟਾ ਵਰਤਦੇ ਹਨ।" - -#~ msgid "Main Keyboard" -#~ msgstr "ਮੁੱਖ ਕੀਬੋਰਡ" diff -uraN gimp-2.2.4/po/sk.gmo gimp-2.2.5/po/sk.gmo --- gimp-2.2.4/po/sk.gmo 2005-01-22 17:33:17.000000000 +0100 +++ gimp-2.2.5/po/sk.gmo 2005-03-21 11:23:33.000000000 +0100 @@ -1,232 +1,248 @@ -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 - - +] 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    +     +     +  - - - - - -. - / 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{ Ī Ѫߪ - - " 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! +/ +: +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 .:;-Vs?<8SuGɺhszEq4M7A,UnLĽ8BJ8Aƾ;;D  +   + ǿ ׿ + + %/#8\|7 +  +2 =GPY h v  + +    M^:5 $V{&8Gfy 7Ph+8+Ick'='U} +  # - +> +ITdtj65,b{ +1<Xt   ? +;J@   'EX _'k  ++DU^ ftA7 4@ HTd m! , + +  ;E X f t2 $3 <FpV  !&AW`Nr?QLS;n,K!x4 O3@.t*) +%. 7CWv$2'Mu.*  ;Vi{  #6EIbKMLF?6, +"7Z&y8*( sI@,,+<X?($5 GQl + 0@^w:  +3N1W +   + +(3Cw!5Pj. + +&19  (--Ky''!3K#d +1!636.j+++)5G}-2<o1 ?H*b+ + +5K[n ;%.=N gt  +/I bp /%<Rq6,;Kau #& Bcz  +2 +&6> GTk +  !/CR/ZQR0/ ` lz  +!-?Q`u?(=fz#, BO^nv )?!Y{##>Ngw1 3@Ww:&$'!I"i- + 2(4]bu*, !8Z&xM^ +iox#  '08J< !2Ibz +,)4HR?5=DOF<<U5J OXKsJhVT +z_  +2I \hx'A[m~ %!-Om&&& / @L^p   , ? R e }    +  + + + +' +2 +G +Y +a + h +Sv + + + +        +  + L [  j t |         ( = ,L y  213 |H M}Y 1BJ[s00GEMVfz%#I]a1{-  % 8 E S ]go x"& *?_G +   L+/Q[8  ' 5?U +ep v jA<6QZn",2Ka.pZ, ;HQa t   ! ++6O Vbt}#@"^ lNoP ( !@  b !l       !&!'?!)g!5!1!3! -"N"8m" """2" ##26#i#~# ######$$ 0$=$P$m$$$$$$$%%>%X%'v%!%%%%%&8&'V&!~&& &&&& '$('M'l')' (((("( +))$)6)J)[)9b))))) ))**).*)X****** +#+7+ >+L+i+++[+,<,E,_,o,v,,,%, ,,,,--(4-)]--- - - --..,.G.X.o.......//1/7/@/\/ +b/ m/y/~/// ///00 ,0'M0u0$00000/121;1D1U1e1t1111#1#12<2N2_2r222$22&2#3:3A3H3O3W3,o3333334 44*4B4I4]4n444444455+5?5Y5k55$5$556 +66 +676#I6m6t6 +|6 666666 7 7737 C7 Q7$^7777 7 7 7$7 8 8#*8N8 ]8 j8Dx88(89%"9(H99q999 9 999 : :4: D:Q:Bg:A:":;%;5;>; E; S; `;m;;;;; :<H<`<g<o<x<<< <<< = &=G=!f==== => > +> 8>E> X>f>l> >h>.>!?1)?[?0d????$?!@5"@X@`@h@ o@}@@@@@@ @@@AA$A8ASA cApAA+A#AAAB B"B)2B)\BBBBB0BCC %C2C9CLC^C mCzC CCCC CC C)CD"D6D TDbDvDD DDD DDDGDF9EEEEE*E* F8F7F0GAGCQGH +HH H H&HI3I +LIWIlIIII I IIIIJJJ JJJ J$J%K:K LKZKsKK KKKKK K K!KL.LDLdLuLL"L LLLLLM'M>MNMgMMMMMMM$M#"NFN LNXN-rN*N+N+N!#OEO UOGbOiOFPI[PJP P+P>(QgQQQ Q +QQ%Q&QR)R;RKR [R#iR#R"RPR%S9SLSjSSSSSSTT6TUTgT<T,TTUU+'USUpUUUUUU UU VV2VNVbVuVVVVV*VW7W&VW1}W!W-WWX(XAXZXrXXX*X4X$Y7Y JYXYiYYBY#YYZZ%ZPl +Ql!\l~lll&l$l&m):m*dmmmmmmn!n9nQnjn1y +yyzz z$z"L(o':$ :S'f)ԭ'I.(x  +Ȯ "4.F,u1¯M2Bcuٰn.8BgZXg^]ƴy$zru~GGgFuleez:ü ̼ڼ/AϽѽؽ1*=?(Sy|lic.  +  *4Le z +3  # ; GQj +  +8;JZx  + *-BK[ +v  '#K` s + 6J^m! +   ? K W dn-D&W ~  '  .;CK\l o | !    +   +" * 4>F]m $ +F Xd +t  +! )3F0f  & 5C T bo   +4 <FWpw ~    #(1DWi#~ + "13 e +r}%K?;9{$ + + &@9X,'?Yaiy    6 J X +dou~   +    %*Ia u MFds %%$$Dilo w5"[|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 ... ] @@ -258,20 +274,20 @@ (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 -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: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 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: +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: Origin X:Origin Y:Original Width:Other (%s) ...OutlineOutput LevelsOverlayPDB calling error for procedure '%s': @@ -281,14 +297,14 @@ 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: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 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.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: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.Really 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: +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 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: @@ -311,7 +327,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: @@ -320,17 +336,15 @@ 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 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 +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: 2005-01-22 17:32+0100 -PO-Revision-Date: 2004-11-27 10:27Stedn Evropa (bn as) -Last-Translator: Zdenko Podobný -Language-Team: Slovak <> +POT-Creation-Date: 2005-03-20 20:30+0100 +PO-Revision-Date: 2005-03-20 20:52+0100 +Last-Translator: Marcel Telka +Language-Team: Slovak MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 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); Neplatná možnosť "%s" @@ -363,20 +377,20 @@ (Nepomenovaný buffer)(Nepomenovaná šablóna)(Mení sa)(čisté)(neplatný UTF-8 reťazec)(zmenené)(Žiadna)1 vrstva1 vrstva15 stupňov %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ácia...4:1 (400%)8:1 (800%)<%s><><Žiadny modul>Pre optimálny výkon GIMPu musia byť niektoré nastavenia upravené.GIMP - GNU Program na manipuláciu s obrázkami Copyright (C) 1995-2004 Spencer Kimball, Peter Mattis a GIMP vývojársky tím.Nebolo možné analyzovať súbor s tipmi pre GIMP!Zdá sa, že váš súbor s GIMP tipmi chýba!Súbor s názvom '%s' už existuje.Prid_ať do výberu_UholO programe GIMPAkciaAktivovať obrázok vo f_ókuseAktívne filtreAdaptívne prevzorkovaniePridaťPridať alfa _kanálPridať alfa kanálPridať ukotveniePridať kanálPridať farbu do farebnej mapyPridať vodítko: Pridať vodítkaPridať vodorovné vodítkoPr_idať masku vrstve...Pridať vrstvyPridať masku vrstvyPridať cestuPridať vykresleniePridanie textovej vrstvyPridať zvislé vodítkoPridanie masky do vrstvyPridať farbu z pozadiaPridať farbu z poprediaPridať masku vrstvyPridanie textu do obrázkaPridať aktuálnu farbu do histórie fariebPridať označené filtre do zoznamu aktívnych filtrov.Pridať do palety %sPridať k aktuálnemu výberuPridanie témy '%s' (%s) -SúčetĎalšie vstupné regulátoryÚprava jasu a kontrastuÚprava farebného vyváženiaÚprava kriviek farbyÚprava úrovní fariebÚprava jasu a kontrastuÚprava farebného vyváženiaÚprava kriviek farbyÚprava úrovní fariebÚprava odtieňa / svetlosti / sýtostiÚprava odtieňa a sýtostiAutomaticky upraviť úrovneZarovnaniePokročilé nastaveniaOvplyvniť:Ovplyvnená oblasť %sRozprašovačRozprašovač s premenlivým tlakomAl_fa do výberuZarovnanýZarovnanieVšetky kanályVšetky súboryVšetky súbory (*.*)Nie všetky obrázky a údaje pre funkciu Vrátiť späť sa zmestia do Vyrovnávacej pamäte dlaždíc a musia byť uložené do odkladacieho súboru. Tento súbor je umiestnený na lokálnom súborovom systéme s dostatočným priestorom (niekoľko MB). V systémoch UNIX budete na toto chcieť asi použiť systémový temp-adresár ("/tmp" alebo "/var/tmp").Povolí, aby úplne priesvitné oblasti boli vyplnenéPovolí, aby úplne priesvitné oblasti boli zvolenéPovoliť zväčšenie %sAlfaAlfa do výberuAlfa:Obrázok zvolenej veľkosti bude používať viac pamäti, než je nastavené ako "Maximálna veľkosť obrázkov" v dialógu Nastavenia (momentálne %s).An_imáciaUkotviť plávajúci výberUkotviť plávajúcu vrstvuUkotviť plávajúci výberUhol:Anti guma %sVyhladzovanieVzhľadPoužiť masku vrstvyPoužiť _masku vrstvyPoužiť prahPoužiť masku vrstvySte si istý, že chcete odstrániť '%s' zo zoznamu a z disku?Skutočne chcete zmazať šablónu '%s' zo zoznamu a disku?_Podľa nastaveníPožiadať o potvrdenie pred zatvorením obrázka bez uloženia.Pomer strán:Pomer strán:Pripojiť parazitaPripojiť parazita k obrázkuPripojiť parazita k položkePripojiť parazitaAutor:AutomatickyAutomaticky nasleduj aktívny _obrázokAutomatické zmenšenieAutomatické zmenšenie výberuAuto-zmena veľkosti oknaAutomaticky načítaťAuto-detekciaDostupné filtreDostupné typy:Vyplnenie farbou pozadia_Jas-Kontrast...B_ufferyPozadieFarba pozadiaFarba pozadia nastavená na:Pozadie: %d, %d, %dDozadu (korigované)Základom vyplnená oblasť na všetkých viditeľných vrstváchZákladný výber vo všetkých viditeľných vrstváchPod kresbouŠikmáBilineárnyČierna a bielaČierna:Farby ko_ncových bodov prechoduPrecho_dPrechodKr_ytie koncových bodov prechoduPrechod: Prechod: nefunguje pre indexované obrázky.Prechod...ModráModrá:RozostrenieRozostrenie alebo zaostrenie_Obvod...Ohraničiť kanálOkraj výberuVybrať okrajJas-KontrastJas-kontrast nefunguje na indexovaných vrstvách.ŠtetecEditor štetcovPriečinky štetcaRozhranie štetcovŠtetec:ŠtetcePonuka ŠtetcePlechovkaBufferyPonuka BufferyStmaviťUseknutáPodľa príponyNávratom k obrázku uloženému na disku stratíte všetky zmeny vrátane informácií o spätných úpravách.CMYKK_alibrovať...Farebná p_ipetaS_tĺpce:K_ombináciaKalibrovať rozlíšenie monitoraNie je možné vrátiť %sVeľkosť plát_na...ZrušiťZrušiť vodítkoNie je možné pridať masku iných rozmerov, než má špecifikovaná vrstva.Nie je možné pridať masku vrstvy do vrstvy bez alfa kanálu.Nie je možné pridať masku vrstvy k vrstve, ktorá nie je súčasťou obrázka.Nie je možné ukotviť túto vrstvu, pretože to nie je plávajúci výber.Nie je možné konvertovať paletu s viac než 256 farbami.Nie je možné vytvoriť novú vrstvu z plávajúceho výberu, pretože patrí do masky výberu alebo kanála.Nie je možné vytvoriť priečinok '%s': %sNie je možné vytvoriť náhľadNie je možné orezať, pretože výber je prázdny.Nie je možné expandovať ${%s}Nie je možné vytvoriť plávajúci výber, lebo zvolená oblasť je prázdna.Nie je možné vrstvu bez alfy presunúť vyššie.Nie je možné ukladať. Nič nie je zvolené.Nie je možné obkresliť prázdny kanál.Nie je možné obkresliť prázdnu cestu.Veľkosť plátnaRežim vy_plnenia plátna:Stred X:CentrovanéZmena farby pozadiaZmeniť položku farebnej mapyZmena farby poprediaPremiestnenie kanáluZmena jednotky obrázkaUmeniť veľkosť tlačeZmeniť aktuálnu vrstvu alebo cestuZmena farby pozadia mriežkyZmena farby popredia mriežkyZmeniť indexovanú paletuZmena perspektívy vrstvy alebo výberuZmena klávesovej skraty.KanálAtribúty kanálaNázov kanálu:Kanál už nie je možné umiestniť nižšie.Kanál nie je možné umiestniť vyššie.Farba kanáluKanál je už celkom dole.Kanál je už celkom hore._Kanál do výberuKanál do výberuKanál do výberuKanál:KanályPonuka KanályVeľko_sť šachovnice:Vyberte štýl obkresleniaKruhVym_azaťVymazaťVyčistiť kanálVrátiť späť históriuZmazať celý textVymazať chybyVrátiť späť históriu...Kliknite na "Pokračovať" na akceptáciu vyššie uvedených nastavení.Kliknite na "Pokračovať" na vytvorenie vášho osobného GIMP priečinku.Kliknite na "Pokračovať" na vstup do používateľskej inštalácií GIMPu.Kliknite na "Pokračovať" na pokračovanie používateľskej inštalácií.Kliknutím spojíte toto ukotvenie s vybraným koncovým bodom.Kliknutím vytvoríte nové ukotvenie (skúste SHIFT).Kliknutím vytvoríte nový komponent cesty.Kliknutím vytvoríte novú cestu.Kliknutím vytvoríte náhľadKliknutím odstránite toto ukotvenie.Kliknutím vložíte ukotvenie na cestu (skúste SHIFT).Kliknutím zmeníte tento uzol na uhlový.Kliknutím otvoríte cestu.Kliknutím vyberte cestu na upravovanie.Kliknite pre aktualizáciu náhľadu -%s a klinutie vynúti aktualizáciu aj v prípade, že zobrazenie je aktuálneKliknutím a ťahaním zmeníte tvar krivky (SHIFT: symetricky).Kliknutím a ťahaním presuniete ukotvenie.Kliknutím a ťahaním presuniete ukotvenia.Kliknutím a ťahaním presuniete komponent (skúste SHIFT).Kliknutím a ťahaním presuniete riadiaci bod (skúste SHIFT).Kliknutím a ťahaním presuniete cestu.Kliknutie: výberKliknutie: výber Ťahanie: posunOrezať výsledokSchránkaPripnúť k spodnej vrstvyPripnúť k obrázkuKlonovanieZavrieť %sZatvoriť tútokartuKo_pírovať cestuFa_rbyFarbaFarebné vyváženieFiltre farebného zobrazeniaFarebná pipetaInformácie o farebnej pipeteFare_bné vyváženie...Rozptyl _farieb:Vyváženie farieb funguje iba na vrstvách s RGB farbami.Vymazanie farbyFarebný index:Farba:_Map fariebFarebný prie_stor:_Ofarbiť..._Typ vyfarbenia pre segment_Typ vyfarbenia pre výberOfarbiťOfarbenie funguje iba s vrstvami vo farbách RGB.Ofarbiť obrázokOfarbiť obrázokMap fariebEditor farebnej mapyPonuka mapy fariebStĺpce:Kome_ntár:KomentárKon_trast:Zmena _ostrostiNastavenie filtrov farebného zobrazeniaNastavenie roz_šírených vstupných zariadení...Nastaviť m_riežku...Nastaviť mriežkuNastaviť mriežku obrázkaNastaviť klávesové skratkyNastaviť _klávesové skratky...Nastaviť zvolený filterNastaviť zvolený filter: %sPotvrdiť rozmery obrázkaPotvrdiť zmenu veľkostiPotvrdiť editovanie textuPot_vrdiť uzatvorenie neuložených obrázkovKonflikt klávesovej skratkyKužeľový (nesymetrický)Kužeľový (symetrický)Spojiť obkresleniaObmedzeniaObmedzeniaKontextKurzory závisiace na kontexte sú super. Implicitne sú povolené. Vyžadujú však réžiu, bez ktorej sa možno budete chcieť obísť.PokračovaťPrispeliKonverziaKonverzia hranyKonvertovať obrázok do odtieňov šediKonvertovať obrázok do indexovaných fariebKonvertovať obrázok do indexovaných fariebKonvertovať obrázok do RGBKonvertovať obrázokKonvertovanie na index (štádium 2)...Konvertovanie na index (štádium 3)...Konverzia na index...Zmena ostrostiTyp zaostrenia %sKopírovať pomenovanéKopírovanie súboru '%s' z '%s'...Copyright:Porušený segment %d v súbore s prechodom '%s'.Nie je možné vytvoriť '%s': %sNie je možné vytvoriť dočasný súbor pre '%s': %sNie je zmazať '%s': %sNie je možné nájsť Prehliadač Pomocníka GIMP.Nie je možné otvoriť '%s' pre čítanie: %sNie je možné otvoriť '%s' pre zápis: %sNie je možné otvoriť miniatúru '%s': %sNie je možné čítať %d bytov z '%s': %sNie je možné hľadať v XCF súbore: %sNie je možné spustiť prehliadač pomocníka GIMPu.Počet:_Orezať vrstvu_Vytvoriť nový dokVytvoriť novú šablónuVytvoriť nový obrázokVytvoriť novú vrstvuVytvoriť novú šablónuVytvoriť nové zobrazenie pre tento obrázokVytvoriť nový obrázok podľa zvolenej šablónyVytvoriť novú šablónuVytváranie a úprava obrázkov alebo fotografiíVytvoriť a upraviť cestyVytvoriť cestu z textuVytvoriť výber z cestyVytváranie náhľadu...Vytváranie priečinka '%s'...OrezanieOrezanie a zmena rozmerovInformácie o orezávaní a zmene rozmerovOrezanie obrázkaOrezať vrstvuOrezať obrázokOrezanie obrázka alebo zmena jeho rozmerovOrezanie: Iba nitkový kríž_VystrihnúťVys_trihnúť pomenované...Kubická (najlepšia)Aktuálny _stavAktuálna výška:Len aktuálna vrstvaAktuálny stavAktuálna šírka:KurzorReži_m kurzora:Vykresľova_nie kurzora:Typ krivky:KrivkyKrivky nemôžu byť upravované v indexovaných vrstvách.VlastnéVlastná farbaVlastný prechodVlastná f_arba výplne:VystrihnúťVystrihnúť pomenovanéAzúrováAzúrová:D_uplikovať štetecD_uplikovať kanálD_uplikovať prechodD_uplikovať vrstvuD_uplikovať paletuD_uplikovať cestuD_uplikovať vzorkuD_uplikovať šablónu...Farba tmavej šachovniceLen stmavenieČiarka bodka bodka...Čiarka bodka...Vzorka čiarkovania:Prednastavenie čiarkovania:ČiarkovanáDátum:LadiťŠtandardný vzhľad v celoobrazovkovom režimeŠtandardný vzhľad v bežno režimeŠtandardná mriežkaŠtandardná mriežka obrázkaŠtandardná _interpolácia:Štandardná veľkosť náhľadu na _vrstvy a kanály:Štandar_dná prah:Zmazať ukotvenieZmazať ukotveniaOdstrániť mas_ku vrstvyZmazať masku vrstvyZmazať objektZmazať segmentOdstrániť šablónuOdstrániť štetecOdstrániť kanálOdstrániť farbuOdstrániť prechodZmazať vrstvuZmazať masku vrstvyOdstrániť paletuZmazať cestuZmazať vzorkuOdstrániť uložené nastavenia...Odstrániť zvolený bufferOdstrániť označenú šablónuZmazať tento obrázokZmazať vektoryZmazanie "%s" sa nepodarilo: %sHusté bodkyOdfarbenieOdfarbenie pracuje iba s vrstvami vo farbách RGB.PopisNávrhStav zariadeniaZariadeniaDialógyPonuka DialógyDiamantRozdielyPriama farbaZakázať masku vrstvyZakázať Rýchlu maskuZrušiť textové informácieZobrazenieZobraziť navigáciuZobraziť _filtre...Zobraziť procedúryTyp zobrazenia:Zobrazenie [%0.6f, %0.6f]RozpustenieVzdialenosť:Vzdialenosť: %0.6fRozptyľovanieDelenieVytvoriť no_vú používateľskú inštaláciuSkutočne chcete anulovať všetky nastavenia nástrojov na štandardné hodnoty?Skutočne chcete vynulovať všetky nastavenia nástrojov na štandardné hodnoty?Chcete ho nahradiť obrázkom, ktorý ukladáte?_NeukladaťDokovateľnýHistór_ia dokumentovHistória dokumentovDokumentyPonuka DokumentyZosv_etlenie-StmavenieZosvetliťŤahy zosvetlenia alebo stmaveniaZosvetliť/StmaviťDvojito čiarkovanáŤahať ukotvenieŤahať ukotveniaŤahať krivkuŤahať riadiaci bodPretiahnuť cestuŤahanie: posunKreslenie peromKresbaRežim kresleniaProcedúry kresleniaPustiť novú vrstvuPustiť novú cestuKvôli nedostupnosti písem textové funkcie nie sú dostupné.Vypisovať udalosti z tohoto regulátoraDuplikovať štetecDuplikovať kanálDuplikovať prechodDuplikovať vrstvuDuplikovať paletuDuplikovať cestuDuplikovať vzorkuDuplikovať novú šablónuEEK: nie je možné vrátiť späťE_xportovať cestu...E_xtra maléChovanie hrán_Detekcia hránÚpravyÚpravy vlastností kanáluUpraviť farebný kanálUpraviť položku farby paletyUpraviť položku farebnej mapyÚpravy vlastností vrstvyUpraviť masku vrstvyRežim úpravUpraviť farby paletyÚpravy vlastností cestyUpraviť atribúty rýchlej maskyUpraviť farbu rýchlej maskyUpraviť šablónuUpraviť štetec...Úpravy vlastností kanáluUpraviť farbuUpraviť položku farebnej mapy #%dUpraviť prechod...Úpravy vlastností vrstvyUpraviť paletuUpraviť atribúty cestyUpraviť vzorkuÚpravy procedúrUpraviť označenú šablónuEliptický výberPrázdny kanálPrázdna vrstvaPrázdna cestaPrázdna textová vrstvaPrázdny názov premennej v súbore prostredia %s_VylepšeniePovoliť Rýchlu maskuPovoliť rozp_tyl priesvitnostiPovoliť tento regulátorPovolí zobrazenie užitočných rád pri spustení GIMPu.Povolí zobrazenie popisov nástrojov.EnormnáZadajte názov pre zlúčenú paletuVložte názov pre uložené nastaveniaVložte názov pre tento bufferVložte názov pre túto šablónuVložte názov pre tieto uložené nastaveniaVložiť umiestnenie (URI):ProstrediePriečinky prostrediaVyrovnaťEkvalizácia nefunguje na indexovaných vrstvách.Odfarbiť do pozadia alebo priesvitnostiGumaKo_nzola s chybamiKonzola s chybamiPonuka Konzola s chybamiChyba pri ukladaní súbora: %sChyba počas analýzy '%s' v riadku %d: %sChyba počas čítania '%s': %sChyba pri čítaní súboru štetca '%s': %sChyba počas zapisovania '%s': %sChyba pri zapisovaní XCF: %sChyba pri zapisovaní súboru '%s': +SúčetĎalšie vstupné regulátoryÚprava jasu a kontrastuÚprava farebného vyváženiaÚprava kriviek farbyÚprava úrovní fariebÚprava jasu a kontrastuÚprava farebného vyváženiaÚprava kriviek farbyÚprava úrovní fariebÚprava odtieňa / svetlosti / sýtostiÚprava odtieňa a sýtostiAutomaticky upraviť úrovneZarovnaniePokročilé nastaveniaOvplyvniť:Ovplyvnená oblasť %sRozprašovačRozprašovač s premenlivým tlakomAl_fa do výberuZarovnanýZarovnanieVšetky kanályVšetky súboryVšetky súbory (*.*)Nie všetky obrázky a údaje pre funkciu Vrátiť späť sa zmestia do Vyrovnávacej pamäte dlaždíc a musia byť uložené do odkladacieho súboru. Tento súbor je umiestnený na lokálnom súborovom systéme s dostatočným priestorom (niekoľko MB). V systémoch UNIX budete na toto chcieť asi použiť systémový temp-adresár ("/tmp" alebo "/var/tmp").Povolí, aby úplne priesvitné oblasti boli vyplnenéPovolí, aby úplne priesvitné oblasti boli zvolenéPovoliť zväčšenie %sAlfaAlfa do výberuAlfa:Obrázok zvolenej veľkosti bude používať viac pamäti, než je nastavené ako "Maximálna veľkosť obrázkov" v dialógu Nastavenia (momentálne %s).An_imáciaUkotviť plávajúci výberUkotviť plávajúcu vrstvuUkotviť plávajúci výberUhol:Anti guma %sVyhladzovanieVzhľadPoužiť masku vrstvyPoužiť _masku vrstvyPoužiť prahPoužiť masku vrstvySte si istý, že chcete odstrániť '%s' zo zoznamu a z disku?Skutočne chcete zmazať šablónu '%s' zo zoznamu a disku?_Podľa nastaveníPožiadať o potvrdenie pred zatvorením obrázka bez uloženia.Pomer strán:Pomer strán:Pripojiť parazitaPripojiť parazita k obrázkuPripojiť parazita k položkePripojiť parazitaAutor:AutomatickyAutomaticky nasleduj aktívny _obrázokAutomatické zmenšenieAutomatické zmenšenie výberuAuto-zmena veľkosti oknaAutomaticky načítaťAuto-detekciaDostupné filtreDostupné typy:Vyplnenie farbou pozadia_Jas-Kontrast...B_ufferyPozadieFarba pozadiaFarba pozadia nastavená na:Pozadie: %d, %d, %dDozadu (korigované)Základom vyplnená oblasť na všetkých viditeľných vrstváchZákladný výber vo všetkých viditeľných vrstváchPod kresbouŠikmáBilineárnyČierna a bielaČierna:Farby ko_ncových bodov prechoduPrecho_dPrechodKr_ytie koncových bodov prechoduPrechod: Prechod: nefunguje pre indexované obrázky.Prechod...ModráModrá:RozostrenieRozostrenie alebo zaostrenie_Obvod...Ohraničiť kanálOkraj výberuVybrať okrajJas-KontrastJas-kontrast nefunguje na indexovaných vrstvách.ŠtetecEditor štetcovPriečinky štetcaRozhranie štetcovŠtetec:ŠtetcePonuka ŠtetcePlechovkaBufferyPonuka BufferyStmaviťUseknutáPodľa príponyNávratom k obrázku uloženému na disku stratíte všetky zmeny vrátane informácií o spätných úpravách.CMYKK_alibrovať...Farebná p_ipetaS_tĺpce:K_ombináciaKalibrovať rozlíšenie monitoraNie je možné vrátiť %sVeľkosť plát_na...ZrušiťZrušiť vodítkoNie je možné pridať masku iných rozmerov, než má špecifikovaná vrstva.Nie je možné pridať masku vrstvy do vrstvy bez alfa kanálu.Nie je možné pridať masku vrstvy k vrstve, ktorá nie je súčasťou obrázka.Nie je možné ukotviť túto vrstvu, pretože to nie je plávajúci výber.Nie je možné konvertovať paletu s viac než 256 farbami.Nie je možné vytvoriť novú vrstvu z plávajúceho výberu, pretože patrí do masky výberu alebo kanála.Nie je možné vytvoriť priečinok '%s': %sNie je možné vytvoriť náhľadNie je možné orezať, pretože výber je prázdny.Nie je možné expandovať ${%s}Nie je možné vytvoriť plávajúci výber, lebo zvolená oblasť je prázdna.Nie je možné vrstvu bez alfy presunúť vyššie.Nie je možné ukladať. Nič nie je zvolené.Nie je možné obkresliť prázdny kanál.Nie je možné obkresliť prázdnu cestu.Veľkosť plátnaRežim vy_plnenia plátna:Stred X:Stred Y:CentrovanéZmena farby pozadiaZmeniť položku farebnej mapyZmena farby poprediaPremiestnenie kanáluZmena jednotky obrázkaUmeniť veľkosť tlačeZmeniť aktuálnu vrstvu alebo cestuZmena farby pozadia mriežkyZmena farby popredia mriežkyZmeniť indexovanú paletuZmena perspektívy vrstvy alebo výberuZmena klávesovej skraty.KanálAtribúty kanálaNázov kanálu:Kanál už nie je možné umiestniť nižšie.Kanál nie je možné umiestniť vyššie.Farba kanáluKanál je už celkom dole.Kanál je už celkom hore._Kanál do výberuKanál do výberuKanál do výberuKanál:KanályPonuka KanályVeľko_sť šachovnice:Vyberte štýl obkresleniaKruhVym_azaťVymazaťVyčistiť kanálVrátiť späť históriuZmazať celý textVymazať chybyVrátiť späť históriu...Kliknite na "Pokračovať" na akceptáciu vyššie uvedených nastavení.Kliknite na "Pokračovať" na vytvorenie vášho osobného GIMP priečinku.Kliknite na "Pokračovať" na vstup do používateľskej inštalácií GIMPu.Kliknite na "Pokračovať" na pokračovanie používateľskej inštalácií.Kliknutím spojíte toto ukotvenie s vybraným koncovým bodom.Kliknutím vytvoríte nové ukotvenie (skúste SHIFT).Kliknutím vytvoríte nový komponent cesty.Kliknutím vytvoríte novú cestu.Kliknutím vytvoríte náhľadKliknutím odstránite toto ukotvenie.Kliknutím vložíte ukotvenie na cestu (skúste SHIFT).Kliknutím zmeníte tento uzol na uhlový.Kliknutím otvoríte cestu.Kliknutím vyberte cestu na upravovanie.Kliknite pre aktualizáciu náhľadu +%s a klinutie vynúti aktualizáciu aj v prípade, že zobrazenie je aktuálneKliknutím a ťahaním zmeníte tvar krivky (SHIFT: symetricky).Kliknutím a ťahaním presuniete ukotvenie.Kliknutím a ťahaním presuniete ukotvenia.Kliknutím a ťahaním presuniete komponent (skúste SHIFT).Kliknutím a ťahaním presuniete riadiaci bod (skúste SHIFT).Kliknutím a ťahaním presuniete cestu.Kliknutie: výberKliknutie: výber Ťahanie: posunOrezať výsledokSchránkaPripnúť k spodnej vrstvyPripnúť k obrázkuKlonovanieZavrieť %sZatvoriť všetky kartyZatvoriť všetky karty?Zatvoriť tútokartuKo_pírovať cestuFa_rbyFarbaFarebné vyváženieFiltre farebného zobrazeniaFarebná pipetaInformácie o farebnej pipeteFare_bné vyváženie...Rozptyl _farieb:Vyváženie farieb funguje iba na vrstvách s RGB farbami.Vymazanie farbyFarebný index:Farba:_Map fariebFarebný prie_stor:_Ofarbiť..._Typ vyfarbenia pre segment_Typ vyfarbenia pre výberOfarbiťOfarbenie funguje iba s vrstvami vo farbách RGB.Ofarbiť obrázokOfarbiť obrázokMap fariebEditor farebnej mapyPonuka mapy fariebStĺpce:Kome_ntár:KomentárKon_trast:Zmena _ostrostiNastavenie filtrov farebného zobrazeniaNastavenie roz_šírených vstupných zariadení...Nastaviť m_riežku...Nastaviť mriežkuNastaviť mriežku obrázkaNastaviť klávesové skratkyNastaviť _klávesové skratky...Nastaviť zvolený filterNastaviť zvolený filter: %sPotvrdiť rozmery obrázkaPotvrdiť zmenu veľkostiPotvrdiť editovanie textuPot_vrdiť uzatvorenie neuložených obrázkovKonflikt klávesovej skratkyKužeľový (nesymetrický)Kužeľový (symetrický)Spojiť obkresleniaObmedzeniaObmedzeniaKontextKurzory závisiace na kontexte sú super. Implicitne sú povolené. Vyžadujú však réžiu, bez ktorej sa možno budete chcieť obísť.PokračovaťPrispeliKonverziaKonverzia hranyKonvertovať obrázok do odtieňov šediKonvertovať obrázok do indexovaných fariebKonvertovať obrázok do indexovaných fariebKonvertovať obrázok do RGBKonvertovať obrázokKonvertovanie na index (štádium 2)...Konvertovanie na index (štádium 3)...Konverzia na index...Zmena ostrostiTyp zaostrenia %sKopírovať pomenovanéKopírovať _viditeľnéKopírovanie súboru '%s' z '%s'...Copyright:Porušený segment %d v súbore s prechodom '%s'.Nie je možné vytvoriť '%s': %sNie je možné vytvoriť dočasný súbor pre '%s': %sNie je zmazať '%s': %sNie je možné nájsť Prehliadač Pomocníka GIMP.Nie je možné otvoriť '%s' pre čítanie: %sNie je možné otvoriť '%s' pre zápis: %sNie je možné otvoriť miniatúru '%s': %sNie je možné čítať %d bytov z '%s': %sNie je možné hľadať v XCF súbore: %sNie je možné spustiť prehliadač pomocníka GIMPu.Počet:_Orezať vrstvu_Vytvoriť nový dokVytvoriť novú šablónuVytvoriť nový obrázokVytvoriť novú vrstvuVytvoriť novú šablónuVytvoriť nové zobrazenie pre tento obrázokVytvoriť nový obrázok podľa zvolenej šablónyVytvoriť novú šablónuVytváranie a úprava obrázkov alebo fotografiíVytvoriť a upraviť cestyVytvoriť cestu z textuVytvoriť výber z cestyVytváranie náhľadu...Vytváranie priečinka '%s'...OrezanieOrezanie a zmena rozmerovInformácie o orezávaní a zmene rozmerovOrezanie obrázkaOrezať vrstvuOrezať obrázokOrezanie obrázka alebo zmena jeho rozmerovOrezanie: Iba nitkový kríž_VystrihnúťVys_trihnúť pomenované...Kubická (najlepšia)Aktuálny _stavAktuálna výška:Len aktuálna vrstvaAktuálny stavAktuálna šírka:KurzorReži_m kurzora:Vykresľova_nie kurzora:Typ krivky:KrivkyKrivky nemôžu byť upravované v indexovaných vrstvách.VlastnéVlastná farbaVlastný prechodVlastná f_arba výplne:VystrihnúťVystrihnúť pomenovanéAzúrováAzúrová:D_uplikovať štetecD_uplikovať kanálD_uplikovať prechodD_uplikovať vrstvuD_uplikovať paletuD_uplikovať cestuD_uplikovať vzorkuD_uplikovať šablónu...Farba tmavej šachovniceLen stmavenieČiarka bodka bodka...Čiarka bodka...Vzorka čiarkovania:Prednastavenie čiarkovania:ČiarkovanáDátum:LadiťŠtandardný vzhľad v celoobrazovkovom režimeŠtandardný vzhľad v bežno režimeŠtandardná mriežkaŠtandardná mriežka obrázkaŠtandardná _interpolácia:Štandardná veľkosť náhľadu na _vrstvy a kanály:Štandar_dná prah:Zmazať ukotvenieZmazať ukotveniaOdstrániť mas_ku vrstvyZmazať masku vrstvyZmazať objektZmazať segmentOdstrániť šablónuOdstrániť štetecOdstrániť kanálOdstrániť farbuOdstrániť prechodZmazať vrstvuZmazať masku vrstvyOdstrániť paletuZmazať cestuZmazať vzorkuOdstrániť uložené nastavenia...Odstrániť zvolený bufferOdstrániť označenú šablónuZmazať tento obrázokZmazať vektoryZmazanie "%s" sa nepodarilo: %sHusté bodkyOdfarbenieOdfarbenie pracuje iba s vrstvami vo farbách RGB.PopisNávrhStav zariadeniaZariadeniaDialógyPonuka DialógyDiamantRozdielyPriama farbaZakázať masku vrstvyZakázať Rýchlu maskuZrušiť textové informácieZobrazenieZobraziť navigáciuZobraziť _filtre...Zobraziť procedúryTyp zobrazenia:Zobrazenie [%0.6f, %0.6f]RozpustenieVzdialenosť:Vzdialenosť: %0.6fRozptyľovanieDelenieVytvoriť no_vú používateľskú inštaláciuSkutočne chcete anulovať všetky nastavenia nástrojov na štandardné hodnoty?Skutočne chcete vynulovať všetky nastavenia nástrojov na štandardné hodnoty?Chcete ho nahradiť obrázkom, ktorý ukladáte?_NeukladaťDokovateľnýHistór_ia dokumentovHistória dokumentovDokumentyPonuka DokumentyZosv_etlenie-StmavenieZosvetliťŤahy zosvetlenia alebo stmaveniaZosvetliť/StmaviťDvojito čiarkovanáŤahať ukotvenieŤahať ukotveniaŤahať krivkuŤahať riadiaci bodPretiahnuť cestuŤahanie: posunKreslenie peromKresbaRežim kresleniaProcedúry kresleniaPustiť novú vrstvuPustiť novú cestuKvôli nedostupnosti písem textové funkcie nie sú dostupné.Vypisovať udalosti z tohoto regulátoraDuplikovať štetecDuplikovať kanálDuplikovať prechodDuplikovať vrstvuDuplikovať paletuDuplikovať cestuDuplikovať vzorkuDuplikovať novú šablónuEEK: nie je možné vrátiť späťE_xportovať cestu...E_xtra maléChovanie hrán_Detekcia hránÚpravyÚpravy vlastností kanáluUpraviť farebný kanálUpraviť položku farby paletyUpraviť položku farebnej mapyÚpravy vlastností vrstvyUpraviť masku vrstvyRežim úpravUpraviť farby paletyÚpravy vlastností cestyUpraviť atribúty rýchlej maskyUpraviť farbu rýchlej maskyUpraviť šablónuUpraviť štetec...Úpravy vlastností kanáluUpraviť farbuUpraviť položku farebnej mapy #%dUpraviť prechod...Úpravy vlastností vrstvyUpraviť paletuUpraviť atribúty cestyUpraviť vzorkuÚpravy procedúrUpraviť označenú šablónuEliptický výberPrázdny kanálPrázdna vrstvaPrázdna cestaPrázdna textová vrstvaPrázdny názov premennej v súbore prostredia %s_VylepšeniePovoliť Rýchlu maskuPovoliť rozp_tyl priesvitnostiPovoliť tento regulátorPovolí zobrazenie užitočných rád pri spustení GIMPu.Povolí zobrazenie popisov nástrojov.EnormnáZadajte názov pre zlúčenú paletuVložte názov pre uložené nastaveniaVložte názov pre tento bufferVložte názov pre túto šablónuVložte názov pre tieto uložené nastaveniaVložiť umiestnenie (URI):ProstrediePriečinky prostrediaVyrovnaťEkvalizácia nefunguje na indexovaných vrstvách.Odfarbiť do pozadia alebo priesvitnostiGumaKo_nzola s chybamiKonzola s chybamiPonuka Konzola s chybamiChyba pri ukladaní súbora: %sChyba počas analýzy '%s' v riadku %d: %sChyba počas čítania '%s': %sChyba pri čítaní súboru štetca '%s': %sChyba počas zapisovania '%s': %sChyba pri zapisovaní XCF: %sChyba pri zapisovaní súboru '%s': %sChyba pri analýze: '%s': %sChyba pri zapisovaní do súboru pre %s': %s Žiadny súbor nebol vytvorený.Chyba počas zapisovania do dočasného súboru pre '%s': %s -Pôvodný súbor nebol dotknutý.ChybyUdalosťEx_tra veľkéZväčšiť podľa potrebyExportovať cestu do SVGExportovať cesty z tohoto obrázkaExportovať aktívnu cestuExpozícia:Rozšírené vstupné zariadeniaPríponyVyplnenie farbou poprediaPopredie do pozadia (HVS v smere hodinových ručičiek)Popredie do pozadia (HVS proti smeru hodinových ručičiek)Popredie do pozadia (HSV)Popredie do pozadia (RGB)Popredie do priesvitnaPozadie do priesvitnapopredie/pozadieFarba popredia/pozadiaUvoľniť pláv. výberuDrsnosť pláv. výberuPláv. výber do vrstvyPr_ispôsobiť plátno vrstvámZoslabenieNepodarilo sa importovať prechod z '%s': %sNepodarilo sa načítať cestu z '%s': %sFarebnýZávažná chyba v súbore štetca '%s': Súbor sa zdá byť skrátený.Závažná chyba v súbore štetca '%s': Súbor je poškodený.Závažná chyba v súbore štetca '%s': Nie je GIMP štetec.Závažná chyba v súbore štetca '%s': Neznámy tvar GIMP štetca.Závažná chyba v súbore štetca '%s': Neznáma verzia GIMP štetca.Závažná chyba v súbore štetca '%s': Neznáma hĺbka %d.Závažná chyba v súbore štetca '%s': Neznáma verzia %d.Závažná chyba v súbore štetca '%s': Nepodporovaná hĺbka štetca %d -GIMP štetce musia byť v Odtieňoch šedej alebo RGBA.Fatálna chyba spracovania v súbore prechodu '%s': Súbor je poškodený.Fatálna chyba spracovania v súbore prechodu '%s': Súbor nie je GIMP prechod.Fatálna chyba spracovania súbora palety '%s': Chýba kúzelná hlavička.Fatálna chyba spracovania súbora palety '%s': Chýba kúzelná hlavička. +Pôvodný súbor nebol dotknutý.ChybyUdalosťEx_tra veľkéZväčšiť podľa potrebyExportovať cestu do SVGExportovať cesty z tohoto obrázkaExportovať aktívnu cestuExpozícia:Rozšírené vstupné zariadeniaPríponyVyplnenie farbou poprediaPopredie do pozadia (HVS v smere hodinových ručičiek)Popredie do pozadia (HVS proti smeru hodinových ručičiek)Popredie do pozadia (HSV)Popredie do pozadia (RGB)Popredie do priesvitnaPozadie do priesvitnapopredie/pozadieFarba popredia/pozadiaUvoľniť pláv. výberuDrsnosť pláv. výberuPláv. výber do vrstvyPr_ispôsobiť plátno vrstvámZoslabenieNepodarilo sa importovať prechod z '%s': %sNepodarilo sa načítať cestu z '%s': %sFarebnýZávažná chyba v súbore štetca '%s': Bajtov = 0.Závažná chyba v súbore štetca '%s': Súbor sa zdá byť skrátený.Závažná chyba v súbore štetca '%s': Súbor je poškodený.Závažná chyba v súbore štetca '%s': Výška = 0.Závažná chyba v súbore štetca '%s': Nie je GIMP štetec.Závažná chyba v súbore štetca '%s': Neznámy tvar GIMP štetca.Závažná chyba v súbore štetca '%s': Neznáma verzia GIMP štetca.Závažná chyba v súbore štetca '%s': Neznáma hĺbka %d.Závažná chyba v súbore štetca '%s': Neznáma verzia %d.Závažná chyba v súbore štetca '%s': Nepodporovaná hĺbka štetca %d +GIMP štetce musia byť v Odtieňoch šedej alebo RGBA.Závažná chyba v súbore štetca '%s': Šírka = 0.Fatálna chyba spracovania v súbore prechodu '%s': Súbor je poškodený.Fatálna chyba spracovania v súbore prechodu '%s': Súbor nie je GIMP prechod.Fatálna chyba spracovania súbora palety '%s': Chýba kúzelná hlavička.Fatálna chyba spracovania súbora palety '%s': Chýba kúzelná hlavička. Nepotrebuje tento súbor prevod z DOSu?Fatálna chyba spracovania súbora palety '%s': Chyba čítania riadku %d.Fatálna chyba pri analýze súboru vzorky '%s': Nie je možné čítať %d bajtov: %sFatálna chyba pri analýze súboru vzorky '%s': Neznáma verzia formátu vzorky %d.Fatálna chyba pri analýze súboru vzorky '%s': Nepodporovaná hĺbka vzorky %d. GIMP vzorky musia byť ŠEDÉ alebo RGB.Za_oblenie...Zaobliť kanálZaoblený výberZaoblenie hránZaobliť výber oSúbor_Dialóg pre otvoreniePráca so súbormiTyp súboruSúbor existujeSúbor je skrátenýVyplniť kanálKrytie vyplňovania:Typ vyplnenia %sVyplniť podobné farbyVyplniť priesvitné oblastiVyplniť celý výberVyplnenie farbou pozadiaVyplnenie farbou po_zadiaVyplnenie farbou poprediaVyplniť vzo_rkouVyplniť vzorkouVyplniť s priesvitnosťouVyplniť bielouVyplnenie _farbou poprediaVyplnenie far_bou pozadiaVyplnenie farebným prechodomVyplnenie farbou alebo vzorkouVyplnenéFilt_reKonečná zlúčená vrstva bude:Hľadanie spojitých oblastíHľadanie podobných fariebPrispôsobiť zobrazenie obrázka oknuPrispôsobiť zobrazenie obrázka oknuPrispôsobiť zobrazenie obrázka oknuPrispôsobiť oknuPevný pomerFixná veľkosťDo jednej vrstvyPreklopeniePreklopiť kanálPreklopiť vrstvuPreklopiť cestuPreklopiť textovú vrstvuTyp preklopenia %sPreklopiť v_odorovnePreklopiť z_vislePreklopiť obrázokPreklopenie vrstvy alebo výberuPreklopenie...Preklápanie...Plávajúci výberPlávajúci výberPlávajúca vrstvaPlávajúci výber (%s)Plávajúci výber do vrstvyPlávajúci výber do vrstvyPlávajúce výberyFloyd-Steinbergov (normálny)Floyd-Steinbergov (znížený odber farieb)FókusPriečinokPriečinkyPriečinky s písmomRozhranie písma:Písmo:PísmaPonuka PísmaAby bola inštaláciu GIMPu správna, musí byť vytvorený priečinok '%s'.Vnútenie auto-hintingPopredieFarby popredia a pozadia. Čierny a biely štvorec obnovujú pôvodné farby. Šípky navzájom zamenia farby. Dvojité kliknutie otvorí dialóg výberu farby.Farba poprediaFarba popredia nastavená na:Popredie: %d, %d, %dDopredu (tradičné)Z _cestyVoľný výberVoľný výberVoľná rukaZ _témyOd _správcu okien (aktuálne %d × %d dpi)Zľava dopravaSprava doľavaZ výberuZ témyPri_bližný výberNa c_elú obrazovkuPribližný výberGIMPRozšírenie programu GIMPGIMP správaLadenie výkonu GIMPuZásuvný modul programu GIMPSpustenie GIMPuGIMP textový editorGIMP: tip dňaPoužívateľská inštalácia programu GIMPGIMP XCF obrázokGIMP nemohol inicializovať grafické používateľské rozhranie. 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 %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': +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 prechodovSúbor prechodu '%s' je poškodený: Segmenty nepokrývajú rozsah 0-1.PrechodPrechodyPonuka 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 %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ávesnicaUdalosti klávesniceKlá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šiUdalosti kolieska 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: Začiatok X:Začiatok Y:Pôvodná šírka:Iné (%s) ...ObrysVýstupné úrovnePrekrytieChyba volania PDB pre procedúru '%s':: @@ -386,14 +400,14 @@ VložiťVlož_iť buffer doVložiť buffer ako _nový_Vložiť cestuVlož_iť doVložiť ako _novýVložiť zvolený bufferVložiť zvolený buffer ako nový obrázokVložiť zvolený buffer do výberuVložená vrstvaCestyAtribúty cestyNázov cesty:Nás_troj cestaCestu nie je možné umiestniť nižšie.Cestu nie je možné umiestniť vyššie.Cesta je už celkom dole.Cesta je už celkom hore._Cesta do výberuCesta do výberuCesta do výberu %s Pridať %s Ubrať -%s PrienikCesta do výberuCestyPonuka CestyVzorkaPriečinky vzoriekRozhranie vzoriekVzorka výplneZdroj vzorkyVzorkyPonuka Vzorky_CeruzkaCeruzkaPercento šírky štetcaPercento:Osobný GIMP priečinokPerspektívaInformácia o transformácii perspektívyPerspektíva...Režim zbierania %sVyberte vrstvu alebo vodítkoVyberte cestuVyberte čierny bodVyberie farbu z obrázkaVyberte šedý bodIba vybraťVyberte biely bodVeľkosti v pixeloch:Hodnoty bodovBodovBodov:Čakajte prosím, pokiaľ sa vytvára váš osobný GIMP priečinok...Čakajte prosím...Zásuvný modulProstredie zásuvných modulovPriečinky zásuvných modulovZásuvný modul nemôže otvoriť obrázokZásuvný modul nemôže otvoriť obrázokModul spadol: "%s" +%s PrienikCesta do výberuCestyPonuka CestyVzorkaPriečinky vzoriekRozhranie vzoriekVzorka výplneZdroj vzorkyVzorkyPonuka Vzorky_CeruzkaCeruzkaPercento šírky štetcaPercento:Osobný GIMP priečinokPerspektívaInformácia o transformácii perspektívyPerspektíva...Režim zbierania %sVyberte vrstvu alebo vodítkoVyberte cestuVyberte čierny bodVyberie farbu z obrázkaVyberte šedý bodIba vybraťVyberte biely bodVeľkosti v pixeloch:Hodnoty bodovBodovBodov:Prosím, uistite sa, že sú XML súbory menu správne nainštalované.Čakajte prosím, pokiaľ sa vytvára váš osobný GIMP priečinok...Čakajte prosím...Zásuvný modulProstredie zásuvných modulovPriečinky zásuvných modulovZásuvný modul nemôže otvoriť obrázokZásuvný modul nemôže otvoriť obrázokModul spadol: "%s" (%s) Ukončujúci zásuvný modul mohol narušiť vnútorný stav GIMPu. Mali by ste uložiť svoje obrázky a reštartovať GIMP, aby ste opäť dosiahli bezpečný stav.Zásuvný modul ohlásil ÚSPECH, ale neposlal obrázokZásuvné modulyZásuvný modulZásuvné moduly a rozšírenia sú externé programy s doplňujúcimi funkciami, spúšťané programom GIMP. Tieto programy sú vyhľadávané počas behu a informácie o ich funkcii a režimoch sú uložené do tohoto súboru. Tento súbor je navrhnutý výhradne pre použitie programom GIMP a nemal by byť editovaný.MnohouholníkyNa výškuPozícia: %0.6fUmiestnenýPosterizáciaPosterizácia (Redukcia počtu farieb)_Úrovne posterizácie:Posterizácia nefunguje na indexovaných vrstvách.NastaveniaZachovať svet_losťCitlivosť na tlakTlak:NáhľadNáhľad je starýNáhľad:NáhľadyVeľkosť tlače:Veľkosť tlače:Problémy pri spracovaní parazita textu pre vrstvu '%s': %s Niektoré vlastnosti textu sú možno nesprávne. Pokiaľ nechcete upravovať vrstvu textu, nemusíte sa tým zaoberať.Procedurálna databázaProcedúry databázyPriebehPseudo farbaÚčel:KvalitaPožiadavkaPožiadavka na nový zásuvný modulPožiadavka zásuvného modulu: '%s' -Rýchle čítanieRýchla maskaAtribúty rýchlej maskyPonuka Rýchla maskaRýchle ukladanieRýchla maskaUkončiť GIMPRGBRGB (%0.3f, %0.3f, %0.3f)RGB (%d, %d, %d)RGB farbaRGB-prázdnyRGBA (%0.3f, %0.3f, %0.3f, %0.3f)Sprava doľava_Znovu zobraziť "%s"Vymazať na_stavenia nástrojovO_bnoviť kanálO_bnoviť farbuO_bnoviť rozsahFarba pravého koncového bod_u...RadiálnyPolomer:Zvýšiť kanálPresunúť kanál na vrcholPresunúť kanál na _vrcholZvýšiť vrstvuUmiestniť vrstvu horeZvýšiť cestuPresunúť cestu na vrchPresunúť ces_tu navrchZvýšiť kanálPresunúť kanál na vrcholZvýšiť vrstvuUmiestniť vrstvu horeZvýšiť cestuPresunúť cestu navrchZvýšiť zobrazenie tohoto obrázkaZvýšiť okno, ak je už otvorenéMieraFrekvencia:Znovu zobraziť poslednýOpäť vy_centrovať riadiace body vo výbereOpäť vy_centrovať stredný bod segmentuOpäť rozložiť riadiace _body v segmenteOpäť _rozložiť riadiace body vo výberePreme_novať uložené nastaveniaO_pakovať "%s"V_rátiť...Čítanie súboru s paletou '%s': Chýba ZELENÝ komponent v riadku %d.Čítanie súboru s paletou '%s': Neplatný počet stĺpcov v riadku %d. Používam štandardnú hodnotu.Čítanie súboru s paletou '%s': Chýba MODRÝ komponent v riadku %d.Čítanie súboru s paletou '%s': Chýba ČERVENÝ komponent v riadku %d.Čítanie súboru s paletou '%s': RGB hodnota v riadku %d je mimo rozsahu.Skutočne vymazať históriu krokov späť?Zmena priradenia skratky spôsobí, že bude odobraná z "%s".Znovu vytvoriť náh_ľadZnovu vytvoriť náhľadObdĺžnikový výberČervenáČervená:ZnovuZredukovať obrázok na počet fariebZredukovať na dve farby pomocou prahuObnoviť štetceObnoviť prechodyObnoviť paletyObnoviť vzorkyRegistrovanýZnovu načítanie akt_uálnej témyZnova n_ačítať všetky náhľadyZnova načítať všetky náhľadyZapamätať si aktuálny nástroj, vzorku, farbu a štetec medzi sedeniami GIMP.Vzdialený obrázokOdstrániť kanálOdstrá_niť visiace položkyOdstrániť plávajúci výberOdstrániť vodítkoOdstrániť vrstvuOdstrániť parazita z obrázkaOdstrániť parazita z položkyOdstrániť cestu_Odstrániť položkuOdstrániť visiace položkyOdstrániť plávajúci výberOdpojiť parazitaOdstrániť zvolenú položkuOdstrániť označené filtre zo zoznamu aktívnych filtrov.Odstránenie klávesových skratiek zlyhalo.Premenovať kanálPremenovať vrstvuPremenovať cestuPremenovať uložené nastavenia nástrojovPremenovanie textovej vrstvyPremenovať položkuGenerovať vykresleniePreradiť kanálPreradiť vrstvuPreradiť cestuOpakovať poslednýOpakovanie:Nahradiť aktuálny výberReplikovaťReplikovať segment prechoduReplikovať výber prechoduReplikovať segmentReplikovať výberPremiestniť kanálaPremiestnenie vrstvyPremiestnenie vektorovAktualizovať zoznam písmaVymazať nastavenia nástrojovVym_azať všetky nastavenia nástrojov...Prenastaviť všetky FlorePrenastaviť všetky filtre...Vymazať všetky nastavenia nástrojovNastaviť zvolený filter na štandardné hodnotyNastaviť na štandardné hodnotyVynulovať poradie a viditeľnosť nástrojovZmena rozmerovZmeniť veľkosť kanálaZmena veľkosti obrázkaZmeniť veľkosti vrstvyZmeniť veľkosť cestyZmena veľkosti textovej vrstvyZmena veľkosti obrázkaZmena veľkosti položkaMeniť veľkosť okna podľa _zväčšeniaZmeniť veľkosť okna pri zmene _veľkosti obrázkaZmena veľkosti...Zmena rozlíšeniaRozlíšenie:Spotreba zdrojovKonfigurácia zdrojovObnoviť nastavenia z...Obnoví uložené klávesové skratky pri každom spustení GIMPu.Obmedziť úpravy na mnohouholníkyOpačneNávratNávrat '%s' na '%s'?Vrátiť sa k obrázkuVrátenie zlyhalo. S týmto obrázkom nie je asociovaný žiadny názov súboru.Návrat k '%s' sa zlyhal: +Rýchle čítanieRýchla maskaAtribúty rýchlej maskyPonuka Rýchla maskaRýchle ukladanieRýchla maskaUkončiť GIMPRGBRGB (%0.3f, %0.3f, %0.3f)RGB (%d, %d, %d)RGB farbaRGB-prázdnyRGBA (%0.3f, %0.3f, %0.3f, %0.3f)Sprava doľava_Znovu zobraziť "%s"Vymazať na_stavenia nástrojovO_bnoviť kanálO_bnoviť farbuO_bnoviť rozsahFarba pravého koncového bod_u...RadiálnyPolomer:Zvýšiť kanálPresunúť kanál na vrcholPresunúť kanál na _vrcholZvýšiť vrstvuUmiestniť vrstvu horeZvýšiť cestuPresunúť cestu na vrchPresunúť ces_tu navrchZvýšiť kanálPresunúť kanál na vrcholZvýšiť vrstvuUmiestniť vrstvu horeZvýšiť cestuPresunúť cestu navrchZvýšiť zobrazenie tohoto obrázkaZvýšiť okno, ak je už otvorenéMieraFrekvencia:Znovu zobraziť poslednýOpäť vy_centrovať riadiace body vo výbereOpäť vy_centrovať stredný bod segmentuOpäť rozložiť riadiace _body v segmenteOpäť _rozložiť riadiace body vo výberePreme_novať uložené nastaveniaO_pakovať "%s"V_rátiť...Čítanie súboru s paletou '%s': Chýba ZELENÝ komponent v riadku %d.Čítanie súboru s paletou '%s': Neplatný počet stĺpcov v riadku %d. Používam štandardnú hodnotu.Čítanie súboru s paletou '%s': Chýba MODRÝ komponent v riadku %d.Čítanie súboru s paletou '%s': Chýba ČERVENÝ komponent v riadku %d.Čítanie súboru s paletou '%s': RGB hodnota v riadku %d je mimo rozsahu.PripravenýSkutočne vymazať históriu krokov späť?Zmena priradenia skratky spôsobí, že bude odobraná z "%s".Znovu vytvoriť náh_ľadZnovu vytvoriť náhľadObdĺžnikový výberČervenáČervená:ZnovuZredukovať obrázok na počet fariebZredukovať na dve farby pomocou prahuObnoviť štetceObnoviť prechodyObnoviť paletyObnoviť vzorkyRegistrovanýZnovu načítanie akt_uálnej témyZnova n_ačítať všetky náhľadyZnova načítať všetky náhľadyZapamätať si aktuálny nástroj, vzorku, farbu a štetec medzi sedeniami GIMP.Vzdialený obrázokOdstrániť kanálOdstrá_niť visiace položkyOdstrániť plávajúci výberOdstrániť vodítkoOdstrániť vrstvuOdstrániť parazita z obrázkaOdstrániť parazita z položkyOdstrániť cestu_Odstrániť položkuOdstrániť visiace položkyOdstrániť plávajúci výberOdpojiť parazitaOdstrániť zvolenú položkuOdstrániť označené filtre zo zoznamu aktívnych filtrov.Odstránenie klávesových skratiek zlyhalo.Premenovať kanálPremenovať vrstvuPremenovať cestuPremenovať uložené nastavenia nástrojovPremenovanie textovej vrstvyPremenovať položkuGenerovať vykresleniePreradiť kanálPreradiť vrstvuPreradiť cestuOpakovať poslednýOpakovanie:Nahradiť aktuálny výberReplikovaťReplikovať segment prechoduReplikovať výber prechoduReplikovať segmentReplikovať výberPremiestniť kanálaPremiestnenie vrstvyPremiestnenie vektorovAktualizovať zoznam písmaVymazať nastavenia nástrojovVym_azať všetky nastavenia nástrojov...Prenastaviť všetky FlorePrenastaviť všetky filtre...Vymazať všetky nastavenia nástrojovNastaviť zvolený filter na štandardné hodnotyNastaviť na štandardné hodnotyVynulovať poradie a viditeľnosť nástrojovZmena rozmerovZmeniť veľkosť kanálaZmena veľkosti obrázkaZmeniť veľkosti vrstvyZmeniť veľkosť cestyZmena veľkosti textovej vrstvyZmena veľkosti obrázkaZmena veľkosti položkaMeniť veľkosť okna podľa _zväčšeniaZmeniť veľkosť okna pri zmene _veľkosti obrázkaZmena veľkosti...Zmena rozlíšeniaRozlíšenie:Spotreba zdrojovKonfigurácia zdrojovObnoviť nastavenia z...Obnoví uložené klávesové skratky pri každom spustení GIMPu.Obmedziť úpravy na mnohouholníkyOpačneNávratNávrat '%s' na '%s'?Vrátiť sa k obrázkuVrátenie zlyhalo. S týmto obrázkom nie je asociovaný žiadny názov súboru.Návrat k '%s' sa zlyhal: %sFarba pravého koncového boduZarovnané dopravaOtočenieOtočiť o 90 stupňov do_ľavaOtočiť o 90 stupňov do_pravaOtočiť kanálaOtočiť vrstvuOtočiť cestuOtočiť textovú vrstvuOtočiť o _180 stupňovOtočiť obrázokOtočenie vrstvy alebo výberuOtáča sa...Informácie o otočeníOkrúhla_NakloniťZobraziť mriež_ku_Zmrštenie_Hroty_Zameniť farbyUl_ožiť pravú farbu doPriemerná vzorkaVzorka zahrnutáSýt.:SýtosťUložiťUložiť "%s" ako PovrayUložiť krivkyUložiť chybový protokol do súboruUložiť obrázok_Teraz uložiť nastavenia vstupného zariadenia_Teraz uložiť klávesové skratkyUložiť úrovneUložiť nastavenia nástrojov_Teraz uložiť pozície okienU_ložiť všetky chyby do súboru...Uložiť výber do _súboru...Uložiť _ako...Ulož_iť kópiu...Uložiť kópiu obrázkaUložiť všetky chybyUložiť ako _Povray...Uložiť ako ša_blónu...Uloží zmenené klávesové skratky pri ukončení GIMPu.Uložiť nastavenia kriviek do súboruUložiť stav zariadeniaUložiť prechod ako POV-RayUložiť nastavenia úrovní do súboruUložiť nastavenia do...Uložiť výber Uložiť výber do kanálaUložiť zmeny do obrázka '%s' pred zatvorením?Uložiť pozície a veľkosti hlavných dialógov pri ukončení GIMP.Uložiť do _kanálaUložené nastaveniaUkladanie '%s' Ukladanie '%s' zlyhalo: @@ -415,7 +429,7 @@ Môžete vrstvu upravovať alebo vytvoriť novú vrstvu textu z atribútov jej textu.Názov priečinku s používateľským nastavením GIMP nie je možné previesť na UTF-8: %s -Pravdepodobne váš systém ukladá súbory v kódovaní inom ako je UTF-8 a nepovedali ste o tom GLib. Nastavte prosím hodnotu premenej prostredia G_FILENAME_ENCODING.Súbor sessionrc uchováva záznam o polohe okien v okamihu ukončenia programu. Môžete GIMP nastaviť tak, aby boli tieto okná po spustení otvorené na týchto pozíciách.Miniatúra v dialógu Otvoriť bude automaticky aktualizovaná, pokiaľ súbor, ktorého miniatúra sa tvorí, je menší ako je tu nastavená veľkosť.Vyrovnávacia pamäť dlaždíc sa používa pre zaistenie toho, že GIMP nebude neustále prehadzovať dlaždice medzi pamäťou a diskom. Vyššie nastavenie tejto hodnoty spôsobí, že GIMP bude používať menej odkladacieho priestoru, ale viac pamäte. Naopak, menšia veľkosť vyrovnávacej pamäte spôsobí, že GIMP bude používať viac odkladacieho priestoru a menej pamäte.Jednotka používaná pre zobrazovanie súradníc mimo režimu bod na bod.Súbor unitrc uchováva databázu používateľských jednotiek. Môžete definovať vlastné jednotky a používať ich rovnako ako zabudované palce, milimetre, body a piky. Tento súbor je prepísaný, pri každom ukončení GIMPu.Zvislé rozlíšenie obrázka.Návod typu okna, ktorý je nastavený na dokovacích oknách. Môže mať naň vplyv to, ako váš správca okien dekoruje dokovacie okná a ako s nimi pracuje.Návod typu okna, ktorý je nastavený na nástrojoch. Môže mať naň vplyv to, ako váš správca okien dekoruje dokovacie okná a ako s nimi pracuje.TémaPriečinky témTémyExistuje %d obrázkov s neuloženými zmenami:Málo viditeľných vrstiev pre splynutie.Vždy si musíte vybrať medzi použitím pamäte a rýchlosťou. GIMP väčšinou dáva prednosť rýchlosti pred pamäťou. Ak je pamäť veľký problém, tak skúste povoliť toto nastavenie.Nie je aktívna vrstva alebo kanál na kopírovanie.Nie je aktívna vrstva alebo kanál na vystrihnutie.Neexistuje aktívna vrstva alebo kanál na obkreslenieNie je aktívna vrstva alebo kanál na obkreslenie.Jeden obrázok nemá uložené zmeny:Mal by existovať súbor '%s'. Skontrolujte svoju inštaláciu.Vyskytla sa chyba počas analyzovania vášho súboru '%s'. Použijú sa štandardné hodnoty. Bola vytvorená záloha vašej konfigurácie v '%s'.Tento súbor obsahuje zbierku médií štandardných veľkostí, ktoré slúžia ako šablóny obrázkov.V tomto priečinku sa hľadajú šablóny obrázkov.V tomto priečinku sa hľadajú používateľom nainštalované témy.Tento priečinok sa používa pre písma, ktoré chcete aby boli viditeľné v GIMPe. GIMP prehľadáva tento priečinok, keď hľadá písma. Použite tento priečinok pre písmo, ktoré chcete aby bolo iba pre GIMP. Inak umiestnite písmo do systémových priečinkov.Tento priečinok sa používa na ukladanie parametrických súborov pre nástroj Krivky.Tento priečinok sa používa na ukladanie parametrických súborov pre nástroj Úrovne.Tento priečinok sa používa na ukladanie nastavení nástrojov.Tento priečinok sa používa na ukladanie používateľom vytvorených a nainštalovaných skriptov. GIMP prehľadáva tento priečinok, keď hľadá skripty spolu so systémovým priečinkom GIMPu pre skripty.Tento priečinok sa používa na ukladanie používateľom vytvorených, dočasných alebo iných nesystémových DLL modulov. GIMP prehľadáva tento priečinok spolu so systémovým priečinkom GIMPu, keď hľadá moduly pre načítanie počas inicializácie.Tento priečinok sa používa na ukladanie používateľom vytvorených, dočasných alebo iných nesystémových pridaných rozšírenízásuvných modulov. GIMP prehľadáva tento priečinok, keď hľadá zásuvné moduly spolu so systémovým priečinkom GIMPu.Tento priečinok sa používa na ukladanie používateľom vytvorených, dočasných alebo iných nesystémových zásuvných modulov. GIMP prehľadáva tento priečinok, keď hľadá zásuvné moduly spolu so systémovým priečinkom GIMPu.Tento priečinok sa používa na ukladanie používateľom definovaných štetcov. GIMP prehľadáva tento priečinok, keď hľadá štetce spolu so systémovým priečinkom GIMPu pre štetce.Tento priečinok sa používa na ukladanie používateľom definovaných prechodov. GIMP prehľadáva tento priečinok spolu so systémovým priečinkom GIMPu, keď hľadá prechody.Tento priečinok sa používa na ukladanie používateľom definovaných paliet. GIMP prehľadáva tento priečinok, keď hľadá palety spolu so systémovým priečinkom GIMPu pre palety.Tento priečinok sa používa na ukladanie používateľom definovaných vzoriek. GIMP prehľadáva tento priečinok, keď hľadá vzorky spolu so systémovým priečinkom GIMPu pre vzorky.Tento priečinok sa používa na dočasné ukladanie buffera pre funkciu vrátiť späť na redukovanie použitej pamäte. Pokiaľ je GIMP zabitý, súbory v tvare: gimp<#>.<#> môžu pretrvať v tomto priečinku. Tieto súbory nie je možné použiť mimo sedenia relácie GIMP a preto ich pokojne môžete odstrániť.Tento priečinok bude obsahovať množstvo dôležitých súborov. Kliknite na jeden zo súborov alebo priečinkov v strome a získate viac informácií o zvolenej položke.Toto je vzdialenosť v bodoch, kde sa aktivuje prichytávanie k vodítkam a mriežke.Tento program je šírený v nádeji, že bude užitočný, avšak BEZ AKEJKOĽVEK ZÁRUKY; neposkytujú sa ani odvodené záruky PREDAJNOSTI alebo VHODNOSTI PRE URČITÝ ÚČEL. Ďalšie podrobnosti hľadajte vo Všeobecnej verejnej licencii GNU.Tento program je slobodný softvér; môžete ho nedistribuovať a/alebo meniť v súlade so Všeobecnou verejnou licenciou GNU (GNU GPL) publikovanou vo Free Software Foundation; či už verzie 2 alebo (podľa vašej voľby) akoukoľvek novšou.Toto textové políčko je obmedzené na %d znakov.Tento nástroj nemá voľby.PrahPrah nefunguje na indexovaných vrstvách.Prah:Miniatúra %d z %dVeľkosť vyrovnávacej pamäte _dlaždíc:Veľkosť vyrovnávacej pamäte dlaždíc:Sklon:DrobnáTitulok a stavDo c_estu_HračkyPrepnúť Rýchlu maskuPrepnúť _rýchlu maskuPríliš veľa chybových správ!Nastavenia nástrojovPonuka Nastavenia nástrojovPrepínanie nástrojov %sNastavenia nástr_ojovIkona nástrojaIkona nástroja s nitkovým krížom_NástrojeNástrojePonuka nástrojeNástrojePonuka nástrojovNástroje ako približný výber a plechovka hľadajú oblasti algoritmom semienkového vyplňovania. Semienkové vyplňovanie začne na pôvodne vybranom pixely a pokračuje vo všetkých smeroch, pokiaľ nie je rozdiel intenzity pixelov od originálu väčší ako zadaný limit. Táto hodnota reprezentuje štandardný prah.Pr_iesvitnosťPresun alfy do maskyTransformáciaTransformovať kanálSmer transformácieTransformácia vrstvyTransformovať cestuTransformovanie textovej vrstvyProcedúry transformačného nástrojaTransformovať vrstvuTransformovať cestuTransformovať výberTransformáciaTransformačné procedúryTransformovanie...PrekladPriesvitnosť_Typ priesvitnosti:Trojuholníková vlnaSkutočná farbaTypTyp %sStlačte nový akcelerátorZadajte nový akcelerátor alebo ho vyčistite stlačením BackspaceNie je možné pridať masku vrstvy pretože vrstva už masku má.Nie je možné vystrihnúť alebo kopírovať, lebo zvolená oblasť je prázdna.Nie je možné otvoriť testovací odkladací súbor (swap). Aby sa predišlo strate dát, skontrolujte prosím umiestnenie a oprávnenie odkladacieho priečinku definovaného vo vašich Nastaveniach (aktuálne "%s").Nie je možné otvoriť odkladací súbor (swap). Programu GIMP sa minula pamäť a nemôže použiť odkladací súbor. Niektoré časti vašich obrázok môžu byť poškodené. Skúste uložiť svoju prácu s inými názvami súborov, spustiť znovu GIMP a skontrolovať nastavenie odkladacieho priečinku vo vašich Nastaveniach.Nie je možné spustiť spätné volanie %s. Príslušný zásuvný modul možno spadol.NedefinovanéSpäťVrátiť späť históriuVrátiť späť _históriuJednotkyNeznámyNeznámy typ súboruNeznámy typ súboru palety: +Pravdepodobne váš systém ukladá súbory v kódovaní inom ako je UTF-8 a nepovedali ste o tom GLib. Nastavte prosím hodnotu premenej prostredia G_FILENAME_ENCODING.Súbor sessionrc uchováva záznam o polohe okien v okamihu ukončenia programu. Môžete GIMP nastaviť tak, aby boli tieto okná po spustení otvorené na týchto pozíciách.Miniatúra v dialógu Otvoriť bude automaticky aktualizovaná, pokiaľ súbor, ktorého miniatúra sa tvorí, je menší ako je tu nastavená veľkosť.Vyrovnávacia pamäť dlaždíc sa používa pre zaistenie toho, že GIMP nebude neustále prehadzovať dlaždice medzi pamäťou a diskom. Vyššie nastavenie tejto hodnoty spôsobí, že GIMP bude používať menej odkladacieho priestoru, ale viac pamäte. Naopak, menšia veľkosť vyrovnávacej pamäte spôsobí, že GIMP bude používať viac odkladacieho priestoru a menej pamäte.Jednotka používaná pre zobrazovanie súradníc mimo režimu bod na bod.Súbor unitrc uchováva databázu používateľských jednotiek. Môžete definovať vlastné jednotky a používať ich rovnako ako zabudované palce, milimetre, body a piky. Tento súbor je prepísaný, pri každom ukončení GIMPu.Zvislé rozlíšenie obrázka.Návod typu okna, ktorý je nastavený na dokovacích oknách. Môže mať naň vplyv to, ako váš správca okien dekoruje dokovacie okná a ako s nimi pracuje.Návod typu okna, ktorý je nastavený na nástrojoch. Môže mať naň vplyv to, ako váš správca okien dekoruje dokovacie okná a ako s nimi pracuje.TémaPriečinky témTémyExistuje %d obrázkov s neuloženými zmenami:Málo viditeľných vrstiev pre splynutie.Vždy si musíte vybrať medzi použitím pamäte a rýchlosťou. GIMP väčšinou dáva prednosť rýchlosti pred pamäťou. Ak je pamäť veľký problém, tak skúste povoliť toto nastavenie.Nie je aktívna vrstva alebo kanál na kopírovanie.Nie je aktívna vrstva alebo kanál na vystrihnutie.Neexistuje aktívna vrstva alebo kanál na obkreslenieNie je aktívna vrstva alebo kanál na obkreslenie.Jeden obrázok nemá uložené zmeny:Mal by existovať súbor '%s'. Skontrolujte svoju inštaláciu.Vyskytla sa chyba počas analyzovania vášho súboru '%s'. Použijú sa štandardné hodnoty. Bola vytvorená záloha vašej konfigurácie v '%s'.Tento súbor obsahuje zbierku médií štandardných veľkostí, ktoré slúžia ako šablóny obrázkov.V tomto priečinku sa hľadajú šablóny obrázkov.V tomto priečinku sa hľadajú používateľom nainštalované témy.Tento priečinok sa používa pre písma, ktoré chcete aby boli viditeľné v GIMPe. GIMP prehľadáva tento priečinok, keď hľadá písma. Použite tento priečinok pre písmo, ktoré chcete aby bolo iba pre GIMP. Inak umiestnite písmo do systémových priečinkov.Tento priečinok sa používa na ukladanie parametrických súborov pre nástroj Krivky.Tento priečinok sa používa na ukladanie parametrických súborov pre nástroj Úrovne.Tento priečinok sa používa na ukladanie nastavení nástrojov.Tento priečinok sa používa na ukladanie používateľom vytvorených a nainštalovaných skriptov. GIMP prehľadáva tento priečinok, keď hľadá skripty spolu so systémovým priečinkom GIMPu pre skripty.Tento priečinok sa používa na ukladanie používateľom vytvorených, dočasných alebo iných nesystémových DLL modulov. GIMP prehľadáva tento priečinok spolu so systémovým priečinkom GIMPu, keď hľadá moduly pre načítanie počas inicializácie.Tento priečinok sa používa na ukladanie používateľom vytvorených, dočasných alebo iných nesystémových pridaných rozšírenízásuvných modulov. GIMP prehľadáva tento priečinok, keď hľadá zásuvné moduly spolu so systémovým priečinkom GIMPu.Tento priečinok sa používa na ukladanie používateľom vytvorených, dočasných alebo iných nesystémových zásuvných modulov. GIMP prehľadáva tento priečinok, keď hľadá zásuvné moduly spolu so systémovým priečinkom GIMPu.Tento priečinok sa používa na ukladanie používateľom definovaných štetcov. GIMP prehľadáva tento priečinok, keď hľadá štetce spolu so systémovým priečinkom GIMPu pre štetce.Tento priečinok sa používa na ukladanie používateľom definovaných prechodov. GIMP prehľadáva tento priečinok spolu so systémovým priečinkom GIMPu, keď hľadá prechody.Tento priečinok sa používa na ukladanie používateľom definovaných paliet. GIMP prehľadáva tento priečinok, keď hľadá palety spolu so systémovým priečinkom GIMPu pre palety.Tento priečinok sa používa na ukladanie používateľom definovaných vzoriek. GIMP prehľadáva tento priečinok, keď hľadá vzorky spolu so systémovým priečinkom GIMPu pre vzorky.Tento priečinok sa používa na dočasné ukladanie buffera pre funkciu vrátiť späť na redukovanie použitej pamäte. Pokiaľ je GIMP zabitý, súbory v tvare: gimp<#>.<#> môžu pretrvať v tomto priečinku. Tieto súbory nie je možné použiť mimo sedenia relácie GIMP a preto ich pokojne môžete odstrániť.Tento priečinok bude obsahovať množstvo dôležitých súborov. Kliknite na jeden zo súborov alebo priečinkov v strome a získate viac informácií o zvolenej položke.Toto je vzdialenosť v bodoch, kde sa aktivuje prichytávanie k vodítkam a mriežke.Tento program je šírený v nádeji, že bude užitočný, avšak BEZ AKEJKOĽVEK ZÁRUKY; neposkytujú sa ani odvodené záruky PREDAJNOSTI alebo VHODNOSTI PRE URČITÝ ÚČEL. Ďalšie podrobnosti hľadajte vo Všeobecnej verejnej licencii GNU.Tento program je slobodný softvér; môžete ho nedistribuovať a/alebo meniť v súlade so Všeobecnou verejnou licenciou GNU (GNU GPL) publikovanou vo Free Software Foundation; či už verzie 2 alebo (podľa vašej voľby) akoukoľvek novšou.Toto textové políčko je obmedzené na %d znakov.Tento nástroj nemá voľby.Toto okno má otvorené %d kariet. Zatvorením okna tiež zatvoríte všetky jeho karty.PrahPrah nefunguje na indexovaných vrstvách.Prah:Miniatúra %d z %dVeľkosť vyrovnávacej pamäte _dlaždíc:Veľkosť vyrovnávacej pamäte dlaždíc:Sklon:DrobnáTitulok a stavDo c_estuAby ste upravili klávesovú skratku, kliknite na zodpovedajúci riadok a zadajte nový akcelerátor alebo ho vyčistite stlačením backspace._HračkyPrepnúť Rýchlu maskuPrepnúť _rýchlu maskuPríliš veľa chybových správ!Nastavenia nástrojovPonuka Nastavenia nástrojovPrepínanie nástrojov %sNastavenia nástr_ojovIkona nástrojaIkona nástroja s nitkovým krížom_NástrojeNástrojePonuka nástrojeNástrojePonuka nástrojovNástroje ako približný výber a plechovka hľadajú oblasti algoritmom semienkového vyplňovania. Semienkové vyplňovanie začne na pôvodne vybranom pixely a pokračuje vo všetkých smeroch, pokiaľ nie je rozdiel intenzity pixelov od originálu väčší ako zadaný limit. Táto hodnota reprezentuje štandardný prah.Pr_iesvitnosťPresun alfy do maskyTransformáciaTransformovať kanálSmer transformácieTransformácia vrstvyTransformovať cestuTransformovanie textovej vrstvyProcedúry transformačného nástrojaTransformovať vrstvuTransformovať cestuTransformovať výberTransformáciaTransformačné procedúryTransformovanie...PrekladPriesvitnosť_Typ priesvitnosti:Trojuholníková vlnaSkutočná farbaTypTyp %sStlačte nový akcelerátorZadajte nový akcelerátor alebo ho vyčistite stlačením BackspaceNie je možné pridať masku vrstvy pretože vrstva už masku má.Nie je možné vystrihnúť alebo kopírovať, lebo zvolená oblasť je prázdna.Nie je možné otvoriť testovací odkladací súbor (swap). Aby sa predišlo strate dát, skontrolujte prosím umiestnenie a oprávnenie odkladacieho priečinku definovaného vo vašich Nastaveniach (aktuálne "%s").Nie je možné otvoriť odkladací súbor (swap). Programu GIMP sa minula pamäť a nemôže použiť odkladací súbor. Niektoré časti vašich obrázok môžu byť poškodené. Skúste uložiť svoju prácu s inými názvami súborov, spustiť znovu GIMP a skontrolovať nastavenie odkladacieho priečinku vo vašich Nastaveniach.Nie je možné spustiť spätné volanie %s. Príslušný zásuvný modul možno spadol.NedefinovanéSpäťVrátiť späť históriuVrátiť späť _históriuJednotkyNeznámyNeznámy typ súboruNeznámy typ súboru palety: %sOdstrániť (z pamäte)NepomenovanýNepomenovanýŠtandardne použiť "_Bod na bod"Použiť _dynamické klávesové skratkyNamiesto neho použiť _web prehliadačPoužiť všetky viditeľné vrstvy pri zmenšení výberuPoužiť čiernobielu (1-Bit) paletuPoužiť farbu z prechoduPoužiť vlastnú paletuPoužiť info oknoPoužiť paletu optimalizovanú pre WWWProtokol o používateľskej inštaláciiPoužívateľské rozhranieNástrojové oknoJasHodnota:Režim vektorovVerziu %s Vám prinášajúVerzia:ZvisleZvislý posun prvej čiary mriežky; môže to byť aj záporné číslo.Zvislé medzery medzi čiarami mriežky.Veľmi veľkáVeľmi maláZobrazenieZobraziť ako mrie_žku_Zobraziť ako zoznamZobraziť ako mriežkuZobraziť ako zoznamVizuálna trieda:Vizuálna hĺbka:Varovanie: Nepodarilo sa načítať dáta: %sVarovanie: Nepodarilo sa uložiť dáta: @@ -424,4 +438,4 @@ GIMP %d.%d používateľská inštaláciaKeď je povolené, dialóg automaticky sleduje obrázok, na ktorom pracujete.Ak je povolené, GIMP použije v ponuke mnemoniku.Ak je povolené, všetky kresliace nástroje budú zobrazovať náhľad obrysu aktuálneho štetca.Ak je povolené, obrázok bude aktívny, keď okno obrázka získa fókus. Toto je užitočné, keď správca okien používa "fókus po kliknutí".Ak je povolené, dialógy budú zobrazovať tlačítko pomocníka, ktoré dáva prístup k zodpovedajúcej stránke pomocníka. Bez tohoto tlačítka sa dá stránka pomocníka otvoriť stlačením F1.Ak je povolené, ponuku je možné odtrhnúť.Ak je povolené, stlačením F1 sa spustí prehliadač pomocníka.Ak je povolené, GIMP neuloží obrázok, pokiaľ nedôjde k jeho zmene od jeho otvorenia.Ak je povolené, GIMP použije rôzne informačné okno pre každé zobrazenie obrázka.Ak je povolené, vysielajú sa požiadavky, aby X server poskytol informáciu o polohe a pohybe myši, namiesto spoliehania sa na predpokladané údaje. To znamená, že kreslenie s veľkými štetcami bude nielen oveľa presnejšie, ale aj pomalšie. Prekvapivé je, že na niektorých X serveroch povolenie tejto voľby má za následok rýchlejšiu kresbu.Ak je povolené, bude nad obrázkom zobrazený kurzor pri používaní kresliaceho nástroja.Ak je povolené, mriežka je štandardne viditeľná. Toto môže byť zmenené pomocou "Zobrazenie->Zobraziť mriežku".Ak je povolené, vodítka sú štandardne viditeľné. Toto môže byť zmenené pomocou "Zobrazenie->Zobraziť vodítka".Ak je povolené, okno obrázka sa automaticky zmení, kedykoľvek príde k zväčšeniu alebo zmenšeniu obrázka.Ak je povolené, okno obrázka automaticky zmení svoju veľkosť, kedykoľvek sa zmení fyzická veľkosť obrázka.Ak je povolené, ohraničenie vrstvy je štandardne viditeľné. Toto môže byť zmenené pomocou "Zobrazenie->Zobraziť ohraničenie vrstvy".Ak je povolené, ponuka je štandardne viditeľná. Toto môže byť zmenené pomocou príkazu "Zobrazenie->Zobraziť ponuku".Ak je povolené, pravítka sú štandardne viditeľné. Toto môže byť zmenené pomocou príkazu "Zobrazenie->Zobraziť pravítka".Ak je povolené, posuvníky sú štandardne viditeľné. Toto môže byť zmenené pomocou príkazu "Zobrazenie->Zobraziť posuvníky".Ak je povolené, bude zvolený štetec použitý pre všetky nástroje.Ak je povolené, bude zvolený prechod použitý pre všetky nástroje.Ak je povolené, bude zvolená vzorka použitá pre všetky nástroje.Ak je povolené, výber je štandardne viditeľný. Toto môže byť zmenené pomocou "Zobrazenie->Zobraziť výber".Ak je povolené, stavový riadok bude štandardne viditeľný. Toto môže byť zmenené pomocou príkazu "Zobrazenie->Zobraziť stavový riadok".Pri povolení, toto zabezpečí, aby každý pixel na obrázku bol namapovaný na pixel na obrazovke.Ak je povolené, toto zabezpečí, že celý obrázok bude viditeľný pri otvorení súbora, inak sa obrázok zobrazí v mierke 1:1.Ak je povolené, môžete meniť klávesové skratky položiek ponuky stlačením kombinácie kláves, keď je položka v ponuke zvýraznená.BielyVyváženie bielej funguje iba na vrstvách s RGB farbami.ŠírkaŠírka:Správa okienTypu správcu okienPozície okienZapisovanie '%s' XChyba XCF: nepodporovaná verzia %d XCF súboruVarovanie XCF: súbor formátu XCF verzie 0 nezapísal korektne indexovanú farebnú mapu. -Bude nahradená farebnou mapou s odtieňmi šedej.YŽltáŽltá:Snažíte sa vytvoriť obrázok s veľkosťou %s.Tu môžete pustiť vkladateľný dialóg.S týmto programom by ste mali získať kópiu Všeobecnej verejnej licencie GNU (GNU GPL); ak tomu tak nie je, napíšte do Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.Musíte reštartovať GIMP, aby sa zmeny prejavili tieto zmeny:Vaše nastavenia vstupných zariadení budú nastavené na štandardné hodnoty po nasledujúcom spustení programu GIMP.Vaše klávesové skratky budú nastavené na štandardné hodnoty po nasledujúcom spustení programu GIMP.Vaše nastavenia okien budú nastavené na štandardné hodnoty po nasledujúcom spustení programu GIMP.Správanie sa zmeny veľkosti a zväčšovaniaVeľkosť 1:1Zväčšiť všetkoZväčšiťZmenšiťKoeficient zväčšeniaKoeficient zväčšenia:Zv_äčšiť všetkoZväčš_iťZ_menšiťZväčšiť všetkoFaktor zmeny: %d:1Zmeniť veľkosť obrázka pri zmene veľkosti oknaZväčšiťZväčšenie a zmenšenieZmenšiťLupa:[ základný obrázok ]_O programe_ZískaťPrid_ať farbu z pozadiaPrid_ať farbu z popredia_Pridať kartuPrid_ať do výberuPokročilé n_astaveniaRozpr_ašovač_Všetko_Ukotviť vrstvuVyhladzov_anie_Ľubovoľné otočenie..._Umelecké_Pomer strán_Automaticky_BFarba _pozadiaFar_ba pozadia:_Čierna (úplne priesvitné)Funkcia prechodu pre se_gmentFunkcia prechodu pre vý_ber_Rozostrenie_Jas:Š_tetecŠ_tetce_Štetce, vzorky a prechody_Plechovka_Buffer_Podľa farbyVýber pod_ľa farby_CŠ_týl zakončenia:_Kanály_Vymazať chyby_Vrátiť späť históriu_Klonovať_Zavrieť_Zatvoriť kartu_OblakyNástroje _farieb_Farby_Nastaviť farby a krytie..._Kontext_Kontextový pomocník_Kopírovať_Kopírovať pomenované..._Vytvoriť obrázok podľa šablóny..._Orezanie a rozmerovO_rezanie obrázka_Zakrivená_Krivky...Farba _tmavej šachovniceŠtan_dardné farbyO_dstrániť štetecO_dstrániť bufferO_dstrániť kanál_Odstrániť farbuOd_strániť prechod..._Odstrániť obrázokO_dstrániť vrstvuO_dstrániť paletu_Zmazať cestu_Zmazať vzorku...O_dstrániť uložené nastavenia_Zmazať segment_Zmazať výberO_dstrániť šablónu_Odfarbiť_Odpojiť kartuStav zaria_denia_Dialógy_Zrušiť textové informácieS_kreslenie_Bod na bod_Duplikovať_Upraviť_Upraviť štetec..._Upraviť atribúty kanála..._Upraviť farbu..._Upraviť prechod..._Upraviť atribúty vrstvy..._Upraviť paletu..._Upraviť atribúty cesty..._Upraviť vzorku..._Upraviť šablónu..._Eliptický výber_Povoliť náhľad na vrstvy a kanály_Enormné_Ekvalizovať_GumaFarba popr_edia_Súbor_Vyplniť s:P_rispôsobiť zobrazenie obrázka oknuDo jednej _vrstvy_PreklopiťPre_klopiť segment_Preklopiť výber_Plávajúci_Písmo_Písma_Farba popredia:V_oľný výber_GVšeo_becné_Gigantické_Prechod_Prechody_Odtiene šedejKópia vrstvy v o_dtieňoch šediNá_rast..._Vodítko_Tvrdosť_Pomocník_Vodorovné:_Odtieň:O_brovské_Ikona_Ikona:_Obrázok_Obrázky_Import_Importovať paletu..._Indexovaná..._Informačné oknoPr_ienik s výberom_InvertovaťŠ_týl spojenia:Ve_ľké_Vrstva_Vrstvy_Vrstvy, kanály a cesty_Ľavý koncový bodPravý koncový bod _ľavého suseda_Úrovne...Farba svet_lej šachovnice_Svetelné efekty_Svetlosť:Š_týl čiary:_Lineárna_SpojenéNačíta_ť ľavú farbu zZ_nížiť kanálZ_nížiť vrstvuZ_nížiť cestu_M_Manuálne_Mapa_MaskaMaska do výber_u_Maximálny počet farieb:_Merať_Stredné_Spojiť palety...Sp_lynutie importovaných ciest_Migrovať používateľské nastavenia GIMP 2.0_RôzneLimit _ostrosti:Reži_mSprávca _modulov_Presun_Názov:_Príroda_Nový štetec_Nový kanál_Nový kanál..._Nová položka..._Nový prechod_Nová vrstva_Nová vrstva..._Nová paleta_Nová cesta_Nová cesta..._Nová vzorka_Nová šablóna..._Nový pohľad_Nový_Nasledujúci tip_Šum_NičP_osun..._Krytie_Otvoriť obrázok_Otvoriť..._Farba výplne_Kresliace nástroje_Štetec_Paleta_Vložiť_Vložiť buffer_Vložiť pomenované..._CestyÚs_ek_Perspektíva_Posterizácia..._Nastavenia_NáhľadVe_ľkosť náhľadu_Predchádzajúci tipV_eľkosť tlače..._Vlastnosti_Aktívna rýchla maska_Koniec_R_RGB_Polomer_Zdvihnúť kanál_Zdvihnúť vrstvu_Zdvihnúť cestu_Zdvihnúť pohľadyZd_vihnúť alebo otvoriť obrázok_Zmeniť priradenie skratiek:_Obdĺžnikový výber_Opakovať_Znovu %s_Obnoviť štetceObnoviť p_rechodyO_bnoviť palety_Obnoviť vzorkyOdst_rániť nepoužité farby z finálnej palety_GenerovanieNah_radiť_Replikovať segment..._Replikovať výber..._Aktualizovať zoznam písmaP_renastaviť poradie a viditeľnosťZ_meniť uložené nastavenia vstupného zariadenia na štandardné hodnotyObnoviť uložené klávesové sk_ratky na štandardné hodnoty_Zmeniť uložené pozície okien na štandardné hodnoty_Obnoviť nastavenia zP_ravý koncový bodĽavý koncový bod p_ravého suseda_Otočenie_Sýtosť:_Uložiť_Uložiť ľavú farbu do_Uložiť nastavenia do_Uložiť nastavenia vstupného zariadenia pri ukončení_Uložiť klávesové skratky pri ukončení_Uložiť pozície okien pri ukončení_MierkaVeľko_sť obrázka..._Rozmery vrstvy..._Zmeniť mierku importovaných viest, aby sa vošli do obrázkaVý_ber_Výber_Editor výberuNástroje _výber_Tvar_ZaostrenieZobraziť výb_er obrázka_Zobraziť medzi nástrojmi_Sínusoidný_Malé_ŠmuhaV_zdialenosť pritiahnutia:_Obkresliť výber_Obkresliť výber...Odob_rať z výberuŠtýl kar_ty_Šablóna:_Šablóny_Text_Prah..._Drobné_Tip dňa_Nástroj_Nástroje_Presun alfa kanálu vrstvy_Transformácia_Transformačné nástroje_Späť_Vrátiť %s_Zvislé:_Zobrazenie_Viditeľné_WebPoužiť prehliadač pre _web:_Biela (úplné krytie)Vyváženie _bielejŠí_rka:Pokračovať od _druhého konca_X rozlíšenie:_X:_Rozš._Y_Y rozlíšenie:_Y:_Lupa_Mierka (%s)farbykópiadpipre logický výraz %s sa očakáva symbol 'yes' alebo 'no', prijaté je '%s'závažná chyba pre analýzeodtiene šedejodtiene šedej-prázdnypalecpalcovindexovanýindexovaný-prázdnynesprávny UTF-8 reťazecneplatná hodnota '%ld' pre typ ikonyneplatná hodnota '%ld' pre symbol %sneplatná hodnota '%s' pre typ ikonyneplatná hodnota '%s' pre symbol %smmmmminútanedostupné%picapicabodbodovbodov/%abodov/%sbodbodovsekundatips-locale:skZdenko Podobnýhodnota pre symbol %s nie je platným UTF-8 reťazcompočas analyzovania prvku '%s': %s \ No newline at end of file +Bude nahradená farebnou mapou s odtieňmi šedej.YŽltáŽltá:Snažíte sa vytvoriť obrázok s veľkosťou %s.Tu môžete pustiť vkladateľný dialóg.S týmto programom by ste mali získať kópiu Všeobecnej verejnej licencie GNU (GNU GPL); ak tomu tak nie je, napíšte do Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.Musíte reštartovať GIMP, aby sa zmeny prejavili tieto zmeny:Vaša inštalácia GIMP je nekompletná:Vaše nastavenia vstupných zariadení budú nastavené na štandardné hodnoty po nasledujúcom spustení programu GIMP.Vaše klávesové skratky budú nastavené na štandardné hodnoty po nasledujúcom spustení programu GIMP.Vaše nastavenia okien budú nastavené na štandardné hodnoty po nasledujúcom spustení programu GIMP.Správanie sa zmeny veľkosti a zväčšovaniaVeľkosť 1:1Zväčšiť všetkoZväčšiťZmenšiťKoeficient zväčšeniaKoeficient zväčšenia:Zv_äčšiť všetkoZväčš_iťZ_menšiťZväčšiť všetkoFaktor zmeny: %d:1Zmeniť veľkosť obrázka pri zmene veľkosti oknaZväčšiťZväčšenie a zmenšenieZmenšiťLupa:[ základný obrázok ]_O programe_ZískaťPrid_ať farbu z pozadiaPrid_ať farbu z popredia_Pridať kartuPrid_ať do výberuPokročilé n_astaveniaRozpr_ašovač_Všetko_Ukotviť vrstvuVyhladzov_anie_Ľubovoľné otočenie..._Umelecké_Pomer strán_Automaticky_BFarba _pozadiaFar_ba pozadia:_Čierna (úplne priesvitné)Funkcia prechodu pre se_gmentFunkcia prechodu pre vý_ber_Rozostrenie_Jas:Š_tetecŠ_tetce_Štetce, vzorky a prechody_Plechovka_Buffer_Podľa farbyVýber pod_ľa farby_CŠ_týl zakončenia:_Kanály_Vymazať chyby_Vrátiť späť históriu_Klonovať_Zavrieť_Zatvoriť kartu_OblakyNástroje _farieb_Farby_Nastaviť farby a krytie..._Kontext_Kontextový pomocník_Kopírovať_Kopírovať pomenované..._Vytvoriť obrázok podľa šablóny..._Orezanie a rozmerovO_rezanie obrázka_Zakrivená_Krivky...Farba _tmavej šachovniceŠtan_dardné farbyO_dstrániť štetecO_dstrániť bufferO_dstrániť kanál_Odstrániť farbuOd_strániť prechod..._Odstrániť obrázokO_dstrániť vrstvuO_dstrániť paletu_Zmazať cestu_Zmazať vzorku...O_dstrániť uložené nastavenia_Zmazať segment_Zmazať výberO_dstrániť šablónu_Odfarbiť_Odpojiť kartuStav zaria_denia_Dialógy_Zahodiť zmeny_Zrušiť textové informácieS_kreslenie_Bod na bod_Duplikovať_Upraviť_Upraviť štetec..._Upraviť atribúty kanála..._Upraviť farbu..._Upraviť prechod..._Upraviť atribúty vrstvy..._Upraviť paletu..._Upraviť atribúty cesty..._Upraviť vzorku..._Upraviť šablónu..._Eliptický výber_Povoliť náhľad na vrstvy a kanály_Enormné_Ekvalizovať_GumaFarba popr_edia_Súbor_Vyplniť s:P_rispôsobiť zobrazenie obrázka oknuDo jednej _vrstvy_PreklopiťPre_klopiť segment_Preklopiť výber_Plávajúci_Písmo_Písma_Farba popredia:V_oľný výber_GVšeo_becné_Gigantické_Prechod_Prechody_Odtiene šedejKópia vrstvy v o_dtieňoch šediNá_rast..._Vodítko_Tvrdosť_Pomocník_Vodorovné:_Odtieň:O_brovské_Ikona_Ikona:_Obrázok_Obrázky_Import_Importovať paletu..._Indexovaná..._Informačné oknoPr_ienik s výberom_InvertovaťŠ_týl spojenia:Ve_ľké_Vrstva_Vrstvy_Vrstvy, kanály a cesty_Ľavý koncový bodPravý koncový bod _ľavého suseda_Úrovne...Farba svet_lej šachovnice_Svetelné efekty_Svetlosť:Š_týl čiary:_Lineárna_SpojenéNačíta_ť ľavú farbu zZ_nížiť kanálZ_nížiť vrstvuZ_nížiť cestu_M_Manuálne_Mapa_MaskaMaska do výber_u_Maximálny počet farieb:_Merať_Stredné_Spojiť palety...Sp_lynutie importovaných ciest_Migrovať používateľské nastavenia GIMP 2.0_RôzneLimit _ostrosti:Reži_mSprávca _modulov_Presun_Názov:_Príroda_Nový štetec_Nový kanál_Nový kanál..._Nová položka..._Nový prechod_Nová vrstva_Nová vrstva..._Nová paleta_Nová cesta_Nová cesta..._Nová vzorka_Nová šablóna..._Nový pohľad_Nový_Nasledujúci tip_Šum_NičP_osun..._Krytie_Otvoriť obrázok_Otvoriť..._Farba výplne_Kresliace nástroje_Štetec_Paleta_Vložiť_Vložiť buffer_Vložiť pomenované..._CestyÚs_ek_Perspektíva_Posterizácia..._Nastavenia_NáhľadVe_ľkosť náhľadu_Predchádzajúci tipV_eľkosť tlače..._Vlastnosti_Aktívna rýchla maska_Koniec_R_RGB_Polomer_Zdvihnúť kanál_Zdvihnúť vrstvu_Zdvihnúť cestu_Zdvihnúť pohľadyZd_vihnúť alebo otvoriť obrázok_Zmeniť priradenie skratiek:_Obdĺžnikový výber_Opakovať_Znovu %s_Obnoviť štetceObnoviť p_rechodyO_bnoviť palety_Obnoviť vzorkyOdst_rániť nepoužité farby z finálnej palety_GenerovanieNah_radiť_Replikovať segment..._Replikovať výber..._Aktualizovať zoznam písmaP_renastaviť poradie a viditeľnosťZ_meniť uložené nastavenia vstupného zariadenia na štandardné hodnotyObnoviť uložené klávesové sk_ratky na štandardné hodnoty_Zmeniť uložené pozície okien na štandardné hodnoty_Obnoviť nastavenia zP_ravý koncový bodĽavý koncový bod p_ravého suseda_Otočenie_Sýtosť:_Uložiť_Uložiť ľavú farbu do_Uložiť nastavenia do_Uložiť nastavenia vstupného zariadenia pri ukončení_Uložiť klávesové skratky pri ukončení_Uložiť pozície okien pri ukončení_MierkaVeľko_sť obrázka..._Rozmery vrstvy..._Zmeniť mierku importovaných viest, aby sa vošli do obrázkaVý_ber_Výber_Editor výberuNástroje _výber_Tvar_ZaostrenieZobraziť výb_er obrázka_Zobraziť medzi nástrojmi_Sínusoidný_Malé_ŠmuhaV_zdialenosť pritiahnutia:_Obkresliť výber_Obkresliť výber...Odob_rať z výberuŠtýl kar_ty_Šablóna:_Šablóny_Text_Prah..._Drobné_Tip dňa_Nástroj_Nástroje_Presun alfa kanálu vrstvy_Transformácia_Transformačné nástroje_Späť_Vrátiť %s_Zvislé:_Zobrazenie_Viditeľné_WebPoužiť prehliadač pre _web:_Biela (úplné krytie)Vyváženie _bielejŠí_rka:Pokračovať od _druhého konca_X rozlíšenie:_X:_Rozš._Y_Y rozlíšenie:_Y:_Lupa_Mierka (%s)farbykópiadpipre logický výraz %s sa očakáva symbol 'yes' alebo 'no', prijaté je '%s'závažná chyba pre analýzeodtiene šedejodtiene šedej-prázdnypalecpalcovindexovanýindexovaný-prázdnynesprávny UTF-8 reťazecneplatná hodnota '%ld' pre typ ikonyneplatná hodnota '%ld' pre symbol %sneplatná hodnota '%s' pre typ ikonyneplatná hodnota '%s' pre symbol %smmmmminútanedostupné%picapicabodbodovbodov/%abodov/%sbodbodovsekundatips-locale:skZdenko Podobnýhodnota pre symbol %s nie je platným UTF-8 reťazcompočas analyzovania prvku '%s': %s \ No newline at end of file diff -uraN gimp-2.2.4/po/sk.po gimp-2.2.5/po/sk.po --- gimp-2.2.4/po/sk.po 2005-01-22 17:33:09.000000000 +0100 +++ gimp-2.2.5/po/sk.po 2005-03-21 11:21:14.000000000 +0100 @@ -1,22 +1,22 @@ # translation of gimp.HEAD.pot to Slovak -# Copyright (C) 1999,2003, 2004 Free Software Foundation, Inc. +# Copyright (C) 1999, 2003, 2004, 2005 Free Software Foundation, Inc. # Zdenko Podobný , 2003, 2004. # Stanislav Visnovsky , 2003. +# Marcel Telka , 2005. +# +# $Id: sk.po,v 1.93.2.3 2005/03/20 19:52:55 marcel Exp $ # msgid "" msgstr "" -"Project-Id-Version: gimp.HEAD\n" +"Project-Id-Version: gimp\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-01-22 17:32+0100\n" -"PO-Revision-Date: 2004-11-27 10:27Stedn Evropa (bn as)\n" -"Last-Translator: Zdenko Podobný \n" -"Language-Team: Slovak <>\n" +"POT-Creation-Date: 2005-03-20 20:30+0100\n" +"PO-Revision-Date: 2005-03-20 20:52+0100\n" +"Last-Translator: Marcel Telka \n" +"Language-Team: Slovak \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: KBabel 1.3\n" -"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);\n" #: app/app_procs.c:144 msgid "(This console window will close in ten seconds)\n" @@ -1034,7 +1034,7 @@ #: app/actions/documents-commands.c:251 app/actions/file-commands.c:170 #: app/dialogs/file-open-dialog.c:198 app/dialogs/file-open-dialog.c:249 -#: app/dialogs/file-open-location-dialog.c:193 +#: app/dialogs/file-open-location-dialog.c:195 #: app/display/gimpdisplayshell-dnd.c:334 app/widgets/gimplayertreeview.c:804 #: app/widgets/gimptoolbox-dnd.c:125 #, c-format @@ -1155,9 +1155,8 @@ #. GIMP_STOCK_COPY_VISIBLE, #: app/actions/edit-actions.c:93 -#, fuzzy msgid "Copy _Visible" -msgstr "_Viditeľné" +msgstr "Kopírovať _viditeľné" #: app/actions/edit-actions.c:98 msgid "_Paste" @@ -1334,7 +1333,7 @@ msgid "_Quit" msgstr "_Koniec" -#: app/actions/file-commands.c:215 app/dialogs/file-save-dialog.c:281 +#: app/actions/file-commands.c:215 app/dialogs/file-save-dialog.c:282 #, c-format msgid "" "Saving '%s' failed:\n" @@ -4375,7 +4374,7 @@ msgstr "Vystrihnúť" #: app/core/core-enums.c:1058 app/core/core-enums.c:1086 -#: app/tools/gimptexttool.c:142 app/widgets/widgets-enums.c:263 +#: app/tools/gimptexttool.c:144 app/widgets/widgets-enums.c:263 msgid "Text" msgstr "Text" @@ -4585,19 +4584,19 @@ msgstr "Nie je možné čítať %d bytov z '%s': %s" #: app/core/gimpbrush.c:554 -#, fuzzy, c-format +#, 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." +msgstr "Závažná chyba v súbore štetca '%s': Šírka = 0." #: app/core/gimpbrush.c:563 -#, fuzzy, c-format +#, 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ý." +msgstr "Závažná chyba v súbore štetca '%s': Výška = 0." #: app/core/gimpbrush.c:572 -#, fuzzy, c-format +#, 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ý." +msgstr "Závažná chyba v súbore štetca '%s': Bajtov = 0." #: app/core/gimpbrush.c:596 #, c-format @@ -4900,7 +4899,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 "Súbor prechodu '%s' je poškodený: Segmenty nepokrývajú rozsah 0-1." #: app/core/gimpgradient-load.c:281 #, c-format @@ -4954,23 +4953,23 @@ msgid "Add Color to Colormap" msgstr "Pridať farbu do farebnej mapy" -#: app/core/gimpimage-convert.c:788 +#: app/core/gimpimage-convert.c:789 msgid "Convert Image to RGB" msgstr "Konvertovať obrázok do RGB" -#: app/core/gimpimage-convert.c:792 +#: app/core/gimpimage-convert.c:793 msgid "Convert Image to Grayscale" msgstr "Konvertovať obrázok do odtieňov šedi" -#: app/core/gimpimage-convert.c:796 +#: app/core/gimpimage-convert.c:797 msgid "Convert Image to Indexed" msgstr "Konvertovať obrázok do indexovaných farieb" -#: app/core/gimpimage-convert.c:875 +#: app/core/gimpimage-convert.c:879 msgid "Converting to indexed (stage 2)..." msgstr "Konvertovanie na index (štádium 2)..." -#: app/core/gimpimage-convert.c:919 +#: app/core/gimpimage-convert.c:923 msgid "Converting to indexed (stage 3)..." msgstr "Konvertovanie na index (štádium 3)..." @@ -5692,20 +5691,20 @@ msgid "Enter location (URI):" msgstr "Vložiť umiestnenie (URI):" -#: app/dialogs/file-save-dialog.c:184 +#: app/dialogs/file-save-dialog.c:185 msgid "File exists" msgstr "Súbor existuje" -#: app/dialogs/file-save-dialog.c:189 +#: app/dialogs/file-save-dialog.c:190 msgid "_Replace" msgstr "Nah_radiť" -#: app/dialogs/file-save-dialog.c:199 +#: app/dialogs/file-save-dialog.c:200 #, c-format msgid "A file named '%s' already exists." msgstr "Súbor s názvom '%s' už existuje." -#: app/dialogs/file-save-dialog.c:204 +#: app/dialogs/file-save-dialog.c:205 msgid "Do you want to replace it with the image you are saving?" msgstr "Chcete ho nahradiť obrázkom, ktorý ukladáte?" @@ -6165,11 +6164,12 @@ msgstr "Nastaviť klávesové skratky" #: 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 "Zadajte nový akcelerátor alebo ho vyčistite stlačením Backspace" +msgstr "" +"Aby ste upravili klávesovú skratku, kliknite na zodpovedajúci riadok a zadajte " +"nový akcelerátor alebo ho vyčistite stlačením backspace." #: app/dialogs/preferences-dialog.c:595 msgid "" @@ -6836,9 +6836,8 @@ msgstr "Existuje %d obrázkov s neuloženými zmenami:" #: app/dialogs/quit-dialog.c:183 -#, fuzzy msgid "_Discard Changes" -msgstr "_Zdvihnúť kanál" +msgstr "_Zahodiť zmeny" #: app/dialogs/resize-dialog.c:115 msgid "Canvas Size" @@ -7518,7 +7517,7 @@ msgid "Style of bevel around the statusbar text" msgstr "Štýl okraja okolo textu v stavovom riadku" -#: app/display/gimpstatusbar.c:218 +#: app/display/gimpstatusbar.c:229 msgid "Cancel" msgstr "Zrušiť" @@ -7977,7 +7976,7 @@ "Rýchla hnedá líška\n" "skáče cez lenivého psa." -#: app/text/gimptext-compat.c:106 app/tools/gimptexttool.c:697 +#: app/text/gimptext-compat.c:108 app/tools/gimptexttool.c:699 msgid "Add Text Layer" msgstr "Pridanie textovej vrstvy" @@ -8137,7 +8136,7 @@ msgid "Shape:" msgstr "Tvar:" -#: app/tools/gimpblendoptions.c:261 app/tools/gimppaintoptions-gui.c:417 +#: app/tools/gimpblendoptions.c:261 app/tools/gimppaintoptions-gui.c:419 msgid "Repeat:" msgstr "Opakovanie:" @@ -8269,11 +8268,11 @@ msgid "_Clone" msgstr "_Klonovať" -#: app/tools/gimpclonetool.c:266 +#: app/tools/gimpclonetool.c:288 msgid "Source" msgstr "Zdroj" -#: app/tools/gimpclonetool.c:275 +#: app/tools/gimpclonetool.c:297 msgid "Alignment" msgstr "Zarovnanie" @@ -8910,7 +8909,7 @@ msgid "Brush:" msgstr "Štetec:" -#: app/tools/gimppaintoptions-gui.c:135 app/tools/gimppaintoptions-gui.c:394 +#: app/tools/gimppaintoptions-gui.c:135 app/tools/gimppaintoptions-gui.c:395 msgid "Gradient:" msgstr "Prechod" @@ -8942,11 +8941,11 @@ msgid "Fade out" msgstr "Zoslabenie" -#: app/tools/gimppaintoptions-gui.c:333 app/tools/gimppaintoptions-gui.c:403 +#: app/tools/gimppaintoptions-gui.c:333 app/tools/gimppaintoptions-gui.c:404 msgid "Length:" msgstr "Dĺžka:" -#: app/tools/gimppaintoptions-gui.c:367 +#: app/tools/gimppaintoptions-gui.c:368 msgid "Use color from gradient" msgstr "Použiť farbu z prechodu" @@ -9006,23 +9005,23 @@ msgid "_Rect Select" msgstr "_Obdĺžnikový výber" -#: app/tools/gimprectselecttool.c:224 +#: app/tools/gimprectselecttool.c:226 msgid "Selection: ADD" msgstr "Výber: PRIDAŤ" -#: app/tools/gimprectselecttool.c:227 +#: app/tools/gimprectselecttool.c:229 msgid "Selection: SUBTRACT" msgstr "Výber: ODČÍTAŤ" -#: app/tools/gimprectselecttool.c:230 +#: app/tools/gimprectselecttool.c:232 msgid "Selection: INTERSECT" msgstr "Výber: PRIENIK" -#: app/tools/gimprectselecttool.c:233 +#: app/tools/gimprectselecttool.c:235 msgid "Selection: REPLACE" msgstr "Výber: NAHRADENIE" -#: app/tools/gimprectselecttool.c:468 +#: app/tools/gimprectselecttool.c:414 msgid "Selection: " msgstr "Výber: " @@ -9043,9 +9042,8 @@ msgstr "Stred X:" #: app/tools/gimprotatetool.c:190 -#, fuzzy msgid "Center Y:" -msgstr "Stred X:" +msgstr "Stred Y:" #: app/tools/gimpscaletool.c:91 msgid "Scale" @@ -9218,23 +9216,23 @@ msgid "Create path from text" msgstr "Vytvoriť cestu z textu" -#: app/tools/gimptexttool.c:143 +#: app/tools/gimptexttool.c:145 msgid "Add text to the image" msgstr "Pridanie textu do obrázka" -#: app/tools/gimptexttool.c:144 +#: app/tools/gimptexttool.c:146 msgid "Te_xt" msgstr "Te_xt" -#: app/tools/gimptexttool.c:732 +#: app/tools/gimptexttool.c:744 msgid "GIMP Text Editor" msgstr "GIMP textový editor" -#: app/tools/gimptexttool.c:842 app/tools/gimptexttool.c:845 +#: app/tools/gimptexttool.c:854 app/tools/gimptexttool.c:857 msgid "Confirm Text Editing" msgstr "Potvrdiť editovanie textu" -#: app/tools/gimptexttool.c:866 +#: app/tools/gimptexttool.c:878 msgid "" "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 " @@ -9886,15 +9884,13 @@ msgstr "Klávesnica" #: app/widgets/gimpcontrollerkeyboard.c:230 -#, fuzzy msgid "Keyboard Events" -msgstr "Klávesnica" +msgstr "Udalosti klávesnice" #: app/widgets/gimpcontrollerkeyboard.c:231 #: app/widgets/gimpcontrollerwheel.c:230 -#, fuzzy msgid "Ready" -msgstr "Červená" +msgstr "Pripravený" #: app/widgets/gimpcontrollerwheel.c:68 msgid "Scroll Up (Shift + Control + Alt)" @@ -10029,9 +10025,8 @@ msgstr "Koliesko myši" #: app/widgets/gimpcontrollerwheel.c:229 -#, fuzzy msgid "Mouse Wheel Events" -msgstr "Koliesko myši" +msgstr "Udalosti kolieska myši" #: app/widgets/gimpdataeditor.c:205 msgid "Save" @@ -10056,14 +10051,12 @@ msgstr "Pozadie: %d, %d, %d" #: app/widgets/gimpdock.c:348 app/widgets/gimpdock.c:359 -#, fuzzy msgid "Close all tabs?" -msgstr "_Zatvoriť kartu" +msgstr "Zatvoriť všetky karty?" #: app/widgets/gimpdock.c:354 -#, fuzzy msgid "Close all Tabs" -msgstr "_Zatvoriť kartu" +msgstr "Zatvoriť všetky karty" #: app/widgets/gimpdock.c:361 #, c-format @@ -10071,6 +10064,8 @@ "This window has %d tabs open. Closing the window will also close all its " "tabs." msgstr "" +"Toto okno má otvorené %d kariet. Zatvorením okna tiež zatvoríte všetky jeho " +"karty." #: app/widgets/gimpdock.c:474 msgid "You can drop dockable dialogs here." @@ -10336,7 +10331,7 @@ msgid "This text input field is limited to %d characters." msgstr "Toto textové políčko je obmedzené na %d znakov." -#: app/widgets/gimpselectiondata.c:317 +#: app/widgets/gimpselectiondata.c:319 #, c-format msgid "" "The filename '%s' couldn't be converted to a valid URI:\n" @@ -10347,7 +10342,7 @@ "\n" "%s" -#: app/widgets/gimpselectiondata.c:321 +#: app/widgets/gimpselectiondata.c:323 msgid "Invalid UTF-8" msgstr "Neplatné UTF-8" @@ -10516,11 +10511,11 @@ #: app/widgets/gimpuimanager.c:495 msgid "Your GIMP installation is incomplete:" -msgstr "" +msgstr "Vaša inštalácia GIMP je nekompletná:" #: app/widgets/gimpuimanager.c:497 msgid "Plase make sure the menu XML files are correctly installed." -msgstr "" +msgstr "Prosím, uistite sa, že sú XML súbory menu správne nainštalované." #: app/widgets/gimpundoeditor.c:255 msgid "[ Base Image ]" @@ -10797,18 +10792,3 @@ #: data/misc/gimp.desktop.in.in.h:2 msgid "Image Editor" msgstr "Editor obrázkov" - -#~ msgid "Keep aspect ratio" -#~ msgstr "Pevný pomer strán" - -#~ msgid "Y:" -#~ msgstr "Y:" - -#~ msgid "Transformations do not work on layers that contain layer masks." -#~ msgstr "Transformácie nefungujú na vrstvách, ktoré obsahujú masky." - -#~ msgid "Main Keyboard" -#~ msgstr "Hlavná Klávesnica" - -#~ msgid "Main Mouse Wheel" -#~ msgstr "Koliesko hlavnej myši" diff -uraN gimp-2.2.4/po/uk.gmo gimp-2.2.5/po/uk.gmo --- gimp-2.2.4/po/uk.gmo 2005-01-22 17:33:17.000000000 +0100 +++ gimp-2.2.5/po/uk.gmo 2005-03-08 16:48:49.000000000 +0100 @@ -1,124 +1,219 @@ -'Ojj&jGj9kGPkAkNki)l<lkl@zJz Rz_zdziz nzxz zzCz7z=&{@d{6{d{A|_|3u||<|#|!}@}]} w} }}}}}},}~%~ 8~F~ f~~~~ ~~~ ~.~55I8),+2H {OӀA#%e&41# =Kg  ς܂0&-He+nɃ -҃݃ !4IY bn - :Ss - -ͅ)؅,I#c#!%͆-@S#i-%ч % *8 -R -]h --  -%!6 Xe xω -- 7C JX ` -m x̊  ?Z ku - -ċ ϋ ۋ -  (>6uŒՌ ! 6DTo ~ -*.ߍ*#3"Wz& ݎ,#3W ^l'ޏ-FGT 4 Qr $=ّ6<NA7͒9c?9Bݓ= f^>ŔCJHg 2 B O ]k~ʖ (C Zh m -z   ɗ՗" *7? -EOP -@Y p|   ˙ ؙ -u!dc* zr$ɝٝ&'& N Z dn}  ̞Ҟ0 9CJ R _k{ -H ԟޟ -H!JBl1  -`0v - -ʡա. F -TH_ ʢ ٢   ,8@^e m{ У 36M ɤ$ؤ - ; \(}+)ҥ*!'/Iy*˦-Ԧ %5 EQ3W Ĩ Ѩި;Th o{@-" '4RY ^ jv  Ū ݪ - -'08 P^ -fqҫګ - 0C^u ~$ج $ ) 6 -C -NY isɭ -   2 <FO `,mŮ) $)8?PBcA -5=°Ѱٰ -$"C!f ñͱݱ V+Y("ײ %+ -Q\ds - ȳ ܳ   9Wi -oz -  ش !' 6D_f?nŵٵ#4Ŷ- 9CL \#f- ĸθָĹ ͹ڹ !% 6 @!J lz   -˺ֺ !>!\#~ 9U=?<}=  (,; -hsJ Խ - $? Y;e ɾ   !-5 S]x+ο   *6 H T`u6 7/Mbi x   -  -6 AM_4xE S an - - -(3H Xe 2I b p}1I=b6SJ+ v  6H\r)NK=a*#?N`2"4/ -: -"4:W lx  .?Xlq+w   8 vF ! %A\u   .:K#T x  - -175QH;! .*Bv  5J10,0]1CS,2 9AZA* #v!G2 (-2 -`k~    !1@Uo~ -;;;   (31e{F -K9Q$p5PG-djoemj~>po.w<?S>ttG`'-3:L ]6ko#!EGVmv -    # DQX[k }   $ < -ITZ -cnru -y5  - -N -n y  .>70vEdhjYDk={`P[ Ihg?b Ps P   - # -1 +] 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    +     +     +  -D -O -0j - - - -= -N `  v e ! # G/  w       ^ i LZ* +%KBq&!!0;>l+9K_]7&K/6{24K6f24C2I| +52K7_ZX -K8V@,'#TlxiO51$ Vb k'{U  - )'_: - *%A%Xc~* :G_ tQ+! M ` h rX!v!iB""8`#[#g#,]$z$\%Fb%=%@%(& D&R& d&9&2&0&B#' -f'q''<'8'( 9( E(R(,j(((q(n6)v)o*o*Y*DV+<+w+IP,9,U,*--Yd.Y.//[.0$0Y03 1.=1 -l1"w1 -11011*2R.2 242>23G3'\3'3333I3742U4>424"4505C5(6=6O6!h6N6G6G!74i77747/7*8OI8/8M8/9KG9C9K9@#:=d::.:4:(;.C;Kr;@;(;[(<?<#<<1<O/=)==H=>'>!E>g> -{>a>>>0???R?f? u?L?D?@)@G@&e@#@!@&@.@*(ASAMlAAAAABB*B:BB}BB+B'BCC/C'GCoCg~C#C -D(DFDA[D)D%D%D'E';E)cE2EEE!E(F.[?-\)m\D\*\(]%0]V])g]%]+]:]'^PF^^#^-^# _-_C_L_U_ m_ {__{_`&<`@ca%aa a3a+b0bJb*hbbb(bb;c=cE dQefgg -hhhQhiii%i0jBjU`jWjk$k6kIk -gkrkkk -k!k)k(l/l4@l%ulll&lll m m"mBm%`m mmmPn#ennnnF3oxzoo*pc/ppppp ppZq%r0:rkr!r"rrMr4+s,`ssssvtt!tt't" u&0u%Wu"}uuu2u uv#vGCv#v4v-v6wIwRwnwwrwxxx*x%y,y;Fy)y#y)y=y;8zJtzPzK{P\{I{x{p|%|)|J|$}S>}!%2d9$'ـ;37o'/ρ//81L1~m -.p9 -!̓%%;GaÄ"܄,L(f!(څF -$Qv>߆99<v+Ç -31)e:;ʈ -  -/ :,FQs$ʼn&!) KX!o#)ߊ*+*+V4H=?>~$ی,-Kg.pƍ$7.\6TŽG -_j'w܏T1 PZj+֒>7A7y==0-/^$ޔ(PÕT>;:Q0n,;J*j٘)#Mb ~>:/%Ud~Śؚ,2&DkKΛ; -5 @hL*'P9P1۝x ϡQJa %͢E%93_$( -'22&eȥ!٥" 1!?.a*#٦*@(i|-JF DPHިwos1y'߫fo|'.':%<b5~/!c)j%+F:-!h'##ְ 2;APR'+ !9[[&Ѳ."'(J7s&ȳ)-+Gxs'883&9Y!u0Dȶ .#R[s&!·O)4!^)4`߸:@*{@&b%q0'/#J)n6Jϻ5 S -`k((ټ.(K.t(̽&.,@<m+,־ 1R(n26ʿ4$68[73lhmix@2,%,R g&$"N 4[>6<<C(0wvRtZ1:9rt~"sxV{ - 2!T7k2+;&X)+7U 9c>)5&(\  ] -# -#@ d-qG DNbWuY8'D`4FF!8h( #B!\~$4;Xq% -#!x& }l!+S Jee~=IP;DTd])USBTSP?^|ARyvM>o%L0r7s4 S -= - -: <E      ) + -@ .n  >  % )2 !\ '~ 6 D ";Wh} -]z -<(&$7\sn% -)0Zk. {BQx -vkfT{|@|:P  f!E"{ ##f$.% 7% D%R%j%%R%% & &V']'aU(H()7)K)^)o)"~))),))*'*?* Y*c*<f*M**++ +"<+*_+,++++++ ,,4, 7, E,R,&f,,,,',), -&-8-L-e-~----- -- -k-C2.v.*.. -..#.)/D8/C}//////00&0 >0 L0 -Z0 e0r0L0P071ewZoErk)!Y0'k"*1+M #XF=fqN[|AMv$n-3sw<6CyKW U. Xg'=uE/#T%4t*B[]S&/6=8 F#wYqR"~G?(s 8 -aF;8*lDpg:K;0%Nn(40S^NO&^]t+Efe`rGi m)d2Xd 2nu,[<17 7 M]1mdtAc}e7 /\*s^BG!$; NHC gW{5Jiz4Gj%PL-,V.IB`-%9a5Q|S"(ir,_aNx9U&Ytjlf5vSWXP B(Lbvp7|Oh)c2P2XZ33'<i>+k]t\b;9hlmf?*v~b ZH  -rH@,{3p}b"1<cAV}${\K^=Zh`x\7T.H|w0@J&cJY>xy'3Fg0M>}Ke"u#>hG?rnO!+ I _sQJOW1@jTq-OWD?cd ~6,8Q& zuU:5kCL#nVo@9$_P A -2S=5IeE6@oDf?E}!l\P`(~4{yBzRVz ;xA9bpQ+q6 /ak -:%TKm[j8^s~.RT[| -{$ldDyLz C/j .Fyu<4-qCgvio>::wRUx`' DQJImh__p]MaU)ZVHY!oRI)L +/ +: +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 .>0?EpSdhVj*k?{B`[{ Ih?>b~PT2   +$/20M~  =NC Yef!#'G=     + +  $ C O[`{#iL0l%I9+W #*B%`%B$&0!W!y0>+ !7-Y&9K_4#7&4*K_624KJ624]5C2 +%# I+U5**>P7hZX+T +8@.@4u},+#',KlxiOm541j @/)*Y ),&3 Zho'{UX  + >*<)gH_M +c nz* %c@ 0 ERj{Q+&Rr!h6rvi8[g<,z\LH=@0q7   79L207A"+dD2BIK +<8I'a/!  %2J,f9$:5Zqnvqwo`oY@DJ<*wgI9)UcZYYM3[$Y>53. +IT$g$"  +0._*n!'R6T o{ 4>+G>''*">RevII%3'Y<!<4BR>52 +]=%'%"2EXiNcu!NGGG4-BB5Jx4 /@pO/M/][KC5Ky@=aD'.4, (a . K @ +(F +[o +? ++ B7 Gz #  1 O- )}  ) H 8 O m 2 !    6 S`~ +e!4P"p0"!$@e" &# %0Vo LD_w'@8%V&|#!&B!^&!%&),P.}*!/)AMZ!0"H,k:! ++,X'u'3{Ggi+ $#(*@kA)!%%4'Z')2%8!V(x.uF!d##'&0N(!"   $* (O =x =   ! 4!*B!&m!/!3!!"$1"V"Ar"" ""&#"8#)[#2#!###$*,$NW$$.$=$2)%A\%;%%C%J5&1&3&S&":']'r''J'6' ++(6(U(&s(6(7(3 )K=)5)#)0)8*M**d+s++4+$+N+6J,,.,,E,F(-Lo-+-+-1.1F.x.#.2.0./!6/#X/I|/8//^0zs0m0^\1}1}92}2p53n34^4s[55uY66~788E9*:!C:6e::1::/:#;C;U;i;!;.;;,;0#<*T<,<-<E<* =)K=%u==F=+>>.>?m>)>>+>*?(>?1g?1?1?1?4/@!d@%@@)@%@+ A:9A'tA6A2A1BP8BBB#B#BC(+C-TC-C#CcCx8DDDDD D D EE{0ECEE&F*7G@bG%G#GGH H @H MH}ZHHH I "I4.IcI3}IIII*IJ3J(EJnJ;JJJ$KEKMNsOO +DPOP`P4+Q6`QQQQQ%Q0RGRUeRWRSg)SSSS+S0T +1Ta,saaBab!bAb!b' c4cPcec!cc'c"c& +d1d'Md%ud dd"ddd2 e Fjj*j%jjk;k)Nk#xk)k=k;lJ@lPlKlP(mIym6mxmsn%n)nJn)'o5QoEo'o#op'3p[p8sp8p!p'q!/qQqZqiqqq qqqqrr*r=r Trurr rrrrr!s#s?sQs Xses|sssssTs>vSv!svv5vvvv%w.wMwdTww"w$w'x?x[xqxx;x7x'y/8y/hy#y0y%yz3z=@|̓99WT̈́*+> ]-~3++ (8a #)ņ:;*@fDK +GR +a l,xQ$&C![%}    މ!#8:\)+* +8+d4+ŋ'H+b.0=?,*l%, +G R^q$, 9>\x.׏BZy8!Ґ >\x>!ב%!pA"2Ւ$.-6\T"G Sk +Ô ' w1P9 ʖٖ&E ]gw ј+1E#w>!ڙ +7I7===50s0/՛0$Fk œPlѝQTd>:-0hn'6*VŠޠ+(Ti?ɡ4QRD 2$M>r:'/0D/u`/6E_r)!Х#3,Bo&K %-69d#;§!7 !Xz + + Zh*~'PPS1x֫Ody}ήQ%9J_(( %EC&%)ְ)3*$^(ڲ  +2 +&=#d&"dz! $8<Vgv!"?д/$N7s !̵.'E*c#*+ݶ &#J*h#0@A)k~-JF DRHA";wRʺsyzG#k&%'=evfor!!!ҿ'/6.f' H5h:%5/Q! 4:40PcV)<%f+F:-:!h'#)# $22eAzR'+7c%y'2%K 4lCK[12N&).P"(7.2MLa2&L)s-+x6p"':3 ?&9f!0/'LDt. @ W/c7!8&>U&f!O)M)>w!:64J14& !G&i`:*,.WB&)1FLb!%>0Y'!+'/7#g)6/+H_"vJ* *|6  +.GZ q #(Lj ~$1 +FQb}"(' Pq.&(.(Kt&.,<+R,~*  %F%b)-'&(>2g564<$R8w73$lAhix.8)0b22, %9,_K0  &?$f"J4>C2J627<j<(0 :>&y?<.:L-wv-O`Z :g6-)61thrP~E}sx$V +  $C"c23337g2!i($$+;&D'k+(/7&P)w+$99,f3667% C] 9 ( + +;0 +2l +8 +& +9 +>9 x ) 8 5 (1 7Z   ,  ]  +W #b  #  - * "#F]n}G "/61f22W!Yy8D 4QFF8M` z( #0G!`%((4< +q$|F'J7[;O;4p   +%/1U +##&e+x +}l@+SA- o{!NS# $%e_((=**~+i,r,,4,d,)%-UO.S.T.SN///P/#00|12A24w5y 6M679oo;%<0>6?7O@ACwDEsFS;HEHH +zI<I IIIJ J%J 8JYJjJ\K.lK/KEK)L+;L-gL,L#L=L&$M.KM.zMM.MCM3P>IPP%P)P!P'Q6;QDrQ!Q'Q-R/R+HRtRRRRRR S +S4S\TS]SzT<TU}W X$X(3X"\XXX$X,XXYYK0Y7|YGYnYPkZ7Z:ZB/[Qr[%[)[\2\M\c\.\ \\{\BO]]]]8]&^!/^Q^q^^I^@^'6_'^_F__y` axaCcv^dkdAeejfX+hh6i{i|pjjkjl$mmn +ooup{=qqrJsRSs s sAsRtVtpttRttu u uVuVMvvaw6w5xxuyHzNz7azzzz"z2z"{6{7H{{d{{, |:|K|'[|||"|.|}%}&C}j}|}}}'}}} ~~~+~3?~<s~M~~+ ;9I ) @3T  À&π ?B$Uz6;Ł24 HT cq ̂%&,S l'7ԃ "-Po$Ʉل70Hf z(υ#$8*X#"džE0H bn 2"҇*,2_ q }, و܈,*Kvlj *@ V)d$+Ί(8 @+J2vL4Ogw;ƌ  , 6B<b$ō8K#"o "  7T!t"ҏ !.$P!uɐې  &= R*sБ4"2F^{& ג,+0 \hk p~ ͓:)(?h|"Ք"bz')Ε31,Q^S?-D4rL!53)iXIA6x3#B#7/I*y (š' ' 3$A/f2)ɛ /;J^s6؜0#3H ao45 *.Gv +z.˞ + kCt*֟ + +#,)PAzD@CBС١ + +   + ,;LJP9[|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 ... ] + --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. @@ -140,59 +235,76 @@ -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 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 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.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': +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: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.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 -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.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. +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 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 Text LayerMove 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: +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: -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 Floating SelectionRemove GuideRemove LayerRemove Parasite from ImageRemove Parasite from ItemRemove PathRemove the selected filter from the list of active filters.Rename ChannelRename LayerRename PathRename Saved Tool OptionsRename Text LayerRender StrokeReorder ChannelReorder LayerRepeat LastRepeat:Replace the current selectionReplicateReplicate Gradient SegmentReplicate Gradient SelectionReplicate SegmentReplicate SelectionReset Tool OptionsReset the selected filter to default valuesResizeResize ChannelResize ImageResize LayerResize PathResize Text 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 PathRotate 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 PathScale Text 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 palette fileSelect 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 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 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 ChannelStroke PathStroke SelectionSubtractSubtract 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 opacitySet preserve transSets 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:StipplesStock IDStro_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 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 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 Text LayerTransform 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 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: + +%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/%spointpointstips-locale:Ctranslator-creditsvalue for token %s is not a valid UTF-8 stringwhile parsing token '%s': %sProject-Id-Version: gimp 2.0.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.0 Report-Msgid-Bugs-To: -POT-Creation-Date: 2005-01-22 17:32+0100 -PO-Revision-Date: 2004-04-16 17:59+0200 +POT-Creation-Date: 2005-02-24 17:36+0200 +PO-Revision-Date: 2005-02-23 17:59+0200 Last-Translator: Maxim Dziumanenko Language-Team: Ukrainian MIME-Version: 1.0 @@ -203,11 +315,13 @@ Використання: %s [параметр ...] [файл ...] + --batch-interpreter <процедура> + Процедура, що запускається у командному рядку. --debug-handlers Дозволити налагодження обробників сигналів для некритичних сигналів. --display <дисплей> Використовувати вказаний X-дисплей. --dump-gimprc Показати файл gimprc з типовими параметрами. --no-cpu-accel Не використовувати прискоренні команди CPU. - --no-shm Не використовувати спільну пам'ять між GIMP та модулями. + --no-shm Не використовувати спільну пам'ять між GIMP та доповненнями. --pdb-compat-mode Режим сумісності з базою даних процедур. --session Використовувати альтернативний файл sessionrc. @@ -220,58 +334,75 @@ -d, --no-data Не завантажувати пензлі, градієнти, палітри, візерунки. -f, --no-fonts Не завантажувати шрифти. -g, --gimprc Використовувати альтернативний файл gimprc. - -h, --help Вивід цієї довідки. + -h, --help Вивести цю довідку. -i --no-interface Запустити без інтерфейсу користувача. -s, --no-splash Не показувати вікно запуску. - -v, --version Вивід інформації про версію. -%d шарів%d шарів%d x %d точок%g x %g %s%s копія каналу%s канал -> Виділену ділянкуПовідомлення %sкопія %s%s маска%s%sКлацання: розширення виділення%s%sПеретягування: переміщення та стиснення(%0.3f, %0.3f, %0.3f)(Немає)(Це консольне вікно закриється протягом десяти секунд) -(Неназваний буфер)(Неназваний шаблон)(неправильна послідовність UTF-8 у рядку)(немає)1 шар1 шар<%s><<неправильно>><Немає модулів>Для оптимальної продуктивності GIMP, деякі параметри можуть бути змінені.The GIMP - GNU Image Manipulation Program + -v, --version Вивести інформацію про версію. +%d шарів%d т/дюйм%d т/дюйм, %s%d шарів%d хвилин%d секунд%d x %d т/дюйм%d x %d т/дюйм, %s%d x %d точок%g x %g %s%p%s копія каналу%s канал -> Виділену ділянкуПовідомлення %sкопія %s%s маска%s%sКлацання: розширення виділення%s%sПеретягування: переміщення та стиснення(%0.3f, %0.3f, %0.3f)(Немає)(Це консольне вікно закриється протягом десяти секунд) +(Неназваний буфер)(Неназваний шаблон)(Міняється)(не змінено)(неправильна послідовність UTF-8 у рядку)(змінено)(немає)1 шар1 шар15 градусів %s16:1 (1600%)1:1 (100%)1:16 (6.25%)1:2 (50%)1:4 (25%)1:8 (12.5%)2:1 (200%)2D перетворення...4:1 (400%)8:1 (800%)<%s><<неправильно>><Немає модулів>Для оптимальної продуктивності GIMP, деякі параметри можуть бути змінені.The GIMP - GNU Image Manipulation Program Copyright (C) 1995-2004 -Spencer Kimball, Peter Mattis та команда розробки GIMP.Файл, що містить підказки не вдається проаналізувати!Файл, що містить підказки не знайдено!Про програму GIMPАктивні фільтриДодавання альфа-каналуДодавання точкиДодавання каналуДодавання напрямнихДодавання горизонтальної напрямноїДодавання шаруДодавання маску шаруДодавання контуруДодавання контуруДодавання текстового шаруДодавання вертикальної напрямноїДодавання маски до шаруДодавання тексту до зображенняДодати поточний колір в історію кольорівДодати вибраний фільтр до списку активних фільтрів.Додати до поточного виділенняДодавання теми '%s' (%s) -ДодаванняКорегування яскравості та контрастностіКорегування балансу кольорівКорегування кривих кольоруКорегування рівнів кольорівКорегування яскравості та контрастностіКорегування балансу кольорівКорегування кривих кольоруКорегування рівнів кольорівКорегування відтінку та насиченостіАвтоматичний підбір рівнівВирівнюванняВплив:Область застосування %sАерографАерограф із змінним натискомЗ вирівнюваннямВирівнюванняВсі каналиВсі зображення і дані для скасування дій, котрі не помістяться в "Tile кеш", будуть записані у файл підкачки. Цей файл повинен знаходитись в локальній файловій системі з достатньою кількістю вільного місця (кілька сот Мб). В системах UNIX ви можете використовувати системний каталог тимчасових файлів ("/tmp" чи "/var/tmp").Дозволити заповнення абсолютно прозорих ділянокДозволити виділення абсолютно прозорих ділянокАльфаАльфа-канал -> Виділену ділянкуПрозорість:Прикріплення плаваючого виділенняКут:ЗгладжуванняЗовнішній виглядЗастосування маску шаруЗастосування порігВи дійсно бажаєте видалити "%s" зі списку зображень на диску?Ви дійсно бажаєте видалити шаблон "%s" зі списку та з диску?Запитувати підтвердження перед закриванням незбереженого зображення.Долучення шумуДодавання шуму до зображенняДолучення шуму до елементаАвтор:АвтоАвтозавантаженняДоступні фільтриНаявні типи:ТлоВстановити колір тла:Тло: %d, %d, %dВикористовувати для визначення ділянок заповнення усі видимі шариВикористовувати для виділення усі видимі шариПозадуРівніЧорний:Градієнтне заповненняГрадієнт: Градієнт: не застосовне для індексованих зображень.Зливання...СинійСиній:РозмиванняРізкість та розмитістьОбмеження каналуМежа виділенняРозмір межі:Яскравість-контрастЯскравість-контраст не діє на індексовані зображення.Редактор пензлівТеки пензлівUI пензліПензель:ПензліМеню пензлівЗаповненняБуфериМеню буферівЗатемнювачButtCMYK_Стовпчиків:Калібрування роздільної здатності монітораНе вдається скасувати %sСкасуватиНе можна додавати маску шару, яка відрізняється розмірами від вказаного шару.Не можна додавати маску до шару, який не має альфа-каналу.Не можна додавати маску до шару, який не є частиною зображення.Не вдається прикріпити цей шар, тому що це не плаваюче виділення.Не можна перетворювати у палітру з більш ніж 256 кольорами.Не вдається створити новий шар з плаваючого виділення, тому що воно належить масці шару чи каналу.Не вдається створити теку "%s": %sНе вдається створити файл попереднього переглядуНе вдається кадрувати, тому що виділена ділянка порожня.Не вдається розкрити ${%s}Не вдається вирізати/скопіювати, тому що виділена ділянка порожня.Не можна піднімати шар, у якого немає альфа-каналу.Зберегти неможливо, нічого не вибрано!Не можна обводити порожній канал.Неможливо обвести порожній контур.Розмір полотнаЦентр X:По центруЗміна кольору тлаЗміна кольору переднього плануЗміна роздільної здатностіЗміна одиниць вимірюванняЗміна перспективи слою чи виділенняКаналОзнаки каналуНазва каналу:Канал не можна опустити ще нижче.Канал не можна підняти ще вище.Канал -> ВиділенеКанал:КаналиМеню каналівСтиль обведення ділянокОчисткаОчищення каналуКлацніть "Продовжити" щоб застосувати вказані вище установки.Клацніть "Продовжити" щоб створити ваш особистий каталог GIMP.Клацніть "Продовжити" щоб перейти до встановлення у користувача.Натисніть, щоб об'єднати цю точку з вибраною кінцевою точкою.Натисніть, щоб створити нову точку. (спробуйте натиснути SHIFT).Натисніть, щоб створити новий компонент контуру.Натисніть, щоб створити новий контур.Натисніть, щоб видалити цю точку.Натисніть, щоб створити точку у контурі. (спробуйте натиснути SHIFT)Натисніть, щоб зробити цю точку кутовою.Натисніть, щоб відкрити контур.Натисніть, щоб вибрати контур для редагування.Клацніть щоб оновити попередній перегляд -Натисніть з %s, щоб примусово оновити переглядНатисніть та перетягніть, щоб змінити лінію. З SHIFT важелі переміщаються симетрично.Натисніть та перетягніть, щоб перемістити точку.Натисніть та перетягніть, щоб перемістити точки.Натисніть та перетягніть, щоб перемістити елемент. (спробуйте натиснути SHIFT)Натисніть та перетягніть, щоб перемістити важіль. (спробуйте натиснути SHIFT)Натисніть та перетягніть, щоб перемістити контур.Клацання: виділенняКлацання: виділення Перетягування: переміщенняВідсічений по нижньому шаруВідсічений по зображеннюШтампЗакрити цей діалогКолірБаланс кольорівКольорові екранні фільтриПіпеткаІнформація про піпеткуБаланс кольорів діє лише на шари у форматі RGB.Колір:_Тип фарбування для сегмента_Тип фарбування виділеної ділянкиТонуванняТонування діє лише на шари у форматі RGB.Тонування зображенняТонування зображенняМапа кольорівСтовпчики:_Контраст:Настройка кольорових екранних фільтрівНастройка сіткиНастройка сітки зображенняПідтвердження розміру зображенняПідтвердження зміни текстуЗ'єднання контурівКонстантаОбмеженняВигляд вказівника змінюється в залежності від вибраного інструменту. Ця функція початково ввімкнена, але її можна вимкнути.ПродовжитиЗа участюПеретворенняПеретворення кутаПеретворення зображення у відтінки сірогоПеретворення зображення у індексованеПеретворення зображення в індексованеПеретворення зображення у RGBРозмиванняТип дії %sКопіювання з буфера з назвоюКопіювання файлу "%s" з "%s"...Авторські права:Пошкоджений сегмент %d у файлі градієнту '%s'.Не вдається створити '%s': %sНе вдається створити тимчасовий файл '%s': %sНе вдається видалити "%s": %sНе вдається відкрити '%s' для зчитування: %sНе вдається відкрити '%s' для запису: %sНе вдається відкрити файл мініатюри '%s': %sНе вдається прочитати %d байт з '%s': %sПомилка позиціювання у XCF-файлі: %sКількість:Створення нового шаблонуСтворення нового зображенняСтворення нового шаруСтворення нового шаблонуСтворити нове вікно для цього зображенняСтворити нове зображення з шаблонуСтворити новий шаблонСтворення та редагування зображень чи фотографійСтворення та редагування контурівСтворення теки "%s"...КадруванняКадрування і зміна розміруІнформація про кадрування та зміну розміруКадрування зображенняКадрування шаруКадрування чи зміна розміру зображенняКадрування: Лише перехрестяКубічна (Якісніше)Тип кривоїКривіКриві для індексованих зображень не можна настроїти.НетиповийВирізанняВирізання в буфер з назвоюБірюзовийБірюзовий:ПунктирДата:Зовнішній вигляд у повноекранному режиміЗовнішній вигляд з звичайному режиміТипова сіткаПараметри сіткиВидалення точкиВидалення маску шаруВидалення сегментуВидалення шаблонуВидалити параметри...Видалити вибраний шаблонВидалити це зображенняЗнебарвленняЗнебарвлення діє лише на шари у форматі RGB.ОписСтворенняСтан пристроюПристроїМеню діалогівРізницяЧистий колірВидалення текстової інформаціїВідображенняВікно навігаціїПроцедури відображенняВідображення [%0.6f, %0.6f]РозчиненняВідстань:Відстань: %0.6fПараметри змішуванняДіленняВи дійсно бажаєте повернутись до початкових параметрів?Історія зображенняДокументиМеню списку зображеньОсвітлювачОсвітлення чи затемнення обведенняОсвітлення/затемненняПеретягування точкиПеретягування точокПеретягування кривоїПеретягування важеляПеретягування контуруПеретягування: переміщенняМалювання перомМалюванняПроцедури малюнкуОпускання нового шаруОпускання нового контуруЧерез брак шрифтів функціональні можливості тексту недоступні.Дублювати вибраний шаблонНе вдається скасуватиПравкаПравка ознак каналуПравка кольору каналуПравка елементу палітри кольорівЗміна ознак шаруТип діїПравка кольору палітриПравка ознак контуруПравка шаблонуПроцедури редагуванняРедагувати вибраний шаблонВиділення еліпсомПорожній каналПорожній шарПорожній контурПорожній текстовий шарПорожня назва змінної у файлі середовища %sПоказувати підказки при запуску GIMP.Показувати контекстні підказки.ГігантськийВведіть назву для об'єднаної палітриВведіть назву для збережених параметрівВведіть назву цього буферуВведіть назву цього шаблонуВведіть нову назву для збережених параметрівСередовищеТеки середовищаВирівнюванняВирівнювання не діє на індексовані шари.Стирання до тла чи прозоростіГумкаКонсоль помилокМеню консолі помилокПомилка збереження XCF файлу: %sПомилка аналізу "%s" у рядку %d: %sПомилка при зчитуванні '%s': %sПомилка при записуванні '%s': %sПомилка запису XCF: %sПомилка запису у файл "%s": +Spencer Kimball, Peter Mattis та команда розробки GIMP.Файл, що містить підказки не вдається проаналізувати!Файл, що містить підказки не знайдено!Вже існує файл з назвою '%s'._Додати до виділення_КутПро програму GIMPДіяРобити активним зображення під _фокусомАктивні фільтриАдаптивна інтерполяціяДодатиДодати альфа-_каналДодавання альфа-каналуДодавання точкиДодавання каналуДодавання кольору до карти кольорівДодавання напрямнихДодавання напрямнихДодавання горизонтальної напрямноїДодати маску ша_ру...Додавання шаруДодавання маски шаруДодавання контуруДодавання контуруДодавання текстового шаруДодавання вертикальної напрямноїДодавання маски до шаруДодати колір з тлаДодати колір з основногоДодавання маски шаруДодавання тексту до зображенняДодати поточний колір в історію кольорівДодати вибраний фільтр до списку активних фільтрів.Додати до палітри %sДодати до поточного виділенняДодавання теми '%s' (%s) +ДодаванняДодаткові способи керуванняКорегування яскравості та контрастностіКорегування балансу кольорівКорегування кривих кольоруКорегування рівнів кольорівКорегування яскравості та контрастностіКорегування балансу кольорівКорегування кривих кольоруКорегування рівнів кольорівКорегування відтінку, освітленості та насиченостіКорегування відтінку та насиченостіАвтоматичний підбір рівнівВирівнюванняРозширені параметриВплив:Область застосування %sАерографАерограф із змінним натиском_Альфа-канал -> ВиділенеЗ вирівнюваннямВирівнюванняВсі каналиВсі файлиВсі файли (*.*)Всі зображення і дані для скасування дій, котрі не помістяться в "Tile кеш", будуть записані у файл підкачки. Цей файл повинен знаходитись в локальній файловій системі з достатньою кількістю вільного місця (кілька сот Мб). В системах UNIX ви можете використовувати системний каталог тимчасових файлів ("/tmp" чи "/var/tmp").Дозволити заповнення абсолютно прозорих ділянокДозволити виділення абсолютно прозорих ділянокДозволити збільшення %sАльфаАльфа-канал -> Виділену ділянкуПрозорість:Зображення такого розміру займе більше пам'яті, ніж вказано у розділі параметрів "Максимальний розмір зображення" (%s)._АнімаціяПрикріплення плаваючого виділенняПрикріпити плаваючий шарПрикріплення плаваючого виділенняКут:Антигумка %sЗгладжуванняЗовнішній виглядЗастосування маски шаруЗастосувати _маску шаруЗастосування порігЗастосування маски шаруВи дійсно бажаєте видалити "%s" зі списку зображень на диску?Ви дійсно бажаєте видалити шаблон "%s" зі списку та з диску?Як у п_араметрахЗапитувати підтвердження перед закриванням незбереженого зображення.Пропорції:Пропорції:Долучення шумуДодавання шуму до зображенняДолучення шуму до елементаДолучення шумуАвтор:АвтоСлідувати за _активним зображеннямАвтозменшенняАвтоскорочення виділенняЗмінювати розмір вікнаАвтозавантаженняАвтоматичне видаленняДоступні фільтриНаявні типи:Заповнення кольором тла_Яскравість-контрастБу_фериТлоКолір тлаВстановити колір тла:Тло: %d, %d, %dНазад (коригуюче)Використовувати для визначення ділянок заповнення усі видимі шариВикористовувати для виділення усі видимі шариПозадуРівніБілінійнаЧорна-білийЧорний:Кольори крайніх точок з_мішуванняГ_радієнтне заповненняГрадієнтне заповнення_Непрозорість крайніх точок змішуванняГрадієнт: Градієнт: не застосовне для індексованих зображень.Заливання...СинійСиній:РозмиванняРізкість та розмитістьМе_жа...Обмеження каналуМежа виділенняРозмір межі:Яскравість-контрастЯскравість-контраст не діє на індексовані зображення.ПензельРедактор пензлівТеки пензлівUI пензліПензель:ПензліМеню пензлівЗаповненняБуфериМеню буферівЗатемнювачButtЗа розширеннямВідновлюючи зображення до його стану на диску ви втратити усі зміни, включаючи всю інформацію про скасування операцій.CMYK_Калібрувати_Піпетка_Стовпчиків:_Об'єднанняКалібрування роздільної здатності монітораНе вдається скасувати %sРозмір п_олотна...СкасуватиПрибрати напрямнуНе можна додавати маску шару, яка відрізняється розмірами від вказаного шару.Не можна додавати маску до шару, який не має альфа-каналу.Не можна додавати маску до шару, який не є частиною зображення.Не вдається прикріпити цей шар, тому що це не плаваюче виділення.Не можна перетворювати у палітру з більш ніж 256 кольорами.Не вдається створити новий шар з плаваючого виділення, тому що воно належить масці шару чи каналу.Не вдається створити теку "%s": %sНе вдається створити файл попереднього переглядуНе вдається кадрувати, тому що виділена ділянка порожня.Не вдається розкрити ${%s}Не вдається вирізати/скопіювати, тому що виділена ділянка порожня.Не можна піднімати шар, у якого немає альфа-каналу.Зберегти неможливо. Нічого не виділено.Не можна обводити порожній канал.Неможливо обвести порожній контур.Розмір полотнаКолір _тла навколо зображення:Центр X:Центр Y:По центруЗміна кольору тлаЗміна елементу карти кольорівЗміна кольору переднього плануЗміна роздільної здатностіЗміна одиниць вимірюванняЗмінити розмір при друкуванніЗмінити лише поточний шар чи контурЗмінити колір тла сіткиЗмінити колір переднього плану сіткиЗміна індексованої палітриЗміна перспективи слою чи виділенняНе вдається змінити комбінації клавіші.КаналОзнаки каналуНазва каналу:Канал не можна опустити ще нижче.Канал не можна підняти ще вище.Колір каналуШар вже у самому низу.Шар вже на самій верхівці.Канал -> Виді_ленняКанал -> ВиділенеКанал -> ВиділенеКанал:КаналиМеню каналів_Розмір клітин:Стиль обведення ділянокКолоО_чиститиОчисткаОчищення каналуОчистити історію скасувань дійВидалити весь текстОчистити помилкиОчистити історію скасувань...Клацніть "Продовжити" щоб застосувати вказані вище установки.Клацніть "Продовжити" щоб створити ваш особистий каталог GIMP.Клацніть "Продовжити" щоб перейти до встановлення у користувача.Клацніть "Продовжити", щоб перейти до встановлення у користувача.Натисніть, щоб об'єднати цю точку з вибраною кінцевою точкою.Натисніть, щоб створити нову точку. (спробуйте натиснути SHIFT).Натисніть, щоб створити новий компонент контуру.Натисніть, щоб створити новий контур.Натисніть для створення файлу переглядуНатисніть, щоб видалити цю точку.Натисніть, щоб створити точку у контурі. (спробуйте натиснути SHIFT)Натисніть, щоб зробити цю точку кутовою.Натисніть, щоб відкрити контур.Натисніть, щоб вибрати контур для редагування.Клацніть щоб оновити попередній перегляд +Натисніть з %s, щоб примусово оновити переглядНатисніть та перетягніть, щоб змінити лінію. З SHIFT важелі переміщаються симетрично.Натисніть та перетягніть, щоб перемістити точку.Натисніть та перетягніть, щоб перемістити точки.Натисніть та перетягніть, щоб перемістити елемент. (спробуйте натиснути SHIFT)Натисніть та перетягніть, щоб перемістити важіль. (спробуйте натиснути SHIFT)Натисніть та перетягніть, щоб перемістити контур.Клацання: виділенняКлацання: виділення Перетягування: переміщенняВідсікати на межі зображенняБуфер обмінуВідсічений по нижньому шаруВідсічений по зображеннюШтампЗакрити %s?Закрити усі вкладкиЗакрити усі вкладкиЗакрити цей діалог_Копіювати контурКол_ьориКолірБаланс кольорівКольорові екранні фільтриПіпеткаІнформація про піпетку_Баланс кольорів...Змі_шування кольорів:Баланс кольорів діє лише на шари у форматі RGB.Очистка кольоруНомер кольору:Колір:_Мапа кольорівРе_жим:_Тонування_Тип фарбування для сегмента_Тип фарбування виділеної ділянкиТонуванняТонування діє лише на шари у форматі RGB.Тонування зображенняТонування зображенняМапа кольорівРедактор мапи кольорівМеню мапи кольорівСтовпчики:_Коментар:Коментар_Контраст:_РозмиванняПараметри кольорових екранних фільтрівНалаштувати _додаткові пристрої вводу...Налаштувати с_ітку...Налаштовування сіткиНалаштовування сітки зображенняКомбінації клавішНалаштувати _комбінації клавіш...Параметри вибраного фільтраНалаштовування вибраного фільтра: %sПідтвердження розміру зображенняПідтвердження масштабуванняПідтвердження зміни текстуЗапитувані при закриванні н_езбережених зображеньВикористані клавішіКонічна (асиметрична)Конічна (симетрична)З'єднання контурівКонстантаОбмеженняКонтекстВигляд вказівника змінюється в залежності від вибраного інструменту. Ця функція початково ввімкнена, але її можна вимкнути.ПродовжитиЗа участюПеретворенняПеретворення кутаПеретворення зображення у відтінки сірогоПеретворення зображення у індексованеПеретворення зображення в індексованеПеретворення зображення у RGBПеретворення зображенняПеретворення у індексоване (2 етап)...Перетворення у індексоване (3 етап)...Перетворення зображення у індексоване...РозмиванняТип дії %sКопіювання з буфера з назвоюКопіювати ви_димеКопіювання файлу "%s" з "%s"...Авторські права:Пошкоджений сегмент %d у файлі градієнту '%s'.Не вдається створити '%s': %sНе вдається створити тимчасовий файл '%s': %sНе вдається видалити "%s": %sНе вдається знайти програму перегляду довідки GIMP.Не вдається відкрити '%s' для зчитування: %sНе вдається відкрити '%s' для запису: %sНе вдається відкрити файл мініатюри '%s': %sНе вдається прочитати %d байт з '%s': %sПомилка позиціювання у XCF-файлі: %sНе вдається запустити програму перегляду довідки GIMP.Кількість:Ка_друвати шарС_творити нову панельСтворення нового шаблонуСтворення нового зображенняСтворення нового шаруСтворення нового шаблонуСтворити нове вікно для цього зображенняСтворити нове зображення з шаблонуСтворити новий шаблонСтворення та редагування зображень чи фотографійСтворення та редагування контурівСтворити криву з текстуСтворити виділену ділянку з контуруЗавантаження попереднього перегляду...Створення теки "%s"...КадруванняКадрування і зміна розміруІнформація про кадрування та зміну розміруКадрування зображенняКадрування шаруКадрування зображенняКадрування чи зміна розміру зображенняКадрування: Лише перехрестя_Вирізати_Вирізати у буфер з назвою...Кубічна (Якісніше)_СтанПоточна ширина:Лише поточний шарПоточний станПоточна ширина:Курсор_Вигляд курсору:Вигляд _курсору:Тип кривоїКривіКриві для індексованих зображень не можна налаштувати.НетиповийВибраний колірВласний градієнтВ_ласний колір тла:ВирізанняВирізання в буфер з назвоюБірюзовийБірюзовий:Д_ублювати пензельД_ублювати каналД_ублювати градієнтД_ублювати шарД_ублювати палітруД_ублювати контурД_ублювати візерунокД_ублювати шаблон...ТемнийЛише темнеТире-крапка-крапка...Тире-крапка...Шаблон лінії:Тип лінії:ПунктирДата:НалагодженняЗовнішній вигляд у повноекранному режиміЗовнішній вигляд з звичайному режиміТипова сіткаПараметри сіткиТипова _інтерполяція:Розмір перегляду _шарів та каналів:_Типовий поріг:Видалення точкиВидалення точкиВидалити ма_ску шаруВидалення маски шаруВидалити об'єктВидалення сегментуВидалення шаблонуВидалити пензельВидалити каналВидалити колірВидалити градієнтВидалення шаруВидалення маску шаруВидалення палітриВидалити контурВидалення візерункаВидалити параметри...Видалити вибраний буферВидалити вибраний шаблонВидалити це зображенняВидалення векторуНе вдається видалити "%s": %sЧасті крапкиЗнебарвленняЗнебарвлення діє лише на шари у форматі RGB.ОписСтворенняСтан пристроюПристроїДіалогиМеню діалогівРомбРізницяЧистий колірСховати маску шаруВимкнення швидкої маскиВидалення текстової інформаціїВідображенняВікно навігаціїЕкранні _фільтри...Процедури відображенняТип зображення:Відображення [%0.6f, %0.6f]РозчиненняВідстань:Відстань: %0.6fПараметри змішуванняДіленняВиконати _нове встановленняВи дійсно бажаєте повернутись до типових параметрів усіх фільтрів?Ви дійсно бажаєте повернутись до початкових параметрів?Бажаєте замінити це зображення тим, яке зараз зберігаєте?_Не зберігатиПанельН_едавні зображенняНедавні зображенняДокументиМеню списку зображеньО_світлення/затемненняОсвітлювачОсвітлення чи затемнення обведенняОсвітлення/затемненняПодвійний пунктирПеретягування точкиПеретягування точокПеретягування кривоїПеретягування важеляПеретягування контуруПеретягування: переміщенняМалювання перомМалюванняРежим малюванняПроцедури малюнкуОпускання нового шаруОпускання нового контуруЧерез брак шрифтів функціональні можливості тексту недоступні.Відображати діїДублювати пензельДублювати каналДублювати градієнтДублювати шарДублювання палітриДублювати контурДублювання візерункуДублювати вибраний шаблонНе вдається скасувати_Експорт контуру...Д_уже малийПоведінка біля межВиділення ме_жПравкаПравка ознак каналуПравка кольору каналуПравка елементу палітри кольорівПравка елементу палітри кольорівЗміна ознак шаруПравка маски шаруТип діїПравка кольору палітриПравка ознак контуруЗміна ознак швидкої маскиЗміна кольору швидкої маскиПравка шаблонуПравка пензля...Правка ознак каналуПравка кольоруПравка елементу палітри кольорів #%dПравка градієнтаПравка ознак шаруПравка палітриПравка ознак контуруПравка візерунку...Процедури редагуванняРедагувати вибраний шаблонВиділення еліпсомПорожній каналПорожній шарПорожній контурПорожній текстовий шарПорожня назва змінної у файлі середовища %s_ПокращенняУвімкнення швидкої маскиУвімкнути розмивання _прозоростіУвімкнути спосіб керуванняПоказувати підказки при запуску GIMP.Показувати контекстні підказки.ГігантськийВведіть назву для об'єднаної палітриВведіть назву для збережених параметрівВведіть назву цього буферуВведіть назву цього шаблонуВведіть нову назву для збережених параметрівВведіть адресу (URI):СередовищеТеки середовищаВирівнюванняВирівнювання не діє на індексовані шари.Стирання до тла чи прозоростіГумкаКонсоль пом_илокКонсоль помилокМеню консолі помилокПомилка збереження XCF файлу: %sПомилка аналізу "%s" у рядку %d: %sПомилка при зчитуванні '%s': %sПомилка при зчитуванні файлу пензля '%s': %sПомилка при записуванні '%s': %sПомилка запису XCF: %sПомилка запису у файл "%s": %sПомилка при записуванні у '%s': %sПомилка при записуванні у тимчасовий файл '%s': %s Файл не був створений.Помилка при записуванні у тимчасовий файл '%s': %s -Оригінальний файл не був змінений.ПомилкиРозширений при необхідностіЕкспорт контуру в SVGЕкспозиція:Додаткові пристрої вводуОсновний у фоновий (HSV за годинниковою)Основний у фоновий (HSV проти годинникової)Передній план до тла (HSV)Передній план до тла (RGB)Передній план до прозорогоПер.план/тлоКолір пер.плану/тлаНе вдається імпортувати з '%s': %sКритична помилка аналізу файлу пензля '%s': файл ймовірно обірваний.Критична помилка аналізу файла пензля '%s': файл пошкоджений.Критична помилка аналізу файла пензля '%s': файл не є файлом пензля GIMP.Критична помилка аналізу файла пензля '%s': невідома версія пензля GIMP.Критична помилка аналізу файлу пензля '%s': невідома глибина %d.Критична помилка аналізу файлу пензля '%s': невідома версія %d.Критична помилка аналізу файла пензля '%s': непідтримуваний глибина кольору %d -Пензлі GIMP повинні бути RGBA або у відтінках сірого.Критична помилка аналізу файла градієнта '%s': Файл пошкоджений.Критична помилка аналізу файла градієнта '%s': файл не є файлом градієнта GIMP.Критична помилка аналізу файлу палітри '%s': відсутній заголовок.Критична помилка аналізу файлу палітри '%s': відсутній заголовок. +Оригінальний файл не був змінений.ПомилкиСередовищеДу_же великийРозширений при необхідностіЕкспорт контуру в SVGЕкспортувати усі контури цього зображенняЕкспортувати поточний контурЕкспозиція:Додаткові пристрої вводуЗа розширеннямЗаповнення кольором переднього плануОсновний у фоновий (HSV за годинниковою)Основний у фоновий (HSV проти годинникової)Передній план до тла (HSV)Передній план до тла (RGB)Передній план до прозорогоПередній план до прозорогоПер.план/тлоКолір пер.плану/тлаВідпускання плав.виділенняЗахоплення плав.виділенняПлав.виділ. у шар_До розмірів шарівПоступовий перехідНе вдається імпортувати градієнт з '%s': %sНе вдається імпортувати з '%s': %sКольоровийКритична помилка аналізу файла пензля '%s': Байтів = 0.Критична помилка аналізу файлу пензля '%s': файл ймовірно обірваний.Критична помилка аналізу файла пензля '%s': файл пошкоджений.Критична помилка аналізу файла пензля '%s': Висота = 0.Критична помилка аналізу файла пензля '%s': файл не є файлом пензля GIMP.Критична помилка аналізу файла пензля '%s': невідома версія пензля GIMP.Критична помилка аналізу файла пензля '%s': невідома версія пензля GIMP.Критична помилка аналізу файлу пензля '%s': невідома глибина %d.Критична помилка аналізу файлу пензля '%s': невідома версія %d.Критична помилка аналізу файла пензля '%s': непідтримуваний глибина кольору %d +Пензлі GIMP повинні бути RGBA або у відтінках сірого.Критична помилка аналізу файлу пензля '%s': Ширина = 0.Критична помилка аналізу файла градієнта '%s': Файл пошкоджений.Критична помилка аналізу файла градієнта '%s': файл не є файлом градієнта GIMP.Критична помилка аналізу файлу палітри '%s': відсутній заголовок.Критична помилка аналізу файлу палітри '%s': відсутній заголовок. Чи потрібно конвертувати цей файл з формату DOS?Критична помилка аналізу файлу палітри '%s': помилка читання у рядку %d.Критична помилка при аналізі файлу візерунку '%s': не вдається прочитати пензля %d байт: %sКритична помилка при аналізі файлу візерунку '%s': невідома версія формату %d.Критична помилка при аналізі файлу візерунку '%s': непідтримувана глибина %d. -Шаблони GIMP повинні бути у відтінках сірого або RGB.Розмивання каналуРозмивання виділеної ділянкиРозмити межу виділеного наФайлові операціїЗаповнення каналуНепрозорість заповнення:Тип заповнення %sЗаповнення кольором тлаЗаповнення кольором переднього плануЗаповнення візерункомЗаповнення прозоримЗаповнення білимЗаповнення кольоровим градієнтомЗаповнення кольором чи візерункомОптимальне заповненняВ результаті, об'єднаний шар має бути:Пошук суміжних ділянокПошук схожих кольорівЗведення зображенняДзеркалоВіддзеркалення каналуВіддзеркалення шаруВіддзеркалення контуруВіддзеркалення текстового шаруТип віддзеркалення: %sВіддзеркалення шарів або виділених ділянокВіддзеркалення...Плаваюче виділенняПлаваюче виділення у шарПлаваючі виділенняФокус вводуТекаТекиТеки шрифтівШрифт UIШрифтиМеню шрифтівДля правильного встановлення GIMP, повинна бути створена тека '%s'.Переднього плануКольори переднього плану та тла. Чорний і білий квадратики скидають кольори. Стрілки міняють кольори місцями. Подвійне клацання викликає діалог вибору кольору.Встановити колір переднього плану:Передній план: %d, %d, %dВильне виділенняВільнаВиділення зв'язаної ділянкиGIMPРозширення GIMPПовідомлення GIMPНастройка швидкодії GIMPДоповнення GIMPЗапуск GIMPТекстовий редактор GIMPПорада дня GIMPВстановлення GIMP для користувачаGIMP не може ініціалізувати графічний інтерфейс. -Перевірте правильність настройок вашого графічного середовища.GIMP неправильно встановлений для поточного користувача, +Шаблони GIMP повинні бути у відтінках сірого або RGB._Розмивання...Розмивання каналуРозмивання виділеної ділянкиРозмивати межіРозмити межу виділеного наФайл_Діалог відкривання файлуФайлові операціїТип файлуФайл існуєФайл обрізанийЗаповнення каналуНепрозорість заповнення:Тип заповнення %sЗаповнити схожі кольориЗаповнити прозорі ділянкиЗаповнити все виділенеЗаповнення кольором тлаЗаповнення кольором _тлаЗаповнення кольором переднього плануЗаповнення ві_зерункомЗаповнення візерункомЗаповнення прозоримЗаповнення білимЗаповнення кольором _переднього плануЗаповнити кольором _тлаЗаповнення кольоровим градієнтомЗаповнення кольором чи візерункомОптимальне заповненняФіль_триОб'єднаний шар має бути:Пошук суміжних ділянокПошук схожих кольорівПідганяти до розміру вікнаПідігнати до розміру вікнаПідганяти до розміру вікнаПідганяти до розміру вікнаФіксоване відношення сторінФіксований розмірЗведення зображенняДзеркалоВіддзеркалення каналуВіддзеркалення шаруВіддзеркалення контуруВіддзеркалення текстового шаруТип віддзеркалення: %sВіддзеркалити _горизонтальноВіддзеркалити _вертикальноВіддзеркалення зображенняВіддзеркалення шарів або виділених ділянокВіддзеркалення...Віддзеркалення...Плаваюче виділенняПлаваюче виділенняПлаваючий шарПлаваюче виділення +(%s)Плаваюче виділення у шарПлаваюче виділення у шарПлаваючі виділенняЗмішування кольорів за Флойдом-Стейнбергом (звичайне)Змішування кольорів за Флойдом-Стейнбергом (зменшене розтікання)Фокус вводуТекаТекиТеки шрифтівШрифт UIШрифт:ШрифтиМеню шрифтівДля правильного встановлення GIMP, повинна бути створена тека '%s'.Використовувати автоінструктуванняПереднього плануКольори переднього плану та тла. Чорний і білий квадратики скидають кольори. Стрілки міняють кольори місцями. Подвійне клацання викликає діалог вибору кольору.Колір переднього плануВстановити колір переднього плану:Передній план: %d, %d, %dВперед (традиційне)З конт_уруВильне виділенняВильне виділенняВільнаЗ т_емиОтримувати роздільну здатність від _віконної системи (зараз %d x %d т/д)Зліва направоСправа налівоЗ виділенняЗ темиВиді_лення зв'язаної ділянкиНа весь _екранВиділення зв'язаної ділянкиGIMPРозширення GIMPПовідомлення GIMPПараметри швидкодії GIMPДоповнення GIMPЗапуск GIMPТекстовий редактор GIMPПорада дня GIMPВстановлення GIMP для користувачаФайл XCF GIMPGIMP не може ініціалізувати графічний інтерфейс. +Перевірте правильність параметрів вашого графічного середовища.Перегляд довідки GIMPGIMP неправильно встановлений для поточного користувача, тому що при встановленні використовувався ключ '--no-interface' -Для встановлення у користувача запустіть GIMP без ключа '--no-interface'.GIMP використовує обмежений об'єм пам'яті для зберігання даних зображення, так званий "Tile кеш". Вам слід підібрати відведений для кешу розмір пам'яті. Зважте на кількість пам'яті, що використовується іншими запущеними процесами.GIMP використовує додатковий файл gtkrc, то ж ви можете настроїти його вигляд не впливаючи на інші GTK-програми.Версія GIMPПри спробі створення файлу, розмір якого перевищує вказане тут значення, GIMP буде виводити попередження.ГаммаЗагальнеЦей параметр для 8-бітних дисплеїв. Він визначає мінімальну кількість системних кольорів, розподілених для GIMP.Встановлення роздільної здатності монітораКолосальнийПроцедури GimprcРедактор градієнтівМеню редактора градієнтівТеки градієнтівКолір крайньої лівої точки сегменту градієнтаКолір крайньої правої точки сегменту градієнтаUI градієнтаГрадієнт:ГрадієнтиМеню градієнтівСірийВідтінки сірогоЗеленийЗелений:СіткаРозширення каналуЗбільшення виділеногоЗбільшити виділене наНапрямнаПрив'язка до напрямних сіткиПроцедури напрямнихHSVHSV (%0.3f, %0.3f, %0.3f)Позиція позначки: %0.6fТвердістьТвердість:ВисотаВисота:Перегляд довідкиСистема довідкиДовідкові процедуриШістн:ВідблискиІнструктування змінює кольори символу, щоб видати більш чіткі растри при маленьких розмірахГістограмаМасштаб гістограмиІсторіяГоризонтальнеГоризонтальний зсув першої лінії сітки. Значення може бути від'ємним.Відстань між горизонтальними лініями.Кількість назв раніше відкритих файлів, що відображаються у меню.ВідтінокВідтінок і насиченістьВідтінок-насиченість діє діє лише на шари у форматі RGB.Відтінок:Величезний_Зображення_Інтервал:ЗначокЯкщо доступні, використовуються інструкції зі шрифту, але ви можете надати перевагу використанню автоінструктування.Неправильна назва змінної у файлі середовища %s: %sЗображенняІнформація про зображенняМеню зображенняРозмір зображенняФормат рядка стануШаблониФормат заголовку зображення та рядок сануФормат заголовку зображенняВигляд вікна зображенняВікна зображенняМаска зображенняРоздільна здатність зображення поза допустимими межами, використовується типове значення.ЗображенняМеню зображеньПараметри імпортуІмпорт палітриІмпортування контуруІмпорт контуру з SVGІмпорт нової палітриІмпортований контур_Інвертувати маскуДоповнюватиВідступ:Розташування першого рядкаНомер:ІндексованийІндексований колірПеретворення зображення в індексованеІнформаційне вікноІніціалізувати маску шару з:Ініціалізація доповненьІніціалізація доповнення: '%s' -ПероПристрої вводуРівні на входіВставлення точкиПомилка встановлення. Зв'яжіться з системним адміністратором.Встановлення завершено. Натисніть кнопку "Продовжить" для подальшої роботи.Швидке оновленняІнтерфейсВнутрішня процедура GIMPВнутрішні процедуриІнтерполяція:Перетнути з поточним виділеннямПеретинання (хрестики)Перетинання (точки)неправильний рядок UTF-8Неправильний рядок UTF-8 у файлі "%s".Неправильний UTF-8 рядок у XCF файліНеправильний UTF-8 рядок у файлі пензля '%s'.Неправильний рядок UTF-8 у файлі градієнта '%s'.Неправильний рядок UTF-8 у файлі палітри '%s'Неправильний UTF-8 рядок у файлі візерунку '%s'.Неправильна послідовність символів у URLНеправильна ширина чи висота. Їх значення повинні бути додатними.ІнвертуванняІнвертування каналуІнвертувати виділенняІнвертування не діє на індексовані шари.Вирівнювання:Комбінації клавіш можуть бути динамічно перевизначені в GIMP. В menurc міститься копія вашої конфігурації, тому її можна зберегти для наступних сеансів. При бажанні, можете змінювати цей файл, але значно простіше перевизначати комбінації клавіш з GIMP. Видалення цьогофайлу призводить до відновлення початкових комбінацій клавіш.Комбінації клавішАльбомнаВеликийВеликий (256x256)Збільшений переглядОстання помилка:ШарШар '%s' не має альфа-каналу. Цей шар буде розміщено вище.Ознаки шаруТип заповнення шаруМаска шару -> ВиділенеВиділення шару_Назва шару:Шар неможливо опустити ще нижче.Шар неможливо підняти ще вище.Шар вже у самому низу.Шар вже на самій верхівці.Шар до розміру зображенняШариМеню шарівПараметри об'єднання шарівКолір крайньої лівої точкиДовжина:Відновлювати позицію вікон від попереднього сеансу роботи.РівніРівні для індексованих зображень не можуть бути скореговані.ЛініяСти_ль лінії:Стиль ліній сітки.ЛінійнаЗавантажитиЗавантаження кривихЗавантаження рівнівЗавантаження попереднього перегляду...Розташування:ЛогарифмічнаПошук файлів данихОпускання каналуОпускання каналу додолуОпускання шарОпускання шару додолуОпускання контуруЗробити контур нижнімПурпурнийПурпурний:ЛупаКерування завантажувальними модулямиНепрозорість маски:Матриця:Макс. глибина:Максимальна відмінність кольорівСереднє:ВимірювачВимірювання відстаней та кутівВимірювання відстаней та кутівМедіана:СереднійОб'єднання з попереднімОб'єднання шарівОб'єднання палітрОб'єднання видимих шарівОб'єднання видимих контурівПроцедури повідомленьПовідомлення повторено %d разів.Повідомлення повторено один разПівтониРізнеМайстерРежимРежим:Зміна вибраного кольоруЗміна рівнів кольорів для виділеної ділянкиЗміна усіх кольорівВідстань між рядкамиТеки модулівДиспетчер модулівМодуліПереміщенняПереміщення точокПереміщення каналуПереміщення напрямноїПереміщення шаруПереміщення маски шаруПерейменування контуруПереміщення виділеногоПереміщення текстового шаруПереміщення шарів та виділених ділянокПеремістити вибраний фільтр внизПеремістити вибрані фільтри вгоруПереміщення: МноженняНавігаціяСтворення каналуКолір нового каналуПараметри нового каналуНове зображенняСтворення шаруНовий контурПараметри нового контуруНовий шаблонНемає пензлів доступних для використання з цим інструментом.Більше не доступнийУ "%s" не знайдено контурівУ буфері не знайдено контурівНемає доступних візерунків для цієї операції.Немає виділеної ділянки для обведення.НемаєНемає (Швидше)ЗвичайнийЗвичайний (128x128)Не є звичайним файломНемає видимих шарів для об'єднання. Необхідно принаймні два шари.Недостатньо видимих контурів для об'єднання. Необхідно принаймні два контури.ЗсувЗсув каналуЗсув малюванняЗсув шаруМаска зсуву шаруЗсув:На дискуНа багатопроцесорних системах, якщо GIMP був зібраний з параметром --enable-mp, цей параметр визначає кількість процесорів, які GIMP може використовувати одночасно.Лише в пам'ятіНепрозорістьНепрозорість:Відкривання зображенняВідкривання текстового файлу (UTF-8)Відкрити діалог вибору пензляВідкрити діалог вибору шрифтуВідкрити діалог вибору градієнтаВідкрити діалог вибору візерункаНе вдається відкрити '%s': +Для встановлення у користувача запустіть GIMP без ключа '--no-interface'.GIMP використовує обмежений об'єм пам'яті для зберігання даних зображення, так званий "Tile кеш". Вам слід підібрати відведений для кешу розмір пам'яті. Зважте на кількість пам'яті, що використовується іншими запущеними процесами.GIMP використовує додатковий файл gtkrc, то ж ви можете налаштувати його вигляд не впливаючи на інші GTK-програми.Версія GIMPПри спробі створення файлу, розмір якого перевищує вказане тут значення, GIMP буде виводити попередження.ГаммаЗагальнеЦей параметр для 8-бітних дисплеїв. Він визначає мінімальну кількість системних кольорів, розподілених для GIMP.Створити оптимальну палітруРоздільна здатність монітораКолосальнийПроцедури GimprcЕфекти ск_лаГрадієнтРедактор градієнтівМеню редактора градієнтівТеки градієнтівКолір крайньої лівої точки сегменту градієнтаКолір крайньої правої точки сегменту градієнтаUI градієнтаФайл градієнту '%s' пошкоджений: сегмент не у діапазоні 0-1.Градієнт:ГрадієнтиМеню градієнтівКристалізація діленнямКристалізація об'єднаннямСірийВідтінки сірогоЗеленийЗелений:СіткаВідстань між лініями сіткиРозширення каналуЗбільшення виділеногоЗбільшити виділене наНапрямнаПрив'язка до напрямних сіткиПроцедури напрямнихHSVHSV (%0.3f, %0.3f, %0.3f)HSV (відтінок _проти годинникової)HSV (відтінок _за годинниковою)Нотація HTML:_Висота:П_рограма перегляду довідки:Позиція позначки: %0.6fЧіткі країЖорстке світлоТвердістьТвердість:ВисотаВисота:ДовідкаПерегляд довідкиСистема довідкиПрограма перегляду довідки не запускаєтьсяПрограма перегляду довідки не існуєДовідкові процедуриШістн:ВідблискиСтиль вікон інших _панелей: Стиль вікна панелі _інструментів:ІнструктуванняІнструктування змінює кольори символу, щоб видати більш чіткі растри при маленьких розмірах_ГістограмаГістограмаМасштаб гістограмиІсторіяГоризонтальнеГоризонтальний зсув першої лінії сітки. Значення може бути від'ємним.Відстань між горизонтальними лініями.Кількість назв раніше відкритих файлів, що відображаються у меню.ВідтінокВідтінок і насиченістьВідтінок-насиченість діє діє лише на шари у форматі RGB.Відтінок та _насиченістьВідтінок:ВеличезнийЗ_начок та текст_Зображення_Імпорт контуру..._Інтерполяція:_Інтервал:ЗначокЗначок та описЗначок та текстЯкщо доступні, використовуються інструкції зі шрифту, але ви можете надати перевагу використанню автоінструктування.При включенні цього параметра інструмент "Переміщення" робить активним шар, що переміщується. У минулих версіях це була типова поведінка.Якщо ви не збережете зображення, зміни у будуть %s втрачені.Незбережені зміни будуть втрачені.Неправильна назва змінної у файлі середовища %s: %sЗображенняЗображення + сіткаРедактор зображеньІнформація про зображенняМеню зображенняРозмір зображенняФормат рядка стануШаблониМініатюри зображеньФормат заголовку зображення та рядок сануФормат заголовку зображенняВигляд вікна зображенняВікна зображенняЗображення не містить видимих шарівФайл зображенняМаска зображенняРоздільна здатність зображення поза допустимими межами, використовується типове значення.Розмір зображенняПочаткове зображенняТип зображенняЗображенняМеню зображеньПараметри імпортуІмпорт палітриІмпортування контуруІмпорт контуру з SVGІмпорт нової палітриІмпорт палітриІмпортування контуруІмпортований контур_Перо_Інвертування_Інвертувати маскуДоповнюватиВідступ:Розташування першого рядкаНомер:ІндексованийІндексований колірПеретворення зображення в індексованеІндексовані кольори масштабуються без інтерполяції. Вибраний тип інтерполяції впливатиме лише на масштабування каналів та масок.Інформаційне вікноПочаткові пр_опорції масштабу:Ініціалізувати маску шару з:Ініціалізація доповненьІніціалізація доповнення: '%s' +ПероВбудований pixbufСпособи керуванняПристрої вводуРівні на входіВставлення точкиВстановити власну мапу кольорів; може бути корисно при роботі з 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. В menurc міститься копія вашої конфігурації, тому її можна зберегти для наступних сеансів. При бажанні, можете змінювати цей файл, але значно простіше перевизначати комбінації клавіш з GIMP. Видалення цього файлу призводить до відновлення початкових комбінацій клавіш.КлавіатураПодії клавіатуриКомбінації клавішLTRКолір крайньої _лівої точки...АльбомнаВеликийВеликий (256x256)Збільшений переглядОстання помилка:ШарШар '%s' не має альфа-каналу. Цей шар буде розміщено вище.Ознаки шаруРозміри м_еж шару...Тип заповнення шаруМаска шару -> ВиділенеВиділення шаруРозмір шаруРежим _шару_Назва шару:Шар неможливо опустити ще нижче.Шар неможливо підняти ще вище.Шар вже у самому низу.Шар вже на самій верхівці.Шар до розміру зображенняЗробити шар н_ижнімШар до розміру _зображенняЗробити шар в_ерхнім_Альфа-канал шаруШариМеню шарівПараметри об'єднання шарівКолір крайньої лівої точкиВлівоДовжина:Відновлювати позицію вікон від попереднього сеансу роботи.РівніРівні для індексованих зображень не можуть бути скореговані.СвітлийЛише світлеЛініяМіжрядковий +інтервал:Ширина шару:Сти_ль лінії:Стиль ліній сітки.ЛінійнаПов'язаний елементЗавантажитиЗавантаження кривихЗавантаження рівнівЗавантажити колір правої точки _зЗавантажити значення кривих з файлуЗавантажити параметри рівнів з файлуЗавантажити текст з файлаЗавантаження попереднього перегляду...Розташування:ЛогарифмічнаДовгі рискиПошук файлів данихОпускання каналуОпускання каналу додолуОпустити канал _додолуОпускання шаруОпускання шару додолуОпускання контуруЗробити контур нижнімЗробити контур _нижнімОпустити каналОпустити каналу додолуОпускання шаруОпускання шару додолуОпускання контуруОпускання контуру додолу_ЛупаПо_мічникПере_містити по екрану..._МапаПурпурнийПурпурний:ЛупаЗробити _прозоримКерування завантажувальними модулямиШвидкість _мурашиної доріжки:Непрозорість маски:Накладати маску на виді_лені ділянкиНакладати маску на _невиділені ділянкиМатриця:Макс. глибина:Максимальний розмір _файлу перегляду:Максимальний розмір _нового зображення:Максимальна відмінність кольорівМаксимальна _пам'ять для скасувань:Середнє:ВимірювачВимірювання відстаней та кутівВимірювання відстаней та кутівВимірте лінійки та введіть значення їх довжини:Медіана:СереднійСередні рискиОб'_єднати з попереднімОб'єднання з попереднімОб'єднання шарівОб'єднання палітрОб'єднання видимих шарівОб'єднання видимих контурівО_б'єднати видимі шари...О_б'єднати видимі шари...Об'єднати _видимі шариОб'єднання шарівОб'єднання палітрПоєднання векторівПроцедури повідомленьПовідомлення повторено %d разів.Повідомлення повторено один разПовідомлення перенаправлені у stderr.ПівтониПеремістити користувацькі параметриМінімальна кількість рівнів по_вернення:РізнеМайстерРежимРежим:Зміна вибраного кольоруЗміна рівнів кольорів для виділеної ділянкиЗміна усіх кольорівВідстань між рядкамиТеки модулівДиспетчер модулівРозташування модуляМодуліКурсорПодії колеса мишіПодії колеса мишіПереміщенняПереміщення точокПереміщення каналуВидалення плаваючого виділенняПереміщення напрямноїПереміщення напрямної: Переміщення шаруПереміщення маски шаруПерейменування контуруПереміщення виділеногоПереміщення текстового шаруІнструмент переміщенняПереміщення елементаПереміщення шарів та виділених ділянокПереміщення виділеногоПеремістити поточний шарПеремісти поточний контурПеремістити вибраний фільтр внизПеремістити вибрані фільтри вгоруПеремістити на _екран...Переміщення: Множення_Кількість кольорів:_НавігаціяВікно наві_гаціїРозмір вікна _навігації:НазваНазва:НавігаціяСтворення каналуКолір нового каналуПараметри нового каналуНовий колір з _тлаНовий колір з _переднього плануНове зображенняСтворення шаруНовий контурПараметри нового контуруНовий шаблонСтворити пензельСтворення каналуНовий канал з останніми параметрамиСтворити канал...Новий колір з тлаНовий колір з переднього плануСтворити градієнтІмпортСтворення шаруНовий шар з останніми параметрами_Створити шар...Створити палітруНовий контур зі старими значенням_Створити контур...Створення візерункуСтворення векторуНемає пензлів доступних для використання з цим інструментом.Фільтр не вибранийУ "%s" не знайдено градієнтівБільше не доступнийУ "%s" не знайдено контурівУ буфері не знайдено контурівНемає доступних візерунків для цієї операції.Нічого не виділеноНемає виділеної ділянки для обведення.Без мініатюрБез вирівнюванняНемаєНемає (Швидше)ЗвичайнийЗвичайний (128x128)КрапкиЗвичайне вікноНе є звичайним файломНемає видимих шарів для об'єднання. Необхідно принаймні два шари.Недостатньо видимих контурів для об'єднання. Необхідно принаймні два контури.Кількість п_роцесорів, що використовуються:Число ліній сіткиКількість шарів:_Інший...ЗсувЗсув каналуЗсув малюванняЗсув шаруМаска зсуву шаруЗсув на x/_2, y/2Зсув:На дискуНа багатопроцесорних системах, якщо GIMP був зібраний з параметром --enable-mp, цей параметр визначає кількість процесорів, які GIMP може використовувати одночасно.Лише в пам'ятіВідкрити як ша_р...НепрозорістьНепрозорість:_Відкрити...Відкривання зображенняВідкрити зображення як шарВідкривання адресиВідкривання текстового файлу (UTF-8)Відкрити _адресу...Відкрити н_едавніВідкривання зображенняВідкрити діалог вибору пензляВідкрити діалог вибору шрифтуВідкрити діалог вибору градієнтаВідкрити діалог вибору візерункаВідкрити діалог вибору візерункаВидалити вибраний елементНе вдається відкрити '%s': %sНе вдається відкрити '%s': %sПараметри: -Початкове X:Оригінальна ширина:Інший (%s) ...Рівні на виходіПерекриванняПомилка виклику PDB для процедури '%s': -Неправильний тип аргументу #%d (очікувався %s, got %s)помилка виклику PDB: -процедура "%s" не знайденаЖебракують філософи при ґанку церкви -в Гадячі; ще й шатро їхнє знаємо.МалюванняПараметри малювання спільні для інструментівПроцедури інструментів малюванняІнструмент:Нанесення м'яких мазків пензлемМалювання різкими лініямиМалювання з використанням візерунку або ділянки зображенняПензельПалітраРедактор палітриМеню редактора палітриТеки палітрПалітра UI_Назва палітри:ПалітриМеню палітрПроцедури шумуШумиГраматичний аналіз "%s" -ВставленняВставлений шарКонтурАтрибути контуруКонтур не можна опустити ще нижче.Контур не можна підняти ще вище.Контур -> Виділену ділянкуКонтуриМеню контурівВізерунокТеки візерунківUI ВізерункуВізерункиМеню візерунківОлівецьВідсоток ширини пензлівВідсоток:Особистий каталог GIMPПерспективаІнформація про перетворення перспективиПерспектива...Тип дії %sОтримання кольору із зображенняТочокТочок:Зачекайте доки буде створений ваш особистий каталог GIMP...Будь ласка, зачекайте...ДоповненняСередовище доповненьТеки доповненьДоповненню не вдається відкрити зображенняДоповненню не вдається зберегти зображенняПомилка у доповненні: "%s" +Початкове X:Початкове Y:Оригінальна ширина:Інший (%s) ...КонтурРівні на виходіПерекриванняПомилка виклику PDB для процедури '%s': +Неправильний тип аргументу №%d (очікувався %s, отримано %s)помилка виклику PDB: +процедура "%s" не знайдена_ВізерункиЖебракують філософи при ґанку церкви +в Гадячі; ще й шатро їхнє знаємо.МалюванняПараметри малювання спільні для інструментівПроцедури інструментів малюванняІнструмент:_Режим малюванняНанесення м'яких мазків пензлемМалювання різкими лініямиМалювання з використанням візерунку або ділянки зображенняПензельПа_літриПалітраРедактор палітриМеню редактора палітриТеки палітрПалітра UI_Назва палітри:_Файл палітриПалітриМеню палітрПроцедури шумуШумиСинтаксичний аналіз "%s" +ВставленняВставити буфер _уВставити буфер як _нове зображенняВст_авити контурВставити _уВставити як _новеПеремістити виділений буферВставити виділений буфер як нове зображенняВставити виділений буфер у виділенняВставлений шарКонтурАтрибути контуруНазва контуру:Інст_румент "Контур"Контур не можна опустити ще нижче.Контур не можна підняти ще вище.Шар вже у самому низу.Шар вже на самій верхівці.Контур -> Виді_лена ділянкаКонтур -> Виділену ділянкуКонтур у виділення +%s додати +%s відняти +%s перетнутиКонтур -> Виділену ділянкуКонтуриМеню контурівВізерунокТеки візерунківUI ВізерункуЗаповнення візерункомПочатковий шаблонВізерункиМеню візерунків_ОлівецьОлівецьВідсоток ширини пензлівВідсоток:Особистий каталог GIMPПерспективаІнформація про перетворення перспективиПерспектива...Тип дії %sВибрати шар або напрямнуВибрати контур для переміщенняВибір _чорної точкиОтримання кольору із зображенняВибір _сірої точкиПоказати інформацію про колірВибір _білої точкиРозмір у точках:ТочокТочокТочок:Перевірте, що XML-файли меню, коректно встановлені.Зачекайте доки буде створений ваш особистий каталог GIMP...Будь ласка, зачекайте...ДоповненняСередовище доповненьТеки доповненьДоповненню не вдається відкрити зображенняДоповненню не вдається зберегти зображенняПомилка у доповненні: "%s" (%s) Доповнення, що викликало помилку може зіпсувати внутрішній стан GIMP. -Можливо, для безпеки вам слід зберегти зображення та перезапустити GIMP.Доповнення успішно завершило роботу але не повернуло зображення.ДоповненняДоповненняДоповнення та розширення - це зовнішні програми, що запускає GIMP, які надають додаткові можливості. Ці програми шукаються на запуску й інформація про їхні функції та час зміни кешується у цьому файлі. Цей файл призначений лише для зчитування програмою GIMP, і не повинен редагуватися.БагатокутникиКнижковаПозиція: %0.6fПостеризаціяПостеризація (зменшення кількості кольорів)Постеризація не діє на індексовані шари.НастройкаНатиск:Попередній переглядФайл попереднього перегляду застарівПопередній переглядПомилка при аналізі тексту шуму для рівня '%s': +Можливо, для безпеки вам слід зберегти зображення та перезапустити GIMP.Доповнення успішно завершило роботу але не повернуло зображення.ДоповненняДоповненняДоповнення та розширення - це зовнішні програми, що запускає GIMP, які надають додаткові можливості. Ці програми шукаються на запуску й інформація про їхні функції та час зміни кешується у цьому файлі. Цей файл призначений лише для зчитування програмою GIMP, і не повинен редагуватися.БагатокутникиКнижковаПозиція: %0.6fПозиціяПостеризаціяПостеризація (зменшення кількості кольорів)_Рівні постеризації:Постеризація не діє на індексовані шари.ПараметриЗберігати _яскравістьЧутливість до натискуНатиск:Попередній переглядФайл попереднього перегляду застарівПопередній перегляд:Попередній переглядРозмір при друкуванні:Розмір при друкуванні:Помилка при аналізі тексту шуму для рівня '%s': %s -Деякі властивості тексту будуть неправильні. Можете не перейматись цим, якщо ви не збираєтесь редагувати текстовий шар.База даних процедурПроцедурна база данихПеребігПсевдокольоровеПризначення:ЗапитОпитування нових доповненьЗапит доповнення: '%s' -Швидка маскаRGBRGB (%d, %d, %d)RGB-колірRGB - пустоRGBA (%0.3f, %0.3f, %0.3f, %0.3f)Показати "%s" _ще разРадіальнаРадіус:Піднімання каналуПіднімання каналу догориПіднімання шаруПіднімання шару догориПіднімання контуруЗробити контур верхнімРозгорнути вікно з цим зображеннямШвидкістьШвидкість:Показати останній ще разВід_центрувати середні точки виділеногоВід_центрувати середню точку сегментаПерерозподілити _напрямні в сегментіПерерозподілити _напрямні у виділеному_Повторити "%s"Читається файл палітри '%s': відсутній ЗЕЛЕНИЙ компонент у рядку %d.Читається файл палітри '%s': неправильна кількість стовпчиків у рядку %d. Використовується типове значення.Читається файл палітри '%s': відсутній СИНІЙ компонент у рядку %d.Читається файл палітри '%s': відсутній ЧЕРВОНИЙ компонент у рядку %d.Читається файл палітри '%s': значення RGB поза межами допустимого діапазону у рядку %d.Прямокутне виділенняЧервонийЧервоний:ПовторитиСкорочення кількість кольорів у зображенні до вказанихПеретворити зображення у двокольорове використовуючи порігЗ реєстрацієюОновити поточну _темуЗапам'ятовувати поточні інструменти, візерунки, кольори та пензлі у сеансі.Віддалене зображенняВидалення каналуВидалення плаваючого виділенняВидалення напрямноїВидалення шаруВидалення шуму із зображенняВидалення шуму з елементаВидалення контуруВилучити вибраний фільтр зі списку активних фільтрів.Перейменування каналуПерейменування шаруПерейменування контуруПерейменування збережених параметрівПерейменування текстового шаруОбведення контуруРеорганізація каналуРеорганізувати шарПовторити останнійПовтор:Замінити поточне виділенняРозмножитиСтворення копії сегмента градієнтаСтворення копії виділеної ділянки градієнтаРозмноження сегментаРозмноження виділеногоСкинути параметриВідновити типові настройки для вибраного фільтруЗміна розміруЗміна розміру каналуЗміна розміру зображенняЗміна розміру шаруЗміна розміру контуруЗміна розміру текстового шаруЗміна розміру...Роздільна здатність:Використання ресурсівНалаштовування ресурсівВідновити параметри з...Відновлювати збережені комбінації клавіш при кожному запуску GIMP.ОбернутиВідновитиВідновити зображенняНе вдається відновити. Немає пов'язаної з цим зображенням назви файлу.Відновлення до '%s' не вдалось. -%sКолір крайньої правої точкиОбертанняОбертання каналуОбертання шаруОбертання контуруОбертання текстового шаруОбертання шарів та виділених ділянокОбертання...Інформація про обертанняКолоНасиченість:НасиченістьЗберегтиЗбереження '%s' як POV-RayЗбереження кривихЗбереження повідомлень про помилки у файліЗбереження зображенняЗбереження рівнівПараметри інструментуЗбереження копії зображенняЗберігати змінені комбінації клавіш при виході з GIMP.Зберегти значення кривих у файлЗберегти стан пристроюЗбереження настройок рівнів у файлЗберегти параметри...Зберігати позиції та розміри вікон при завершенні GIMP.Збережені параметриЗбереження "%s" +Деякі властивості тексту будуть неправильні. Можете не перейматись цим, якщо ви не збираєтесь редагувати текстовий шар.База даних процедурПроцедурна база данихПеребігПсевдокольоровеПризначення:ЯкістьЗапитОпитування нових доповненьЗапит доповнення: '%s' +Швидке завантажитиШвидка маскаОзнаки швидкої маскиМеню швидкої маскиШвидке збереженняШвидка маскаВийти з GIMP?RGBRGB (%0.3f, %0.3f, %0.3f)RGB (%d, %d, %d)RGB-колірRGB - пустоRGBA (%0.3f, %0.3f, %0.3f, %0.3f)RTLПоказати "%s" _ще раз_Відновити параметри інструментівВ_ідновити канал_Відновити колір_Відновити значенняКолір крайньої _правої точки...РадіальнаРадіус:Піднімання каналуПіднімання каналу догориПідняти канал до_гориПіднімання шаруПіднімання шару догориПіднімання контуруЗробити контур верхнімЗробити контур _верхнімПідняти каналПідняти канал догориПіднімання шаруПіднімання шару догориПіднімання контуруПіднімання контуру догориРозгорнути вікно з цим зображеннямЗробити активним, якщо вже відкритоШвидкістьШвидкість:Показати останній ще разВід_центрувати середні точки виділеногоВід_центрувати середню точку сегментаПерерозподілити _напрямні в сегментіПерерозподілити _напрямні у виділеномуПерей_менувати збережені параметриПов_торити "%s"Від_новити...Читається файл палітри '%s': відсутній ЗЕЛЕНИЙ компонент у рядку %d.Читається файл палітри '%s': неправильна кількість стовпчиків у рядку %d. Використовується типове значення.Читається файл палітри '%s': відсутній СИНІЙ компонент у рядку %d.Читається файл палітри '%s': відсутній ЧЕРВОНИЙ компонент у рядку %d.Читається файл палітри '%s': значення RGB поза межами допустимого діапазону у рядку %d.ВиконаноДійсно очистити історію скасувань дій?Призначаючи ці клавіші ви відмовляється від доступу по ними до нього "%s".Перечитати _переглядПеречитати переглядПрямокутне виділенняЧервонийЧервоний:ПовторитиСкорочення кількість кольорів у зображенні до вказанихПеретворити зображення у двокольорове використовуючи порігОновити пензліОновити градієнтиОновлення палітриОновити візерункиЗ реєстрацієюОновити поточну _темуПеречитати _усі переглядиПеречитати усі переглядиЗапам'ятовувати поточні інструменти, візерунки, кольори та пензлі у сеансі.Віддалене зображенняВидалення каналуВидалити застарілі е_лементиВидалення плаваючого виділенняВидалення напрямноїВидалення шаруВидалення шуму із зображенняВидалення шуму з елементаВидалення контуруВидалити _елементВидалити застарілі елементиВидалення плаваючого виділенняВидалення шумуВидалити вибраний елементВилучити вибраний фільтр зі списку активних фільтрів.Не вдається видалити клавіші швидкого доступу.Перейменування каналуПерейменування шаруПерейменування контуруПерейменування збережених параметрівПерейменування текстового шаруПерейменування елементуОбведення контуруРеорганізація каналуРеорганізувати шарРеорганізувати контурПовторити останнійПовтор:Замінити поточне виділенняРозмножитиСтворення копії сегмента градієнтаСтворення копії виділеної ділянки градієнтаРозмноження сегментаРозмноження виділеногоЗсув каналуПереставлення шарівПереміщення векторівПеречитати перелік шрифтівСкидання параметрівВідновити параметри _усіх інструментів...Перезавантажити усі фільтриВідновити параметри _усіх фільтрів...Відновити параметри _усіх інструментів...Відновити типові параметри для вибраного фільтруВідновити типові параметриТиповий порядок та видимість інструментівЗміна розміруЗміна розміру каналуЗміна розміру зображенняЗміна розміру шаруЗміна розміру контуруЗміна розміру текстового шаруЗміна розміру зображенняЗміна розміруЗмінювати розмір вікна при мас_штабуванніЗмінювати розмір вікна при зміні _розміру зображенняЗміна розміру...Зміна роздільної здатностіРоздільна здатність:Використання ресурсівНалаштовування ресурсівВідновити параметри з...Відновлювати збережені комбінації клавіш при кожному запуску GIMP.Створювати лише прямі та кутиОбернутиВідновитиВідновити '%s' до '%s'?Відновити зображенняНе вдається відновити. Немає пов'язаної з цим зображенням назви файлу.Не вдається відновитись до '%s'. +%sКолір крайньої правої точкиВправоОбертанняОбернути на 90° _проти годинниковоїОбернути на 90° _за годинниковоюОбертання каналуОбертання шаруОбертання контуруОбертання текстового шаруОбернути на _180°Обертання зображенняОбертання шарів та виділених ділянокОбертання...Інформація про обертанняКоло_ВикривленняПоказувати с_іткуЗ_меншення..._точок_Обміняти місцями кольориЗб_ерегти колір правої точки уВибіркове середнєОб'єднувати ділянки за зразкомНасиченість:НасиченістьЗберегтиЗбереження '%s' як POV-RayЗбереження кривихЗбереження повідомлень про помилки у файліЗбереження зображенняЗберегти параметри пристроїв вводу _заразЗберегти комбінації клавіш _заразЗбереження рівнівЗберегти параметри інструментуЗберегти позицію вікон _заразберегти _усі помилки у файл...Записати виді_лене у файл...Зберегти _як...Зберегти _копію...Збереження копії зображенняЗберегти усі помилкиЗберегти як _POV-Ray...Зберегти як _шаблон...Зберігати змінені комбінації клавіш при виході з GIMP.Зберегти значення кривих у файлЗберегти стан пристроюЗберегти графієнт як POV-RayЗбереження параметрів рівнів у файлЗберегти параметри...Збереження виділеногоЗберегти виділене в каналіЗберегти зміни у '%s' перед закриванням?Зберігати позиції та розміри вікон при завершенні GIMP.Зберегти в к_аналіЗбережені параметриЗбереження "%s" Не вдається зберегти '%s': -%sМасштабМасштабування каналуМасштабування зображенняМасштабування шаруМасштабування контуруМасштабування тестового шаруМасштабування шару чи виділеної ділянкиМасштабуванняМасштабування...НожиціЕкранТеки сценаріївСценаріїВиділити всеВиберіть теку пензлівВиділення за кольоромВибір кольоруВиберіть теку середовищаВиберіть теку шрифтівВиберіть теку градієнтівВиберіть теку модулівВиділення знятоВиберіть теку палітрВиберіть теку візерунківВиберіть теку доповненьВибір основного кольору для змінВибір ділянки для зміниВиберіть теку сценаріївВибір джерелаВибір темиВиберіть теку темВибір масштабуВиділення за кольоромВиділення суміжних ділянокВиділення еліптичних ділянокВиділення довільних ділянокВибір файлу палітриВиділення прямокутних ділянокВиділення ділянки за кольоромВиділення форм у зображенніВиберіть кількість створюваних +%sЗбереження зображеньПилоподібна хвиляВекторний формат SVG (*.svg)МасштабМасштабування каналуМасштабування зображенняМасштабування шаруМасштабування контуруМасштабування тестового шаруМасштабування зображенняМасштабування елементаМасштаб по X:Масштаб по Y:Відношення сторін:Масштабування шару чи виділеної ділянкиМасштабуванняІнформація про масштабЯкщо змінити розмір зображення з такими параметрами, тоді воно займе більше місця, ніж це вказано у параметрі "Максимальний розмір зображення" (%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)ВиділенеВиділити всеВиберіть теку пензлівВибір за кольоромВибір кольоруВибір діїВиберіть теку середовищаВибрати _тип файла (%s)Виберіть теку шрифтівВиберіть теку градієнтівВиберіть теку модулівВиділення знятоВиберіть теку палітрВиберіть теку візерунківВиберіть теку доповненьВибір основного кольору для змінВибір ділянки для зміниВиберіть теку сценаріївВибір джерелаВиберіть теку підкачкиВиберіть теку темВибір темиВиберіть теку темВибір масштабуВиділити _нижній шарВ_ласний колір...Вділити н_аступний шарВиділити п_опередній шарВиділити _верхній шарВиділити всеВиділення за кольоромВиділення суміжних ділянокКолір тла навколо зображенняВиділення еліптичних ділянокВиділення довільних ділянокНе виділеноВибір файлу палітриВиділення прямокутних ділянокВиділення ділянки за кольоромВиділення форм у зображенніВибір теки підкачкиВиберіть кількість створюваних копій виділеного сегмента.Виберіть кількість створюваних копій виділеної ділянки.Виберіть кількість частин на яку слід розділити сегментиВиберіть кількість частин -на яку слід розділити вибраний сегментВиділенняРедактор виділеної ділянкиМаска виділеної ділянкиПроцедури виділенняВиділення: Виділення: ДОДАТИВиділення: ПЕРЕТНУТИВиділення: ЗАМІНИТИВиділення: ВІДНЯТИЧутливістьВстановити кольору тла навколо зображенняВстановлення кольору каналуВстановлення непрозорості каналуВстановлення розміру полотнаВстановлення зв'язку з елементомВстановлення видимості елементуВстановлення меж шаруВстановити назву з _текстуВстановлює обмеження пам'яті, яке використовується для скасування у кожному зображенні. Незалежно від цього параметра, можна зробити принаймні стільки скасувань операцій, скільки вказано у конфігурації.Визначає переглядач, який буде використовувати система довідки.Визначає колір тла навколо зображення, якщо в режимі заповнення тла вказано "Вибраний колір".Вказує браузер, який буде використовувати система довідки. Це може бути абсолютний шлях, чи назва виконуваної програми у одному з каталогів, що визначаються у PATH. Якщо команда містить '%s', замість цього виразу буде підставлений URL, якщо ні - тоді URL буде доданий у кінець команди через пробіл.Визначає рівень інтерполяції, що використовується при масштабуванні та інших перетвореннях.Визначає як відображати прозорість у зображенні.Встановлює мінімальне число операцій, які можна скасувати. Більша кількість скасування операцій доступна доки не вичерпається пам'ять, відведена для скасування операцій.Визначає режим вказівника у GIMP.Встановлює розмір шахових клітин, що відображають прозорість.Встановлює розмір області навігації, що знаходиться у правому нижньому куті вікна зображення.Встановлює розмір попереднього перегляду у вікні історії скасувань.Вказує розташування файлу підкачки. GIMP використовує блочну схему виділення пам'яті. Файл підкачки використовується для швидкої та простої підкачки блоків з диску. Зауважте, файл підкачки може швидко досягнути великого розміру, якщо GIMP обробляє великі зображення. Крім того, робота значно сповільнюється, якщо файл підкачки створений у каталозі підключеному через NFS. У цьому випадку, бажано помістити файл підкачки у "/tmp".Визначає тимчасовий каталог. Тут зберігатимуться файли, які GIMP обробляє протягом сеансу. Більшість з них будуть видалені одразу при завершенні роботи з GIMP, але деякі можуть залишатись, тому бажано, щоб цей каталог не використовувався спільно з іншими користувачам. Визначає форматування тексту, що відображається у рядку стану.Визначає форматування тексту, що відображається заголовку вікна.Вказує, чи потрібно створювати попередній перегляд шарів та каналів. Попередній перегляд шарів та каналів - корисна річ, але може сповільнювати роботу при роботі з великими зображеннями.ТініФормаФорма:РізкістьРізкість каналуРізкість виділеної ділянкуВикривленняВикривлення шарів та виділеньІнформація про викривленняВикривлення...Показувати рядок с_тануПоказувати смуги _прокручуванняПоказувати _напрямніПоказувати ме_жі шарівПоказувати панель _менюПоказати використання пам'ятіПоказувати підказку при наступному запуску GIMPПоказувати масштаб у відсоткахПоказувати масштабний коефіцієнтСтиснення каналуСкорочення виділеногоСкоротити на межі зображенняСкоротити виділене наРозмірРозмір:Пропускається "%s": неправильна версія протоколу GIMP.МалийЗменшений переглядГладенькаЗгладжування краївПалецьРозмазування зображенняСуцільнаДжерелоКлітиниІнтервал:Особливий файлВизначає колір тла навколо зображення.Швидкість мурашиної доріжки навколо виділеної ділянки. Значення вказується у мілісекундах (менші значення означають більшу швидкість доріжки).Швидкість:РозділитиРозділення сегменту градієнта на рівні частиниРозділення сегментів градієнта на рівні частиниРівномірний розподіл сегментуРозділити сегмент на _рівні частини...Розділити сегмент по _центруРозділення сегментів на рівні частиниРозділити сегменти на _рівні частини...Розділити сегменти по _центрахКвадратнаСтандартнийЗапуск розширеньЗапуск розширення: "%s" -Стан:Постійне кольоровеПостійне сіреСтанд. відхилення:ПунктирОбведення каналуОбвести за контуромОбведення виділеної ділянкиВідніманняВідняти від поточного виділенняІнтерполяціяШаблониМеню шаблонівТимчасова процедураТекстКолір текстуТекстовий шарТекстові процедуриGIMPАктивний пензель. +на яку слід розділити вибраний сегментВиділяти прозорі ділянкиВибір зовнішнього переглядачаВиділена ділянка -> Кон_турВиділенняРедактор виділеної ділянкиРедактор виділеної ділянкиМаска виділеної ділянкиПроцедури виділенняМаска виділеної ділянкиВиділення у контур (_розширені параметри)Виділена ділянка -> Кон_турВиділення: Виділення: ДОДАТИВиділення: ПЕРЕТНУТИВиділення: ЗАМІНИТИВиділення: ВІДНЯТИЧутливістьВстановити колір тла навколо зображенняВстановлення кольору каналуВстановлення непрозорості каналуВстановлення мапи кольорівВстановити колір тла навколо зображенняВстановлення розміру полотнаЗміна роздільної здатностіВстановлення зв'язку з елементомВстановлення видимості елементуВстановлення меж шаруВстановити назву з _текстуВстановлення непрозорості шаруВстановити колір тлаВстановити колір переднього плануВстановлення зв'язку з елементомВстановлення режиму шаруВстановлення непрозорості шаруЗбереження непрозоростіВстановлює обмеження пам'яті, яке використовується для скасування у кожному зображенні. Незалежно від цього параметра, можна зробити принаймні стільки скасувань операцій, скільки вказано у конфігурації.Визначає переглядач, який буде використовувати система довідки.Визначає колір тла навколо зображення, якщо в режимі заповнення тла вказано "Вибраний колір".Вказує браузер, який буде використовувати система довідки. Це може бути абсолютний шлях, чи назва виконуваної програми у одному з каталогів, що визначаються у PATH. Якщо команда містить '%s', замість цього виразу буде підставлений URL, якщо ні - тоді URL буде доданий у кінець команди через пробіл.Визначає рівень інтерполяції, що використовується при масштабуванні та інших перетвореннях.Визначає як відображати прозорість у зображенні.Встановлює мінімальне число операцій, які можна скасувати. Більша кількість скасування операцій доступна доки не вичерпається пам'ять, відведена для скасування операцій.Визначає режим вказівника GIMP.Встановлює горизонтальну роздільну здатність монітора в точках на дюйм. При нульовому значенні, беруться як вертикальне так і горизонтальне значення від X сервера.Встановлює вертикальну роздільну здатність монітора в точках на дюйм. При нульовому значенні, беруться як вертикальне так і горизонтальне значення від X сервера.Визначає режим вказівника GIMP.Встановлює розмір попереднього перегляду для слоїв та каналів.Встановлює розмір шахових клітин, що відображають прозорість.Встановлює розмір області навігації, що знаходиться у правому нижньому куті вікна зображення.Встановлює розмір попереднього перегляду у вікні історії скасувань.Встановлює розмір файлів попереднього перегляду у діалозі відкривання файлів. Зауважте, GIMP не може створювати мініатюри при вимкненому параметрі попереднього перегляду шарів.Вказує розташування файлу підкачки. GIMP використовує блочну схему виділення пам'яті. Файл підкачки використовується для швидкої та простої підкачки блоків з диску. Зауважте, файл підкачки може швидко досягнути великого розміру, якщо GIMP обробляє великі зображення. Крім того, робота значно сповільнюється, якщо файл підкачки створений у каталозі підключеному через NFS. У цьому випадку, бажано помістити файл підкачки у "/tmp".Визначає тимчасовий каталог. Тут зберігатимуться файли, які GIMP обробляє протягом сеансу. Більшість з них будуть видалені одразу при завершенні роботи з GIMP, але деякі можуть залишатись, тому бажано, щоб цей каталог не використовувався спільно з іншими користувачам. Визначає форматування тексту, що відображається у рядку стану.Визначає форматування тексту, що відображається заголовку вікна.Вказує, чи потрібно створювати попередній перегляд шарів та каналів. Попередній перегляд шарів та каналів - корисна річ, але може сповільнювати роботу при роботі з великими зображеннями.Тип тініТініФормаФорма:По формі (кутова)По формі (з ямкою)По формі (сферична)РізкістьРізкість каналуРізкість виділеної ділянкуВикривленняКоефіцієнт викривлення по X:Коефіцієнт викривлення по Y:Викривлення шарів та виділеньІнформація про викривленняВикривлення...Короткі рискиКомбінації клавішКлавіші швидкого "%s" вже використані у пункті "%s" з меню "%s".Показати маску шаруПоказувати _лінійкиПоказувати рядок ст_ануПоказувати смуги _прокручуванняПоказувати _напрямніПоказувати ме_жі шаруПоказувати панель _менюПоказувати ви_діленняПоказувати контур _пензля_Колір переднього плану та тлаПоказувати _напрямніПоказувати ме_жі шарівПоказувати панель _менюПоказувати _лінійки_Пензлі, візерунки та градієнтиПоказувати _активне зображенняПоказати _сіткуПоказувати _кнопку "Довідка"Показувати розмір зображенняПоказувати інтерактивні межіПоказати використання пам'ятіПоказувати у меню к_омбінації клавішПоказувати курсор _інструментуПоказувати _виділенняПоказувати рядок ст_ануПоказувати смуги _прокручуванняПоказувати наступного разуПоказувати поради при _запускуПоказувати п_ідказкиПоказувати масштаб у відсоткахПоказувати масштабний коефіцієнтСтиснення каналуСкорочення виділеногоС_коротити вікно по зображеннюСкоротити на межі зображенняСкоротити виділене наСкоротити вікно по зображеннюРозмірРозмір у пам'яті:Розмір файлів _мініатюр:Розмір:Пропускається "%s": неправильна версія протоколу GIMP.МалийЗменшений переглядГладенькаЗгладжування краївПалецьРозмазування зображенняП_рив'язка до напрямнихПрив'_язка до сіткиМ'яке світлоСуцільнаДжерелоКлітиниІнтервал:Рідкі рискиОсобливий файлВизначає колір тла навколо зображення.Швидкість мурашиної доріжки навколо виділеної ділянки. Значення вказується у мілісекундах (менші значення означають більшу швидкість доріжки).Швидкість:Сферична (що з_меншується)Сферична (що з_більшується)Промені:Спіральна (за годинниковою)Спіральна (за годинниковою)РозділитиРозділення сегменту градієнта на рівні частиниРозділення сегментів градієнта на рівні частиниРівномірний розподіл сегментуРозділити сегмент на _рівні частини...Розділити сегмент по _центруРозділення сегментів на рівні частиниРозділити сегменти на _рівні частини...Розділити сегменти по _центрахКвадратнаС_тан на текст_РівеньСтандартнийЗапуск розширеньЗапуск розширення: "%s" +Стан:Постійне кольоровеПостійне сіреСтан та описСтан на текстСтанд. відхилення:ПунктирID з наборуОбвести за конту_ромОбвести за конту_ром...Обведення каналуОбведення за контуромОбведення виділеної ділянкиШтрихОбвести за контуромОбвести контур з останніми значеннямиОбвести за контуром...Обвести виділене з останніми значеннямиОбведення виділеної ділянки...Використати один з інструментівСтиль елементів навколо тексту рядка стануВідніманняВідняти від поточного виділенняІнтерполяціяКаталог підкачки:Інстр_ументи_Текст_ТекстТека тимчасових файлів:ШаблониМеню шаблонівТимчасова процедураДоповнення за шаблоном: '%s' +ТекстКолір текстуТекстовий редакторТекстовий шарТекст зміненоТекстові процедуриGIMPУ вашому встановленні GIMP відсутній переглядач довідки.Активний пензель. Клацніть, щоб відкрити діалогове вікно "Пензлі".Активний градієнт. Клацніть, щоб відкрити діалогове вікно "Градієнти".Активний візерунок. -Клацніть, щоб відкрити діалогове вікно "Візерунки".Колір тла сітки; використовується лише для стилю "Подвійний пунктир"Назва файлу "%s" не може бути перетворене у коректний файл: +Клацніть, щоб відкрити діалогове вікно "Візерунки".Активний візерунок. +Клацніть, щоб відкрити діалогове вікно "Візерунки".Колір тла сітки; використовується лише для стилю "Подвійний пунктир"Інтерпретатор '%s' недоступний, використання командного режиму неможливе.Назву файлу неможливо перекодувати у UTF-8: %s + +Перевірте значення змінної оточення G_FILENAME_ENCODING.Назва файлу "%s" не може бути перетворене у коректний файл: + +%sКолір переднього плану.gimprc використовується для зберігання особистих установок, які впливають на поведінку GIMP. Тут також вказуються шляхи пошуку пензлів, палітр, градієнтів, візерунків, доповнень та модулів.Горизонтальна роздільна здатність.Вибраний вами шар є текстовим шаром, але він був змінений з використанням інших інструментів. Редагування шару з використанням інструменту "текстовий редактор" призведе до скасування цих змін. + +Ви можете відредагувати шар або створити новий текстовий шар з цими текстовими атрибутами.Назва каталогу, що містить параметри користувача GIMP, не вдається перекодувати у UTF-8: %s + +Швидше за все, у вашій файловій системі використовується кодування, відмінне від UTF-8, та ви не вказали про це GLib. Установите правильне значення змінної оточення G_FILENAME_ENCODING.sessionrc використовується для збереження положення діалогових вікон відкритих під час останнього виходу з GIMP. Можна налаштувати GIMP так, щоб вікна відкривались у їх попередніх позиціях.Якщо розмір файлу попереднього перегляду буде менше вказаного тут значення, тоді перегляд у діалозі відкривання буде оновлюватись автоматично.Кеш блоків використовується для забезпечення того, щоб GIMP не займався інтенсивним копіюванням між пам'яттю та диском. Встановлення більших значень цього параметра змушує GIMP менше використовувати підкачку, але призводить до збільшення використання пам'яті. Та навпаки, зменшення значення розміру кешу сприяє більшому використанню підкачки та зменшенню використання пам'яті.Використовується, якщо вимкнено режим "Точка за точкою"unitrc використовується для збереження вашої бази даних одиниць виміру. Ви можете визначити додаткові одиниці та використовувати їх так само, як і вбудовані одиниці: дюйми, міліметри, пункти і піки. Цей файл перезаписується щоразу, коли ви виходите з GIMP.Вертикальна роздільна здатність.Тип вікна, що призначається панелям. Може впливати на спосіб оформлення вікон менеджером вікон.Тип вікна, що призначається панелям інструментів. Може впливати на спосіб оформлення та роботи з цими вікнами менеджером вікон.ТемаТеки темТемиЄ незбережені зображення (%d):Недостатньо видимих шарів для об'єднання з попереднім.Завжди є вибір між швидкодією та використанням пам'яті. У більшості випадків GIMP вибирає швидкодію. Проте якщо пам'ять для вас має значення, увімкніть цей параметр.Немає активного шару чи каналу для копіювання.Немає активного шару чи каналу для вирізання.Немає активного шару або каналу для обведенняНемає активного шару чи каналу для обведення.Є незбережені зображення:Це має бути файл '%s'. Перевірте встановлення.Помилка при зчитуванні файлу '%s'. Будуть використані типові значення. Резервна копія конфігурації створена у '%s'.Цей файл містить набір стандартних розмірів зображень, які використовуються у якості шаблонів.Ця тека використовується для збереження файлів шаблонів зображень.Ця тека використовується для зберігання встановлених користувачем тем.Ця тека використовується для зберігання шрифтів, які повинні відображатись у GIMP. При пошуку шрифтів GIMP перевіряє цей каталог разом із системним каталогом шрифтів.Використовуйте цей каталог, якщо якісь шрифти будете використовувати лише у GIMP. У всіх інших випадках, розміщайте шрифти у системних каталогах шрифтів.Ця тека використовується для збереження файлів параметрів інструменту "Криві".Ця тека використовується для збереження файлів параметрів інструменту "Рівні".Ця тека використовується для збереження параметрів інструментів.Ця тека використовується для зберігання створених і встановлених користувачем сценаріїв. Під час пошуку сценаріїв, GIMP перевіряє цей каталог разом із системним каталогом сценаріїв.Ця тека використовується для зберігання тимчасових, створених користувачем та інших не підтримуваних системою модулів динамічного завантаження. Під час пошуку модулі на етапі ініціалізації, GIMP перевіряє цей каталог разом із системним каталогом модулів.Ця тека використовується для зберігання тимчасових, створених користувачем та інших не системних додатків до середовища доповнень. Під час пошуку файлів змін середовища додатків, GIMP перевіряє цей каталог разом із відповідним системним каталогом.Ця тека використовується для зберігання тимчасових, створених користувачем та інших не системних доповнень. Під час пошуку доповнень, GIMP перевіряє цей каталог разом із системним каталогом доповнень.Ця тека використовується для зберігання створених користувачем пензлів. Під час пошуку пензлів, GIMP перевіряє цей каталог разом із системним каталогом пензлів.Ця тека використовується для зберігання створених користувачем градієнтів. При пошуку градієнтів, GIMP перевіряє цей каталог разом із системним каталогом градієнтів.Ця тека використовується для зберігання створених користувачем палітр. При пошуку палітр, GIMP перевіряє цей каталог разом із системним каталогом палітр.Ця тека використовується для зберігання створених користувачем візерунків. Під час пошуку візерунків, GIMP перевіряє цей каталог разом із системним каталогом візерунків.Ця тека використовується для тимчасового зберігання буферів скасування операцій, для зменшення використання пам'яті. При некоректному завершенні роботи GIMP, у цій теці можуть залишитися файли з назвами gimp<#>.<#>. Після завершення сеансу, ці файли непотрібні GIMP, тому їх можна видалити.Ця тека буде містити ряд важливих файлів. Для отримання додаткової інформації про файл чи підтеку в дереві клацніть на їх назві.Відстань у точках, при наближенні на яку відбувається прив'язування до напрямних чи сітки.Ця програма розповсюджується в сподіванні на те, що вона буде корисною, але БЕЗ БУДЬ-ЯКИХ ГАРАНТІЙ, в тому числі без неявної гарантії КОМЕРЦІЙНОЇ ЦІННОСТІ чи ПРИДАТНОСТІ ДЛЯ БУДЬ-ЯКИХ ЦІЛЕЙ. Докладніше про це дивіться GNU General Public License.Це вільні програма; ви можете розповсюджувати її та/чи змінювати на умовах ліцензії GNU General Public License, що опублікована Free Software Foundation; версії 2 цієх ліцензії, чи (на вашу думку) будь-якою більш пізнішої версії.Це текстове поле типово обмежено %d символами.У цього інструменті немає параметрів.Вікно має %d відкритих вкладок. Закривання вікна призведе до закривання усіх його вкладок.ПорігПоріг не діє на індексовані шари.Поріг:Мініатюра %d з %dРозмір _кешу:Розмір кешу:Нахил:КрихітнийЗаголовок та станУ _контурЩоб змінити комбінацію клавіш, клацніть у відповідному рядку та введіть нову комбінацію клавіш, або натисніть пробіл, щоб очистити.Розва_гиПеремикнути швидку маскуПеремикнути _швидку маскуНадто багато повідомлень про помилки!Параметри інструментуПараметри інструментівПеремикач інструмента %sП_араметри інструментівЗначок інструментуЗначок інструменту з перехрестямПанель _інструментівМеню панелі інструментівМеню панелі інструментівІнструментиМеню панелі інструментівТакі інструменти як "Заповнення" та "Вільне виділення" при роботі користуються алгоритмом зернового заповнення. Заповнення починається з вибраної початкової точки та продовжується доти, поки різниця інтенсивності між початковою точкою та поточною не перевищить певної межі. Тут вказано число, яке визначає цю межу.Про_зорістьПеретворення альфа-каналу у маскуПеретворенняПеретворення каналуНапрямок перетворенняПеретворення шаруПеретворення контуруПеретворення текстового шаруПроцедури інструментів перетворенняПеретворення шаруПеретворення контуруПеретворення виділеногоПеретворенняПроцедури перетворенняПеретворення...ПерекладПрозорістьТип _прозорості:Трикутна хвиляПовнокольоровеТипТип: %sНатисніть комбінацію клавішНатисніть з'єднання клавіш чи Backspace для скасуванняНе вдається додати маску шару, бо шар вже має маску.Не вдається вирізати/скопіювати, тому що виділена ділянка порожня.Не вдається відкрити тестовий тимчасовий файл. Щоб уникнути встати даних, перевірте розташування та права тимчасового каталогу, який визначений у параметрах (наразі це "%s").Не вдається відкрити файл підкачки. GIMP використав усю доступну оперативну пам'ять та не може використати файл підкачки. Ваше зображення може бути втрачене. Збережіть його, перезапустіть GIMP та перевірте шлях до файлу підкачки в параметрах.Не вдається викликати %s. Можливо, відповідне доповнення завершилось аварійно.НевизначеноВернутиІсторія скасувань дій_Історія скасуваньОдиниціНевідомоНевідомий тип файлаНе є файлом палітри RIFF: +%sВивантажитиНеназванийНеназванеТипово використовувати "То_чка за точкою"_Динамічні комбінації клавішіВикористовувати _зовнішній переглядачВикористовувати усі виділені шари при скороченні виділенняВикористовувати чорно-білу (1-бітну) палітруВикористати колір з градієнтаВикористовувати власну палітруВикористовувати інформаційне вікноВикористовувати палітру оптимізовану для WWWЖурнал встановленняІнтерфейс користувачаДопоміжне вікноІнтенсивністьЯскравість:Режим векторівВерсію %s створили для васВерсія:ВертикальнеВертикальний зсув першої лінії сітки. Значення може бути від'ємним.Відстань між вертикальними лініями.Дуже великийДуже малийПереглядВідображати у вигляді _таблиціВідображати _спискомПерегляд таблицеюПерегляд спискомОптичний клас:Оптична глибина:Увага: не вдається завантажити дані з: -%sКолір переднього плану.gimprc використовується для зберігання особистих установок, які впливають на поведінку GIMP. Тут також вказуються шляхи пошуку пензлів, палітр, градієнтів, візерунків, доповнень та модулів.Вибраний вами шар є текстовим шаром, але він був змінений з використанням інших інструментів. Редагування шару з використанням інструменту "текстовий редактор" призведе до скасування цих змін. +%sУвага: не вдається зберегти дані: -Ви можете відредагувати шар або створити новий текстовий шар з цими текстовими атрибутами.sessionrc використовується для збереження положення діалогових вікон відкритих під час останнього виходу з GIMP. Можна настроїти GIMP так, щоб вікна відкривались у їх попередніх позиціях.Кеш блоків використовується для забезпечення того, щоб GIMP не займався інтенсивним копіюванням між пам'яттю та диском. Встановлення більших значень цього параметра змушує GIMP менше використовувати підкачку, але призводить до збільшення використання пам'яті. Та навпаки, зменшення значення розміру кешу сприяє більшому використанню підкачки та зменшенню використання пам'яті.Використовується, якщо вимкнено режим "Точка за точкою"unitrc використовується для збереження вашої бази даних одиниць виміру. Ви можете визначити додаткові одиниці та використовувати їх так само, як і вбудовані одиниці: дюйми, міліметри, пункти і піки. Цей файл перезаписується щоразу, коли ви виходите з GIMP.Вертикальна роздільну здатність.Тип вікна, що призначається припаркованим вікнам. Може впливати на спосіб оформлення вікон менеджером вікон.Тип вікна, що призначається панелям інструментів. Може впливати на спосіб оформлення та роботи з цими вікнами менеджером вікон.ТемаТеки темТемиНедостатньо видимих шарів для об'єднання з попереднім.Завжди є вибір між швидкодією та використанням пам'яті. У більшості випадків GIMP вибирає швидкодію. Проте якщо пам'ять для вас має значення, увімкніть цей параметр.Немає активного шару чи каналу для копіювання.Немає активного шару чи каналу для вирізання.Немає активного шару або каналу для обведенняНемає активного шару чи каналу для обведення.Це має бути файл '%s'. Перевірте встановлення.Помилка при зчитуванні файлу '%s'. Будуть використані типові значення. Резервна копія конфігурації створена у '%s'.Цей файл містить набір стандартних розмірів зображень, які використовуються у якості шаблонів.Ця тека використовується для збереження файлів шаблонів зображень.Ця тека використовується для зберігання встановлених користувачем тем.Ця тека використовується для зберігання шрифтів, які повинні відображатись у GIMP. При пошуку шрифтів GIMP перевіряє цей каталог разом із системним каталогом шрифтів.Використовуйте цей каталог, якщо якісь шрифти будете використовувати лише у GIMP. У всіх інших випадках, розміщайте шрифти у системних каталогах шрифтів.Ця тека використовується для збереження файлів параметрів інструменту "Криві".Ця тека використовується для збереження файлів параметрів інструменту "Рівні".Ця тека використовується для збереження параметрів інструментів.Ця тека використовується для зберігання створених і встановлених користувачем сценаріїв. Під час пошуку сценаріїв, GIMP перевіряє цей каталог разом із системним каталогом сценаріїв.Ця тека використовується для зберігання тимчасових, створених користувачем та інших не підтримуваних системою модулів динамічного завантаження. Під час пошуку модулі на етапі ініціалізації, GIMP перевіряє цей каталог разом із системним каталогом модулів.Ця тека використовується для зберігання тимчасових, створених користувачем та інших не системних додатків до середовища доповнень. Під час пошуку файлів змін середовища додатків, GIMP перевіряє цей каталог разом із відповідним системним каталогом.Ця тека використовується для зберігання тимчасових, створених користувачем та інших не системних доповнень. Під час пошуку доповнень, GIMP перевіряє цей каталог разом із системним каталогом доповнень.Ця тека використовується для зберігання створених користувачем пензлів. Під час пошуку пензлів, GIMP перевіряє цей каталог разом із системним каталогом пензлів.Ця тека використовується для зберігання створених користувачем градієнтів. При пошуку градієнтів, GIMP перевіряє цей каталог разом із системним каталогом градієнтів.Ця тека використовується для зберігання створених користувачем палітр. При пошуку палітр, GIMP перевіряє цей каталог разом із системним каталогом палітр.Ця тека використовується для зберігання створених користувачем візерунків. Під час пошуку візерунків, GIMP перевіряє цей каталог разом із системним каталогом візерунків.Ця тека використовується для тимчасового зберігання буферів скасування операцій, для зменшення використання пам'яті. При некоректному завершенні роботи GIMP, у цій теці можуть залишитися файли з назвами gimp<#>.<#>. Після завершення сеансу, ці файли непотрібні GIMP, тому їх можна видалити.Ця тека буде містити ряд важливих файлів. Для отримання додаткової інформації про файл чи підтеку в дереві клацніть на їх назві.Відстань у точках, при наближенні на яку відбувається прив'язування до напрямних чи сітки.Ця програма розповсюджується в сподіванні на те, що вона буде корисною, але БЕЗ БУДЬ-ЯКИХ ГАРАНТІЙ, в тому числі без неявної гарантії КОМЕРЦІЙНОЇ ЦІННОСТІ чи ПРИДАТНОСТІ ДЛЯ БУДЬ-ЯКИХ ЦІЛЕЙ. Докладніше про це дивіться GNU General Public License.Це вільні програма; ви можете розповсюджувати її та/чи змінювати на умовах ліцензії GNU General Public License, що опублікована Free Software Foundation; версії 2 цієх ліцензії, чи (на вашу думку) будь-якою більш пізнішої версії.Це текстове поле типово обмежено %d символами.Цей інструмент не має параметрів.ПорігПоріг не діє на індексовані шари.Поріг:Мініатюра %d з %dНахил:КрихітнийЗаголовок та станПараметри інструментуПараметри інструментівПеремикач інструмента %sМеню панелі інструментівІнструментиПеретворення альфа-каналу у маскуПеретворенняПеретворення каналуНапрямок перетворенняПеретворення шаруПеретворення контуруПеретворення текстового шаруПроцедури інструментів перетворенняПеретворенняПеретворення...ПерекладПрозорістьПовнокольоровеТипТип: %sНе вдається додати маску шару, бо шар вже має маску.Не вдається вирізати/скопіювати, тому що виділена ділянка порожня.Не вдається відкрити тестовий тимчасовий файл. Щоб уникнути встати даних, перевірте розташування та права тимчасового каталогу, який визначений у настройках (наразі це "%s").НевизначеноСкасуванняІсторія скасувань дійОдиниціНевідомоНевідомий тип файлаВивантажитиНеназванийНеназванеВикористовувати усі виділені шари при скороченні виділенняЖурнал встановленняІнтерфейс користувачаВеличинаЯскравість:Версію %s створено для ВасВерсія:ВертикальнеВертикальний зсув першої лінії сітки. Значення може бути від'ємним.Відстань між вертикальними лініями.Веб-переглядачПри ввімкненні цієї функції вміст діалогу змінюється у відповідності з тим, яке зображення активно у поточний момент.Всі інструменти малювання будуть показувати контур поточного пензля.При ввімкненні цього параметра зображення стає активним, коли його вікно отримує фокус вводу. Це корисно при роботі з віконними менеджерами, у яких передавання фокусу вводу виконується клацанням по вікну.Якщо ввімкнено, меню можна від'єднувати від панелі інструментів.Якщо ввімкнено, при натисканні на F1 відкривається довідка.Якщо ввімкнено, GIMP не буде зберігати не змінені з моменту відкривання файли.Якщо ввімкнено, GIMP буде створювати окреме інформаційне вікно для кожного повідомлення.При ввімкненні цього параметра, X-сервер визначає позицію миші після кожного руху. Це означає, що малювання великими пензлями буде більш точним, але повільнішим. Але на деяких X-серверах ввімкнення цього параметра забезпечує більш швидку роботу.Якщо ввімкнено, відображається сітка. Це також можна зробити командою "Вигляд->Показувати сітку".Якщо ввімкнено, відображаються напрямні. Це також можна зробити командою "Вигляд->Показувати напрямні".Розмір вікна автоматично змінюється при масштабуванні зображення.Розмір вікна автоматично змінюється при змінах розміру зображення.Якщо ввімкнено, ввімкнено показ меж шару. Це також можна зробити командою "Вигляд->Показувати меді шару".Якщо ввімкнено, ввімкнена панель меню. Це також можна зробити командою "Вигляд->Показувати панель меню".Якщо ввімкнено, відображаються лінійки. Це також можна зробити командою "Вигляд->Показувати лінійки".Якщо ввімкнено, відображаються смуги прокрутки. Це також можна зробити командою "Вигляд->Показувати смуги прокрутки".Якщо ввімкнено, вибраний пензель використовується в усіх інструментах.Якщо ввімкнено, вибраний градієнт використовується для всіх інструментів.Якщо ввімкнено, вибраний візерунок використовується для всіх інструментів.Якщо ввімкнено, ввімкнено показ виділеної ділянки. Це також можна зробити командою "Вигляд->Показувати виділені ділянки".Якщо ввімкнено, відображається рядок стану. Це також можна зробити командою "Вигляд->Показувати рядок стану".Якщо ввімкнено, кожна точка зображення відповідатиме точці екрану.Якщо ввімкнено, то при відкриванні зображення воно буде масштабуватись до розмірів вікна. У іншому випадку у масштабі 1:1Якщо ввімкнено, комбінації клавіш для вибору підсвіченого пункту меню можна змінювати безпосередньо у меню.БілеШиринаШирина:Вигляд віконПозиція вікнаЗапис '%s' -Помилка XCF: версія XCF-файла %d не підтримуєтьсяПопередження: формат файлу XCF версії 0 +%sЗовнішній переглядачЗовнішній переглядачЛаскаво просимо до +встановлення GIMP %d.%dПри ввімкненні цієї функції вміст діалогу змінюється у відповідності з тим, яке зображення активно у поточний момент.Якщо ввімкнено, GIMP відображає мнемонічні правила про нього у меню.Всі інструменти малювання будуть показувати контур поточного пензля.При ввімкненні цього параметра зображення стає активним, коли його вікно отримує фокус вводу. Це корисно при роботі з віконними менеджерами, у яких передавання фокусу вводу виконується клацанням по вікну.При включенні цього параметра в усіх діалогах буде відображатися кнопка "Довідка", що дозволяє звернутись до системі довідки. Без цієї кнопки довідку можна викликати кнопкою F1.Якщо ввімкнено, меню можна від'єднувати від панелі інструментів.Якщо ввімкнено, при натисканні на F1 відкривається довідка.Якщо ввімкнено, GIMP не буде зберігати не змінені з моменту відкривання файли.Якщо ввімкнено, GIMP буде створювати окреме інформаційне вікно для кожного зображення.При ввімкненні цього параметра, X-сервер визначає позицію миші після кожного руху. Це означає, що малювання великими пензлями буде більш точним, але повільнішим. Але на деяких X-серверах ввімкнення цього параметра забезпечує більш швидку роботу.Якщо ввімкнено, при малюванні буде видно курсор.Якщо ввімкнено, відображається сітка. Це також можна зробити командою "Вигляд->Показувати сітку".Якщо ввімкнено, відображаються напрямні. Це також можна зробити командою "Вигляд->Показувати напрямні".Розмір вікна автоматично змінюється при масштабуванні зображення.Розмір вікна автоматично змінюється при змінах розміру зображення.Якщо ввімкнено, ввімкнено показ меж шару. Це також можна зробити командою "Вигляд->Показувати межі шару".Якщо ввімкнено, ввімкнена панель меню. Це також можна зробити командою "Вигляд->Показувати панель меню".Якщо ввімкнено, відображаються лінійки. Це також можна зробити командою "Вигляд->Показувати лінійки".Якщо ввімкнено, відображаються смуги прокрутки. Це також можна зробити командою "Вигляд->Показувати смуги прокрутки".Якщо ввімкнено, вибраний пензель використовується в усіх інструментах.Якщо ввімкнено, вибраний градієнт використовується для всіх інструментів.Якщо ввімкнено, вибраний візерунок використовується для всіх інструментів.Якщо ввімкнено, ввімкнено показ виділеної ділянки. Це також можна зробити командою "Вигляд->Показувати виділені ділянки".Якщо ввімкнено, відображається рядок стану. Це також можна зробити командою "Вигляд->Показувати рядок стану".Якщо ввімкнено, кожна точка зображення відповідатиме точці екрану.Якщо ввімкнено, то при відкриванні зображення масштабується до розмірів вікна. У іншому випадку у масштабі 1:1Якщо ввімкнено, комбінації клавіш для вибору підсвіченого пункту меню можна змінювати безпосередньо у меню.БілеБаланс кольорів діє лише на шари у форматі RGB.ШиринаШирина:Керування зовнішнім виглядом віконКерування зовнішнім виглядом виглядом віконПозиція вікнаЗапис '%s' +XПомилка XCF: версія XCF-файла %d не підтримуєтьсяПопередження: формат файлу XCF версії 0 неправильно зберігає індексовані мапи кольорів. -Поточна мапа буде замінена на мапу у градаціях сірого.ЖовтийЖовтий:Сюди можна прикріпити панелі діалогових вікон.Ви мали отримати копію GNU General Public License разом з цією програмою; якщо це не так, напишіть у Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.Щоб зміни вступили в дію, необхідно перезапустити GIMP.Правила масштабування та зміни розміруМасштаб 1:1Масштабувати до розміру вінкаЗбільшитиЗменшитиМасштабВідношення сторін:Масштаб: %d:1ЗбільшитиЗбільшення та зменшенняЗменшитиМасштаб:[ Основне зображення ]_Згладжування_Авто_BФункція _змішування для сегментаФункція _змішування для виділеної ділянки_Яскравість:_Пензель_CВ_идалити сегментВ_идалити виділене_Віддзеркалити сегмент_Віддзеркалити виділене_G_Градієнт_Горизонтальна:_Відтінок:_Значок:_Імпорт_Освітленість:_MВ_ручну_Назва:_Візерунок_Попередній перегляд_R_Повернути_Повернути %s_Розмножити сегмент..._Розмножити виділене..._Насиченість:Виді_лене_Скасувати_Скасувати "%s"_Вертикальна:_X:_Y_Y:Мас_штаб (%s)кольорівкопіят/дюймдля логічного значення %s очікувалось 'yes' чи 'no', отримано '%s'критична помилка лексичного аналізувідтінки сіроговідтінки сірого - пустодюймдюймиіндексованеіндексоване - пустонеправильний рядок UTF-8неправильне значення '%ld' для ознаки %sнеправильне значення '%s' для ознаки %sміліметрміліметрин/двідсотокпікапікиточка раструточок раструточок/%aточок/%sпунктпунктиtips-locale:ukЮрій Сирота -Максим Дзюманенко значення ознаки %s не є правильним рядком UTF-8при граматичному аналізі '%s': %s \ No newline at end of file +Поточна мапа буде замінена на мапу у градаціях сірого.YЖовтийЖовтий:Ви намагаєтесь створити зображення розміром %s.Сюди можна прикріпити панелі діалогових вікон.Ви мали отримати копію GNU General Public License разом з цією програмою; якщо це не так, напишіть у Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.Щоб зміни вступили в дію, необхідно перезапустити GIMP.Вашу встановлення GIMP неповне:При наступному запуску GIMP значення параметрів пристрою вводу будуть скинуті на типові.При наступному запуску GIMP будуть використовуватись клавіші типові комбінації клавіш.При наступному запуску GIMP значення параметрів вікна будуть скинуті на типові.Правила масштабування та зміни розміруМасштаб 1:1Масштабувати до розміру вінкаЗбільшитиЗменшитиМасштабВідношення сторін:Збільшити до _розміру вінкаЗ_більшитиЗ_меншитиМасштабувати до розміру вінкаМасштаб: %d:1При зміні розмірів вікна змінювати розміри зображенняЗбільшитиЗбільшення та зменшенняЗменшитиМасштаб:[ Основне зображення ]_Про програму_Захопити_Додати колір з тла_Додати колір з основного_Додати вкладку_Додати до виділення_Розширені параметри_Аерограф_Усе_Прикріпити шар_Згладжування_Довільне обертання..._Художні_Перспектива_Авто_BКолір _тлаКолір _тла:_Чорний (Абсолютно прозорий)Функція _змішування для сегментаФункція _змішування для виділеної ділянки_Розмивання_Яскравість:_Пензель_Пензлі_Пензлі, візерунки та градієнти_Заповнення_БуферЗа к_ольоромВиділення за _кольором_CСтиль _початку:_КаналиО_чистити повідомлення про помилкиО_чистити історію скасувань_Штамп_Закрити_Закрити вкладку_ХмариІнструменти _кольору_КолірН_алаштувати колір та прозорість.../_Контекст_Контекстна довідка_Копіювати_Копіювати з буфера з назвою...С_творити зображення з шаблону..._Кадрування і зміна розміру_Кадрувати_Криві_Криві..._ТемнийТ_ипові кольориВ_идалити пензельВ_идалити буферВ_идалити каналВ_идалити колірВ_идалити градієнт..._Видалити зображенняВ_идалити шарВ_идалити палітруВ_идалити контурВ_идалити візерунок...В_идалити збережені параметриВ_идалити сегментВ_идалити виділенеВ_идалити шаблон_Знебарвлення_Відкріпити вкладку_Стан пристрою_Діалоги_Відкинути зміниВи_далити текстову інформаціюВ_икривленняТо_чка за точкоюД_ублювати_Правка_Правка пензля..._Правка ознак каналу..._Правка кольору..._Правка градієнта..._Правка ознак шару..._Правка палітри..._Правка ознак контуру..._Правка візерунку..._Правка шаблону...Виділення _еліпсом_Попередній перегляд шарів та каналів_Гігантський_Вирівнювання_ГумкаКолір _пер.плану_Файл_Тло:_Підігнати до розміру вікна_Звести зображення_Дзеркало_Віддзеркалити сегмент_Віддзеркалити виділенеП_лаваюче_ШрифтШ_рифтиКолір _переднього плану:_Вільне виділення_G_ЗагальніК_олосальний_ГрадієнтГра_дієнтиВідтінки _сірогоКопія шару у _відтінкахЗ_більшення..._Напрямні_Жорсткість_Довідка_Горизонтальна:Від_тінок:В_еличезний_Значок_Значок:_Зображення_Зображення_Імпорт_Імпортувати палітру..._Індексоване..._Інформаційне вікно_Перетнути з виділенням_ІнвертуватиСтиль к_ута:_Великий_Шар_Шари_Шари, канали та контуриКолір крайньої _лівої точкиСусідньої зл_іва до крайньої правої точки_Рівні..._Світлий_Світлові ефекти_Освітленість:Сти_ль лінії:_ЛінійнаЗв'_язаний_Завантажити колір лівої точки з_Опустити канал_Опустити шар_Опустити контур_MВр_учну_Мапа_МаскаМаска -> Виді_лене_Максимальна кількість кольорів:_Вимірювач_СереднійОб'_єднати палітри..._Об'єднати імпортовані контури_Мігрувати уподобання користувача з GIMP 2.0_Різні інструментиГ_острота скосів:Ре_жимДиспетчер _модулівПере_міщення_Назва:П_рирода_Створити пензель_Створити канал_Створити канал..._Створити контур..._Створити градієнт_Створити шар_Створити шар..._Створити палітру_Створити контур_Створити контур..._Створити візерунок_Створити шаблон...С_творити вікно_Створити..._Наступна_Шум_НемаєЗ_сув..._Непрозорість_Відкрити зображення_Відкрити...Колір нап_овненняІнструменти _малюванняПе_нзель_ПалітраВст_авитиВста_вити буферВст_авити з буфера з назвою...К_онтури_Візерунок_ПерспективаПо_стеризація..._Параметри_Попередній перегляд_Розмір перегляду_ПопередняРозмір при д_рукуванні...В_ластивостіУвімкнути _швидку маскуВи_йти_R_RGB_Радіус_Підняти каналП_ідняти шарПі_дняти контур_Розгорнути вікна_Підняти чи відкрити зображення_ПризначитиПр_ямокутне виділенняПовт_оритиПовт_орити "%s"_Оновити пензлі_Оновити градієнти_Оновити палітри_Оновити візерункиВ_идалити невикористані кольори з остаточної палітриРаст_еризація_Замінити_Розмножити сегмент..._Розмножити виділене..._Перечитати перелік шрифтів_Типовий порядок/видимість_Відновити типові параметри пристроїв вводу_Відновити комбінації клавіш пристроїв вводу_Відновити позиції вікон на типові_Завантажити параметри зКолір крайньої _правої точкиСусідньої с_права до крайньої лівої точки_Обертання_Насиченість:З_берегтиЗ_берегти колір лівої точки уЗ_берегти параметри якЗ_берігати параметри пристроїв вводу при виходіЗ_берігати комбінації клавіш при виходіЗ_берігати позиції вікон при виходіМас_штабМас_штабування зображення...Мас_штабувати шар..._Масштабувати до розміру зображенняВиді_ленняВиді_ленеПравка виділеної діл_янкиІнструменти ви_діляння_ФормаРі_зкістьПоказувати _виділення_Показувати на панелі_Синусоїда_МалийПале_цьВідстань прив'_язки:_Обвести виділену ділянкуОбве_сти виділену ділянку..._Відняти від виділення_Стиль вкладокШа_блони:Ша_блони_Текст_Поріг...К_рихітнийПо_рада дня_Інструмент_Інструменти_Перетворити альфа-канал шаруПере_творенняІнструменти п_еретворенняВ_ернутиВ_ернути "%s"_Вертикальна:_Вигляд_Видимий_Веб_Програма перегляду довідки:_Білий (Абсолютно непрозорий)_Баланс білого_Ширина:_Заповнити зображеннямРоздільна здатність по _X:_X:_Розш._YРоздільна здатність по _Y:_Y:Мас_штабМас_штаб (%s)кольорівкопіят/дюймдля логічного значення %s очікувалось 'yes' чи 'no', отримано '%s'критична помилка лексичного аналізувідтінки сіроговідтінки сірого - пустодюймдюймиіндексованеіндексоване - пустонеправильний рядок UTF-8неправильне значення '%ld' для значканеправильне значення '%ld' для ознаки %sнеправильне значення '%s' для значканеправильне значення '%s' для ознаки %sміліметрміліметрихвилинан/двідсотокпікапікиточкаточокточок/%aточок/%sпунктпунктисекундаtips-locale:ukЮрій Сирота +Максим Дзюманенко значення ознаки %s не є правильним рядком UTF-8при синтаксичному аналізі '%s': %s \ No newline at end of file diff -uraN gimp-2.2.4/po/uk.po gimp-2.2.5/po/uk.po --- gimp-2.2.4/po/uk.po 2005-01-22 17:33:11.000000000 +0100 +++ gimp-2.2.5/po/uk.po 2005-03-08 16:48:01.000000000 +0100 @@ -7,8 +7,8 @@ msgstr "" "Project-Id-Version: gimp 2.0.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-01-22 17:32+0100\n" -"PO-Revision-Date: 2004-04-16 17:59+0200\n" +"POT-Creation-Date: 2005-02-24 17:36+0200\n" +"PO-Revision-Date: 2005-02-23 17:59+0200\n" "Last-Translator: Maxim Dziumanenko \n" "Language-Team: Ukrainian \n" "MIME-Version: 1.0\n" @@ -38,7 +38,7 @@ msgstr "" "Не вдається відкрити тестовий тимчасовий файл. Щоб уникнути встати даних, " "перевірте розташування та права тимчасового каталогу, який визначений у " -"настройках (наразі це \"%s\")." +"параметрах (наразі це \"%s\")." #: app/app_procs.c:348 app/core/gimppalette-import.c:441 #, c-format @@ -49,6 +49,7 @@ #, c-format msgid "The batch interpreter '%s' is not available, batch mode disabled." msgstr "" +"Інтерпретатор '%s' недоступний, використання командного режиму неможливе." #: app/main.c:211 msgid "" @@ -56,7 +57,7 @@ "Make sure a proper setup for your display environment exists." msgstr "" "GIMP не може ініціалізувати графічний інтерфейс.\n" -"Перевірте правильність настройок вашого графічного середовища." +"Перевірте правильність параметрів вашого графічного середовища." #: app/main.c:222 app/widgets/gimptoolbox.c:559 #: data/misc/gimp.desktop.in.in.h:3 @@ -96,11 +97,11 @@ #: app/main.c:512 msgid " -h, --help Output this help.\n" -msgstr " -h, --help Вивід цієї довідки.\n" +msgstr " -h, --help Вивести цю довідку.\n" #: app/main.c:513 msgid " -v, --version Output version information.\n" -msgstr " -v, --version Вивід інформації про версію.\n" +msgstr " -v, --version Вивести інформацію про версію.\n" #: app/main.c:514 msgid " --verbose Show startup messages.\n" @@ -112,7 +113,7 @@ "plugins.\n" msgstr "" " --no-shm Не використовувати спільну пам'ять між GIMP та " -"модулями.\n" +"доповненнями.\n" #: app/main.c:516 msgid " --no-cpu-accel Do not use special CPU accelerations.\n" @@ -201,6 +202,8 @@ " --batch-interpreter \n" " The procedure to process batch commands with.\n" msgstr "" +" --batch-interpreter <процедура>\n" +" Процедура, що запускається у командному рядку.\n" #: app/main.c:534 msgid " -b, --batch Process commands in batch mode.\n" @@ -213,6 +216,9 @@ "\n" "Please check the value of the environment variable G_FILENAME_ENCODING." msgstr "" +"Назву файлу неможливо перекодувати у UTF-8: %s\n" +"\n" +"Перевірте значення змінної оточення G_FILENAME_ENCODING." #: app/sanity.c:213 #, c-format @@ -224,6 +230,12 @@ "8 and you didn't tell GLib about this. Please set the environment variable " "G_FILENAME_ENCODING." msgstr "" +"Назва каталогу, що містить параметри користувача GIMP, не вдається " +"перекодувати у UTF-8: %s\n" +"\n" +"Швидше за все, у вашій файловій системі використовується кодування, відмінне " +"від UTF-8, та ви не вказали про це GLib. Установите правильне значення " +"змінної оточення G_FILENAME_ENCODING." #. initialize the list of gimp brushes #: app/actions/actions.c:93 app/core/gimp.c:856 app/dialogs/dialogs.c:138 @@ -240,32 +252,28 @@ msgstr "Канали" #: app/actions/actions.c:102 -#, fuzzy msgid "Colormap Editor" -msgstr "Мапа кольорів" +msgstr "Редактор мапи кольорів" #: app/actions/actions.c:105 app/pdb/internal_procs.c:101 -#, fuzzy msgid "Context" -msgstr "/Довідка/_Контекстна довідка" +msgstr "Контекст" #: app/actions/actions.c:108 msgid "Debug" -msgstr "" +msgstr "Налагодження" #: app/actions/actions.c:111 -#, fuzzy msgid "Dialogs" -msgstr "/_Діалоги" +msgstr "Діалоги" #: app/actions/actions.c:114 -#, fuzzy msgid "Dockable" -msgstr "Малювання" +msgstr "Панель" #: app/actions/actions.c:117 app/dialogs/dialogs.c:152 msgid "Document History" -msgstr "Історія зображення" +msgstr "Недавні зображення" #: app/actions/actions.c:120 app/core/core-enums.c:1041 #: app/core/core-enums.c:1071 @@ -281,9 +289,8 @@ msgstr "Консоль помилок" #: app/actions/actions.c:129 -#, fuzzy msgid "File" -msgstr "/_Файл" +msgstr "Файл" #. initialize the list of gimp fonts #: app/actions/actions.c:132 app/core/gimp.c:872 app/dialogs/dialogs.c:146 @@ -302,9 +309,8 @@ msgstr "Градієнти" #: app/actions/actions.c:141 -#, fuzzy msgid "Help" -msgstr "/_Довідка" +msgstr "Довідка" #: app/actions/actions.c:144 app/pdb/internal_procs.c:149 #: app/tools/tools-enums.c:176 @@ -345,9 +351,8 @@ msgstr "Швидка маска" #: app/actions/actions.c:168 -#, fuzzy msgid "Select" -msgstr "/Виді_лення" +msgstr "Виділене" #. initialize the template list #: app/actions/actions.c:171 app/core/gimp.c:880 app/dialogs/dialogs.c:154 @@ -355,9 +360,8 @@ msgstr "Шаблони" #: app/actions/actions.c:174 -#, fuzzy msgid "Text Editor" -msgstr "Текстовий редактор GIMP" +msgstr "Текстовий редактор" #: app/actions/actions.c:177 app/dialogs/dialogs.c:123 #: app/dialogs/preferences-dialog.c:1585 app/dialogs/preferences-dialog.c:1588 @@ -375,226 +379,186 @@ msgstr "Контури" #: app/actions/actions.c:186 -#, fuzzy msgid "View" -msgstr "/_Вигляд" +msgstr "Перегляд" #: app/actions/brushes-actions.c:43 msgid "Brushes Menu" msgstr "Меню пензлів" #: app/actions/brushes-actions.c:47 -#, fuzzy msgid "_New Brush" -msgstr "/_Створити пензель" +msgstr "_Створити пензель" #: app/actions/brushes-actions.c:48 -#, fuzzy msgid "New brush" -msgstr "/_Створити пензель" +msgstr "Створити пензель" #: app/actions/brushes-actions.c:53 -#, fuzzy msgid "D_uplicate Brush" -msgstr "/Д_ублювати пензель" +msgstr "Д_ублювати пензель" #: app/actions/brushes-actions.c:54 -#, fuzzy msgid "Duplicate brush" -msgstr "/Д_ублювати пензель" +msgstr "Дублювати пензель" #: app/actions/brushes-actions.c:59 -#, fuzzy msgid "_Delete Brush" -msgstr "/В_идалити пензель" +msgstr "В_идалити пензель" #: app/actions/brushes-actions.c:60 -#, fuzzy msgid "Delete brush" -msgstr "/В_идалити пензель" +msgstr "Видалити пензель" #: app/actions/brushes-actions.c:65 -#, fuzzy msgid "_Refresh Brushes" -msgstr "/_Оновити пензлі" +msgstr "_Оновити пензлі" #: app/actions/brushes-actions.c:66 -#, fuzzy msgid "Refresh brushes" -msgstr "/_Оновити пензлі" +msgstr "Оновити пензлі" #: app/actions/brushes-actions.c:74 -#, fuzzy msgid "_Edit Brush..." -msgstr "/_Правка пензля..." +msgstr "_Правка пензля..." #: app/actions/brushes-actions.c:75 -#, fuzzy msgid "Edit brush" -msgstr "/_Правка пензля..." +msgstr "Правка пензля..." #: app/actions/buffers-actions.c:42 msgid "Buffers Menu" msgstr "Меню буферів" #: app/actions/buffers-actions.c:46 -#, fuzzy msgid "_Paste Buffer" -msgstr "/Вста_вити буфер" +msgstr "Вста_вити буфер" #: app/actions/buffers-actions.c:47 -#, fuzzy msgid "Paste the selected buffer" -msgstr "Перемістити вибрані фільтри вгору" +msgstr "Перемістити виділений буфер" #: app/actions/buffers-actions.c:52 -#, fuzzy msgid "Paste Buffer _Into" -msgstr "/Вставити буфер _у" +msgstr "Вставити буфер _у" #: app/actions/buffers-actions.c:53 -#, fuzzy msgid "Paste the selected buffer into the selection" -msgstr "Обертання шарів та виділених ділянок" +msgstr "Вставити виділений буфер у виділення" #: app/actions/buffers-actions.c:58 -#, fuzzy msgid "Paste Buffer as _New" -msgstr "/Вставити буфер як _нове зображення" +msgstr "Вставити буфер як _нове зображення" #: app/actions/buffers-actions.c:59 -#, fuzzy msgid "Paste the selected buffer as new image" -msgstr "Відновити типові настройки для вибраного фільтру" +msgstr "Вставити виділений буфер як нове зображення" #: app/actions/buffers-actions.c:64 -#, fuzzy msgid "_Delete Buffer" -msgstr "/В_идалити буфер" +msgstr "В_идалити буфер" #: app/actions/buffers-actions.c:65 -#, fuzzy msgid "Delete the selected buffer" -msgstr "Видалити вибраний шаблон" +msgstr "Видалити вибраний буфер" #: app/actions/channels-actions.c:44 msgid "Channels Menu" msgstr "Меню каналів" #: app/actions/channels-actions.c:48 -#, fuzzy msgid "_Edit Channel Attributes..." -msgstr "/_Правка ознак каналу..." +msgstr "_Правка ознак каналу..." #: app/actions/channels-actions.c:49 -#, fuzzy msgid "Edit channel attributes" msgstr "Правка ознак каналу" #: app/actions/channels-actions.c:54 -#, fuzzy msgid "_New Channel..." -msgstr "/_Створити канал..." +msgstr "_Створити канал..." #: app/actions/channels-actions.c:55 -#, fuzzy msgid "New channel..." -msgstr "/_Створити канал..." +msgstr "Створити канал..." #: app/actions/channels-actions.c:60 -#, fuzzy msgid "_New Channel" -msgstr "Створення каналу" +msgstr "_Створити канал" #: app/actions/channels-actions.c:61 msgid "New channel with last values" -msgstr "" +msgstr "Новий канал з останніми параметрами" #: app/actions/channels-actions.c:66 -#, fuzzy msgid "D_uplicate Channel" -msgstr "/Д_ублювати канал" +msgstr "Д_ублювати канал" #: app/actions/channels-actions.c:67 -#, fuzzy msgid "Duplicate channel" -msgstr "Дублювання каналу" +msgstr "Дублювати канал" #: app/actions/channels-actions.c:72 -#, fuzzy msgid "_Delete Channel" -msgstr "/В_идалити канал" +msgstr "В_идалити канал" #: app/actions/channels-actions.c:73 app/core/core-enums.c:1089 -#, fuzzy msgid "Delete channel" -msgstr "Видалення каналу" +msgstr "Видалити канал" #: app/actions/channels-actions.c:78 -#, fuzzy msgid "_Raise Channel" -msgstr "/_Підняти канал" +msgstr "_Підняти канал" #: app/actions/channels-actions.c:79 -#, fuzzy msgid "Raise channel" -msgstr "Піднімання каналу" +msgstr "Підняти канал" #: app/actions/channels-actions.c:84 -#, fuzzy msgid "Raise Channel to _Top" -msgstr "Піднімання каналу догори" +msgstr "Підняти канал до_гори" #: app/actions/channels-actions.c:85 -#, fuzzy msgid "Raise channel to top" -msgstr "Піднімання каналу догори" +msgstr "Підняти канал догори" #: app/actions/channels-actions.c:90 -#, fuzzy msgid "_Lower Channel" -msgstr "/_Опустити канал" +msgstr "_Опустити канал" #: app/actions/channels-actions.c:91 -#, fuzzy msgid "Lower channel" -msgstr "Опускання каналу" +msgstr "Опустити канал" #: app/actions/channels-actions.c:96 -#, fuzzy msgid "Lower Channel to _Bottom" -msgstr "Опускання каналу додолу" +msgstr "Опустити канал _додолу" #: app/actions/channels-actions.c:97 -#, fuzzy msgid "Lower channel to bottom" -msgstr "Опускання каналу додолу" +msgstr "Опустити каналу додолу" #: app/actions/channels-actions.c:105 -#, fuzzy msgid "Channel to Sele_ction" -msgstr "/Канал -> Виді_лене" +msgstr "Канал -> Виді_лення" #: app/actions/channels-actions.c:106 -#, fuzzy msgid "Channel to selection" msgstr "Канал -> Виділене" #: app/actions/channels-actions.c:111 app/actions/layers-actions.c:226 #: app/actions/vectors-actions.c:173 -#, fuzzy msgid "_Add to Selection" -msgstr "/_Додати до виділення" +msgstr "_Додати до виділення" #: app/actions/channels-actions.c:112 app/actions/vectors-actions.c:174 msgid "Add" -msgstr "" +msgstr "Додати" #: 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 "/_Відняти від виділення" +msgstr "_Відняти від виділення" #: app/actions/channels-actions.c:118 app/actions/vectors-actions.c:180 #: app/widgets/gimpwidgets-constructors.c:69 @@ -604,14 +568,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 "/_Перетнути з виділенням" +msgstr "_Перетнути з виділенням" #: app/actions/channels-actions.c:124 app/actions/vectors-actions.c:186 -#, fuzzy msgid "Intersect" -msgstr "Інтерфейс" +msgstr "Перетин" #: app/actions/channels-commands.c:86 app/actions/channels-commands.c:383 msgid "Channel Attributes" @@ -654,77 +616,64 @@ msgstr "Канал -> Виділене" #: app/actions/colormap-editor-actions.c:43 -#, fuzzy msgid "Colormap Menu" -msgstr "Мапа кольорів" +msgstr "Меню мапи кольорів" #: app/actions/colormap-editor-actions.c:47 #: app/actions/palette-editor-actions.c:47 -#, fuzzy msgid "_Edit Color..." -msgstr "/_Правка кольору..." +msgstr "_Правка кольору..." #: app/actions/colormap-editor-actions.c:48 #: app/actions/palette-editor-actions.c:48 -#, fuzzy msgid "Edit color" msgstr "Правка кольору" #: app/actions/colormap-editor-actions.c:56 -#, fuzzy msgid "_Add Color from FG" -msgstr "/_Додати колір до основного" +msgstr "_Додати колір з основного" #: app/actions/colormap-editor-actions.c:57 -#, fuzzy msgid "Add color from FG" -msgstr "/_Додати колір до основного" +msgstr "Додати колір з основного" #: app/actions/colormap-editor-actions.c:62 -#, fuzzy msgid "_Add Color from BG" -msgstr "/_Додати колір до тла" +msgstr "_Додати колір з тла" #: app/actions/colormap-editor-actions.c:63 -#, fuzzy msgid "Add color from BG" -msgstr "/_Додати колір до тла" +msgstr "Додати колір з тла" #: app/actions/colormap-editor-commands.c:70 -#, fuzzy, c-format +#, c-format msgid "Edit colormap entry #%d" -msgstr "Правка елементу палітри кольорів" +msgstr "Правка елементу палітри кольорів #%d" #: app/actions/colormap-editor-commands.c:76 -#, fuzzy msgid "Edit Colormap Entry" msgstr "Правка елементу палітри кольорів" #: app/actions/context-actions.c:46 -#, fuzzy msgid "_Context" -msgstr "/Довідка/_Контекстна довідка" +msgstr "/_Контекст" #: app/actions/context-actions.c:47 app/actions/layers-actions.c:53 #: app/actions/plug-in-actions.c:64 -#, fuzzy msgid "_Colors" -msgstr "Колір" +msgstr "_Колір" #: app/actions/context-actions.c:48 app/actions/layers-actions.c:59 -#, fuzzy msgid "_Opacity" -msgstr "Непрозорість" +msgstr "_Непрозорість" #: app/actions/context-actions.c:49 -#, fuzzy msgid "Paint _Mode" -msgstr "Тип дії" +msgstr "_Режим малювання" #: app/actions/context-actions.c:50 -#, fuzzy msgid "_Tool" -msgstr "/С_ервіс" +msgstr "_Інструмент" #: app/actions/context-actions.c:51 app/dialogs/preferences-dialog.c:1627 msgid "_Brush" @@ -736,9 +685,8 @@ msgstr "_Візерунок" #: app/actions/context-actions.c:53 -#, fuzzy msgid "_Palette" -msgstr "Палітра" +msgstr "_Палітра" #: app/actions/context-actions.c:54 app/dialogs/palette-import-dialog.c:219 #: app/dialogs/preferences-dialog.c:1633 @@ -746,49 +694,40 @@ msgstr "_Градієнт" #: app/actions/context-actions.c:55 -#, fuzzy msgid "_Font" -msgstr "_Шрифт:" +msgstr "_Шрифт" #: app/actions/context-actions.c:57 -#, fuzzy msgid "_Shape" -msgstr "Форма" +msgstr "_Форма" #: app/actions/context-actions.c:58 -#, fuzzy msgid "_Radius" -msgstr "Радіус:" +msgstr "_Радіус" #: app/actions/context-actions.c:59 -#, fuzzy msgid "S_pikes" -msgstr "точок растру" +msgstr "_точок" #: app/actions/context-actions.c:60 -#, fuzzy msgid "_Hardness" -msgstr "Твердість" +msgstr "_Жорсткість" #: app/actions/context-actions.c:61 -#, fuzzy msgid "_Aspect" -msgstr "Перспектива" +msgstr "_Перспектива" #: app/actions/context-actions.c:62 -#, fuzzy msgid "A_ngle" -msgstr "Кут:" +msgstr "_Кут" #: app/actions/context-actions.c:65 -#, fuzzy msgid "_Default Colors" -msgstr "/Сервіс/Т_ипові кольори" +msgstr "Т_ипові кольори" #: app/actions/context-actions.c:70 -#, fuzzy msgid "S_wap Colors" -msgstr "/Сервіс/_Обміняти місцями кольори" +msgstr "_Обміняти місцями кольори" #: app/actions/data-commands.c:79 app/core/gimpimage.c:1283 #: app/core/gimppalette-import.c:219 app/core/gimppalette.c:523 @@ -798,9 +737,8 @@ msgstr "Неназване" #: app/actions/data-commands.c:149 -#, fuzzy msgid "Delete Object" -msgstr "Видалення об'єкту даних" +msgstr "Видалити об'єкт" #: app/actions/data-commands.c:167 #, c-format @@ -808,364 +746,296 @@ msgstr "Ви дійсно бажаєте видалити \"%s\" зі списку зображень на диску?" #: app/actions/dialogs-actions.c:38 -#, fuzzy msgid "_Dialogs" -msgstr "/_Діалоги" +msgstr "_Діалоги" #: app/actions/dialogs-actions.c:39 -#, fuzzy msgid "Create New Doc_k" -msgstr "/Діалоги/Створити нову панель" +msgstr "С_творити нову панель" #: app/actions/dialogs-actions.c:42 -#, fuzzy msgid "_Layers, Channels & Paths" -msgstr "/Діалоги/Створити нову панель/_Шари, канали та контури" +msgstr "_Шари, канали та контури" #: app/actions/dialogs-actions.c:47 -#, fuzzy msgid "_Brushes, Patterns & Gradients" -msgstr "/Діалоги/Створити нову панель/_Пензлі, візерунки та градієнти" +msgstr "_Пензлі, візерунки та градієнти" #: app/actions/dialogs-actions.c:52 msgid "_Misc. Stuff" -msgstr "" +msgstr "_Різні інструменти" #: app/actions/dialogs-actions.c:57 -#, fuzzy msgid "Tool_box" -msgstr "Меню панелі інструментів" +msgstr "Панель _інструментів" #: app/actions/dialogs-actions.c:65 -#, fuzzy msgid "Tool _Options" -msgstr "Параметри інструменту" +msgstr "П_араметри інструментів" #: app/actions/dialogs-actions.c:70 -#, fuzzy msgid "_Device Status" -msgstr "Стан пристрою" +msgstr "_Стан пристрою" #: app/actions/dialogs-actions.c:75 -#, fuzzy msgid "_Layers" -msgstr "Шари" +msgstr "_Шари" #: app/actions/dialogs-actions.c:80 -#, fuzzy msgid "_Channels" -msgstr "Канали" +msgstr "_Канали" #: app/actions/dialogs-actions.c:85 app/tools/gimpvectortool.c:162 -#, fuzzy msgid "_Paths" -msgstr "Контури" +msgstr "К_онтури" #: app/actions/dialogs-actions.c:90 -#, fuzzy msgid "Color_map" -msgstr "Мапа кольорів" +msgstr "_Мапа кольорів" #: app/actions/dialogs-actions.c:95 -#, fuzzy msgid "Histogra_m" -msgstr "Гістограма" +msgstr "_Гістограма" #: app/actions/dialogs-actions.c:100 -#, fuzzy msgid "_Selection Editor" -msgstr "Редактор виділеної ділянки" +msgstr "Правка виділеної діл_янки" #: app/actions/dialogs-actions.c:105 -#, fuzzy msgid "Na_vigation" -msgstr "Навігація" +msgstr "_Навігація" #: app/actions/dialogs-actions.c:110 -#, fuzzy msgid "Undo _History" -msgstr "Історія скасувань дій" +msgstr "_Історія скасувань" #: app/actions/dialogs-actions.c:115 -#, fuzzy msgid "Colo_rs" -msgstr "Колір" +msgstr "Кол_ьори" #: app/actions/dialogs-actions.c:120 -#, fuzzy msgid "_Brushes" -msgstr "Пензлі" +msgstr "_Пензлі" #: app/actions/dialogs-actions.c:125 -#, fuzzy msgid "P_atterns" -msgstr "Візерунки" +msgstr "_Візерунки" #: app/actions/dialogs-actions.c:130 -#, fuzzy msgid "_Gradients" -msgstr "_Градієнт" +msgstr "Гра_дієнти" #: app/actions/dialogs-actions.c:135 -#, fuzzy msgid "Pal_ettes" -msgstr "Палітри" +msgstr "Па_літри" #: app/actions/dialogs-actions.c:140 -#, fuzzy msgid "_Fonts" -msgstr "Шрифти" +msgstr "Ш_рифти" #: app/actions/dialogs-actions.c:145 -#, fuzzy msgid "B_uffers" -msgstr "Буфери" +msgstr "Бу_фери" #: app/actions/dialogs-actions.c:150 -#, fuzzy msgid "_Images" -msgstr "Зображення" +msgstr "_Зображення" #: app/actions/dialogs-actions.c:155 -#, fuzzy msgid "Document Histor_y" -msgstr "Історія зображення" +msgstr "Н_едавні зображення" #: app/actions/dialogs-actions.c:160 -#, fuzzy msgid "_Templates" -msgstr "Шаблони" +msgstr "Ша_блони" #: app/actions/dialogs-actions.c:165 -#, fuzzy msgid "T_ools" -msgstr "Інструменти" +msgstr "Інстр_ументи" #: app/actions/dialogs-actions.c:170 -#, fuzzy msgid "Error Co_nsole" -msgstr "Консоль помилок" +msgstr "Консоль пом_илок" #: app/actions/dialogs-actions.c:180 -#, fuzzy msgid "_Preferences" -msgstr "Настройка" +msgstr "_Параметри" #: app/actions/dialogs-actions.c:185 -#, fuzzy msgid "_Module Manager" -msgstr "Диспетчер модулів" +msgstr "Диспетчер _модулів" #: app/actions/dialogs-actions.c:190 -#, fuzzy msgid "_Tip of the Day" -msgstr "/Довідка/По_рада дня" +msgstr "По_рада дня" #: app/actions/dialogs-actions.c:195 -#, fuzzy msgid "_About" -msgstr "_Авто" +msgstr "_Про програму" #: app/actions/dockable-actions.c:49 msgid "Dialogs Menu" msgstr "Меню діалогів" #: app/actions/dockable-actions.c:53 -#, fuzzy msgid "_Add Tab" -msgstr "/_Додати вкладку" +msgstr "_Додати вкладку" #: app/actions/dockable-actions.c:54 -#, fuzzy msgid "_Preview Size" -msgstr "/_Розмір перегляду" +msgstr "_Розмір перегляду" #: app/actions/dockable-actions.c:55 -#, fuzzy msgid "_Tab Style" -msgstr "/_Стиль вкладок" +msgstr "_Стиль вкладок" #: app/actions/dockable-actions.c:58 -#, fuzzy msgid "_Close Tab" -msgstr "/_Закрити вкладку" +msgstr "_Закрити вкладку" #: app/actions/dockable-actions.c:63 -#, fuzzy msgid "_Detach Tab" -msgstr "/_Відкріпити вкладку" +msgstr "_Відкріпити вкладку" #: app/actions/dockable-actions.c:68 -#, fuzzy msgid "M_ove to Screen..." -msgstr "/Перемістити по екрану..." +msgstr "Пере_містити по екрану..." #: app/actions/dockable-actions.c:76 -#, fuzzy msgid "_Show Image Selection" msgstr "Показувати _виділення" #: app/actions/dockable-actions.c:82 -#, fuzzy msgid "Auto _Follow Active Image" -msgstr "/Слідувати за _активним зображенням" +msgstr "Слідувати за _активним зображенням" #: app/actions/dockable-actions.c:101 -#, fuzzy msgid "_Tiny" -msgstr "Крихітний" +msgstr "К_рихітний" #: app/actions/dockable-actions.c:102 -#, fuzzy msgid "E_xtra Small" -msgstr "Дуже малий" +msgstr "Д_уже малий" #: app/actions/dockable-actions.c:103 -#, fuzzy msgid "_Small" -msgstr "Малий" +msgstr "_Малий" #: app/actions/dockable-actions.c:104 -#, fuzzy msgid "_Medium" -msgstr "Середній" +msgstr "_Середній" #: app/actions/dockable-actions.c:105 -#, fuzzy msgid "_Large" -msgstr "Великий" +msgstr "_Великий" #: app/actions/dockable-actions.c:106 -#, fuzzy msgid "Ex_tra Large" -msgstr "Дуже великий" +msgstr "Ду_же великий" #: app/actions/dockable-actions.c:107 -#, fuzzy msgid "_Huge" -msgstr "Величезний" +msgstr "В_еличезний" #: app/actions/dockable-actions.c:108 -#, fuzzy msgid "_Enormous" -msgstr "Гігантський" +msgstr "_Гігантський" #: app/actions/dockable-actions.c:109 -#, fuzzy msgid "_Gigantic" -msgstr "Колосальний" +msgstr "К_олосальний" #: app/actions/dockable-actions.c:114 -#, fuzzy msgid "_Icon" -msgstr "_Значок:" +msgstr "_Значок" #: app/actions/dockable-actions.c:115 -#, fuzzy msgid "Current _Status" -msgstr "Стан" +msgstr "_Стан" #: app/actions/dockable-actions.c:116 -#, fuzzy msgid "_Text" -msgstr "Текст" +msgstr "_Текст" #: app/actions/dockable-actions.c:117 -#, fuzzy msgid "I_con & Text" -msgstr "Значок та текс" +msgstr "З_начок та текст" #: app/actions/dockable-actions.c:118 -#, fuzzy msgid "St_atus & Text" -msgstr "Стан на текст" +msgstr "С_тан на текст" #: app/actions/dockable-actions.c:127 -#, fuzzy msgid "View as _List" -msgstr "/Відображати _списком" +msgstr "Відображати _списком" #: app/actions/dockable-actions.c:132 -#, fuzzy msgid "View as _Grid" -msgstr "/Відображати у вигляді _таблиці" +msgstr "Відображати у вигляді _таблиці" #: app/actions/documents-actions.c:42 msgid "Documents Menu" msgstr "Меню списку зображень" #: app/actions/documents-actions.c:46 -#, fuzzy msgid "_Open Image" -msgstr "/_Відкрити зображення" +msgstr "_Відкрити зображення" #: app/actions/documents-actions.c:47 -#, fuzzy msgid "Open the selected entry" msgstr "Видалити вибраний елемент" #: app/actions/documents-actions.c:52 -#, fuzzy msgid "_Raise or Open Image" -msgstr "/_Підняти чи відкрити зображення" +msgstr "_Підняти чи відкрити зображення" #: app/actions/documents-actions.c:53 msgid "Raise window if already open" -msgstr "" +msgstr "Зробити активним, якщо вже відкрито" #: app/actions/documents-actions.c:58 -#, fuzzy msgid "File Open _Dialog" -msgstr "/_Діалог відкривання файлу" +msgstr "_Діалог відкривання файлу" #: app/actions/documents-actions.c:59 -#, fuzzy msgid "Open image dialog" msgstr "Відкривання зображення" #: app/actions/documents-actions.c:64 -#, fuzzy msgid "Remove _Entry" -msgstr "/Видалити _елемент" +msgstr "Видалити _елемент" #: app/actions/documents-actions.c:65 -#, fuzzy msgid "Remove the selected entry" msgstr "Видалити вибраний елемент" #: app/actions/documents-actions.c:70 -#, fuzzy msgid "Recreate _Preview" -msgstr "/Перечитати _перегляд" +msgstr "Перечитати _перегляд" #: app/actions/documents-actions.c:71 -#, fuzzy msgid "Recreate preview" -msgstr "/Перечитати _перегляд" +msgstr "Перечитати перегляд" #: app/actions/documents-actions.c:76 -#, fuzzy msgid "Reload _all Previews" -msgstr "/Перечитати _всі перегляди" +msgstr "Перечитати _усі перегляди" #: app/actions/documents-actions.c:77 -#, fuzzy msgid "Reload all previews" -msgstr "/Перечитати _всі перегляди" +msgstr "Перечитати усі перегляди" #: app/actions/documents-actions.c:82 -#, fuzzy msgid "Remove Dangling E_ntries" -msgstr "/Видалити застарілі е_лементи" +msgstr "Видалити застарілі е_лементи" #: app/actions/documents-actions.c:83 -#, fuzzy msgid "Remove dangling entries" -msgstr "/Видалити застарілі е_лементи" +msgstr "Видалити застарілі елементи" #: app/actions/documents-commands.c:251 app/actions/file-commands.c:170 #: app/dialogs/file-open-dialog.c:198 app/dialogs/file-open-dialog.c:249 -#: app/dialogs/file-open-location-dialog.c:193 +#: app/dialogs/file-open-location-dialog.c:195 #: app/display/gimpdisplayshell-dnd.c:334 app/widgets/gimplayertreeview.c:804 #: app/widgets/gimptoolbox-dnd.c:125 #, c-format @@ -1179,64 +1049,53 @@ "%s" #: app/actions/drawable-actions.c:45 -#, fuzzy msgid "_Desaturate" -msgstr "Знебарвлення" +msgstr "_Знебарвлення" #: app/actions/drawable-actions.c:50 -#, fuzzy msgid "_Equalize" -msgstr "Вирівнювання" +msgstr "_Вирівнювання" #: app/actions/drawable-actions.c:55 -#, fuzzy msgid "In_vert" -msgstr "Інвертування" +msgstr "_Інвертування" #: app/actions/drawable-actions.c:60 msgid "_White Balance" -msgstr "" +msgstr "_Баланс білого" #: app/actions/drawable-actions.c:65 -#, fuzzy msgid "_Offset..." -msgstr "Зсув" +msgstr "З_сув..." #: app/actions/drawable-actions.c:73 app/actions/vectors-actions.c:153 -#, fuzzy msgid "_Linked" -msgstr "Лінія" +msgstr "Зв'_язаний" #: app/actions/drawable-actions.c:79 app/actions/vectors-actions.c:147 -#, fuzzy msgid "_Visible" -msgstr "/_Файл" +msgstr "_Видимий" #: app/actions/drawable-actions.c:88 app/actions/image-actions.c:141 -#, fuzzy msgid "Flip _Horizontally" -msgstr "_Горизонтальна:" +msgstr "Віддзеркалити _горизонтально" #: app/actions/drawable-actions.c:93 app/actions/image-actions.c:146 -#, fuzzy msgid "Flip _Vertically" -msgstr "_Вертикальна:" +msgstr "Віддзеркалити _вертикально" #. 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 "/Шар/Перетворення/Обернути на 90° _за годинниковою" +msgstr "Обернути на 90° _за годинниковою" #: app/actions/drawable-actions.c:106 app/actions/image-actions.c:160 -#, fuzzy msgid "Rotate _180 degrees" -msgstr "/Зображення/Перетворення/Обернути на _180°" +msgstr "Обернути на _180°" #: app/actions/drawable-actions.c:111 app/actions/image-actions.c:165 -#, fuzzy msgid "Rotate 90 degrees CC_W" -msgstr "/Зображення/Перетворення/Обернути на 90° _проти годинникової" +msgstr "Обернути на 90° _проти годинникової" #: app/actions/drawable-commands.c:58 msgid "Desaturate operates only on RGB color layers." @@ -1251,131 +1110,112 @@ msgstr "Інвертування не діє на індексовані шари." #: app/actions/drawable-commands.c:114 -#, fuzzy msgid "White Balance operates only on RGB color layers." msgstr "Баланс кольорів діє лише на шари у форматі RGB." #: app/actions/edit-actions.c:61 -#, fuzzy msgid "_Edit" -msgstr "/_Правка" +msgstr "_Правка" #: app/actions/edit-actions.c:62 -#, fuzzy msgid "_Buffer" -msgstr "Буфери" +msgstr "_Буфер" #: app/actions/edit-actions.c:65 app/actions/edit-actions.c:230 msgid "_Undo" -msgstr "_Скасувати" +msgstr "В_ернути" #: app/actions/edit-actions.c:66 app/dialogs/dialogs.c:183 #: app/pdb/internal_procs.c:209 msgid "Undo" -msgstr "Скасування" +msgstr "Вернути" #: app/actions/edit-actions.c:71 app/actions/edit-actions.c:231 msgid "_Redo" -msgstr "_Повернути" +msgstr "Повт_орити" #: app/actions/edit-actions.c:72 msgid "Redo" msgstr "Повторити" #: app/actions/edit-actions.c:77 -#, fuzzy msgid "_Clear Undo History" -msgstr "Історія скасувань дій" +msgstr "О_чистити історію скасувань" #: app/actions/edit-actions.c:78 -#, fuzzy msgid "Clear undo history..." -msgstr "Історія скасувань дій" +msgstr "Очистити історію скасувань..." #: app/actions/edit-actions.c:83 -#, fuzzy msgid "Cu_t" -msgstr "Вирізання" +msgstr "_Вирізати" #: app/actions/edit-actions.c:88 -#, fuzzy msgid "_Copy" -msgstr "Кадрування" +msgstr "_Копіювати" #. GIMP_STOCK_COPY_VISIBLE, #: app/actions/edit-actions.c:93 -#, fuzzy msgid "Copy _Visible" -msgstr "/_Файл" +msgstr "Копіювати ви_диме" #: app/actions/edit-actions.c:98 -#, fuzzy msgid "_Paste" -msgstr "Вставлення" +msgstr "Вст_авити" #: app/actions/edit-actions.c:103 -#, fuzzy msgid "Paste _Into" -msgstr "Вставити в" +msgstr "Вставити _у" #: app/actions/edit-actions.c:108 -#, fuzzy msgid "Paste as _New" -msgstr "Вставити як нове" +msgstr "Вставити як _нове" #: app/actions/edit-actions.c:113 -#, fuzzy msgid "Cu_t Named..." -msgstr "Вирізання в буфер з назвою" +msgstr "_Вирізати у буфер з назвою..." #: app/actions/edit-actions.c:118 -#, fuzzy msgid "_Copy Named..." -msgstr "Копіювання з буфера з назвою" +msgstr "_Копіювати з буфера з назвою..." #: app/actions/edit-actions.c:123 -#, fuzzy msgid "_Paste Named..." -msgstr "/Правка/Буфер/Вст_авити буфер з назвою..." +msgstr "Вст_авити з буфера з назвою..." #: app/actions/edit-actions.c:128 -#, fuzzy msgid "Cl_ear" -msgstr "Очистка" +msgstr "О_чистити" #: app/actions/edit-actions.c:136 -#, fuzzy msgid "Fill with _FG Color" -msgstr "Заповнення кольором переднього плану" +msgstr "Заповнення кольором _переднього плану" #: app/actions/edit-actions.c:141 -#, fuzzy msgid "Fill with B_G Color" -msgstr "Заповнення кольором тла" +msgstr "Заповнення кольором _тла" #: app/actions/edit-actions.c:146 -#, fuzzy msgid "Fill with P_attern" -msgstr "Заповнення візерунком" +msgstr "Заповнення ві_зерунком" #: app/actions/edit-actions.c:214 #, c-format msgid "_Undo %s" -msgstr "_Скасувати \"%s\"" +msgstr "В_ернути \"%s\"" #: app/actions/edit-actions.c:219 #, c-format msgid "_Redo %s" -msgstr "_Повернути %s" +msgstr "Повт_орити \"%s\"" #: app/actions/edit-commands.c:104 -#, fuzzy msgid "Clear Undo History" -msgstr "Історія скасувань дій" +msgstr "Очистити історію скасувань дій" #: app/actions/edit-commands.c:122 msgid "Really clear image's undo history?" -msgstr "" +msgstr "Дійсно очистити історію скасувань дій?" #: app/actions/edit-commands.c:210 msgid "Cut Named" @@ -1406,38 +1246,32 @@ msgstr "Меню консолі помилок" #: app/actions/error-console-actions.c:44 -#, fuzzy msgid "_Clear Errors" -msgstr "/О_чистити" +msgstr "О_чистити повідомлення про помилки" #: app/actions/error-console-actions.c:45 -#, fuzzy msgid "Clear errors" msgstr "Очистити помилки" #: app/actions/error-console-actions.c:53 -#, fuzzy msgid "Save _All Errors to File..." -msgstr "/З_берегти всі помилки у файл..." +msgstr "берегти _усі помилки у файл..." #: app/actions/error-console-actions.c:54 -#, fuzzy msgid "Save all errors" -msgstr "Очистити помилки" +msgstr "Зберегти усі помилки" #: app/actions/error-console-actions.c:59 -#, fuzzy msgid "Save _Selection to File..." -msgstr "/Записати виді_лене у файл..." +msgstr "Записати виді_лене у файл..." #: app/actions/error-console-actions.c:60 -#, fuzzy msgid "Save selection" -msgstr "Переміщення виділеного" +msgstr "Збереження виділеного" #: app/actions/error-console-commands.c:69 msgid "Cannot save. Nothing is selected." -msgstr "Зберегти неможливо, нічого не вибрано!" +msgstr "Зберегти неможливо. Нічого не виділено." #: app/actions/error-console-commands.c:80 msgid "Save Error Log to File" @@ -1453,66 +1287,54 @@ "%s" #: app/actions/file-actions.c:61 -#, fuzzy msgid "_File" -msgstr "/_Файл" +msgstr "_Файл" #: app/actions/file-actions.c:62 -#, fuzzy msgid "Open _Recent" -msgstr "/Файл/Відкрити н_едавні" +msgstr "Відкрити н_едавні" #: app/actions/file-actions.c:63 -#, fuzzy msgid "_Acquire" -msgstr "/Файл/_Захопити" +msgstr "_Захопити" #: app/actions/file-actions.c:66 app/actions/file-actions.c:71 -#, fuzzy msgid "_Open..." -msgstr "/Файл/_Відкрити..." +msgstr "_Відкрити..." #: app/actions/file-actions.c:76 -#, fuzzy msgid "Op_en as Layer..." -msgstr "/_Створити шар..." +msgstr "Відкрити як ша_р..." #: app/actions/file-actions.c:81 -#, fuzzy msgid "Open _Location..." -msgstr "Розташування:" +msgstr "Відкрити _адресу..." #: app/actions/file-actions.c:86 -#, fuzzy msgid "_Save" -msgstr "Зберегти" +msgstr "З_берегти" #: app/actions/file-actions.c:91 -#, fuzzy msgid "Save _as..." -msgstr "/Файл/Зберегти _як..." +msgstr "Зберегти _як..." #: app/actions/file-actions.c:96 -#, fuzzy msgid "Save a Cop_y..." -msgstr "/Файл/Зберегти _копію..." +msgstr "Зберегти _копію..." #: app/actions/file-actions.c:101 -#, fuzzy msgid "Save as _Template..." -msgstr "/Файл/Зберегти як _шаблон..." +msgstr "Зберегти як _шаблон..." #: app/actions/file-actions.c:106 -#, fuzzy msgid "Re_vert..." -msgstr "Відновити" +msgstr "Від_новити..." #: app/actions/file-actions.c:111 -#, fuzzy msgid "_Quit" -msgstr "/Файл/Ви_йти" +msgstr "Ви_йти" -#: app/actions/file-commands.c:215 app/dialogs/file-save-dialog.c:281 +#: app/actions/file-commands.c:215 app/dialogs/file-save-dialog.c:282 #, c-format msgid "" "Saving '%s' failed:\n" @@ -1550,23 +1372,19 @@ #: app/actions/file-commands.c:324 #, c-format msgid "Revert '%s' to '%s'?" -msgstr "" +msgstr "Відновити '%s' до '%s'?" #: app/actions/file-commands.c:330 -#, fuzzy msgid "" "By reverting the image to the state saved on disk, you will lose all " "changes, including all undo information." msgstr "" -"Відновити '%s' до\n" -"'%s'?\n" -"\n" -"(Ви втратите всі зміни включаючи всю інформацію про скасування операцій)" +"Відновлюючи зображення до його стану на диску ви втратити усі зміни, " +"включаючи всю інформацію про скасування операцій." #: app/actions/file-commands.c:380 -#, fuzzy msgid "Open Image as Layer" -msgstr "Відкривання зображення" +msgstr "Відкрити зображення як шар" #: app/actions/file-commands.c:385 app/dialogs/file-open-dialog.c:74 msgid "Open Image" @@ -1583,7 +1401,7 @@ "\n" "%s" msgstr "" -"Відновлення до '%s' не вдалось.\n" +"Не вдається відновитись до '%s'.\n" "%s" #: app/actions/fonts-actions.c:44 @@ -1591,12 +1409,10 @@ msgstr "Меню шрифтів" #: app/actions/fonts-actions.c:48 -#, fuzzy msgid "_Rescan Font List" -msgstr "/_Перечитати перелік шрифтів" +msgstr "_Перечитати перелік шрифтів" #: app/actions/fonts-actions.c:49 -#, fuzzy msgid "Rescan font list" msgstr "Перечитати перелік шрифтів" @@ -1605,122 +1421,99 @@ msgstr "Меню редактора градієнтів" #: app/actions/gradient-editor-actions.c:50 -#, fuzzy msgid "_Load Left Color From" -msgstr "/_Завантажити колір лівої точки з" +msgstr "_Завантажити колір лівої точки з" #: app/actions/gradient-editor-actions.c:52 -#, fuzzy msgid "_Save Left Color To" -msgstr "/З_берегти колір лівої точки у" +msgstr "З_берегти колір лівої точки у" #: app/actions/gradient-editor-actions.c:55 -#, fuzzy msgid "Load Right Color Fr_om" -msgstr "/Завантажити колір правої точки _з" +msgstr "Завантажити колір правої точки _з" #: app/actions/gradient-editor-actions.c:57 -#, fuzzy msgid "Sa_ve Right Color To" -msgstr "/Зб_ерегти колір правої точки у" +msgstr "Зб_ерегти колір правої точки у" #: app/actions/gradient-editor-actions.c:63 -#, fuzzy msgid "L_eft Endpoint's Color..." -msgstr "/Колір крайньої _лівої точки..." +msgstr "Колір крайньої _лівої точки..." #: app/actions/gradient-editor-actions.c:68 -#, fuzzy msgid "R_ight Endpoint's Color..." -msgstr "/Колір крайньої _правої точки..." +msgstr "Колір крайньої _правої точки..." #: app/actions/gradient-editor-actions.c:108 -#, fuzzy msgid "Ble_nd Endpoints' Colors" -msgstr "/Кольори крайніх точок з_мішування" +msgstr "Кольори крайніх точок з_мішування" #: app/actions/gradient-editor-actions.c:113 -#, fuzzy msgid "Blend Endpoints' Opacit_y" -msgstr "/_Непрозорість крайніх точок змішування" +msgstr "_Непрозорість крайніх точок змішування" #: app/actions/gradient-editor-actions.c:143 -#, fuzzy msgid "_Left Neighbor's Right Endpoint" -msgstr "" -"/Завантажити колір лівої точки з/Сусідньої зл_іва до крайньої правої точки" +msgstr "Сусідньої зл_іва до крайньої правої точки" #: app/actions/gradient-editor-actions.c:148 -#, fuzzy msgid "_Right Endpoint" -msgstr "Колір крайньої правої точки" +msgstr "Колір крайньої _правої точки" #: app/actions/gradient-editor-actions.c:153 #: app/actions/gradient-editor-actions.c:201 -#, fuzzy msgid "_FG Color" -msgstr "Колір пер.плану/тла" +msgstr "Колір _пер.плану" #: app/actions/gradient-editor-actions.c:158 #: app/actions/gradient-editor-actions.c:206 -#, fuzzy msgid "_BG Color" -msgstr "Колір пер.плану/тла" +msgstr "Колір _тла" #: app/actions/gradient-editor-actions.c:191 -#, fuzzy msgid "_Right Neighbor's Left Endpoint" -msgstr "" -"/Завантажити колір правої точки з/Сусідньої с_права до крайньої лівої точки" +msgstr "Сусідньої с_права до крайньої лівої точки" #: app/actions/gradient-editor-actions.c:196 -#, fuzzy msgid "_Left Endpoint" -msgstr "Колір крайньої лівої точки" +msgstr "Колір крайньої _лівої точки" #: app/actions/gradient-editor-actions.c:245 -#, fuzzy msgid "_Linear" -msgstr "Лінійна" +msgstr "_Лінійна" #: app/actions/gradient-editor-actions.c:250 -#, fuzzy msgid "_Curved" -msgstr "Криві" +msgstr "_Криві" #: app/actions/gradient-editor-actions.c:255 msgid "_Sinusoidal" -msgstr "" +msgstr "_Синусоїда" #: app/actions/gradient-editor-actions.c:260 -#, fuzzy msgid "Spherical (i_ncreasing)" -msgstr "/Функція змішування/Сферична (що з_більшується)" +msgstr "Сферична (що з_більшується)" #: app/actions/gradient-editor-actions.c:265 -#, fuzzy msgid "Spherical (_decreasing)" -msgstr "/Функція змішування/Сферична (що з_меншується)" +msgstr "Сферична (що з_меншується)" #: app/actions/gradient-editor-actions.c:270 #: app/actions/gradient-editor-actions.c:293 msgid "(Varies)" -msgstr "" +msgstr "(Міняється)" #: 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 "/тип фарбування/HSV (_відтінок проти годинникової)" +msgstr "HSV (відтінок _проти годинникової)" #: app/actions/gradient-editor-actions.c:288 -#, fuzzy msgid "HSV (clockwise _hue)" -msgstr "Основний у фоновий (HSV за годинниковою)" +msgstr "HSV (відтінок _за годинниковою)" #: app/actions/gradient-editor-actions.c:301 msgid "Zoom In" @@ -1748,7 +1541,6 @@ #: app/actions/gradient-editor-actions.c:314 #: app/actions/palette-editor-actions.c:90 -#, fuzzy msgid "Zoom all" msgstr "Масштабувати до розміру вінка" @@ -1917,64 +1709,52 @@ msgstr "Меню градієнтів" #: app/actions/gradients-actions.c:48 -#, fuzzy msgid "_New Gradient" -msgstr "/_Створити градієнт" +msgstr "_Створити градієнт" #: app/actions/gradients-actions.c:49 -#, fuzzy msgid "New gradient" -msgstr "/_Створити градієнт" +msgstr "Створити градієнт" #: app/actions/gradients-actions.c:54 -#, fuzzy msgid "D_uplicate Gradient" -msgstr "/Д_ублювати градієнт" +msgstr "Д_ублювати градієнт" #: app/actions/gradients-actions.c:55 -#, fuzzy msgid "Duplicate gradient" -msgstr "/Д_ублювати градієнт" +msgstr "Дублювати градієнт" #: app/actions/gradients-actions.c:60 -#, fuzzy msgid "Save as _POV-Ray..." -msgstr "/Зберегти як _POV-Ray..." +msgstr "Зберегти як _POV-Ray..." #: app/actions/gradients-actions.c:61 -#, fuzzy msgid "Save gradient as POV-Ray" -msgstr "Збереження '%s' як POV-Ray" +msgstr "Зберегти графієнт як POV-Ray" #: app/actions/gradients-actions.c:66 -#, fuzzy msgid "_Delete Gradient..." -msgstr "/В_идалити градієнт..." +msgstr "В_идалити градієнт..." #: app/actions/gradients-actions.c:67 -#, fuzzy msgid "Delete gradient" -msgstr "/В_идалити градієнт..." +msgstr "Видалити градієнт" #: app/actions/gradients-actions.c:72 -#, fuzzy msgid "_Refresh Gradients" -msgstr "/_Оновити градієнти" +msgstr "_Оновити градієнти" #: app/actions/gradients-actions.c:73 -#, fuzzy msgid "Refresh gradients" -msgstr "/_Оновити градієнти" +msgstr "Оновити градієнти" #: app/actions/gradients-actions.c:81 -#, fuzzy msgid "_Edit Gradient..." -msgstr "/_Правка градієнту..." +msgstr "_Правка градієнта..." #: app/actions/gradients-actions.c:82 -#, fuzzy msgid "Edit gradient" -msgstr "/_Правка градієнту..." +msgstr "Правка градієнта" #: app/actions/gradients-commands.c:65 #, c-format @@ -1982,14 +1762,12 @@ msgstr "Збереження '%s' як POV-Ray" #: app/actions/help-actions.c:38 app/actions/help-actions.c:41 -#, fuzzy msgid "_Help" -msgstr "/_Довідка" +msgstr "_Довідка" #: app/actions/help-actions.c:46 -#, fuzzy msgid "_Context Help" -msgstr "/Довідка/_Контекстна довідка" +msgstr "_Контекстна довідка" #: app/actions/image-actions.c:47 msgid "Toolbox Menu" @@ -2000,88 +1778,72 @@ msgstr "Меню зображення" #: app/actions/image-actions.c:58 -#, fuzzy msgid "_Xtns" -msgstr "/_Розш." +msgstr "_Розш." #: app/actions/image-actions.c:59 -#, fuzzy msgid "_Image" -msgstr "/_Зображення" +msgstr "_Зображення" #: app/actions/image-actions.c:60 -#, fuzzy msgid "_Mode" -msgstr "Режим" +msgstr "Ре_жим" #: app/actions/image-actions.c:61 app/actions/layers-actions.c:57 -#, fuzzy msgid "_Transform" -msgstr "Перетворення" +msgstr "Пере_творення" #: app/actions/image-actions.c:62 -#, fuzzy msgid "_Guides" -msgstr "Напрямна" +msgstr "_Напрямні" #: app/actions/image-actions.c:65 app/actions/image-actions.c:70 -#, fuzzy msgid "_New..." -msgstr "/_Створити контур..." +msgstr "_Створити..." #: app/actions/image-actions.c:75 -#, fuzzy msgid "Can_vas Size..." -msgstr "Розмір полотна" +msgstr "Розмір п_олотна..." #: app/actions/image-actions.c:80 msgid "F_it Canvas to Layers" -msgstr "" +msgstr "_До розмірів шарів" #: app/actions/image-actions.c:85 -#, fuzzy msgid "_Print Size..." -msgstr "Розмір при друкуванні:" +msgstr "Розмір при д_рукуванні..." #: app/actions/image-actions.c:90 -#, fuzzy msgid "_Scale Image..." -msgstr "Масштабування зображення" +msgstr "Мас_штабування зображення..." #: app/actions/image-actions.c:95 -#, fuzzy msgid "_Crop Image" -msgstr "Кадрування зображення" +msgstr "_Кадрувати" #: app/actions/image-actions.c:100 -#, fuzzy msgid "_Duplicate" -msgstr "Дублювати" +msgstr "Д_ублювати" #: app/actions/image-actions.c:105 -#, fuzzy msgid "Merge Visible _Layers..." -msgstr "/О_б'єднати видимі шари..." +msgstr "О_б'єднати видимі шари..." #: app/actions/image-actions.c:110 app/actions/layers-actions.c:138 -#, fuzzy msgid "_Flatten Image" -msgstr "/_Звести зображення" +msgstr "_Звести зображення" #: app/actions/image-actions.c:115 -#, fuzzy msgid "Configure G_rid..." -msgstr "Настройка сітки" +msgstr "Налаштувати с_ітку..." #: app/actions/image-actions.c:128 -#, fuzzy msgid "_Grayscale" -msgstr "Відтінки сірого" +msgstr "Відтінки _сірого" #: app/actions/image-actions.c:133 -#, fuzzy msgid "_Indexed..." -msgstr "Індексований" +msgstr "_Індексоване..." #: app/actions/image-commands.c:192 msgid "Set Image Canvas Size" @@ -2092,7 +1854,6 @@ msgstr "Зміна розміру..." #: app/actions/image-commands.c:242 -#, fuzzy msgid "Set Image Print Resolution" msgstr "Зміна роздільної здатності" @@ -2111,9 +1872,8 @@ msgstr "Не вдається кадрувати, тому що виділена ділянка порожня." #: app/actions/image-commands.c:484 -#, fuzzy msgid "Change Print Size" -msgstr "Розмір при друкуванні:" +msgstr "Змінити розмір при друкуванні" #: app/actions/image-commands.c:508 app/core/gimpimage-scale.c:71 #: app/dialogs/image-scale-dialog.c:91 @@ -2132,27 +1892,24 @@ msgstr "Меню зображень" #: app/actions/images-actions.c:47 -#, fuzzy msgid "_Raise Views" -msgstr "/_Розгорнути вікна" +msgstr "_Розгорнути вікна" #: app/actions/images-actions.c:48 msgid "Raise this image's displays" msgstr "Розгорнути вікно з цим зображенням" #: app/actions/images-actions.c:53 app/actions/view-actions.c:68 -#, fuzzy msgid "_New View" -msgstr "/_Створити вікно" +msgstr "С_творити вікно" #: app/actions/images-actions.c:54 msgid "Create a new display for this image" msgstr "Створити нове вікно для цього зображення" #: app/actions/images-actions.c:59 -#, fuzzy msgid "_Delete Image" -msgstr "/_Видалити зображення" +msgstr "_Видалити зображення" #: app/actions/images-actions.c:60 msgid "Delete this image" @@ -2163,255 +1920,206 @@ msgstr "Меню шарів" #: app/actions/layers-actions.c:51 -#, fuzzy msgid "_Layer" -msgstr "/_Шар" +msgstr "_Шар" #: app/actions/layers-actions.c:52 -#, fuzzy msgid "Stac_k" -msgstr "/Шар/_Рівень" +msgstr "_Рівень" #: app/actions/layers-actions.c:54 app/tools/gimplevelstool.c:665 msgid "_Auto" msgstr "_Авто" #: app/actions/layers-actions.c:55 -#, fuzzy msgid "_Mask" -msgstr "_Помічник" +msgstr "_Маска" #: app/actions/layers-actions.c:56 -#, fuzzy msgid "Tr_ansparency" -msgstr "Прозорість" +msgstr "Про_зорість" #: app/actions/layers-actions.c:58 -#, fuzzy msgid "_Properties" -msgstr "Перспектива" +msgstr "В_ластивості" #: app/actions/layers-actions.c:60 -#, fuzzy msgid "Layer _Mode" -msgstr "Меню шарів" +msgstr "Режим _шару" #: app/actions/layers-actions.c:63 -#, fuzzy msgid "Te_xt Tool" -msgstr "/_Текст" +msgstr "_Текст" #: app/actions/layers-actions.c:68 -#, fuzzy msgid "_Edit Layer Attributes..." -msgstr "/_Правка ознак шару..." +msgstr "_Правка ознак шару..." #: app/actions/layers-actions.c:69 -#, fuzzy msgid "Edit layer attributes" -msgstr "Зміна ознак шару" +msgstr "Правка ознак шару" #: app/actions/layers-actions.c:74 -#, fuzzy msgid "_New Layer..." -msgstr "/_Створити шар..." +msgstr "_Створити шар..." #: app/actions/layers-actions.c:75 -#, fuzzy msgid "New layer..." -msgstr "/_Створити шар..." +msgstr "_Створити шар..." #: app/actions/layers-actions.c:80 -#, fuzzy msgid "_New Layer" -msgstr "Створення шару" +msgstr "_Створити шар" #: app/actions/layers-actions.c:81 msgid "New layer with last values" -msgstr "" +msgstr "Новий шар з останніми параметрами" #: app/actions/layers-actions.c:86 -#, fuzzy msgid "D_uplicate Layer" -msgstr "/Д_ублювати шар" +msgstr "Д_ублювати шар" #: app/actions/layers-actions.c:87 -#, fuzzy msgid "Duplicate layer" msgstr "Дублювати шар" #: app/actions/layers-actions.c:92 -#, fuzzy msgid "_Delete Layer" -msgstr "/В_идалити шар" +msgstr "В_идалити шар" #: app/actions/layers-actions.c:93 app/core/core-enums.c:1079 -#, fuzzy msgid "Delete layer" msgstr "Видалення шару" #: app/actions/layers-actions.c:98 -#, fuzzy msgid "_Raise Layer" -msgstr "/П_ідняти шар" +msgstr "П_ідняти шар" #: app/actions/layers-actions.c:99 -#, fuzzy msgid "Raise layer" msgstr "Піднімання шару" #: app/actions/layers-actions.c:104 -#, fuzzy msgid "Layer to _Top" -msgstr "/Зробити шар _верхнім" +msgstr "Зробити шар в_ерхнім" #: app/actions/layers-actions.c:105 -#, fuzzy msgid "Raise layer to top" msgstr "Піднімання шару догори" #: app/actions/layers-actions.c:110 -#, fuzzy msgid "_Lower Layer" -msgstr "/_Опустити шар" +msgstr "_Опустити шар" #: app/actions/layers-actions.c:111 -#, fuzzy msgid "Lower layer" -msgstr "Опускання шар" +msgstr "Опускання шару" #: app/actions/layers-actions.c:116 -#, fuzzy msgid "Layer to _Bottom" -msgstr "/Зробити шар _нижнім" +msgstr "Зробити шар н_ижнім" #: app/actions/layers-actions.c:117 -#, fuzzy msgid "Lower layer to bottom" msgstr "Опускання шару додолу" #: app/actions/layers-actions.c:122 -#, fuzzy msgid "_Anchor Layer" -msgstr "/При_кріпити шар" +msgstr "_Прикріпити шар" #: app/actions/layers-actions.c:123 -#, fuzzy msgid "Anchor floating layer" msgstr "Прикріпити плаваючий шар" #: app/actions/layers-actions.c:128 -#, fuzzy msgid "Merge Do_wn" -msgstr "/Об'_єднати з попереднім" +msgstr "Об'_єднати з попереднім" #: app/actions/layers-actions.c:133 -#, fuzzy msgid "Merge _Visible Layers..." -msgstr "/О_б'єднати видимі шари..." +msgstr "О_б'єднати видимі шари..." #: app/actions/layers-actions.c:143 -#, fuzzy msgid "_Discard Text Information" -msgstr "/Ви_далити текстову інформацію" +msgstr "Ви_далити текстову інформацію" #: app/actions/layers-actions.c:148 -#, fuzzy msgid "Layer B_oundary Size..." -msgstr "/Розміри _меж шару..." +msgstr "Розміри м_еж шару..." #: app/actions/layers-actions.c:153 -#, fuzzy msgid "Layer to _Image Size" msgstr "Шар до розміру _зображення" #: app/actions/layers-actions.c:158 -#, fuzzy msgid "_Scale Layer..." -msgstr "/Мас_штабувати шар..." +msgstr "Мас_штабувати шар..." #: app/actions/layers-actions.c:163 -#, fuzzy msgid "Cr_op Layer" -msgstr "Кадрування шару" +msgstr "Ка_друвати шар" #: app/actions/layers-actions.c:168 -#, fuzzy msgid "Add La_yer Mask..." -msgstr "/Додати маску ша_ру..." +msgstr "Додати маску ша_ру..." #: app/actions/layers-actions.c:173 -#, fuzzy msgid "Add Alpha C_hannel" -msgstr "/Додати альфа-_канал" +msgstr "Додати альфа-_канал" #: app/actions/layers-actions.c:181 -#, fuzzy msgid "Keep Transparency" msgstr "Зберігати прозорість" #: app/actions/layers-actions.c:187 -#, fuzzy msgid "Edit Layer Mask" -msgstr "Додавання маску шару" +msgstr "Правка маски шару" #: app/actions/layers-actions.c:193 -#, fuzzy msgid "Show Layer Mask" -msgstr "Переміщення маски шару" +msgstr "Показати маску шару" #: app/actions/layers-actions.c:199 -#, fuzzy msgid "Disable Layer Mask" -msgstr "Видалення маску шару" +msgstr "Сховати маску шару" #: app/actions/layers-actions.c:208 -#, fuzzy msgid "Apply Layer _Mask" -msgstr "/Застосувати _маску шару" +msgstr "Застосувати _маску шару" #: app/actions/layers-actions.c:213 -#, fuzzy msgid "Delete Layer Mas_k" -msgstr "/Видалити ма_ску шару" +msgstr "Видалити ма_ску шару" #: app/actions/layers-actions.c:221 -#, fuzzy msgid "_Mask to Selection" -msgstr "/Маска -> Виді_лене" +msgstr "Маска -> Виді_лене" #: app/actions/layers-actions.c:244 -#, fuzzy msgid "Al_pha to Selection" -msgstr "/_Альфа -> Виділене" +msgstr "_Альфа-канал -> Виділене" #: app/actions/layers-actions.c:249 -#, fuzzy msgid "A_dd to Selection" -msgstr "/_Додати до виділення" +msgstr "_Додати до виділення" #: app/actions/layers-actions.c:267 -#, fuzzy msgid "Select _Top Layer" -msgstr "/Шар/Рівень/Виділити _верхній шар" +msgstr "Виділити _верхній шар" #: app/actions/layers-actions.c:272 -#, fuzzy msgid "Select _Bottom Layer" -msgstr "/Шар/Рівень/Виділити _нижній шар" +msgstr "Виділити _нижній шар" #: app/actions/layers-actions.c:277 -#, fuzzy msgid "Select _Previous Layer" -msgstr "/Шар/Рівень/Виділити п_опередній шар" +msgstr "Виділити п_опередній шар" #: app/actions/layers-actions.c:282 -#, fuzzy msgid "Select _Next Layer" -msgstr "Масштабування тестового шару" +msgstr "Вділити н_аступний шар" #: app/actions/layers-actions.c:290 -#, fuzzy msgid "Set Opacity" msgstr "Встановлення непрозорості шару" @@ -2452,7 +2160,7 @@ #: app/actions/layers-commands.c:904 app/core/gimplayer.c:1065 #: app/dialogs/layer-add-mask-dialog.c:62 msgid "Add Layer Mask" -msgstr "Додавання маску шару" +msgstr "Додавання маски шару" #: app/actions/layers-commands.c:975 app/actions/layers-commands.c:1007 msgid "Invalid width or height. Both must be positive." @@ -2463,49 +2171,40 @@ msgstr "Меню редактора палітри" #: app/actions/palette-editor-actions.c:53 -#, fuzzy msgid "_Delete Color" -msgstr "/В_идалити колір" +msgstr "В_идалити колір" #: app/actions/palette-editor-actions.c:54 -#, fuzzy msgid "Delete color" msgstr "Видалити колір" #: app/actions/palette-editor-actions.c:62 -#, fuzzy msgid "New Color from _FG" -msgstr "/Новий колір з _переднього плану" +msgstr "Новий колір з _переднього плану" #: app/actions/palette-editor-actions.c:63 -#, fuzzy msgid "New color from FG" -msgstr "/Новий колір з _переднього плану" +msgstr "Новий колір з переднього плану" #: app/actions/palette-editor-actions.c:68 -#, fuzzy msgid "New Color from _BG" -msgstr "/Новий колір з _тла" +msgstr "Новий колір з _тла" #: app/actions/palette-editor-actions.c:69 -#, fuzzy msgid "New color from BG" -msgstr "/Новий колір з _тла" +msgstr "Новий колір з тла" #: app/actions/palette-editor-actions.c:77 app/actions/view-actions.c:215 -#, fuzzy msgid "Zoom _In" -msgstr "/З_більшити" +msgstr "З_більшити" #: app/actions/palette-editor-actions.c:83 app/actions/view-actions.c:209 -#, fuzzy msgid "Zoom _Out" -msgstr "/З_меншити" +msgstr "З_меншити" #: app/actions/palette-editor-actions.c:89 -#, fuzzy msgid "Zoom _All" -msgstr "Масштабувати до _розміру вінка" +msgstr "Збільшити до _розміру вінка" #: app/actions/palette-editor-commands.c:68 msgid "Edit Palette Color" @@ -2520,74 +2219,60 @@ msgstr "Меню палітр" #: app/actions/palettes-actions.c:48 -#, fuzzy msgid "_New Palette" -msgstr "/_Створити палітру" +msgstr "_Створити палітру" #: app/actions/palettes-actions.c:49 -#, fuzzy msgid "New palette" -msgstr "/_Створити палітру" +msgstr "Створити палітру" #: app/actions/palettes-actions.c:54 -#, fuzzy msgid "_Import Palette..." -msgstr "/_Імпорт палітри..." +msgstr "_Імпортувати палітру..." #: app/actions/palettes-actions.c:55 -#, fuzzy msgid "Import palette" msgstr "Імпорт палітри" #: app/actions/palettes-actions.c:60 -#, fuzzy msgid "D_uplicate Palette" -msgstr "/Д_ублювати палітру" +msgstr "Д_ублювати палітру" #: app/actions/palettes-actions.c:61 -#, fuzzy msgid "Duplicate palette" -msgstr "/Д_ублювати палітру" +msgstr "Дублювання палітри" #: app/actions/palettes-actions.c:66 -#, fuzzy msgid "_Merge Palettes..." -msgstr "/Об'_єднати палітри..." +msgstr "Об'_єднати палітри..." #: app/actions/palettes-actions.c:67 -#, fuzzy msgid "Merge palettes" msgstr "Об'єднання палітр" #: app/actions/palettes-actions.c:72 -#, fuzzy msgid "_Delete Palette" -msgstr "/В_идалити палітру" +msgstr "В_идалити палітру" #: app/actions/palettes-actions.c:73 -#, fuzzy msgid "Delete palette" -msgstr "/В_идалити палітру" +msgstr "Видалення палітри" #: app/actions/palettes-actions.c:78 -#, fuzzy msgid "_Refresh Palettes" -msgstr "/_Оновити палітри" +msgstr "_Оновити палітри" #: app/actions/palettes-actions.c:79 -#, fuzzy msgid "Refresh palettes" -msgstr "/_Оновити палітри" +msgstr "Оновлення палітри" #: app/actions/palettes-actions.c:87 -#, fuzzy msgid "_Edit Palette..." -msgstr "/_Правка палітри..." +msgstr "_Правка палітри..." #: app/actions/palettes-actions.c:88 -#, fuzzy msgid "Edit palette" -msgstr "/_Правка палітри..." +msgstr "Правка палітри" #: app/actions/palettes-commands.c:72 msgid "Merge Palette" @@ -2602,151 +2287,124 @@ msgstr "Меню візерунків" #: app/actions/patterns-actions.c:47 -#, fuzzy msgid "_New Pattern" -msgstr "/_Створити візерунок" +msgstr "_Створити візерунок" #: app/actions/patterns-actions.c:48 -#, fuzzy msgid "New pattern" -msgstr "/_Створити візерунок" +msgstr "Створення візерунку" #: app/actions/patterns-actions.c:53 -#, fuzzy msgid "D_uplicate Pattern" -msgstr "/Д_ублювати візерунок" +msgstr "Д_ублювати візерунок" #: app/actions/patterns-actions.c:54 -#, fuzzy msgid "Duplicate pattern" -msgstr "/Д_ублювати візерунок" +msgstr "Дублювання візерунку" #: app/actions/patterns-actions.c:59 -#, fuzzy msgid "_Delete Pattern..." -msgstr "/В_идалити візерунок..." +msgstr "В_идалити візерунок..." #: app/actions/patterns-actions.c:60 -#, fuzzy msgid "Delete pattern" -msgstr "/В_идалити візерунок..." +msgstr "Видалення візерунка" #: app/actions/patterns-actions.c:65 -#, fuzzy msgid "_Refresh Patterns" -msgstr "/_Оновити візерунки" +msgstr "_Оновити візерунки" #: app/actions/patterns-actions.c:66 -#, fuzzy msgid "Refresh patterns" -msgstr "/_Оновити візерунки" +msgstr "Оновити візерунки" #: app/actions/patterns-actions.c:74 -#, fuzzy msgid "_Edit Pattern..." -msgstr "/_Правка візерунку..." +msgstr "_Правка візерунку..." #: app/actions/patterns-actions.c:75 -#, fuzzy msgid "Edit pattern" -msgstr "/_Правка візерунку..." +msgstr "Правка візерунку..." #: app/actions/plug-in-actions.c:62 -#, fuzzy msgid "Filte_rs" -msgstr "/Ф_ільтри" +msgstr "Філь_три" #: app/actions/plug-in-actions.c:63 -#, fuzzy msgid "_Blur" -msgstr "Розмивання" +msgstr "_Розмивання" #: app/actions/plug-in-actions.c:65 msgid "Ma_p" -msgstr "" +msgstr "_Мапа" #: app/actions/plug-in-actions.c:66 -#, fuzzy msgid "_Noise" -msgstr "Немає" +msgstr "_Шум" #: app/actions/plug-in-actions.c:67 -#, fuzzy msgid "Edge-De_tect" -msgstr "/Фільтри/Виділення _меж" +msgstr "Виділення ме_ж" #: app/actions/plug-in-actions.c:68 -#, fuzzy msgid "En_hance" -msgstr "/Фільтри/_Покращення" +msgstr "_Покращення" #: app/actions/plug-in-actions.c:69 -#, fuzzy msgid "_Generic" -msgstr "_Центр" +msgstr "_Загальні" #: app/actions/plug-in-actions.c:70 -#, fuzzy msgid "Gla_ss Effects" -msgstr "/Фільтри/Ефекти ск_ла" +msgstr "Ефекти ск_ла" #: app/actions/plug-in-actions.c:71 -#, fuzzy msgid "_Light Effects" -msgstr "/Фільтри/_Світлові ефекти" +msgstr "_Світлові ефекти" #: app/actions/plug-in-actions.c:72 -#, fuzzy msgid "_Distorts" -msgstr "/Фільтри/В_икривлення" +msgstr "В_икривлення" #: app/actions/plug-in-actions.c:73 -#, fuzzy msgid "_Artistic" -msgstr "/Фільтри/_Художні" +msgstr "_Художні" #: app/actions/plug-in-actions.c:74 -#, fuzzy msgid "_Map" -msgstr "_M" +msgstr "_Мапа" #: app/actions/plug-in-actions.c:75 -#, fuzzy msgid "_Render" -msgstr "_Центр" +msgstr "Раст_еризація" #: app/actions/plug-in-actions.c:76 msgid "_Clouds" -msgstr "" +msgstr "_Хмари" #: app/actions/plug-in-actions.c:77 -#, fuzzy msgid "_Nature" -msgstr "_Назва:" +msgstr "П_рирода" #: app/actions/plug-in-actions.c:79 msgid "_Web" -msgstr "" +msgstr "_Веб" #: app/actions/plug-in-actions.c:80 -#, fuzzy msgid "An_imation" -msgstr "/Фільтри/_Анімація" +msgstr "_Анімація" #: app/actions/plug-in-actions.c:81 -#, fuzzy msgid "C_ombine" -msgstr "/Фільтри/_Об'єднання" +msgstr "_Об'єднання" #: app/actions/plug-in-actions.c:82 -#, fuzzy msgid "To_ys" -msgstr "Інструменти" +msgstr "Розва_ги" #: app/actions/plug-in-actions.c:85 -#, fuzzy msgid "Reset all Filters..." -msgstr "/Відновити параметри _усіх інструментів..." +msgstr "Відновити параметри _усіх фільтрів..." #: app/actions/plug-in-actions.c:93 app/actions/plug-in-actions.c:363 msgid "Repeat Last" @@ -2759,7 +2417,7 @@ #: app/actions/plug-in-actions.c:349 #, c-format msgid "Re_peat \"%s\"" -msgstr "_Повторити \"%s\"" +msgstr "Пов_торити \"%s\"" #: app/actions/plug-in-actions.c:350 #, c-format @@ -2767,57 +2425,46 @@ msgstr "Показати \"%s\" _ще раз" #: app/actions/plug-in-commands.c:193 -#, fuzzy msgid "Reset all Filters" -msgstr "Доступні фільтри" +msgstr "Перезавантажити усі фільтри" #: app/actions/plug-in-commands.c:207 -#, fuzzy msgid "Do you really want to reset all filters to default values?" -msgstr "Ви дійсно бажаєте повернутись до початкових параметрів?" +msgstr "Ви дійсно бажаєте повернутись до типових параметрів усіх фільтрів?" #: app/actions/qmask-actions.c:42 -#, fuzzy msgid "Quick Mask Menu" msgstr "Меню швидкої маски" #: app/actions/qmask-actions.c:46 -#, fuzzy msgid "_Configure Color and Opacity..." -msgstr "/Н_астроїти колір та прозорість..." +msgstr "Н_алаштувати колір та прозорість..." #: app/actions/qmask-actions.c:54 -#, fuzzy msgid "_Quick Mask Active" -msgstr "/Увімкнути _швидку маску" +msgstr "Увімкнути _швидку маску" #: app/actions/qmask-actions.c:60 -#, fuzzy msgid "Toggle _Quick Mask" -msgstr "Перемикнути швидку маску" +msgstr "Перемикнути _швидку маску" #: app/actions/qmask-actions.c:70 -#, fuzzy msgid "Mask _Selected Areas" -msgstr "/Накладати маску на виді_лені ділянки" +msgstr "Накладати маску на виді_лені ділянки" #: app/actions/qmask-actions.c:75 -#, fuzzy msgid "Mask _Unselected Areas" -msgstr "/Накладати маску на _невиділені ділянки" +msgstr "Накладати маску на _невиділені ділянки" #: app/actions/qmask-commands.c:106 -#, fuzzy msgid "Quick Mask Attributes" -msgstr "Зміна ознак швидкої маски" +msgstr "Ознаки швидкої маски" #: app/actions/qmask-commands.c:109 -#, fuzzy msgid "Edit Quick Mask Attributes" msgstr "Зміна ознак швидкої маски" #: app/actions/qmask-commands.c:111 -#, fuzzy msgid "Edit Quick Mask Color" msgstr "Зміна кольору швидкої маски" @@ -2826,103 +2473,84 @@ msgstr "Непрозорість маски:" #: app/actions/select-actions.c:44 -#, fuzzy msgid "Selection Editor Menu" msgstr "Редактор виділеної ділянки" #: app/actions/select-actions.c:47 -#, fuzzy msgid "_Select" -msgstr "/Виді_лення" +msgstr "Виді_лення" #: app/actions/select-actions.c:50 msgid "_All" -msgstr "" +msgstr "_Усе" #: app/actions/select-actions.c:51 -#, fuzzy msgid "Select all" msgstr "Виділити все" #: app/actions/select-actions.c:56 -#, fuzzy msgid "_None" -msgstr "Немає" +msgstr "_Немає" #: app/actions/select-actions.c:57 -#, fuzzy msgid "Select none" -msgstr "Виділення знято" +msgstr "Не виділено" #: app/actions/select-actions.c:62 -#, fuzzy msgid "_Invert" -msgstr "Інвертування" +msgstr "_Інвертувати" #: app/actions/select-actions.c:63 -#, fuzzy msgid "Invert selection" msgstr "Інвертувати виділення" #: app/actions/select-actions.c:68 -#, fuzzy msgid "_Float" -msgstr "_Шрифт:" +msgstr "П_лаваюче" #: app/actions/select-actions.c:73 -#, fuzzy msgid "Fea_ther..." -msgstr "/Виділення/_Розмивання..." +msgstr "_Розмивання..." #: app/actions/select-actions.c:78 -#, fuzzy msgid "_Sharpen" -msgstr "Різкість" +msgstr "Рі_зкість" #: app/actions/select-actions.c:83 -#, fuzzy msgid "S_hrink..." -msgstr "Викривлення..." +msgstr "З_меншення..." #: app/actions/select-actions.c:88 -#, fuzzy msgid "_Grow..." -msgstr "/Виділення/З_більшення..." +msgstr "З_більшення..." #: app/actions/select-actions.c:93 -#, fuzzy msgid "Bo_rder..." -msgstr "/Виділення/Ме_жа..." +msgstr "Ме_жа..." #: app/actions/select-actions.c:98 -#, fuzzy msgid "Save to _Channel" -msgstr "/Виділення/Зберегти в к_аналі" +msgstr "Зберегти в к_аналі" #: app/actions/select-actions.c:99 -#, fuzzy msgid "Save selection to channel" msgstr "Зберегти виділене в каналі" #: app/actions/select-actions.c:104 -#, fuzzy msgid "_Stroke Selection..." -msgstr "Обведення виділеної ділянки" +msgstr "Обве_сти виділену ділянку..." #: app/actions/select-actions.c:105 -#, fuzzy msgid "Stroke selection..." -msgstr "Обведення виділеної ділянки" +msgstr "Обведення виділеної ділянки..." #: app/actions/select-actions.c:110 -#, fuzzy msgid "_Stroke Selection" -msgstr "Обведення виділеної ділянки" +msgstr "_Обвести виділену ділянку" #: app/actions/select-actions.c:111 -#, fuzzy msgid "Stroke selection with last values" -msgstr "Обведення виділеної ділянки" +msgstr "Обвести виділене з останніми значеннями" #: app/actions/select-commands.c:136 app/core/gimpselection.c:201 msgid "Feather Selection" @@ -2975,45 +2603,40 @@ msgstr "Меню шаблонів" #: app/actions/templates-actions.c:46 -#, fuzzy msgid "_Create Image from Template..." -msgstr "/С_творити зображення з шаблону..." +msgstr "С_творити зображення з шаблону..." #: app/actions/templates-actions.c:47 msgid "Create a new image from the selected template" msgstr "Створити нове зображення з шаблону" #: app/actions/templates-actions.c:52 -#, fuzzy msgid "_New Template..." -msgstr "/_Створити шаблон..." +msgstr "_Створити шаблон..." #: app/actions/templates-actions.c:53 msgid "Create a new template" msgstr "Створити новий шаблон" #: app/actions/templates-actions.c:58 -#, fuzzy msgid "D_uplicate Template..." -msgstr "/Д_ублювати шаблон..." +msgstr "Д_ублювати шаблон..." #: app/actions/templates-actions.c:59 msgid "Duplicate the selected template" msgstr "Дублювати вибраний шаблон" #: app/actions/templates-actions.c:64 -#, fuzzy msgid "_Edit Template..." -msgstr "/_Правка шаблону..." +msgstr "_Правка шаблону..." #: app/actions/templates-actions.c:65 msgid "Edit the selected template" msgstr "Редагувати вибраний шаблон" #: app/actions/templates-actions.c:70 -#, fuzzy msgid "_Delete Template" -msgstr "/В_идалити шаблон" +msgstr "В_идалити шаблон" #: app/actions/templates-actions.c:71 msgid "Delete the selected template" @@ -3042,12 +2665,10 @@ msgstr "Ви дійсно бажаєте видалити шаблон \"%s\" зі списку та з диску?" #: app/actions/text-editor-actions.c:44 -#, fuzzy msgid "Open" -msgstr "/Файл/_Відкрити..." +msgstr "_Відкрити..." #: app/actions/text-editor-actions.c:45 -#, fuzzy msgid "Load text from file" msgstr "Завантажити текст з файла" @@ -3056,25 +2677,22 @@ msgstr "Очистка" #: app/actions/text-editor-actions.c:51 -#, fuzzy msgid "Clear all text" msgstr "Видалити весь текст" #: app/actions/text-editor-actions.c:59 msgid "LTR" -msgstr "" +msgstr "LTR" #: app/actions/text-editor-actions.c:60 app/text/text-enums.c:51 -#, fuzzy msgid "From left to right" msgstr "Зліва направо" #: app/actions/text-editor-actions.c:65 msgid "RTL" -msgstr "" +msgstr "RTL" #: app/actions/text-editor-actions.c:66 app/text/text-enums.c:52 -#, fuzzy msgid "From right to left" msgstr "Справа наліво" @@ -3097,53 +2715,44 @@ msgstr "Параметри інструментів" #: app/actions/tool-options-actions.c:60 -#, fuzzy msgid "_Save Options to" -msgstr "/З_берегти параметри як" +msgstr "З_берегти параметри як" #: app/actions/tool-options-actions.c:64 -#, fuzzy msgid "_Restore Options from" -msgstr "/_Завантажити параметри з" +msgstr "_Завантажити параметри з" #: app/actions/tool-options-actions.c:68 -#, fuzzy msgid "Re_name Saved Options" -msgstr "/Перей_менувати збережені параметри" +msgstr "Перей_менувати збережені параметри" #: app/actions/tool-options-actions.c:72 -#, fuzzy msgid "_Delete Saved Options" -msgstr "/В_идалити збережені параметри" +msgstr "В_идалити збережені параметри" #: app/actions/tool-options-actions.c:76 -#, fuzzy msgid "_New Entry..." -msgstr "/_Створити контур..." +msgstr "_Створити контур..." #: app/actions/tool-options-actions.c:81 -#, fuzzy msgid "R_eset Tool Options" -msgstr "/_Відновити параметри інструментів" +msgstr "_Відновити параметри інструментів" #: app/actions/tool-options-actions.c:82 -#, fuzzy msgid "Reset to default values" -msgstr "Відновити типові настройки для вибраного фільтру" +msgstr "Відновити типові параметри" #: app/actions/tool-options-actions.c:87 -#, fuzzy msgid "Reset _all Tool Options..." -msgstr "/Відновити параметри _усіх інструментів..." +msgstr "Відновити параметри _усіх інструментів..." #: app/actions/tool-options-actions.c:88 -#, fuzzy msgid "Reset all tool options" -msgstr "/Відновити параметри _усіх інструментів..." +msgstr "Відновити параметри _усіх інструментів..." #: app/actions/tool-options-commands.c:73 msgid "Save Tool Options" -msgstr "Параметри інструменту" +msgstr "Зберегти параметри інструменту" #: app/actions/tool-options-commands.c:77 msgid "Enter a name for the saved options" @@ -3165,253 +2774,203 @@ #: app/actions/tool-options-commands.c:215 msgid "Reset Tool Options" -msgstr "Скинути параметри" +msgstr "Скидання параметрів" #: app/actions/tool-options-commands.c:233 msgid "Do you really want to reset all tool options to default values?" msgstr "Ви дійсно бажаєте повернутись до початкових параметрів?" #: app/actions/tools-actions.c:47 -#, fuzzy msgid "Tools Menu" msgstr "Меню панелі інструментів" #: app/actions/tools-actions.c:50 -#, fuzzy msgid "_Tools" -msgstr "/С_ервіс" +msgstr "_Інструменти" #: app/actions/tools-actions.c:51 -#, fuzzy msgid "_Selection Tools" -msgstr "/Сервіс/_Виділення" +msgstr "Інструменти ви_діляння" #: app/actions/tools-actions.c:52 -#, fuzzy msgid "_Paint Tools" -msgstr "Інструмент:" +msgstr "Інструменти _малювання" #: app/actions/tools-actions.c:53 -#, fuzzy msgid "_Transform Tools" -msgstr "/Сервіс/Пере_творення" +msgstr "Інструменти п_еретворення" #: app/actions/tools-actions.c:54 -#, fuzzy msgid "_Color Tools" -msgstr "/Сервіс/_Колір" +msgstr "Інструменти _кольору" #: app/actions/tools-actions.c:57 -#, fuzzy msgid "_Reset Order & Visibility" -msgstr "Видимість елемента" +msgstr "_Типовий порядок/видимість" #: app/actions/tools-actions.c:58 msgid "Reset tool order and visibility" -msgstr "" +msgstr "Типовий порядок та видимість інструментів" #: app/actions/tools-actions.c:66 -#, fuzzy msgid "_Show in Toolbox" -msgstr "Показувати _підказки" +msgstr "_Показувати на панелі" #: app/actions/tools-actions.c:75 -#, fuzzy msgid "_By Color" -msgstr "RGB-колір" +msgstr "За к_ольором" #: app/actions/tools-actions.c:80 -#, fuzzy msgid "_Arbitrary Rotation..." -msgstr "/Шар/Перетворення/_Довільне обертання..." +msgstr "_Довільне обертання..." #: app/actions/vectors-actions.c:44 msgid "Paths Menu" msgstr "Меню контурів" #: app/actions/vectors-actions.c:48 -#, fuzzy msgid "Path _Tool" -msgstr "/Інст_румент \"Контур\"" +msgstr "Інст_румент \"Контур\"" #: app/actions/vectors-actions.c:53 -#, fuzzy msgid "_Edit Path Attributes..." -msgstr "/_Правка ознак контуру..." +msgstr "_Правка ознак контуру..." #: app/actions/vectors-actions.c:54 -#, fuzzy msgid "Edit path attributes" msgstr "Правка ознак контуру" #: app/actions/vectors-actions.c:59 -#, fuzzy msgid "_New Path..." -msgstr "/_Створити контур..." +msgstr "_Створити контур..." #: app/actions/vectors-actions.c:60 -#, fuzzy msgid "New path..." -msgstr "/_Створити контур..." +msgstr "_Створити контур..." #: app/actions/vectors-actions.c:65 -#, fuzzy msgid "_New Path" -msgstr "Новий контур" +msgstr "_Створити контур" #: app/actions/vectors-actions.c:66 -#, fuzzy msgid "New path with last values" -msgstr "" -"Новий контур\n" -"Створення нового контуру %s" +msgstr "Новий контур зі старими значенням" #: app/actions/vectors-actions.c:71 -#, fuzzy msgid "D_uplicate Path" -msgstr "/Д_ублювати контур" +msgstr "Д_ублювати контур" #: app/actions/vectors-actions.c:72 -#, fuzzy msgid "Duplicate path" msgstr "Дублювати контур" #: app/actions/vectors-actions.c:77 -#, fuzzy msgid "_Delete Path" -msgstr "/В_идалити контур" +msgstr "В_идалити контур" #: app/actions/vectors-actions.c:78 -#, fuzzy msgid "Delete path" msgstr "Видалити контур" #: app/actions/vectors-actions.c:83 -#, fuzzy msgid "Merge _Visible Paths" -msgstr "/Об'єднати _видимі шари" +msgstr "Об'єднати _видимі шари" #: app/actions/vectors-actions.c:88 -#, fuzzy msgid "_Raise Path" -msgstr "/Пі_дняти контур" +msgstr "Пі_дняти контур" #: app/actions/vectors-actions.c:89 -#, fuzzy msgid "Raise path" msgstr "Піднімання контуру" #: app/actions/vectors-actions.c:94 -#, fuzzy msgid "Raise Path to _Top" -msgstr "Зробити контур верхнім" +msgstr "Зробити контур _верхнім" #: app/actions/vectors-actions.c:95 -#, fuzzy msgid "Raise path to top" -msgstr "Зробити контур верхнім" +msgstr "Піднімання контуру догори" #: app/actions/vectors-actions.c:100 -#, fuzzy msgid "_Lower Path" -msgstr "/_Опустити контур" +msgstr "_Опустити контур" #: app/actions/vectors-actions.c:101 -#, fuzzy msgid "Lower path" msgstr "Опускання контуру" #: app/actions/vectors-actions.c:106 -#, fuzzy msgid "Lower Path to _Bottom" -msgstr "Зробити контур нижнім" +msgstr "Зробити контур _нижнім" #: app/actions/vectors-actions.c:107 -#, fuzzy msgid "Lower path to bottom" -msgstr "Зробити контур нижнім" +msgstr "Опускання контуру додолу" #: app/actions/vectors-actions.c:112 -#, fuzzy msgid "Stro_ke Path..." -msgstr "/О_бвести за контуром" +msgstr "Обвести за конту_ром..." #: app/actions/vectors-actions.c:113 -#, fuzzy msgid "Stroke path..." -msgstr "/О_бвести за контуром" +msgstr "Обвести за контуром..." #: app/actions/vectors-actions.c:118 -#, fuzzy msgid "Stro_ke Path" -msgstr "Обвести за контуром" +msgstr "Обвести за конту_ром" #: app/actions/vectors-actions.c:119 -#, fuzzy msgid "Stroke path with last values" -msgstr "Використати один з інструментів" +msgstr "Обвести контур з останніми значеннями" #: app/actions/vectors-actions.c:124 -#, fuzzy msgid "Co_py Path" -msgstr "/_Копіювати контур" +msgstr "_Копіювати контур" #: app/actions/vectors-actions.c:129 -#, fuzzy msgid "Paste Pat_h" -msgstr "/Вст_авити контур" +msgstr "Вст_авити контур" #: app/actions/vectors-actions.c:134 -#, fuzzy msgid "I_mport Path..." -msgstr "/_Імпорт контуру..." +msgstr "_Імпорт контуру..." #: app/actions/vectors-actions.c:139 -#, fuzzy msgid "E_xport Path..." -msgstr "/_Експорт контуру..." +msgstr "_Експорт контуру..." #: app/actions/vectors-actions.c:162 -#, fuzzy msgid "Path to Sele_ction" -msgstr "/Контур -> Виді_лена ділянка" +msgstr "Контур -> Виді_лена ділянка" #: app/actions/vectors-actions.c:163 app/tools/gimpvectortool.c:1893 -#, fuzzy msgid "Path to selection" msgstr "Контур -> Виділену ділянку" #: app/actions/vectors-actions.c:168 -#, fuzzy msgid "Fr_om Path" -msgstr "/Виділення/_З контуру" +msgstr "З конт_уру" #: app/actions/vectors-actions.c:194 -#, fuzzy msgid "Selecti_on to Path" -msgstr "/Виділена ділянка -> Кон_тур" +msgstr "Виділена ділянка -> Кон_тур" #: app/actions/vectors-actions.c:195 -#, fuzzy msgid "Selection to path" -msgstr "/Виділена ділянка -> Кон_тур" +msgstr "Виділена ділянка -> Кон_тур" #: app/actions/vectors-actions.c:200 -#, fuzzy msgid "To _Path" -msgstr "Перейменування контуру" +msgstr "У _контур" #: app/actions/vectors-actions.c:205 -#, fuzzy msgid "Selection to Path (_Advanced)" -msgstr "" -"Виділення у контур\n" -"%s - розширені параметри" +msgstr "Виділення у контур (_розширені параметри)" #: app/actions/vectors-actions.c:206 -#, fuzzy msgid "Advanced options" -msgstr "Збережені параметри" +msgstr "Розширені параметри" #: app/actions/vectors-commands.c:140 msgid "Path Attributes" @@ -3437,117 +2996,97 @@ #: app/actions/vectors-commands.c:370 app/tools/gimpvectortool.c:1923 #: app/vectors/gimpvectors.c:237 msgid "Stroke Path" -msgstr "Обвести за контуром" +msgstr "Обведення за контуром" #: app/actions/view-actions.c:63 -#, fuzzy msgid "_View" -msgstr "/_Вигляд" +msgstr "_Вигляд" #: app/actions/view-actions.c:64 -#, fuzzy msgid "_Zoom" -msgstr "Масштаб:" +msgstr "Мас_штаб" #: app/actions/view-actions.c:65 -#, fuzzy msgid "_Padding Color" -msgstr "Власний колір тла:" +msgstr "Колір нап_овнення" #: app/actions/view-actions.c:73 -#, fuzzy msgid "_Close" -msgstr "Штамп" +msgstr "_Закрити" #: app/actions/view-actions.c:78 -#, fuzzy msgid "_Fit Image in Window" -msgstr "Вікна зображення" +msgstr "_Підігнати до розміру вікна" #: app/actions/view-actions.c:79 -#, fuzzy msgid "Fit image in window" -msgstr "Вікна зображення" +msgstr "Підігнати до розміру вікна" #: app/actions/view-actions.c:84 -#, fuzzy msgid "Fit Image to Window" msgstr "Підганяти до розміру вікна" #: app/actions/view-actions.c:85 -#, fuzzy msgid "Fit image to window" msgstr "Підганяти до розміру вікна" #: app/actions/view-actions.c:90 -#, fuzzy msgid "_Info Window" -msgstr "Інформаційне вікно" +msgstr "_Інформаційне вікно" #: app/actions/view-actions.c:95 -#, fuzzy msgid "Na_vigation Window" -msgstr "/Вигляд/Вікно наві_гації" +msgstr "Вікно наві_гації" #: app/actions/view-actions.c:100 -#, fuzzy msgid "Display _Filters..." -msgstr "/Вигляд/Екранні _фільтри..." +msgstr "Екранні _фільтри..." #: app/actions/view-actions.c:105 -#, fuzzy msgid "Shrink _Wrap" -msgstr "Скоротити вікно до зображення" +msgstr "С_коротити вікно по зображенню" #: app/actions/view-actions.c:106 -#, fuzzy msgid "Shrink wrap" -msgstr "Скоротити вікно до зображення" +msgstr "Скоротити вікно по зображенню" #: app/actions/view-actions.c:111 -#, fuzzy msgid "Move to Screen..." -msgstr "/Перемістити по екрану..." +msgstr "Перемістити на _екран..." #: app/actions/view-actions.c:119 -#, fuzzy msgid "_Dot for Dot" -msgstr "/Вигляд/То_чка за точкою" +msgstr "То_чка за точкою" #: app/actions/view-actions.c:125 -#, fuzzy msgid "Show _Selection" -msgstr "Показувати _виділення" +msgstr "Показувати ви_ділення" #: app/actions/view-actions.c:131 msgid "Show _Layer Boundary" -msgstr "Показувати ме_жі шарів" +msgstr "Показувати ме_жі шару" #: app/actions/view-actions.c:137 msgid "Show _Guides" msgstr "Показувати _напрямні" #: app/actions/view-actions.c:143 -#, fuzzy msgid "Sn_ap to Guides" -msgstr "/Вигляд/П_рив'язка до напрямних" +msgstr "П_рив'язка до напрямних" #: app/actions/view-actions.c:149 -#, fuzzy msgid "S_how Grid" -msgstr "Показати _сітку" +msgstr "Показувати с_ітку" #: app/actions/view-actions.c:155 -#, fuzzy msgid "Sna_p to Grid" -msgstr "/Вигляд/Прив'_язка до сітки" +msgstr "Прив'_язка до сітки" #: app/actions/view-actions.c:161 msgid "Show _Menubar" msgstr "Показувати панель _меню" #: app/actions/view-actions.c:167 -#, fuzzy msgid "Show R_ulers" msgstr "Показувати _лінійки" @@ -3557,91 +3096,75 @@ #: app/actions/view-actions.c:179 msgid "Show S_tatusbar" -msgstr "Показувати рядок с_тану" +msgstr "Показувати рядок ст_ану" #: app/actions/view-actions.c:185 -#, fuzzy msgid "Fullscr_een" -msgstr "/Вигляд/_На весь екран" +msgstr "На весь _екран" #: app/actions/view-actions.c:234 -#, fuzzy msgid "16:1 (1600%)" -msgstr "/Вигляд/Масштаб/16:1 (1600%)" +msgstr "16:1 (1600%)" #: app/actions/view-actions.c:239 -#, fuzzy msgid "8:1 (800%)" -msgstr "/Вигляд/Масштаб/8:1 (800%)" +msgstr "8:1 (800%)" #: app/actions/view-actions.c:244 -#, fuzzy msgid "4:1 (400%)" -msgstr "/Вигляд/Масштаб/4:1 (400%)" +msgstr "4:1 (400%)" #: app/actions/view-actions.c:249 -#, fuzzy msgid "2:1 (200%)" -msgstr "/Вигляд/Масштаб/2:1 (200%)" +msgstr "2:1 (200%)" #: app/actions/view-actions.c:254 -#, fuzzy msgid "1:1 (100%)" -msgstr "/Вигляд/Масштаб/1:1 (100%)" +msgstr "1:1 (100%)" #: app/actions/view-actions.c:255 msgid "Zoom 1:1" msgstr "Масштаб 1:1" #: app/actions/view-actions.c:260 -#, fuzzy msgid "1:2 (50%)" -msgstr "/Вигляд/Масштаб/1:2 (50%)" +msgstr "1:2 (50%)" #: app/actions/view-actions.c:265 -#, fuzzy msgid "1:4 (25%)" -msgstr "/Вигляд/Масштаб/1:2 (25%)" +msgstr "1:4 (25%)" #: app/actions/view-actions.c:270 -#, fuzzy msgid "1:8 (12.5%)" -msgstr "/Вигляд/Масштаб/1:1 (12.5%)" +msgstr "1:8 (12.5%)" #: app/actions/view-actions.c:275 -#, fuzzy msgid "1:16 (6.25%)" -msgstr "/Вигляд/Масштаб/1:16 (6.25%)" +msgstr "1:16 (6.25%)" #: app/actions/view-actions.c:280 -#, fuzzy msgid "O_ther..." -msgstr "/Виділення/_Розмивання..." +msgstr "_Інший..." #: app/actions/view-actions.c:288 -#, fuzzy msgid "From _Theme" -msgstr "/З _теми" +msgstr "З т_еми" #: app/actions/view-actions.c:293 -#, fuzzy msgid "_Light Check Color" -msgstr "/_Світлий" +msgstr "_Світлий" #: app/actions/view-actions.c:298 -#, fuzzy msgid "_Dark Check Color" -msgstr "/_Темний" +msgstr "_Темний" #: app/actions/view-actions.c:303 -#, fuzzy msgid "Select _Custom Color..." -msgstr "/В_ласний колір..." +msgstr "В_ласний колір..." #: app/actions/view-actions.c:308 -#, fuzzy msgid "As in _Preferences" -msgstr "/Як у _настройках" +msgstr "Як у п_араметрах" #: app/actions/view-actions.c:592 #, c-format @@ -3655,12 +3178,11 @@ #: app/actions/view-commands.c:572 msgid "Set Canvas Padding Color" -msgstr "Встановити кольору тла навколо зображення" +msgstr "Встановити колір тла навколо зображення" #: app/actions/view-commands.c:574 -#, fuzzy msgid "Set Custom Canvas Padding Color" -msgstr "Встановити кольору тла навколо зображення" +msgstr "Встановити колір тла навколо зображення" #: app/base/base-enums.c:23 msgid "Smooth" @@ -3673,7 +3195,7 @@ #: app/base/base-enums.c:55 app/widgets/gimpwidgets-constructors.c:76 #: app/widgets/gimpwidgets-constructors.c:109 msgid "Value" -msgstr "Величина" +msgstr "Інтенсивність" #: app/base/base-enums.c:56 app/core/core-enums.c:157 #: app/tools/gimpcolorbalancetool.c:301 @@ -3731,6 +3253,10 @@ "using different filenames, restart the Gimp and check the location of the " "swap directory in your Preferences." msgstr "" +"Не вдається відкрити файл підкачки. GIMP використав усю доступну оперативну " +"пам'ять та не може використати файл підкачки. Ваше зображення може бути " +"втрачене. Збережіть його, перезапустіть GIMP та перевірте шлях до файлу " +"підкачки в параметрах." #: app/config/gimpconfig-deserialize.c:100 #, c-format @@ -3764,7 +3290,7 @@ #: app/config/gimpconfig-deserialize.c:625 #, c-format msgid "while parsing token '%s': %s" -msgstr "при граматичному аналізі '%s': %s" +msgstr "при синтаксичному аналізі '%s': %s" #: app/config/gimpconfig-path.c:177 #, c-format @@ -3836,7 +3362,7 @@ #: app/config/gimprc.c:335 app/config/gimprc.c:348 #, c-format msgid "Parsing '%s'\n" -msgstr "Граматичний аналіз \"%s\"\n" +msgstr "Синтаксичний аналіз \"%s\"\n" #: app/config/gimprc.c:595 #, c-format @@ -3874,13 +3400,12 @@ msgstr "Запитувати підтвердження перед закриванням незбереженого зображення." #: app/config/gimprc-blurbs.h:33 -#, fuzzy msgid "Sets the pixel format of cursors the GIMP will use." -msgstr "Визначає режим вказівника у GIMP." +msgstr "Визначає режим вказівника GIMP." #: app/config/gimprc-blurbs.h:36 msgid "Sets the mode of cursor the GIMP will use." -msgstr "Визначає режим вказівника у GIMP." +msgstr "Визначає режим вказівника GIMP." #: app/config/gimprc-blurbs.h:39 msgid "" @@ -3903,7 +3428,6 @@ "напрямних чи сітки." #: 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 " @@ -3911,7 +3435,7 @@ "the original is greater than a specified threshold. This value represents " "the default threshold." msgstr "" -"Такі інструменти як \"Заливка\" та \"Вільне виділення\" при роботі " +"Такі інструменти як \"Заповнення\" та \"Вільне виділення\" при роботі " "користуються алгоритмом зернового заповнення. Заповнення починається з " "вибраної початкової точки та продовжується доти, поки різниця інтенсивності " "між початковою точкою та поточною не перевищить певної межі. Тут вказано " @@ -3922,8 +3446,8 @@ "The window type hint that is set on dock windows. This may affect the way " "your window manager decorates and handles dock windows." msgstr "" -"Тип вікна, що призначається припаркованим вікнам. Може впливати на спосіб " -"оформлення вікон менеджером вікон." +"Тип вікна, що призначається панелям. Може впливати на спосіб оформлення " +"вікон менеджером вікон." #: app/config/gimprc-blurbs.h:121 msgid "When enabled, the selected brush will be used for all tools." @@ -3955,23 +3479,22 @@ msgid "When enabled, the GIMP will use a different info window per image view." msgstr "" "Якщо ввімкнено, GIMP буде створювати окреме інформаційне вікно для кожного " -"повідомлення." +"зображення." #: app/config/gimprc-blurbs.h:163 msgid "" "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." msgstr "" -"Якщо ввімкнено, то при відкриванні зображення воно буде масштабуватись до " -"розмірів вікна. У іншому випадку у масштабі 1:1" +"Якщо ввімкнено, то при відкриванні зображення масштабується до розмірів " +"вікна. У іншому випадку у масштабі 1:1" #: app/config/gimprc-blurbs.h:167 -#, fuzzy msgid "" "Install a private colormap; might be useful on 8-bit (256 colors) displays." msgstr "" -"Встановити власну мапу кольорів; може бути корисно при роботі з " -"псевдокольоровими зображеннями." +"Встановити власну мапу кольорів; може бути корисно при роботі з 8-бітними " +"(256 кольоровими) дисплеями." #: app/config/gimprc-blurbs.h:170 msgid "" @@ -4001,11 +3524,8 @@ "GIMP буде виводити попередження." #: app/config/gimprc-blurbs.h:185 -#, fuzzy msgid "When enabled, GIMP will show mnemonics in menus." -msgstr "" -"Якщо ввімкнено, GIMP буде створювати окреме інформаційне вікно для кожного " -"повідомлення." +msgstr "Якщо ввімкнено, GIMP відображає мнемонічні правила про нього у меню." #: app/config/gimprc-blurbs.h:188 msgid "" @@ -4021,6 +3541,9 @@ "forces the X server to be queried for both horizontal and vertical " "resolution information." msgstr "" +"Встановлює горизонтальну роздільну здатність монітора в точках на дюйм. При " +"нульовому значенні, беруться як вертикальне так і горизонтальне значення від " +"X сервера." #: app/config/gimprc-blurbs.h:204 msgid "" @@ -4028,6 +3551,9 @@ "forces the X server to be queried for both horizontal and vertical " "resolution information." msgstr "" +"Встановлює вертикальну роздільну здатність монітора в точках на дюйм. При " +"нульовому значенні, беруться як вертикальне так і горизонтальне значення від " +"X сервера." #: app/config/gimprc-blurbs.h:209 msgid "" @@ -4035,6 +3561,8 @@ "path is being picked. This used to be the default behaviour in older " "versions." msgstr "" +"При включенні цього параметра інструмент \"Переміщення\" робить активним " +"шар, що переміщується. У минулих версіях це була типова поведінка." #: app/config/gimprc-blurbs.h:214 msgid "" @@ -4077,7 +3605,6 @@ "роботу при роботі з великими зображеннями." #: app/config/gimprc-blurbs.h:250 -#, fuzzy msgid "" "Sets the preview size used for layers and channel previews in newly created " "dialogs." @@ -4121,15 +3648,15 @@ "related help page. Without this button, the help page can still be reached " "by pressing F1." msgstr "" +"При включенні цього параметра в усіх діалогах буде відображатися кнопка " +"\"Довідка\", що дозволяє звернутись до системі довідки. Без цієї кнопки " +"довідку можна викликати кнопкою F1." #: app/config/gimprc-blurbs.h:284 -#, fuzzy msgid "" "When enabled, the cursor will be shown over the image while using a paint " "tool." -msgstr "" -"Якщо ввімкнено, GIMP не буде зберігати не змінені з моменту відкривання " -"файли." +msgstr "Якщо ввімкнено, при малюванні буде видно курсор." #: app/config/gimprc-blurbs.h:288 msgid "" @@ -4177,7 +3704,7 @@ "toggled with the \"View->Show Layer Boundary\" command." msgstr "" "Якщо ввімкнено, ввімкнено показ меж шару. Це також можна зробити командою " -"\"Вигляд->Показувати меді шару\"." +"\"Вигляд->Показувати межі шару\"." #: app/config/gimprc-blurbs.h:312 msgid "" @@ -4262,19 +3789,21 @@ "використовувався спільно з іншими користувачам. " #: 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." msgstr "" -"Встановлює розмір файлів попереднього перегляду. Зауважте, GIMP не може " -"зберігати мініатюри при вимкненому параметрі попереднього перегляду шарів." +"Встановлює розмір файлів попереднього перегляду у діалозі відкривання " +"файлів. Зауважте, GIMP не може створювати мініатюри при вимкненому параметрі " +"попереднього перегляду шарів." #: app/config/gimprc-blurbs.h:369 msgid "" "The thumbnail in the Open dialog will be automatically updated if the file " "being previewed is smaller than the size set here." msgstr "" +"Якщо розмір файлу попереднього перегляду буде менше вказаного тут значення, " +"тоді перегляд у діалозі відкривання буде оновлюватись автоматично." #: app/config/gimprc-blurbs.h:373 msgid "" @@ -4364,22 +3893,18 @@ msgstr "Помилка аналізу \"%s\" у рядку %d: %s" #: app/core/core-enums.c:27 -#, fuzzy msgid "_White (full opacity)" -msgstr "_Білий (Повна непрозорість)" +msgstr "_Білий (Абсолютно непрозорий)" #: app/core/core-enums.c:28 -#, fuzzy msgid "_Black (full transparency)" -msgstr "_Чорний (Повна прозорість)" +msgstr "_Чорний (Абсолютно прозорий)" #: app/core/core-enums.c:29 -#, fuzzy msgid "Layer's _alpha channel" msgstr "_Альфа-канал шару" #: app/core/core-enums.c:30 -#, fuzzy msgid "_Transfer layer's alpha channel" msgstr "_Перетворити альфа-канал шару" @@ -4388,7 +3913,6 @@ msgstr "Виді_лене" #: app/core/core-enums.c:32 -#, fuzzy msgid "_Grayscale copy of layer" msgstr "Копія шару у _відтінках" @@ -4401,27 +3925,22 @@ msgstr "Передній план до тла (HSV)" #: app/core/core-enums.c:63 -#, fuzzy msgid "FG to transparent" msgstr "Передній план до прозорого" #: app/core/core-enums.c:64 -#, fuzzy msgid "Custom gradient" msgstr "Власний градієнт" #: app/core/core-enums.c:92 -#, fuzzy msgid "FG color fill" msgstr "Заповнення кольором переднього плану" #: app/core/core-enums.c:93 -#, fuzzy msgid "BG color fill" msgstr "Заповнення кольором тла" #: app/core/core-enums.c:94 -#, fuzzy msgid "Pattern fill" msgstr "Заповнення візерунком" @@ -4455,49 +3974,40 @@ msgstr "Немає" #: app/core/core-enums.c:220 -#, fuzzy msgid "Floyd-Steinberg (normal)" msgstr "Змішування кольорів за Флойдом-Стейнбергом (звичайне)" #: app/core/core-enums.c:221 -#, fuzzy msgid "Floyd-Steinberg (reduced color bleeding)" msgstr "Змішування кольорів за Флойдом-Стейнбергом (зменшене розтікання)" #: app/core/core-enums.c:222 -#, fuzzy msgid "Positioned" -msgstr "Позиція: %0.6f" +msgstr "Позиція" #: app/core/core-enums.c:251 -#, fuzzy msgid "Generate optimum palette" -msgstr "Створити оптимальну палітру:" +msgstr "Створити оптимальну палітру" #: app/core/core-enums.c:252 -#, fuzzy msgid "Use web-optimized palette" msgstr "Використовувати палітру оптимізовану для WWW" #: app/core/core-enums.c:253 -#, fuzzy msgid "Use black and white (1-bit) palette" msgstr "Використовувати чорно-білу (1-бітну) палітру" #: app/core/core-enums.c:254 -#, fuzzy msgid "Use custom palette" -msgstr "Використовувати власну палітру:" +msgstr "Використовувати власну палітру" #: app/core/core-enums.c:329 -#, fuzzy msgid "Foreground color" -msgstr "Колір _переднього плану:" +msgstr "Колір переднього плану" #: app/core/core-enums.c:330 -#, fuzzy msgid "Background color" -msgstr "Колір _тла:" +msgstr "Колір тла" #: app/core/core-enums.c:331 msgid "White" @@ -4514,7 +4024,6 @@ msgstr "Візерунок" #: app/core/core-enums.c:371 -#, fuzzy msgid "Bi-linear" msgstr "Білінійна" @@ -4528,37 +4037,30 @@ msgstr "Квадратна" #: app/core/core-enums.c:374 -#, fuzzy msgid "Conical (sym)" msgstr "Конічна (симетрична)" #: app/core/core-enums.c:375 -#, fuzzy msgid "Conical (asym)" msgstr "Конічна (асиметрична)" #: app/core/core-enums.c:376 -#, fuzzy msgid "Shaped (angular)" msgstr "По формі (кутова)" #: app/core/core-enums.c:377 -#, fuzzy msgid "Shaped (spherical)" msgstr "По формі (сферична)" #: app/core/core-enums.c:378 -#, fuzzy msgid "Shaped (dimpled)" msgstr "По формі (з ямкою)" #: app/core/core-enums.c:379 -#, fuzzy msgid "Spiral (cw)" msgstr "Спіральна (за годинниковою)" #: app/core/core-enums.c:380 -#, fuzzy msgid "Spiral (ccw)" msgstr "Спіральна (за годинниковою)" @@ -4575,7 +4077,6 @@ msgstr "Пунктир" #: app/core/core-enums.c:413 -#, fuzzy msgid "Double dashed" msgstr "Подвійний пунктир" @@ -4584,12 +4085,10 @@ msgstr "Суцільна" #: app/core/core-enums.c:441 -#, fuzzy msgid "Stroke line" -msgstr "Параметри обведення" +msgstr "Штрих" #: app/core/core-enums.c:442 -#, fuzzy msgid "Stroke with a paint tool" msgstr "Використати один з інструментів" @@ -4618,32 +4117,26 @@ msgstr "Лінія" #: app/core/core-enums.c:568 -#, fuzzy msgid "Long dashes" msgstr "Довгі риски" #: app/core/core-enums.c:569 -#, fuzzy msgid "Medium dashes" msgstr "Середні риски" #: app/core/core-enums.c:570 -#, fuzzy msgid "Short dashes" msgstr "Короткі риски" #: app/core/core-enums.c:571 -#, fuzzy msgid "Sparse dots" -msgstr "Розсіяні риски" +msgstr "Рідкі риски" #: app/core/core-enums.c:572 -#, fuzzy msgid "Normal dots" msgstr "Крапки" #: app/core/core-enums.c:573 -#, fuzzy msgid "Dense dots" msgstr "Часті крапки" @@ -4652,35 +4145,32 @@ msgstr "Пунктир" #: app/core/core-enums.c:575 -#, fuzzy msgid "Dash dot..." msgstr "Тире-крапка..." #: app/core/core-enums.c:576 -#, fuzzy msgid "Dash dot dot..." msgstr "Тире-крапка-крапка..." #: app/core/core-enums.c:604 msgid "Stock ID" -msgstr "" +msgstr "ID з набору" #: app/core/core-enums.c:605 msgid "Inline pixbuf" -msgstr "" +msgstr "Вбудований pixbuf" #: app/core/core-enums.c:606 -#, fuzzy msgid "Image file" -msgstr "Розмір зображення" +msgstr "Файл зображення" #: app/core/core-enums.c:634 msgid "Circle" -msgstr "" +msgstr "Коло" #: app/core/core-enums.c:636 msgid "Diamond" -msgstr "" +msgstr "Ромб" #: app/core/core-enums.c:664 app/dialogs/preferences-dialog.c:1950 msgid "Horizontal" @@ -4699,7 +4189,6 @@ msgstr "Крихітний" #: app/core/core-enums.c:731 -#, fuzzy msgid "Very small" msgstr "Дуже малий" @@ -4716,7 +4205,6 @@ msgstr "Великий" #: app/core/core-enums.c:735 -#, fuzzy msgid "Very large" msgstr "Дуже великий" @@ -4733,17 +4221,14 @@ msgstr "Колосальний" #: app/core/core-enums.c:767 -#, fuzzy msgid "Sawtooth wave" msgstr "Пилоподібна хвиля" #: app/core/core-enums.c:768 -#, fuzzy msgid "Triangular wave" msgstr "Трикутна хвиля" #: app/core/core-enums.c:830 -#, fuzzy msgid "No thumbnails" msgstr "Без мініатюр" @@ -4756,12 +4241,10 @@ msgstr "Великий (256x256)" #: app/core/core-enums.c:859 -#, fuzzy msgid "Forward (traditional)" -msgstr "Вперед (Традиційне)" +msgstr "Вперед (традиційне)" #: app/core/core-enums.c:860 -#, fuzzy msgid "Backward (corrective)" msgstr "Назад (коригуюче)" @@ -4770,47 +4253,38 @@ msgstr "<<неправильно>>" #: app/core/core-enums.c:1030 -#, fuzzy msgid "Scale image" msgstr "Масштабування зображення" #: app/core/core-enums.c:1031 -#, fuzzy msgid "Resize image" msgstr "Зміна розміру зображення" #: app/core/core-enums.c:1032 -#, fuzzy msgid "Flip image" msgstr "Віддзеркалення зображення" #: app/core/core-enums.c:1033 -#, fuzzy msgid "Rotate image" msgstr "Обертання зображення" #: app/core/core-enums.c:1034 -#, fuzzy msgid "Crop image" msgstr "Кадрування зображення" #: app/core/core-enums.c:1035 -#, fuzzy msgid "Convert image" msgstr "Перетворення зображення" #: app/core/core-enums.c:1036 -#, fuzzy msgid "Merge layers" msgstr "Об'єднання шарів" #: app/core/core-enums.c:1037 -#, fuzzy msgid "Merge vectors" msgstr "Поєднання векторів" #: app/core/core-enums.c:1038 app/core/gimpchannel.c:383 -#, fuzzy msgid "Quick Mask" msgstr "Швидка маска" @@ -4825,72 +4299,58 @@ msgstr "Напрямна" #: app/core/core-enums.c:1042 app/core/core-enums.c:1072 -#, fuzzy msgid "Drawable mod" msgstr "Режим малювання" #: app/core/core-enums.c:1043 app/core/core-enums.c:1073 -#, fuzzy msgid "Selection mask" msgstr "Маска виділеної ділянки" #: app/core/core-enums.c:1044 app/core/core-enums.c:1076 -#, fuzzy msgid "Item visibility" msgstr "Видимість елемента" #: app/core/core-enums.c:1045 -#, fuzzy msgid "Linked item" msgstr "Пов'язаний елемент" #: app/core/core-enums.c:1046 -#, fuzzy msgid "Item properties" msgstr "Властивості елемента" #: app/core/core-enums.c:1047 app/core/core-enums.c:1075 -#, fuzzy msgid "Move item" msgstr "Переміщення елемента" #: app/core/core-enums.c:1048 -#, fuzzy msgid "Scale item" msgstr "Масштабування елемента" #: app/core/core-enums.c:1049 -#, fuzzy msgid "Resize item" -msgstr "Зміна розміру елемента" +msgstr "Зміна розміру" #: app/core/core-enums.c:1050 app/core/core-enums.c:1080 -#, fuzzy msgid "Add layer mask" -msgstr "Додавання маску шару" +msgstr "Додавання маски шару" #: app/core/core-enums.c:1051 -#, fuzzy msgid "Apply layer mask" -msgstr "Застосування маску шару" +msgstr "Застосування маски шару" #: app/core/core-enums.c:1052 -#, fuzzy msgid "Floating selection to layer" msgstr "Плаваюче виділення у шар" #: app/core/core-enums.c:1053 -#, fuzzy msgid "Float selection" msgstr "Плаваюче виділення" #: app/core/core-enums.c:1054 -#, fuzzy msgid "Anchor floating selection" msgstr "Прикріплення плаваючого виділення" #: app/core/core-enums.c:1055 -#, fuzzy msgid "Remove floating selection" msgstr "Видалення плаваючого виділення" @@ -4903,7 +4363,7 @@ msgstr "Вирізання" #: app/core/core-enums.c:1058 app/core/core-enums.c:1086 -#: app/tools/gimptexttool.c:142 app/widgets/widgets-enums.c:263 +#: app/tools/gimptexttool.c:144 app/widgets/widgets-enums.c:263 msgid "Text" msgstr "Текст" @@ -4918,17 +4378,14 @@ msgstr "Малювання" #: app/core/core-enums.c:1061 app/core/core-enums.c:1102 -#, fuzzy msgid "Attach parasite" msgstr "Долучення шуму" #: app/core/core-enums.c:1062 app/core/core-enums.c:1103 -#, fuzzy msgid "Remove parasite" msgstr "Видалення шуму" #: app/core/core-enums.c:1063 -#, fuzzy msgid "Import paths" msgstr "Імпортування контуру" @@ -4937,117 +4394,94 @@ msgstr "Доповнення" #: app/core/core-enums.c:1065 -#, fuzzy msgid "Image type" msgstr "Тип зображення" #: app/core/core-enums.c:1066 -#, fuzzy msgid "Image size" msgstr "Розмір зображення" #: app/core/core-enums.c:1067 -#, fuzzy msgid "Resolution change" msgstr "Зміна роздільної здатності" #: app/core/core-enums.c:1070 -#, fuzzy msgid "Change indexed palette" msgstr "Зміна індексованої палітри" #: app/core/core-enums.c:1074 -#, fuzzy msgid "Rename item" msgstr "Перейменування елементу" #: app/core/core-enums.c:1077 -#, fuzzy msgid "Set item linked" msgstr "Встановлення зв'язку з елементом" #: app/core/core-enums.c:1078 -#, fuzzy msgid "New layer" msgstr "Створення шару" #: app/core/core-enums.c:1081 -#, fuzzy msgid "Delete layer mask" msgstr "Видалення маску шару" #: app/core/core-enums.c:1082 -#, fuzzy msgid "Reposition layer" msgstr "Переставлення шарів" #: app/core/core-enums.c:1083 -#, fuzzy msgid "Set layer mode" msgstr "Встановлення режиму шару" #: app/core/core-enums.c:1084 -#, fuzzy msgid "Set layer opacity" msgstr "Встановлення непрозорості шару" #: app/core/core-enums.c:1085 -#, fuzzy msgid "Set preserve trans" msgstr "Збереження непрозорості" #: app/core/core-enums.c:1087 -#, fuzzy msgid "Text modified" msgstr "Текст змінено" #: app/core/core-enums.c:1088 -#, fuzzy msgid "New channel" msgstr "Створення каналу" #: app/core/core-enums.c:1090 -#, fuzzy msgid "Reposition channel" msgstr "Зсув каналу" #: app/core/core-enums.c:1091 -#, fuzzy msgid "Channel color" msgstr "Колір каналу" #: app/core/core-enums.c:1092 -#, fuzzy msgid "New vectors" msgstr "Створення вектору" #: app/core/core-enums.c:1093 -#, fuzzy msgid "Delete vectors" msgstr "Видалення вектору" #: app/core/core-enums.c:1094 -#, fuzzy msgid "Vectors mod" msgstr "Режим векторів" #: app/core/core-enums.c:1095 -#, fuzzy msgid "Reposition vectors" msgstr "Переміщення векторів" #: app/core/core-enums.c:1096 -#, fuzzy msgid "FS to layer" msgstr "Плав.виділ. у шар" #: app/core/core-enums.c:1097 -#, fuzzy msgid "FS rigor" msgstr "Захоплення плав.виділення" #: app/core/core-enums.c:1098 -#, fuzzy msgid "FS relax" msgstr "Відпускання плав.виділення" @@ -5138,19 +4572,19 @@ msgstr "Не вдається прочитати %d байт з '%s': %s" #: app/core/gimpbrush.c:554 -#, fuzzy, c-format +#, c-format msgid "Fatal parse error in brush file '%s': Width = 0." -msgstr "Критична помилка аналізу файлу пензля '%s': невідома глибина %d." +msgstr "Критична помилка аналізу файлу пензля '%s': Ширина = 0." #: app/core/gimpbrush.c:563 -#, fuzzy, c-format +#, c-format msgid "Fatal parse error in brush file '%s': Height = 0." -msgstr "Критична помилка аналізу файла пензля '%s': файл пошкоджений." +msgstr "Критична помилка аналізу файла пензля '%s': Висота = 0." #: app/core/gimpbrush.c:572 -#, fuzzy, c-format +#, c-format msgid "Fatal parse error in brush file '%s': Bytes = 0." -msgstr "Критична помилка аналізу файла пензля '%s': файл пошкоджений." +msgstr "Критична помилка аналізу файла пензля '%s': Байтів = 0." #: app/core/gimpbrush.c:596 #, c-format @@ -5202,19 +4636,19 @@ "Критична помилка аналізу файла пензля '%s': невідома версія пензля GIMP." #: app/core/gimpbrushgenerated.c:669 -#, fuzzy, c-format +#, c-format msgid "Fatal parse error in brush file '%s': Unknown GIMP brush shape." msgstr "" "Критична помилка аналізу файла пензля '%s': невідома версія пензля GIMP." #: app/core/gimpbrushgenerated.c:750 -#, fuzzy, c-format +#, c-format msgid "Error while reading brush file '%s': %s" -msgstr "Помилка при зчитуванні '%s': %s" +msgstr "Помилка при зчитуванні файлу пензля '%s': %s" #: app/core/gimpbrushgenerated.c:752 msgid "File is truncated" -msgstr "" +msgstr "Файл обрізаний" #: app/core/gimpbrushpipe.c:369 app/core/gimpbrushpipe.c:389 #: app/core/gimpbrushpipe.c:479 @@ -5337,13 +4771,14 @@ msgstr "Не вдається видалити \"%s\": %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 "" "Увага: не вдається зберегти дані:\n" +"\n" "%s" #: app/core/gimpdatafactory.c:411 app/core/gimpdatafactory.c:414 @@ -5357,13 +4792,14 @@ msgstr "копія %s" #: app/core/gimpdatafactory.c:614 -#, fuzzy, c-format +#, c-format msgid "" "Warning: Failed to load data:\n" "\n" "%s" msgstr "" -"Увага: не вдається завантажити дані:\n" +"Увага: не вдається завантажити дані з:\n" +"\n" "%s" #: app/core/gimpdrawable-blend.c:238 app/tools/gimpblendtool.c:101 @@ -5456,17 +4892,17 @@ #: 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 "Файл градієнту '%s' пошкоджений: сегмент не у діапазоні 0-1." #: app/core/gimpgradient-load.c:281 -#, fuzzy, c-format +#, c-format msgid "No linear gradients found in '%s'" -msgstr "У \"%s\" не знайдено контурів" +msgstr "У \"%s\" не знайдено градієнтів" #: app/core/gimpgradient-load.c:291 -#, fuzzy, c-format +#, c-format msgid "Failed to import gradients from '%s': %s" -msgstr "Не вдається імпортувати з '%s': %s" +msgstr "Не вдається імпортувати градієнт з '%s': %s" #: app/core/gimpgrid.c:128 msgid "Line style used for the grid." @@ -5499,41 +4935,36 @@ msgstr "Вертикальний зсув першої лінії сітки. Значення може бути від'ємним." #: app/core/gimpimage-colormap.c:63 -#, fuzzy msgid "Set Colormap" -msgstr "Мапа кольорів" +msgstr "Встановлення мапи кольорів" #: app/core/gimpimage-colormap.c:115 -#, fuzzy msgid "Change Colormap entry" -msgstr "Зміна одиниць вимірювання" +msgstr "Зміна елементу карти кольорів" #: app/core/gimpimage-colormap.c:135 -#, fuzzy msgid "Add Color to Colormap" -msgstr "/_Додати колір до основного" +msgstr "Додавання кольору до карти кольорів" -#: app/core/gimpimage-convert.c:788 +#: app/core/gimpimage-convert.c:789 msgid "Convert Image to RGB" msgstr "Перетворення зображення у RGB" -#: app/core/gimpimage-convert.c:792 +#: app/core/gimpimage-convert.c:793 msgid "Convert Image to Grayscale" msgstr "Перетворення зображення у відтінки сірого" -#: app/core/gimpimage-convert.c:796 +#: app/core/gimpimage-convert.c:797 msgid "Convert Image to Indexed" msgstr "Перетворення зображення у індексоване" -#: app/core/gimpimage-convert.c:875 -#, fuzzy +#: app/core/gimpimage-convert.c:879 msgid "Converting to indexed (stage 2)..." -msgstr "Перетворення зображення у індексоване" +msgstr "Перетворення у індексоване (2 етап)..." -#: app/core/gimpimage-convert.c:919 -#, fuzzy +#: app/core/gimpimage-convert.c:923 msgid "Converting to indexed (stage 3)..." -msgstr "Перетворення зображення у індексоване" +msgstr "Перетворення у індексоване (3 етап)..." #: app/core/gimpimage-crop.c:123 msgid "Crop Image" @@ -5589,12 +5020,10 @@ "Недостатньо видимих контурів для об'єднання. Необхідно принаймні два контури." #: app/core/gimpimage-qmask.c:67 -#, fuzzy msgid "Enable Quick Mask" msgstr "Увімкнення швидкої маски" #: app/core/gimpimage-qmask.c:117 -#, fuzzy msgid "Disable Quick Mask" msgstr "Вимкнення швидкої маски" @@ -5645,7 +5074,7 @@ #: app/core/gimpimage.c:2849 msgid "Lower Layer" -msgstr "Опускання шар" +msgstr "Опускання шару" #: app/core/gimpimage.c:2866 msgid "Layer is already on top." @@ -5685,7 +5114,6 @@ msgstr "Піднімання каналу" #: app/core/gimpimage.c:3104 -#, fuzzy msgid "Channel is already on top." msgstr "Шар вже на самій верхівці." @@ -5702,7 +5130,6 @@ msgstr "Опускання каналу" #: app/core/gimpimage.c:3151 -#, fuzzy msgid "Channel is already on the bottom." msgstr "Шар вже у самому низу." @@ -5727,7 +5154,6 @@ msgstr "Піднімання контуру" #: app/core/gimpimage.c:3342 -#, fuzzy msgid "Path is already on top." msgstr "Шар вже на самій верхівці." @@ -5744,7 +5170,6 @@ msgstr "Опускання контуру" #: app/core/gimpimage.c:3389 -#, fuzzy msgid "Path is already on the bottom." msgstr "Шар вже у самому низу." @@ -5765,9 +5190,8 @@ msgstr "Особливий файл" #: app/core/gimpimagefile.c:605 -#, fuzzy msgid "Click to create preview" -msgstr "Не вдається створити файл попереднього перегляду" +msgstr "Натисніть для створення файлу перегляду" #: app/core/gimpimagefile.c:609 msgid "Loading preview ..." @@ -5870,11 +5294,13 @@ msgstr "%s маска" #: app/core/gimplayer.c:385 -#, fuzzy, c-format +#, c-format msgid "" "Floating Selection\n" "(%s)" -msgstr "Плаваюче виділення" +msgstr "" +"Плаваюче виділення\n" +"(%s)" #: app/core/gimplayer.c:1035 msgid "Cannot add layer mask to layer which is not part of an image." @@ -5899,11 +5325,11 @@ #: app/core/gimplayer.c:1323 msgid "Apply Layer Mask" -msgstr "Застосування маску шару" +msgstr "Застосування маски шару" #: app/core/gimplayer.c:1324 msgid "Delete Layer Mask" -msgstr "Видалення маску шару" +msgstr "Видалення маски шару" #: app/core/gimplayer.c:1425 msgid "Add Alpha Channel" @@ -5918,12 +5344,12 @@ msgstr "Переміщення маски шару" #: app/core/gimppalette-import.c:490 -#, fuzzy, c-format +#, c-format msgid "" "Unknown type of palette file:\n" "%s" msgstr "" -"Не є файлом RIFF палітри:\n" +"Не є файлом палітри RIFF:\n" "%s" #: app/core/gimppalette.c:375 @@ -6016,10 +5442,10 @@ msgstr "Неправильний UTF-8 рядок у файлі візерунку '%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 "" -"Не вдається викликати пензель. Можливо, відповідне доповнення завершилось " +"Не вдається викликати %s. Можливо, відповідне доповнення завершилось " "аварійно." #: app/core/gimpprogress.c:107 app/core/gimpprogress.c:154 @@ -6059,22 +5485,20 @@ msgstr "Плаваюче виділення" #: app/core/gimpselection.c:839 -#, fuzzy msgid "Floated Layer" -msgstr "Обертання шару" +msgstr "Плаваючий шар" #: app/core/gimptemplate.c:158 msgid "The unit used for coordinate display when not in dot-for-dot mode." msgstr "Використовується, якщо вимкнено режим \"Точка за точкою\"" #: app/core/gimptemplate.c:165 -#, fuzzy msgid "The horizontal image resolution." msgstr "Горизонтальна роздільна здатність." #: app/core/gimptemplate.c:170 msgid "The vertical image resolution." -msgstr "Вертикальна роздільну здатність." +msgstr "Вертикальна роздільна здатність." #: app/core/gimptemplate.c:450 app/widgets/widgets-enums.c:24 msgid "Background" @@ -6083,12 +5507,12 @@ #. pseudo unit #: app/core/gimpunit.c:55 msgid "pixel" -msgstr "точка растру" +msgstr "точка" #: app/core/gimpunit.c:55 app/tools/gimpmeasuretool.c:787 #: app/tools/gimpmeasuretool.c:875 app/tools/gimppainttool.c:681 msgid "pixels" -msgstr "точок растру" +msgstr "точок" #. standard units #: app/core/gimpunit.c:58 @@ -6131,7 +5555,7 @@ #: app/dialogs/about-dialog.c:45 #, c-format msgid "Version %s brought to you by" -msgstr "Версію %s створено для Вас" +msgstr "Версію %s створили для вас" #: app/dialogs/about-dialog.c:51 msgid "Translation by" @@ -6170,14 +5594,12 @@ msgstr "Мапа кольорів" #: app/dialogs/convert-dialog.c:179 -#, fuzzy msgid "_Maximum number of colors:" -msgstr "Максимальна кількість кольорів:" +msgstr "_Максимальна кількість кольорів:" #: app/dialogs/convert-dialog.c:206 -#, fuzzy msgid "_Remove unused colors from final palette" -msgstr "Видалити невикористані кольори з остаточної палітри" +msgstr "В_идалити невикористані кольори з остаточної палітри" #. dithering #: app/dialogs/convert-dialog.c:221 app/tools/gimpblendoptions.c:269 @@ -6185,19 +5607,16 @@ msgstr "Параметри змішування" #: app/dialogs/convert-dialog.c:233 -#, fuzzy msgid "Color _dithering:" -msgstr "Без змішування кольорів" +msgstr "Змі_шування кольорів:" #: app/dialogs/convert-dialog.c:248 -#, fuzzy msgid "Enable dithering of _transparency" -msgstr "Увімкнути розмивання прозорості" +msgstr "Увімкнути розмивання _прозорості" #: app/dialogs/convert-dialog.c:274 -#, fuzzy msgid "Converting to indexed..." -msgstr "Перетворення зображення у індексоване" +msgstr "Перетворення зображення у індексоване..." #: app/dialogs/convert-dialog.c:382 msgid "Cannot convert to a palette with more than 256 colors." @@ -6264,41 +5683,37 @@ msgstr "Редактор пензлів" #: app/dialogs/file-open-location-dialog.c:71 -#, fuzzy msgid "Open Location" -msgstr "Розташування:" +msgstr "Відкривання адреси" #: app/dialogs/file-open-location-dialog.c:104 -#, fuzzy msgid "Enter location (URI):" -msgstr "Інтерполяція:" +msgstr "Введіть адресу (URI):" -#: app/dialogs/file-save-dialog.c:184 -#, fuzzy +#: app/dialogs/file-save-dialog.c:185 msgid "File exists" -msgstr "Файл існує!" +msgstr "Файл існує" -#: app/dialogs/file-save-dialog.c:189 -#, fuzzy +#: app/dialogs/file-save-dialog.c:190 msgid "_Replace" -msgstr "Розмножити" +msgstr "_Замінити" -#: app/dialogs/file-save-dialog.c:199 +#: app/dialogs/file-save-dialog.c:200 #, c-format msgid "A file named '%s' already exists." -msgstr "" +msgstr "Вже існує файл з назвою '%s'." -#: app/dialogs/file-save-dialog.c:204 +#: app/dialogs/file-save-dialog.c:205 msgid "Do you want to replace it with the image you are saving?" -msgstr "" +msgstr "Бажаєте замінити це зображення тим, яке зараз зберігаєте?" #: app/dialogs/grid-dialog.c:81 msgid "Configure Grid" -msgstr "Настройка сітки" +msgstr "Налаштовування сітки" #: app/dialogs/grid-dialog.c:82 msgid "Configure Image Grid" -msgstr "Настройка сітки зображення" +msgstr "Налаштовування сітки зображення" #: app/dialogs/image-merge-layers-dialog.c:60 msgid "Merge Layers" @@ -6310,7 +5725,7 @@ #: app/dialogs/image-merge-layers-dialog.c:77 msgid "Final, Merged Layer should be:" -msgstr "В результаті, об'єднаний шар має бути:" +msgstr "Об'єднаний шар має бути:" #: app/dialogs/image-merge-layers-dialog.c:81 msgid "Expanded as necessary" @@ -6329,9 +5744,8 @@ msgstr "Створення нового зображення" #: app/dialogs/image-new-dialog.c:130 app/dialogs/preferences-dialog.c:1313 -#, fuzzy msgid "_Template:" -msgstr "Шаблони" +msgstr "Ша_блони:" #: app/dialogs/image-new-dialog.c:265 msgid "Confirm Image Size" @@ -6340,7 +5754,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 "Ви намагаєтесь створити зображення розміром %s." #: app/dialogs/image-new-dialog.c:289 #, c-format @@ -6348,11 +5762,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 "" +"Зображення такого розміру займе більше пам'яті, ніж вказано у розділі " +"параметрів \"Максимальний розмір зображення\" (%s)." #: app/dialogs/image-scale-dialog.c:164 -#, fuzzy msgid "Confirm Scaling" -msgstr "Масштабування" +msgstr "Підтвердження масштабування" #: app/dialogs/image-scale-dialog.c:199 #, c-format @@ -6361,19 +5776,18 @@ "is configured as \"Maximum Image Size\" in the Preferences dialog (currently " "%s)." msgstr "" +"Якщо змінити розмір зображення з такими параметрами, тоді воно займе більше " +"місця, ніж це вказано у параметрі \"Максимальний розмір зображення\" (%s)." #: app/dialogs/image-scale-dialog.c:214 -#, fuzzy msgid "" "Scaling the image to the choosen size will shrink some layers completely " "away." -msgstr "" -"Вибраний вами розмір зображення скоротить деякі шари до зникнення. " -"Продовжити?" +msgstr "Вибраний вами розмір зображення скоротить деякі шари до зникнення. " #: app/dialogs/image-scale-dialog.c:218 msgid "Is this what you want to do?" -msgstr "" +msgstr "Ви дійсно бажаєте це зробити?" #. General #: app/dialogs/info-dialog.c:377 app/dialogs/preferences-dialog.c:1543 @@ -6407,9 +5821,8 @@ msgstr "Чистий колір" #: app/dialogs/info-window.c:131 -#, fuzzy msgid "Cursor" -msgstr "Криві" +msgstr "Курсор" #: app/dialogs/info-window.c:141 app/dialogs/preferences-dialog.c:1932 #: app/widgets/gimpgrideditor.c:267 app/widgets/gimpgrideditor.c:299 @@ -6425,23 +5838,20 @@ 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" +msgstr "Y" #: app/dialogs/info-window.c:163 app/pdb/internal_procs.c:212 msgid "Units" msgstr "Одиниці" #: app/dialogs/info-window.c:228 -#, fuzzy msgid "Comment" -msgstr "Кількість:" +msgstr "Коментар" #: app/dialogs/info-window.c:248 app/dialogs/info-window.c:634 #: app/display/gimpdisplayshell-title.c:337 @@ -6459,12 +5869,10 @@ #. add the information fields #: app/dialogs/info-window.c:294 -#, fuzzy msgid "Pixel dimensions:" -msgstr "Розміри на екрані:" +msgstr "Розмір у точках:" #: app/dialogs/info-window.c:296 -#, fuzzy msgid "Print size:" msgstr "Розмір при друкуванні:" @@ -6473,32 +5881,26 @@ msgstr "Роздільна здатність:" #: app/dialogs/info-window.c:300 -#, fuzzy msgid "Scale ratio:" msgstr "Відношення сторін:" #: app/dialogs/info-window.c:302 -#, fuzzy msgid "Number of layers:" msgstr "Кількість шарів:" #: app/dialogs/info-window.c:304 -#, fuzzy msgid "Size in memory:" msgstr "Розмір у пам'яті:" #: app/dialogs/info-window.c:306 -#, fuzzy msgid "Display type:" msgstr "Тип зображення:" #: app/dialogs/info-window.c:308 -#, fuzzy msgid "Visual class:" msgstr "Оптичний клас:" #: app/dialogs/info-window.c:310 -#, fuzzy msgid "Visual depth:" msgstr "Оптична глибина:" @@ -6576,7 +5978,6 @@ msgstr "Автозавантаження" #: app/dialogs/module-dialog.c:175 -#, fuzzy msgid "Module path" msgstr "Розташування модуля" @@ -6671,30 +6072,25 @@ msgstr "_Y:" #: app/dialogs/offset-dialog.c:197 -#, fuzzy msgid "Offset by x/_2, y/2" -msgstr "Зсув на (x/2),(y/2)" +msgstr "Зсув на x/_2, y/2" #. The edge behaviour frame #: app/dialogs/offset-dialog.c:206 -#, fuzzy msgid "Edge Behaviour" -msgstr "Поведінка діалогових вікон" +msgstr "Поведінка біля меж" #: app/dialogs/offset-dialog.c:210 -#, fuzzy msgid "_Wrap around" -msgstr "_Тло" +msgstr "_Заповнити зображенням" #: app/dialogs/offset-dialog.c:213 -#, fuzzy msgid "Fill with _background color" -msgstr "Змінити колір тла" +msgstr "Заповнити кольором _тла" #: app/dialogs/offset-dialog.c:216 -#, fuzzy msgid "Make _transparent" -msgstr "_Прозоре" +msgstr "Зробити _прозорим" #: app/dialogs/palette-import-dialog.c:171 msgid "Import Palette" @@ -6718,7 +6114,6 @@ msgstr "_Зображення" #: app/dialogs/palette-import-dialog.c:246 -#, fuzzy msgid "Palette _file" msgstr "_Файл палітри" @@ -6732,7 +6127,6 @@ msgstr "Параметри імпорту" #: app/dialogs/palette-import-dialog.c:317 -#, fuzzy msgid "New import" msgstr "Імпорт" @@ -6741,7 +6135,6 @@ msgstr "_Назва палітри:" #: app/dialogs/palette-import-dialog.c:325 -#, fuzzy msgid "N_umber of colors:" msgstr "_Кількість кольорів:" @@ -6763,7 +6156,6 @@ msgstr "Щоб зміни вступили в дію, необхідно перезапустити GIMP." #: app/dialogs/preferences-dialog.c:501 -#, fuzzy msgid "Configure Keyboard Shortcuts" msgstr "Комбінації клавіш" @@ -6772,83 +6164,80 @@ "To edit a shortcut key, click on the corresponding row and type a new " "accelerator, or press backspace to clear." msgstr "" +"Щоб змінити комбінацію клавіш, клацніть у відповідному рядку та введіть нову " +"комбінацію клавіш, або натисніть пробіл, щоб очистити." #: app/dialogs/preferences-dialog.c:595 msgid "" "Your keyboard shortcuts will be reset to default values the next time you " "start GIMP." msgstr "" +"При наступному запуску GIMP будуть використовуватись клавіші типові " +"комбінації клавіш." #: app/dialogs/preferences-dialog.c:629 msgid "" "Your window setup will be reset to default values the next time you start " "GIMP." msgstr "" +"При наступному запуску GIMP значення параметрів вікна будуть скинуті на " +"типові." #: app/dialogs/preferences-dialog.c:663 msgid "" "Your input device settings will be reset to default values the next time you " "start GIMP." msgstr "" +"При наступному запуску GIMP значення параметрів пристрою вводу будуть " +"скинуті на типові." #: app/dialogs/preferences-dialog.c:1082 -#, fuzzy msgid "Show _menubar" msgstr "Показувати панель _меню" #: app/dialogs/preferences-dialog.c:1085 -#, fuzzy msgid "Show _rulers" msgstr "Показувати _лінійки" #: app/dialogs/preferences-dialog.c:1088 -#, fuzzy msgid "Show scroll_bars" msgstr "Показувати смуги _прокручування" #: app/dialogs/preferences-dialog.c:1091 -#, fuzzy msgid "Show s_tatusbar" -msgstr "Показувати рядок с_тану" +msgstr "Показувати рядок ст_ану" #: app/dialogs/preferences-dialog.c:1099 -#, fuzzy msgid "Show s_election" msgstr "Показувати _виділення" #: app/dialogs/preferences-dialog.c:1102 -#, fuzzy msgid "Show _layer boundary" msgstr "Показувати ме_жі шарів" #: app/dialogs/preferences-dialog.c:1105 -#, fuzzy msgid "Show _guides" msgstr "Показувати _напрямні" #: app/dialogs/preferences-dialog.c:1108 -#, fuzzy msgid "Show gri_d" msgstr "Показати _сітку" #: app/dialogs/preferences-dialog.c:1114 -#, fuzzy msgid "Canvas _padding mode:" -msgstr "Колір тла навколо зображення:" +msgstr "Колір _тла навколо зображення:" #: app/dialogs/preferences-dialog.c:1119 -#, fuzzy msgid "Custom p_adding color:" -msgstr "Власний колір тла:" +msgstr "В_ласний колір тла:" #: app/dialogs/preferences-dialog.c:1120 -#, fuzzy msgid "Select custom canvas padding color" -msgstr "Встановити колір тла навколо зображення" +msgstr "Колір тла навколо зображення" #: app/dialogs/preferences-dialog.c:1191 msgid "Preferences" -msgstr "Настройка" +msgstr "Параметри" #: app/dialogs/preferences-dialog.c:1294 app/dialogs/preferences-dialog.c:1297 msgid "New Image" @@ -6876,17 +6265,14 @@ msgstr "Попередній перегляд" #: app/dialogs/preferences-dialog.c:1371 -#, fuzzy msgid "_Enable layer & channel previews" msgstr "_Попередній перегляд шарів та каналів" #: app/dialogs/preferences-dialog.c:1377 -#, fuzzy msgid "Default _layer & channel preview size:" msgstr "Розмір перегляду _шарів та каналів:" #: app/dialogs/preferences-dialog.c:1380 -#, fuzzy msgid "Na_vigation preview size:" msgstr "Розмір вікна _навігації:" @@ -6897,32 +6283,27 @@ #: app/dialogs/preferences-dialog.c:1388 msgid "Show menu _mnemonics (access keys)" -msgstr "" +msgstr "Показувати у меню к_омбінації клавіш" #: app/dialogs/preferences-dialog.c:1391 -#, fuzzy msgid "Use _dynamic keyboard shortcuts" -msgstr "Динамічні комбінації _клавіші" +msgstr "_Динамічні комбінації клавіші" #: app/dialogs/preferences-dialog.c:1395 -#, fuzzy msgid "Configure _Keyboard Shortcuts..." -msgstr "Комбінації клавіш" +msgstr "Налаштувати _комбінації клавіш..." #: app/dialogs/preferences-dialog.c:1402 -#, fuzzy msgid "_Save keyboard shortcuts on exit" -msgstr "Зберігати комбінації клавіш при виході" +msgstr "З_берігати комбінації клавіш при виході" #: app/dialogs/preferences-dialog.c:1406 -#, fuzzy msgid "Save Keyboard Shortcuts _Now" -msgstr "Зберегти комбінації клавіш" +msgstr "Зберегти комбінації клавіш _зараз" #: app/dialogs/preferences-dialog.c:1413 -#, fuzzy msgid "_Reset Saved Keyboard Shortcuts to Default Values" -msgstr "Відновлювати збережені комбінації клавіш на старті" +msgstr "_Відновити комбінації клавіш пристроїв вводу" #: app/dialogs/preferences-dialog.c:1428 app/dialogs/preferences-dialog.c:1431 #: app/dialogs/preferences-dialog.c:1467 @@ -6942,17 +6323,14 @@ msgstr "Система довідки" #: app/dialogs/preferences-dialog.c:1546 -#, fuzzy msgid "Show tool _tips" -msgstr "Показувати _підказки" +msgstr "Показувати п_ідказки" #: app/dialogs/preferences-dialog.c:1549 -#, fuzzy msgid "Show help _buttons" -msgstr "Показувати _виділення" +msgstr "Показувати _кнопку \"Довідка\"" #: app/dialogs/preferences-dialog.c:1552 -#, fuzzy msgid "Show tips on _startup" msgstr "Показувати поради при _запуску" @@ -6962,23 +6340,20 @@ msgstr "Перегляд довідки" #: app/dialogs/preferences-dialog.c:1560 -#, fuzzy msgid "H_elp browser to use:" msgstr "П_рограма перегляду довідки:" #: app/dialogs/preferences-dialog.c:1565 msgid "Web Browser" -msgstr "Веб-переглядач" +msgstr "Зовнішній переглядач" #: app/dialogs/preferences-dialog.c:1569 -#, fuzzy msgid "Select web browser" msgstr "Вибір зовнішнього переглядача" #: app/dialogs/preferences-dialog.c:1572 -#, fuzzy msgid "_Web browser to use:" -msgstr "Програма перегляду довідки:" +msgstr "_Програма перегляду довідки:" #. Snapping Distance #: app/dialogs/preferences-dialog.c:1597 @@ -6986,7 +6361,6 @@ msgstr "Прив'язка до напрямних сітки" #: app/dialogs/preferences-dialog.c:1602 -#, fuzzy msgid "_Snap distance:" msgstr "Відстань прив'_язки:" @@ -6996,7 +6370,6 @@ msgstr "Пошук суміжних ділянок" #: app/dialogs/preferences-dialog.c:1611 -#, fuzzy msgid "Default _threshold:" msgstr "_Типовий поріг:" @@ -7006,7 +6379,6 @@ msgstr "Масштабування" #: app/dialogs/preferences-dialog.c:1619 -#, fuzzy msgid "Default _interpolation:" msgstr "Типова _інтерполяція:" @@ -7016,17 +6388,14 @@ msgstr "Параметри малювання спільні для інструментів" #: app/dialogs/preferences-dialog.c:1636 -#, fuzzy msgid "Move Tool" -msgstr "Переміщення: " +msgstr "Інструмент переміщення" #: app/dialogs/preferences-dialog.c:1640 -#, fuzzy msgid "Change current layer or path" -msgstr "Лише поточний шар" +msgstr "Змінити лише поточний шар чи контур" #: app/dialogs/preferences-dialog.c:1653 app/dialogs/preferences-dialog.c:1656 -#, fuzzy msgid "Toolbox" msgstr "Меню панелі інструментів" @@ -7037,31 +6406,26 @@ msgstr "Зовнішній вигляд" #: app/dialogs/preferences-dialog.c:1667 -#, fuzzy msgid "Show _foreground & background color" -msgstr "Встановити колір тла" +msgstr "_Колір переднього плану та тла" #: app/dialogs/preferences-dialog.c:1671 -#, fuzzy msgid "Show active _brush, pattern & gradient" -msgstr "/Діалоги/Створити нову панель/_Пензлі, візерунки та градієнти" +msgstr "_Пензлі, візерунки та градієнти" #: app/dialogs/preferences-dialog.c:1675 -#, fuzzy msgid "Show active _image" -msgstr "/Слідувати за _активним зображенням" +msgstr "Показувати _активне зображення" #: app/dialogs/preferences-dialog.c:1685 app/dialogs/preferences-dialog.c:1688 msgid "Image Windows" msgstr "Вікна зображення" #: app/dialogs/preferences-dialog.c:1700 -#, fuzzy msgid "Use \"_Dot for dot\" by default" msgstr "Типово використовувати \"То_чка за точкою\"" #: app/dialogs/preferences-dialog.c:1706 -#, fuzzy msgid "Marching _ants speed:" msgstr "Швидкість _мурашиної доріжки:" @@ -7071,49 +6435,41 @@ msgstr "Правила масштабування та зміни розміру" #: app/dialogs/preferences-dialog.c:1714 -#, fuzzy msgid "Resize window on _zoom" msgstr "Змінювати розмір вікна при мас_штабуванні" #: app/dialogs/preferences-dialog.c:1717 -#, fuzzy msgid "Resize window on image _size change" msgstr "Змінювати розмір вікна при зміні _розміру зображення" #: app/dialogs/preferences-dialog.c:1723 -#, fuzzy msgid "Fit to window" msgstr "Підганяти до розміру вікна" #: app/dialogs/preferences-dialog.c:1725 -#, fuzzy msgid "Initial zoom _ratio:" -msgstr "Початковий масштаб:" +msgstr "Початкові пр_опорції масштабу:" #. Mouse Cursors #: app/dialogs/preferences-dialog.c:1729 msgid "Mouse Cursors" -msgstr "" +msgstr "Курсор" #: app/dialogs/preferences-dialog.c:1733 -#, fuzzy msgid "Show _brush outline" msgstr "Показувати контур _пензля" #: app/dialogs/preferences-dialog.c:1736 -#, fuzzy msgid "Show paint _tool cursor" -msgstr "Показувати _підказки" +msgstr "Показувати курсор _інструменту" #: app/dialogs/preferences-dialog.c:1742 -#, fuzzy msgid "Cursor _mode:" -msgstr "Вигляд курсору:" +msgstr "_Вигляд курсору:" #: app/dialogs/preferences-dialog.c:1745 -#, fuzzy msgid "Cursor re_ndering:" -msgstr "Вигляд курсору:" +msgstr "Вигляд _курсору:" #: app/dialogs/preferences-dialog.c:1757 msgid "Image Window Appearance" @@ -7148,9 +6504,8 @@ msgstr "Показувати масштабний коефіцієнт" #: app/dialogs/preferences-dialog.c:1808 -#, fuzzy msgid "Show image size" -msgstr "/Показати _меню зображення" +msgstr "Показувати розмір зображення" #: app/dialogs/preferences-dialog.c:1809 msgid "Show memory usage" @@ -7169,30 +6524,28 @@ msgstr "Відображення" #: app/dialogs/preferences-dialog.c:1922 -#, fuzzy msgid "Transparency _type:" msgstr "Тип _прозорості:" #: app/dialogs/preferences-dialog.c:1925 -#, fuzzy msgid "Check _size:" msgstr "_Розмір клітин:" #: app/dialogs/preferences-dialog.c:1928 msgid "Get Monitor Resolution" -msgstr "Встановлення роздільної здатності монітора" +msgstr "Роздільна здатність монітора" #: app/dialogs/preferences-dialog.c:1970 -#, fuzzy, c-format +#, c-format msgid "From _windowing system (currently %d x %d dpi)" -msgstr "Отримати роздільну здатність від віконної системи (зараз %d x %d т/д)" +msgstr "" +"Отримувати роздільну здатність від _віконної системи (зараз %d x %d т/д)" #: app/dialogs/preferences-dialog.c:1993 msgid "_Manually" -msgstr "В_ручну" +msgstr "Вр_учну" #: app/dialogs/preferences-dialog.c:2008 -#, fuzzy msgid "C_alibrate..." msgstr "_Калібрувати" @@ -7206,49 +6559,42 @@ msgstr "Додаткові пристрої вводу" #: app/dialogs/preferences-dialog.c:2042 -#, fuzzy msgid "Configure E_xtended Input Devices..." -msgstr "Настроїти додаткові пристрої вводу" +msgstr "Налаштувати _додаткові пристрої вводу..." #: app/dialogs/preferences-dialog.c:2049 -#, fuzzy msgid "_Save input device settings on exit" -msgstr "Зберігати настройки пристроїв вводу при виході" +msgstr "З_берігати параметри пристроїв вводу при виході" #: app/dialogs/preferences-dialog.c:2053 -#, fuzzy msgid "Save Input Device Settings _Now" -msgstr "Зберегти настройки пристроїв вводу" +msgstr "Зберегти параметри пристроїв вводу _зараз" #: app/dialogs/preferences-dialog.c:2060 -#, fuzzy msgid "_Reset Saved Input Device Settings to Default Values" -msgstr "Видалити настройки пристроїв вводу" +msgstr "_Відновити типові параметри пристроїв вводу" #: app/dialogs/preferences-dialog.c:2075 msgid "Additional Input Controllers" -msgstr "" +msgstr "Додаткові способи керування" #: app/dialogs/preferences-dialog.c:2078 msgid "Input Controllers" -msgstr "" +msgstr "Способи керування" #: app/dialogs/preferences-dialog.c:2119 app/dialogs/preferences-dialog.c:2122 msgid "Window Management" -msgstr "Вигляд вікон" +msgstr "Керування зовнішнім виглядом вікон" #: app/dialogs/preferences-dialog.c:2128 -#, fuzzy msgid "Window Manager Hints" -msgstr "Вигляд вікон" +msgstr "Керування зовнішнім виглядом виглядом вікон" #: app/dialogs/preferences-dialog.c:2134 -#, fuzzy msgid "Hint for the _toolbox:" msgstr "Стиль вікна панелі _інструментів:" #: app/dialogs/preferences-dialog.c:2138 -#, fuzzy msgid "Hint for the _docks:" msgstr "Стиль вікон інших _панелей: " @@ -7257,7 +6603,6 @@ msgstr "Фокус вводу" #: app/dialogs/preferences-dialog.c:2145 -#, fuzzy msgid "Activate the _focused image" msgstr "Робити активним зображення під _фокусом" @@ -7267,19 +6612,16 @@ msgstr "Позиція вікна" #: app/dialogs/preferences-dialog.c:2152 -#, fuzzy msgid "_Save window positions on exit" msgstr "З_берігати позиції вікон при виході" #: app/dialogs/preferences-dialog.c:2156 -#, fuzzy msgid "Save Window Positions _Now" -msgstr "Зберегти позицію вікон" +msgstr "Зберегти позицію вікон _зараз" #: app/dialogs/preferences-dialog.c:2163 -#, fuzzy msgid "_Reset Saved Window Positions to Default Values" -msgstr "_Відновлювати позиції вікон при виході" +msgstr "_Відновити позиції вікон на типові" #: app/dialogs/preferences-dialog.c:2178 app/dialogs/preferences-dialog.c:2181 #: app/dialogs/preferences-dialog.c:2329 @@ -7291,78 +6633,65 @@ msgstr "Використання ресурсів" #: app/dialogs/preferences-dialog.c:2199 -#, fuzzy msgid "Minimal number of _undo levels:" -msgstr "Мінімальна кількість рівнів скасування:" +msgstr "Мінімальна кількість рівнів по_вернення:" #: app/dialogs/preferences-dialog.c:2202 -#, fuzzy msgid "Maximum undo _memory:" -msgstr "Максимальна пам'ять для скасувань:" +msgstr "Максимальна _пам'ять для скасувань:" #: app/dialogs/preferences-dialog.c:2205 -#, fuzzy msgid "Tile cache _size:" -msgstr "Розмір кешу:" +msgstr "Розмір _кешу:" #: app/dialogs/preferences-dialog.c:2208 -#, fuzzy msgid "Maximum _new image size:" -msgstr "Максимальний розмір нового зображення:" +msgstr "Максимальний розмір _нового зображення:" #: app/dialogs/preferences-dialog.c:2213 -#, fuzzy msgid "Number of _processors to use:" -msgstr "Кількість процесорів, що використовуються:" +msgstr "Кількість п_роцесорів, що використовуються:" #. Image Thumbnails #: app/dialogs/preferences-dialog.c:2218 -#, fuzzy msgid "Image Thumbnails" -msgstr "Маска зображення" +msgstr "Мініатюри зображень" #: app/dialogs/preferences-dialog.c:2223 -#, fuzzy msgid "Size of _thumbnails:" -msgstr "Розмір файлів мініатюр:" +msgstr "Розмір файлів _мініатюр:" #: app/dialogs/preferences-dialog.c:2227 msgid "Maximum _filesize for thumbnailing:" -msgstr "" +msgstr "Максимальний розмір _файлу перегляду:" #. File Saving #: app/dialogs/preferences-dialog.c:2231 -#, fuzzy msgid "Saving Images" -msgstr "Збереження зображення" +msgstr "Збереження зображень" #: app/dialogs/preferences-dialog.c:2234 -#, fuzzy msgid "Confirm closing of unsa_ved images" -msgstr "Запитувані при закриванні не збережених зображень" +msgstr "Запитувані при закриванні н_езбережених зображень" #: app/dialogs/preferences-dialog.c:2245 app/dialogs/preferences-dialog.c:2248 msgid "Folders" msgstr "Теки" #: app/dialogs/preferences-dialog.c:2263 -#, fuzzy msgid "Temp folder:" msgstr "Тека тимчасових файлів:" #: app/dialogs/preferences-dialog.c:2263 -#, fuzzy msgid "Select Temp Folder" msgstr "Виберіть теку тем" #: app/dialogs/preferences-dialog.c:2264 #: app/dialogs/user-install-dialog.c:1403 -#, fuzzy msgid "Swap folder:" msgstr "Каталог підкачки:" #: app/dialogs/preferences-dialog.c:2264 -#, fuzzy msgid "Select Swap Folder" msgstr "Виберіть теку підкачки" @@ -7455,35 +6784,30 @@ msgstr "Виберіть теку тем" #: app/dialogs/print-size-dialog.c:128 -#, fuzzy msgid "Print Size" msgstr "Розмір при друкуванні:" #. the image size labels #: app/dialogs/print-size-dialog.c:155 app/widgets/gimpsizebox.c:223 #: app/widgets/gimptemplateeditor.c:236 -#, fuzzy msgid "_Width:" -msgstr "Ширина:" +msgstr "_Ширина:" #: app/dialogs/print-size-dialog.c:162 app/widgets/gimpsizebox.c:227 #: app/widgets/gimptemplateeditor.c:243 -#, fuzzy msgid "H_eight:" -msgstr "Висота:" +msgstr "_Висота:" #. the resolution labels #: app/dialogs/print-size-dialog.c:210 app/widgets/gimpsizebox.c:276 #: app/widgets/gimptemplateeditor.c:363 -#, fuzzy msgid "_X resolution:" -msgstr "Роздільна здатність:" +msgstr "Роздільна здатність по _X:" #: app/dialogs/print-size-dialog.c:217 app/widgets/gimpsizebox.c:279 #: app/widgets/gimptemplateeditor.c:370 -#, fuzzy msgid "_Y resolution:" -msgstr "Роздільна здатність:" +msgstr "Роздільна здатність по _Y:" #: app/dialogs/print-size-dialog.c:228 app/widgets/gimpsizebox.c:272 #: app/widgets/gimptemplateeditor.c:383 @@ -7492,27 +6816,23 @@ msgstr "точок/%a" #: app/dialogs/quit-dialog.c:84 -#, fuzzy msgid "Quit The GIMP" msgstr "Вийти з GIMP?" #: app/dialogs/quit-dialog.c:126 -#, fuzzy msgid "If you quit GIMP now, these changes will be lost." msgstr "Незбережені зміни будуть втрачені." #: app/dialogs/quit-dialog.c:164 -#, fuzzy msgid "There is one image with unsaved changes:" -msgstr "Змінювати розмір вікна при зміні _розміру зображення" +msgstr "Є незбережені зображення:" #: app/dialogs/quit-dialog.c:167 #, c-format msgid "There are %d images with unsaved changes:" -msgstr "" +msgstr "Є незбережені зображення (%d):" #: app/dialogs/quit-dialog.c:183 -#, fuzzy msgid "_Discard Changes" msgstr "_Відкинути зміни" @@ -7521,18 +6841,16 @@ msgstr "Розмір полотна" #: app/dialogs/resize-dialog.c:126 app/dialogs/scale-dialog.c:107 -#, fuzzy msgid "Layer Size" -msgstr "Виділення шару" +msgstr "Розмір шару" #: app/dialogs/resolution-calibrate-dialog.c:67 msgid "Calibrate Monitor Resolution" msgstr "Калібрування роздільної здатності монітора" #: app/dialogs/resolution-calibrate-dialog.c:120 -#, fuzzy msgid "Measure the rulers and enter their lengths:" -msgstr "Вимірте лінійки та введіть значення довжини нижче." +msgstr "Вимірте лінійки та введіть значення їх довжини:" #: app/dialogs/resolution-calibrate-dialog.c:145 msgid "_Horizontal:" @@ -7548,17 +6866,14 @@ msgstr "Розмір зображення" #: app/dialogs/scale-dialog.c:166 -#, fuzzy msgid "Quality" -msgstr "/Файл/Ви_йти" +msgstr "Якість" #: app/dialogs/scale-dialog.c:178 -#, fuzzy msgid "I_nterpolation:" -msgstr "Інтерполяція:" +msgstr "_Інтерполяція:" #: 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." @@ -7593,17 +6908,15 @@ #: app/dialogs/tips-dialog.c:195 msgid "Show tip next time GIMP starts" -msgstr "Показувати підказку при наступному запуску GIMP" +msgstr "Показувати наступного разу" #: app/dialogs/tips-dialog.c:219 -#, fuzzy msgid "_Previous tip" -msgstr "_Попередня порада" +msgstr "_Попередня" #: app/dialogs/tips-dialog.c:228 -#, fuzzy msgid "_Next tip" -msgstr "_Наступна порада" +msgstr "_Наступна" # 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 @@ -7633,7 +6946,7 @@ "GIMP uses an additional gtkrc file so you can configure it to look " "differently than other GTK apps." msgstr "" -"GIMP використовує додатковий файл gtkrc, то ж ви можете настроїти його " +"GIMP використовує додатковий файл gtkrc, то ж ви можете налаштувати його " "вигляд не впливаючи на інші GTK-програми." #: app/dialogs/user-install-dialog.c:149 @@ -7658,7 +6971,7 @@ "Комбінації клавіш можуть бути динамічно перевизначені в GIMP. В menurc " "міститься копія вашої конфігурації, тому її можна зберегти для наступних " "сеансів. При бажанні, можете змінювати цей файл, але значно простіше " -"перевизначати комбінації клавіш з GIMP. Видалення цьогофайлу призводить до " +"перевизначати комбінації клавіш з GIMP. Видалення цього файлу призводить до " "відновлення початкових комбінацій клавіш." #: app/dialogs/user-install-dialog.c:169 @@ -7668,7 +6981,7 @@ "the saved position." msgstr "" "sessionrc використовується для збереження положення діалогових вікон " -"відкритих під час останнього виходу з GIMP. Можна настроїти GIMP так, щоб " +"відкритих під час останнього виходу з GIMP. Можна налаштувати GIMP так, щоб " "вікна відкривались у їх попередніх позиціях." #: app/dialogs/user-install-dialog.c:176 @@ -7844,13 +7157,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 "" "Ласкаво просимо до\n" -"встановлення GIMP" +"встановлення GIMP %d.%d" #: app/dialogs/user-install-dialog.c:771 msgid "Click \"Continue\" to enter the GIMP user installation." @@ -7902,25 +7215,23 @@ #: app/dialogs/user-install-dialog.c:810 msgid "Migrate User Settings" -msgstr "" +msgstr "Перемістити користувацькі параметри" #: app/dialogs/user-install-dialog.c:811 -#, fuzzy msgid "Click \"Continue\" to proceed with the user installation." -msgstr "Клацніть \"Продовжити\" щоб перейти до встановлення у користувача." +msgstr "Клацніть \"Продовжити\", щоб перейти до встановлення у користувача." #: app/dialogs/user-install-dialog.c:816 msgid "It seems you have used GIMP 2.0 before." -msgstr "" +msgstr "Схоже, ви раніше використовували GIMP 2.0" #: app/dialogs/user-install-dialog.c:820 msgid "_Migrate GIMP 2.0 user settings" -msgstr "" +msgstr "_Мігрувати уподобання користувача з GIMP 2.0" #: app/dialogs/user-install-dialog.c:823 -#, fuzzy msgid "Do a _fresh user installation" -msgstr "Встановлення GIMP для користувача" +msgstr "Виконати _нове встановлення" #: app/dialogs/user-install-dialog.c:851 msgid "Personal GIMP Folder" @@ -7956,7 +7267,7 @@ #: app/dialogs/user-install-dialog.c:999 msgid "GIMP Performance Tuning" -msgstr "Настройка швидкодії GIMP" +msgstr "Параметри швидкодії GIMP" #: app/dialogs/user-install-dialog.c:1000 msgid "Click \"Continue\" to accept the settings above." @@ -7996,7 +7307,6 @@ "процесами." #: app/dialogs/user-install-dialog.c:1375 -#, fuzzy msgid "Tile cache size:" msgstr "Розмір кешу:" @@ -8014,58 +7324,50 @@ "файлів (\"/tmp\" чи \"/var/tmp\")." #: app/dialogs/user-install-dialog.c:1398 -#, fuzzy msgid "Select swap dir" -msgstr "Виберіть теку підкачки" +msgstr "Вибір теки підкачки" #: app/dialogs/vectors-export-dialog.c:53 msgid "Export Path to SVG" msgstr "Експорт контуру в SVG" #: app/dialogs/vectors-export-dialog.c:78 -#, fuzzy msgid "Export the active path" -msgstr "Перемісти поточний контур" +msgstr "Експортувати поточний контур" #: app/dialogs/vectors-export-dialog.c:79 -#, fuzzy msgid "Export all paths from this image" -msgstr "Створити нове вікно для цього зображення" +msgstr "Експортувати усі контури цього зображення" #: app/dialogs/vectors-import-dialog.c:57 msgid "Import Paths from SVG" msgstr "Імпорт контуру з SVG" #: app/dialogs/vectors-import-dialog.c:83 -#, fuzzy msgid "All Files (*.*)" -msgstr "Всі файли" +msgstr "Всі файли (*.*)" #: app/dialogs/vectors-import-dialog.c:88 msgid "Scalable SVG image (*.svg)" -msgstr "" +msgstr "Векторний формат SVG (*.svg)" #: app/dialogs/vectors-import-dialog.c:99 -#, fuzzy msgid "_Merge imported paths" -msgstr "Імпортування контуру" +msgstr "_Об'єднати імпортовані контури" #: app/dialogs/vectors-import-dialog.c:109 msgid "_Scale imported paths to fit image" -msgstr "" +msgstr "_Масштабувати до розміру зображення" #: app/dialogs/vectors-options-dialog.c:113 -#, fuzzy msgid "Path Name:" msgstr "Назва контуру:" #: app/display/display-enums.c:24 -#, fuzzy msgid "Tool icon" msgstr "Значок інструменту" #: app/display/display-enums.c:25 -#, fuzzy msgid "Tool icon with crosshair" msgstr "Значок інструменту з перехрестям" @@ -8074,74 +7376,67 @@ msgstr "Лише перехрестя" #: app/display/display-enums.c:55 -#, fuzzy msgid "From theme" msgstr "З теми" #: app/display/display-enums.c:56 -#, fuzzy msgid "Light check color" msgstr "Світлий" #: app/display/display-enums.c:57 -#, fuzzy msgid "Dark check color" msgstr "Темний" #: app/display/display-enums.c:58 -#, fuzzy msgid "Custom color" msgstr "Вибраний колір" #: app/display/gimpdisplayshell.c:943 msgid "Zoom image when window size changes" -msgstr "" +msgstr "При зміні розмірів вікна змінювати розміри зображення" #: app/display/gimpdisplayshell.c:963 -#, fuzzy msgid "Toggle Quick Mask" msgstr "Перемикнути швидку маску" #: app/display/gimpdisplayshell-close.c:122 #: app/display/gimpdisplayshell-close.c:185 -#, fuzzy, c-format +#, c-format msgid "Close %s" msgstr "Закрити %s?" #: app/display/gimpdisplayshell-close.c:131 msgid "Do_n't save" -msgstr "" +msgstr "_Не зберігати" #: app/display/gimpdisplayshell-close.c:192 #, c-format msgid "Save the changes to image '%s' before closing?" -msgstr "" +msgstr "Зберегти зміни у '%s' перед закриванням?" #: 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 "Незбережені зміни будуть втрачені." +msgstr "Якщо ви не збережете зображення, зміни у будуть %s втрачені." #. one second, the time period #: app/display/gimpdisplayshell-close.c:266 -#, fuzzy msgid "second" -msgstr "Значок" +msgstr "секунда" #: app/display/gimpdisplayshell-close.c:269 #, c-format msgid "%d seconds" -msgstr "" +msgstr "%d секунд" #: app/display/gimpdisplayshell-close.c:275 -#, fuzzy msgid "minute" -msgstr "Лінія" +msgstr "хвилина" #: app/display/gimpdisplayshell-close.c:277 #, c-format msgid "%d minutes" -msgstr "" +msgstr "%d хвилин" #: app/display/gimpdisplayshell-dnd.c:98 msgid "Drop New Layer" @@ -8157,7 +7452,7 @@ #: app/display/gimpdisplayshell-filter-dialog.c:76 msgid "Configure Color Display Filters" -msgstr "Настройка кольорових екранних фільтрів" +msgstr "Параметри кольорових екранних фільтрів" #: app/display/gimpdisplayshell-layer-select.c:122 msgid "Layer Select" @@ -8200,13 +7495,12 @@ msgstr "індексоване" #: app/display/gimpdisplayshell-title.c:292 -#, fuzzy msgid "(modified)" -msgstr "Текст змінено" +msgstr "(змінено)" #: app/display/gimpdisplayshell-title.c:298 msgid "(clean)" -msgstr "" +msgstr "(не змінено)" #: app/display/gimpdisplayshell-title.c:325 msgid "1 layer" @@ -8218,15 +7512,14 @@ msgstr "%d шарів" #: app/display/gimpstatusbar.c:142 -#, fuzzy msgid "Shadow type" -msgstr "Тіні" +msgstr "Тип тіні" #: app/display/gimpstatusbar.c:143 msgid "Style of bevel around the statusbar text" -msgstr "" +msgstr "Стиль елементів навколо тексту рядка стану" -#: app/display/gimpstatusbar.c:218 +#: app/display/gimpstatusbar.c:222 msgid "Cancel" msgstr "Скасувати" @@ -8247,9 +7540,8 @@ msgstr "Доповненню не вдається відкрити зображення" #: app/file/file-open.c:417 -#, fuzzy msgid "Image doesn't contain any visible layers" -msgstr "Використовувати для виділення усі видимі шари" +msgstr "Зображення не містить видимих шарів" #: app/file/file-save.c:220 msgid "Plug-In could not save image" @@ -8260,9 +7552,9 @@ msgstr "Неправильна послідовність символів у URL" #: 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 "Не вдається відкрити '%s': %s" +msgstr "Не вдається видалити \"%s\": %s" #: app/gui/splash.c:118 msgid "GIMP Startup" @@ -8315,17 +7607,14 @@ msgstr "Палець" #: app/paint/paint-enums.c:23 -#, fuzzy msgid "Image source" -msgstr "Зображення" +msgstr "Початкове зображення" #: app/paint/paint-enums.c:24 -#, fuzzy msgid "Pattern source" -msgstr "Візерунок" +msgstr "Початковий шаблон" #: app/paint/paint-enums.c:52 -#, fuzzy msgid "Non-aligned" msgstr "Без вирівнювання" @@ -8393,7 +7682,6 @@ msgstr "Поріг" #: app/pdb/drawable_transform_cmds.c:249 app/pdb/drawable_transform_cmds.c:404 -#, fuzzy msgid "Flip..." msgstr "Віддзеркалення..." @@ -8412,13 +7700,12 @@ #: 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 "Перетворення..." +msgstr "2D перетворення..." #: app/pdb/edit_cmds.c:673 app/tools/gimpblendtool.c:249 msgid "Blending..." -msgstr "Зливання..." +msgstr "Заливання..." #: app/pdb/image_cmds.c:3756 app/text/gimptext-parasite.c:168 msgid "(invalid UTF-8 string)" @@ -8436,9 +7723,8 @@ msgstr "Внутрішні процедури" #: app/pdb/internal_procs.c:86 -#, fuzzy msgid "Brush" -msgstr "Пензель:" +msgstr "Пензель" #: app/pdb/internal_procs.c:89 msgid "Brush UI" @@ -8463,9 +7749,8 @@ msgstr "Процедури малюнку" #: app/pdb/internal_procs.c:113 -#, fuzzy msgid "Transformation procedures" -msgstr "Процедури інструментів перетворення" +msgstr "Процедури перетворення" #: app/pdb/internal_procs.c:116 msgid "Edit procedures" @@ -8488,9 +7773,8 @@ msgstr "Процедури Gimprc" #: app/pdb/internal_procs.c:134 -#, fuzzy msgid "Gradient" -msgstr "Градієнт:" +msgstr "Градієнт" #: app/pdb/internal_procs.c:137 msgid "Gradient UI" @@ -8576,7 +7860,7 @@ "Argument #%d type mismatch (expected %s, got %s)" msgstr "" "Помилка виклику PDB для процедури '%s':\n" -"Неправильний тип аргументу #%d (очікувався %s, got %s)" +"Неправильний тип аргументу №%d (очікувався %s, отримано %s)" #: app/pdb/procedural_db_cmds.c:80 msgid "Internal GIMP procedure" @@ -8599,9 +7883,9 @@ msgstr "Вильне виділення" #: 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 "Запит доповнення: '%s'\n" +msgstr "Доповнення за шаблоном: '%s'\n" #: app/plug-in/plug-in.c:730 #, c-format @@ -8624,14 +7908,14 @@ msgstr "Пропускається \"%s\": неправильна версія протоколу GIMP." #: app/plug-in/plug-in-rc.c:432 -#, fuzzy, c-format +#, c-format msgid "invalid value '%s' for icon type" -msgstr "неправильне значення '%s' для ознаки %s" +msgstr "неправильне значення '%s' для значка" #: app/plug-in/plug-in-rc.c:447 -#, fuzzy, c-format +#, c-format msgid "invalid value '%ld' for icon type" -msgstr "неправильне значення '%ld' для ознаки %s" +msgstr "неправильне значення '%ld' для значка" #: app/plug-in/plug-ins.c:139 msgid "Resource configuration" @@ -8669,14 +7953,12 @@ msgstr "Запуск розширення: \"%s\"\n" #: app/text/text-enums.c:81 -#, fuzzy msgid "Left justified" -msgstr "Вирівняно вліво" +msgstr "Вліво" #: app/text/text-enums.c:82 -#, fuzzy msgid "Right justified" -msgstr "Вирівняно вправо" +msgstr "Вправо" #: app/text/text-enums.c:83 msgid "Centered" @@ -8696,7 +7978,7 @@ "Жебракують філософи при ґанку церкви\n" "в Гадячі; ще й шатро їхнє знаємо." -#: app/text/gimptext-compat.c:106 app/tools/gimptexttool.c:697 +#: app/text/gimptext-compat.c:108 app/tools/gimptexttool.c:699 msgid "Add Text Layer" msgstr "Додавання текстового шару" @@ -8760,17 +8042,14 @@ "ви не збираєтесь редагувати текстовий шар." #: app/tools/tools-enums.c:25 -#, fuzzy msgid "Pick only" msgstr "Показати інформацію про колір" #: app/tools/tools-enums.c:26 -#, fuzzy msgid "Set foreground color" msgstr "Встановити колір переднього плану" #: app/tools/tools-enums.c:27 -#, fuzzy msgid "Set background color" msgstr "Встановити колір тла" @@ -8783,32 +8062,26 @@ msgstr "Зміна розміру" #: app/tools/tools-enums.c:83 -#, fuzzy msgid "Free select" msgstr "Вильне виділення" #: app/tools/tools-enums.c:84 -#, fuzzy msgid "Fixed size" msgstr "Фіксований розмір" #: app/tools/tools-enums.c:85 -#, fuzzy msgid "Fixed aspect ratio" msgstr "Фіксоване відношення сторін" #: app/tools/tools-enums.c:113 -#, fuzzy msgid "Transform layer" msgstr "Перетворення шару" #: app/tools/tools-enums.c:114 -#, fuzzy msgid "Transform selection" msgstr "Перетворення виділеного" #: app/tools/tools-enums.c:115 -#, fuzzy msgid "Transform path" msgstr "Перетворення контуру" @@ -8822,35 +8095,31 @@ #: app/tools/tools-enums.c:174 msgid "Outline" -msgstr "" +msgstr "Контур" #: app/tools/tools-enums.c:177 -#, fuzzy msgid "Image + Grid" -msgstr "Параметри сітки" +msgstr "Зображення + сітка" #: app/tools/tools-enums.c:204 -#, fuzzy msgid "Number of grid lines" -msgstr "Кількість ліній сітки" +msgstr "Число ліній сітки" #: app/tools/tools-enums.c:205 -#, fuzzy msgid "Grid line spacing" msgstr "Відстань між лініями сітки" #: app/tools/gimp-tools.c:283 msgid "This tool has no options." -msgstr "Цей інструмент не має параметрів." +msgstr "У цього інструменті немає параметрів." #: app/tools/gimpairbrushtool.c:56 msgid "Airbrush with variable pressure" msgstr "Аерограф із змінним натиском" #: app/tools/gimpairbrushtool.c:57 -#, fuzzy msgid "_Airbrush" -msgstr "Аерограф" +msgstr "_Аерограф" #: app/tools/gimpairbrushtool.c:123 app/tools/gimpconvolvetool.c:211 #: app/tools/gimpsmudgetool.c:123 @@ -8874,7 +8143,6 @@ msgstr "Повтор:" #: app/tools/gimpblendoptions.c:279 -#, fuzzy msgid "Adaptive supersampling" msgstr "Адаптивна інтерполяція" @@ -8892,9 +8160,8 @@ msgstr "Заповнення кольоровим градієнтом" #: app/tools/gimpblendtool.c:103 -#, fuzzy msgid "Blen_d" -msgstr "Градієнтне заповнення" +msgstr "Г_радієнтне заповнення" #: app/tools/gimpblendtool.c:191 msgid "Blend: Invalid for indexed images." @@ -8910,9 +8177,8 @@ msgstr "Корегування яскравості та контрастності" #: app/tools/gimpbrightnesscontrasttool.c:87 -#, fuzzy msgid "B_rightness-Contrast..." -msgstr "Яскравість-контраст" +msgstr "_Яскравість-контраст" #: app/tools/gimpbrightnesscontrasttool.c:138 msgid "Adjust Brightness and Contrast" @@ -8955,12 +8221,10 @@ msgstr "Область застосування %s" #: app/tools/gimpbucketfilloptions.c:254 -#, fuzzy msgid "Fill whole selection" msgstr "Заповнити все виділене" #: app/tools/gimpbucketfilloptions.c:255 -#, fuzzy msgid "Fill similar colors" msgstr "Заповнити схожі кольори" @@ -8969,14 +8233,12 @@ msgstr "Пошук схожих кольорів" #: app/tools/gimpbucketfilloptions.c:277 -#, fuzzy msgid "Fill transparent areas" msgstr "Заповнити прозорі ділянки" #: 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 "Об'єднувати ділянки за зразком" @@ -8985,37 +8247,34 @@ msgstr "Заповнення кольором чи візерунком" #: app/tools/gimpbucketfilltool.c:93 -#, fuzzy msgid "_Bucket Fill" -msgstr "Заповнення" +msgstr "_Заповнення" #: app/tools/gimpbycolorselecttool.c:82 msgid "Select By Color" -msgstr "Виділення за кольором" +msgstr "Вибір за кольором" #: app/tools/gimpbycolorselecttool.c:83 msgid "Select regions by color" msgstr "Виділення ділянки за кольором" #: app/tools/gimpbycolorselecttool.c:84 -#, fuzzy msgid "_By Color Select" -msgstr "Виділення шару" +msgstr "Виділення за _кольором" #: app/tools/gimpclonetool.c:90 msgid "Paint using Patterns or Image Regions" msgstr "Малювання з використанням візерунку або ділянки зображення" #: app/tools/gimpclonetool.c:91 -#, fuzzy msgid "_Clone" -msgstr "Штамп" +msgstr "_Штамп" -#: app/tools/gimpclonetool.c:266 +#: app/tools/gimpclonetool.c:288 msgid "Source" msgstr "Джерело" -#: app/tools/gimpclonetool.c:275 +#: app/tools/gimpclonetool.c:297 msgid "Alignment" msgstr "Вирівнювання" @@ -9024,9 +8283,8 @@ msgstr "Корегування балансу кольорів" #: app/tools/gimpcolorbalancetool.c:98 -#, fuzzy msgid "Color _Balance..." -msgstr "Баланс кольорів" +msgstr "_Баланс кольорів..." #: app/tools/gimpcolorbalancetool.c:149 msgid "Adjust Color Balance" @@ -9057,12 +8315,10 @@ msgstr "Жовтий" #: app/tools/gimpcolorbalancetool.c:325 -#, fuzzy msgid "R_eset range" -msgstr "_Відновити зображення" +msgstr "_Відновити значення" #: app/tools/gimpcolorbalancetool.c:334 -#, fuzzy msgid "Preserve _luminosity" msgstr "Зберігати _яскравість" @@ -9071,9 +8327,8 @@ msgstr "Тонування зображення" #: app/tools/gimpcolorizetool.c:98 -#, fuzzy msgid "Colori_ze..." -msgstr "Тонування" +msgstr "_Тонування" #: app/tools/gimpcolorizetool.c:152 msgid "Colorize the Image" @@ -9089,7 +8344,7 @@ #: app/tools/gimpcolorizetool.c:253 app/tools/gimphuesaturationtool.c:361 msgid "_Hue:" -msgstr "_Відтінок:" +msgstr "Від_тінок:" #: app/tools/gimpcolorizetool.c:267 app/tools/gimphuesaturationtool.c:389 msgid "_Saturation:" @@ -9100,7 +8355,6 @@ msgstr "_Освітленість:" #: app/tools/gimpcoloroptions.c:184 -#, fuzzy msgid "Sample average" msgstr "Вибіркове середнє" @@ -9117,9 +8371,9 @@ #. the add to palette toggle #: app/tools/gimpcolorpickeroptions.c:193 -#, fuzzy, c-format +#, c-format msgid "Add to palette %s" -msgstr "/_Правка палітри..." +msgstr "Додати до палітри %s" #: app/tools/gimpcolorpickertool.c:99 msgid "Color Picker" @@ -9130,9 +8384,8 @@ msgstr "Отримання кольору із зображення" #: app/tools/gimpcolorpickertool.c:101 -#, fuzzy msgid "C_olor Picker" -msgstr "Піпетка" +msgstr "_Піпетка" #. tool->gdisp->shell #: app/tools/gimpcolorpickertool.c:343 @@ -9144,9 +8397,8 @@ msgstr "Різкість та розмитість" #: app/tools/gimpconvolvetool.c:72 -#, fuzzy msgid "Con_volve" -msgstr "Розмивання" +msgstr "_Розмивання" #. the type radio box #: app/tools/gimpconvolvetool.c:193 @@ -9162,19 +8414,18 @@ msgstr "Перемикач інструмента %s" #: app/tools/gimpcropoptions.c:200 -#, fuzzy msgid "Current layer only" msgstr "Лише поточний шар" #. enlarge toggle #: app/tools/gimpcropoptions.c:205 -#, fuzzy, c-format +#, c-format msgid "Allow enlarging %s" msgstr "Дозволити збільшення %s" #. layer toggle #: app/tools/gimpcropoptions.c:215 -#, fuzzy, c-format +#, c-format msgid "Keep aspect ratio %s" msgstr "Фіксоване відношення сторін %s" @@ -9187,9 +8438,8 @@ msgstr "Кадрування чи зміна розміру зображення" #: app/tools/gimpcroptool.c:166 -#, fuzzy msgid "_Crop & Resize" -msgstr "Кадрування і зміна розміру" +msgstr "_Кадрування і зміна розміру" #. initialize the statusbar display #: app/tools/gimpcroptool.c:499 app/tools/gimpcroptool.c:983 @@ -9205,22 +8455,18 @@ msgstr "Початкове X:" #: app/tools/gimpcroptool.c:1033 -#, fuzzy msgid "Origin Y:" -msgstr "Початкове X:" +msgstr "Початкове Y:" #: app/tools/gimpcroptool.c:1071 app/widgets/gimpbrusheditor.c:194 -#, fuzzy msgid "Aspect ratio:" msgstr "Пропорції:" #: app/tools/gimpcroptool.c:1082 -#, fuzzy msgid "From selection" msgstr "З виділення" #: app/tools/gimpcroptool.c:1090 -#, fuzzy msgid "Auto shrink" msgstr "Автозменшення" @@ -9229,9 +8475,8 @@ msgstr "Корегування кривих кольору" #: app/tools/gimpcurvestool.c:143 -#, fuzzy msgid "_Curves..." -msgstr "Криві" +msgstr "_Криві..." #: app/tools/gimpcurvestool.c:202 msgid "Adjust Color Curves" @@ -9242,7 +8487,6 @@ msgstr "Завантаження кривих" #: app/tools/gimpcurvestool.c:205 -#, fuzzy msgid "Load curves settings from file" msgstr "Завантажити значення кривих з файлу" @@ -9256,7 +8500,7 @@ #: app/tools/gimpcurvestool.c:283 msgid "Curves for indexed layers cannot be adjusted." -msgstr "Криві для індексованих зображень не можна настроїти." +msgstr "Криві для індексованих зображень не можна налаштувати." #: app/tools/gimpcurvestool.c:479 app/tools/gimplevelstool.c:415 #: app/widgets/gimphistogrameditor.c:161 @@ -9264,7 +8508,6 @@ msgstr "Канал:" #: app/tools/gimpcurvestool.c:494 app/tools/gimplevelstool.c:430 -#, fuzzy msgid "R_eset channel" msgstr "В_ідновити канал" @@ -9283,9 +8526,8 @@ msgstr "Освітлення чи затемнення обведення" #: app/tools/gimpdodgeburntool.c:72 -#, fuzzy msgid "Dod_geBurn" -msgstr "Освітлення/затемнення" +msgstr "О_світлення/затемнення" #. the type (dodge or burn) #: app/tools/gimpdodgeburntool.c:192 @@ -9303,7 +8545,6 @@ #: app/tools/gimpeditselectiontool.c:262 #: app/tools/gimpeditselectiontool.c:1203 -#, fuzzy msgid "Move Floating Selection" msgstr "Видалення плаваючого виділення" @@ -9316,22 +8557,20 @@ msgstr "Виділення еліптичних ділянок" #: app/tools/gimpellipseselecttool.c:73 -#, fuzzy msgid "_Ellipse Select" -msgstr "Виділення еліпсом" +msgstr "Виділення _еліпсом" #: app/tools/gimperasertool.c:71 msgid "Erase to background or transparency" msgstr "Стирання до тла чи прозорості" #: app/tools/gimperasertool.c:72 -#, fuzzy msgid "_Eraser" -msgstr "Гумка" +msgstr "_Гумка" #. the anti_erase toggle #: app/tools/gimperasertool.c:185 -#, fuzzy, c-format +#, c-format msgid "Anti erase %s" msgstr "Антигумка %s" @@ -9351,27 +8590,24 @@ msgstr "Віддзеркалення шарів або виділених ділянок" #: app/tools/gimpfliptool.c:84 -#, fuzzy msgid "_Flip" -msgstr "Дзеркало" +msgstr "_Дзеркало" #: app/tools/gimpfreeselecttool.c:97 msgid "Select hand-drawn regions" msgstr "Виділення довільних ділянок" #: app/tools/gimpfreeselecttool.c:98 -#, fuzzy msgid "_Free Select" -msgstr "Вильне виділення" +msgstr "_Вільне виділення" #: app/tools/gimpfuzzyselecttool.c:98 msgid "Select contiguous regions" msgstr "Виділення суміжних ділянок" #: app/tools/gimpfuzzyselecttool.c:99 -#, fuzzy msgid "Fu_zzy Select" -msgstr "Виділення зв'язаної ділянки" +msgstr "Виді_лення зв'язаної ділянки" #: app/tools/gimphistogramoptions.c:151 msgid "Histogram Scale" @@ -9382,12 +8618,10 @@ msgstr "Корегування відтінку та насиченості" #: app/tools/gimphuesaturationtool.c:112 -#, fuzzy msgid "Hue-_Saturation..." -msgstr "Відтінок і насиченість" +msgstr "Відтінок та _насиченість" #: app/tools/gimphuesaturationtool.c:166 -#, fuzzy msgid "Adjust hue / lightness / saturation" msgstr "Корегування відтінку, освітленості та насиченості" @@ -9396,9 +8630,8 @@ msgstr "Відтінок-насиченість діє діє лише на шари у форматі RGB." #: app/tools/gimphuesaturationtool.c:263 -#, fuzzy msgid "M_aster" -msgstr "_Помічник" +msgstr "По_мічник" #: app/tools/gimphuesaturationtool.c:264 msgid "_R" @@ -9437,7 +8670,6 @@ msgstr "Зміна вибраного кольору" #: app/tools/gimphuesaturationtool.c:405 -#, fuzzy msgid "R_eset color" msgstr "_Відновити колір" @@ -9446,14 +8678,12 @@ msgstr "_Попередній перегляд" #: app/tools/gimpimagemaptool.c:292 -#, fuzzy msgid "Quick Load" -msgstr "Швидка маска" +msgstr "Швидке завантажити" #: app/tools/gimpimagemaptool.c:322 -#, fuzzy msgid "Quick Save" -msgstr "Швидка маска" +msgstr "Швидке збереження" #. adjust sliders #: app/tools/gimpinkoptions-gui.c:59 @@ -9497,9 +8727,8 @@ msgstr "Малювання пером" #: app/tools/gimpinktool.c:64 -#, fuzzy msgid "In_k" -msgstr "Перо" +msgstr "_Перо" #: app/tools/gimpiscissorstool.c:277 msgid "Scissors" @@ -9510,18 +8739,16 @@ msgstr "Виділення форм у зображенні" #: app/tools/gimpiscissorstool.c:279 -#, fuzzy msgid "Intelligent _Scissors" -msgstr "/Сервіс/Виділення/_Розумні ножиці" +msgstr "_Розумні ножиці" #: app/tools/gimplevelstool.c:161 msgid "Adjust color levels" msgstr "Корегування рівнів кольорів" #: app/tools/gimplevelstool.c:162 -#, fuzzy msgid "_Levels..." -msgstr "Рівні" +msgstr "_Рівні..." #: app/tools/gimplevelstool.c:220 msgid "Adjust Color Levels" @@ -9532,9 +8759,8 @@ msgstr "Завантаження рівнів" #: app/tools/gimplevelstool.c:223 -#, fuzzy msgid "Load levels settings from file" -msgstr "Завантажити настройки рівнів з файлу" +msgstr "Завантажити параметри рівнів з файлу" #: app/tools/gimplevelstool.c:224 msgid "Save Levels" @@ -9542,26 +8768,23 @@ #: app/tools/gimplevelstool.c:225 msgid "Save levels settings to file" -msgstr "Збереження настройок рівнів у файл" +msgstr "Збереження параметрів рівнів у файл" #: app/tools/gimplevelstool.c:285 msgid "Levels for indexed layers cannot be adjusted." msgstr "Рівні для індексованих зображень не можуть бути скореговані." #: app/tools/gimplevelstool.c:355 -#, fuzzy msgid "Pick black point" -msgstr "Вибір чорної точки" +msgstr "Вибір _чорної точки" #: app/tools/gimplevelstool.c:359 -#, fuzzy msgid "Pick gray point" -msgstr "Вибір сірої точки" +msgstr "Вибір _сірої точки" #: app/tools/gimplevelstool.c:363 -#, fuzzy msgid "Pick white point" -msgstr "Вибір білої точки" +msgstr "Вибір _білої точки" #. Input levels frame #: app/tools/gimplevelstool.c:445 @@ -9582,9 +8805,8 @@ msgstr "Автоматичний підбір рівнів" #: app/tools/gimpmagnifyoptions.c:203 -#, fuzzy msgid "Auto-resize window" -msgstr "Змінювати розмір вікна при мас_штабуванні" +msgstr "Змінювати розмір вікна" #: app/tools/gimpmagnifytool.c:95 msgid "Magnify" @@ -9595,12 +8817,10 @@ msgstr "Збільшення та зменшення" #: app/tools/gimpmagnifytool.c:97 -#, fuzzy msgid "M_agnify" -msgstr "Лупа" +msgstr "_Лупа" #: app/tools/gimpmeasureoptions.c:157 -#, fuzzy msgid "Use info window" msgstr "Використовувати інформаційне вікно" @@ -9613,9 +8833,8 @@ msgstr "Вимірювання відстаней та кутів" #: app/tools/gimpmeasuretool.c:120 -#, fuzzy msgid "_Measure" -msgstr "Вимірювач" +msgstr "_Вимірювач" #: app/tools/gimpmeasuretool.c:264 msgid "Add Guides" @@ -9631,27 +8850,22 @@ msgstr "Відстань:" #: app/tools/gimpmoveoptions.c:171 -#, fuzzy msgid "Pick a layer or guide" -msgstr "Вибрати шар або напрямну для переміщення" +msgstr "Вибрати шар або напрямну" #: app/tools/gimpmoveoptions.c:172 -#, fuzzy msgid "Move the current layer" msgstr "Перемістити поточний шар" #: app/tools/gimpmoveoptions.c:176 -#, fuzzy msgid "Move selection" msgstr "Переміщення виділеного" #: app/tools/gimpmoveoptions.c:180 -#, fuzzy msgid "Pick a path" msgstr "Вибрати контур для переміщення" #: app/tools/gimpmoveoptions.c:181 -#, fuzzy msgid "Move the current path" msgstr "Перемісти поточний контур" @@ -9660,22 +8874,18 @@ msgstr "Переміщення шарів та виділених ділянок" #: app/tools/gimpmovetool.c:118 -#, fuzzy msgid "_Move" -msgstr "Переміщення" +msgstr "Пере_міщення" #: app/tools/gimpmovetool.c:298 app/tools/gimpmovetool.c:576 -#, fuzzy msgid "Move Guide: " -msgstr "Переміщення напрямної" +msgstr "Переміщення напрямної: " #: app/tools/gimpmovetool.c:570 -#, fuzzy msgid "Cancel Guide" -msgstr "Скасувати" +msgstr "Прибрати напрямну" #: app/tools/gimpmovetool.c:576 -#, fuzzy msgid "Add Guide: " msgstr "Додавання напрямних" @@ -9684,9 +8894,8 @@ msgstr "Нанесення м'яких мазків пензлем" #: app/tools/gimppaintbrushtool.c:53 -#, fuzzy msgid "_Paintbrush" -msgstr "Пензель" +msgstr "Пе_нзель" #: app/tools/gimppaintoptions-gui.c:103 app/widgets/gimpbrushselect.c:201 #: app/widgets/gimplayertreeview.c:332 @@ -9707,12 +8916,10 @@ msgstr "Градієнт:" #: app/tools/gimppaintoptions-gui.c:177 -#, fuzzy msgid "Hard edge" msgstr "Чіткі краї" #: app/tools/gimppaintoptions-gui.c:216 -#, fuzzy msgid "Pressure sensitivity" msgstr "Чутливість до натиску" @@ -9733,7 +8940,6 @@ msgstr "Розмір" #: app/tools/gimppaintoptions-gui.c:313 -#, fuzzy msgid "Fade out" msgstr "Поступовий перехід" @@ -9742,7 +8948,6 @@ msgstr "Довжина:" #: app/tools/gimppaintoptions-gui.c:367 -#, fuzzy msgid "Use color from gradient" msgstr "Використати колір з градієнта" @@ -9751,9 +8956,8 @@ msgstr "Малювання різкими лініями" #: app/tools/gimppenciltool.c:53 -#, fuzzy msgid "Pe_ncil" -msgstr "Олівець" +msgstr "_Олівець" #: app/tools/gimpperspectivetool.c:81 msgid "Perspective" @@ -9764,9 +8968,8 @@ msgstr "Зміна перспективи слою чи виділення" #: app/tools/gimpperspectivetool.c:83 -#, fuzzy msgid "_Perspective" -msgstr "Перспектива" +msgstr "_Перспектива" #: app/tools/gimpperspectivetool.c:140 msgid "Perspective Transform Information" @@ -9781,9 +8984,8 @@ msgstr "Скорочення кількість кольорів у зображенні до вказаних" #: app/tools/gimpposterizetool.c:80 -#, fuzzy msgid "_Posterize..." -msgstr "Постеризація" +msgstr "По_стеризація..." #: app/tools/gimpposterizetool.c:131 msgid "Posterize (Reduce Number of Colors)" @@ -9794,7 +8996,6 @@ msgstr "Постеризація не діє на індексовані шари." #: app/tools/gimpposterizetool.c:223 -#, fuzzy msgid "Posterize _levels:" msgstr "_Рівні постеризації:" @@ -9803,9 +9004,8 @@ msgstr "Виділення прямокутних ділянок" #: app/tools/gimprectselecttool.c:98 -#, fuzzy msgid "_Rect Select" -msgstr "Прямокутне виділення" +msgstr "Пр_ямокутне виділення" #: app/tools/gimprectselecttool.c:224 msgid "Selection: ADD" @@ -9832,9 +9032,8 @@ msgstr "Обертання шарів та виділених ділянок" #: app/tools/gimprotatetool.c:99 -#, fuzzy msgid "_Rotate" -msgstr "Обертання" +msgstr "_Обертання" #: app/tools/gimprotatetool.c:158 msgid "Rotation Information" @@ -9845,9 +9044,8 @@ msgstr "Центр X:" #: app/tools/gimprotatetool.c:190 -#, fuzzy msgid "Center Y:" -msgstr "Центр X:" +msgstr "Центр Y:" #: app/tools/gimpscaletool.c:91 msgid "Scale" @@ -9858,12 +9056,10 @@ msgstr "Масштабування шару чи виділеної ділянки" #: app/tools/gimpscaletool.c:93 -#, fuzzy msgid "_Scale" -msgstr "Масштаб" +msgstr "Мас_штаб" #: app/tools/gimpscaletool.c:152 -#, fuzzy msgid "Scaling information" msgstr "Інформація про масштаб" @@ -9872,27 +9068,22 @@ msgstr "Оригінальна ширина:" #: app/tools/gimpscaletool.c:170 -#, fuzzy msgid "Current width:" msgstr "Поточна ширина:" #: app/tools/gimpscaletool.c:174 -#, fuzzy msgid "Current height:" msgstr "Поточна ширина:" #: app/tools/gimpscaletool.c:189 -#, fuzzy msgid "Scale ratio X:" msgstr "Масштаб по X:" #: app/tools/gimpscaletool.c:192 -#, fuzzy msgid "Scale ratio Y:" -msgstr "Масштаб по X:" +msgstr "Масштаб по Y:" #: app/tools/gimpscaletool.c:196 -#, fuzzy msgid "Aspect Ratio:" msgstr "Пропорції:" @@ -9917,22 +9108,18 @@ msgstr "Згладжування" #: app/tools/gimpselectionoptions.c:399 -#, fuzzy msgid "Feather edges" -msgstr "Розмити межі" +msgstr "Розмивати межі" #: app/tools/gimpselectionoptions.c:425 -#, fuzzy msgid "Show interactive boundary" msgstr "Показувати інтерактивні межі" #: app/tools/gimpselectionoptions.c:448 -#, fuzzy msgid "Select transparent areas" -msgstr "Виділити прозорі ділянки" +msgstr "Виділяти прозорі ділянки" #: app/tools/gimpselectionoptions.c:488 -#, fuzzy msgid "Auto shrink selection" msgstr "Автоскорочення виділення" @@ -9945,32 +9132,28 @@ msgstr "Викривлення шарів та виділень" #: app/tools/gimpsheartool.c:100 -#, fuzzy msgid "S_hear" -msgstr "Викривлення" +msgstr "_Викривлення" #: app/tools/gimpsheartool.c:157 msgid "Shearing Information" msgstr "Інформація про викривлення" #: app/tools/gimpsheartool.c:167 -#, fuzzy msgid "Shear magnitude X:" msgstr "Коефіцієнт викривлення по X:" #: app/tools/gimpsheartool.c:174 -#, fuzzy msgid "Shear magnitude Y:" -msgstr "Коефіцієнт викривлення по X:" +msgstr "Коефіцієнт викривлення по Y:" #: app/tools/gimpsmudgetool.c:55 msgid "Smudge image" msgstr "Розмазування зображення" #: app/tools/gimpsmudgetool.c:56 -#, fuzzy msgid "_Smudge" -msgstr "Палець" +msgstr "Пале_ць" #: app/tools/gimptextoptions.c:146 msgid "" @@ -9996,17 +9179,14 @@ msgstr "Відстань між рядками" #: app/tools/gimptextoptions.c:419 -#, fuzzy msgid "Font:" -msgstr "_Шрифт:" +msgstr "Шрифт:" #: app/tools/gimptextoptions.c:431 -#, fuzzy msgid "Hinting" -msgstr "_Інструктування" +msgstr "Інструктування" #: app/tools/gimptextoptions.c:438 -#, fuzzy msgid "Force auto-hinter" msgstr "Використовувати автоінструктування" @@ -10027,7 +9207,6 @@ msgstr "Відступ:" #: app/tools/gimptextoptions.c:475 -#, fuzzy msgid "" "Line\n" "spacing:" @@ -10036,28 +9215,26 @@ "інтервал:" #: app/tools/gimptextoptions.c:478 -#, fuzzy msgid "Create path from text" msgstr "Створити криву з тексту" -#: app/tools/gimptexttool.c:143 +#: app/tools/gimptexttool.c:145 msgid "Add text to the image" msgstr "Додавання тексту до зображення" -#: app/tools/gimptexttool.c:144 -#, fuzzy +#: app/tools/gimptexttool.c:146 msgid "Te_xt" -msgstr "Текст" +msgstr "_Текст" -#: app/tools/gimptexttool.c:732 +#: app/tools/gimptexttool.c:744 msgid "GIMP Text Editor" msgstr "Текстовий редактор GIMP" -#: app/tools/gimptexttool.c:842 app/tools/gimptexttool.c:845 +#: app/tools/gimptexttool.c:854 app/tools/gimptexttool.c:857 msgid "Confirm Text Editing" msgstr "Підтвердження зміни тексту" -#: app/tools/gimptexttool.c:866 +#: app/tools/gimptexttool.c:878 msgid "" "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 " @@ -10077,9 +9254,8 @@ msgstr "Перетворити зображення у двокольорове використовуючи поріг" #: app/tools/gimpthresholdtool.c:94 -#, fuzzy msgid "_Threshold..." -msgstr "Поріг" +msgstr "_Поріг..." #: app/tools/gimpthresholdtool.c:148 msgid "Apply Threshold" @@ -10103,14 +9279,12 @@ #. the clip resulting image toggle button #: app/tools/gimptransformoptions.c:353 -#, fuzzy msgid "Clip result" msgstr "Відсікати на межі зображення" #: app/tools/gimptransformoptions.c:367 -#, fuzzy msgid "Preview:" -msgstr "Попередній перегляд" +msgstr "Попередній перегляд:" #. the constraints frame #: app/tools/gimptransformoptions.c:413 @@ -10118,22 +9292,22 @@ msgstr "Обмеження" #: 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" #: app/tools/gimptransformoptions.c:447 -#, fuzzy, c-format +#, c-format msgid "Keep width %s" msgstr "Зберегти ширину %s" #: app/tools/gimptransformoptions.c:449 -#, fuzzy, c-format +#, c-format msgid "Keep aspect %s" msgstr "Фіксоване відношення сторін %s" @@ -10142,7 +9316,6 @@ msgstr "Перетворення..." #: app/tools/gimpvectoroptions.c:113 -#, fuzzy msgid "Restrict editing to polygons" msgstr "Створювати лише прямі та кути" @@ -10155,7 +9328,7 @@ msgstr "Багатокутники" #: app/tools/gimpvectoroptions.c:186 -#, fuzzy, c-format +#, c-format msgid "" "Path to Selection\n" "%s Add\n" @@ -10163,17 +9336,15 @@ "%s Intersect" msgstr "" "Контур у виділення\n" -"%s - додати\n" -"%s - відняти\n" -"%s%s%s - перетнути" +"%s додати\n" +"%s відняти\n" +"%s перетнути" #: app/tools/gimpvectoroptions.c:196 -#, fuzzy msgid "Create selection from path" msgstr "Створити виділену ділянку з контуру" #: app/tools/gimpvectoroptions.c:207 -#, fuzzy msgid "Stroke path" msgstr "Обвести за контуром" @@ -10299,7 +9470,6 @@ msgstr "Натисніть, щоб зробити цю точку кутовою." #: app/tools/gimpvectortool.c:1751 -#, fuzzy msgid "Delete Anchors" msgstr "Видалення точки" @@ -10371,54 +9541,51 @@ msgstr "RGBA (%0.3f, %0.3f, %0.3f, %0.3f)" #: app/widgets/gimpactionview.c:354 app/widgets/gimpcontrollereditor.c:374 -#, fuzzy msgid "Action" -msgstr "Додавання" +msgstr "Дія" #: app/widgets/gimpactionview.c:383 -#, fuzzy msgid "Shortcut" msgstr "Комбінації клавіш" #: app/widgets/gimpactionview.c:405 -#, fuzzy msgid "Name" -msgstr "_Назва:" +msgstr "Назва" #: app/widgets/gimpactionview.c:545 app/widgets/gimpactionview.c:738 msgid "Changing shortcut failed." -msgstr "" +msgstr "Не вдається змінити комбінації клавіші." #: app/widgets/gimpactionview.c:585 msgid "Conflicting Shortcuts" -msgstr "" +msgstr "Використані клавіші" #: app/widgets/gimpactionview.c:591 msgid "_Reassign shortcut" -msgstr "" +msgstr "_Призначити" #: app/widgets/gimpactionview.c:602 #, c-format msgid "Shortcut \"%s\" is already taken by \"%s\" from the \"%s\" group." -msgstr "" +msgstr "Клавіші швидкого \"%s\" вже використані у пункті \"%s\" з меню \"%s\"." #: app/widgets/gimpactionview.c:606 #, c-format msgid "Reassigning the shortcut will cause it to be removed from \"%s\"." msgstr "" +"Призначаючи ці клавіші ви відмовляється від доступу по ними до нього \"%s\"." #: app/widgets/gimpactionview.c:673 msgid "Removing shortcut failed." -msgstr "" +msgstr "Не вдається видалити клавіші швидкого доступу." #: app/widgets/gimpactionview.c:678 msgid "Invalid shortcut." -msgstr "" +msgstr "Некоректна комбінація клавіш" #: app/widgets/gimpbrusheditor.c:168 -#, fuzzy msgid "Spikes:" -msgstr "Розмір:" +msgstr "Промені:" #: app/widgets/gimpbrusheditor.c:181 msgid "Hardness:" @@ -10442,11 +9609,11 @@ #: app/widgets/gimpcellrendereraccel.c:234 #: app/widgets/gimpcellrendereraccel.c:459 msgid "Type a new accelerator, or press Backspace to clear" -msgstr "" +msgstr "Натисніть з'єднання клавіш чи Backspace для скасування" #: app/widgets/gimpcellrendereraccel.c:462 msgid "Type a new accelerator" -msgstr "" +msgstr "Натисніть комбінацію клавіш" #: app/widgets/gimpchanneltreeview.c:151 msgid "Reorder Channel" @@ -10458,7 +9625,7 @@ #: app/widgets/gimpclipboard.c:283 msgid "Clipboard" -msgstr "" +msgstr "Буфер обміну" #: app/widgets/gimpcolordialog.c:169 msgid "Add the current color to the color history" @@ -10490,22 +9657,20 @@ #: app/widgets/gimpcolordisplayeditor.c:322 msgid "Reset the selected filter to default values" -msgstr "Відновити типові настройки для вибраного фільтру" +msgstr "Відновити типові параметри для вибраного фільтру" #: app/widgets/gimpcolordisplayeditor.c:543 -#, fuzzy, c-format +#, c-format msgid "Configure selected filter: %s" -msgstr "Настройка вибраного фільтра: %s" +msgstr "Налаштовування вибраного фільтра: %s" #: app/widgets/gimpcolordisplayeditor.c:550 -#, fuzzy msgid "No filter selected" msgstr "Фільтр не вибраний" #: app/widgets/gimpcolordisplayeditor.c:554 -#, fuzzy msgid "Configure selected filter" -msgstr "Настройка вибраного фільтра" +msgstr "Параметри вибраного фільтра" #: app/widgets/gimpcolorframe.c:240 msgid "Index:" @@ -10560,14 +9725,12 @@ msgstr "Прозорість:" #: app/widgets/gimpcolormapeditor.c:247 -#, fuzzy msgid "Color index:" msgstr "Номер кольору:" #: app/widgets/gimpcolormapeditor.c:258 -#, fuzzy msgid "HTML notation:" -msgstr "Розташування:" +msgstr "Нотація HTML:" #: app/widgets/gimpcontainerpopup.c:502 msgid "Smaller Previews" @@ -10579,311 +9742,300 @@ #: app/widgets/gimpcontrollereditor.c:210 msgid "Dump events from this controller" -msgstr "" +msgstr "Відображати дії" #: app/widgets/gimpcontrollereditor.c:215 msgid "Enable this controller" -msgstr "" +msgstr "Увімкнути спосіб керування" #: app/widgets/gimpcontrollereditor.c:236 -#, fuzzy msgid "Name:" -msgstr "_Назва:" +msgstr "Назва:" #: app/widgets/gimpcontrollereditor.c:369 -#, fuzzy msgid "Event" msgstr "Середовище" #: app/widgets/gimpcontrollereditor.c:550 msgid "Select Controller Event Action" -msgstr "" +msgstr "Вибір дії" #: app/widgets/gimpcontrollerkeyboard.c:69 msgid "Key Up (Shift + Control + Alt)" -msgstr "" +msgstr "Key Up (Shift + Control + Alt)" #: app/widgets/gimpcontrollerkeyboard.c:72 msgid "Key Up (Control + Alt)" -msgstr "" +msgstr "Key Up (Control + Alt)" #: app/widgets/gimpcontrollerkeyboard.c:75 msgid "Key Up (Shift + Alt)" -msgstr "" +msgstr "Key Up (Shift + Alt)" #: app/widgets/gimpcontrollerkeyboard.c:78 msgid "Key Up (Shift + Control)" -msgstr "" +msgstr "Key Up (Shift + Control)" #: app/widgets/gimpcontrollerkeyboard.c:81 msgid "Key Up (Alt)" -msgstr "" +msgstr "Key Up (Alt)" #: app/widgets/gimpcontrollerkeyboard.c:84 msgid "Key Up (Control)" -msgstr "" +msgstr "Key Up (Control)" #: app/widgets/gimpcontrollerkeyboard.c:87 msgid "Key Up (Shift)" -msgstr "" +msgstr "Key Up (Shift)" #: app/widgets/gimpcontrollerkeyboard.c:90 msgid "Key Up" -msgstr "" +msgstr "Key Up" #: app/widgets/gimpcontrollerkeyboard.c:94 msgid "Key Down (Shift + Control + Alt)" -msgstr "" +msgstr "Key Down (Shift + Control + Alt)" #: app/widgets/gimpcontrollerkeyboard.c:97 msgid "Key Down (Control + Alt)" -msgstr "" +msgstr "Key Down (Control + Alt)" #: app/widgets/gimpcontrollerkeyboard.c:100 msgid "Key Down (Shift + Alt)" -msgstr "" +msgstr "Key Down (Shift + Alt)" #: app/widgets/gimpcontrollerkeyboard.c:103 msgid "Key Down (Shift + Control)" -msgstr "" +msgstr "Key Down (Shift + Control)" #: app/widgets/gimpcontrollerkeyboard.c:106 msgid "Key Down (Alt)" -msgstr "" +msgstr "Key Down (Alt)" #: app/widgets/gimpcontrollerkeyboard.c:109 msgid "Key Down (Control)" -msgstr "" +msgstr "Key Down (Control)" #: app/widgets/gimpcontrollerkeyboard.c:112 msgid "Key Down (Shift)" -msgstr "" +msgstr "Key Down (Shift)" #: app/widgets/gimpcontrollerkeyboard.c:115 -#, fuzzy msgid "Key Down" -msgstr "Об'єднання з попереднім" +msgstr "Key Down" #: app/widgets/gimpcontrollerkeyboard.c:119 msgid "Key Left (Shift + Control + Alt)" -msgstr "" +msgstr "Key Left (Shift + Control + Alt)" #: app/widgets/gimpcontrollerkeyboard.c:122 msgid "Key Left (Control + Alt)" -msgstr "" +msgstr "Key Left (Control + Alt)" #: app/widgets/gimpcontrollerkeyboard.c:125 msgid "Key Left (Shift + Alt)" -msgstr "" +msgstr "Key Left (Shift + Alt)" #: app/widgets/gimpcontrollerkeyboard.c:128 msgid "Key Left (Shift + Control)" -msgstr "" +msgstr "Key Left (Shift + Control)" #: app/widgets/gimpcontrollerkeyboard.c:131 msgid "Key Left (Alt)" -msgstr "" +msgstr "Key Left (Alt)" #: app/widgets/gimpcontrollerkeyboard.c:134 msgid "Key Left (Control)" -msgstr "" +msgstr "Key Left (Control)" #: app/widgets/gimpcontrollerkeyboard.c:137 msgid "Key Left (Shift)" -msgstr "" +msgstr "Key Left (Shift)" #: app/widgets/gimpcontrollerkeyboard.c:140 msgid "Key Left" -msgstr "" +msgstr "Key Left" #: app/widgets/gimpcontrollerkeyboard.c:144 msgid "Key Right (Shift + Control + Alt)" -msgstr "" +msgstr "Key Right (Shift + Control + Alt)" #: app/widgets/gimpcontrollerkeyboard.c:147 msgid "Key Right (Control + Alt)" -msgstr "" +msgstr "Key Right (Control + Alt)" #: app/widgets/gimpcontrollerkeyboard.c:150 msgid "Key Right (Shift + Alt)" -msgstr "" +msgstr "Key Right (Shift + Alt)" #: app/widgets/gimpcontrollerkeyboard.c:153 msgid "Key Right (Shift + Control)" -msgstr "" +msgstr "Key Right (Shift + Control)" #: app/widgets/gimpcontrollerkeyboard.c:156 msgid "Key Right (Alt)" -msgstr "" +msgstr "Key Right (Alt)" #: app/widgets/gimpcontrollerkeyboard.c:159 -#, fuzzy msgid "Key Right (Control)" -msgstr "/Зб_ерегти колір правої точки у" +msgstr "Key Right (Control)" #: app/widgets/gimpcontrollerkeyboard.c:162 msgid "Key Right (Shift)" -msgstr "" +msgstr "Key Right (Shift)" #: app/widgets/gimpcontrollerkeyboard.c:165 -#, fuzzy msgid "Key Right" -msgstr "Висота" +msgstr "Key Right" #: app/widgets/gimpcontrollerkeyboard.c:207 -#, fuzzy msgid "Keyboard" -msgstr "Комбінації клавіш" +msgstr "Клавіатура" #: app/widgets/gimpcontrollerkeyboard.c:230 -#, fuzzy msgid "Keyboard Events" -msgstr "Комбінації клавіш" +msgstr "Події клавіатури" #: app/widgets/gimpcontrollerkeyboard.c:231 #: app/widgets/gimpcontrollerwheel.c:230 -#, fuzzy msgid "Ready" -msgstr "Червоний" +msgstr "Виконано" #: app/widgets/gimpcontrollerwheel.c:68 msgid "Scroll Up (Shift + Control + Alt)" -msgstr "" +msgstr "Вверх (Shift + Control + Alt)" #: app/widgets/gimpcontrollerwheel.c:71 msgid "Scroll Up (Control + Alt)" -msgstr "" +msgstr "Вверх (Control + Alt)" #: app/widgets/gimpcontrollerwheel.c:74 msgid "Scroll Up (Shift + Alt)" -msgstr "" +msgstr "Вверх (Shift + Alt)" #: app/widgets/gimpcontrollerwheel.c:77 msgid "Scroll Up (Shift + Control)" -msgstr "" +msgstr "Вверх (Shift + Control)" #: app/widgets/gimpcontrollerwheel.c:80 msgid "Scroll Up (Alt)" -msgstr "" +msgstr "Вверх (Alt)" #: app/widgets/gimpcontrollerwheel.c:83 msgid "Scroll Up (Control)" -msgstr "" +msgstr "Вверх (Control)" #: app/widgets/gimpcontrollerwheel.c:86 msgid "Scroll Up (Shift)" -msgstr "" +msgstr "Вверх (Shift)" #: app/widgets/gimpcontrollerwheel.c:89 msgid "Scroll Up" -msgstr "" +msgstr "Вверх" #: app/widgets/gimpcontrollerwheel.c:93 msgid "Scroll Down (Shift + Control + Alt)" -msgstr "" +msgstr "Вниз (Shift + Control + Alt)" #: app/widgets/gimpcontrollerwheel.c:96 msgid "Scroll Down (Control + Alt)" -msgstr "" +msgstr "Вниз (Control + Alt)" #: app/widgets/gimpcontrollerwheel.c:99 msgid "Scroll Down (Shift + Alt)" -msgstr "" +msgstr "Вниз (Shift + Alt)" #: app/widgets/gimpcontrollerwheel.c:102 msgid "Scroll Down (Shift + Control)" -msgstr "" +msgstr "Вниз (Shift + Control)" #: app/widgets/gimpcontrollerwheel.c:105 msgid "Scroll Down (Alt)" -msgstr "" +msgstr "Вниз (Alt)" #: app/widgets/gimpcontrollerwheel.c:108 msgid "Scroll Down (Control)" -msgstr "" +msgstr "Вниз (Control)" #: app/widgets/gimpcontrollerwheel.c:111 msgid "Scroll Down (Shift)" -msgstr "" +msgstr "Вниз (Shift)" #: app/widgets/gimpcontrollerwheel.c:114 msgid "Scroll Down" -msgstr "" +msgstr "Вниз" #: app/widgets/gimpcontrollerwheel.c:118 msgid "Scroll Left (Shift + Control + Alt)" -msgstr "" +msgstr "Вліво (Shift + Control + Alt)" #: app/widgets/gimpcontrollerwheel.c:121 msgid "Scroll Left (Control + Alt)" -msgstr "" +msgstr "Вліво (Control + Alt)" #: app/widgets/gimpcontrollerwheel.c:124 msgid "Scroll Left (Shift + Alt)" -msgstr "" +msgstr "Вліво (Shift + Alt)" #: app/widgets/gimpcontrollerwheel.c:127 msgid "Scroll Left (Shift + Control)" -msgstr "" +msgstr "Вліво (Shift + Control)" #: app/widgets/gimpcontrollerwheel.c:130 msgid "Scroll Left (Alt)" -msgstr "" +msgstr "Вліво (Alt)" #: app/widgets/gimpcontrollerwheel.c:133 msgid "Scroll Left (Control)" -msgstr "" +msgstr "Вліво (Control)" #: app/widgets/gimpcontrollerwheel.c:136 msgid "Scroll Left (Shift)" -msgstr "" +msgstr "Вліво (Shift)" #: app/widgets/gimpcontrollerwheel.c:139 msgid "Scroll Left" -msgstr "" +msgstr "Вліво " #: app/widgets/gimpcontrollerwheel.c:143 msgid "Scroll Right (Shift + Control + Alt)" -msgstr "" +msgstr "Вправо (Shift + Control + Alt)" #: app/widgets/gimpcontrollerwheel.c:146 msgid "Scroll Right (Control + Alt)" -msgstr "" +msgstr "Вправо (Control + Alt)" #: app/widgets/gimpcontrollerwheel.c:149 msgid "Scroll Right (Shift + Alt)" -msgstr "" +msgstr "Вправо (Shift + Alt)" #: app/widgets/gimpcontrollerwheel.c:152 msgid "Scroll Right (Shift + Control)" -msgstr "" +msgstr "Вправо (Shift + Control)" #: app/widgets/gimpcontrollerwheel.c:155 msgid "Scroll Right (Alt)" -msgstr "" +msgstr "Вправо (Alt)" #: app/widgets/gimpcontrollerwheel.c:158 msgid "Scroll Right (Control)" -msgstr "" +msgstr "Вправо (Control)" #: app/widgets/gimpcontrollerwheel.c:161 msgid "Scroll Right (Shift)" -msgstr "" +msgstr "Вправо (Shift)" #: app/widgets/gimpcontrollerwheel.c:164 -#, fuzzy msgid "Scroll Right" -msgstr "М'яке світло" +msgstr "Вправо" #: app/widgets/gimpcontrollerwheel.c:206 -#, fuzzy msgid "Mouse Wheel" -msgstr "Переміщення каналу" +msgstr "Події колеса миші" #: app/widgets/gimpcontrollerwheel.c:229 -#, fuzzy msgid "Mouse Wheel Events" -msgstr "Переміщення каналу" +msgstr "Події колеса миші" #: app/widgets/gimpdataeditor.c:205 msgid "Save" @@ -10908,14 +10060,12 @@ msgstr "Тло: %d, %d, %d" #: app/widgets/gimpdock.c:348 app/widgets/gimpdock.c:359 -#, fuzzy msgid "Close all tabs?" -msgstr "/_Закрити вкладку" +msgstr "Закрити усі вкладки" #: app/widgets/gimpdock.c:354 -#, fuzzy msgid "Close all Tabs" -msgstr "/_Закрити вкладку" +msgstr "Закрити усі вкладки" #: app/widgets/gimpdock.c:361 #, c-format @@ -10923,6 +10073,8 @@ "This window has %d tabs open. Closing the window will also close all its " "tabs." msgstr "" +"Вікно має %d відкритих вкладок. Закривання вікна призведе до закривання усіх " +"його вкладок." #: app/widgets/gimpdock.c:474 msgid "You can drop dockable dialogs here." @@ -10939,41 +10091,36 @@ #: app/widgets/gimperrordialog.c:229 msgid "Too many error messages!" -msgstr "" +msgstr "Надто багато повідомлень про помилки!" #: app/widgets/gimperrordialog.c:230 -#, fuzzy msgid "Messages are redirected to stderr." -msgstr "Повідомлення повторено один раз" +msgstr "Повідомлення перенаправлені у stderr." #: app/widgets/gimpfiledialog.c:304 msgid "Automatically Detected" -msgstr "" +msgstr "Автоматичне видалення" #: app/widgets/gimpfiledialog.c:310 -#, fuzzy msgid "By Extension" -msgstr "/За розширенням" +msgstr "За розширенням" #: app/widgets/gimpfiledialog.c:469 -#, fuzzy msgid "All Files" msgstr "Всі файли" #: app/widgets/gimpfiledialog.c:608 -#, fuzzy, c-format +#, c-format msgid "Select File _Type (%s)" -msgstr "Тип заповнення %s" +msgstr "Вибрати _тип файла (%s)" #: app/widgets/gimpfileprocview.c:234 -#, fuzzy msgid "File Type" -msgstr "Тип заповнення" +msgstr "Тип файлу" #: app/widgets/gimpfileprocview.c:253 -#, fuzzy msgid "Extensions" -msgstr "/За розширенням" +msgstr "За розширенням" #: app/widgets/gimpgradienteditor.c:362 msgid "Instant update" @@ -10995,9 +10142,9 @@ msgstr "Позиція: %0.6f" #: 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 @@ -11005,9 +10152,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) Непрозорість: %0.3f" +msgstr "Яскравість: %0.3f Непрозорість: %0.3f" #: app/widgets/gimpgradienteditor.c:854 app/widgets/gimpgradienteditor.c:889 #, c-format @@ -11065,22 +10212,18 @@ msgstr "Сти_ль лінії:" #: app/widgets/gimpgrideditor.c:223 -#, fuzzy msgid "Change grid foreground color" msgstr "Змінити колір переднього плану сітки" #: app/widgets/gimpgrideditor.c:228 -#, fuzzy msgid "_Foreground color:" msgstr "Колір _переднього плану:" #: app/widgets/gimpgrideditor.c:232 -#, fuzzy msgid "Change grid background color" msgstr "Змінити колір тла сітки" #: app/widgets/gimpgrideditor.c:237 -#, fuzzy msgid "_Background color:" msgstr "Колір _тла:" @@ -11097,34 +10240,29 @@ msgstr "Висота" #: app/widgets/gimphelp.c:187 -#, fuzzy msgid "Help browser not found" -msgstr "П_рограма перегляду довідки:" +msgstr "Програма перегляду довідки не існує" #: app/widgets/gimphelp.c:188 -#, fuzzy msgid "Could not find GIMP help browser." -msgstr "Не вдається знайти програму перегляду довідки GIMP" +msgstr "Не вдається знайти програму перегляду довідки GIMP." #: app/widgets/gimphelp.c:189 msgid "" "The GIMP help browser plug-in appears to be missing from your installation." -msgstr "" +msgstr "У вашому встановленні GIMP відсутній переглядач довідки." #: app/widgets/gimphelp.c:213 -#, fuzzy msgid "Help browser doesn't start" -msgstr "П_рограма перегляду довідки:" +msgstr "Програма перегляду довідки не запускається" #: app/widgets/gimphelp.c:214 -#, fuzzy msgid "Could not start the GIMP help browser plug-in." msgstr "Не вдається запустити програму перегляду довідки GIMP." #: app/widgets/gimphelp.c:240 -#, fuzzy msgid "Use _web browser instead" -msgstr "Використовувати зовнішній переглядач" +msgstr "Використовувати _зовнішній переглядач" #: app/widgets/gimphistogrameditor.c:134 msgid "Mean:" @@ -11174,7 +10312,6 @@ msgstr "Реорганізувати шар" #: app/widgets/gimplayertreeview.c:313 -#, fuzzy msgid "Keep transparency" msgstr "Зберігати прозорість" @@ -11204,7 +10341,7 @@ msgid "This text input field is limited to %d characters." msgstr "Це текстове поле типово обмежено %d символами." -#: app/widgets/gimpselectiondata.c:317 +#: app/widgets/gimpselectiondata.c:319 #, c-format msgid "" "The filename '%s' couldn't be converted to a valid URI:\n" @@ -11215,54 +10352,47 @@ "\n" "%s" -#: app/widgets/gimpselectiondata.c:321 +#: app/widgets/gimpselectiondata.c:323 msgid "Invalid UTF-8" msgstr "неправильний рядок UTF-8" #: app/widgets/gimpsizebox.c:456 -#, fuzzy, c-format +#, c-format msgid "%d x %d dpi" -msgstr "%d x %d точок" +msgstr "%d x %d т/дюйм" #: app/widgets/gimpsizebox.c:458 -#, fuzzy, c-format +#, c-format msgid "%d dpi" -msgstr "т/дюйм" +msgstr "%d т/дюйм" #: app/widgets/gimpstrokeeditor.c:198 -#, fuzzy msgid "Line Width:" msgstr "Ширина шару:" #: app/widgets/gimpstrokeeditor.c:209 -#, fuzzy msgid "_Line Style" msgstr "Сти_ль лінії:" #: app/widgets/gimpstrokeeditor.c:228 -#, fuzzy msgid "_Cap style:" msgstr "Стиль _початку:" #: app/widgets/gimpstrokeeditor.c:234 -#, fuzzy msgid "_Join style:" msgstr "Стиль к_ута:" #: app/widgets/gimpstrokeeditor.c:239 -#, fuzzy msgid "_Miter limit:" msgstr "Г_острота скосів:" #: app/widgets/gimpstrokeeditor.c:246 -#, fuzzy msgid "Dash pattern:" -msgstr "_Шаблон лінії:" +msgstr "Шаблон лінії:" #: app/widgets/gimpstrokeeditor.c:288 -#, fuzzy msgid "Dash preset:" -msgstr "_Тип лінії" +msgstr "Тип лінії:" #: app/widgets/gimpstrokeeditor.c:300 msgid "_Antialiasing" @@ -11271,27 +10401,23 @@ #: app/widgets/gimptemplateeditor.c:255 #, c-format msgid "%p" -msgstr "" +msgstr "%p" #: app/widgets/gimptemplateeditor.c:330 -#, fuzzy msgid "_Advanced Options" -msgstr "Збережені параметри" +msgstr "_Розширені параметри" #: app/widgets/gimptemplateeditor.c:437 -#, fuzzy msgid "Color_space:" -msgstr "Колір:" +msgstr "Ре_жим:" #: app/widgets/gimptemplateeditor.c:445 -#, fuzzy msgid "_Fill with:" -msgstr "Заповнення білим" +msgstr "_Тло:" #: app/widgets/gimptemplateeditor.c:455 -#, fuzzy msgid "Comme_nt:" -msgstr "Кількість:" +msgstr "_Коментар:" #: app/widgets/gimptemplateeditor.c:565 msgid "_Name:" @@ -11302,14 +10428,14 @@ msgstr "_Значок:" #: app/widgets/gimptemplateeditor.c:699 -#, fuzzy, c-format +#, c-format msgid "%d x %d dpi, %s" -msgstr "%d x %d точок" +msgstr "%d x %d т/дюйм, %s" #: app/widgets/gimptemplateeditor.c:701 #, c-format msgid "%d dpi, %s" -msgstr "" +msgstr "%d т/дюйм, %s" #: app/widgets/gimpthumbbox.c:337 #, c-format @@ -11321,9 +10447,8 @@ "Натисніть з %s, щоб примусово оновити перегляд" #: app/widgets/gimpthumbbox.c:407 app/widgets/gimpthumbbox.c:477 -#, fuzzy msgid "No selection" -msgstr "Нічого не виділено." +msgstr "Нічого не виділено" #: app/widgets/gimpthumbbox.c:602 app/widgets/gimpthumbbox.c:626 #, c-format @@ -11331,7 +10456,6 @@ msgstr "Мініатюра %d з %d" #: app/widgets/gimpthumbbox.c:730 app/widgets/gimpthumbbox.c:740 -#, fuzzy msgid "Creating Preview ..." msgstr "Завантаження попереднього перегляду..." @@ -11344,7 +10468,6 @@ msgstr "Зміна кольору тла" #: app/widgets/gimptoolbox-image-area.c:90 -#, fuzzy msgid "" "The active image.\n" "Click to open the Image Dialog." @@ -11399,18 +10522,17 @@ #: app/widgets/gimpuimanager.c:495 msgid "Your GIMP installation is incomplete:" -msgstr "" +msgstr "Вашу встановлення GIMP неповне:" #: app/widgets/gimpuimanager.c:497 msgid "Plase make sure the menu XML files are correctly installed." -msgstr "" +msgstr "Перевірте, що XML-файли меню, коректно встановлені." #: app/widgets/gimpundoeditor.c:255 msgid "[ Base Image ]" msgstr "[ Основне зображення ]" #: app/widgets/gimpvectorstreeview.c:151 -#, fuzzy msgid "Reorder path" msgstr "Реорганізувати контур" @@ -11435,7 +10557,6 @@ msgstr "Обернути" #: app/widgets/gimpviewablebox.c:210 -#, fuzzy msgid "Open the palette selection dialog" msgstr "Відкрити діалог вибору візерунка" @@ -11458,7 +10579,6 @@ msgstr "Позаду" #: app/widgets/gimpwidgets-constructors.c:53 -#, fuzzy msgid "Color erase" msgstr "Очистка кольору" @@ -11484,25 +10604,23 @@ #: app/widgets/gimpwidgets-constructors.c:62 #: app/widgets/gimpwidgets-constructors.c:95 -#, fuzzy msgid "Hard light" msgstr "Жорстке світло" #: app/widgets/gimpwidgets-constructors.c:63 #: app/widgets/gimpwidgets-constructors.c:96 -#, fuzzy msgid "Soft light" msgstr "М'яке світло" #: app/widgets/gimpwidgets-constructors.c:64 #: app/widgets/gimpwidgets-constructors.c:97 msgid "Grain extract" -msgstr "" +msgstr "Кристалізація діленням" #: app/widgets/gimpwidgets-constructors.c:65 #: app/widgets/gimpwidgets-constructors.c:98 msgid "Grain merge" -msgstr "" +msgstr "Кристалізація об'єднанням" #: app/widgets/gimpwidgets-constructors.c:67 #: app/widgets/gimpwidgets-constructors.c:100 @@ -11516,15 +10634,13 @@ #: app/widgets/gimpwidgets-constructors.c:70 #: app/widgets/gimpwidgets-constructors.c:103 -#, fuzzy msgid "Darken only" -msgstr "Заміна темним" +msgstr "Лише темне" #: app/widgets/gimpwidgets-constructors.c:71 #: app/widgets/gimpwidgets-constructors.c:104 -#, fuzzy msgid "Lighten only" -msgstr "Заміна світлим" +msgstr "Лише світле" #: app/widgets/gimpwidgets-constructors.c:73 #: app/widgets/gimpwidgets-constructors.c:106 @@ -11562,9 +10678,8 @@ msgstr "Альбомна" #: app/widgets/widgets-enums.c:113 -#, fuzzy msgid "Pixel values" -msgstr "Пікселі" +msgstr "Точок" #: app/widgets/widgets-enums.c:115 msgid "HSV" @@ -11576,21 +10691,19 @@ #: app/widgets/widgets-enums.c:171 msgid "Black & white" -msgstr "" +msgstr "Чорна-білий" #: app/widgets/widgets-enums.c:172 msgid "Fancy" -msgstr "" +msgstr "Кольоровий" #: app/widgets/widgets-enums.c:199 -#, fuzzy msgid "GIMP help browser" -msgstr "Перегляд довідки" +msgstr "Перегляд довідки GIMP" #: app/widgets/widgets-enums.c:200 -#, fuzzy msgid "Web browser" -msgstr "Веб-переглядач" +msgstr "Зовнішній переглядач" #: app/widgets/widgets-enums.c:228 msgid "Logarithmic" @@ -11601,57 +10714,48 @@ msgstr "Значок" #: app/widgets/widgets-enums.c:262 -#, fuzzy msgid "Current status" -msgstr "Стан" +msgstr "Поточний стан" #: app/widgets/widgets-enums.c:264 msgid "Description" msgstr "Опис" #: app/widgets/widgets-enums.c:265 -#, fuzzy msgid "Icon & text" -msgstr "Значок та текс" +msgstr "Значок та текст" #: app/widgets/widgets-enums.c:266 -#, fuzzy msgid "Icon & desc" msgstr "Значок та опис" #: app/widgets/widgets-enums.c:267 -#, fuzzy msgid "Status & text" msgstr "Стан на текст" #: app/widgets/widgets-enums.c:268 -#, fuzzy msgid "Status & desc" msgstr "Стан та опис" #: app/widgets/widgets-enums.c:295 -#, fuzzy msgid "View as list" msgstr "Перегляд списком" #: app/widgets/widgets-enums.c:296 -#, fuzzy msgid "View as grid" msgstr "Перегляд таблицею" #: app/widgets/widgets-enums.c:324 -#, fuzzy msgid "Normal window" msgstr "Звичайне вікно" #: app/widgets/widgets-enums.c:325 -#, fuzzy msgid "Utility window" msgstr "Допоміжне вікно" #: app/widgets/widgets-enums.c:326 msgid "Keep above" -msgstr "" +msgstr "Завжди згори" #: app/xcf/xcf-load.c:297 msgid "" @@ -11684,9 +10788,8 @@ msgstr "Помилка позиціювання у XCF-файлі: %s" #: app/xcf/xcf.c:86 app/xcf/xcf.c:143 -#, fuzzy msgid "GIMP XCF image" -msgstr "Повідомлення GIMP" +msgstr "Файл XCF GIMP" #: app/xcf/xcf.c:282 #, c-format @@ -11698,1494 +10801,8 @@ msgstr "Створення та редагування зображень чи фотографій" #: data/misc/gimp.desktop.in.in.h:2 -#, fuzzy msgid "Image Editor" -msgstr "Редактор палітри" +msgstr "Редактор зображень" -#, fuzzy #~ msgid "Keep aspect ratio" -#~ msgstr "Фіксоване відношення сторін %s" - -#~ msgid "Y:" -#~ msgstr "Y:" - -#~ msgid "Transformations do not work on layers that contain layer masks." -#~ msgstr "Перетворення не впливають на шари, які містять маски шарів." - -#~ msgid "Resize Error: Both width and height must be greater than zero." -#~ msgstr "Помилка зміни розміру: ширина і висота повинні бути більшими нуля." - -#~ msgid "Scale Error: Both width and height must be greater than zero." -#~ msgstr "Помилка масштабування: ширина і висота повинні бути більшими нуля." - -#~ msgid "C_enter" -#~ msgstr "_Центр" - -#~ msgid "Indexed Palette Menu" -#~ msgstr "Меню індексованої палітри" - -#, fuzzy -#~ msgid "Inde_xed Palette" -#~ msgstr "Індексована палітра" - -#, fuzzy -#~ msgid "_Undo History" -#~ msgstr "Історія скасувань дій" - -#, fuzzy -#~ msgid "Brus_hes" -#~ msgstr "Пензлі" - -#, fuzzy -#~ msgid "Show Image _Menu" -#~ msgstr "/Показати _меню зображення" - -#, fuzzy -#~ msgid "Buffer" -#~ msgstr "Буфери" - -#~ msgid "Layer _Name" -#~ msgstr "_Назва шару" - -#~ msgid "Set Indexed Palette" -#~ msgstr "Встановлення індексованої палітри" - -#~ msgid "Change Indexed Palette Entry" -#~ msgstr "Зміна кольору у палітрі" - -#~ msgid "Add Color to Indexed Palette" -#~ msgstr "Додавання кольору до індексованої палітри" - -#~ msgid "No preview available" -#~ msgstr "Попередній перегляд не доступний" - -#~ msgid "Indexed Palette" -#~ msgstr "Індексована палітра" - -#~ msgid "Scale Layer Options" -#~ msgstr "Параметри масштабування шару" - -#~ msgid "Scale Image Options" -#~ msgstr "Параметри масштабування зображення" - -#~ msgid "Pixel Dimensions" -#~ msgstr "Розміри на екрані" - -#~ msgid "Layer Boundary Size" -#~ msgstr "Межі шару" - -#, fuzzy -#~ msgid "New width:" -#~ msgstr "Нова ширина:" - -#, fuzzy -#~ msgid "New height:" -#~ msgstr "Висота:" - -#, fuzzy -#~ msgid "X ratio:" -#~ msgstr "Масштаб по X:" - -#, fuzzy -#~ msgid "Y ratio:" -#~ msgstr "Масштаб по X:" - -#~ msgid "Constrain aspect ratio" -#~ msgstr "Зберігати пропорції" - -#~ msgid "Print Size & Display Unit" -#~ msgstr "Друк: розмір та одиниці виміру" - -#, fuzzy -#~ msgid "X resolution:" -#~ msgstr "Роздільна здатність:" - -#, fuzzy -#~ msgid "Y resolution:" -#~ msgstr "Роздільна здатність:" - -#~ msgid "Stroke Options" -#~ msgstr "Параметри обведення" - -#~ msgid "_Size:" -#~ msgstr "_Розмір:" - -#~ msgid "" -#~ "New Channel\n" -#~ "%s New Channel Dialog" -#~ msgstr "" -#~ "Новий канал\n" -#~ "Створення нового каналу %s" - -#~ msgid "Delete Channel" -#~ msgstr "Видалення каналу" - -#, fuzzy -#~ msgid "" -#~ "Channel to selection\n" -#~ "%s Add\n" -#~ "%s Subtract\n" -#~ "%s Intersect" -#~ msgstr "" -#~ "Канал у виділення\n" -#~ "%s - додати\n" -#~ "%s - відняти\n" -#~ "%s%s%s - перетнути" - -#, fuzzy -#~ msgid "He_x triplet:" -#~ msgstr "_Шістн. триплет:" - -#, fuzzy -#~ msgid "" -#~ "Add color from FG\n" -#~ "%s from BG" -#~ msgstr "" -#~ "Додати колір з переднього плану\n" -#~ "%s з тла" - -#~ msgid "Edit Indexed Color" -#~ msgstr "Правка індексованого кольору" - -#, fuzzy -#~ msgid "Edit indexed image palette color" -#~ msgstr "Редагування кольору палітри індексованого зображення" - -#~ msgid "" -#~ "Open the selected entry\n" -#~ "%s Raise window if already open\n" -#~ "%s Open image dialog" -#~ msgstr "" -#~ "Відкрити вибраний елемент\n" -#~ "%s - активувати відкрите вікно\n" -#~ "%s - завантажити діалог зображення" - -#~ msgid "" -#~ "Recreate preview\n" -#~ "%s Reload all previews\n" -#~ "%s Remove Dangling Entries" -#~ msgstr "" -#~ "Заново створити перегляд\n" -#~ "%s - оновити всі файли перегляду\n" -#~ "%s - видалити застарілі" - -#, fuzzy -#~ msgid "" -#~ "Save all errors\n" -#~ "%s Save selection" -#~ msgstr "" -#~ "Зберегти всі помилки\n" -#~ "%s - зберегти виділені" - -#~ msgid "" -#~ "%s\n" -#~ "%s To Top" -#~ msgstr "" -#~ "%s\n" -#~ "%s - догори" - -#~ msgid "" -#~ "%s\n" -#~ "%s To Bottom" -#~ msgstr "" -#~ "%s\n" -#~ "%s - додолу" - -#~ msgid "" -#~ "New Layer\n" -#~ "%s New Layer Dialog" -#~ msgstr "" -#~ "Новий шар\n" -#~ "%s - створити новий шар" - -#~ msgid "Delete Layer" -#~ msgstr "Видалення шару" - -#, fuzzy -#~ msgid "" -#~ "New color from FG\n" -#~ "%s from BG" -#~ msgstr "" -#~ "Новий колір з переднього плану\n" -#~ "%s - з тла" - -#, fuzzy -#~ msgid "" -#~ "Selection to path\n" -#~ "%s Advanced options" -#~ msgstr "" -#~ "Виділення у контур\n" -#~ "%s - розширені параметри" - -#~ msgid "" -#~ "Reset to default values\n" -#~ "%s Reset all Tool Options" -#~ msgstr "" -#~ "Повернутись до початкових значень\n" -#~ "%s - типові значення для всіх інструментів" - -#~ msgid "" -#~ "Selection to Path\n" -#~ "%s Advanced Options" -#~ msgstr "" -#~ "Виділення у контур\n" -#~ "%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 "" -#~ "Ви намагаєтесь створити зображення, початковий розмір якого дорівнює %s.\n" -#~ "\n" -#~ "Виберіть \"Гаразд\", щоб все ж таки створити його.\n" -#~ "Виберіть \"Скасувати\", якщо ви не збирались створювати таке велике " -#~ "зображення.\n" -#~ "\n" -#~ "Щоб запобігти появі цього попередження, збільште значення параметру " -#~ "\"Максимальний розмір зображення\"\n" -#~ "(наразі це -- %s) в діалоговому вікні \"Настройка\"." - -#~ msgid "Image exceeds maximum image size" -#~ msgstr "Розмір зображення перевищує встановлене обмеження" - -#~ msgid "Layer Too Small" -#~ msgstr "Шар надто малий" - -#, fuzzy -#~ msgid "Positioned color dithering" -#~ msgstr "Позиційне змішування кольорів" - -#~ msgid "General Palette Options" -#~ msgstr "Загальні параметри палітри" - -#~ msgid "Dithering Options" -#~ msgstr "Параметри змішування" - -#~ msgid "[ Warning ]" -#~ msgstr "[ Попередження ]" - -#~ 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 "" -#~ "Ви намагаєтесь перетворити зображення з альфа-каналом у індексоване.\n" -#~ "Не слід генерувати палітру більш ніж з 255 кольорів, якщо ви сподіваєтесь " -#~ "створити прозорий чи анімований GIF-файл з цього зображення." - -#~ 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 "" -#~ "Ви намагаєтесь створити зображення, початковий розмір якого дорівнює %s.\n" -#~ "\n" -#~ "Виберіть \"Гаразд\", щоб створити його.\n" -#~ "Виберіть \"Скасувати\", якщо ви не збирались створювати таке велике " -#~ "зображення.\n" -#~ "\n" -#~ "Щоб запобігти появі цього попередження, збільште значення параметру " -#~ "\"Максимальний розмір зображення\"\n" -#~ "(наразі це %s) в діалоговому вікні \"Настройка\"." - -#~ msgid "Extended" -#~ msgstr "Розширене" - -#~ msgid "File Saving" -#~ msgstr "Збереження файлів" - -#~ msgid "Pattern:" -#~ msgstr "Візерунок:" - -#~ msgid "Density:" -#~ msgstr "Щільність:" - -#~ msgid "" -#~ "Could not find the GIMP Help Browser procedure. It probably was not " -#~ "compiled because you don't have GtkHtml2 installed." -#~ msgstr "" -#~ "Не вдається знайти процедуру перегляду довідки GIMP. Можливо її не було " -#~ "скомпільовано через відсутність GtkHtml2." - -#~ msgid "Could not start GIMP Help Browser" -#~ msgstr "Не вдається знайти програму перегляду довідки GIMP" - -#~ msgid "Internal" -#~ msgstr "Внутрішній перегляд" - -#~ msgid "Black" -#~ msgstr "Чорне" - -#~ msgid "Move Floating Layer" -#~ msgstr "Переміщення плаваючого виділення" - -#~ msgid "Changes were made to '%s'." -#~ msgstr "Файл '%s' був змінений." - -#~ msgid "Unsaved changes will be lost." -#~ msgstr "Незбережені зміни будуть втрачені." - -#~ msgid "Select Custom Palette" -#~ msgstr "Вибір власної палітри" - -#~ msgid "Light Checks" -#~ msgstr "Світлі клітини" - -#~ msgid "Mid-Tone Checks" -#~ msgstr "Півтонові клітини" - -#~ msgid "Dark Checks" -#~ msgstr "Темні клітини" - -#~ msgid "White Only" -#~ msgstr "Лише біле" - -#~ msgid "Gray Only" -#~ msgstr "Лише сіре" - -#~ msgid "Black Only" -#~ msgstr "Лише чорне" - -#~ msgid "Configure input devices" -#~ msgstr "Настроїти пристрої вводу" - -#~ msgid "" -#~ "WARNING:\n" -#~ "Too many open message dialogs.\n" -#~ "Messages are redirected to stderr." -#~ msgstr "" -#~ "УВАГА:\n" -#~ "Відкрито надто багато вікон повідомлень.\n" -#~ "Повідомлення перенаправляється у stderr." - -#, fuzzy -#~ msgid "RGB color" -#~ msgstr "RGB-колір" - -#, fuzzy -#~ msgid "Indexed color" -#~ msgstr "Індексований колір" - -#, fuzzy -#~ msgid "RGB-alpha" -#~ msgstr "RGB Альфа-канал" - -#, fuzzy -#~ msgid "Grayscale-alpha" -#~ msgstr "Сірий-альфа" - -#, fuzzy -#~ msgid "Indexed-alpha" -#~ msgstr "Індексований-Альфа" - -#, fuzzy -#~ msgid "Clear Saved Keyboard Shortcuts Now" -#~ msgstr "Очистити комбінації клавіш" - -#~ msgid "Clear Saved Window Positions Now" -#~ msgstr "Очистити збережені позиції вікон" - -#, fuzzy -#~ msgid "Automatic" -#~ msgstr "/Автоматично" - -#, fuzzy -#~ msgid "File Open Menu" -#~ msgstr "Меню відкривання" - -#, fuzzy -#~ msgid "File Save Menu" -#~ msgstr "Меню збереження" - -#, fuzzy -#~ msgid "Foreground Color" -#~ msgstr "Колір _переднього плану:" - -#~ msgid "" -#~ "File '%s' exists.\n" -#~ "Overwrite it?" -#~ msgstr "" -#~ "Файл '%s' існує.\n" -#~ "Переписати?" - -#~ msgid "" -#~ "Unable to run font callback. The corresponding plug-in may have crashed." -#~ msgstr "" -#~ "Не вдається викликати шрифт. Можливо, відповідне доповнення завершилось " -#~ "аварійно." - -#~ msgid "" -#~ "Unable to run gradient callback. The corresponding plug-in may have " -#~ "crashed." -#~ msgstr "" -#~ "Не вдалось запустити градієнт. Можливо, відповідне доповнення завершилось " -#~ "аварійно." - -#, fuzzy -#~ msgid "" -#~ "Some images have unsaved changes.\n" -#~ "\n" -#~ "Really quit The GIMP?" -#~ msgstr "" -#~ "Деякі файли не збережені.\n" -#~ "\n" -#~ "Вийти з GIMP?" - -#~ msgid "" -#~ "Unable to run palette callback. The corresponding plug-in may have " -#~ "crashed." -#~ msgstr "" -#~ "Не вдається викликати палітру. Можливо, відповідне доповнення завершилось " -#~ "аварійно." - -#~ msgid "" -#~ "Unable to run pattern callback. The corresponding plug-in may have " -#~ "crashed." -#~ msgstr "" -#~ "Не вдається викликати візерунок. Можливо, відповідне доповнення " -#~ "завершилось аварійно." - -#~ msgid "Pointer Movement Feedback" -#~ msgstr "Зворотній зв'язок руху вказівника" - -#~ msgid "Select Temp Dir" -#~ msgstr "Виберіть теку тимчасових файлів" - -#, fuzzy -#~ msgid "Swap dir:" -#~ msgstr "Тека підкачки:" - -#~ msgid "Select Swap Dir" -#~ msgstr "Виберіть теку підкачки" - -#, fuzzy -#~ msgid "Don't show grid" -#~ msgstr "Не показувати сітку" - -#~ msgid "Determine File _Type:" -#~ msgstr "Визначити _тип файлу:" - -#, fuzzy -#~ msgid "Zoom to _Fit Window" -#~ msgstr "Підігнати до розмірів вікна" - -#~ msgid "Trying legacy loader on file '%s' with unknown extension." -#~ msgstr "" -#~ "Спроба застосувати старий завантажувач до файлу '%s' з невідомим " -#~ "розширенням." - -#~ msgid "Set canvas padding color" -#~ msgstr "Встановлення кольору тла навколо зображення" - -#~ msgid "Zoom to fit window" -#~ msgstr "Підігнати до розмірів вікна" - -#~ msgid "Show S_election" -#~ msgstr "Показувати _виділення" - -#~ msgid "_Undo History Preview Size:" -#~ msgstr "Розмір вікна _історії скасувань:" - -#~ msgid "Dialog Behavior" -#~ msgstr "Поведінка діалогових вікон" - -#~ msgid "_Info Window Per Display" -#~ msgstr "_Окреме інформаційне вікно для кожного зображення" - -#~ msgid "Menus" -#~ msgstr "Меню" - -#~ msgid "Enable _Tearoff Menus" -#~ msgstr "Увімкнути _відкріплення меню" - -#~ msgid "Open _Recent Menu Size:" -#~ msgstr "Розмір списку н_едавніх документів:" - -#~ msgid "Context Sensitive _Help with \"F1\"" -#~ msgstr "Контекстна _довідка через \"F1\"" - -#~ msgid "Perfect-but-Slow _Pointer Tracking" -#~ msgstr "Повільний, але точний рух _вказівника" - -#~ msgid "Enable Cursor _Updating" -#~ msgstr "Увімкнути _оновлення курсора" - -#~ msgid "8-Bit Displays" -#~ msgstr "8-бітові дисплеї" - -#~ msgid "Minimum Number of Colors:" -#~ msgstr "Мінімальна кількість кольорів:" - -#~ msgid "Install Colormap" -#~ msgstr "Встановлювати мапу кольорів" - -#~ msgid "Monitor Resolution" -#~ msgstr "Роздільна здатність монітора" - -#~ msgid "Monitor" -#~ msgstr "Монітор" - -#~ msgid "(Currently %d x %d dpi)" -#~ msgstr "(Зараз %d x %d т/дюйм)" - -#~ msgid "From _Windowing System" -#~ msgstr "З _віконної системи" - -#~ msgid "Conservative Memory Usage" -#~ msgstr "Консервативне використання пам'яті" - -#~ msgid "Only when Modified" -#~ msgstr "Лише якщо було змінене" - -#~ msgid "Always" -#~ msgstr "Завжди" - -#~ msgid "\"File -> Save\" Saves the Image:" -#~ msgstr "\"Файл -> Зберегти\" зберігає зображення:" - -#~ msgid "Session Management" -#~ msgstr "Керування сеансом" - -#~ msgid "Session" -#~ msgstr "Сеанс" - -#~ msgid "Click \"Continue\" to start The GIMP." -#~ msgstr "Клацніть \"Продовжити\" щоб запустити GIMP." - -#~ msgid "" -#~ "To display images in their natural size, GIMP needs to know your " -#~ "monitor resolution." -#~ msgstr "" -#~ "Щоб відображати зображення у натуральну величину, GIMP повинен знати " -#~ "роздільну здатність вашого монітора." - -#~ msgid "" -#~ "GIMP can obtain this information from the windowing system. However, " -#~ "usually this does not give useful values." -#~ msgstr "" -#~ "GIMP може отримувати цю інформацію від вашої віконної системи. Але " -#~ "звичайно це не дає корисних результатів." - -#~ msgid "Alternatively, you can set the monitor resolution manually." -#~ msgstr "" -#~ "Крім того, ви можете встановити роздільну здатність монітора вручну." - -#~ msgid "" -#~ "You can also press the \"Calibrate\" button to open a window which lets " -#~ "you determine your monitor resolution interactively." -#~ msgstr "" -#~ "Ви можете також натиснути кнопку \"Калібрувати\", щоб відкрити вікно " -#~ "котре дозволить вам інтерактивно визначити роздільну здатність монітора." - -#~ msgid "Calibrate" -#~ msgstr "Калібрувати" - -#~ msgid "/Tools/Selection Tools/Fu_zzy Select" -#~ msgstr "/Сервіс/Виділення/_Суміжні ділянки" - -#~ msgid "Threshold Range:" -#~ msgstr "Діапазон порогу:" - -#~ msgid "" -#~ "Activate both the \"Keep Height\" and\n" -#~ "\"Keep Width\" toggles to constrain\n" -#~ "the aspect ratio" -#~ msgstr "" -#~ "Активування \"Зберегти висоту\" та\n" -#~ "\"Зберегти широту\" вмикає збереження\n" -#~ "пропорцій" - -#~ msgid "Intensity Range:" -#~ msgstr "Інтенсивність:" - -#~ msgid "Transparent" -#~ msgstr "Прозоре" - -#~ msgid "Spiral (anticlockwise)" -#~ msgstr "Спіральна (проти годинникової)" - -#~ msgid "/Add Tab/Tool _Options" -#~ msgstr "/Додати вкладку/_Параметри інструменту" - -#~ msgid "/Add Tab/_Device Status" -#~ msgstr "/Додати вкладку/С_тан пристрою" - -#~ msgid "/Add Tab/_Layers" -#~ msgstr "/Додати вкладку/_Шари" - -#~ msgid "/Add Tab/_Channels" -#~ msgstr "/Додати вкладку/_Канали" - -#~ msgid "/Add Tab/_Paths" -#~ msgstr "/Додати вкладку/К_онтури" - -#~ msgid "/Add Tab/Inde_xed Palette" -#~ msgstr "/Додати вкладку/_Індексована палітра" - -#~ msgid "/Add Tab/Histogra_m" -#~ msgstr "/Додати вкладку/Гістогра_ма" - -#~ msgid "/Add Tab/_Selection Editor" -#~ msgstr "/Додати вкладку/Редагувати _виділення" - -#~ msgid "/Add Tab/Na_vigation" -#~ msgstr "/Додати вкладку/_Навігація" - -#~ msgid "/Add Tab/_Undo History" -#~ msgstr "/Додати вкладку/Історія _скасувань дій..." - -#~ msgid "/Add Tab/Colo_rs" -#~ msgstr "/Додати вкладку/_Кольори" - -#~ msgid "/Add Tab/Brus_hes" -#~ msgstr "/Додати вкладку/П_ензлі" - -#~ msgid "/Add Tab/P_atterns" -#~ msgstr "/Додати вкладку/В_ізерунки" - -#~ msgid "/Add Tab/_Gradients" -#~ msgstr "/Додати вкладку/_Градієнти" - -#~ msgid "/Add Tab/Pal_ettes" -#~ msgstr "/Додати вкладку/П_алітри" - -#~ msgid "/Add Tab/_Fonts" -#~ msgstr "/Додати вкладку/_Шрифти" - -#~ msgid "/Add Tab/_Buffers" -#~ msgstr "/Додати вкладку/_Буфери" - -#~ msgid "/Add Tab/_Images" -#~ msgstr "/Додати вкладку/_Зображення" - -#~ msgid "/Add Tab/Document Histor_y" -#~ msgstr "/Додати вкладку/_Недавні зображення" - -#~ msgid "/Add Tab/_Templates" -#~ msgstr "/Додати вкладку/Ша_блони" - -#~ msgid "/Add Tab/T_ools" -#~ msgstr "/Додати вкладку/_Інструменти" - -#~ msgid "/Add Tab/Error Co_nsole" -#~ msgstr "/Додати вкладку/_Консоль помилок" - -#~ msgid "/Preview Size/_Tiny" -#~ msgstr "/Розмір перегляду/_Крихітний" - -#~ msgid "/Preview Size/E_xtra Small" -#~ msgstr "/Розмір перегляду/_Дуже малий" - -#~ msgid "/Preview Size/_Small" -#~ msgstr "/Розмір перегляду/_Малий" - -#~ msgid "/Preview Size/_Medium" -#~ msgstr "/Розмір перегляду/_Середній" - -#~ msgid "/Preview Size/_Large" -#~ msgstr "/Розмір перегляду/_Великий" - -#~ msgid "/Preview Size/Ex_tra Large" -#~ msgstr "/Розмір перегляду/Д_уже великий" - -#~ msgid "/Preview Size/_Huge" -#~ msgstr "/Розмір перегляду/В_еличезний" - -#~ msgid "/Preview Size/_Enormous" -#~ msgstr "/Розмір перегляду/_Гігантський" - -#~ msgid "/Preview Size/_Gigantic" -#~ msgstr "/Розмір перегляду/К_олосальний" - -#~ msgid "/Tab Style/_Icon" -#~ msgstr "/Стиль вкладок/_Значок" - -#~ msgid "/Tab Style/Current _Status" -#~ msgstr "/Стиль вкладок/_Стан" - -#~ msgid "/Tab Style/_Text" -#~ msgstr "/Стиль вкладок/_Текст" - -#~ msgid "/Tab Style/I_con & Text" -#~ msgstr "/Стиль вкладок/З_начок та текст" - -#~ msgid "/Tab Style/St_atus & Text" -#~ msgstr "/Стиль вкладок/Ст_ан та текст" - -#~ msgid "From _Template:" -#~ msgstr "З _шаблону:" - -#~ msgid "/Load Left Color From/_Right Endpoint" -#~ msgstr "/Завантажити колір лівої точки з/Крайньої _правої" - -#~ msgid "/Load Left Color From/_FG Color" -#~ msgstr "/Завантажити колір лівої точки з/Кольору п_ереднього плану" - -#~ msgid "/Load Left Color From/_BG Color" -#~ msgstr "/Завантажити колір лівої точки з/Кольору _тла" - -#~ msgid "/Load Right Color From/_Left Endpoint" -#~ msgstr "/Завантажити колір правої точки з/Крайньої _лівої" - -#~ msgid "/Load Right Color From/_FG Color" -#~ msgstr "/Завантажити колір правої точки з/Кольору п_ереднього плану" - -#~ msgid "/Load Right Color From/_BG Color" -#~ msgstr "/Завантажити колір правої точки з/Кольору _тла" - -#~ msgid "/blendingfunction/_Linear" -#~ msgstr "/Функція змішування/_Лінійна" - -#~ msgid "/blendingfunction/_Curved" -#~ msgstr "/Функція змішування/_Крива" - -#~ msgid "/blendingfunction/_Sinusodial" -#~ msgstr "/Функція змішування/_Синусоїдальна" - -#~ msgid "/blendingfunction/(Varies)" -#~ msgstr "/Функція змішування/(Змінна)" - -#~ msgid "/coloringtype/_RGB" -#~ msgstr "/тип фарбування/_RGB" - -#~ msgid "/coloringtype/HSV (clockwise _hue)" -#~ msgstr "/тип фарбування/HSV (в_ідтінок за годинниковою стрілки)" - -#~ msgid "/coloringtype/(Varies)" -#~ msgstr "/тип фарбування/(Змінний)" - -#~ msgid "Final, Anchored Layer should be:" -#~ msgstr "В результаті, прикріплений шар має бути:" - -#~ msgid "/File/_New..." -#~ msgstr "/Файл/_Створити..." - -#~ msgid "/File/Open Recent/(None)" -#~ msgstr "/Файл/Відкрити недавні/(Немає)" - -#~ msgid "/File/Open Recent/Document _History" -#~ msgstr "/Файл/Відкрити недавні/_Історія" - -#~ msgid "/File/_Save" -#~ msgstr "/Файл/З_берегти" - -#~ msgid "/File/Re_vert" -#~ msgstr "/Файл/Від_новити..." - -#~ msgid "/File/_Close" -#~ msgstr "/Файл/_Закрити" - -#~ msgid "/Edit/_Undo" -#~ msgstr "/Правка/_Скасувати" - -#~ msgid "/Edit/_Redo" -#~ msgstr "/Правка/Повт_орити" - -#~ msgid "/Edit/Undo _History" -#~ msgstr "/Правка/_Історія скасувань" - -#~ msgid "/Edit/Cu_t" -#~ msgstr "/Правка/_Вирізати" - -#~ msgid "/Edit/_Copy" -#~ msgstr "/Правка/_Копіювати" - -#~ msgid "/Edit/_Paste" -#~ msgstr "/Правка/Вст_авити" - -#~ msgid "/Edit/Paste _Into" -#~ msgstr "/Правка/Вставити _у" - -#~ msgid "/Edit/Paste as _New" -#~ msgstr "/Правка/Вставити як _нове" - -#~ msgid "/Edit/_Buffer" -#~ msgstr "/Правка/_Буфер" - -#~ msgid "/Edit/Buffer/Cu_t Named..." -#~ msgstr "/Правка/Буфер/_Вирізати в буфер з назвою..." - -#~ msgid "/Edit/Buffer/_Copy Named..." -#~ msgstr "/Правка/Буфер/_Копіювати в буфер з назвою..." - -#~ msgid "/Edit/Cl_ear" -#~ msgstr "/Правка/О_чистити" - -#~ msgid "/Edit/Fill with _FG Color" -#~ msgstr "/Правка/Заповнити кольором _переднього плану" - -#~ msgid "/Edit/Fill with B_G Color" -#~ msgstr "/Правка/Заповнити кольором _тла" - -#~ msgid "/Edit/Fill with P_attern" -#~ msgstr "/Правка/Заповнити віз_ерунком" - -#~ msgid "/Edit/_Stroke Selection..." -#~ msgstr "/Правка/_Обвести виділене..." - -#~ msgid "/Edit/St_roke Path..." -#~ msgstr "/Правка/Обвести _за контуром" - -#~ msgid "/Select/_All" -#~ msgstr "/Виділення/_Все" - -#~ msgid "/Select/_None" -#~ msgstr "/Виділення/_Нічого" - -#~ msgid "/Select/_Invert" -#~ msgstr "/Виділення/_Інвертувати" - -#~ msgid "/Select/_Float" -#~ msgstr "/Виділення/_Плаваюче" - -#~ msgid "/Select/_By Color" -#~ msgstr "/Виділення/За _кольором" - -#~ msgid "/Select/_Sharpen" -#~ msgstr "/Виділення/Різкі_сть" - -#~ msgid "/Select/S_hrink..." -#~ msgstr "/Виділення/З_меншення..." - -#~ msgid "/Select/Toggle _QuickMask" -#~ msgstr "/Виділення/Перемикнути _швидку маску" - -#~ msgid "/Select/To _Path" -#~ msgstr "/Виділення/У к_онтур" - -#~ msgid "/View/_New View" -#~ msgstr "/Вигляд/_Створити вікно" - -#~ msgid "/View/_Zoom" -#~ msgstr "/Вигляд/Мас_штаб" - -#~ msgid "/View/Zoom/Zoom _Out" -#~ msgstr "/Вигляд/Масштаб/З_меншити" - -#~ msgid "/View/Zoom/Zoom _In" -#~ msgstr "/Вигляд/Масштаб/З_більшити" - -#~ msgid "/View/Zoom/Zoom to _Fit Window" -#~ msgstr "/Вигляд/Масштаб/_Підігнати до розмірів вікна" - -#~ msgid "/View/_Info Window" -#~ msgstr "/Вигляд/_Інформаційне вікно" - -#~ msgid "/View/Show _Selection" -#~ msgstr "/Вигляд/Показувати _виділене" - -#~ msgid "/View/Show _Layer Boundary" -#~ msgstr "/Вигляд/Показувати межі _шарів" - -#~ msgid "/View/Show _Guides" -#~ msgstr "/Вигляд/Показувати н_апрямні" - -#~ msgid "/View/S_how Grid" -#~ msgstr "/Вигляд/Показувати сіт_ку" - -#~ msgid "/View/Show _Menubar" -#~ msgstr "/Вигляд/Показувати панель _меню" - -#~ msgid "/View/Show R_ulers" -#~ msgstr "/Вигляд/Показувати _лінійки" - -#~ msgid "/View/Show Scroll_bars" -#~ msgstr "/Вигляд/Показувати смуги _прокручування" - -#~ msgid "/View/Show S_tatusbar" -#~ msgstr "/Вигляд/Показати рядок с_тану" - -#~ msgid "/View/Shrink _Wrap" -#~ msgstr "/Вигляд/Ск_оротити вікно до зображення" - -#~ msgid "/View/Move to Screen..." -#~ msgstr "/Вигляд/Перемістити на екран..." - -#~ msgid "/Image/_Mode" -#~ msgstr "/Зображення/_Режим" - -#~ msgid "/Image/Mode/_RGB" -#~ msgstr "/Зображення/Режим/_RGB" - -#~ msgid "/Image/Mode/_Grayscale" -#~ msgstr "/Зображення/Режим/Відтінки _сірого" - -#~ msgid "/Image/Mode/_Indexed..." -#~ msgstr "/Зображення/Режим/_Індексоване..." - -#~ msgid "/Image/_Transform" -#~ msgstr "/Зображення/_Перетворення" - -#~ msgid "/Image/Transform/Flip _Horizontally" -#~ msgstr "/Зображення/Перетворення/Віддзеркалити _горизонтально" - -#~ msgid "/Image/Transform/Flip _Vertically" -#~ msgstr "/Зображення/Перетворення/Віддзеркалити _вертикально" - -#~ msgid "/Image/Transform/Rotate 90 degrees _CW" -#~ msgstr "/Зображення/Перетворення/Обернути на 90° _за годинниковою" - -#~ msgid "/Image/Can_vas Size..." -#~ msgstr "/Зображення/Розмір п_олотна..." - -#~ msgid "/Image/_Scale Image..." -#~ msgstr "/Зображення/Мас_штабувати..." - -#~ msgid "/Image/_Crop Image" -#~ msgstr "/Зображення/_Кадрувати зображення" - -#~ msgid "/Image/_Duplicate" -#~ msgstr "/Зображення/Д_ублювати" - -#~ msgid "/Image/Merge Visible _Layers..." -#~ msgstr "/Зображення/_Об'єднати видимі шари..." - -#~ msgid "/Image/_Flatten Image" -#~ msgstr "/Зображення/_Звести зображення" - -#~ msgid "/Image/Configure G_rid..." -#~ msgstr "/Вигляд/Настроїти _сітку..." - -#~ msgid "/Layer/_New Layer..." -#~ msgstr "/Шар/_Створити шар..." - -#~ msgid "/Layer/Du_plicate Layer" -#~ msgstr "/Шар/Д_ублювати шар" - -#~ msgid "/Layer/Anchor _Layer" -#~ msgstr "/Шар/Прикр_іпити шар" - -#~ msgid "/Layer/Me_rge Down" -#~ msgstr "/Шар/_Об'єднати з попереднім" - -#~ msgid "/Layer/_Delete Layer" -#~ msgstr "/Шар/В_идалити шар" - -#~ msgid "/Layer/Discard _Text Information" -#~ msgstr "/Шар/Видалити _текстову інформацію" - -#~ msgid "/Layer/Stack/Select _Next Layer" -#~ msgstr "/Шар/Рівень/Виділити н_аступний шар" - -#~ msgid "/Layer/Stack/_Raise Layer" -#~ msgstr "/Шар/Рівень/_Підняти шар" - -#~ msgid "/Layer/Stack/_Lower Layer" -#~ msgstr "/Шар/Рівень/Оп_устити шар" - -#~ msgid "/Layer/Stack/Layer to T_op" -#~ msgstr "/Шар/Рівень/Зробити в_ерхнім" - -#~ msgid "/Layer/Stack/Layer to Botto_m" -#~ msgstr "/Шар/Рівень/Зробити н_ижнім" - -#~ msgid "/Layer/_Colors" -#~ msgstr "/Шар/_Кольори" - -#~ msgid "/Layer/Colors/Color _Balance..." -#~ msgstr "/Шар/Кольори/_Баланс кольорів..." - -#~ msgid "/Layer/Colors/Hue-_Saturation..." -#~ msgstr "/Шар/Кольори/Відтінок та _насиченість" - -#~ msgid "/Layer/Colors/Colori_ze..." -#~ msgstr "/Шар/Кольори/_Тонування..." - -#~ msgid "/Layer/Colors/B_rightness-Contrast..." -#~ msgstr "/Шар/Кольори/_Яскравість та контрастність..." - -#~ msgid "/Layer/Colors/_Threshold..." -#~ msgstr "/Шар/Кольори/_Поріг..." - -#~ msgid "/Layer/Colors/_Levels..." -#~ msgstr "/Шар/Кольори/_Рівні..." - -#~ msgid "/Layer/Colors/_Curves..." -#~ msgstr "/Шар/Кольори/_Криві..." - -#~ msgid "/Layer/Colors/_Posterize..." -#~ msgstr "/Шар/Кольори/П_остеризувати..." - -#~ msgid "/Layer/Colors/_Desaturate" -#~ msgstr "/Шар//Кольори/_Знебарвити" - -#~ msgid "/Layer/Colors/In_vert" -#~ msgstr "/Шар/Кольори/_Інвертувати" - -#~ msgid "/Layer/Colors/_Auto" -#~ msgstr "/Шар/Кольори/_Авто" - -#~ msgid "/Layer/Colors/Auto/_Equalize" -#~ msgstr "/Шар/Кольори/Авто/_Вирівняти" - -#~ msgid "/Layer/Colors/_Histogram" -#~ msgstr "/Шар/Кольори/_Гістограма..." - -#~ msgid "/Layer/_Mask" -#~ msgstr "/Шар/_Маска" - -#~ msgid "/Layer/Mask/_Add Layer Mask..." -#~ msgstr "/Шар/Маска/_Додати маску шару" - -#~ msgid "/Layer/Mask/A_pply Layer Mask" -#~ msgstr "/Шар/Маска/Заст_осувати маску шару" - -#~ msgid "/Layer/Mask/_Delete Layer Mask" -#~ msgstr "/Шар/Маска/В_идалити маску шару" - -#~ msgid "/Layer/Mask/_Mask to Selection" -#~ msgstr "/Шар/Маска/_Маска -> Виділене" - -#~ msgid "/Layer/Mask/_Add to Selection" -#~ msgstr "/Шар/Маска/Д_одати до виділеного" - -#~ msgid "/Layer/Mask/_Subtract from Selection" -#~ msgstr "/Шар/Маска/_Відняти від виділеного" - -#~ msgid "/Layer/Mask/_Intersect with Selection" -#~ msgstr "/Шар/Маска/_Перетнути з виділеним" - -#~ msgid "/Layer/Tr_ansparency" -#~ msgstr "/Шар/_Прозорість" - -#~ msgid "/Layer/Transparency/_Add Alpha Channel" -#~ msgstr "/Шар/Прозорість/_Додати альфа-канал" - -#~ msgid "/Layer/Transparency/Al_pha to Selection" -#~ msgstr "/Шар/Прозорість/_Альфа-канал -> Виділене" - -#~ msgid "/Layer/Transparency/A_dd to Selection" -#~ msgstr "/Шар/Прозорість/Д_одати до виділеного" - -#~ msgid "/Layer/Transparency/_Subtract from Selection" -#~ msgstr "/Шар/Прозорість/_Відняти від виділеного" - -#~ msgid "/Layer/Transparency/_Intersect with Selection" -#~ msgstr "/Шар/Прозорість/_Перетнути з виділеним" - -#~ msgid "/Layer/_Transform" -#~ msgstr "/Шар/Пере_творення" - -#~ msgid "/Layer/Transform/Flip _Horizontally" -#~ msgstr "/Шар/Перетворення/Віддзеркалити _горизонтально" - -#~ msgid "/Layer/Transform/Flip _Vertically" -#~ msgstr "/Шар/Перетворення/Віддзеркалити _вертикально" - -#~ msgid "/Layer/Transform/Rotate 90 degrees CC_W" -#~ msgstr "/Шар/Перетворення/Обернути на 90° _проти годинникової" - -#~ msgid "/Layer/Transform/Rotate _180 degrees" -#~ msgstr "/Шар/Перетворення/Обернути на _180°" - -#~ msgid "/Layer/Transform/_Offset..." -#~ msgstr "/Шар/Перетворення/З_сув..." - -#~ msgid "/Layer/Layer _Boundary Size..." -#~ msgstr "/Шар/Розмір ме_ж шару..." - -#~ msgid "/Layer/Layer to _Image Size" -#~ msgstr "/Шар/Розмір до розміру _зображення" - -#~ msgid "/Layer/_Scale Layer..." -#~ msgstr "/Шар/Мас_штабувати шар..." - -#~ msgid "/Layer/Cr_op Layer" -#~ msgstr "/Шар/К_адрувати шар" - -#~ msgid "/Tools/Tool_box" -#~ msgstr "/Сервіс/Панель _інструментів" - -#~ msgid "/Tools/_Paint Tools" -#~ msgstr "/Сервіс/_Малювання" - -#~ msgid "/Dialogs/Create New Dock/_Misc. Stuff" -#~ msgstr "/Діалоги/Створити нову панель/_Різне" - -#~ msgid "/Dialogs/Tool _Options" -#~ msgstr "/Діалоги/Параметри інс_трументів" - -#~ msgid "/Dialogs/_Device Status" -#~ msgstr "/Діалоги/_Стан пристрою" - -#~ msgid "/Dialogs/_Layers" -#~ msgstr "/Діалоги/_Шари" - -#~ msgid "/Dialogs/_Channels" -#~ msgstr "/Діалоги/К_анали" - -#~ msgid "/Dialogs/_Paths" -#~ msgstr "/Діалоги/К_онтури" - -#~ msgid "/Dialogs/Inde_xed Palette" -#~ msgstr "/Діалоги/_Індексована палітра" - -#~ msgid "/Dialogs/Histogra_m" -#~ msgstr "/Діалоги/_Гістограма" - -#~ msgid "/Dialogs/_Selection Editor" -#~ msgstr "/Діалоги/_Редактор виділення" - -#~ msgid "/Dialogs/Na_vigation" -#~ msgstr "/Діалоги/_Навігація" - -#~ msgid "/Dialogs/_Undo History" -#~ msgstr "/Діалоги/Історі_я скасувань" - -#~ msgid "/Dialogs/Colo_rs" -#~ msgstr "/Діалоги/_Кольори" - -#~ msgid "/Dialogs/Brus_hes" -#~ msgstr "/Діалоги/П_ензлі" - -#~ msgid "/Dialogs/P_atterns" -#~ msgstr "/Діалоги/_Візерунки..." - -#~ msgid "/Dialogs/_Gradients" -#~ msgstr "/Діалоги/Граді_єнти" - -#~ msgid "/Dialogs/Pal_ettes" -#~ msgstr "/Діалоги/Па_літри" - -#~ msgid "/Dialogs/_Fonts" -#~ msgstr "/Діалоги/Шри_фти" - -#~ msgid "/Dialogs/_Buffers" -#~ msgstr "/Діалоги/_Буфери" - -#~ msgid "/Dialogs/_Images" -#~ msgstr "/Діалоги/_Зображення" - -#~ msgid "/Dialogs/Document Histor_y" -#~ msgstr "/Діалоги/Не_давні зображення" - -#~ msgid "/Dialogs/_Templates" -#~ msgstr "/Діалоги/_Шаблони" - -#~ msgid "/Dialogs/T_ools" -#~ msgstr "/Діалоги/Інстр_ументи" - -#~ msgid "/Dialogs/Error Co_nsole" -#~ msgstr "/Діалоги/Консоль _помилок" - -#~ msgid "/Filters/Repeat Last" -#~ msgstr "/Фільтри/Повторити останній" - -#~ msgid "/Filters/Re-Show Last" -#~ msgstr "/Фільтри/Показати останній" - -#~ msgid "/Filters/_Blur" -#~ msgstr "/Фільтри/_Розмивання" - -#~ msgid "/Filters/_Colors" -#~ msgstr "/Фільтри/_Кольори" - -#~ msgid "/Filters/Colors/Ma_p" -#~ msgstr "/Фільтри/Кольори/_Відображення" - -#~ msgid "/Filters/_Noise" -#~ msgstr "/Фільтри/_Шум" - -#~ msgid "/Filters/_Generic" -#~ msgstr "/Фільтри/_Загальні" - -#~ msgid "/Filters/_Map" -#~ msgstr "/Фільтри/_Відображення" - -#~ msgid "/Filters/_Render" -#~ msgstr "/Фільтри/В_ізуалізація" - -#~ msgid "/Filters/Render/_Clouds" -#~ msgstr "/Фільтри/Візуалізація/Пл_ями" - -#~ msgid "/Filters/Render/_Nature" -#~ msgstr "/Фільтри/Візуалізація/_Природа" - -#~ msgid "/Filters/Render/_Pattern" -#~ msgstr "/Фільтри/Візуалізація/_Візерунок" - -#~ msgid "/Filters/_Web" -#~ msgstr "/Фільтри/В_еб" - -#~ msgid "/Filters/To_ys" -#~ msgstr "/Фільтри/_Розваги" - -#~ msgid "Offset _X:" -#~ msgstr "Зсув по _X:" - -#~ msgid "_Wrap" -#~ msgstr "Пере_нести" - -#~ msgid "Show reversed zoom ratio" -#~ msgstr "Показувати зворотній масштабний коефіцієнт" - -#~ msgid "Window Type Hints" -#~ msgstr "Стиль вікон" - -#~ msgid "Qmask Attributes" -#~ msgstr "Ознаки швидкої маски" - -#~ msgid "Resolution X:" -#~ msgstr "Роздільна здатність X:" - -#~ msgid "Stroke" -#~ msgstr "Обвести" - -#~ msgid "/Save Options to/_New Entry..." -#~ msgstr "/З_берегти параметри як/_Новий файл" - -#~ msgid "/Restore Options from/(None)" -#~ msgstr "/_Завантажити параметри з/(Немає)" - -#~ msgid "/Rename Saved Options/(None)" -#~ msgstr "/Перейменувати збережені параметри/(Немає)" - -#~ msgid "/Delete Saved Options/(None)" -#~ msgstr "/Видалити збережені параметри/(Немає)" - -#~ msgid "/File/_Preferences" -#~ msgstr "/Файл/Н_астройка" - -#~ msgid "/File/_Dialogs" -#~ msgstr "/Файл/_Діалоги" - -#~ msgid "/File/Dialogs/Create New Doc_k" -#~ msgstr "/Файл/Діалоги/Створити нову _панель" - -#~ msgid "/File/Dialogs/Create New Dock/_Layers, Channels & Paths" -#~ msgstr "/Файл/Діалоги/Створити нову панель/_Шари, канали та контури" - -#~ msgid "/File/Dialogs/Create New Dock/_Brushes, Patterns & Gradients" -#~ msgstr "/Файл/Діалоги/Створити нову панель/_Пензлі, палітри та градієнти" - -#~ msgid "/File/Dialogs/Create New Dock/_Misc. Stuff" -#~ msgstr "/Файл/Діалоги/Створити нову панель/_Різне" - -#~ msgid "/File/Dialogs/Tool _Options" -#~ msgstr "/Файл/Діалоги/_Параметри інструментів" - -#~ msgid "/File/Dialogs/_Device Status" -#~ msgstr "/Файл/Діалоги/_Стан пристрою" - -#~ msgid "/File/Dialogs/_Layers" -#~ msgstr "/Файл/Діалоги/_Шари" - -#~ msgid "/File/Dialogs/_Channels" -#~ msgstr "/Файл/Діалоги/_Канали" - -#~ msgid "/File/Dialogs/_Paths" -#~ msgstr "/Файл/Діалоги/К_онтури" - -#~ msgid "/File/Dialogs/Inde_xed Palette" -#~ msgstr "/Файл/Діалоги/_Індексована палітра" - -#~ msgid "/File/Dialogs/Histogra_m" -#~ msgstr "/Файл/Діалоги/_Гістограма" - -#~ msgid "/File/Dialogs/_Selection Editor" -#~ msgstr "/Файл/Діалоги/_Редактор виділення" - -#~ msgid "/File/Dialogs/Na_vigation" -#~ msgstr "/Файл/Діалоги/_Навігація" - -#~ msgid "/File/Dialogs/_Undo History" -#~ msgstr "/Файл/Діалоги/Історія _скасувань дій" - -#~ msgid "/File/Dialogs/Colo_rs" -#~ msgstr "/Файл/Діалоги/_Кольори" - -#~ msgid "/File/Dialogs/Brus_hes" -#~ msgstr "/Файл/Діалоги/_Пензлі" - -#~ msgid "/File/Dialogs/P_atterns" -#~ msgstr "/Файл/Діалоги/_Візерунки" - -#~ msgid "/File/Dialogs/_Gradients" -#~ msgstr "/Файл/Діалоги/Г_радієнти" - -#~ msgid "/File/Dialogs/Pal_ettes" -#~ msgstr "/Файл/Діалоги/П_алітри" - -#~ msgid "/File/Dialogs/_Fonts" -#~ msgstr "/Файл/Діалоги/Ш_рифти" - -#~ msgid "/File/Dialogs/_Buffers" -#~ msgstr "/Файл/Діалоги/_Буфери" - -#~ msgid "/File/Dialogs/_Images" -#~ msgstr "/Файл/Діалоги/_Зображення" - -#~ msgid "/File/Dialogs/Document Histor_y" -#~ msgstr "/Файл/Діалоги/Історія документів..." - -#~ msgid "/File/Dialogs/_Templates" -#~ msgstr "/Файл/Діалоги/Зображення" - -#~ msgid "/File/Dialogs/T_ools" -#~ msgstr "/Файл/Діалоги/Інстр_ументи" - -#~ msgid "/File/Dialogs/Error Co_nsole" -#~ msgstr "/Файл/Діалоги/К_онсоль помилок" - -#~ msgid "/File/D_ebug" -#~ msgstr "/Файл/_Налагодження" - -#~ msgid "/Xtns/_Module Manager" -#~ msgstr "/Розш./_Менеджер модулів" - -#~ msgid "/Help/_Help" -#~ msgstr "/Довідка/_Довідка" - -#~ msgid "/Help/_About" -#~ msgstr "/Довідка/_Про програму" - -#~ msgid "Aborting Installation..." -#~ msgstr "Переривання встановлення..." - -#~ msgid "/Tools/Paint Tools/_Airbrush" -#~ msgstr "/Сервіс/Малювання/_Аерограф" - -#~ msgid "/Tools/Paint Tools/Blen_d" -#~ msgstr "/Сервіс/Малювання/Заповнення _градієнтом" - -#~ msgid "/Tools/Color Tools/B_rightness-Contrast..." -#~ msgstr "/Сервіс/Колір/_Яскравість-контраст..." - -#~ msgid "/Tools/Paint Tools/_Bucket Fill" -#~ msgstr "/Сервіс/Малювання/_Заповнення" - -#~ msgid "/Tools/Selection Tools/_By Color Select" -#~ msgstr "/Сервіс/Виділення/За _кольором" - -#~ msgid "/Tools/Paint Tools/_Clone" -#~ msgstr "/Сервіс/Малювання/_Штамп" - -#~ msgid "/Tools/Color Tools/Color _Balance..." -#~ msgstr "/Сервіс/Колір/_Баланс кольорів..." - -#~ msgid "/Tools/Color Tools/Colori_ze..." -#~ msgstr "/Сервіс/Колір/_Тонування..." - -#~ msgid "/Tools/C_olor Picker" -#~ msgstr "/Сервіс/_Піпетка" - -#~ msgid "/Tools/Paint Tools/Con_volve" -#~ msgstr "/Сервіс/Малювання/_Розмивання" - -#~ msgid "/Tools/Transform Tools/_Crop & Resize" -#~ msgstr "/Сервіс/Перетворення/_Кадрування і зміна розміру" - -#~ msgid "/Tools/Color Tools/_Curves..." -#~ msgstr "/Сервіс/Колір/_Криві..." - -#~ msgid "/Tools/Paint Tools/Dod_geBurn" -#~ msgstr "/Сервіс/Малювання/_Освітлення-затемнення" - -#~ msgid "/Tools/Selection Tools/_Ellipse Select" -#~ msgstr "/Сервіс/Виділення/_Еліпс" - -#~ msgid "/Tools/Paint Tools/_Eraser" -#~ msgstr "/Сервіс/Малювання/Г_умка" - -#~ msgid "/Tools/Transform Tools/_Flip" -#~ msgstr "/Сервіс/Перетворення/_Дзеркало" - -#~ msgid "/Tools/Selection Tools/_Free Select" -#~ msgstr "/Сервіс/Виділення/_Вільне виділення" - -#~ msgid "/Tools/Color Tools/Hue-_Saturation..." -#~ msgstr "/Сервіс/Колір/Відтінок і _насиченість" - -#~ msgid "/Tools/Paint Tools/In_k" -#~ msgstr "/Сервіс/Малювання/_Перо" - -#~ msgid "/Tools/Color Tools/_Levels..." -#~ msgstr "/Сервіс/Колір/_Рівні..." - -#~ msgid "Allow Window Resizing" -#~ msgstr "Дозволити зміну розмірів вікна" - -#~ msgid "/Tools/M_agnify" -#~ msgstr "/Сервіс/_Лупа" - -#~ msgid "/Tools/_Measure" -#~ msgstr "/Сервіс/Ви_мірювач" - -#~ msgid "/Tools/Transform Tools/_Move" -#~ msgstr "/Сервіс/Перетворення/Пере_міщення" - -#~ msgid "/Tools/Paint Tools/_Paintbrush" -#~ msgstr "/Сервіс/Малювання/П_ензель" - -#~ msgid "/Tools/Paint Tools/Pe_ncil" -#~ msgstr "/Сервіс/Малювання/_Олівець" - -#~ msgid "/Tools/Transform Tools/_Perspective" -#~ msgstr "/Сервіс/Перетворення/_Перспектива" - -#~ msgid "/Tools/Color Tools/_Posterize..." -#~ msgstr "/Сервіс/Колір/П_остеризація..." - -#~ msgid "/Tools/Selection Tools/_Rect Select" -#~ msgstr "/Сервіс/Виділення/_Прямокутник" - -#~ msgid "/Tools/Transform Tools/_Rotate" -#~ msgstr "/Сервіс/Перетворення/_Обертання" - -#~ msgid "/Tools/Transform Tools/_Scale" -#~ msgstr "/Сервіс/Перетворення/Мас_штабування" - -#~ msgid "/Tools/Transform Tools/S_hear" -#~ msgstr "/Сервіс/Перетворення/_Викривлення" - -#~ msgid "/Tools/Paint Tools/_Smudge" -#~ msgstr "/Сервіс/Малювання/П_алець" - -#~ msgid "/Tools/Te_xt" -#~ msgstr "/Інструменти/_Текст" - -#~ msgid "/Tools/Color Tools/_Threshold..." -#~ msgstr "/Сервіс/Колір/_Поріг..." - -#~ msgid "/Tools/_Paths" -#~ msgstr "/Сервіс/К_онтури" - -#~ msgid "Delete" -#~ msgstr "Видалити" - -#~ msgid "FG" -#~ msgstr "ПП" - -#~ msgid "BG" -#~ msgstr "Тло" - -#~ msgid "Edit Foreground Color" -#~ msgstr "Змінити колір переднього плану" - -#~ msgid "New" -#~ msgstr "Створити" - -#~ msgid "Refresh" -#~ msgstr "Оновити" - -#~ msgid "Stroke _Width:" -#~ msgstr "Тов_щина лінії:" - -#~ msgid "Style" -#~ msgstr "Стиль" - -#~ msgid "Image Comment" -#~ msgstr "Коментар зображення" - -#~ msgid "%s Options" -#~ msgstr "Параметри: %s" +#~ msgstr "Фіксовані пропорції" diff -uraN gimp-2.2.4/po/zh_CN.gmo gimp-2.2.5/po/zh_CN.gmo --- gimp-2.2.4/po/zh_CN.gmo 2005-02-12 14:38:01.000000000 +0100 +++ gimp-2.2.5/po/zh_CN.gmo 2005-04-09 21:48:07.000000000 +0200 @@ -487,6 +487,6 @@ The GIMP %d.%d 用户安装如果启用,对话框将自动跟随您工作的图像。如果启用,GIMP 将在菜单中显示助记符。如果启用,所有涂画工具都将显示当前画笔的轮廓预览。如果启用,当对应的图像窗口获得焦点时,图像将成为活动图像。这对使用“点击获取焦点”的窗口管理器有用。如果启用,对话框中将显示一个到达相关帮助页面的按钮。如果没有这个按钮,仍然可以按 F1 打开帮助页面。如果启用,菜单可被撕下。如果启用,按 F1 将打开帮助浏览器。如果启用,如果图像自打开以来没有被修改,GIMP 将不会保存。如果启用,GIMP 将为每个图像视图使用不同的信息窗口。如果启用,每次移动鼠标的时候都将向 X 服务器查询当前的鼠标位置,而不是依赖于位置提示。这意味着用大的画笔涂画的时候将更加精确,不过可能也更慢。反常的是,在某些 X 服务器上启用该选项将会加快涂画速度。如果启用,当使用涂画工具时,光标将显示在图像上方。如果启用,网格将默认可见。这也可以通过“查看->显示网格”命令进行切换。如果启用,参考线将默认可见。这也可以通过“查看->显示参考线”命令进行切换。如果启用,当放大或缩小查看图像时,图像窗口大小将自动重置。如果启用,当图像实际大小发生变化时,图像窗口大小将自动重置。如果启用,图层边界将默认可见。这也可以通过“查看->显示图层边界”命令进行切换。如果启用,菜单栏将默认可见。这也可以通过“查看->显示菜单栏”命令进行切换。如果启用,标尺将默认可见。这也可以通过“查看->显示标尺”命令进行切换。如果启用,滚动条将默认可见。这也可以通过“查看->显示滚动条”命令进行切换。如果启用,所有的工具都将使用选中的画笔。如果启用,所有的工具都将使用选中的渐变。如果启用,所有的工具都将使用选中的图案。如果启用,选区将默认可见。这也可以通过“查看->显示选区”命令进行切换。如果启用,状态栏将默认可见。这也可以通过“查看->显示状态栏”命令进行切换。如果启用,将确保图像的每个点都对应屏幕上的一个像素。如果启用,将确保打开文件以后图像完整可见,否则将按 1:1 的比例来显示。如果启用,您只要按一个键盘组合就可以即时改变突出显示的菜单项的快捷键。白色只能对 RGB 颜色的图层进行白平衡操作。宽度宽度:窗口管理窗口管理器提示窗口位置正在写入“%s” XXCF 错误:遇到不支持的 XCF 文件版本 %dXCF 警告:版本 0 的 XCF 文件格式 不能正确的保存索引颜色表。 -用灰度颜色表取代。Y黄色黄色:您正试图创建一幅大小为 %s 的图像。您可以将可停靠的对话框放在这里。您应该已经跟本程序一起收到一份 GNU 通用公共许可证;如果没有,请写信至:Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.您需要重新启动 GIMP 以使下列改变生效:您的输入设备设置将在下次您启动 GIMP 的时候重置到默认值。您的快捷键将在下次您启动 GIMP 的时候重置到默认值。您的窗口设置将在下次您启动 GIMP 的时候重置到默认值。缩放和改变大小行为缩放 1:1完整显示放大缩小缩放比率缩放比率:完整显示(_A)放大(_I)缩小(_O)完整显示缩放因子:%d:1当窗口大小改变时缩放图像放大放大和缩小缩小缩放:[ 原始图像 ]关于(_A)获取(_A)添加背景色(_A)添加前景色(_A)添加页签(_A)添加到选区(_A)高级选项(_A)喷枪(_A)全部(_A)固定图层(_A)边缘平滑(_A)任意旋转(_A)...艺术(_A)宽高比(_A)自动(_A)蓝(_B)背景色(_B)背景色(_B):黑色(全透明)(_B)段混和函数(_B)选区的混和函数(_B)模糊(_B)亮度(_B):画笔(_B)画笔(_B)画笔、图案和渐变(_B)油漆桶填充(_B)缓冲区(_B)按颜色(_B)按颜色选择(_B)青(_C)帽盖风格(_C):通道(_C)清除错误(_C)清除撤销历史(_C)克隆(_C)克隆(_C)关闭页签(_C)云彩(_C)颜色工具(_C)颜色(_C)配置颜色和不透明度(_C)...环境(_C)环境帮助(_C)复制(_C)命名复制(_C)...从模板创建图像(_C)...剪裁和改变大小(_C)剪裁图像(_C)曲线(_C)曲线(_C)...深色方格的颜色(_D)默认颜色(_D)删除画笔(_D)删除缓冲区(_D)删除通道(_D)删除颜色(_D)删除渐变(_D)...删除图像(_D)删除图层(_D)删除色板(_D)删除路径(_D)删除图案(_D)...删除已保存的选项(_D)删除段(_D)删除选中区域(_D)删除模板(_D)去色(_D)漂移页签(_D)设备状态(_D)对话框(_D)放弃修改(_D)放弃文字信息(_D)扭曲(_D)点对点(_D)复制(_D)编辑(_E)编辑画笔(_E)...编辑通道属性(_E)...编辑颜色(_E)...编辑渐变(_E)...编辑图层属性(_E)...编辑色板(_E)...编辑路径属性(_E)...编辑图案(_E)...编辑模板(_E)...椭圆选择(_E)启用图层和通道预览(_E)巨大(_E)色调均化(_E)橡皮(_E)前景色(_F)文件(_F)填充(_F):图像适配于窗口(_F)平整图像(_F)翻转(_F)翻转段(_F)翻转选区(_F)浮动(_F)字体(_F)字体(_F)前景色(_F):自由选择(_F)绿(_G)通用(_G)极大(_G)渐变(_G)渐变(_G)灰度(_G)图层的灰度副本(_G)增长(_G)...参考线(_G)硬度(_H)帮助(_H)水平(_H):色调(_H):庞大(_H)图标(_I)图标(_I):图像(_I)图像(_I)导入(_I)导入色板(_I)...索引(_I)...信息窗口(_I)与选区相交(_I)反转(_I)接合风格(_J):大(_L)图层(_L)图层(_L)图层、通道和路径(_L)左端点(_L)左邻的右端点(_L)色阶(_L)...浅色方格的颜色(_L)光线效果(_L)亮度(_L):线风格(_L)线性(_L)链接(_L)左端颜色加载自(_L)降低通道(_L)降低图层(_L)降低路径(_L)品(_M)手工(_M)映射(_M)蒙板(_M)蒙板到选区(_M)最大颜色数量(_M):测量(_M)中(_M)合并色板(_M)...合并导入的路径(_M)移植 GIMP 2.0 的用户设置(_M)杂项(_M)斜接限制(_M):模式(_M)模块管理器(_M)移动(_M)名字(_N):自然(_N)新建画笔(_N)新建通道(_N)新建通道(_N)...新建路径(_N)...新建渐变(_N)新建图层(_N)新建图层(_N)...新建色板(_N)新建路径(_N)新建路径(_N)...新建图案(_N)新建模板(_N)...新建视图(_N)新建(_N)...后一条提示(_N)噪音(_N)无(_N)位移(_O)...不透明度(_O)打开图像(_O)打开(_O)...衬垫颜色(_P)涂画工具(_P)画笔(_P)色板(_P)粘贴(_P)粘贴缓冲区(_P)命名粘贴(_P)...路径(_P)图案(_P)透视(_P)海报效果(_P)...首选项(_P)预览(_P)预览大小(_P)前一条提示(_P)打印大小(_P)...透视(_P)快速蒙板激活(_Q)退出(_Q)红(_R)RGB(_R)半径(_R)升高通道(_R)升高图层(_R)升高路径(_R)升高视图(_R)升高或打开图像(_R)重新分配快捷键(_R)矩形选择(_R)重做(_R)重做 %s(_R)刷新画笔(_R)刷新渐变(_R)刷新色板(_R)刷新图案(_R)从最终色板中删除没有被使用的颜色(_R)绘制(_R)替换(_R)复制段(_R)...复制选区(_R)...重新扫描字体列表(_R)重置顺序及可见属性(_R)重置已保存的输入设备设置到默认值(_R)重置已保存的快捷键到默认置(_R)重置已保存的窗口位置到默认值(_R)选项恢复自(_R)右端点(_R)右邻的左端点(_R)旋转(_R)饱和度(_S):保存(_S)保存左端颜色到(_S)选项保存到(_S)退出时保存输入设备设置(_S)退出时保存快捷键(_S)退出时保存窗口位置(_S)缩放(_S)缩放图像(_S)...缩放图层(_S)...缩放导入的路径使之与图像匹配(_S)选择(_S)选区(_S)选区编辑器(_S)选择工具(_S)形状(_S)锐化(_S)显示图像选区(_S)在工具箱中显示(_S)正弦(_S)小(_S)涂抹(_S)吸附距离(_S):勾画选区(_S)勾画选区(_S)...从选区中减去(_S)页签风格(_T)模板(_T):模板(_T)文字(_T)阈值(_T)...细小(_T)每日提示(_T)工具(_T)工具(_T)转移图层的 Alpha 通道(_T)变换(_T)变换工具(_T)撤销(_U)撤销 %s(_U)垂直(_V):查看(_V)可见(_V)网页(_W)要使用的 Web 浏览器(_W):白色(全不透明)(_W)白平衡(_W)宽度(_W):环绕(_W)X 分辨率(_X):X(_X):扩展(_X)黄(_Y)Y 分辨率(_Y):Y(_Y):缩放(_Z)缩放(_Z) (%s)色副本dpi期待布尔值 %s 为“yes”或“no”,但得到“%s”严重解析错误灰度灰度-空英寸英寸索引索引-空无效的 UTF-8 字符串图标类型“%ld”无效%2$s 的值“%1$ld”无效图标类型“%s”无效%2$s 的值“%1$s”无效毫米毫米 1 分钟n/a百分点派卡派卡像素像素像素/%a像素/%s点点 1 秒钟tips-locale:zh_CNYuheng Xie +用灰度颜色表取代。Y黄色黄色:您正试图创建一幅大小为 %s 的图像。您可以将可停靠的对话框放在这里。您应该已经跟本程序一起收到一份 GNU 通用公共许可证;如果没有,请写信至:Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.您需要重新启动 GIMP 以使下列改变生效:您的输入设备设置将在下次您启动 GIMP 的时候重置到默认值。您的快捷键将在下次您启动 GIMP 的时候重置到默认值。您的窗口设置将在下次您启动 GIMP 的时候重置到默认值。缩放和改变大小行为缩放 1:1完整显示放大缩小缩放比率缩放比率:完整显示(_A)放大(_I)缩小(_O)完整显示缩放因子:%d:1当窗口大小改变时缩放图像放大放大和缩小缩小缩放:[ 原始图像 ]关于(_A)获取(_A)添加背景色(_A)添加前景色(_A)添加页签(_A)添加到选区(_A)高级选项(_A)喷枪(_A)全部(_A)固定图层(_A)边缘平滑(_A)任意旋转(_A)...艺术(_A)宽高比(_A)自动(_A)蓝(_B)背景色(_B)背景色(_B):黑色(全透明)(_B)段混和函数(_B)选区的混和函数(_B)模糊(_B)亮度(_B):画笔(_B)画笔(_B)画笔、图案和渐变(_B)油漆桶填充(_B)缓冲区(_B)按颜色(_B)按颜色选择(_B)青(_C)帽盖风格(_C):通道(_C)清除错误(_C)清除撤销历史(_C)克隆(_C)关闭(_C)关闭页签(_C)云彩(_C)颜色工具(_C)颜色(_C)配置颜色和不透明度(_C)...环境(_C)环境帮助(_C)复制(_C)命名复制(_C)...从模板创建图像(_C)...剪裁和改变大小(_C)剪裁图像(_C)曲线(_C)曲线(_C)...深色方格的颜色(_D)默认颜色(_D)删除画笔(_D)删除缓冲区(_D)删除通道(_D)删除颜色(_D)删除渐变(_D)...删除图像(_D)删除图层(_D)删除色板(_D)删除路径(_D)删除图案(_D)...删除已保存的选项(_D)删除段(_D)删除选中区域(_D)删除模板(_D)去色(_D)漂移页签(_D)设备状态(_D)对话框(_D)放弃修改(_D)放弃文字信息(_D)扭曲(_D)点对点(_D)复制(_D)编辑(_E)编辑画笔(_E)...编辑通道属性(_E)...编辑颜色(_E)...编辑渐变(_E)...编辑图层属性(_E)...编辑色板(_E)...编辑路径属性(_E)...编辑图案(_E)...编辑模板(_E)...椭圆选择(_E)启用图层和通道预览(_E)巨大(_E)色调均化(_E)橡皮(_E)前景色(_F)文件(_F)填充(_F):图像适配于窗口(_F)平整图像(_F)翻转(_F)翻转段(_F)翻转选区(_F)浮动(_F)字体(_F)字体(_F)前景色(_F):自由选择(_F)绿(_G)通用(_G)极大(_G)渐变(_G)渐变(_G)灰度(_G)图层的灰度副本(_G)增长(_G)...参考线(_G)硬度(_H)帮助(_H)水平(_H):色调(_H):庞大(_H)图标(_I)图标(_I):图像(_I)图像(_I)导入(_I)导入色板(_I)...索引(_I)...信息窗口(_I)与选区相交(_I)反转(_I)接合风格(_J):大(_L)图层(_L)图层(_L)图层、通道和路径(_L)左端点(_L)左邻的右端点(_L)色阶(_L)...浅色方格的颜色(_L)光线效果(_L)亮度(_L):线风格(_L)线性(_L)链接(_L)左端颜色加载自(_L)降低通道(_L)降低图层(_L)降低路径(_L)品(_M)手工(_M)映射(_M)蒙板(_M)蒙板到选区(_M)最大颜色数量(_M):测量(_M)中(_M)合并色板(_M)...合并导入的路径(_M)移植 GIMP 2.0 的用户设置(_M)杂项(_M)斜接限制(_M):模式(_M)模块管理器(_M)移动(_M)名字(_N):自然(_N)新建画笔(_N)新建通道(_N)新建通道(_N)...新建路径(_N)...新建渐变(_N)新建图层(_N)新建图层(_N)...新建色板(_N)新建路径(_N)新建路径(_N)...新建图案(_N)新建模板(_N)...新建视图(_N)新建(_N)...后一条提示(_N)噪音(_N)无(_N)位移(_O)...不透明度(_O)打开图像(_O)打开(_O)...衬垫颜色(_P)涂画工具(_P)画笔(_P)色板(_P)粘贴(_P)粘贴缓冲区(_P)命名粘贴(_P)...路径(_P)图案(_P)透视(_P)海报效果(_P)...首选项(_P)预览(_P)预览大小(_P)前一条提示(_P)打印大小(_P)...透视(_P)快速蒙板激活(_Q)退出(_Q)红(_R)RGB(_R)半径(_R)升高通道(_R)升高图层(_R)升高路径(_R)升高视图(_R)升高或打开图像(_R)重新分配快捷键(_R)矩形选择(_R)重做(_R)重做 %s(_R)刷新画笔(_R)刷新渐变(_R)刷新色板(_R)刷新图案(_R)从最终色板中删除没有被使用的颜色(_R)绘制(_R)替换(_R)复制段(_R)...复制选区(_R)...重新扫描字体列表(_R)重置顺序及可见属性(_R)重置已保存的输入设备设置到默认值(_R)重置已保存的快捷键到默认置(_R)重置已保存的窗口位置到默认值(_R)选项恢复自(_R)右端点(_R)右邻的左端点(_R)旋转(_R)饱和度(_S):保存(_S)保存左端颜色到(_S)选项保存到(_S)退出时保存输入设备设置(_S)退出时保存快捷键(_S)退出时保存窗口位置(_S)缩放(_S)缩放图像(_S)...缩放图层(_S)...缩放导入的路径使之与图像匹配(_S)选择(_S)选区(_S)选区编辑器(_S)选择工具(_S)形状(_S)锐化(_S)显示图像选区(_S)在工具箱中显示(_S)正弦(_S)小(_S)涂抹(_S)吸附距离(_S):勾画选区(_S)勾画选区(_S)...从选区中减去(_S)页签风格(_T)模板(_T):模板(_T)文字(_T)阈值(_T)...细小(_T)每日提示(_T)工具(_T)工具(_T)转移图层的 Alpha 通道(_T)变换(_T)变换工具(_T)撤销(_U)撤销 %s(_U)垂直(_V):查看(_V)可见(_V)网页(_W)要使用的 Web 浏览器(_W):白色(全不透明)(_W)白平衡(_W)宽度(_W):环绕(_W)X 分辨率(_X):X(_X):扩展(_X)黄(_Y)Y 分辨率(_Y):Y(_Y):缩放(_Z)缩放(_Z) (%s)色副本dpi期待布尔值 %s 为“yes”或“no”,但得到“%s”严重解析错误灰度灰度-空英寸英寸索引索引-空无效的 UTF-8 字符串图标类型“%ld”无效%2$s 的值“%1$ld”无效图标类型“%s”无效%2$s 的值“%1$s”无效毫米毫米 1 分钟n/a百分点派卡派卡像素像素像素/%a像素/%s点点 1 秒钟tips-locale:zh_CNYuheng Xie Funda Wang Cai Qian%s 的值不是有效的 UTF-8 字符串解析“%s”时:%s \ No newline at end of file diff -uraN gimp-2.2.4/po/zh_CN.po gimp-2.2.5/po/zh_CN.po --- gimp-2.2.4/po/zh_CN.po 2005-02-08 14:42:52.000000000 +0100 +++ gimp-2.2.5/po/zh_CN.po 2005-04-09 21:46:24.000000000 +0200 @@ -2995,7 +2995,7 @@ #: app/actions/view-actions.c:73 msgid "_Close" -msgstr "克隆(_C)" +msgstr "关闭(_C)" #: app/actions/view-actions.c:78 msgid "_Fit Image in Window" diff -uraN gimp-2.2.4/po-libgimp/bg.gmo gimp-2.2.5/po-libgimp/bg.gmo --- gimp-2.2.4/po-libgimp/bg.gmo 2005-02-22 23:12:23.000000000 +0100 +++ gimp-2.2.5/po-libgimp/bg.gmo 2005-04-09 23:09:09.000000000 +0200 @@ -5,7 +5,7 @@ >Iau  BlueFolderGreenMerge Visible LayersRedValueYellow_Edit_Rotate_TransformProject-Id-Version: gimp 2-2 Report-Msgid-Bugs-To: -POT-Creation-Date: 2005-02-22 23:04+0100 +POT-Creation-Date: 2005-04-09 21:56+0200 PO-Revision-Date: 2005-02-18 19:49+0200 Last-Translator: Alexander Shopov Language-Team: Bulgarian diff -uraN gimp-2.2.4/po-libgimp/bg.po gimp-2.2.5/po-libgimp/bg.po --- gimp-2.2.4/po-libgimp/bg.po 2005-02-22 23:12:19.000000000 +0100 +++ gimp-2.2.5/po-libgimp/bg.po 2005-04-09 23:09:04.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: gimp 2-2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-02-22 23:04+0100\n" +"POT-Creation-Date: 2005-04-09 21:56+0200\n" "PO-Revision-Date: 2005-02-18 19:49+0200\n" "Last-Translator: Alexander Shopov \n" "Language-Team: Bulgarian \n" diff -uraN gimp-2.2.4/po-libgimp/ca.gmo gimp-2.2.5/po-libgimp/ca.gmo --- gimp-2.2.4/po-libgimp/ca.gmo 2005-02-22 23:12:23.000000000 +0100 +++ gimp-2.2.5/po-libgimp/ca.gmo 2005-04-09 23:09:09.000000000 +0200 @@ -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_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: 2005-02-22 23:04+0100 +POT-Creation-Date: 2005-04-09 21:56+0200 PO-Revision-Date: 2004-12-29 17:42+0100 Last-Translator: Xavier Beà Language-Team: softcatala diff -uraN gimp-2.2.4/po-libgimp/ca.po gimp-2.2.5/po-libgimp/ca.po --- gimp-2.2.4/po-libgimp/ca.po 2005-02-22 23:12:20.000000000 +0100 +++ gimp-2.2.5/po-libgimp/ca.po 2005-04-09 23:09:04.000000000 +0200 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: gimp-libgimp\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-02-22 23:04+0100\n" +"POT-Creation-Date: 2005-04-09 21:56+0200\n" "PO-Revision-Date: 2004-12-29 17:42+0100\n" "Last-Translator: Xavier Beà \n" "Language-Team: softcatala \n" diff -uraN gimp-2.2.4/po-libgimp/ChangeLog gimp-2.2.5/po-libgimp/ChangeLog --- gimp-2.2.4/po-libgimp/ChangeLog 2005-02-22 11:59:01.000000000 +0100 +++ gimp-2.2.5/po-libgimp/ChangeLog 2005-03-22 10:42:02.000000000 +0100 @@ -1,3 +1,15 @@ +2005-03-22 Miloslav Trmac + + * cs.po: Updated Czech translation by Miloslav Trmač. + +2005-03-20 Marcel Telka + + * sk.po: Updated Slovak translation. + +2005-02-24 Maxim Dziumanenko + + * uk.po: Updated Ukrainian translation + 2005-02-22 Adam Weinberger * en_CA.po: Updated Canadian English translation. diff -uraN gimp-2.2.4/po-libgimp/cs.gmo gimp-2.2.5/po-libgimp/cs.gmo --- gimp-2.2.4/po-libgimp/cs.gmo 2005-02-22 23:12:23.000000000 +0100 +++ gimp-2.2.5/po-libgimp/cs.gmo 2005-04-09 23:09:09.000000000 +0200 @@ -1,28 +1,30 @@ -Dl -     "(.4*R(}4#.!.-P~.6HNUgn -t - VG^Av TMR%% '! IW^ms   2";? G U cm }   - -*%/U -g r!   -; 8 DRi7o8" f  - -_P;U - -"-3;MPX[clo r|  - -=#+3;CK S]ci$oE5F3WD,5 37T   $,BK S_s ziHeB| -t f  ! ! #! /!'"{/D.q ]e-PTJvB~ ?3%2AKH86jOkRu -Ms*bQ:7zGa9%.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)Add Alpha ChannelAlphaAnchorApply Layer MasksBlac_kBlackBlack OnlyBlack _Pullout:BlueBrush SelectionCMYKCMYK color selectorCheck SizeCheck StyleChoose an ICC Color ProfileClick the eyedropper, then click a color anywhere on your screen to select that color.Color Deficient VisionColor _Deficiency Type:Color deficit simulation filter (Brettel-Vienot-Mollon algorithm)ConfirmConfirm SaveContrastContrast C_ycles:Convert to GrayscaleConvert to Indexed using bitmap default settings +L| +   !)28>D*b(4#.!>-`. '/FX^ew~ +r +@ KWVsA; CPYkTM#%2X]f%k '   . 8BRX2h"     '.DL S]r  +% + !? C MW +[fx;  78*c"lf + +# +CNW_^PUehk} + +   + '/7:A +HSV]`=h $E5]F3D,S5 7 *K dp   y#iE b By +     t !f~!!!!" " ,"'9"a"s")z"" """" +"" + # #%#8# @#.N#-}## ### +###$$$0$9$S$ \$ +f$q$'$ $$ +$$5$% +"%-%@%O%%T%z% ~%% %%%%K% &&.&J&9P&;& &"&&'r'' +' '' +'''R'D9([~((((( +)) )() 1)=)N)Q)X) +[)f)m)p)s)))) ))))) ) ) ))))*sd_o1u`*X5#JY>h!=)~p}q2e6\zAF&-,j$xGZ[gWV(nm <Oa DM]yTi?"|0E/r ^f.QUK'wC @4%3BLI97kPlSv +Nt+cR;8{Hb:%.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)Add Alpha ChannelAlphaAnchorApply Layer MasksBlac_kBlackBlack OnlyBlack _Pullout:BlueBrush SelectionCMYKCMYK color selectorCannot determine a valid home directory. +Thumbnails will be stored in the folder for temporary files (%s) instead.Check SizeCheck StyleChoose an ICC Color ProfileClick the eyedropper, then click a color anywhere on your screen to select that color.Color Deficient VisionColor _Deficiency Type:Color deficit simulation filter (Brettel-Vienot-Mollon algorithm)ConfirmConfirm 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 RGBCould not create thumbnail for %s: %sCropCurrent:CyanDeuteranopia (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 SpacingLargeLinkedLoad failedLoadedLoading module: '%s' MagentaMediumMegabytesMerge Visible LayersModule '%s' load error: %sModule errorMore...Not loadedOld:Painter-style triangle color selectorPalette SelectionPaste IntoPaste as NewPattern SelectionPressureProtanopia (insensitivity to red)RGBRGB colorRGB-alphaRedSaturationSave as AnimationScalesSeed random number generator with a generated random numberSelect FileSelect FolderSkipping module: '%s' @@ -30,14 +32,15 @@ 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: 2005-02-22 23:04+0100 -PO-Revision-Date: 2004-11-09 14:54+0100 +POT-Creation-Date: 2005-04-09 21:56+0200 +PO-Revision-Date: 2005-03-22 09:30+0100 Last-Translator: Miloslav Trmač Language-Team: Czech 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 bajtů%d GB%d KB%d MB%s umí zpracovat pouze RGB obrázky%s umí zpracovat pouze RGB obrázky nebo obrázky ve stupních šedi%s umí zpracovat pouze RGB nebo indexované obrázky%s umí zpracovat pouze bitmapové (dvoubarevné) indexované obrázky%s umí zpracovat pouze obrázky ve stupních šedi%s umí zpracovat pouze obrázky ve stupních šedi nebo indexované%s umí zpracovat pouze indexované obrázky%s umí zpracovat vrstvy pouze jako políčka animace%s neumí zpracovat masky vrstev%s neumí zpracovat posuny vrstev, velikost nebo krytí%s neumí zpracovat vrstvy%s neumí zpracovat průhlednost%s vyžaduje alfa kanál(Prázdné)(neplatný řetězec v UTF-8)Přidat alfa kanálAlfaUkotvitPoužít masky vrstev_ČernáČernáJen černá_Použití černé:ModráVýběr stopyCMYKVýběr barev CMYKZkotrolovat velikostZkotrolovat stylZvolte profil barev ICCKlikněte na zaměřovač oka, a poté vyberte barvu kliknutím na tuto barvu kdekoli na vaší obrazovceVidění s barevnou poruchouTyp barevné _poruchy:Filtr simulace barevné poruchy (algoritmus Brettel-Vienot-Mollon)PotvrzeníPotvrzení zápisuKontrast_Cykly kontrastu:Převést do šedíPřevést do indexovaného pomocí implicitních nastavení bitmap +%.1f GB%.1f KB%.1f MB%.2f GB%.2f KB%.2f MB%d bajtů%d GB%d KB%d MB%s umí zpracovat pouze RGB obrázky%s umí zpracovat pouze RGB obrázky nebo obrázky ve stupních šedi%s umí zpracovat pouze RGB nebo indexované obrázky%s umí zpracovat pouze bitmapové (dvoubarevné) indexované obrázky%s umí zpracovat pouze obrázky ve stupních šedi%s umí zpracovat pouze obrázky ve stupních šedi nebo indexované%s umí zpracovat pouze indexované obrázky%s umí zpracovat vrstvy pouze jako políčka animace%s neumí zpracovat masky vrstev%s neumí zpracovat posuny vrstev, velikost nebo krytí%s neumí zpracovat vrstvy%s neumí zpracovat průhlednost%s vyžaduje alfa kanál(Prázdné)(neplatný řetězec v UTF-8)Přidat alfa kanálAlfaUkotvitPoužít masky vrstev_ČernáČernáJen černá_Použití černé:ModráVýběr stopyCMYKVýběr barev CMYKNemohu určit platný domovský adresář. +Miniatury budou místo něj uloženy do adresáře pro dočasné soubory (%s).Zkotrolovat velikostZkotrolovat stylZvolte profil barev ICCKlikněte na zaměřovač oka, a poté vyberte barvu kliknutím na tuto barvu kdekoli na vaší obrazovceVidění s barevnou poruchouTyp barevné _poruchy:Filtr simulace barevné poruchy (algoritmus Brettel-Vienot-Mollon)PotvrzeníPotvrzení zápisuKontrast_Cykly kontrastu:Převést do šedíPřevést do indexovaného pomocí implicitních nastavení bitmap (Výsledek můžete vyladit ručním provedením)Konverze do indexovaného použije implicitní nastavení (Ručním provedením lze doladit výsledek)Převést do RGBNemohu vytvořit miniaturu %s: %sOřezatAktuální:ModrozelenáDeuteroanopie (barvoslepost na zelenou)Exportovat souborFaktorNemohu vytvořit adresář miniatur '%s'.Sloučit obrazAdresářVýběr písmaGamaZobrazovací filtr barvy gamaGigabajtůVýběr přechoduJen šedáStupně šediStupně šedi-alfaZelená_Notace HTML:Šestnáctková notace barev jako v HTML a CSSZobrazovací filtr vysoce kontrastních barevOdstínIndexovanáIndexovaná barvaIndexovaná-alfaKilobajtůRoz_estup písmenŘá_dkováníVelkéSpojenýNačtení selhaloNačtenoNačítá se modul: '%s' FialováStředníMegabajtůSloučit viditelné vrstvyChyba při načítání modulu '%s': %sChyba moduluVíce...NenačtenoStaré:Výběr barev z trojúhelníku na malířský způsobVýběr paletyVložit doVložit jako novéVýběr vzorkuTlakProtanopie (necitlivost na červenou)RGBBarva RGBRGB-alfaČervenáSytostZapsat jako animaciStupniceHnízdo generátoru náhodného čísla z generovaného náhodného číslaVýběr souboruVýběr adresářeVynechává se modul: '%s' diff -uraN gimp-2.2.4/po-libgimp/cs.po gimp-2.2.5/po-libgimp/cs.po --- gimp-2.2.4/po-libgimp/cs.po 2005-02-22 23:12:20.000000000 +0100 +++ gimp-2.2.5/po-libgimp/cs.po 2005-04-09 23:09:05.000000000 +0200 @@ -1,16 +1,16 @@ # Translation of gimp-libgimp to Czech # Copyright (C) 2000,2003 Free Software Foundation, Inc. -# Copyright (C) 2004 Miloslav Trmac +# Copyright (C) 2004, 2005 Miloslav Trmac # Stanislav Brabec , 2000 # Michal Bukovjan , 2002,2003. -# Miloslav Trmac , 2003, 2004. +# Miloslav Trmac , 2003, 2004, 2005. # msgid "" msgstr "" "Project-Id-Version: gimp-libgimp VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-02-22 23:04+0100\n" -"PO-Revision-Date: 2004-11-09 14:54+0100\n" +"POT-Creation-Date: 2005-04-09 21:56+0200\n" +"PO-Revision-Date: 2005-03-22 09:30+0100\n" "Last-Translator: Miloslav Trmač \n" "Language-Team: Czech \n" "MIME-Version: 1.0\n" @@ -377,6 +377,8 @@ "Cannot determine a valid home directory.\n" "Thumbnails will be stored in the folder for temporary files (%s) instead." msgstr "" +"Nemohu určit platný domovský adresář.\n" +"Miniatury budou místo něj uloženy do adresáře pro dočasné soubory (%s)." #: ../libgimpthumb/gimpthumb-utils.c:249 ../libgimpthumb/gimpthumb-utils.c:317 #, c-format diff -uraN gimp-2.2.4/po-libgimp/da.gmo gimp-2.2.5/po-libgimp/da.gmo --- gimp-2.2.4/po-libgimp/da.gmo 2005-02-22 23:12:23.000000000 +0100 +++ gimp-2.2.5/po-libgimp/da.gmo 2005-04-09 23:09:09.000000000 +0200 @@ -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: 2005-02-22 23:04+0100 +POT-Creation-Date: 2005-04-09 21:56+0200 PO-Revision-Date: 2004-12-12 17:15+0100 Last-Translator: Ole Laursen Language-Team: Danish diff -uraN gimp-2.2.4/po-libgimp/da.po gimp-2.2.5/po-libgimp/da.po --- gimp-2.2.4/po-libgimp/da.po 2005-02-22 23:12:20.000000000 +0100 +++ gimp-2.2.5/po-libgimp/da.po 2005-04-09 23:09:05.000000000 +0200 @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: GIMP libgimp /gnome-cvs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-02-22 23:04+0100\n" +"POT-Creation-Date: 2005-04-09 21:56+0200\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.4/po-libgimp/de.gmo gimp-2.2.5/po-libgimp/de.gmo --- gimp-2.2.4/po-libgimp/de.gmo 2005-02-22 23:12:23.000000000 +0100 +++ gimp-2.2.5/po-libgimp/de.gmo 2005-04-09 23:09:09.000000000 +0200 @@ -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: 2005-02-22 23:04+0100 +POT-Creation-Date: 2005-04-09 21:56+0200 PO-Revision-Date: 2004-11-17 11:42+0100 Last-Translator: Sven Neumann Language-Team: German diff -uraN gimp-2.2.4/po-libgimp/de.po gimp-2.2.5/po-libgimp/de.po --- gimp-2.2.4/po-libgimp/de.po 2005-02-22 23:12:20.000000000 +0100 +++ gimp-2.2.5/po-libgimp/de.po 2005-04-09 23:09:05.000000000 +0200 @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: GIMP 2.2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-02-22 23:04+0100\n" +"POT-Creation-Date: 2005-04-09 21:56+0200\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.4/po-libgimp/el.gmo gimp-2.2.5/po-libgimp/el.gmo --- gimp-2.2.4/po-libgimp/el.gmo 2005-02-22 23:12:24.000000000 +0100 +++ gimp-2.2.5/po-libgimp/el.gmo 2005-04-09 23:09:09.000000000 +0200 @@ -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: 2005-02-22 23:04+0100 +POT-Creation-Date: 2005-04-09 21:56+0200 PO-Revision-Date: 2004-10-22 01:09+0300 Last-Translator: Nikos Charonitakis Language-Team: diff -uraN gimp-2.2.4/po-libgimp/el.po gimp-2.2.5/po-libgimp/el.po --- gimp-2.2.4/po-libgimp/el.po 2005-02-22 23:12:20.000000000 +0100 +++ gimp-2.2.5/po-libgimp/el.po 2005-04-09 23:09:05.000000000 +0200 @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: el\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-02-22 23:04+0100\n" +"POT-Creation-Date: 2005-04-09 21:56+0200\n" "PO-Revision-Date: 2004-10-22 01:09+0300\n" "Last-Translator: Nikos Charonitakis \n" "Language-Team: \n" diff -uraN gimp-2.2.4/po-libgimp/en_CA.gmo gimp-2.2.5/po-libgimp/en_CA.gmo --- gimp-2.2.4/po-libgimp/en_CA.gmo 2005-02-22 23:12:24.000000000 +0100 +++ gimp-2.2.5/po-libgimp/en_CA.gmo 2005-04-09 23:09:09.000000000 +0200 @@ -33,7 +33,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: 2005-02-22 23:04+0100 +POT-Creation-Date: 2005-04-09 21:56+0200 PO-Revision-Date: 2005-02-22 20:02-0400 Last-Translator: Adam Weinberger Language-Team: English/Canada diff -uraN gimp-2.2.4/po-libgimp/en_CA.po gimp-2.2.5/po-libgimp/en_CA.po --- gimp-2.2.4/po-libgimp/en_CA.po 2005-02-22 23:12:20.000000000 +0100 +++ gimp-2.2.5/po-libgimp/en_CA.po 2005-04-09 23:09:05.000000000 +0200 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: libgimp\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-02-22 23:04+0100\n" +"POT-Creation-Date: 2005-04-09 21:56+0200\n" "PO-Revision-Date: 2005-02-22 20:02-0400\n" "Last-Translator: Adam Weinberger \n" "Language-Team: English/Canada \n" diff -uraN gimp-2.2.4/po-libgimp/en_GB.gmo gimp-2.2.5/po-libgimp/en_GB.gmo --- gimp-2.2.4/po-libgimp/en_GB.gmo 2005-02-22 23:12:24.000000000 +0100 +++ gimp-2.2.5/po-libgimp/en_GB.gmo 2005-04-09 23:09:09.000000000 +0200 @@ -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: 2005-02-22 23:04+0100 +POT-Creation-Date: 2005-04-09 21:56+0200 PO-Revision-Date: 2004-11-21 22:54+0100 Last-Translator: David Lodge Language-Team: diff -uraN gimp-2.2.4/po-libgimp/en_GB.po gimp-2.2.5/po-libgimp/en_GB.po --- gimp-2.2.4/po-libgimp/en_GB.po 2005-02-22 23:12:20.000000000 +0100 +++ gimp-2.2.5/po-libgimp/en_GB.po 2005-04-09 23:09:05.000000000 +0200 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: gimp CVS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-02-22 23:04+0100\n" +"POT-Creation-Date: 2005-04-09 21:56+0200\n" "PO-Revision-Date: 2004-11-21 22:54+0100\n" "Last-Translator: David Lodge \n" "Language-Team: \n" diff -uraN gimp-2.2.4/po-libgimp/es.gmo gimp-2.2.5/po-libgimp/es.gmo --- gimp-2.2.4/po-libgimp/es.gmo 2005-02-22 23:12:24.000000000 +0100 +++ gimp-2.2.5/po-libgimp/es.gmo 2005-04-09 23:09:09.000000000 +0200 @@ -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: 2005-02-22 23:04+0100 +POT-Creation-Date: 2005-04-09 21:56+0200 PO-Revision-Date: 2004-11-12 16:12-0300 Last-Translator: Pablo del Campo Language-Team: diff -uraN gimp-2.2.4/po-libgimp/es.po gimp-2.2.5/po-libgimp/es.po --- gimp-2.2.4/po-libgimp/es.po 2005-02-22 23:12:20.000000000 +0100 +++ gimp-2.2.5/po-libgimp/es.po 2005-04-09 23:09:05.000000000 +0200 @@ -13,7 +13,7 @@ msgstr "" "Project-Id-Version: gimp-libgimp.HEAD\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-02-22 23:04+0100\n" +"POT-Creation-Date: 2005-04-09 21:56+0200\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.4/po-libgimp/eu.gmo gimp-2.2.5/po-libgimp/eu.gmo --- gimp-2.2.4/po-libgimp/eu.gmo 2005-02-22 23:12:24.000000000 +0100 +++ gimp-2.2.5/po-libgimp/eu.gmo 2005-04-09 23:09:09.000000000 +0200 @@ -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: 2005-02-22 23:04+0100 +POT-Creation-Date: 2005-04-09 21:56+0200 PO-Revision-Date: 2004-04-06 17:16+0200 Last-Translator: Iñaki Larrañaga Murgoitio Language-Team: Basque diff -uraN gimp-2.2.4/po-libgimp/eu.po gimp-2.2.5/po-libgimp/eu.po --- gimp-2.2.4/po-libgimp/eu.po 2005-02-22 23:12:20.000000000 +0100 +++ gimp-2.2.5/po-libgimp/eu.po 2005-04-09 23:09:05.000000000 +0200 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: eu\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-02-22 23:04+0100\n" +"POT-Creation-Date: 2005-04-09 21:56+0200\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.4/po-libgimp/fi.gmo gimp-2.2.5/po-libgimp/fi.gmo --- gimp-2.2.4/po-libgimp/fi.gmo 2005-02-22 23:12:24.000000000 +0100 +++ gimp-2.2.5/po-libgimp/fi.gmo 2005-04-09 23:09:09.000000000 +0200 @@ -29,7 +29,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: 2005-02-22 23:04+0100 +POT-Creation-Date: 2005-04-09 21:56+0200 PO-Revision-Date: 2004-12-17 04:32+0200 Last-Translator: Mikko Paananen Language-Team: Finnish diff -uraN gimp-2.2.4/po-libgimp/fi.po gimp-2.2.5/po-libgimp/fi.po --- gimp-2.2.4/po-libgimp/fi.po 2005-02-22 23:12:20.000000000 +0100 +++ gimp-2.2.5/po-libgimp/fi.po 2005-04-09 23:09:05.000000000 +0200 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: GIMP 2.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-02-22 23:04+0100\n" +"POT-Creation-Date: 2005-04-09 21:56+0200\n" "PO-Revision-Date: 2004-12-17 04:32+0200\n" "Last-Translator: Mikko Paananen \n" "Language-Team: Finnish \n" diff -uraN gimp-2.2.4/po-libgimp/fr.gmo gimp-2.2.5/po-libgimp/fr.gmo --- gimp-2.2.4/po-libgimp/fr.gmo 2005-02-22 23:12:24.000000000 +0100 +++ gimp-2.2.5/po-libgimp/fr.gmo 2005-04-09 23:09:09.000000000 +0200 @@ -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.HEAD Report-Msgid-Bugs-To: -POT-Creation-Date: 2005-02-22 23:04+0100 +POT-Creation-Date: 2005-04-09 21:56+0200 PO-Revision-Date: 2004-11-23 22:12+0100 Last-Translator: Raymond Ostertag Language-Team: diff -uraN gimp-2.2.4/po-libgimp/fr.po gimp-2.2.5/po-libgimp/fr.po --- gimp-2.2.4/po-libgimp/fr.po 2005-02-22 23:12:20.000000000 +0100 +++ gimp-2.2.5/po-libgimp/fr.po 2005-04-09 23:09:05.000000000 +0200 @@ -14,7 +14,7 @@ msgstr "" "Project-Id-Version: gimp-libgimp.HEAD\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-02-22 23:04+0100\n" +"POT-Creation-Date: 2005-04-09 21:56+0200\n" "PO-Revision-Date: 2004-11-23 22:12+0100\n" "Last-Translator: Raymond Ostertag \n" "Language-Team: \n" diff -uraN gimp-2.2.4/po-libgimp/ga.gmo gimp-2.2.5/po-libgimp/ga.gmo --- gimp-2.2.4/po-libgimp/ga.gmo 2005-02-22 23:12:24.000000000 +0100 +++ gimp-2.2.5/po-libgimp/ga.gmo 2005-04-09 23:09:09.000000000 +0200 @@ -1,6 +1,6 @@ $,89Project-Id-Version: gimp-libgimp VERSION Report-Msgid-Bugs-To: -POT-Creation-Date: 2005-02-22 23:04+0100 +POT-Creation-Date: 2005-04-09 21:56+0200 PO-Revision-Date: 2000-12-18 23:30-0800 Last-Translator: Nobody Language-Team: Irish diff -uraN gimp-2.2.4/po-libgimp/ga.po gimp-2.2.5/po-libgimp/ga.po --- gimp-2.2.4/po-libgimp/ga.po 2005-02-22 23:12:21.000000000 +0100 +++ gimp-2.2.5/po-libgimp/ga.po 2005-04-09 23:09:06.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: gimp-libgimp VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-02-22 23:04+0100\n" +"POT-Creation-Date: 2005-04-09 21:56+0200\n" "PO-Revision-Date: 2000-12-18 23:30-0800\n" "Last-Translator: Nobody\n" "Language-Team: Irish\n" diff -uraN gimp-2.2.4/po-libgimp/gimp20-libgimp.pot gimp-2.2.5/po-libgimp/gimp20-libgimp.pot --- gimp-2.2.4/po-libgimp/gimp20-libgimp.pot 2005-02-22 23:04:17.000000000 +0100 +++ gimp-2.2.5/po-libgimp/gimp20-libgimp.pot 2005-04-09 21:56:03.000000000 +0200 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-02-22 23:04+0100\n" +"POT-Creation-Date: 2005-04-09 21:56+0200\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.4/po-libgimp/gl.gmo gimp-2.2.5/po-libgimp/gl.gmo --- gimp-2.2.4/po-libgimp/gl.gmo 2005-02-22 23:12:24.000000000 +0100 +++ gimp-2.2.5/po-libgimp/gl.gmo 2005-04-09 23:09:09.000000000 +0200 @@ -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: 2005-02-22 23:04+0100 +POT-Creation-Date: 2005-04-09 21:56+0200 PO-Revision-Date: 2000-07-07 16:33+0200 Last-Translator: Francisco Xosé Vázquez Grandal Language-Team: Galician diff -uraN gimp-2.2.4/po-libgimp/gl.po gimp-2.2.5/po-libgimp/gl.po --- gimp-2.2.4/po-libgimp/gl.po 2005-02-22 23:12:21.000000000 +0100 +++ gimp-2.2.5/po-libgimp/gl.po 2005-04-09 23:09:06.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: gimp cvs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-02-22 23:04+0100\n" +"POT-Creation-Date: 2005-04-09 21:56+0200\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.4/po-libgimp/he.gmo gimp-2.2.5/po-libgimp/he.gmo --- gimp-2.2.4/po-libgimp/he.gmo 2005-02-22 23:12:24.000000000 +0100 +++ gimp-2.2.5/po-libgimp/he.gmo 2005-04-09 23:09:09.000000000 +0200 @@ -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: 2005-02-22 23:04+0100 +POT-Creation-Date: 2005-04-09 21:56+0200 PO-Revision-Date: 2003-08-13 22:08+0300 Last-Translator: Gil 'Dolfin' Osher Language-Team: Hebrew diff -uraN gimp-2.2.4/po-libgimp/he.po gimp-2.2.5/po-libgimp/he.po --- gimp-2.2.4/po-libgimp/he.po 2005-02-22 23:12:21.000000000 +0100 +++ gimp-2.2.5/po-libgimp/he.po 2005-04-09 23:09:06.000000000 +0200 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: gimp-libgimp.HEAD\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-02-22 23:04+0100\n" +"POT-Creation-Date: 2005-04-09 21:56+0200\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.4/po-libgimp/hr.gmo gimp-2.2.5/po-libgimp/hr.gmo --- gimp-2.2.4/po-libgimp/hr.gmo 2005-02-22 23:12:24.000000000 +0100 +++ gimp-2.2.5/po-libgimp/hr.gmo 2005-04-09 23:09:09.000000000 +0200 @@ -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: 2005-02-22 23:04+0100 +POT-Creation-Date: 2005-04-09 21:56+0200 PO-Revision-Date: 2004-03-20 14:49+CET Last-Translator: auto Language-Team: Croatian diff -uraN gimp-2.2.4/po-libgimp/hr.po gimp-2.2.5/po-libgimp/hr.po --- gimp-2.2.4/po-libgimp/hr.po 2005-02-22 23:12:21.000000000 +0100 +++ gimp-2.2.5/po-libgimp/hr.po 2005-04-09 23:09:06.000000000 +0200 @@ -5,7 +5,7 @@ msgstr "" "Project-Id-Version: gimp-libgimp 0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-02-22 23:04+0100\n" +"POT-Creation-Date: 2005-04-09 21:56+0200\n" "PO-Revision-Date: 2004-03-20 14:49+CET\n" "Last-Translator: auto\n" "Language-Team: Croatian \n" diff -uraN gimp-2.2.4/po-libgimp/hu.gmo gimp-2.2.5/po-libgimp/hu.gmo --- gimp-2.2.4/po-libgimp/hu.gmo 2005-02-22 23:12:24.000000000 +0100 +++ gimp-2.2.5/po-libgimp/hu.gmo 2005-04-09 23:09:09.000000000 +0200 @@ -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: 2005-02-22 23:04+0100 +POT-Creation-Date: 2005-04-09 21:56+0200 PO-Revision-Date: 2004-12-02 10:49+0100 Last-Translator: Arpad Biro Language-Team: Hungarian diff -uraN gimp-2.2.4/po-libgimp/hu.po gimp-2.2.5/po-libgimp/hu.po --- gimp-2.2.4/po-libgimp/hu.po 2005-02-22 23:12:21.000000000 +0100 +++ gimp-2.2.5/po-libgimp/hu.po 2005-04-09 23:09:06.000000000 +0200 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: gimp-libgimp\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-02-22 23:04+0100\n" +"POT-Creation-Date: 2005-04-09 21:56+0200\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.4/po-libgimp/id.gmo gimp-2.2.5/po-libgimp/id.gmo --- gimp-2.2.4/po-libgimp/id.gmo 2005-02-22 23:12:24.000000000 +0100 +++ gimp-2.2.5/po-libgimp/id.gmo 2005-04-09 23:09:09.000000000 +0200 @@ -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: 2005-02-22 23:04+0100 +POT-Creation-Date: 2005-04-09 21:56+0200 PO-Revision-Date: 2003-06-28 22:03+0700 Last-Translator: Mohammad DAMT Language-Team: Indonesian diff -uraN gimp-2.2.4/po-libgimp/id.po gimp-2.2.5/po-libgimp/id.po --- gimp-2.2.4/po-libgimp/id.po 2005-02-22 23:12:21.000000000 +0100 +++ gimp-2.2.5/po-libgimp/id.po 2005-04-09 23:09:06.000000000 +0200 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: libgimp HEAD\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-02-22 23:04+0100\n" +"POT-Creation-Date: 2005-04-09 21:56+0200\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.4/po-libgimp/it.gmo gimp-2.2.5/po-libgimp/it.gmo --- gimp-2.2.4/po-libgimp/it.gmo 2005-02-22 23:12:24.000000000 +0100 +++ gimp-2.2.5/po-libgimp/it.gmo 2005-04-09 23:09:09.000000000 +0200 @@ -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: 2005-02-22 23:04+0100 +POT-Creation-Date: 2005-04-09 21:56+0200 PO-Revision-Date: 2004-11-30 23:47+0100 Last-Translator: Marco Ciampa Language-Team: gimp.linux.it diff -uraN gimp-2.2.4/po-libgimp/it.po gimp-2.2.5/po-libgimp/it.po --- gimp-2.2.4/po-libgimp/it.po 2005-02-22 23:12:21.000000000 +0100 +++ gimp-2.2.5/po-libgimp/it.po 2005-04-09 23:09:06.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: gimp 1.1.16\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-02-22 23:04+0100\n" +"POT-Creation-Date: 2005-04-09 21:56+0200\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.4/po-libgimp/ja.gmo gimp-2.2.5/po-libgimp/ja.gmo --- gimp-2.2.4/po-libgimp/ja.gmo 2005-02-22 23:12:24.000000000 +0100 +++ gimp-2.2.5/po-libgimp/ja.gmo 2005-04-09 23:09:09.000000000 +0200 @@ -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 gimp-2-2 Report-Msgid-Bugs-To: -POT-Creation-Date: 2005-02-22 23:04+0100 +POT-Creation-Date: 2005-04-09 21:56+0200 PO-Revision-Date: 2005-02-17 12:25+0900 Last-Translator: Tadashi Jokagi Language-Team: Japanese diff -uraN gimp-2.2.4/po-libgimp/ja.po gimp-2.2.5/po-libgimp/ja.po --- gimp-2.2.4/po-libgimp/ja.po 2005-02-22 23:12:21.000000000 +0100 +++ gimp-2.2.5/po-libgimp/ja.po 2005-04-09 23:09:06.000000000 +0200 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: gimp gimp-2-2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-02-22 23:04+0100\n" +"POT-Creation-Date: 2005-04-09 21:56+0200\n" "PO-Revision-Date: 2005-02-17 12:25+0900\n" "Last-Translator: Tadashi Jokagi \n" "Language-Team: Japanese \n" diff -uraN gimp-2.2.4/po-libgimp/ko.gmo gimp-2.2.5/po-libgimp/ko.gmo --- gimp-2.2.4/po-libgimp/ko.gmo 2005-02-22 23:12:24.000000000 +0100 +++ gimp-2.2.5/po-libgimp/ko.gmo 2005-04-09 23:09:09.000000000 +0200 @@ -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: 2005-02-22 23:04+0100 +POT-Creation-Date: 2005-04-09 21:56+0200 PO-Revision-Date: 2003-06-05 07:55+0800 Last-Translator: Dongsu Jang Language-Team: Korean diff -uraN gimp-2.2.4/po-libgimp/ko.po gimp-2.2.5/po-libgimp/ko.po --- gimp-2.2.4/po-libgimp/ko.po 2005-02-22 23:12:21.000000000 +0100 +++ gimp-2.2.5/po-libgimp/ko.po 2005-04-09 23:09:06.000000000 +0200 @@ -5,7 +5,7 @@ msgstr "" "Project-Id-Version: gimp-plug-ins 1.1.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-02-22 23:04+0100\n" +"POT-Creation-Date: 2005-04-09 21:56+0200\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.4/po-libgimp/lt.gmo gimp-2.2.5/po-libgimp/lt.gmo --- gimp-2.2.4/po-libgimp/lt.gmo 2005-02-22 23:12:24.000000000 +0100 +++ gimp-2.2.5/po-libgimp/lt.gmo 2005-04-09 23:09:09.000000000 +0200 @@ -29,7 +29,7 @@ MediumMegabytesMerge Visible LayersModule '%s' load error: %sModule errorMore...Not loadedOld:Palette SelectionPaste IntoPaste as NewPattern SelectionPressureRGBRGB colorRGB-alphaRedSaturationSave as AnimationSeed random number generator with a generated random numberSelect FileSelect FolderSkipping module: '%s' SmallThe export conversion won't modify your original image.TriangleUnitUnit SelectionValueVisibleWatercolorWatercolor style color selectorWhite OnlyWritableYellowYour image should be exported before it can be saved as %s for the following reasons:_A_B_Background Color_Browse..._C_Duplicate_Edit_Export_Foreground Color_G_H_Ignore_K_M_Preview_Profile:_R_Reset_Resize_Rotate_S_Scale_Shear_Transform_V_White_YpercentProject-Id-Version: GIMP (libgimp) HEAD Report-Msgid-Bugs-To: -POT-Creation-Date: 2005-02-22 23:04+0100 +POT-Creation-Date: 2005-04-09 21:56+0200 PO-Revision-Date: 2005-02-02 22:30+0200 Last-Translator: Giedrius Naudžiūnas Language-Team: Lithuanian diff -uraN gimp-2.2.4/po-libgimp/lt.po gimp-2.2.5/po-libgimp/lt.po --- gimp-2.2.4/po-libgimp/lt.po 2005-02-22 23:12:21.000000000 +0100 +++ gimp-2.2.5/po-libgimp/lt.po 2005-04-09 23:09:06.000000000 +0200 @@ -10,7 +10,7 @@ msgstr "" "Project-Id-Version: GIMP (libgimp) HEAD\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-02-22 23:04+0100\n" +"POT-Creation-Date: 2005-04-09 21:56+0200\n" "PO-Revision-Date: 2005-02-02 22:30+0200\n" "Last-Translator: Giedrius Naudžiūnas \n" "Language-Team: Lithuanian \n" diff -uraN gimp-2.2.4/po-libgimp/Makefile.in.in gimp-2.2.5/po-libgimp/Makefile.in.in --- gimp-2.2.4/po-libgimp/Makefile.in.in 2002-02-25 04:26:11.000000000 +0100 +++ gimp-2.2.5/po-libgimp/Makefile.in.in 2005-03-08 16:48:01.000000000 +0100 @@ -27,25 +27,28 @@ prefix = @prefix@ exec_prefix = @exec_prefix@ -datadir = $(prefix)/@DATADIRNAME@ -localedir = $(datadir)/locale -gnulocaledir = $(prefix)/share/locale -gettextsrcdir = $(prefix)/share/glib-2.0/gettext/po +datadir = @datadir@ +libdir = @libdir@ +localedir = $(libdir)/locale +gnulocaledir = $(datadir)/locale +gettextsrcdir = $(datadir)/glib-2.0/gettext/po subdir = po +install_sh = @install_sh@ +mkdir_p = @mkdir_p@ +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ -MKINSTALLDIRS = $(top_srcdir)/@MKINSTALLDIRS@ CC = @CC@ GENCAT = @GENCAT@ -GMSGFMT = PATH=../src:$$PATH @GMSGFMT@ +GMSGFMT = @GMSGFMT@ MSGFMT = @MSGFMT@ -XGETTEXT = PATH=../src:$$PATH @XGETTEXT@ +XGETTEXT = @XGETTEXT@ INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ -MSGMERGE = INTLTOOL_EXTRACT=$(INTLTOOL_EXTRACT) $(INTLTOOL_UPDATE) --gettext-package $(GETTEXT_PACKAGE) --dist -GENPOT = INTLTOOL_EXTRACT=$(INTLTOOL_EXTRACT) $(INTLTOOL_UPDATE) --gettext-package $(GETTEXT_PACKAGE) --pot +MSGMERGE = INTLTOOL_EXTRACT=$(INTLTOOL_EXTRACT) srcdir=$(srcdir) $(INTLTOOL_UPDATE) --gettext-package $(GETTEXT_PACKAGE) --dist +GENPOT = INTLTOOL_EXTRACT=$(INTLTOOL_EXTRACT) srcdir=$(srcdir) $(INTLTOOL_UPDATE) --gettext-package $(GETTEXT_PACKAGE) --pot DEFS = @DEFS@ CFLAGS = @CFLAGS@ @@ -58,7 +61,7 @@ SOURCES = POFILES = @POFILES@ GMOFILES = @GMOFILES@ -DISTFILES = ChangeLog Makefile.in.in POTFILES.in $(GETTEXT_PACKAGE).pot \ +DISTFILES = ChangeLog Makefile.in.in POTFILES.in \ $(POFILES) $(GMOFILES) $(SOURCES) POTFILES = \ @@ -75,13 +78,13 @@ .po.pox: $(MAKE) $(GETTEXT_PACKAGE).pot - $(MSGMERGE) $< $(srcdir)/$(GETTEXT_PACKAGE).pot -o $*.pox + $(MSGMERGE) $< $(top_builddir)/po/$(GETTEXT_PACKAGE).pot -o $*pox .po.mo: $(MSGFMT) -o $@ $< .po.gmo: - file=$(srcdir)/`echo $* | sed 's,.*/,,'`.gmo \ + file=`echo $* | sed 's,.*/,,'`.gmo \ && rm -f $$file && $(GMSGFMT) -o $$file $< .po.cat: @@ -94,7 +97,7 @@ all-yes: $(CATALOGS) all-no: -$(srcdir)/$(GETTEXT_PACKAGE).pot: $(POTFILES) +$(GETTEXT_PACKAGE).pot: $(POTFILES) $(GENPOT) install: install-exec install-data @@ -102,7 +105,7 @@ install-data: install-data-@USE_NLS@ install-data-no: all install-data-yes: all - if test -r "$(MKINSTALLDIRS)"; then \ + if test -n "$(MKINSTALLDIRS)"; then \ $(MKINSTALLDIRS) $(DESTDIR)$(datadir); \ else \ $(SHELL) $(top_srcdir)/mkinstalldirs $(DESTDIR)$(datadir); \ @@ -116,7 +119,7 @@ esac; \ lang=`echo $$cat | sed 's/\$(CATOBJEXT)$$//'`; \ dir=$(DESTDIR)$$destdir/$$lang/LC_MESSAGES; \ - if test -r "$(MKINSTALLDIRS)"; then \ + if test -n "$(MKINSTALLDIRS)"; then \ $(MKINSTALLDIRS) $$dir; \ else \ $(SHELL) $(top_srcdir)/mkinstalldirs $$dir; \ @@ -144,7 +147,7 @@ fi; \ done if test "$(PACKAGE)" = "glib"; then \ - if test -r "$(MKINSTALLDIRS)"; then \ + if test -n "$(MKINSTALLDIRS)"; then \ $(MKINSTALLDIRS) $(DESTDIR)$(gettextsrcdir); \ else \ $(SHELL) $(top_srcdir)/mkinstalldirs $(DESTDIR)$(gettextsrcdir); \ @@ -168,15 +171,18 @@ rm -f $(DESTDIR)$(gnulocaledir)/$$lang/LC_MESSAGES/$(GETTEXT_PACKAGE)$(INSTOBJEXT); \ rm -f $(DESTDIR)$(gnulocaledir)/$$lang/LC_MESSAGES/$(GETTEXT_PACKAGE)$(INSTOBJEXT).m; \ done - rm -f $(DESTDIR)$(gettextsrcdir)/po-Makefile.in.in + if test "$(PACKAGE)" = "glib"; then \ + rm -f $(DESTDIR)$(gettextsrcdir)/Makefile.in.in; \ + fi check: all dvi info tags TAGS ID: mostlyclean: - rm -f core core.* *.pox $(GETTEXT_PACKAGE).po *.old.po cat-id-tbl.tmp + rm -f core core.* *.pox $(GETTEXT_PACKAGE).pot *.old.po cat-id-tbl.tmp rm -fr *.o + rm -f .intltool-merge-cache clean: mostlyclean @@ -189,7 +195,7 @@ rm -f $(GMOFILES) distdir = ../$(GETTEXT_PACKAGE)-$(VERSION)/$(subdir) -dist distdir: update-po $(DISTFILES) +dist distdir: $(DISTFILES) $(GETTEXT_PACKAGE).pot dists="$(DISTFILES)"; \ for file in $$dists; do \ ln $(srcdir)/$$file $(distdir) 2> /dev/null \ @@ -198,36 +204,31 @@ update-po: Makefile $(MAKE) $(GETTEXT_PACKAGE).pot - PATH=`pwd`/../src:$$PATH; \ - cd $(srcdir); \ + tmpdir=`pwd`; \ catalogs='$(CATALOGS)'; \ for cat in $$catalogs; do \ cat=`basename $$cat`; \ lang=`echo $$cat | sed 's/\$(CATOBJEXT)$$//'`; \ - cp $$lang.po $$lang.old.po; \ echo "$$lang:"; \ - if $(MSGMERGE) $$lang; then \ - rm -f $$lang.old.po; \ + result="`$(MSGMERGE) -o $$tmpdir/$$lang.new.po $$lang`"; \ + if $$result; then \ + if cmp $(srcdir)/$$lang.po $$tmpdir/$$lang.new.po >/dev/null 2>&1; then \ + rm -f $$tmpdir/$$lang.new.po; \ + else \ + if mv -f $$tmpdir/$$lang.new.po $$lang.po; then \ + :; \ + else \ + echo "msgmerge for $$lang.po failed: cannot move $$tmpdir/$$lang.new.po to $$lang.po" 1>&2; \ + rm -f $$tmpdir/$$lang.new.po; \ + exit 1; \ + fi; \ + fi; \ else \ echo "msgmerge for $$cat failed!"; \ - rm -f $$lang.po; \ - mv $$lang.old.po $$lang.po; \ + rm -f $$tmpdir/$$lang.new.po; \ fi; \ done -.po: Makefile - $(MAKE) $(PACKAGE).pot; - PATH=`pwd`/../src:$$PATH; \ - echo; printf "$*: "; \ - if $(MSGMERGE) $*; then \ - rm -f $*.old.po; \ - else \ - echo "msgmerge for * failed!"; \ - mv $*.old.po $*.po; \ - fi; \ - msgfmt --statistics $*.po; echo; - - # POTFILES is created from POTFILES.in by stripping comments, empty lines # and Intltool tags (enclosed in square brackets), and appending a full # relative path to them diff -uraN gimp-2.2.4/po-libgimp/ms.gmo gimp-2.2.5/po-libgimp/ms.gmo --- gimp-2.2.4/po-libgimp/ms.gmo 2005-02-22 23:12:24.000000000 +0100 +++ gimp-2.2.5/po-libgimp/ms.gmo 2005-04-09 23:09:09.000000000 +0200 @@ -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: 2005-02-22 23:04+0100 +POT-Creation-Date: 2005-04-09 21:56+0200 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.4/po-libgimp/ms.po gimp-2.2.5/po-libgimp/ms.po --- gimp-2.2.4/po-libgimp/ms.po 2005-02-22 23:12:21.000000000 +0100 +++ gimp-2.2.5/po-libgimp/ms.po 2005-04-09 23:09:07.000000000 +0200 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: libgimp\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-02-22 23:04+0100\n" +"POT-Creation-Date: 2005-04-09 21:56+0200\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.4/po-libgimp/nb.gmo gimp-2.2.5/po-libgimp/nb.gmo --- gimp-2.2.4/po-libgimp/nb.gmo 2005-02-22 23:12:24.000000000 +0100 +++ gimp-2.2.5/po-libgimp/nb.gmo 2005-04-09 23:09:09.000000000 +0200 @@ -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: 2005-02-22 23:04+0100 +POT-Creation-Date: 2005-04-09 21:56+0200 PO-Revision-Date: 2004-12-04 17:15+0100 Last-Translator: Sigurd Gartmann Language-Team: Norwegian Bokmål diff -uraN gimp-2.2.4/po-libgimp/nb.po gimp-2.2.5/po-libgimp/nb.po --- gimp-2.2.4/po-libgimp/nb.po 2005-02-22 23:12:22.000000000 +0100 +++ gimp-2.2.5/po-libgimp/nb.po 2005-04-09 23:09:07.000000000 +0200 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: GIMP HEAD\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-02-22 23:04+0100\n" +"POT-Creation-Date: 2005-04-09 21:56+0200\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.4/po-libgimp/nl.gmo gimp-2.2.5/po-libgimp/nl.gmo --- gimp-2.2.4/po-libgimp/nl.gmo 2005-02-22 23:12:24.000000000 +0100 +++ gimp-2.2.5/po-libgimp/nl.gmo 2005-04-09 23:09:09.000000000 +0200 @@ -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: 2005-02-22 23:04+0100 +POT-Creation-Date: 2005-04-09 21:56+0200 PO-Revision-Date: 2004-11-18 02:35+0100 Last-Translator: Tino Meinen Language-Team: Dutch diff -uraN gimp-2.2.4/po-libgimp/nl.po gimp-2.2.5/po-libgimp/nl.po --- gimp-2.2.4/po-libgimp/nl.po 2005-02-22 23:12:22.000000000 +0100 +++ gimp-2.2.5/po-libgimp/nl.po 2005-04-09 23:09:07.000000000 +0200 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: GIMP 2.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-02-22 23:04+0100\n" +"POT-Creation-Date: 2005-04-09 21:56+0200\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.4/po-libgimp/no.gmo gimp-2.2.5/po-libgimp/no.gmo --- gimp-2.2.4/po-libgimp/no.gmo 2005-02-22 23:12:24.000000000 +0100 +++ gimp-2.2.5/po-libgimp/no.gmo 2005-04-09 23:09:09.000000000 +0200 @@ -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: 2005-02-22 23:04+0100 +POT-Creation-Date: 2005-04-09 21:56+0200 PO-Revision-Date: 2004-12-04 17:15+0100 Last-Translator: Sigurd Gartmann Language-Team: Norwegian Bokmål diff -uraN gimp-2.2.4/po-libgimp/no.po gimp-2.2.5/po-libgimp/no.po --- gimp-2.2.4/po-libgimp/no.po 2005-02-22 23:12:22.000000000 +0100 +++ gimp-2.2.5/po-libgimp/no.po 2005-04-09 23:09:07.000000000 +0200 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: GIMP HEAD\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-02-22 23:04+0100\n" +"POT-Creation-Date: 2005-04-09 21:56+0200\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.4/po-libgimp/pa.gmo gimp-2.2.5/po-libgimp/pa.gmo --- gimp-2.2.4/po-libgimp/pa.gmo 2005-02-22 23:12:24.000000000 +0100 +++ gimp-2.2.5/po-libgimp/pa.gmo 2005-04-09 23:09:09.000000000 +0200 @@ -1,33 +1,41 @@ -t            *2 (] 4 # . ! -0 ^ .z     $6<CU[`puV A7*y TM>% ' $39Tg"m   ' -/:%? -e p} -! -; ? KY7p"fOU -]h_PUI - -   -"-4<DGN -U`cfOn2DTdta{bzz.WMY@M1) 0& W dq!7-  ! L k@!!)!!&"9)"c"E#$.$>$ R$P_$$$U$3%S%c% w%6%% %R% 2&"?&"b&&&&#&&@'IA'' ' ''R'@()`((+( (M( +):5)p)=))|)Z*t*&**F+PV+ +++ , ,#,d,X- n-{-I.///,/ 00 0 0 (050 80F0I0f0w0z0}0000"00 11!1 41A1Q1T1W1FV7l: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 +  $*B(m4#.!-@n.&<NT[mt +zr +> IUVq A*Ep xTM +X%g % ' "17 R\ o y2"   '1 AO Ub iu|   + %6 +H S` +r}!   +; : FTk7q8"f" + +_P=U +! +$/5=ORZ]enq t~  + + +;Ka[{9zm z!"W""M|#Y#@$$e$t$1$)$ $$0 %=% N%[%2o% %%%!%% +&')'7C'{'-(K(!b(L(k(=))P)z)&)9))*+U+,%, 9,F,P],,,U,1-Q-a- u-6----.. 1.;.iR.R. //$/ >/L/"f/"/ /////#080 K0U0@o00I01 .1 ;1\1Rp111)1'2+A2 m2Mz22 2 2 2:2)3=E33|34-4&J4 q4~4 55P5 566 7 7#7d?777 778h91:4:&7:,^: :: : : :':: :::;);,;/;F;W;u;x;";;;;; ; <<"<%<9<<<+4I\^$-Fl/H= +3V?vb0Z(d] <y){6"[o5,iRC mYB`&PfSph@1# a8;W2e%KT.cX~!9JA'N u*rGLEs>twDQ Mqx7_|U:Onzjgk}%.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_enterCannot determine a valid home directory. +Thumbnails will be stored in the folder for temporary files (%s) instead.Check 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: pa +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.gimp-2-2 Report-Msgid-Bugs-To: -POT-Creation-Date: 2005-02-22 23:04+0100 -PO-Revision-Date: 2004-07-20 16:17+0530 -Last-Translator: Amanpreet Singh Alam -Language-Team: Punjabi +POT-Creation-Date: 2005-04-09 21:56+0200 +PO-Revision-Date: 2005-03-09 09:35+0530 +Last-Translator: Amanpreet Singh Alam +Language-Team: Punjabi MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit -X-Generator: KBabel 1.3.1 -%.1f ਜੀਬੀ%.1f ਕਿਲੋ-ਬਾਈਟ%.1f ਐਮਬੀ%.2f ਜੀਬੀ%.2f ਕਿਲੋ-ਬਾਈਟ%.2f ਐਮਬੀ%d ਬਾਈਟ%d ਜੀਬੀ%d ਕੇਬੀ%d ਐਮਬੀ%s ਸਿਰਫ RGB ਚਿੱਤਰਾਂ ਦਾ ਪ੍ਰਬੰਧਨ ਕਰ ਸਕਦਾ ਹੈ%s RGB ਜਾਂ ਗਰੇ ਪੈਮਾਨਾ ਚਿੱਤਰਾਂ ਦਾ ਪ੍ਰਬੰਧਨ ਕਰ ਸਕਦਾ ਹੈ%s RGB ਜਾਂ ਵਿਸ਼ਾ-ਸੂਚੀ ਪੈਮਾਨਾ ਚਿੱਤਰਾਂ ਦਾ ਪ੍ਰਬੰਧਨ ਕਰ ਸਕਦਾ ਹੈ%s ਸਿਰਫ ਬਿੱਟ-ਮੈਪ (ਦੋ ਰੰਗ) ਵਿਸ਼ਾ-ਸੂਚੀ ਚਿੱਤਰਾਂ ਦਾ ਪ੍ਰਬੰਧਨ ਕਰ ਸਕਦਾ ਹੈ%s ਸਿਰਫ ਗਰੇ-ਪੈਮਾਨਾ ਚਿੱਤਰਾਂ ਦਾ ਪ੍ਰਬੰਧਨ ਕਰ ਸਕਦਾ ਹੈ%s ਸਿਰਫ ਗਰੇ-ਪੈਮਾਨਾ ਜਾਂ ਵਿਸ਼ਾ-ਸੂਚੀ ਚਿੱਤਰਾਂ ਦਾ ਪ੍ਰਬੰਧਨ ਕਰ ਸਕਦਾ ਹੈ%s ਸਿਰਫ ਵਿਸ਼ਾ-ਸੂਚੀ ਚਿੱਤਰਾਂ ਦਾ ਪ੍ਰਬੰਧਨ ਕਰ ਸਕਦਾ ਹੈ%s ਸਿਰਫ ਪਰਤਾਂ ਦਾ ਸਜੀਵਤਾ ਫਰੇਮਾਂ ਦੇ ਤੌਰ ਤੇ ਪ੍ਰਬੰਧਨ ਕਰ ਸਕਦਾ ਹੈ%s ਪਰਤ ਮਖੌਟੇ ਦਾ ਪ੍ਰਬੰਧਨ ਨਹੀ ਕਰ ਸਕਦਾ%s ਪਰਤ ਪੂਰਤੀ, ਆਕਾਰ ਜਾਂ ਧੁੰਦਲਾਪਣ ਦਾ ਪ੍ਰਬੰਧਨ ਨਹੀ ਕਰ ਸਕਦਾ%s ਪਰਤਾਂ ਦਾ ਪ੍ਰਬੰਧਨ ਨਹੀ ਕਰ ਸਕਦਾ%s ਪਾਰਦਰਸ਼ਤਾ ਦਾ ਪ੍ਰਬੰਧਨ ਨਹੀ ਕਰ ਸਕਦਾ%s ਇੱਕ ਐਲਫਾ ਚੈਨਲ ਲੋਡ਼ਦਾ ਹੈ(ਅਯੋਗ UTF-8 ਸਤਰ)ਪੂਰਨ ਕਲੋਰੀਮੈਟ੍ਰਿਕਐਲਫਾ ਚੈਨਲ ਜੋਡ਼ੋਐਲਫਾਸਹਾਰਾਪਰਤ ਮਖੌਟਾ ਲਾਗੂ ਕਰੋਕਾਲਾਨੀਲਾਬੁਰਸ਼ ਚੋਣCMYKCMYK ਰੰਗ ਚੋਣਕਾਰICC ਰੰਗ ਰੇਖਾ-ਚਿੱਤਰ ਚੁਣੋਆਈਡਰੌਪਰ ਦਬਾਓ, ਫਿਰ ਆਪਣੇ ਪਰਦੇ ਉੱਪਰ ਕਿਤੇ ਵੀ ਚੁਣਨ ਲਈ ਇੱਕ ਰੰਗ ਦਬਾਓ ।ਰੰਗ ਕਮੀ ਵਾਲੀ ਦਿੱਖਰੰਗ ਸਬੂਤਰੰਗ ਕਮੀ ਕਿਸਮ:ਰੰਗ ਕਮੀ ਕਪਟ ਫਿਟਰ (Brettel-Vienot-Mollon algorithm)ICC ਰੰਗ ਰੇਖਾ-ਚਿੱਤਰ ਵਰਤਣ ਵਾਲਾ ਰੰਗ ਸਬੂਤ ਫਿਲਟਰਪੁਸ਼ਟੀਸੰਭਾਲ ਦੀ ਪੁਸ਼ਟੀਵਖਰੇਂਵਾਂਵਖਰੇਂਵਾਂ ਚੱਕਰ:ਭੂਰੇ-ਪੈਮਾਨੇ ਵਿੱਚ ਬਦਲੋਬਿੱਟ-ਮੈਪ ਮੂਲ ਵਿਵਸਥਾਵਾਂ ਵਰਤ ਕੇ ਵਿਸ਼ਾ-ਸੂਚੀ ਵਿੱਚ ਬਦਲੋ +X-Generator: KBabel 1.9.1 +Plural-Forms: nplurals=2; plural=(n != 1); +%.1f ਜੀਬੀ%.1f ਕਿਲੋ-ਬਾਈਟ%.1f ਐਮਬੀ%.2f ਜੀਬੀ%.2f ਕਿਲੋ-ਬਾਈਟ%.2f ਐਮਬੀ%d ਬਾਈਟ%d ਜੀਬੀ%d ਕੇਬੀ%d ਐਮਬੀ%s ਸਿਰਫ RGB ਚਿੱਤਰਾਂ ਦਾ ਪ੍ਰਬੰਧਨ ਕਰ ਸਕਦਾ ਹੈ%s RGB ਜਾਂ ਗਰੇ ਪੈਮਾਨਾ ਚਿੱਤਰਾਂ ਦਾ ਪ੍ਰਬੰਧਨ ਕਰ ਸਕਦਾ ਹੈ%s RGB ਜਾਂ ਵਿਸ਼ਾ-ਸੂਚੀ ਪੈਮਾਨਾ ਚਿੱਤਰਾਂ ਦਾ ਪ੍ਰਬੰਧਨ ਕਰ ਸਕਦਾ ਹੈ%s ਸਿਰਫ ਬਿੱਟ-ਮੈਪ (ਦੋ ਰੰਗ) ਵਿਸ਼ਾ-ਸੂਚੀ ਚਿੱਤਰਾਂ ਦਾ ਪ੍ਰਬੰਧਨ ਕਰ ਸਕਦਾ ਹੈ%s ਸਿਰਫ ਗਰੇ-ਪੈਮਾਨਾ ਚਿੱਤਰਾਂ ਦਾ ਪ੍ਰਬੰਧਨ ਕਰ ਸਕਦਾ ਹੈ%s ਸਿਰਫ ਗਰੇ-ਪੈਮਾਨਾ ਜਾਂ ਵਿਸ਼ਾ-ਸੂਚੀ ਚਿੱਤਰਾਂ ਦਾ ਪ੍ਰਬੰਧਨ ਕਰ ਸਕਦਾ ਹੈ%s ਸਿਰਫ ਵਿਸ਼ਾ-ਸੂਚੀ ਚਿੱਤਰਾਂ ਦਾ ਪ੍ਰਬੰਧਨ ਕਰ ਸਕਦਾ ਹੈ%s ਸਿਰਫ ਪਰਤਾਂ ਦਾ ਸਜੀਵਤਾ ਫਰੇਮਾਂ ਦੇ ਤੌਰ ਤੇ ਪ੍ਰਬੰਧਨ ਕਰ ਸਕਦਾ ਹੈ%s ਪਰਤ ਮਖੌਟੇ ਦਾ ਪ੍ਰਬੰਧਨ ਨਹੀ ਕਰ ਸਕਦਾ%s ਪਰਤ ਪੂਰਤੀ, ਆਕਾਰ ਜਾਂ ਧੁੰਦਲਾਪਣ ਦਾ ਪ੍ਰਬੰਧਨ ਨਹੀ ਕਰ ਸਕਦਾ%s ਪਰਤਾਂ ਦਾ ਪ੍ਰਬੰਧਨ ਨਹੀ ਕਰ ਸਕਦਾ%s ਪਾਰਦਰਸ਼ਤਾ ਦਾ ਪ੍ਰਬੰਧਨ ਨਹੀ ਕਰ ਸਕਦਾ%s ਇੱਕ ਐਲਫਾ ਚੈਨਲ ਲੋਡ਼ਦਾ ਹੈ(ਖਾਲੀ)(ਅਯੋਗ UTF-8 ਸਤਰ)ਪੂਰਨ ਕਲੋਰੀਮੈਟ੍ਰਿਕਐਲਫਾ ਚੈਨਲ ਜੋਡ਼ੋਐਲਫਾਸਹਾਰਾਪਰਤ ਮਖੌਟਾ ਲਾਗੂ ਕਰੋਕਾਲਾ(_k)ਕਾਲਾਕਾਲਾ ਹੀਕਾਲਾ ਖਿੱਚਿਆ ਹੋਇਆ (_P):ਨੀਲਾਬੁਰਸ਼ ਚੋਣCMYKCMYK ਰੰਗ ਚੋਣਕਾਰਕੇਂਦਰ(_e)ਠੀਕ ਘਰ ਡਾਇਰੈਕਟਰੀ ਪ੍ਰਾਪਤ ਨਹੀਂ ਕੀਤੀ ਜਾ ਸਕੀ ਹੈ। +ਥੰਮਨੇਲ ਆਰਜ਼ੀ ਫਾਇਲਾਂ (%s) ਨੂੰ ਇਸ ਦੀ ਬਜਾਏ ਫੋਲਡਰ ਵਿੱਚ ਸੰਭਾਲੇਗਾ।ਜਾਂਚ ਅਕਾਰਜਾਂਚ ਸ਼ੈਲੀICC ਰੰਗ ਰੇਖਾ-ਚਿੱਤਰ ਚੁਣੋਆਈਡਰੌਪਰ ਦਬਾਓ, ਫਿਰ ਆਪਣੇ ਪਰਦੇ ਉੱਪਰ ਕਿਤੇ ਵੀ ਚੁਣਨ ਲਈ ਇੱਕ ਰੰਗ ਦਬਾਓ ।ਰੰਗ ਕਮੀ ਵਾਲੀ ਦਿੱਖਰੰਗ ਸਬੂਤਰੰਗ ਕਮੀ ਕਿਸਮ:ਰੰਗ ਕਮੀ ਕਪਟ ਫਿਟਰ (Brettel-Vienot-Mollon algorithm)ICC ਰੰਗ ਰੇਖਾ-ਚਿੱਤਰ ਵਰਤਣ ਵਾਲਾ ਰੰਗ ਸਬੂਤ ਫਿਲਟਰਪੁਸ਼ਟੀਸੰਭਾਲ ਦੀ ਪੁਸ਼ਟੀਵਖਰੇਂਵਾਂਵਖਰੇਂਵਾਂ ਚੱਕਰ:ਭੂਰੇ-ਪੈਮਾਨੇ ਵਿੱਚ ਬਦਲੋਬਿੱਟ-ਮੈਪ ਮੂਲ ਵਿਵਸਥਾਵਾਂ ਵਰਤ ਕੇ ਵਿਸ਼ਾ-ਸੂਚੀ ਵਿੱਚ ਬਦਲੋ (ਨਤੀਜਾ ਵੇਖਣ ਲਈ ਇਸ ਨੂੰ ਦਸਤਾਵੇਜ਼ੀ ਕਰੋ)ਮੂਲ ਵਿਵਸਥਾਵਾਂ ਵਰਤ ਕੇ ਵਿਸ਼ਾ-ਸੂਚੀ ਵਿੱਚ ਬਦਲੋ -(ਨਤੀਜਾ ਵੇਖਣ ਲਈ ਇਸ ਨੂੰ ਦਸਤਾਵੇਜ਼ੀ ਕਰੋ)RGB ਵਿੱਚ ਬਦਲੋਫੈਲਾਉਮੌਜੂਦਾ:ਸਿਆਨਡਯੂਟਰਾਂਨੋਪੀਆ (ਹਰੇ ਨੂੰ ਭਾਵੁਕਤਾ)ਫਾਇਲ ਭੇਜੋਗੁਣਾਂਕਥੰਮਨੇਲ ਫੋਲਡਰ '%s' ਬਣਾਉਣ ਵਿੱਚ ਅਸਫਲ ।ਫੈਲਿਆ ਚਿੱਤਰਫੋਲਡਰਫੋਟ ਚੋਣਗਾਮਾਗਾਮਾ ਰੰਗ ਦਰਿਸ਼ ਫਿਲਟਰਢਾਲਵਾ ਚੋਣਹਰਾਵਧੇਰੇ ਵਖਰੇਂਵਾਂ ਰੰਗ ਦਰਿਸ਼ ਫਿਲਟਰਰੰਗਤਅੱਖਰ ਵਿਸਥਾਪਨਲਾਈਨ ਵਿਸਥਾਪਨਸੰਬੰਧਿਤਲੋਡ ਅਸਫਲਲੋਡ ਕੀਤਾਲੋਡ ਮੈਡਿਊਲ: '%s' -ਮਜੈਨਟਾਦਿੱਖ ਪਰਤਾਂ ਨੂੰ ਵਿਲੀਨ ਕਰੋਮੈਡਿਊਲ '%s' ਲੋਡ ਕਰਨ ਵਿੱਚ ਗਲਤੀ: %sਮੈਡਿਊਲ ਗਲਤੀਹੋਰ਼ਲੋਡ ਨਹੀ ਹੋਇਆਪੁਰਾਣਾ:ਚਿਤਰਕਾਰ-ਨਮੂਨਾ ਤਿਕੋਣ ਰੰਗ ਚੋਣਕਾਰਵਿੱਚ ਚਿਪਕਾਓਨਵੇ ਵਾਂਗ ਚਿਪਕਾਓਤਰਤੀਬ ਚੋਣਪ੍ਰਤੱਖ ਗਿਆਨਸ਼ੀਲਦਬਾਅਪਰੋਤਾਂਨੋਪੀਆ (ਲਾਲ ਨੂੰ ਭਾਵੁਕਤਾ)ਲਾਲਸੰਬੰਧਿਤ ਕਲੋਰੀਮੈਟ੍ਰਿਕਸੰਤ੍ਰਿਪਤੀਸਜੀਵਤਾ ਦੇ ਤੌਰ ਤੇ ਸੰਭਾਲੋਪੈਮਾਨਾਉਪਜੇ ਬੇਤਰਤੀਬ ਨੰਬਰ ਸਮੇਤ ਮੂਲ ਬੇਤਰਤੀਬ ਨੰਬਰ ਉਤਪਾਦਕਫਾਇਲ ਚੁਣੋਫੋਲਡਰ ਚੁਣੋਤਿਆਗ ਮੈਡਿਊਲ: '%s' -ਭੇਜ ਪਰਿਵਰਤਨ ਤੁਹਾਡੇ ਮੁੱਢਲੇ ਚਿੱਤਰ ਨੂੰ ਤਬਦੀਲ ਨਹੀ ਕਰੇਗਾ ।ਤਿਕੋਣਟਰੀਟਾਂਨੋਪੀਆ (ਨੀਲੇ ਨੂੰ ਭਾਵੁਕਤਾ)ਇਕਾਈਇਕਾਈ ਚੋਣਬੇਤਰਤੀਬੇ ਨੰਬਰ ਉਤਪਾਦਕ ਮੂਲ ਲਈ ਇਹ ਮੁੱਲ ਚੁਣੋ - ਇਸ ਨਾਲ ਤੁਸੀ ਦਰਸਾਏੲ "ਬੇਤਰਤੀਬ" ਕਿਰਿਆ ਦੁਹਰਾ ਸਕਦੇ ਹੋਮੁੱਲਦਿੱਖਪਾਣੀ ਵਰਗਾ ਰੰਗਪਾਣੀ ਵਰਗੇ ਰੰਗ ਦੇ ਨਮੂਨੇ ਵਰਗਾ ਰੰਗ ਚੋਣਕਾਰਲਿਖਣਯੋਗਪੀਲਾਤੁਸੀ ਚੈਨਲ %s (ਸੰਭਾਲੀ ਚੋਣ) ਦੇ ਤੌਰ ਤੇ ਸੰਭਾਲ ਰਹੇ ਹੋ । +(ਨਤੀਜਾ ਵੇਖਣ ਲਈ ਇਸ ਨੂੰ ਦਸਤਾਵੇਜ਼ੀ ਕਰੋ)RGB ਵਿੱਚ ਬਦਲੋਥੰਮਨੇਲ ਫੋਲਡਰ '%s' ਬਣਾਉਣ ਵਿੱਚ ਅਸਫਲ: %sਫੈਲਾਉਮੌਜੂਦਾ:ਸਿਆਨਗੂੜੇ ਡੱਬਡਯੂਟਰਾਂਨੋਪੀਆ (ਹਰੇ ਨੂੰ ਭਾਵੁਕਤਾ)ਫਾਇਲ ਭੇਜੋਗੁਣਾਂਕਥੰਮਨੇਲ ਫੋਲਡਰ '%s' ਬਣਾਉਣ ਵਿੱਚ ਅਸਫਲ ।ਫੈਲਿਆ ਚਿੱਤਰਫੋਲਡਰਫੋਟ ਚੋਣਗਾਮਾਗਾਮਾ ਰੰਗ ਦਰਿਸ਼ ਫਿਲਟਰਗੀਗਾ ਬਾਈਟਢਾਲਵਾ ਚੋਣਸਲੇਟੀ ਹੀਸਲੇਟੀਸਲੇਟੀ-ਐਲਫਾਹਰਾHTML ਸ਼ੈਲੀ(_N):HTML ਅਤੇ CSS ਵਿੱਚ ਵਰਤੀ ਜਾਂਦੀ ਹੈਕਸਾਡੈਸੀਮਲ ਰੰਗ ਵਧੇਰੇ ਵਖਰੇਂਵਾਂ ਰੰਗ ਦਰਿਸ਼ ਫਿਲਟਰਰੰਗਤIndexedਤਤਕਰਾ ਰੰਗIndexed-alphaਕਿਲੋ-ਬਾਈਟਅੱਖਰ ਵਿਸਥਾਪਨਲਾਈਨ ਵਿਸਥਾਪਨਵੱਡੇਹਲਕੇ ਡੱਬਸੰਬੰਧਿਤਲੋਡ ਅਸਫਲਲੋਡ ਕੀਤਾਲੋਡ ਮੈਡਿਊਲ: '%s' +ਮਜੈਨਟਾਮੱਧਮੈਗਾ ਬਾਈਟਦਿੱਖ ਪਰਤਾਂ ਨੂੰ ਵਿਲੀਨ ਕਰੋਅਰਧ ਡੱਬਮੈਡਿਊਲ '%s' ਲੋਡ ਕਰਨ ਵਿੱਚ ਗਲਤੀ: %sਮੈਡਿਊਲ ਗਲਤੀਹੋਰ਼ਲੋਡ ਨਹੀ ਹੋਇਆਪੁਰਾਣਾ:ਚਿਤਰਕਾਰ-ਨਮੂਨਾ ਤਿਕੋਣ ਰੰਗ ਚੋਣਕਾਰਤਰਤੀਬ ਚੋਣਵਿੱਚ ਚਿਪਕਾਓਨਵੇ ਵਾਂਗ ਚਿਪਕਾਓਤਰਤੀਬ ਚੋਣਪ੍ਰਤੱਖ ਗਿਆਨਸ਼ੀਲਦਬਾਅਪਰੋਤਾਂਨੋਪੀਆ (ਲਾਲ ਨੂੰ ਭਾਵੁਕਤਾ)RGBRGB ਰੰਗRGB-alphaਲਾਲਸੰਬੰਧਿਤ ਕਲੋਰੀਮੈਟ੍ਰਿਕਸੰਤ੍ਰਿਪਤੀਸਜੀਵਤਾ ਦੇ ਤੌਰ ਤੇ ਸੰਭਾਲੋਪੈਮਾਨਾਉਪਜੇ ਬੇਤਰਤੀਬ ਨੰਬਰ ਸਮੇਤ ਮੂਲ ਬੇਤਰਤੀਬ ਨੰਬਰ ਉਤਪਾਦਕਫਾਇਲ ਚੁਣੋਫੋਲਡਰ ਚੁਣੋਤਿਆਗ ਮੈਡਿਊਲ: '%s' +ਛੋਟਾਭੇਜ ਪਰਿਵਰਤਨ ਤੁਹਾਡੇ ਮੁੱਢਲੇ ਚਿੱਤਰ ਨੂੰ ਤਬਦੀਲ ਨਹੀ ਕਰੇਗਾ ।ਰੰਗਦਾਰ ਸਿਆਹੀ ਵਿੱਚੋਂ ਫੀਸਦੀ ਕਾਲਾ ਰੰਗ ਖਿੱਚਿਆ ਜਾਵੇਗਾ।ਤਿਕੋਣਟਰੀਟਾਂਨੋਪੀਆ (ਨੀਲੇ ਨੂੰ ਭਾਵੁਕਤਾ)ਇਕਾਈਇਕਾਈ ਚੋਣਬੇਤਰਤੀਬੇ ਨੰਬਰ ਉਤਪਾਦਕ ਮੂਲ ਲਈ ਇਹ ਮੁੱਲ ਚੁਣੋ - ਇਸ ਨਾਲ ਤੁਸੀ ਦਰਸਾਏੲ "ਬੇਤਰਤੀਬ" ਕਿਰਿਆ ਦੁਹਰਾ ਸਕਦੇ ਹੋਮੁੱਲਦਿੱਖਪਾਣੀ ਵਰਗਾ ਰੰਗਪਾਣੀ ਵਰਗੇ ਰੰਗ ਦੇ ਨਮੂਨੇ ਵਰਗਾ ਰੰਗ ਚੋਣਕਾਰਚਿੱਟਾ ਹੀਲਿਖਣਯੋਗਪੀਲਾਤੁਸੀ ਚੈਨਲ %s (ਸੰਭਾਲੀ ਚੋਣ) ਦੇ ਤੌਰ ਤੇ ਸੰਭਾਲ ਰਹੇ ਹੋ । ਇਹ ਦਿੱਖ ਪਰਤਾਂ ਨੂੰ ਨਹੀ ਸੰਭਾਲੇਗਾ ।ਤੁਸੀ ਪਰਤ ਮਖੌਟਾ %s ਦੇ ਤੌਰ ਤੇ ਸੰਭਾਲ ਰਹੇ ਹੋ । -ਇਹ ਦਿੱਖ ਪਰਤਾਂ ਨੂੰ ਨਹੀ ਸੰਭਾਲੇਗਾ ।ਤੁਹਾਡਾ ਚਿੱਤਰ ਹੇਠਲੇ ਕਾਰਨਾਂ ਕਰਕੇ %s ਦੇ ਤੌਰ ਤੇ ਸੰਭਾਲਣ ਤੋਂ ਪਹਿਲਾਂ ਭੇਜਣੀ ਚਾਹੀਦੀ ਹੈ:_A_Bਕਾਲਾ ਬਿੰਦੂ ਪੂਰਤੀਝਲਕ਼_Cਨਕਲੀਸੋਧਭੇਜੋ_Gਗਾਮਾ:_Hਅਣਡਿੱਠ ਕਰੋਉਦੇਸ਼:_K_Mਨਵਾਂ ਮੂਲਰੇਖਾ-ਚਿੱਤਰ:_Rਬੇਤਰਤੀਬੀਮੁਡ਼ ਨਿਰਧਾਰਨਮੁਡ਼-ਆਕਾਰਘੁੰਮਾਓ_Sਪੈਮਾਨਾਧੱਕਾਤਬਦੀਲ_V_Yਪ੍ਤੀਸ਼ਤ \ No newline at end of file +ਇਹ ਦਿੱਖ ਪਰਤਾਂ ਨੂੰ ਨਹੀ ਸੰਭਾਲੇਗਾ ।ਤੁਹਾਡਾ ਚਿੱਤਰ ਹੇਠਲੇ ਕਾਰਨਾਂ ਕਰਕੇ %s ਦੇ ਤੌਰ ਤੇ ਸੰਭਾਲਣ ਤੋਂ ਪਹਿਲਾਂ ਭੇਜਣੀ ਚਾਹੀਦੀ ਹੈ:_A_Bਪਿੱਠਭੂਮੀ ਰੰਗ(_B)ਕਾਲਾ ਬਿੰਦੂ ਪੂਰਤੀਝਲਕ਼_Cਨਕਲੀਸੋਧਭੇਜੋਮੁੱਖ-ਭੂਮੀ ਰੰਗ(_F)_Gਗਾਮਾ:_Hਅਣਡਿੱਠ ਕਰੋਉਦੇਸ਼:_K_Mਨਵਾਂ ਮੂਲਦਿੱਖ(_P)ਰੇਖਾ-ਚਿੱਤਰ:_Rਬੇਤਰਤੀਬੀਮੁਡ਼ ਨਿਰਧਾਰਨਮੁਡ਼-ਆਕਾਰਘੁੰਮਾਓ_Sਪੈਮਾਨਾਧੱਕਾਛੋਹ(_S)ਤਬਦੀਲ_Vਚਿੱਟਾ(_W)_Yਪ੍ਤੀਸ਼ਤ \ No newline at end of file diff -uraN gimp-2.2.4/po-libgimp/pa.po gimp-2.2.5/po-libgimp/pa.po --- gimp-2.2.4/po-libgimp/pa.po 2005-02-22 23:12:22.000000000 +0100 +++ gimp-2.2.5/po-libgimp/pa.po 2005-04-09 23:09:07.000000000 +0200 @@ -1,21 +1,24 @@ +# translation of gimp-libgimp.gimp-2-2.po to Punjabi # translation of pa.po to Punjabi # Copyright (C) 2004 THE gimp-libgimp'S COPYRIGHT HOLDER # This file is distributed under the same license as the gimp-libgimp packageJaswinder Singh Phulewala , 2004. # Amanpreet Singh Alam , 2004. +# Amanpreet Singh Alam , 2005. # # msgid "" msgstr "" -"Project-Id-Version: pa\n" +"Project-Id-Version: gimp-libgimp.gimp-2-2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-02-22 23:04+0100\n" -"PO-Revision-Date: 2004-07-20 16:17+0530\n" -"Last-Translator: Amanpreet Singh Alam \n" -"Language-Team: Punjabi \n" +"POT-Creation-Date: 2005-04-09 21:56+0200\n" +"PO-Revision-Date: 2005-03-09 09:35+0530\n" +"Last-Translator: Amanpreet Singh Alam \n" +"Language-Team: Punjabi \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: KBabel 1.3.1\n" +"X-Generator: KBabel 1.9.1\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: ../libgimp/gimpbrushmenu.c:129 msgid "Brush Selection" @@ -200,10 +203,9 @@ #: ../libgimp/gimpmenu.c:406 ../libgimpwidgets/gimpintstore.c:181 msgid "(Empty)" -msgstr "" +msgstr "(ਖਾਲੀ)" #: ../libgimp/gimppalettemenu.c:91 -#, fuzzy msgid "Palette Selection" msgstr "ਤਰਤੀਬ ਚੋਣ" @@ -217,73 +219,71 @@ #: ../libgimpbase/gimpbaseenums.c:23 msgid "Small" -msgstr "" +msgstr "ਛੋਟਾ" #: ../libgimpbase/gimpbaseenums.c:24 msgid "Medium" -msgstr "" +msgstr "ਮੱਧ" #: ../libgimpbase/gimpbaseenums.c:25 msgid "Large" -msgstr "" +msgstr "ਵੱਡੇ" #: ../libgimpbase/gimpbaseenums.c:57 msgid "Light Checks" -msgstr "" +msgstr "ਹਲਕੇ ਡੱਬ" #: ../libgimpbase/gimpbaseenums.c:58 msgid "Mid-Tone Checks" -msgstr "" +msgstr "ਅਰਧ ਡੱਬ" #: ../libgimpbase/gimpbaseenums.c:59 msgid "Dark Checks" -msgstr "" +msgstr "ਗੂੜੇ ਡੱਬ" #: ../libgimpbase/gimpbaseenums.c:60 msgid "White Only" -msgstr "" +msgstr "ਚਿੱਟਾ ਹੀ" #: ../libgimpbase/gimpbaseenums.c:61 msgid "Gray Only" -msgstr "" +msgstr "ਸਲੇਟੀ ਹੀ" #: ../libgimpbase/gimpbaseenums.c:62 -#, fuzzy msgid "Black Only" -msgstr "ਕਾਲਾ" +msgstr "ਕਾਲਾ ਹੀ" #: ../libgimpbase/gimpbaseenums.c:91 msgid "RGB color" -msgstr "" +msgstr "RGB ਰੰਗ" #: ../libgimpbase/gimpbaseenums.c:92 ../libgimpbase/gimpbaseenums.c:127 -#, fuzzy msgid "Grayscale" -msgstr "ਭੂਰੇ-ਪੈਮਾਨੇ ਵਿੱਚ ਬਦਲੋ" +msgstr "ਸਲੇਟੀ" #: ../libgimpbase/gimpbaseenums.c:93 msgid "Indexed color" -msgstr "" +msgstr "ਤਤਕਰਾ ਰੰਗ" #: ../libgimpbase/gimpbaseenums.c:125 msgid "RGB" -msgstr "" +msgstr "RGB" #: ../libgimpbase/gimpbaseenums.c:126 msgid "RGB-alpha" -msgstr "" +msgstr "RGB-alpha" #: ../libgimpbase/gimpbaseenums.c:128 msgid "Grayscale-alpha" -msgstr "" +msgstr "ਸਲੇਟੀ-ਐਲਫਾ" #: ../libgimpbase/gimpbaseenums.c:129 msgid "Indexed" -msgstr "" +msgstr "Indexed" #: ../libgimpbase/gimpbaseenums.c:130 msgid "Indexed-alpha" -msgstr "" +msgstr "Indexed-alpha" #: ../libgimpbase/gimpmemsize.c:177 #, c-format @@ -378,6 +378,8 @@ "Cannot determine a valid home directory.\n" "Thumbnails will be stored in the folder for temporary files (%s) instead." msgstr "" +"ਠੀਕ ਘਰ ਡਾਇਰੈਕਟਰੀ ਪ੍ਰਾਪਤ ਨਹੀਂ ਕੀਤੀ ਜਾ ਸਕੀ ਹੈ।\n" +"ਥੰਮਨੇਲ ਆਰਜ਼ੀ ਫਾਇਲਾਂ (%s) ਨੂੰ ਇਸ ਦੀ ਬਜਾਏ ਫੋਲਡਰ ਵਿੱਚ ਸੰਭਾਲੇਗਾ।" #: ../libgimpthumb/gimpthumb-utils.c:249 ../libgimpthumb/gimpthumb-utils.c:317 #, c-format @@ -385,29 +387,25 @@ msgstr "ਥੰਮਨੇਲ ਫੋਲਡਰ '%s' ਬਣਾਉਣ ਵਿੱਚ ਅਸਫਲ ।" #: ../libgimpthumb/gimpthumbnail.c:919 -#, fuzzy, c-format +#, c-format msgid "Could not create thumbnail for %s: %s" -msgstr "ਥੰਮਨੇਲ ਫੋਲਡਰ '%s' ਬਣਾਉਣ ਵਿੱਚ ਅਸਫਲ ।" +msgstr "ਥੰਮਨੇਲ ਫੋਲਡਰ '%s' ਬਣਾਉਣ ਵਿੱਚ ਅਸਫਲ: %s" #: ../libgimpwidgets/gimpcolorbutton.c:99 -#, fuzzy msgid "_Foreground Color" -msgstr "/ਮੁੱਖ-ਭੂਮੀ ਰੰਗ" +msgstr "ਮੁੱਖ-ਭੂਮੀ ਰੰਗ(_F)" #: ../libgimpwidgets/gimpcolorbutton.c:103 -#, fuzzy msgid "_Background Color" -msgstr "/ਪਿੱਠਭੂਮੀ ਰੰਗ" +msgstr "ਪਿੱਠਭੂਮੀ ਰੰਗ(_B)" #: ../libgimpwidgets/gimpcolorbutton.c:107 -#, fuzzy msgid "Blac_k" -msgstr "/ਕਾਲਾ" +msgstr "ਕਾਲਾ(_k)" #: ../libgimpwidgets/gimpcolorbutton.c:111 -#, fuzzy msgid "_White" -msgstr "/ਸਫੈਦ" +msgstr "ਚਿੱਟਾ(_W)" #: ../libgimpwidgets/gimpcolorscales.c:133 msgid "Scales" @@ -484,13 +482,12 @@ msgstr "ਐਲਫਾ" #: ../libgimpwidgets/gimpcolorscales.c:243 -#, fuzzy msgid "Hexadecimal color notation as used in HTML and CSS" -msgstr "HTML ਵਿੱਚ ਵਰਤੀ ਜਾਂਦੀ ਹੈਕਸਾਡੈਸੀਮਲ ਰੰਗ " +msgstr "HTML ਅਤੇ CSS ਵਿੱਚ ਵਰਤੀ ਜਾਂਦੀ ਹੈਕਸਾਡੈਸੀਮਲ ਰੰਗ " #: ../libgimpwidgets/gimpcolorscales.c:248 msgid "HTML _Notation:" -msgstr "" +msgstr "HTML ਸ਼ੈਲੀ(_N):" #: ../libgimpwidgets/gimpcolorselection.c:203 msgid "Current:" @@ -509,17 +506,14 @@ msgstr "ਫਾਇਲ ਚੁਣੋ" #: ../libgimpwidgets/gimpmemsizeentry.c:232 -#, fuzzy msgid "Kilobytes" msgstr "ਕਿਲੋ-ਬਾਈਟ" #: ../libgimpwidgets/gimpmemsizeentry.c:233 -#, fuzzy msgid "Megabytes" msgstr "ਮੈਗਾ ਬਾਈਟ" #: ../libgimpwidgets/gimpmemsizeentry.c:234 -#, fuzzy msgid "Gigabytes" msgstr "ਗੀਗਾ ਬਾਈਟ" @@ -539,16 +533,16 @@ #: ../libgimpwidgets/gimppreviewarea.c:126 msgid "Check Size" -msgstr "" +msgstr "ਜਾਂਚ ਅਕਾਰ" #: ../libgimpwidgets/gimppreviewarea.c:133 msgid "Check Style" -msgstr "" +msgstr "ਜਾਂਚ ਸ਼ੈਲੀ" #. toggle button to (des)activate the instant preview #: ../libgimpwidgets/gimppreview.c:240 msgid "_Preview" -msgstr "" +msgstr "ਦਿੱਖ(_P)" #: ../libgimpwidgets/gimpstock.c:113 msgid "Anchor" @@ -556,7 +550,7 @@ #: ../libgimpwidgets/gimpstock.c:114 msgid "C_enter" -msgstr "" +msgstr "ਕੇਂਦਰ(_e)" #: ../libgimpwidgets/gimpstock.c:115 msgid "_Duplicate" @@ -588,7 +582,7 @@ #: ../libgimpwidgets/gimpstock.c:154 ../libgimpwidgets/gimpstock.c:158 msgid "_Stroke" -msgstr "" +msgstr "ਛੋਹ(_S)" #: ../libgimpwidgets/gimpstock.c:170 msgid "L_etter Spacing" @@ -783,13 +777,12 @@ msgstr "ਕਾਲਾ" #: ../modules/colorsel_cmyk.c:191 -#, fuzzy msgid "Black _Pullout:" -msgstr "ਕਾਲਾ ਖਿੱਚਿਆ ਹੋਇਆ (%):" +msgstr "ਕਾਲਾ ਖਿੱਚਿਆ ਹੋਇਆ (_P):" #: ../modules/colorsel_cmyk.c:208 msgid "The percentage of black to pull out of the colored inks." -msgstr "" +msgstr "ਰੰਗਦਾਰ ਸਿਆਹੀ ਵਿੱਚੋਂ ਫੀਸਦੀ ਕਾਲਾ ਰੰਗ ਖਿੱਚਿਆ ਜਾਵੇਗਾ।" #: ../modules/colorsel_triangle.c:104 msgid "Painter-style triangle color selector" @@ -810,9 +803,3 @@ #: ../modules/colorsel_water.c:220 msgid "Pressure" msgstr "ਦਬਾਅ" - -#~ msgid "None" -#~ msgstr "ਕੋਈ ਨਹੀ" - -#~ msgid "He_x Triplet:" -#~ msgstr "ਹੈਕਸ ਤਿੱਕਡ਼ੀ:" diff -uraN gimp-2.2.4/po-libgimp/pl.gmo gimp-2.2.5/po-libgimp/pl.gmo --- gimp-2.2.4/po-libgimp/pl.gmo 2005-02-22 23:12:24.000000000 +0100 +++ gimp-2.2.5/po-libgimp/pl.gmo 2005-04-09 23:09:09.000000000 +0200 @@ -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: 2005-02-22 23:04+0100 +POT-Creation-Date: 2005-04-09 21:56+0200 PO-Revision-Date: 2005-02-02 23:11+0100 Last-Translator: Bartosz Kosiorek Language-Team: Polish diff -uraN gimp-2.2.4/po-libgimp/pl.po gimp-2.2.5/po-libgimp/pl.po --- gimp-2.2.4/po-libgimp/pl.po 2005-02-22 23:12:22.000000000 +0100 +++ gimp-2.2.5/po-libgimp/pl.po 2005-04-09 23:09:07.000000000 +0200 @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: gimp-libgimp\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-02-22 23:04+0100\n" +"POT-Creation-Date: 2005-04-09 21:56+0200\n" "PO-Revision-Date: 2005-02-02 23:11+0100\n" "Last-Translator: Bartosz Kosiorek \n" "Language-Team: Polish \n" diff -uraN gimp-2.2.4/po-libgimp/pt_BR.gmo gimp-2.2.5/po-libgimp/pt_BR.gmo --- gimp-2.2.4/po-libgimp/pt_BR.gmo 2005-02-22 23:12:24.000000000 +0100 +++ gimp-2.2.5/po-libgimp/pt_BR.gmo 2005-04-09 23:09:09.000000000 +0200 @@ -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: 2005-02-22 23:04+0100 +POT-Creation-Date: 2005-04-09 21:56+0200 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.4/po-libgimp/pt_BR.po gimp-2.2.5/po-libgimp/pt_BR.po --- gimp-2.2.4/po-libgimp/pt_BR.po 2005-02-22 23:12:22.000000000 +0100 +++ gimp-2.2.5/po-libgimp/pt_BR.po 2005-04-09 23:09:07.000000000 +0200 @@ -10,7 +10,7 @@ msgstr "" "Project-Id-Version: pt_BR\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-02-22 23:04+0100\n" +"POT-Creation-Date: 2005-04-09 21:56+0200\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.4/po-libgimp/pt.gmo gimp-2.2.5/po-libgimp/pt.gmo --- gimp-2.2.4/po-libgimp/pt.gmo 2005-02-22 23:12:24.000000000 +0100 +++ gimp-2.2.5/po-libgimp/pt.gmo 2005-04-09 23:09:09.000000000 +0200 @@ -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: 2005-02-22 23:04+0100 +POT-Creation-Date: 2005-04-09 21:56+0200 PO-Revision-Date: 2004-03-21 20:20+0000 Last-Translator: Duarte Loreto Language-Team: Portuguese diff -uraN gimp-2.2.4/po-libgimp/pt.po gimp-2.2.5/po-libgimp/pt.po --- gimp-2.2.4/po-libgimp/pt.po 2005-02-22 23:12:22.000000000 +0100 +++ gimp-2.2.5/po-libgimp/pt.po 2005-04-09 23:09:07.000000000 +0200 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: 2.6\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-02-22 23:04+0100\n" +"POT-Creation-Date: 2005-04-09 21:56+0200\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.4/po-libgimp/ro.gmo gimp-2.2.5/po-libgimp/ro.gmo --- gimp-2.2.4/po-libgimp/ro.gmo 2005-02-22 23:12:24.000000000 +0100 +++ gimp-2.2.5/po-libgimp/ro.gmo 2005-04-09 23:09:09.000000000 +0200 @@ -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: 2005-02-22 23:04+0100 +POT-Creation-Date: 2005-04-09 21:56+0200 PO-Revision-Date: 2000-11-24 15:46+0100 Last-Translator: Robert Claudiu Gheorghe Language-Team: Română diff -uraN gimp-2.2.4/po-libgimp/ro.po gimp-2.2.5/po-libgimp/ro.po --- gimp-2.2.4/po-libgimp/ro.po 2005-02-22 23:12:22.000000000 +0100 +++ gimp-2.2.5/po-libgimp/ro.po 2005-04-09 23:09:07.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: gimp-libgimp\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-02-22 23:04+0100\n" +"POT-Creation-Date: 2005-04-09 21:56+0200\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.4/po-libgimp/ru.gmo gimp-2.2.5/po-libgimp/ru.gmo --- gimp-2.2.4/po-libgimp/ru.gmo 2005-02-22 23:12:24.000000000 +0100 +++ gimp-2.2.5/po-libgimp/ru.gmo 2005-04-09 23:09:09.000000000 +0200 @@ -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: 2005-02-22 23:04+0100 +POT-Creation-Date: 2005-04-09 21:56+0200 PO-Revision-Date: 2004-11-13 00:02+0300 Last-Translator: AnatolyA. Yakushin Language-Team: russian diff -uraN gimp-2.2.4/po-libgimp/ru.po gimp-2.2.5/po-libgimp/ru.po --- gimp-2.2.4/po-libgimp/ru.po 2005-02-22 23:12:22.000000000 +0100 +++ gimp-2.2.5/po-libgimp/ru.po 2005-04-09 23:09:08.000000000 +0200 @@ -10,7 +10,7 @@ msgstr "" "Project-Id-Version: gimp.LIBGIMP.ru\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-02-22 23:04+0100\n" +"POT-Creation-Date: 2005-04-09 21:56+0200\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.4/po-libgimp/sk.gmo gimp-2.2.5/po-libgimp/sk.gmo --- gimp-2.2.4/po-libgimp/sk.gmo 2005-02-22 23:12:24.000000000 +0100 +++ gimp-2.2.5/po-libgimp/sk.gmo 2005-04-09 23:09:09.000000000 +0200 @@ -1,41 +1,42 @@ - *(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?BILfT%:,3gD5D/[7!>$$Bg -   * 1 @ E X d   a !-!?!E\!<! !!!""{6"{".#*?#j# -s# ~##&###5#$ -#$ .$<$!A$c$f$ -v$$$$ $,$0$% %,%>%O%R% c%o%w% -%% %% -%%%%&'& E&R& Z&h&)p& & && & &&&&' '' &'0'H'Q'h'Bo'''''5'=*( h(#u(((|(0) 8) D)(Q) z)))V)I)f<******* * *+ -+++$+ '+3+<+?+B+ Q+ [+e+ h+u++ -+++ +++++++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 +  $*B(m4#.!-@n.&<NT[mt +zr +> IUVq A*Ep xTM +X%g % ' "17 R\ o y2"   '1 AO Ub iu|   + %6 +H S` +r}!   +; : FTk7q8"f" + +_P=U +! +$/5=ORZ]enq t~  + +B2:BJRZbkqw%}:3D5WD/7!:>\$ +  5 I N X o x      `!|!!a! ")";"EX"<" """##{2#{#*$*;$f$ +o$ z$$&$$$5$% +% *%8%!=%_%b% +r%}%%% %,%0%& &(&:&K&N& _&k&s& +&& && +&&&&''' A'N' V'd')l' ' '' ' ''&' ( (( "(,(D(M(d(Bk(((((5(=&) d)#q)))|),* 4* @*(M* v***V*I*f8+++++++ + ++,,, , #,/,8,;,>, M, W,a, d,q,, +,,, ,,,,,,,+4I\^$-Fl/H= +3V?vb0Z(d] <y){6"[o5,iRC mYB`&PfSph@1# a8;W2e%KT.cX~!9JA'N u*rGLEs>twDQ Mqx7_|U:Onzjgk}%.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_enterCannot determine a valid home directory. +Thumbnails will be stored in the folder for temporary files (%s) instead.Check 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 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_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 +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: 2005-02-22 23:04+0100 -PO-Revision-Date: 2004-11-30 18:27+0100 -Last-Translator: Zdenko Podobný +POT-Creation-Date: 2005-04-09 21:56+0200 +PO-Revision-Date: 2005-03-20 20:04+0100 +Last-Translator: Marcel Telka Language-Team: Slovak MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit -X-Generator: KBabel 1.3 -%.1f GB%.1f KB%.1f MB%.2f GB%.2f KB%.2f MB%d bytov%d GB%d KB%d MB%s vie pracovať iba s RGB obrázkami%s vie pracovať iba s obrázkami v odtieňoch šedi a RGB%s vie pracovať iba s RGB/indexovanými obrázkami%s vie spracovať iba bitmapové (dvojfarebné) indexované obrázky%s vie pracovať iba s obrázkami v odtieňoch šedej%s vie pracovať iba s indexovanými obrázkami a v odtieňoch šedi%s vie pracovať iba s indexovanými obrázkami%s môže spracovať vrstvy iba ako políčka animácie%s nevie spracovať masky vrstiev%s nevie pracovať s posunom, veľkosťou alebo krytím vrstvy%s nevie pracovať s vrstvami%s nevie pracovať s priesvitnosťou%s potrebuje alfa kanál(Prázdne)(neplatný UTF-8 reťazec)Absolútna kalorimetriaPridať alfa kanálAlfaUkotveniePoužiť masky vrstievČier_naČiernaIba čiernaPoužitie č_iernej:ModráVýber štetcaCMYKVýber farieb CMYKC_entrovaťVeľkosť polí šachovniceŠtýl šachovniceZvoľte ICC farebný profilFarbu vyberiete tak, že kliknete na kvapkadlo a potom kliknite na farbu kdekoľvek na obrazovke.Videnie s farebnou poruchouFarebná skúškaTyp farebnej ne_dokonalosti:Filter simulácie farebnej poruchy (algoritmus Brettel-Vienot-Mollon)Filter farebná skúška s použitím ICC farebného profiluPotvrdiťPotvrdiť ukladanieKontrastC_ykly kontrastu:Konverzia do odtieňov šedejSkonvertovať na indexované použitím štandardných nastavení +%.1f GB%.1f KB%.1f MB%.2f GB%.2f KB%.2f MB%d bytov%d GB%d KB%d MB%s vie pracovať iba s RGB obrázkami%s vie pracovať iba s obrázkami v odtieňoch šedi a RGB%s vie pracovať iba s RGB/indexovanými obrázkami%s vie spracovať iba bitmapové (dvojfarebné) indexované obrázky%s vie pracovať iba s obrázkami v odtieňoch šedej%s vie pracovať iba s indexovanými obrázkami a v odtieňoch šedi%s vie pracovať iba s indexovanými obrázkami%s môže spracovať vrstvy iba ako políčka animácie%s nevie spracovať masky vrstiev%s nevie pracovať s posunom, veľkosťou alebo krytím vrstvy%s nevie pracovať s vrstvami%s nevie pracovať s priesvitnosťou%s potrebuje alfa kanál(Prázdne)(neplatný UTF-8 reťazec)Absolútna kalorimetriaPridať alfa kanálAlfaUkotveniePoužiť masky vrstievČier_naČiernaIba čiernaPoužitie č_iernej:ModráVýber štetcaCMYKVýber farieb CMYKC_entrovaťNepodarilo sa zistiť platný domovský priečinok. +Náhľady budú namiesto toho uložené v priečinku pre dočasné súbory (%s).Veľkosť polí šachovniceŠtýl šachovniceZvoľte ICC farebný profilFarbu vyberiete tak, že kliknete na kvapkadlo a potom kliknite na farbu kdekoľvek na obrazovke.Videnie s farebnou poruchouFarebná skúškaTyp farebnej ne_dokonalosti:Filter simulácie farebnej poruchy (algoritmus Brettel-Vienot-Mollon)Filter farebná skúška s použitím ICC farebného profiluPotvrdiťPotvrdiť ukladanieKontrastC_ykly kontrastu:Konverzia do odtieňov šedejSkonvertovať na indexované použitím štandardných nastavení (Použite manuálne nastavenie pre vylepšenie výsledku)Skonvertovať na indexované použitím štandardných nastavení (Použite manuálne nastavenie pre vylepšenie výsledku)Konverzia do RGBNepodarilo sa vytvoriť náhľad na %s: %sOrezanieAktuálne:AzúrováTmavá šachovnicaDeuteranopia (necitlivosť na zelenú)Exportovať súborFaktorNepodarilo sa vytvoriť priečinok s náhľadmi '%s'.Do jednej vrstvyPriečinokVýber písmaGamaFilter farebného zobrazenia gamaGbVýber prechoduIba šedáOdtiene šedejOdtiene šedej-alfaZelenáHTML _zápis:Hexadecimálny zápis farby ako v HTML a CSSFilter farebného zobrazenia vysokého kontrastuOdtieňIndexovanéIndexovaná farbaIndexovaná-alfaKbRozostup písmenRiadkovanieVeľkéSvetlá šachovnicaPrepojenéNačítavanie zlyhaloNačítanéNačítavanie modulu: '%s' PurpurováStrednéMbZlúčiť viditeľné vrstvyStredná šachovnicaChyba pri načítavaní modulu '%s': %sChyba moduluViac...NenačítanéStaré:Výber farieb t maliarskeho trojuholníkaVýber vzorkyVložiť doVložiť ako NovýVýber vzorkyVnímateľnéTlakProtanopia (necitlivosť na červenú)RGBRGB farbaRGB-alfaČervenáRelatívna kalorimetriaSýtosťUložiť ako animáciuMierkyHniezdo náhodného generátoru s generovaným náhodným číslomVýber súboruVýber priečinkaVynecháva sa modul: '%s' diff -uraN gimp-2.2.4/po-libgimp/sk.po gimp-2.2.5/po-libgimp/sk.po --- gimp-2.2.4/po-libgimp/sk.po 2005-02-22 23:12:23.000000000 +0100 +++ gimp-2.2.5/po-libgimp/sk.po 2005-04-09 23:09:08.000000000 +0200 @@ -1,19 +1,21 @@ # Slovak translation of gimp-libgimp.HEAD.pot -# Copyright (C) 2002,2003, 2004 Free Software Foundation, Inc. +# Copyright (C) 2002, 2003, 2004, 2005 Free Software Foundation, Inc. # Zdenko Podobný , 2002,2003, 2004. +# Marcel Telka , 2005. +# +# $Id: sk.po,v 1.76.2.4 2005/03/20 19:06:12 marcel Exp $ # msgid "" msgstr "" -"Project-Id-Version: gimp-libgimp.HEAD.pot\n" +"Project-Id-Version: gimp-libgimp\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-02-22 23:04+0100\n" -"PO-Revision-Date: 2004-11-30 18:27+0100\n" -"Last-Translator: Zdenko Podobný \n" +"POT-Creation-Date: 2005-04-09 21:56+0200\n" +"PO-Revision-Date: 2005-03-20 20:04+0100\n" +"Last-Translator: Marcel Telka \n" "Language-Team: Slovak \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: KBabel 1.3\n" #: ../libgimp/gimpbrushmenu.c:129 msgid "Brush Selection" @@ -375,6 +377,8 @@ "Cannot determine a valid home directory.\n" "Thumbnails will be stored in the folder for temporary files (%s) instead." msgstr "" +"Nepodarilo sa zistiť platný domovský priečinok.\n" +"Náhľady budú namiesto toho uložené v priečinku pre dočasné súbory (%s)." #: ../libgimpthumb/gimpthumb-utils.c:249 ../libgimpthumb/gimpthumb-utils.c:317 #, c-format diff -uraN gimp-2.2.4/po-libgimp/sr.gmo gimp-2.2.5/po-libgimp/sr.gmo --- gimp-2.2.4/po-libgimp/sr.gmo 2005-02-22 23:12:24.000000000 +0100 +++ gimp-2.2.5/po-libgimp/sr.gmo 2005-04-09 23:09:09.000000000 +0200 @@ -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: 2005-02-22 23:04+0100 +POT-Creation-Date: 2005-04-09 21:56+0200 PO-Revision-Date: 2004-11-18 18:56+0100 Last-Translator: Данило Шеган Language-Team: Serbian (sr) diff -uraN gimp-2.2.4/po-libgimp/sr@Latn.gmo gimp-2.2.5/po-libgimp/sr@Latn.gmo --- gimp-2.2.4/po-libgimp/sr@Latn.gmo 2005-02-22 23:12:24.000000000 +0100 +++ gimp-2.2.5/po-libgimp/sr@Latn.gmo 2005-04-09 23:09:09.000000000 +0200 @@ -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: 2005-02-22 23:04+0100 +POT-Creation-Date: 2005-04-09 21:56+0200 PO-Revision-Date: 2004-11-18 18:56+0100 Last-Translator: Danilo Šegan Language-Team: Serbian (sr) diff -uraN gimp-2.2.4/po-libgimp/sr@Latn.po gimp-2.2.5/po-libgimp/sr@Latn.po --- gimp-2.2.4/po-libgimp/sr@Latn.po 2005-02-22 23:12:23.000000000 +0100 +++ gimp-2.2.5/po-libgimp/sr@Latn.po 2005-04-09 23:09:08.000000000 +0200 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: gimp-libgimp\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-02-22 23:04+0100\n" +"POT-Creation-Date: 2005-04-09 21:56+0200\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.4/po-libgimp/sr.po gimp-2.2.5/po-libgimp/sr.po --- gimp-2.2.4/po-libgimp/sr.po 2005-02-22 23:12:23.000000000 +0100 +++ gimp-2.2.5/po-libgimp/sr.po 2005-04-09 23:09:08.000000000 +0200 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: gimp-libgimp\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-02-22 23:04+0100\n" +"POT-Creation-Date: 2005-04-09 21:56+0200\n" "PO-Revision-Date: 2004-11-18 18:56+0100\n" "Last-Translator: Данило Шеган \n" "Language-Team: Serbian (sr) \n" diff -uraN gimp-2.2.4/po-libgimp/sv.gmo gimp-2.2.5/po-libgimp/sv.gmo --- gimp-2.2.4/po-libgimp/sv.gmo 2005-02-22 23:12:24.000000000 +0100 +++ gimp-2.2.5/po-libgimp/sv.gmo 2005-04-09 23:09:09.000000000 +0200 @@ -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: 2005-02-22 23:04+0100 +POT-Creation-Date: 2005-04-09 21:56+0200 PO-Revision-Date: 2004-11-15 10:32+0900 Last-Translator: Jan Morén Language-Team: Swedish diff -uraN gimp-2.2.4/po-libgimp/sv.po gimp-2.2.5/po-libgimp/sv.po --- gimp-2.2.4/po-libgimp/sv.po 2005-02-22 23:12:23.000000000 +0100 +++ gimp-2.2.5/po-libgimp/sv.po 2005-04-09 23:09:08.000000000 +0200 @@ -4,13 +4,13 @@ # Christian Rose , 2000, 2001, 2002, 2003. # Jan Morén (jan.moren@lucs.lu.se> 2003. # -# $Id: sv.po,v 1.85.2.2 2005/01/22 17:16:40 neo Exp $ +# $Id: sv.po,v 1.85.2.3 2005/02/22 22:35:56 neo Exp $ # msgid "" msgstr "" "Project-Id-Version: libgimp\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-02-22 23:04+0100\n" +"POT-Creation-Date: 2005-04-09 21:56+0200\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.4/po-libgimp/tr.gmo gimp-2.2.5/po-libgimp/tr.gmo --- gimp-2.2.4/po-libgimp/tr.gmo 2005-02-22 23:12:24.000000000 +0100 +++ gimp-2.2.5/po-libgimp/tr.gmo 2005-04-09 23:09:09.000000000 +0200 @@ -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: 2005-02-22 23:04+0100 +POT-Creation-Date: 2005-04-09 21:56+0200 PO-Revision-Date: 2001-07-16 06:51+0300 Last-Translator: Alper Ersoy Language-Team: Turkish diff -uraN gimp-2.2.4/po-libgimp/tr.po gimp-2.2.5/po-libgimp/tr.po --- gimp-2.2.4/po-libgimp/tr.po 2005-02-22 23:12:23.000000000 +0100 +++ gimp-2.2.5/po-libgimp/tr.po 2005-04-09 23:09:08.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: GIMP 1.2.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-02-22 23:04+0100\n" +"POT-Creation-Date: 2005-04-09 21:56+0200\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.4/po-libgimp/uk.gmo gimp-2.2.5/po-libgimp/uk.gmo --- gimp-2.2.4/po-libgimp/uk.gmo 2005-02-22 23:12:24.000000000 +0100 +++ gimp-2.2.5/po-libgimp/uk.gmo 2005-04-09 23:09:09.000000000 +0200 @@ -1,36 +1,45 @@ -t            *2 (] 4 # . ! -0 ^ .z     $6<CU[`puV A7*y TM>% ' $39Tg"m   ' -/:%? -e p} -! -; ? KY7p"fOU -]h_PUI - -   -"-4<DGN -U`cf>n       D jR^s_}UnS7aP26-+J*v" -*  -'?"DgH<b?{l[/ +* 7V B!!"'"8"IK"!""t"';#c#l##*###<#"$'3$'[$$,$$,$%'%=A%%%% %.% &&<&V&o&Gx&&.&'&' ->'I'''"'q!((A((()) **5+*!a* **B++j,n,/r,,,, ,,, -,,,----8-I-M-c-s---------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 +  $*B(m4#.!-@n.&<NT[mt +zr +> IUVq A*Ep xTM +X%g % ' "17 R\ o y2"   '1 AO Ub iu|   + %6 +H S` +r}!   +; : FTk7q8"f" + +_P=U +! +$/5=ORZ]enq t~  + +> . 8 B L V `jzDj^Bs_}uSSG 9 a 27!8j!-! !+!* +""5" +X"c"*x" " """ +""#"#;#Q#!-$O$o$$B!%<d%?%{%l]&&/&'+,'7X''B((d)w)))))I)#*=*tL*'*** ++*+>+Q+o+ +++++u+<?,|,,#,#,,'-')-Q-'`--,--,- ../.'B.j.=.... /./M/g/{////G/0"010@0.Q00&0 +00T1j1"~11q1V&2}2A222233454K4!_4 44@55h6l6p6/6666 66+6#7 +'72757K7T7W7Z7u77777777788&8>8 A8M8P8+4I\^$-Fl/H= +3V?vb0Z(d] <y){6"[o5,iRC mYB`&PfSph@1# a8;W2e%KT.cX~!9JA'N u*rGLEs>twDQ Mqx7_|U:Onzjgk}%.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_enterCannot determine a valid home directory. +Thumbnails will be stored in the folder for temporary files (%s) instead.Check 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 1.1.9 +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.9 Report-Msgid-Bugs-To: -POT-Creation-Date: 2005-02-22 23:04+0100 -PO-Revision-Date: 2004-04-10 16:53+0200 +POT-Creation-Date: 2005-04-09 21:56+0200 +PO-Revision-Date: 2005-02-23 16:53+0200 Last-Translator: Maxim Dziumanenko Language-Team: Ukrainian MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit -%.1f ГБ%.1f кБ%.1f МБ%.2f МБ%.2f кБ%.2f МБ%d байт%d ГБ%d кБ%d МБ%s здатен обробляли лише RGB-зображення%s може обробляти лише зображення у відтінках сірого або RGB%s може обробляти лише RGB або індексовані зображення%s може обробляти лише двокольорові або індексовані зображення%s може обробляти лише зображення у відтінках сірого%s може обробляти лише зображення у відтінках сірого або індексовані%s можне обробляти лише індексовані зображення%s може обробляти шари лише як анімовані кадри%s не може обробити маски шарів%s не може обробити зсув, розмір або непрозорість шару%s не вдається обробити шари%s не може обробити прозорість%s необхідний альфа-канал(неправильний рядок UTF-8)Абсол. колориметричнийДодати альфа-каналАльфаПрикріпитиЗастосувати маски шаруЧорнийСинійВибір пензляCMYKВибору кольору - CMYKФайл профілю ICCВиберіть піпетку, потім вкажіть колір у будь-якому місці екрану, щоб його вибрати.Вигляд зі зниженим сприйняттям кольоруНалаштовування передачі кольоруТип з_ниженого сприйняття кольору:Фільтр, що моделює брак кольору (алгоритм Бреттеля-Виєнота-Моллона)Фільтр налаштовування передачі кольору, що використовує ICCПідтвердитиПідтвердження збереженняКонтрастністьС_тупінь контрастності:Перетворити у відтінки сірогоПеретворити в індексоване використовуючи типові налаштування -(Результат можна настроїти вручну)Перетворити в індексоване використовуючи типові налаштування -(Результат можна настроїти вручну)Перетворити у RGBКадруватиПоточнийБірюзовийДевтеранопія (нечутливість до зеленого)Експортувати файлМножникНе вдається створити каталог файлів попереднього перегляду '%s'.Вирівняти зображенняТекаВибір шрифтуГамаФільтр кольорової гамиВибір градієнтаЗеленийФільтр підвищеної контрастностіВідтінокВідстань між _буквамиВідстань між _рядкамиПов'язаніНе вдається завантажитиЗавантаженоЗавантаження модуля: '%s' -ПурпурнийОб'єднати видимі шариПомилка завантаження модуля '%s': %sПомилка модуляДодатково...Не завантаженоСтарийВибір кольору - трикутникВставити уВставити як новеВибір шаблонаПерцепційнийТискПротанопія (нечутливість до червоного)ЧервонийВіндосн. колориметричнийНасиченістьЗберегти як анімаціюШкалаІніціалізувати генератор випадкових чисел сгенерованим випадковим числомВибір файлуВибір текиПропуск модуля: '%s' -Експортне перетворення не змінить ваше початкове зображення.ТрикутникТрітаопія (нечутливість до синього)ОдиницяВибір одиницьВикористовуйте цю кнопку для ініціалізації генератора випадкових чисел - це дозволить вам повторити дану "випадкову" операціюЗначенняВидимийАкварельТип вибору кольору - акварельМожливість записуЖовтийВи намагаєтесь зберегти канал (збережену виділену область) як %s. +%.1f ГБ%.1f кБ%.1f МБ%.2f МБ%.2f кБ%.2f МБ%d байтів%d ГБ%d кБ%d МБ%s здатен обробляли лише RGB-зображення%s може обробляти лише зображення у відтінках сірого або RGB%s може обробляти лише RGB або індексовані зображення%s може обробляти лише двокольорові або індексовані зображення%s може обробляти лише зображення у відтінках сірого%s може обробляти лише зображення у відтінках сірого або індексовані%s може обробляти лише індексовані зображення%s може обробляти шари лише як анімовані кадри%s не може обробляти маски шарів%s не може обробити зсув, розмір або непрозорість шару%s не вдається обробити шари%s не може обробляти прозорість%s необхідний альфа-канал(Немає)(неправильний рядок UTF-8)Абсол. колориметричнийДодати альфа-каналАльфаПрикріпитиЗастосувати маски шару_ЧорнийЧорнийЛише чорний_Вміст чорного:СинійВибір пензляCMYKВибору кольору - CMYK_ЦентруватиНе вдається визначити коректний домашній каталог. +Натомість, мініатюри будуть зберігатись у теці тимчасових файлів (%s).Перевірити розмірПеревірити стильФайл профілю ICCВиберіть піпетку, потім вкажіть колір у будь-якому місці екрану, щоб його вибрати.Зір зі зниженим сприйняттям кольоруНалаштовування передачі кольоруТип з_ниженого сприйняття кольору:Фільтр, що моделює брак кольору (алгоритм Бреттеля-Виєнота-Моллона)Фільтр налаштовування передачі кольору, що використовує ICCПідтвердитиПідтвердження збереженняКонтрастністьС_тупінь контрастності:Перетворити у відтінки сірогоПеретворити в індексоване використовуючи типові параметри +(Результат можна налаштувати вручну)Перетворити в індексоване використовуючи типові параметри +(Результат можна налаштувати вручну)Перетворити у RGBНе вдається створити файли попереднього перегляду %s: %sКадруватиПоточний:БірюзовийЧорні та сірі клітинкиДевтеранопія (нечутливість до зеленого)Експорт файлуМножникНе вдається створити каталог файлів попереднього перегляду '%s'.Вирівняти зображенняТекаВибір шрифтуГамаФільтр кольорової гамиГігабайтиВибір градієнтаЛише сірийСірийАльфа-сірийЗелений_Нотація HTML:Шістнадцяткове представлення кольору, що використовується у HTMLФільтр підвищеної контрастностіВідтінокІндексованийІндексований колірІндексований-альфаКілобайтиВідстань між _буквамиВідстань між _рядкамиВеликийБілі та сірі клітинкиПов'язаніНе вдається завантажитиЗавантаженоЗавантаження модуля: '%s' +ПурпурнийСереднійМегабайтиОб'єднати видимі шариСірі клітинкиПомилка завантаження модуля '%s': %sПомилка модуляДодатково...Не завантаженоСтарий:Вибір кольору - трикутникВибір палітриВставити уВставити як новеВибір шаблонаПерцепційнийТискПротанопія (нечутливість до червоного)RGBколір RGBRGB-альфаЧервонийВіндосн. колориметричнийНасиченістьЗберегти як анімаціюШкалаІніціалізувати генератор випадкових чисел сгенерованим випадковим числомВибір файлуВибір текиПропуск модуля: '%s' +МаленькийЕкспортне перетворення не змінить ваше початкове зображення.Відсоток вмісту чорного у кольорових чорнилах.ТрикутникТрітаопія (нечутливість до синього)ОдиницяВибір одиницьВикористовуйте цю кнопку для ініціалізації генератора випадкових чисел - це дозволить вам повторити дану "випадкову" операціюЗначенняВидимийАкварельТип вибору кольору - акварельЛише білийМожливість записуЖовтийВи намагаєтесь зберегти канал (збережену виділену область) як %s. Видимі шари не будуть збережені.Ви намагаєтесь зберегти маску шару як %s. -Видимі шари не будуть збережені.Ваше зображення має бути експортоване до того, як воно буде збережено у %s з таких причин:_П_СКомпенсація _чорних цятокО_гляд..._C_Дублювати_Правка_Експорт_З_Гама:_H_Ігнорувати_Тип:_K_M_Нове значення_Профіль:_Ч_ПеремішатиС_кинутиЗмінити _розмірПов_ернути_SМас_штабС_трижкаПере_творити_V_Yвідсоток \ No newline at end of file +Видимі шари не будуть збережені.Ваше зображення має бути експортоване до того, як воно буде збережено у %s з таких причин:_П_С_Колір тлаКомпенсація _чорних цятокО_гляд..._C_Дублювати_Правка_Експорт_Колір переднього плану_З_Гама:_H_Ігнорувати_Тип:_K_M_Нове значення_Перегляд_Профіль:_ЧПере_мішатиС_кинутиЗмінити _розмірПов_ернути_SМас_штабС_трижка_ОбвестиПере_творити_V_Білий_Yвідсоток \ No newline at end of file diff -uraN gimp-2.2.4/po-libgimp/uk.po gimp-2.2.5/po-libgimp/uk.po --- gimp-2.2.4/po-libgimp/uk.po 2005-02-22 23:12:23.000000000 +0100 +++ gimp-2.2.5/po-libgimp/uk.po 2005-04-09 23:09:08.000000000 +0200 @@ -7,8 +7,8 @@ msgstr "" "Project-Id-Version: GIMP 1.1.9\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-02-22 23:04+0100\n" -"PO-Revision-Date: 2004-04-10 16:53+0200\n" +"POT-Creation-Date: 2005-04-09 21:56+0200\n" +"PO-Revision-Date: 2005-02-23 16:53+0200\n" "Last-Translator: Maxim Dziumanenko \n" "Language-Team: Ukrainian \n" "MIME-Version: 1.0\n" @@ -55,12 +55,12 @@ #: ../libgimp/gimpexport.c:260 #, c-format msgid "%s can't handle transparency" -msgstr "%s не може обробити прозорість" +msgstr "%s не може обробляти прозорість" #: ../libgimp/gimpexport.c:269 #, c-format msgid "%s can't handle layer masks" -msgstr "%s не може обробити маски шарів" +msgstr "%s не може обробляти маски шарів" #: ../libgimp/gimpexport.c:270 msgid "Apply Layer Masks" @@ -89,7 +89,7 @@ #: ../libgimp/gimpexport.c:296 #, c-format msgid "%s can only handle indexed images" -msgstr "%s можне обробляти лише індексовані зображення" +msgstr "%s може обробляти лише індексовані зображення" #: ../libgimp/gimpexport.c:297 ../libgimp/gimpexport.c:326 #: ../libgimp/gimpexport.c:336 @@ -97,8 +97,8 @@ "Convert to Indexed using default settings\n" "(Do it manually to tune the result)" msgstr "" -"Перетворити в індексоване використовуючи типові налаштування\n" -"(Результат можна настроїти вручну)" +"Перетворити в індексоване використовуючи типові параметри\n" +"(Результат можна налаштувати вручну)" #: ../libgimp/gimpexport.c:306 #, c-format @@ -110,8 +110,8 @@ "Convert to Indexed using bitmap default settings\n" "(Do it manually to tune the result)" msgstr "" -"Перетворити в індексоване використовуючи типові налаштування\n" -"(Результат можна настроїти вручну)" +"Перетворити в індексоване використовуючи типові параметри\n" +"(Результат можна налаштувати вручну)" #: ../libgimp/gimpexport.c:316 #, c-format @@ -147,7 +147,7 @@ #: ../libgimp/gimpexport.c:454 msgid "Export File" -msgstr "Експортувати файл" +msgstr "Експорт файлу" #: ../libgimp/gimpexport.c:458 msgid "_Ignore" @@ -200,12 +200,11 @@ #: ../libgimp/gimpmenu.c:406 ../libgimpwidgets/gimpintstore.c:181 msgid "(Empty)" -msgstr "" +msgstr "(Немає)" #: ../libgimp/gimppalettemenu.c:91 -#, fuzzy msgid "Palette Selection" -msgstr "Вибір шаблона" +msgstr "Вибір палітри" #: ../libgimp/gimppatternmenu.c:113 msgid "Pattern Selection" @@ -217,78 +216,76 @@ #: ../libgimpbase/gimpbaseenums.c:23 msgid "Small" -msgstr "" +msgstr "Маленький" #: ../libgimpbase/gimpbaseenums.c:24 msgid "Medium" -msgstr "" +msgstr "Середній" #: ../libgimpbase/gimpbaseenums.c:25 msgid "Large" -msgstr "" +msgstr "Великий" #: ../libgimpbase/gimpbaseenums.c:57 msgid "Light Checks" -msgstr "" +msgstr "Білі та сірі клітинки" #: ../libgimpbase/gimpbaseenums.c:58 msgid "Mid-Tone Checks" -msgstr "" +msgstr "Сірі клітинки" #: ../libgimpbase/gimpbaseenums.c:59 msgid "Dark Checks" -msgstr "" +msgstr "Чорні та сірі клітинки" #: ../libgimpbase/gimpbaseenums.c:60 msgid "White Only" -msgstr "" +msgstr "Лише білий" #: ../libgimpbase/gimpbaseenums.c:61 msgid "Gray Only" -msgstr "" +msgstr "Лише сірий" #: ../libgimpbase/gimpbaseenums.c:62 -#, fuzzy msgid "Black Only" -msgstr "Чорний" +msgstr "Лише чорний" #: ../libgimpbase/gimpbaseenums.c:91 msgid "RGB color" -msgstr "" +msgstr "колір RGB" #: ../libgimpbase/gimpbaseenums.c:92 ../libgimpbase/gimpbaseenums.c:127 -#, fuzzy msgid "Grayscale" -msgstr "Перетворити у відтінки сірого" +msgstr "Сірий" #: ../libgimpbase/gimpbaseenums.c:93 msgid "Indexed color" -msgstr "" +msgstr "Індексований колір" #: ../libgimpbase/gimpbaseenums.c:125 msgid "RGB" -msgstr "" +msgstr "RGB" #: ../libgimpbase/gimpbaseenums.c:126 msgid "RGB-alpha" -msgstr "" +msgstr "RGB-альфа" #: ../libgimpbase/gimpbaseenums.c:128 msgid "Grayscale-alpha" -msgstr "" +msgstr "Альфа-сірий" #: ../libgimpbase/gimpbaseenums.c:129 msgid "Indexed" -msgstr "" +msgstr "Індексований" #: ../libgimpbase/gimpbaseenums.c:130 msgid "Indexed-alpha" -msgstr "" +msgstr "Індексований-альфа" #: ../libgimpbase/gimpmemsize.c:177 #, c-format msgid "%d Bytes" -msgstr "%d байт" +msgstr "%d байтів" #: ../libgimpbase/gimpmemsize.c:182 #, c-format @@ -378,6 +375,8 @@ "Cannot determine a valid home directory.\n" "Thumbnails will be stored in the folder for temporary files (%s) instead." msgstr "" +"Не вдається визначити коректний домашній каталог.\n" +"Натомість, мініатюри будуть зберігатись у теці тимчасових файлів (%s)." #: ../libgimpthumb/gimpthumb-utils.c:249 ../libgimpthumb/gimpthumb-utils.c:317 #, c-format @@ -385,29 +384,25 @@ msgstr "Не вдається створити каталог файлів попереднього перегляду '%s'." #: ../libgimpthumb/gimpthumbnail.c:919 -#, fuzzy, c-format +#, c-format msgid "Could not create thumbnail for %s: %s" -msgstr "Не вдається створити каталог файлів попереднього перегляду '%s'." +msgstr "Не вдається створити файли попереднього перегляду %s: %s" #: ../libgimpwidgets/gimpcolorbutton.c:99 -#, fuzzy msgid "_Foreground Color" -msgstr "/_Колір переднього плану" +msgstr "_Колір переднього плану" #: ../libgimpwidgets/gimpcolorbutton.c:103 -#, fuzzy msgid "_Background Color" -msgstr "/_Колір тла" +msgstr "_Колір тла" #: ../libgimpwidgets/gimpcolorbutton.c:107 -#, fuzzy msgid "Blac_k" -msgstr "/_Чорний" +msgstr "_Чорний" #: ../libgimpwidgets/gimpcolorbutton.c:111 -#, fuzzy msgid "_White" -msgstr "/_Білий" +msgstr "_Білий" #: ../libgimpwidgets/gimpcolorscales.c:133 msgid "Scales" @@ -484,21 +479,20 @@ msgstr "Альфа" #: ../libgimpwidgets/gimpcolorscales.c:243 -#, fuzzy msgid "Hexadecimal color notation as used in HTML and CSS" -msgstr "Шістнадцятковий запис кольору, що використовується у HTML" +msgstr "Шістнадцяткове представлення кольору, що використовується у HTML" #: ../libgimpwidgets/gimpcolorscales.c:248 msgid "HTML _Notation:" -msgstr "" +msgstr "_Нотація HTML:" #: ../libgimpwidgets/gimpcolorselection.c:203 msgid "Current:" -msgstr "Поточний" +msgstr "Поточний:" #: ../libgimpwidgets/gimpcolorselection.c:225 msgid "Old:" -msgstr "Старий" +msgstr "Старий:" #: ../libgimpwidgets/gimpfileentry.c:351 msgid "Select Folder" @@ -509,17 +503,14 @@ msgstr "Вибір файлу" #: ../libgimpwidgets/gimpmemsizeentry.c:232 -#, fuzzy msgid "Kilobytes" msgstr "Кілобайти" #: ../libgimpwidgets/gimpmemsizeentry.c:233 -#, fuzzy msgid "Megabytes" msgstr "Мегабайти" #: ../libgimpwidgets/gimpmemsizeentry.c:234 -#, fuzzy msgid "Gigabytes" msgstr "Гігабайти" @@ -541,16 +532,16 @@ #: ../libgimpwidgets/gimppreviewarea.c:126 msgid "Check Size" -msgstr "" +msgstr "Перевірити розмір" #: ../libgimpwidgets/gimppreviewarea.c:133 msgid "Check Style" -msgstr "" +msgstr "Перевірити стиль" #. toggle button to (des)activate the instant preview #: ../libgimpwidgets/gimppreview.c:240 msgid "_Preview" -msgstr "" +msgstr "_Перегляд" #: ../libgimpwidgets/gimpstock.c:113 msgid "Anchor" @@ -558,7 +549,7 @@ #: ../libgimpwidgets/gimpstock.c:114 msgid "C_enter" -msgstr "" +msgstr "_Центрувати" #: ../libgimpwidgets/gimpstock.c:115 msgid "_Duplicate" @@ -590,7 +581,7 @@ #: ../libgimpwidgets/gimpstock.c:154 ../libgimpwidgets/gimpstock.c:158 msgid "_Stroke" -msgstr "" +msgstr "_Обвести" #: ../libgimpwidgets/gimpstock.c:170 msgid "L_etter Spacing" @@ -659,7 +650,7 @@ #: ../libgimpwidgets/gimpwidgets.c:1022 msgid "_Randomize" -msgstr "_Перемішати" +msgstr "Пере_мішати" #: ../modules/cdisplay_colorblind.c:57 ../modules/cdisplay_colorblind.c:545 msgid "Protanopia (insensitivity to red)" @@ -679,7 +670,7 @@ #: ../modules/cdisplay_colorblind.c:242 msgid "Color Deficient Vision" -msgstr "Вигляд зі зниженим сприйняттям кольору" +msgstr "Зір зі зниженим сприйняттям кольору" #: ../modules/cdisplay_colorblind.c:540 msgid "Color _Deficiency Type:" @@ -786,13 +777,12 @@ msgstr "Чорний" #: ../modules/colorsel_cmyk.c:191 -#, fuzzy msgid "Black _Pullout:" -msgstr "Вміст чорного (%):" +msgstr "_Вміст чорного:" #: ../modules/colorsel_cmyk.c:208 msgid "The percentage of black to pull out of the colored inks." -msgstr "" +msgstr "Відсоток вмісту чорного у кольорових чорнилах." #: ../modules/colorsel_triangle.c:104 msgid "Painter-style triangle color selector" @@ -813,9 +803,3 @@ #: ../modules/colorsel_water.c:220 msgid "Pressure" msgstr "Тиск" - -#~ msgid "He_x Triplet:" -#~ msgstr "_Шістнадцятковий триплет:" - -#~ msgid "None" -#~ msgstr "Немає" diff -uraN gimp-2.2.4/po-libgimp/vi.gmo gimp-2.2.5/po-libgimp/vi.gmo --- gimp-2.2.4/po-libgimp/vi.gmo 2005-02-22 23:12:24.000000000 +0100 +++ gimp-2.2.5/po-libgimp/vi.gmo 2005-04-09 23:09:10.000000000 +0200 @@ -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: 2005-02-22 23:04+0100 +POT-Creation-Date: 2005-04-09 21:56+0200 PO-Revision-Date: 2003-01-30 23:28+0700 Last-Translator: Trinh Minh Thanh Language-Team: Gnome-Vi diff -uraN gimp-2.2.4/po-libgimp/vi.po gimp-2.2.5/po-libgimp/vi.po --- gimp-2.2.4/po-libgimp/vi.po 2005-02-22 23:12:23.000000000 +0100 +++ gimp-2.2.5/po-libgimp/vi.po 2005-04-09 23:09:08.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: Gimp-libgimp 1.3.x\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-02-22 23:04+0100\n" +"POT-Creation-Date: 2005-04-09 21:56+0200\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.4/po-libgimp/yi.gmo gimp-2.2.5/po-libgimp/yi.gmo --- gimp-2.2.4/po-libgimp/yi.gmo 2005-02-22 23:12:24.000000000 +0100 +++ gimp-2.2.5/po-libgimp/yi.gmo 2005-04-09 23:09:10.000000000 +0200 @@ -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: 2005-02-22 23:04+0100 +POT-Creation-Date: 2005-04-09 21:56+0200 PO-Revision-Date: 2003-03-19 Last-Translator: Raphael Finkel Language-Team: Yiddish diff -uraN gimp-2.2.4/po-libgimp/yi.po gimp-2.2.5/po-libgimp/yi.po --- gimp-2.2.4/po-libgimp/yi.po 2005-02-22 23:12:23.000000000 +0100 +++ gimp-2.2.5/po-libgimp/yi.po 2005-04-09 23:09:08.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: 1.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-02-22 23:04+0100\n" +"POT-Creation-Date: 2005-04-09 21:56+0200\n" "PO-Revision-Date: 2003-03-19\n" "Last-Translator: Raphael Finkel \n" "Language-Team: Yiddish \n" diff -uraN gimp-2.2.4/po-libgimp/zh_CN.gmo gimp-2.2.5/po-libgimp/zh_CN.gmo --- gimp-2.2.4/po-libgimp/zh_CN.gmo 2005-02-22 23:12:24.000000000 +0100 +++ gimp-2.2.5/po-libgimp/zh_CN.gmo 2005-04-09 23:09:10.000000000 +0200 @@ -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: 2005-02-22 23:04+0100 +POT-Creation-Date: 2005-04-09 21:56+0200 PO-Revision-Date: 2004-11-24 19:30+0800 Last-Translator: Yuheng Xie Language-Team: zh_CN diff -uraN gimp-2.2.4/po-libgimp/zh_CN.po gimp-2.2.5/po-libgimp/zh_CN.po --- gimp-2.2.4/po-libgimp/zh_CN.po 2005-02-22 23:12:23.000000000 +0100 +++ gimp-2.2.5/po-libgimp/zh_CN.po 2005-04-09 23:09:08.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: gimp-libgimp\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-02-22 23:04+0100\n" +"POT-Creation-Date: 2005-04-09 21:56+0200\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.4/po-libgimp/zh_TW.gmo gimp-2.2.5/po-libgimp/zh_TW.gmo --- gimp-2.2.4/po-libgimp/zh_TW.gmo 2005-02-22 23:12:24.000000000 +0100 +++ gimp-2.2.5/po-libgimp/zh_TW.gmo 2005-04-09 23:09:10.000000000 +0200 @@ -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: 2005-02-22 23:04+0100 +POT-Creation-Date: 2005-04-09 21:56+0200 PO-Revision-Date: 2004-03-23 22:13+0800 Last-Translator: Abel Cheung Language-Team: Chinese (traditional) diff -uraN gimp-2.2.4/po-libgimp/zh_TW.po gimp-2.2.5/po-libgimp/zh_TW.po --- gimp-2.2.4/po-libgimp/zh_TW.po 2005-02-22 23:12:23.000000000 +0100 +++ gimp-2.2.5/po-libgimp/zh_TW.po 2005-04-09 23:09:09.000000000 +0200 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: gimp-libgimp 2.0.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-02-22 23:04+0100\n" +"POT-Creation-Date: 2005-04-09 21:56+0200\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.4/po-plug-ins/bg.gmo gimp-2.2.5/po-plug-ins/bg.gmo --- gimp-2.2.4/po-plug-ins/bg.gmo 2005-02-22 23:12:41.000000000 +0100 +++ gimp-2.2.5/po-plug-ins/bg.gmo 2005-04-09 23:09:28.000000000 +0200 @@ -1,6 +1,6 @@ $,8f9Project-Id-Version: gimp 2-2 Report-Msgid-Bugs-To: -POT-Creation-Date: 2005-02-22 23:04+0100 +POT-Creation-Date: 2005-04-09 21:56+0200 PO-Revision-Date: 2005-02-18 19:45+0200 Last-Translator: Alexander Shopov Language-Team: Bulgarian diff -uraN gimp-2.2.4/po-plug-ins/bg.po gimp-2.2.5/po-plug-ins/bg.po --- gimp-2.2.4/po-plug-ins/bg.po 2005-02-22 23:12:25.000000000 +0100 +++ gimp-2.2.5/po-plug-ins/bg.po 2005-04-09 23:09:10.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: gimp 2-2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-02-22 23:04+0100\n" +"POT-Creation-Date: 2005-04-09 21:56+0200\n" "PO-Revision-Date: 2005-02-18 19:45+0200\n" "Last-Translator: Alexander Shopov \n" "Language-Team: Bulgarian \n" @@ -369,7 +369,7 @@ #: ../plug-ins/common/pat.c:433 ../plug-ins/common/pcx.c:585 #: ../plug-ins/common/pix.c:515 ../plug-ins/common/png.c:1178 #: ../plug-ins/common/pnm.c:809 ../plug-ins/common/postscript.c:1123 -#: ../plug-ins/common/psd_save.c:1588 ../plug-ins/common/raw.c:517 +#: ../plug-ins/common/psd_save.c:1336 ../plug-ins/common/raw.c:517 #: ../plug-ins/common/raw.c:544 ../plug-ins/common/spheredesigner.c:2088 #: ../plug-ins/common/sunras.c:513 ../plug-ins/common/tga.c:1030 #: ../plug-ins/common/tiff.c:1810 ../plug-ins/common/xbm.c:996 @@ -1205,35 +1205,36 @@ #: ../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 +#: ../plug-ins/bmp/bmpread.c:207 ../plug-ins/bmp/bmpread.c:307 +#: ../plug-ins/bmp/bmpread.c:348 #, c-format msgid "'%s' is not a valid BMP file" msgstr "" #: ../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 +#: ../plug-ins/bmp/bmpread.c:300 ../plug-ins/bmp/bmpread.c:313 +#: ../plug-ins/bmp/bmpread.c:319 #, c-format msgid "Error reading BMP file header from '%s'" msgstr "" -#: ../plug-ins/bmp/bmpread.c:442 ../plug-ins/bmp/bmpread.c:477 +#: ../plug-ins/bmp/bmpread.c:450 ../plug-ins/bmp/bmpread.c:485 msgid "Unrecognized or invalid BMP compression format." msgstr "" #. #. * Create the "background" layer to hold the image... #. -#: ../plug-ins/bmp/bmpread.c:482 ../plug-ins/common/CEL.c:357 +#: ../plug-ins/bmp/bmpread.c:490 ../plug-ins/common/CEL.c:357 #: ../plug-ins/common/CEL.c:360 ../plug-ins/common/blinds.c:273 #: ../plug-ins/common/compose.c:625 ../plug-ins/common/decompose.c:595 #: ../plug-ins/common/dicom.c:442 ../plug-ins/common/film.c:946 -#: ../plug-ins/common/gifload.c:865 ../plug-ins/common/jpeg.c:1113 +#: ../plug-ins/common/gifload.c:864 ../plug-ins/common/jpeg.c:1113 #: ../plug-ins/common/jpeg.c:2474 ../plug-ins/common/pcx.c:334 #: ../plug-ins/common/pcx.c:340 ../plug-ins/common/pix.c:374 #: ../plug-ins/common/png.c:808 ../plug-ins/common/pnm.c:517 -#: ../plug-ins/common/psd.c:2173 ../plug-ins/common/raw.c:677 +#: ../plug-ins/common/psd.c:2174 ../plug-ins/common/raw.c:677 #: ../plug-ins/common/smooth_palette.c:257 ../plug-ins/common/sunras.c:925 #: ../plug-ins/common/tga.c:929 ../plug-ins/common/tiff.c:833 #: ../plug-ins/common/tile.c:266 ../plug-ins/common/winclipboard.c:579 @@ -1264,12 +1265,12 @@ #: ../plug-ins/common/jpeg.c:1453 ../plug-ins/common/pat.c:438 #: ../plug-ins/common/pcx.c:545 ../plug-ins/common/pix.c:521 #: ../plug-ins/common/png.c:1185 ../plug-ins/common/pnm.c:814 -#: ../plug-ins/common/postscript.c:1128 ../plug-ins/common/psd_save.c:1593 +#: ../plug-ins/common/postscript.c:1128 ../plug-ins/common/psd_save.c:1341 #: ../plug-ins/common/sunras.c:518 ../plug-ins/common/tga.c:1035 #: ../plug-ins/common/tiff.c:1815 ../plug-ins/common/xbm.c:1001 #: ../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:957 +#: ../plug-ins/sgi/sgi.c:545 ../plug-ins/winicon/icosave.c:977 #: ../plug-ins/xjt/xjt.c:1682 #, c-format msgid "Saving '%s'..." @@ -1605,7 +1606,7 @@ msgstr "" #: ../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 +#: ../plug-ins/common/decompose.c:144 ../plug-ins/rcm/rcm_dialog.c:548 msgid "Saturation" msgstr "" @@ -2403,24 +2404,24 @@ msgid "Color to _Alpha..." msgstr "" -#: ../plug-ins/common/colortoalpha.c:181 +#: ../plug-ins/common/colortoalpha.c:187 msgid "Removing color..." msgstr "" -#: ../plug-ins/common/colortoalpha.c:377 +#: ../plug-ins/common/colortoalpha.c:380 msgid "Color to Alpha" msgstr "" -#: ../plug-ins/common/colortoalpha.c:402 ../plug-ins/common/mapcolor.c:424 +#: ../plug-ins/common/colortoalpha.c:405 ../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:406 +#: ../plug-ins/common/colortoalpha.c:409 msgid "Color to Alpha Color Picker" msgstr "" -#: ../plug-ins/common/colortoalpha.c:420 +#: ../plug-ins/common/colortoalpha.c:423 msgid "to alpha" msgstr "" @@ -2443,13 +2444,13 @@ msgstr "" #. Gray: Circle: Spinbutton 1 -#: ../plug-ins/common/compose.c:148 ../plug-ins/rcm/rcm_dialog.c:452 +#: ../plug-ins/common/compose.c:148 ../plug-ins/rcm/rcm_dialog.c:459 msgid "Hue:" msgstr "" #. Gray: Circle: Spinbutton 2 #: ../plug-ins/common/compose.c:149 ../plug-ins/print/gimp_color_window.c:364 -#: ../plug-ins/rcm/rcm_dialog.c:479 +#: ../plug-ins/rcm/rcm_dialog.c:486 msgid "Saturation:" msgstr "" @@ -3063,15 +3064,15 @@ msgid "Deinterlace..." msgstr "" -#: ../plug-ins/common/deinterlace.c:315 +#: ../plug-ins/common/deinterlace.c:324 msgid "Deinterlace" msgstr "" -#: ../plug-ins/common/deinterlace.c:340 +#: ../plug-ins/common/deinterlace.c:349 msgid "Keep o_dd fields" msgstr "" -#: ../plug-ins/common/deinterlace.c:341 +#: ../plug-ins/common/deinterlace.c:350 msgid "Keep _even fields" msgstr "" @@ -3468,7 +3469,7 @@ #. Create selection #: ../plug-ins/common/film.c:1166 ../plug-ins/imagemap/imap_selection.c:400 -#: ../plug-ins/rcm/rcm_dialog.c:158 +#: ../plug-ins/rcm/rcm_dialog.c:165 msgid "Selection" msgstr "" @@ -3988,23 +3989,23 @@ msgid "Non-square pixels. Image might look squashed." msgstr "" -#: ../plug-ins/common/gifload.c:867 +#: ../plug-ins/common/gifload.c:866 #, c-format msgid "Background (%d%s)" msgstr "" -#: ../plug-ins/common/gifload.c:915 ../plug-ins/common/iwarp.c:783 +#: ../plug-ins/common/gifload.c:914 ../plug-ins/common/iwarp.c:783 #: ../plug-ins/common/iwarp.c:817 #, c-format msgid "Frame %d" msgstr "" -#: ../plug-ins/common/gifload.c:917 +#: ../plug-ins/common/gifload.c:916 #, c-format msgid "Frame %d (%d%s)" msgstr "" -#: ../plug-ins/common/gifload.c:947 +#: ../plug-ins/common/gifload.c:946 #, c-format msgid "" "GIF: Undocumented GIF composite type %d is not handled. Animation might not " @@ -5766,7 +5767,7 @@ msgid "B/W" msgstr "" -#: ../plug-ins/common/postscript.c:3003 ../plug-ins/rcm/rcm_dialog.c:404 +#: ../plug-ins/common/postscript.c:3003 ../plug-ins/rcm/rcm_dialog.c:411 msgid "Gray" msgstr "" @@ -5855,18 +5856,18 @@ msgid "Invalid UTF-8 string in PSD file" msgstr "" -#: ../plug-ins/common/psd_save.c:181 +#: ../plug-ins/common/psd_save.c:192 msgid "Photoshop image" msgstr "" -#: ../plug-ins/common/psd_save.c:1564 +#: ../plug-ins/common/psd_save.c:1312 #, c-format msgid "" "Unable to save '%s'. The psd file format does not support images that are " "more than 30000 pixels wide or tall." msgstr "" -#: ../plug-ins/common/psd_save.c:1576 +#: ../plug-ins/common/psd_save.c:1324 #, c-format msgid "" "Unable to save '%s'. The psd file format does not support images with " @@ -11191,87 +11192,87 @@ msgid "Rotating the colormap..." msgstr "" -#: ../plug-ins/rcm/rcm_dialog.c:114 +#: ../plug-ins/rcm/rcm_dialog.c:119 msgid "Original" msgstr "" -#: ../plug-ins/rcm/rcm_dialog.c:127 +#: ../plug-ins/rcm/rcm_dialog.c:133 msgid "Rotated" msgstr "" -#: ../plug-ins/rcm/rcm_dialog.c:140 +#: ../plug-ins/rcm/rcm_dialog.c:147 msgid "Continuous update" msgstr "" -#: ../plug-ins/rcm/rcm_dialog.c:153 +#: ../plug-ins/rcm/rcm_dialog.c:160 msgid "Area:" msgstr "" -#: ../plug-ins/rcm/rcm_dialog.c:157 +#: ../plug-ins/rcm/rcm_dialog.c:164 msgid "Entire Layer" msgstr "" -#: ../plug-ins/rcm/rcm_dialog.c:159 +#: ../plug-ins/rcm/rcm_dialog.c:166 msgid "Context" msgstr "" #. spinbutton 1 -#: ../plug-ins/rcm/rcm_dialog.c:284 ../plug-ins/rcm/rcm_dialog.c:362 +#: ../plug-ins/rcm/rcm_dialog.c:291 ../plug-ins/rcm/rcm_dialog.c:369 msgid "From" msgstr "" #. spinbutton 2 -#: ../plug-ins/rcm/rcm_dialog.c:310 ../plug-ins/rcm/rcm_dialog.c:363 +#: ../plug-ins/rcm/rcm_dialog.c:317 ../plug-ins/rcm/rcm_dialog.c:370 msgid "To" msgstr "" #. * Gray: Operation-Mode * -#: ../plug-ins/rcm/rcm_dialog.c:499 +#: ../plug-ins/rcm/rcm_dialog.c:506 msgid "Gray Mode" msgstr "" #. Gray: Operation-Mode: two radio buttons -#: ../plug-ins/rcm/rcm_dialog.c:508 +#: ../plug-ins/rcm/rcm_dialog.c:515 msgid "Treat as this" msgstr "" -#: ../plug-ins/rcm/rcm_dialog.c:520 +#: ../plug-ins/rcm/rcm_dialog.c:527 msgid "Change to this" msgstr "" #. * Gray: What is gray? * -#: ../plug-ins/rcm/rcm_dialog.c:533 +#: ../plug-ins/rcm/rcm_dialog.c:540 msgid "Gray Threshold" msgstr "" #. * Misc: Used unit selection * -#: ../plug-ins/rcm/rcm_dialog.c:572 ../plug-ins/rcm/rcm_dialog.c:676 +#: ../plug-ins/rcm/rcm_dialog.c:579 ../plug-ins/rcm/rcm_dialog.c:683 msgid "Units" msgstr "" #. Misc: Used unit selection: 3 radio buttons -#: ../plug-ins/rcm/rcm_dialog.c:581 +#: ../plug-ins/rcm/rcm_dialog.c:588 msgid "Radians" msgstr "" -#: ../plug-ins/rcm/rcm_dialog.c:593 +#: ../plug-ins/rcm/rcm_dialog.c:600 msgid "Radians/Pi" msgstr "" -#: ../plug-ins/rcm/rcm_dialog.c:605 +#: ../plug-ins/rcm/rcm_dialog.c:612 msgid "Degrees" msgstr "" #. Create dialog -#: ../plug-ins/rcm/rcm_dialog.c:638 +#: ../plug-ins/rcm/rcm_dialog.c:645 msgid "Colormap Rotation" msgstr "" -#: ../plug-ins/rcm/rcm_dialog.c:670 +#: ../plug-ins/rcm/rcm_dialog.c:677 msgid "Main Options" msgstr "" -#: ../plug-ins/rcm/rcm_dialog.c:673 +#: ../plug-ins/rcm/rcm_dialog.c:680 msgid "Gray Options" msgstr "" @@ -11352,27 +11353,27 @@ msgid "Transferring TWAIN data..." msgstr "" -#: ../plug-ins/winicon/icodialog.c:123 +#: ../plug-ins/winicon/icodialog.c:89 msgid "1 bpp, 1-bit alpha, 2-slot palette" msgstr "" -#: ../plug-ins/winicon/icodialog.c:124 +#: ../plug-ins/winicon/icodialog.c:90 msgid "4 bpp, 1-bit alpha, 16-slot palette" msgstr "" -#: ../plug-ins/winicon/icodialog.c:125 +#: ../plug-ins/winicon/icodialog.c:91 msgid "8 bpp, 1-bit alpha, 256-slot palette" msgstr "" -#: ../plug-ins/winicon/icodialog.c:126 +#: ../plug-ins/winicon/icodialog.c:92 msgid "32 bpp, 8-bit alpha, no palette" msgstr "" -#: ../plug-ins/winicon/icodialog.c:151 +#: ../plug-ins/winicon/icodialog.c:117 msgid "GIMP Windows Icon Plugin" msgstr "" -#: ../plug-ins/winicon/icodialog.c:172 +#: ../plug-ins/winicon/icodialog.c:138 msgid "Icon details" msgstr "" @@ -11381,7 +11382,7 @@ msgid "Icon #%i" msgstr "" -#: ../plug-ins/winicon/icosave.c:943 +#: ../plug-ins/winicon/icosave.c:969 msgid "Windows icons cannot be higher or wider than 255 pixels." msgstr "" diff -uraN gimp-2.2.4/po-plug-ins/ca.gmo gimp-2.2.5/po-plug-ins/ca.gmo --- gimp-2.2.4/po-plug-ins/ca.gmo 2005-02-22 23:12:41.000000000 +0100 +++ gimp-2.2.5/po-plug-ins/ca.gmo 2005-04-09 23:09:28.000000000 +0200 @@ -441,7 +441,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 Report-Msgid-Bugs-To: -POT-Creation-Date: 2005-02-22 23:04+0100 +POT-Creation-Date: 2005-04-09 21:56+0200 PO-Revision-Date: 2005-01-23 19:32+0100 Last-Translator: Xavier Beà Language-Team: Catalan diff -uraN gimp-2.2.4/po-plug-ins/ca.po gimp-2.2.5/po-plug-ins/ca.po --- gimp-2.2.4/po-plug-ins/ca.po 2005-02-22 23:12:25.000000000 +0100 +++ gimp-2.2.5/po-plug-ins/ca.po 2005-04-09 23:09:10.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: GIMP 2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-02-22 23:04+0100\n" +"POT-Creation-Date: 2005-04-09 21:56+0200\n" "PO-Revision-Date: 2005-01-23 19:32+0100\n" "Last-Translator: Xavier Beà \n" "Language-Team: Catalan \n" @@ -403,7 +403,7 @@ #: ../plug-ins/common/pat.c:433 ../plug-ins/common/pcx.c:585 #: ../plug-ins/common/pix.c:515 ../plug-ins/common/png.c:1178 #: ../plug-ins/common/pnm.c:809 ../plug-ins/common/postscript.c:1123 -#: ../plug-ins/common/psd_save.c:1588 ../plug-ins/common/raw.c:517 +#: ../plug-ins/common/psd_save.c:1336 ../plug-ins/common/raw.c:517 #: ../plug-ins/common/raw.c:544 ../plug-ins/common/spheredesigner.c:2088 #: ../plug-ins/common/sunras.c:513 ../plug-ins/common/tga.c:1030 #: ../plug-ins/common/tiff.c:1810 ../plug-ins/common/xbm.c:996 @@ -1279,21 +1279,22 @@ #: ../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 +#: ../plug-ins/bmp/bmpread.c:207 ../plug-ins/bmp/bmpread.c:307 +#: ../plug-ins/bmp/bmpread.c:348 #, c-format msgid "'%s' is not a valid BMP file" 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 +#: ../plug-ins/bmp/bmpread.c:300 ../plug-ins/bmp/bmpread.c:313 +#: ../plug-ins/bmp/bmpread.c:319 #, c-format msgid "Error reading BMP file header from '%s'" msgstr "" "S'ha produït un error en llegir la capçalera del fitxer BMP des de '%s'" -#: ../plug-ins/bmp/bmpread.c:442 ../plug-ins/bmp/bmpread.c:477 +#: ../plug-ins/bmp/bmpread.c:450 ../plug-ins/bmp/bmpread.c:485 msgid "Unrecognized or invalid BMP compression format." msgstr "Format de compressió BMP no reconegut o invàlid." @@ -1301,15 +1302,15 @@ #. #. * Create the "background" layer to hold the image... #. -#: ../plug-ins/bmp/bmpread.c:482 ../plug-ins/common/CEL.c:357 +#: ../plug-ins/bmp/bmpread.c:490 ../plug-ins/common/CEL.c:357 #: ../plug-ins/common/CEL.c:360 ../plug-ins/common/blinds.c:273 #: ../plug-ins/common/compose.c:625 ../plug-ins/common/decompose.c:595 #: ../plug-ins/common/dicom.c:442 ../plug-ins/common/film.c:946 -#: ../plug-ins/common/gifload.c:865 ../plug-ins/common/jpeg.c:1113 +#: ../plug-ins/common/gifload.c:864 ../plug-ins/common/jpeg.c:1113 #: ../plug-ins/common/jpeg.c:2474 ../plug-ins/common/pcx.c:334 #: ../plug-ins/common/pcx.c:340 ../plug-ins/common/pix.c:374 #: ../plug-ins/common/png.c:808 ../plug-ins/common/pnm.c:517 -#: ../plug-ins/common/psd.c:2173 ../plug-ins/common/raw.c:677 +#: ../plug-ins/common/psd.c:2174 ../plug-ins/common/raw.c:677 #: ../plug-ins/common/smooth_palette.c:257 ../plug-ins/common/sunras.c:925 #: ../plug-ins/common/tga.c:929 ../plug-ins/common/tiff.c:833 #: ../plug-ins/common/tile.c:266 ../plug-ins/common/winclipboard.c:579 @@ -1343,12 +1344,12 @@ #: ../plug-ins/common/jpeg.c:1453 ../plug-ins/common/pat.c:438 #: ../plug-ins/common/pcx.c:545 ../plug-ins/common/pix.c:521 #: ../plug-ins/common/png.c:1185 ../plug-ins/common/pnm.c:814 -#: ../plug-ins/common/postscript.c:1128 ../plug-ins/common/psd_save.c:1593 +#: ../plug-ins/common/postscript.c:1128 ../plug-ins/common/psd_save.c:1341 #: ../plug-ins/common/sunras.c:518 ../plug-ins/common/tga.c:1035 #: ../plug-ins/common/tiff.c:1815 ../plug-ins/common/xbm.c:1001 #: ../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:957 +#: ../plug-ins/sgi/sgi.c:545 ../plug-ins/winicon/icosave.c:977 #: ../plug-ins/xjt/xjt.c:1682 #, c-format msgid "Saving '%s'..." @@ -1699,7 +1700,7 @@ 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 +#: ../plug-ins/common/decompose.c:144 ../plug-ins/rcm/rcm_dialog.c:548 msgid "Saturation" msgstr "Saturació" @@ -2542,25 +2543,25 @@ msgstr "Color a _alfa..." # era: msgstr "Color a _Alfa" -#: ../plug-ins/common/colortoalpha.c:181 +#: ../plug-ins/common/colortoalpha.c:187 msgid "Removing color..." msgstr "S'està suprimint el color..." -#: ../plug-ins/common/colortoalpha.c:377 +#: ../plug-ins/common/colortoalpha.c:380 msgid "Color to Alpha" msgstr "Color a alfa" # era: msgstr "Color a Alfa" -#: ../plug-ins/common/colortoalpha.c:402 ../plug-ins/common/mapcolor.c:424 +#: ../plug-ins/common/colortoalpha.c:405 ../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:406 +#: ../plug-ins/common/colortoalpha.c:409 msgid "Color to Alpha Color Picker" msgstr "Color al seleccionador de color alfa" -#: ../plug-ins/common/colortoalpha.c:420 +#: ../plug-ins/common/colortoalpha.c:423 msgid "to alpha" msgstr "a l'alfa" @@ -2584,14 +2585,14 @@ # Gray: Circle: Spinbutton 1 #. Gray: Circle: Spinbutton 1 -#: ../plug-ins/common/compose.c:148 ../plug-ins/rcm/rcm_dialog.c:452 +#: ../plug-ins/common/compose.c:148 ../plug-ins/rcm/rcm_dialog.c:459 msgid "Hue:" msgstr "To:" # Gray: Circle: Spinbutton 2 #. Gray: Circle: Spinbutton 2 #: ../plug-ins/common/compose.c:149 ../plug-ins/print/gimp_color_window.c:364 -#: ../plug-ins/rcm/rcm_dialog.c:479 +#: ../plug-ins/rcm/rcm_dialog.c:486 msgid "Saturation:" msgstr "Saturació:" @@ -3243,15 +3244,15 @@ msgid "Deinterlace..." msgstr "Desentrellaça..." -#: ../plug-ins/common/deinterlace.c:315 +#: ../plug-ins/common/deinterlace.c:324 msgid "Deinterlace" msgstr "Desentrellaça" -#: ../plug-ins/common/deinterlace.c:340 +#: ../plug-ins/common/deinterlace.c:349 msgid "Keep o_dd fields" msgstr "Conserva els camps _senars" -#: ../plug-ins/common/deinterlace.c:341 +#: ../plug-ins/common/deinterlace.c:350 msgid "Keep _even fields" msgstr "Conserva els camps _parells" @@ -3667,7 +3668,7 @@ #. Create selection #: ../plug-ins/common/film.c:1166 ../plug-ins/imagemap/imap_selection.c:400 -#: ../plug-ins/rcm/rcm_dialog.c:158 +#: ../plug-ins/rcm/rcm_dialog.c:165 msgid "Selection" msgstr "Selecció" @@ -4220,23 +4221,23 @@ msgid "Non-square pixels. Image might look squashed." msgstr "Píxels no quadrats. La imatge pot semblar aplastada." -#: ../plug-ins/common/gifload.c:867 +#: ../plug-ins/common/gifload.c:866 #, c-format msgid "Background (%d%s)" msgstr "Fons (%d%s)" -#: ../plug-ins/common/gifload.c:915 ../plug-ins/common/iwarp.c:783 +#: ../plug-ins/common/gifload.c:914 ../plug-ins/common/iwarp.c:783 #: ../plug-ins/common/iwarp.c:817 #, c-format msgid "Frame %d" msgstr "Marc %d" -#: ../plug-ins/common/gifload.c:917 +#: ../plug-ins/common/gifload.c:916 #, c-format msgid "Frame %d (%d%s)" msgstr "Marc %d (%d%s)" -#: ../plug-ins/common/gifload.c:947 +#: ../plug-ins/common/gifload.c:946 #, c-format msgid "" "GIF: Undocumented GIF composite type %d is not handled. Animation might not " @@ -6063,7 +6064,7 @@ msgid "B/W" msgstr "B/N" -#: ../plug-ins/common/postscript.c:3003 ../plug-ins/rcm/rcm_dialog.c:404 +#: ../plug-ins/common/postscript.c:3003 ../plug-ins/rcm/rcm_dialog.c:411 msgid "Gray" msgstr "Gris" @@ -6154,11 +6155,11 @@ msgid "Invalid UTF-8 string in PSD file" msgstr "Hi ha una cadena UTF-8 no vàlida en el fitxer PSD" -#: ../plug-ins/common/psd_save.c:181 +#: ../plug-ins/common/psd_save.c:192 msgid "Photoshop image" msgstr "Imatge del Photoshop" -#: ../plug-ins/common/psd_save.c:1564 +#: ../plug-ins/common/psd_save.c:1312 #, c-format msgid "" "Unable to save '%s'. The psd file format does not support images that are " @@ -6167,7 +6168,7 @@ "No s'ha pogut desar '%s'. El format de fitxer psd no suporta imatges de més " "de 30000 píxels d'amplada o alçada." -#: ../plug-ins/common/psd_save.c:1576 +#: ../plug-ins/common/psd_save.c:1324 #, c-format msgid "" "Unable to save '%s'. The psd file format does not support images with " @@ -10996,7 +10997,7 @@ msgid "Drawing Maze..." msgstr "S'està dibuixant el laberint..." -# $Id: ca.po,v 1.59.2.3 2005/01/28 20:08:20 jordim Exp $ +# $Id: ca.po,v 1.59.2.4 2005/02/22 22:35:58 neo Exp $ #: ../plug-ins/maze/maze.h:2 msgid "Maze" msgstr "Laberint" @@ -11724,89 +11725,89 @@ msgid "Rotating the colormap..." msgstr "S'està rotant el mapa de colors..." -#: ../plug-ins/rcm/rcm_dialog.c:114 +#: ../plug-ins/rcm/rcm_dialog.c:119 msgid "Original" msgstr "Original" -#: ../plug-ins/rcm/rcm_dialog.c:127 +#: ../plug-ins/rcm/rcm_dialog.c:133 msgid "Rotated" msgstr "Rotat" -#: ../plug-ins/rcm/rcm_dialog.c:140 +#: ../plug-ins/rcm/rcm_dialog.c:147 msgid "Continuous update" msgstr "Actualització contínua" -#: ../plug-ins/rcm/rcm_dialog.c:153 +#: ../plug-ins/rcm/rcm_dialog.c:160 msgid "Area:" msgstr "Àrea:" -#: ../plug-ins/rcm/rcm_dialog.c:157 +#: ../plug-ins/rcm/rcm_dialog.c:164 msgid "Entire Layer" msgstr "Capa sencera" -#: ../plug-ins/rcm/rcm_dialog.c:159 +#: ../plug-ins/rcm/rcm_dialog.c:166 msgid "Context" msgstr "Context" #. spinbutton 1 -#: ../plug-ins/rcm/rcm_dialog.c:284 ../plug-ins/rcm/rcm_dialog.c:362 +#: ../plug-ins/rcm/rcm_dialog.c:291 ../plug-ins/rcm/rcm_dialog.c:369 msgid "From" msgstr "Des de" #. spinbutton 2 -#: ../plug-ins/rcm/rcm_dialog.c:310 ../plug-ins/rcm/rcm_dialog.c:363 +#: ../plug-ins/rcm/rcm_dialog.c:317 ../plug-ins/rcm/rcm_dialog.c:370 msgid "To" msgstr "a" # * Gray: Operation-Mode * #. * Gray: Operation-Mode * -#: ../plug-ins/rcm/rcm_dialog.c:499 +#: ../plug-ins/rcm/rcm_dialog.c:506 msgid "Gray Mode" msgstr "Mode gris" #. Gray: Operation-Mode: two radio buttons -#: ../plug-ins/rcm/rcm_dialog.c:508 +#: ../plug-ins/rcm/rcm_dialog.c:515 msgid "Treat as this" msgstr "Tracta'l com aquest" -#: ../plug-ins/rcm/rcm_dialog.c:520 +#: ../plug-ins/rcm/rcm_dialog.c:527 msgid "Change to this" msgstr "Canvia a aquest" # * Gray: What is gray? * #. * Gray: What is gray? * -#: ../plug-ins/rcm/rcm_dialog.c:533 +#: ../plug-ins/rcm/rcm_dialog.c:540 msgid "Gray Threshold" msgstr "Llindar gris" #. * Misc: Used unit selection * -#: ../plug-ins/rcm/rcm_dialog.c:572 ../plug-ins/rcm/rcm_dialog.c:676 +#: ../plug-ins/rcm/rcm_dialog.c:579 ../plug-ins/rcm/rcm_dialog.c:683 msgid "Units" msgstr "Unitats" #. Misc: Used unit selection: 3 radio buttons -#: ../plug-ins/rcm/rcm_dialog.c:581 +#: ../plug-ins/rcm/rcm_dialog.c:588 msgid "Radians" msgstr "Radians" -#: ../plug-ins/rcm/rcm_dialog.c:593 +#: ../plug-ins/rcm/rcm_dialog.c:600 msgid "Radians/Pi" msgstr "Radians/Pi" -#: ../plug-ins/rcm/rcm_dialog.c:605 +#: ../plug-ins/rcm/rcm_dialog.c:612 msgid "Degrees" msgstr "Graus" #. Create dialog -#: ../plug-ins/rcm/rcm_dialog.c:638 +#: ../plug-ins/rcm/rcm_dialog.c:645 msgid "Colormap Rotation" msgstr "Rotació del mapa de colors" -#: ../plug-ins/rcm/rcm_dialog.c:670 +#: ../plug-ins/rcm/rcm_dialog.c:677 msgid "Main Options" msgstr "Opcions principals" -#: ../plug-ins/rcm/rcm_dialog.c:673 +#: ../plug-ins/rcm/rcm_dialog.c:680 msgid "Gray Options" msgstr "Opcions de gris" @@ -11892,27 +11893,27 @@ msgid "Transferring TWAIN data..." msgstr "S'estan transferint dades del TWAIN..." -#: ../plug-ins/winicon/icodialog.c:123 +#: ../plug-ins/winicon/icodialog.c:89 msgid "1 bpp, 1-bit alpha, 2-slot palette" msgstr "1 bpp, alfa 1-bit, paleta 2-safates" -#: ../plug-ins/winicon/icodialog.c:124 +#: ../plug-ins/winicon/icodialog.c:90 msgid "4 bpp, 1-bit alpha, 16-slot palette" msgstr "4 bpp, alfa 1-bit, paleta 16-safates" -#: ../plug-ins/winicon/icodialog.c:125 +#: ../plug-ins/winicon/icodialog.c:91 msgid "8 bpp, 1-bit alpha, 256-slot palette" msgstr "8 bpp, alpha 1-bit, paleta 256-safates" -#: ../plug-ins/winicon/icodialog.c:126 +#: ../plug-ins/winicon/icodialog.c:92 msgid "32 bpp, 8-bit alpha, no palette" msgstr "32 bpp, 8-bit alfa, sense paleta" -#: ../plug-ins/winicon/icodialog.c:151 +#: ../plug-ins/winicon/icodialog.c:117 msgid "GIMP Windows Icon Plugin" msgstr "Connector d'icones de Windows del GIMP" -#: ../plug-ins/winicon/icodialog.c:172 +#: ../plug-ins/winicon/icodialog.c:138 msgid "Icon details" msgstr "Detalls de la icona" @@ -11921,7 +11922,7 @@ msgid "Icon #%i" msgstr "Icona #%i" -#: ../plug-ins/winicon/icosave.c:943 +#: ../plug-ins/winicon/icosave.c:969 msgid "Windows icons cannot be higher or wider than 255 pixels." msgstr "Les icones de Windows no poden ser més altes o amples de 255 píxels." diff -uraN gimp-2.2.4/po-plug-ins/ChangeLog gimp-2.2.5/po-plug-ins/ChangeLog --- gimp-2.2.4/po-plug-ins/ChangeLog 2005-02-21 14:15:08.000000000 +0100 +++ gimp-2.2.5/po-plug-ins/ChangeLog 2005-03-22 10:42:02.000000000 +0100 @@ -1,3 +1,19 @@ +2005-03-22 Miloslav Trmac + + * cs.po: Updated Czech translation. + +2005-03-20 Marcel Telka + + * sk.po: Updated Slovak translation. + +2005-03-14 Cai Qian + + * zh_CN.po: improved Chinese translation. + +2005-02-24 Maxim Dziumanenko + + * uk.po: Updated Ukrainian translation. + 2005-02-19 Takeshi AIHANA * ja.po: Updated Japanese translation by diff -uraN gimp-2.2.4/po-plug-ins/cs.gmo gimp-2.2.5/po-plug-ins/cs.gmo --- gimp-2.2.4/po-plug-ins/cs.gmo 2005-02-22 23:12:41.000000000 +0100 +++ gimp-2.2.5/po-plug-ins/cs.gmo 2005-04-09 23:09:28.000000000 +0200 @@ -1,367 +1,369 @@ -/ -Q 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  );AQbr     &4< @LSXaq    (1 @L -] hv ~ "?Zs$2#/"'R$z&J&N'u - - -*A(_ hh+)'#4 -4?(t)'l*\55,* K4Z  $4!V ^k' 13A$u7U(/ -ITZl   -*<EM Sar - %3 -E@P  -.7M\ew    #$/Te+|4$ -7+@lA   )(6R -& -(+(!Tv& # #81\#&/>B8. 5CU<g|'!I?i -9    ( 9  L  Z f ~         - -  -% -6 -G -c +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  #(9KQar    * 6DL P\chq "&*08A P\ +m x  "?*j$2#/2'b$&J&^' + + +*&Q(o hh;)'#44O()'l*l55,*0[4j  $(41f n{'A3Q$7U8? +Ydj|   +/:LU] cq +  5C +U@`  +(>G]lu    3$?du+4"4 =G+P|A  ()86b +& +(+8!d& # '#H1l#& /">R8,> ESe<w|'1Y?y +9   /  @ L ]  p  ~           -l - w +0 + ; +I +Z +k +  - - - - - - - - - - - - - -   & 0 7 ? P ` p  v          % 8 L yb  $    ! 00 a  h t    !    2AX a m -y      * 3AV ^k4 - -    -1 <HQ c q2}0=1=Q/  + @(S|B +F am  #). -@K \hz :  3)H/r#2+%CRa i"v'4u ')Hc'*=]9|N)./^-y' #'-<M%V2| # $! F1S16',Th   !7<CZz - )"@Hhm|6 -  .  <  I W p     - "      - -! ! -#!.!D!J!Q!V!_! n!{! ! !!!!!! " " " "g"#'# 9#F#W# -p#{#(#)## # $$#$ *$8$ -I$ T$^$f$v$$$$$$ -$ $$%% %%,%B%K%]% m%{%% %%%% % %& &&&1&D&K&P&U& f& r&&& && & -&&& ' ''( -( ( *(6(;( A(K(-\(((((2(/)B@)=) -) )) )* * */* ->*I* Z* g*q* u* ***$*3* +0+ 4+B+Q+a+r+ w++ +++++++ ,, -, ",/,?,O,X, a,nn,,Ye-v-6.\.C/[/ d/p/w/}/// -/ / ///"0 %010I0 Y0e0z00 0K011%1*1>1F1[1 j1 t1 111 1161 12 2'2 :2([2*2 22 2]2 <3H3L3\3 -v3 3333 333334 4$494=4B4 K4X4a4i4 p4z4 -4 -4/4`4)5 .585 >5 J5GT5B5N5I.6x6~6666666666%6$ 7%07$V7%{7$777777 8 82878@8 G8 Q8[8b8 r8888 -888 99&9;9P9 `9n9999 99 -9 99 :): -;: F: -R: ]:i::: : :: ::::; ;; );<6;%s; ; -;;;'; ;<$<<<K< [< i<w< <<<<< <<< <== -5= @=M=e=}= -= = == == = = ==> >>> -3>>>Q>0h> > >>> -> >>? (?+6? b?p??????? ? ?@ @!@<@X@j@ q@}@@ @ @@ @@@@@AA(ACA^AnA}A A AAAA A -AAAA A B BIB hBrBBBB -BB:B0C -2C=C.CCrCwC~CCCC CCCC D/D@D*RD}DDDD DDE E!E *E7E ?ELE ]EgE pE}EEEEEE FF%!FGFOF -_FjF qF{F FFFF FFFFG GG (G 4G@GPG#nGGGG7GHH $H1H HHTH kHxHH HH HHH H HHH H III&I =I GI QI2[IIIIII J (J2J 6J -@JKJeJlJ}JJ J -JJJ$JJ JK K 'K3KBK -JK UK cK -pK{KKKKK -K KKKL#L7L PL -ZLeLuL }LL LLL LL -L'L MM -(M3M9M @M JM TM^M~MMMMM MMM MMMN -N N "N.NEP8YPP PP+PP PP Q Q(Q9QLQ:dQ'Q QQQQ R)R 8R FRRRhRzR R RRR RRRR SS$S8SUMU `UjU%oUUUU UUUUUVV"V1VAVFVUV\VkV}V VVVVV-V+W3WFW NWoWWWWW W W WWX$X=XNXbXyXXXXXX"X Y"Y -1Y#a Ma Wa aa naxa aaaaa a.a'a%b,b 5b AbMb_b fbrbbbb bbbcc:c Nc [c ic+wcccc -c cccd dd3dOd`d pd ~d d -ddddd#de7eLe_exe0ee]e]=fffgg $g .g#8g?\gggggg)h%:h<`hEhh h i ii0i/Gi*wiCiij+ j!Ljnj'jjj jjj j k k&k/k FkRk Zkhkokukkk k!k#kkll/l@lSl -flql l -ll lllll -mm -#m.mJm Qm]mbmkmqm -mm mmm'mmmYmTnZn -mnxnnnnnn -nn o oo"o:oOocouo {ooo oo/o-p/6p fp ppzppp pp -pppq -q qq6qNqDiq'q@q r!r(r8r LrVrqrxrrrr rrr r rrrss ,s :s GsUsfs -ks7vss sZst/t6t ?z<~z7zz{|!|||.})6}%`}Q})}&~)~F~/~3~&/Vv04p-~=%[,!|J %)5 -_jy ~ - - %/2 -; F PZbk o|   ф݄    ).Mh ƅʅ҅ o {}# (4OU%\/ɇ ҇ ߇&!HQpw -  Ȉ !FA,ljQ؉:*ez* ݊8?EUez‹ ҋދ -  #- 3 A NRZP!@Tg~j4A$=.D-s-Ϗԏ -  Unlې -,#PW\d8vɑ %*?N] lz }&%%֒[ uÓS̓C :dF$,HQ o{   ŕ ו !-5 >L]m}   - ǖ Ֆߖ  - # )7J S`in w     -ǗЗ - !8 ->I Xfo(Ș И ܘ  * -9 DP V`r{  - ș֙ -, -2=FVfu  ך .8 > -H Sat| ̛֛ ޛ   $- 3?PXagltz -   ͜ڜ$)0D(L u    -Ɲѝ  - #6)R|Ϟ֞ ! 0>CJP_n - Ɵ ԟ      ", C MYi -q|  -ˠ Ѡߠ  -$/? T^ -u  ǡС ء -   -' 2?P -Ydm  ƢТ ע -  !+0AF Wd -lw   -  -ãɣ ңޣ -* 1 -?JS g sΤޤ !/%8^ {     Υإޥ  '1 AMUdm} - - 8ɦ  - - 9 GS\dk -z 6 ϧۧ  .@Z p~-   2> NX -itz     Ω թ  5? -P [en  - ªʪ Ϊܪ-JPUdt (ɫ̫ѫث "#4 9 FR f -p { -  ̬Ӭ   !/ ->IX:mí -ɭ -ԭ߭=0-^u ϳ 5J%c#ش,#)%M&s -̵%4 @U (VͶ`$ ޷ /6? GS [ -e!p  - ȸո ڸ -%(Nf{ɹ6۹%8MSкE[u=<̻' 1)ҽ&ܾ% 6#GkzͿ)0OX*a  /  PmOt ,G \;j*00G^!u4 + 1? -Wbhqy ! . 3 Tu   - - - 2F8 !0@O_s  +9HNU -Z eq!#!Egkptx~     %/ -7B'RzA (E:e'B4 '@-h"_(7'` - -,4*R} oo)"11%!W"y$b!$2F2y% % 4Ui+y$  &;%,ReN S t~#  &>R -ep  !1Ndz;  -(:AQo     , 9 -C N Zdw  -& 6HG  &;>O --1 R'j # --,%1W*q3"%!$;8`"&5NOE +L fpE~2u&C`%$#5N&a ) = ^ -j u    -  * -<G P Zgz  " 6"Wz#z,F =GXk ~# -:S\ -o z  '-AVfn~7   %/AH P\ q0.>/-@]/&9V%i! G FRq   " 4AWgm u!$*<O -:/-)]?5%#6FM%U!{.Ah $5K#k ""*!$A/f)(JXO,5( 340h ,).94h)"&BBY .#>2T& '>Vn ) @M&](  -#)4^ u  3E/T        1 -?(J'sk | } 3 -Q\'s *,! :GN^dz  #8Vmu ~$ :Daw ~  '<Tq     ! +5G*Z(7 QA ;      -% -4 -G + + + + + + + + + + + + +   "  . :  J T [ c t            1 I \ p y  $ 1  9 E 0T       !   +#:Ve|   +     +) AN Wez 4 + +  & 7C +U `lu  20=1C=u/  + Cd(wB COj  ( :GMR +do  : 0 7CW)l/#2+Igv "'4 '%Ml'&Na9N)).S-' #8KQ`q%z2 # $$E j1w16'Px  0E[`g~ + );"Adl6  +  ?  R  `  m {      + "  !!! +.! 9! +G!R!h!n!u!z!! !! ! !!!!!" " " " "g"<#K# ]#j#{# +##(#)#$ "$/$5$G$ N$\$ +m$ x$$$$$$$$$ +$ %%$%*% /%;%P%f%o%% %%% %%%& & &$& 3&=&C&U&h&o&t&y& & &&& && & +&' ' ( (!(%( +7( B( N(Z(_( e(o(-(((((2)/4)Bd)=) +) )) *$* 6*D*S* +b*m* ~* ** * ***$*3* 3+T+ X+f+u+++ ++ +++++ +,,/,5, +;, F,S,c,s,|, ,n,-Y-v-Z.\.C;// ////// +/ / // 0"&0 I0U0m0 }0000 0K0,1@1I1N1b1j11 1 1 111 1161 2&2 >2K2 ^2(2*2 22 2]3 `3l3p33 +3 3333 33344)4 :4H4]4a4f4 o4|444 44 +4 +4/4`4M5 R5\5 b5 n5Gx5B5N6IR666666666666% 7$/7%T7$z7%7$7777 8 818D8V8[8d8 k8 u888 8888 +889 *989J9_9t9 99999 99 +: ::-:M: +_: j: +v: :::: : :: : ;;#;+; 4;>; M;<Z;%; ; +;;;'; <8<H<`<o< < << <<<<< <== =)=A= +Y= d=q=== += = == == = > >>$> )>3>B> +W>b>u>0> > >>> +? ??4? L?+Z? ???????@ +@ @%@ ;@E@`@|@@ @@@ @ @@ @@@ AA%A4ALAgAAAA A AAAA A +AABB B +B 5BIBB BBBBB +BB:B0%C +VCaC.gCCCCCCC CCDD 2DSDdD*vDDDDD E!E*E ;EEE NE[E cEpE EE EEEEE F!F *F6F%EFkFsF +FF FF FFFF FGGG'G ,G6G LG XGdGtG#GGGG7G(H@H HHUH lHxH HHH HH HHH H HII I ,I6I:IJI aI kI uI2IIIIJJ0J LJVJ ZJ +dJoJJJJJ J +JJJ$JK K*K ?K KKWKfK +nK yK K +KKKKKK +K LLL'L#7L[L tL +~LLL LL LLL LL +L'M -M7M +LMWM]M dM nM xMMMMMMM MMM NNN%N .N :N FNRNiP8}PP PP+P Q Q!Q0QDQLQ]QpQ:Q'Q QQ RR-RMR \R jRvRRR R RRR RSS S $S2S$7S\S`S +pS{S S SS +SSSSSSSS +TTTT5TRTfTmT}T TT T T TTTTU U +,U7U>UBUQUbUqU UU%UUUU UUVV"V'V6VFVUVeVjVyVVVV VVVV W-!WOWWWjW rWWWWWW W X X X3XHXaXrXXXXXXXX" Y/YFY +UY#`Y Y1Y,Y YYZ!Z 'Z +5Z@ZGZ NZ +ZZeZkZsZ|ZZ Z Z ZZZ ZZZ[[:[ J[ T[^[d[v[4[![[[\ \ $\ .\;\C\I\ +Y\d\ m\w\ +}\\\\\\\;\ #] /] +;]F]\]s] ]] ]#] +]] ]^^ +^ +5^@^X^ j^x^^^*^ ^^^ _ '_5_H_ Y_e_ ~_ _ _ _ ___ __ _ ` ` ` +` 7`C`*Y` ```` ` +```/a3aMa\aba qa {a a aa aaaaa a.a'!bIbPb Yb ebqbb bbbbb bc c)cBc^c rc c c+cccc +c cdd%d 7dCdWdsdd d d d +dddd e#eBe[epeee0ee]f]afff&g@g Hg Rg#\g?ggggh h)4h%^h<hEhi i 'i 4iAiTi/ki*iCi +j(j+Dj!pjj'jjj jkk k-k cz<z7z{||!|| }.+})Z}%}Q})}&&~M~j~/~3&Sz047pQ~€=A%,ҁ!‚Jق$ =I)Y +  ̓-߃ %.7 ISV +_ j t~   Ȅ   &0 AMRq ˅ o1{38G LXsy%/  ,&Elu +ň Ԉ  +-EFe,Q:NĊ*֊ (C\ciyŋ׋  +# +2 = GQ W e rR~Pь"*3<!BdxjXAÎ$=*.h--ŏ + % +5U:n(.7,Gt{8ӑ6 ;INcr  &%Ԓ% &,[= “ȓΓӓؓߓSCD:FÔ +,CHPlu  ˕ Օ ߕ  4< EQY bp  –Ζ +   +!( +/:@G M[n w    ɗ ӗ +  . ;E\ +bm |(ܘ  09 AN +] ht z  +șә   +%5>P +Vajz  Ś̚Ӛ "+@ R\ b +l w؛   !(06 <HQ Wct| + Ĝ Ҝޜ *38HMTh(p   ʝ֝ ޝ + +  +$/GZ)vŞ˞۞!)06E Tbgnt +˟ԟ      $ 0= FP g q} + Ƞ +Ԡߠ  (:@ +HSc x +  ϡۡ  + +"- > +K Vct +}ʢӢ ܢ   . ; EOTej { +   +ʣ У +ܣ  + +&;N U +cnw  ɤڤ) ES%\   ǥ ӥݥ   " )5 KU eqy + +Ȧڦ 8 & +2= Q ] kw + 6  $5= DRd~ -ڨ  ';C Vb r| +  é Щ ک   $*<B Yc +t   +Ī Ϫ٪  #4:-@nty (ī +">GX ] jv  +  +  ƬӬ $ (6 ES +bm|:̭ޭ + + +=0Q̲ղγг߳   )58n%ô޴#, #M%q&ĵ -%4D@y (ȶV`Hɷ ٷ )/CSZc kw  +! ĸٸ +   + 3%LrϹ6%6\Mwźغ E9=<'-U) 5&پ%DZ#kԿ) +4Ts|*  /   %28P@O !>Pk ;*0#Tk!4 +-5<O Uc +{ ! (<R W x   + + +%0AVF\ (=ETds!19@ O]lry +~  )!G!i   - ; IS +[f'vA (@i:'B4/'d-"_([' + +,+X*v ooM"11I!{"$b!H2j2% (I Xy+$  $&;%Pve r w #  % <Jbv +  5EUr; .L^eu    7= D P ] +g r ~  +& 64Hk  &8_>s +-1Dv' # +-,(%U{*3"%!=$_8"&&5=NsE  Op E~2&C7I`f$,Qdv& +?Sj ~  +      + + 2@ P\k +}    *<"T w"#,F7 ~ #9S n{ +  ! 0>Ohn7 )3< EOU fp  0.>//n@/$7@&Sz%! 2G?   !.Jc u ! 7P$k< +:3/n)?5%>dw%!. A $15V# ""*7b$/)(JEX,5(L3u0 ,(AGWj.z4)"9&\B .#2>V2&!=M`h/H ^j &( #+I +Yd)u  &C S`t/    * -7= DPYa r +('  }at +' *,,!Y {  *?DUdy 2He {  ,5 <FXh}   +/ CPY b lv* (! 7J Q ;  + +! +? +O +f +u +  -W -b + +  -s -~ - - - +  - -# -- ; V ^ o       $   -  3 J \ b  -{       y o DqIpU,: " 4BQd"! $  ?`Ur  -! 8F Yeu :',/T0 `ENRb y  "8Kcg -l w   - - 'WO Vb j x),.1 >G O Y c m w +,+,E+r,   &<PW -i -t  - $")Fd~-M `n v  -  -  # 6 @Lbx  -   U%4 Z -do$#$.CRg|    -" -: ERj# -     + 7 ?  D Q e  -   B   !!2! -J! U!b!z!!+!!!""2"G" N" X"b" r"" " "!"""##5#;#L#\#x##########$@$ T$b$w$ $$ $$$$$$ $$ -%%Y+%%%%%%%"%X&;x&&&:&' -' ''-' B'O'l'}''!'' '2' (3(P(h( ((((( -(((( ( ( )) 3) T) u))) -))&))** -'* 2* ?* I*$V*{****** *** ++0+ B+c++ ++3++, -,#, 9,C, -X, c,m, -,,,,, , -, -,, , ---%- <- I- V-4c- ----# . 0. Q.]. a. -n.!y.... ..../32/ f/p/// ///// / 00#/0S0[0 p0 z0000000 1 - 11*1 21<1P1b1 -x1 11 1#1 11112 22)2$92^2 x22 2222 -2 22 -3 3 3 3 '3V135:55 -5 5(5%6-6?6S6 -l6w6664626.7B7W7h7"}777 7777 8 #8/8N8 l8v88888&88 8 8 -89939 D9 -Q9\9 n9 |9 -999 99 999 -: :':>:S:p::::: ::';8;G; V; b;l;~;;;; -;#; -<$<9< -O< Z<d<z< -<<<<<< < =&= :=H= -Z=e=*===1=>> -5>@>_>w>">>>>> ??$?=?Y?k?????!?? -@)"@L@e@ @@ @:@5@%A 9A -ZAeA mA {AAA AAA -A AAA A A A BB -B7B>BWBpB BB -BBBB6BC6CICXC hC vCC CC C CC C CCCDD/D?DPD)VDDDDDDDDDD+D E#,EPE"cEE E EEEEEF.F,EF rFF#FFFFF -GG:GKG[GkG{GGGGGGGG -HH*H:H,PH}HHHHH HHI4%IZIwIIII II III JJ&J5J DJ.QJ+J JJJJJ JKK$K9KNK)kK)KKKKL L,LBL<XLLLL L LLLLM,M%AMgMM M M M M MMMN(!N JNkNNNN3N!OR5OqO|OwPP PP*PMP*Q!>Q$`QQQ%Q(Q7 R:AR|RRR RR$R4R/3SKcSSS/S-TGT,dT -T,TTTTTU U0U8U KU XU bUpUxU~UUU U"UUUV"V=VWVqVVVVVVV%W(WDW*UWWW -WW W WWWWW XX 'X5XQX+fX X -X{X#Y+Y?Y NYXYhYxYYYYY -YY ZZ.ZDZ VZdZ tZZZZZGZ( [,I[v[[[[[[[[[\ /\ -9\ D\Q\j\\?\\<\;]B]H]Z]p]x]]]]]]]]]^^ .^ ;^G^[^p^^^^^^<^ _ _[1____ _ __ _ __``6`7;`,s`)`` ` ```a"a5aJa _a laza aaaaaaaaabb"b#*bbNb/bb%bXccoccc'd'/dIWdd,d:d?%e1ee4ee@e!$f$Ffkf[gh 1hRhph%h%h"hYhWi wiii,Rj.j!jjj.k./k^kykoklAl l(m)m(mn]1nnn -n%nnn o o o6oKo?goooooo ppp(p/p?pHpPpXp\p pp zppp ppp pppq"q BqNq#Rqvq#qq qqqqr$rvDrr=sZs bsssss s)ss t.tDt Ttbt$stt0t -t"t u!u 7uEuXu kuxuuuu$u.uC+vov5vv\v?9wyww ww3w!x3xJxcx|xxxxx xxxxxyy,y4yHy Oy]y dy qy{y y yyFyJy HRcu?̠ % ) 5A I~ `T? -g<#r5 UH >'@ c  -=!Q WF}9P.P V x= P#+ [z? ? $ a -{7 dvgs@K ;nIC$f   L7on  -?6=.9t  & m - 'kOK%v4f r -|Tz$K -2< 4  ` 7 % t ;&kjG kBf& R  +&GsCUAF( 6$ZB</:gS7 & -, *HZ |pMW7'Y -/im e#|T1]H9jBv-i4q0ONel{L - -3(misChs= .& y 1)8b)>8 -S@  k_PX M- -0Su}EpMppg[G_%4/Cu J Hv [^T _4I ~ko| " mX/ -\8 _!5, ) =~(. -wma, --; I_ q< -# -su Z &6 h9 bJJY/ - >^V  zP%<A31g5K$ ) - "  q d 9w?E O  V  ~ e - @: 4^M Mja8EW1iG_  _ < -}M  x*J ]\ D6LB | -` XFx ' o  -} -% -2w\8AG"2tbu[ y,$d* d,d "Wx[nl u9  F3  -)EF]. YRz q->?5 -+GN Cf y)%+@1p - O& vs< Z*\dw S3rcLD.O8[E unr ->oNf^#W u" .  y3; I 8DHc!N eUEb  -  QE.  9rg ' -j |NLp (\  -$D =6 -9 -c3 N" + + + +  #* -N |           $ 6 K _ t     +     +   ! y6  DEqpUm:  ?Rc u"! ,$: _ U '- ?Kb y  :8QY'm/0 `%   #)2Gcy +    + + 'W8   ),.1M      +,-+Z,+,  '9Ng} + +  + $""EZj 4Qn     + # +/ : FSd w   +   U%u  +$#$7\o  !7 >Kc +{ # ,  +B M  ^  l x      +   B =! N![!s! +! !!!!+!","D"\"s"" " "" "" " "! #.#@#H#]#v#|#######$ $$#9$#]$$ $$$ $$ $$$$%% *%8%K%Z%Yl%%%%&&.&"=&X`&;&&': 'D' +H' S'_'n' '''''!'( (2 ( S(t((( ((((( +( +))") 6) @)L)_) t) ) ))) +)*&*;*B*Y* +h* s* * *$*****+ ++ ++-+J+]+q+ +++ ++3,;,S, +Y,d, z,, +, ,, +,,,,, - +- +-%- 8- E-R-V-f- }- - -4- --.6.#M. q. .. . +.!.... //*/>/W/3s/ //// //0 0"0 :0 F0P0#p000 0 00000 1(1 B1 +L1W1k1 s1}111 +1 11 1#1 2202?2F2 M2W2j2$z22 22 2233 +!3 ,3:3 +B3M3 T3 ^3 h3Vr35:56 +$6 /6(=6f6n666 +6666472<7o7777"777 88*8@8 W8 d8p88 888888&89 9 *9 +79B9V9t9 9 +99 9 9 +999 99 ::+:K: ^:h:::::::; +;5;'Q;y;; ; ;;;;;< +<#'<K<e<z< +< <<< +<<<==(= := [=g= {== +==*==>1>P>Y> +v>>>>">> +?#?3? C?O?e?~??????@!@3@K@)c@@@ @@ @:@50AfA zA +AA A AAA AAA +A BBB +B 5B ?B IBSB nBxBBBB BB +BBB C6!CXCwCCC C CC CC C CC D DD4DTD\DpDDD)DDDDDDDEE E+3E _E#mEE"EE E EEF$FMWMmM%MMM M M M M NN-NEN(bN NNNNO3 O!TORvOqO|;PPP PP*PMQkQ!Q$QQQ%Q(!R7JR:RRRR R S$S4?S/tSKSST/*T-ZTT,T +T,T +UU5U=UOUaUqUyU U U UUUUUU U"V#V;VCV"[V~VVVVVV WW3W%CWiWW*WWW +WW X X X&X8X>X SX_X hXvXX+X X +X{XdYlYY YYYYYYZZ +/Z:ZMZVZoZZ ZZ ZZZZZG[(a[,[[[[[[\\*\<\[\ p\ +z\ \\\\?\$]<?]|]]]]]]]]]^^!^2^9^H^]^ o^ |^^^^^^^__<_ U_a_[r____ _ _` ` `)`D`\`w`7|`,`)` a a a,a>aPacavaa a aa aaaaabb*b2bEbZbcb#kbbb/b"c%1cXWcccd0d'Hd'pdIdd,d:+e?fe1e4e f@$f!ef$ffgSh rhhh%h%h"iY>ii iii,j.j!jk)k.Ak.pkkkokFlAl m(Amjm(3n\n]rnnn +n%o(o/o CoMoaowoo?oopp&p9pNp]p`pipppppppp p ppp pp q q'q;qOq"`q qq#qq#qq r5r:r>rFr$`rvrr~ss sssss t)t9t Jt.Vtt tt$tt0t +'u"2u Uubu xuuu uuuuv$v.=vClvv5vw\w?zwww wx3.xbxtxxxxxxxx yyy&y8yHyYymyuyy yy y yy y yyFyJ2z}zzzzzzzz +{ {{P3|/|,|:|6}:S}}} }}} }}[}h<~~~~ ~~+~ ",27BL +:L^ w .*.!'b@ +сԁځ V<\2B̂(+>X g%t ă ׃   + / GT [h   ҄(1:IZ n|   ʅ Ӆ߅  !(09>DK]o†ӆ    ,9 JVk+ LJ +ч܇  +  * 8 +DO Ub t~ و +#BKaiz  +Չ1B Ycz + ̊݊  ?H gt |   +Ë΋    " ,8JS\ z   Ԍ  " +'2 +N0Y Ѝ ٍ   &#6Zq1 +Ɏ Ύڎ )2H amu |ɏҏڏ  1 =Ict +  Đѐ # 9CTm  őґ  "0CV_y  +˒֒  + + )6G +Va!t ֓    )5Db y   ǔ ה  + -9 B O [g } + Е   +/8A` Ζ%  8!Fh    ×Зߗ   + 4=M mw  +  Θ ۘ   F% lyșٙ +  4(]n u  Ú ˚ٚ/=m8ś՛ۛ + ':BQ Zdm +v ˜Ӝ  + + ! -N^ n +x  ͝ +ם +< Y er.w Þ Ҟ )%( +1<D LX,` ͟  +  + +  '&3Za q  Ǡ٠? M^f j v  `U@ +g=$r6 VI ?(A c  +>"R XG}:P/Q W x> Q#, \{@ ? $! b +|8 ewhsAL <nJD%g   M8po  +?7>/9u  ' n . (lOL&w5g s +}Uz$L 3<4 +a 7 & u <' kkH lBg'  ,&GtDUBF) 7%[C=/;hT8 & +, +HZ }qNX8(Y +0in  f $}U2^I:jCw-j5q1POel|L +4)njtDit> .' y 2*9c)?8 +S@  l_QX N. +1Tv}EpMqqg\G`&50Dv J Iw \_T _5J ~lo} # nY0 \9 `"6- * >)/ +wnb- .< I`r = +$ +tv [ '7 i:  bKKZ0 + ?_W  {Q%=B41h6L% +* + #  q e 9w@F P  W   f + A; 5_M Nkb9FW2jH`  ` = +~N  x+K ]\ E7MC } a YGy ( p  +~ +& +3x]9BH#2ucv\ y-%e+ e-e " Xy[ol u:  G4! +*FG]/ ZS{ r.>@5 ++HN Cg z)&,@2q + P' ws= [+]dx T4sdME/P9[F!vor ?oOf_$X v# /  z4< J 8EId"O fVEc  +  RF/  :sh ( +k |OMq )]  +%E >6 +: d4 N # -]+ o Ijr4  @4 Y ,U`! {n, 5  o% -'] -f:+ -h~d qV!P\ - ! f2-4+Qt<6E  geb F:01H J O[0I>H 'SAaBK 3Qb l-S R% Zy 8j _I6WwkX|aZviD ~^ "GV WF  -?  K?:  ,n fl R5  n -U wln)|)  we   -Mms HQ 0vA=>=<T=Oa   ~( ` @RBuAHr s3J 'nW B`k3r]^M $D( - 21 95ch%U ;D0 TEX 5 NK7 Xyz;pW_ x6 :$7tp #iV[ Y; Gz| { B A  ? t }#}=>^U/] - y (JD Fr\uXQ` K {QD}2Ho q[YByk *> *cbM &v;:jQliV b (R ^B Je}%dxs /( a I)~ b2` hI! - tKVP-e " p'{L !] 2z\ -}RR@t 7Z> m0# - WCyN6dCO% Aae 0Y!X g'  71 )jXoY.U -$ ~8TOh@ - } R2 c J/A?i ^ UwRUiLPb nmv g Lz*" dF* - m:.Z q28{w, - -3/;4@ fkp A -' G:q 6lq]j P T(+-V {Cj~vFck#a1] tSc.x -zl C0m( -, *fZ Ylh gLe MG_o < h- #O57+I/x q ^ i P #;S  - {xSQT 0a `/ K"*$ -  S + \TcC ) 9{ zx:+ J !tE` \lZoV NY!s&w  -"[uN | X& -15QyLh,Dh* r +^, +p  Jks5  A5 Z -Ua" {o- 6  p& +(^ +g;, +ie rV"Q] " g3.5,Ru=6F hfc G;02I K O\1J?I (TAbCL!3Qc m.T S& [z 9j `J7XxkY}aZvjD _ #HW WG ! +@  K@;  -o gm R5  o +V xmo*}*  xf   +Nmt IR 1wB>?=<U=Pb   ) a ASCvBIs t4K'oX Bal3s^_N %D) + +32 :6dh&V <E1 UFY 6 OL8 Xz{<qX` y7 +:%7tq $iW\ +Z; Hz| | C B  @ t ~$~>>^V0^ + + z (KE Gs]uYRa L |RE~3Hp r\ZCzl +? +*dcN 'v<;kRmjW c )S!_C Ke~&eyt + 0)!b J* c3a iJ" + uKW Q-f "!p({M "^ 3{] .~SSAu 8[? n1$ + X DzO7dDP% Baf  0Z!Y h'  82 *kYpZ/V % ~9TPiA + ~  R3 d K0A@j ^ VxSV jMPb nnw h L{+# eF+ + m;.[ r29|x- + +4/<4A glq B +( H:r 7mr^k Q S U(,.V!|CkwGcl$b2^uTd/y + {m D1n) +- +f[ Zmi hMf NH`p = i. #P68+I0y r _ j Q $;S + |yTRU 1b a0 L#+% +  T , ]UdD * :| {y;, J +!uF` ]m[pW OY"t'x  +#\vO } Y' +16QzMi,Eh* s Copyright (C) 1997-2001 Michael Sweet, Robert Krawitz, and the rest of the Gimp-Print Development Team. @@ -394,7 +396,7 @@ 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 Selection DialogColor TransformationColor _noise:Color _variation:Color fillColor is computed from the average of all pixels under the brushColor outputColor to AlphaColor to Alpha Color PickerColor to _Alpha...Color:Color_map:Colorcube A_nalysis...Colorcube AnalysisColorcube Analysis...ColorifyColorify Custom ColorColorifying...ColoringColormap RotationColormap _Rotation...ColorsColors:CombineComm_ent:Command:CommentComment:ComposeCompose ChannelsComposing 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: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 parametersCopy the active curve to the other borderCopy the texture of the selected paper as a backgroundCopy 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' 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 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 failedCreated with The GIMPCreating diffraction pattern...Cro_pCropping...Cu_rve:CubismCubistic Transformation...Cumulative layers (combine)Curl LayerCurl LocationCurl OrientationCurrent gradientCurrent gradient (reversed)Current:Curve BendCurve Bend...Curve TypeCurve for BorderCustom Color:Custom gradientCutCyanCyan:Cyan_KCylinderCylinder lengthCylinder radiusDCT method:DICOM imageD_eform amount:D_ivisor:DarkerDarker:Data CompressionData FormattingData formattingDate:DecomposeDecompose to _layersDecomposing...DefaultDefault 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 ModeDegree of slope of each piece's edgeDegreesDeinterlaceDeinterlace...Delay inserted to prevent evil CPU-sucking anim.DeleteDelete AreaDelete FractalDelete GFlareDelete PointDelete an objectDelete currently selected fractalDelete selected areaDelete selected smvectorDelete selected vectorDeletes the selected PresetDelta functionDelta function steppedDensity:Depth MergeDepth firstDepth map:Depth-merging...Deriving Smooth Palette...Des_peckle...Des_tripe...Description:Deselect _allDespeckleDestination channel:Destination color rangeDestination:DestripeDestriping...Deviation threshold:DiamondDifferentialDiffraction PatternsDiffuse:Diffusion dist.:Digital Imaging and Communications in Medicine imageDigitsDimension:DimensionsDimensions:DirectionDirection VectorDirectionalDirectional lightDirectionsDirections:DisplaceDisplacement map:Displacing...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:Dither size:DivisionDo _PreviewDo you really want to discard your changes?Do you really want to overwrite?Document not foundDraw 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 readingEXIF data will be ignored.E_levation:E_nable bump mappingE_nable environment mappingE_rodeE_xtendEach piece has curved sidesEach piece has straight sidesEdge AffectedEdge DetectionEdge Detection...Edge darken:EdgesEditEdit Area Info...Edit FlameEdit Map Info...Edit ObjectEdit area info...Edit fractal nameEdit map infoEdit selected area infoEditing read-only object - you will not be able to save itEffect ChannelEffect OperatorEmbossEn_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:EndPage failedEngraveEngraving...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 during open of FITS fileError during writing indexed/gray imageError 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 starting ghostscript: %sError trying to open temp file '%s'for parasite loading. +%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 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 curveCreate bezier curve. Shift + Button ends object creation.Create circleCreate ellipseCreate guides...Create lineCreate new imageCreate reg polygonCreate spiralCreate starCreateDIBSection failedCreated with The GIMPCreating diffraction pattern...Cro_pCropping...Cu_rve:CubismCubistic Transformation...Cumulative layers (combine)Curl LayerCurl LocationCurl OrientationCurrent gradientCurrent gradient (reversed)Current:Curve BendCurve Bend...Curve TypeCurve for BorderCustom Color:Custom gradientCutCyanCyan:Cyan_KCylinderCylinder lengthCylinder radiusDCT method:DICOM imageD_eform amount:D_ivisor:DarkerDarker:Data CompressionData FormattingData formattingDate:DecomposeDecompose to _layersDecomposing...DefaultDefault 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 ModeDegree of slope of each piece's edgeDegreesDeinterlaceDeinterlace...Delay inserted to prevent evil CPU-sucking anim.DeleteDelete AreaDelete FractalDelete GFlareDelete PointDelete an objectDelete currently selected fractalDelete selected areaDelete selected smvectorDelete selected vectorDeletes the selected PresetDelta functionDelta function steppedDensity:Depth MergeDepth firstDepth map:Depth-merging...Deriving Smooth Palette...Des_peckle...Des_tripe...Description:Deselect _allDespeckleDestination channel:Destination color rangeDestination:DestripeDestriping...Deviation threshold:DiamondDifferentialDiffraction PatternsDiffuse:Diffusion dist.:Digital Imaging and Communications in Medicine imageDigitsDimension:DimensionsDimensions:DirectionDirection VectorDirectionalDirectional lightDirectionsDirections:DisplaceDisplacement map:Displacing...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:Dither size:DivisionDo _PreviewDo you really want to discard your changes?Do you really want to overwrite?Document not foundDraw 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 readingEXIF data will be ignored.E_levation:E_nable bump mappingE_nable environment mappingE_rodeE_xtendEach piece has curved sidesEach piece has straight sidesEdge AffectedEdge DetectionEdge Detection...Edge darken:EdgesEditEdit Area Info...Edit FlameEdit Map Info...Edit ObjectEdit area info...Edit fractal nameEdit map infoEdit selected area infoEditing read-only object - you will not be able to save itEffect ChannelEffect OperatorEmbossEn_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:EndPage failedEngraveEngraving...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 during open of FITS fileError during writing indexed/gray imageError 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 starting ghostscript: %sError trying to open temp file '%s'for parasite loading. Error trying to save figure as a parasite: can't attach parasite to drawable. 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 distributedExp.:Export PreviewExtract ChannelsFG colorFITS file keeps no displayable imagesFITS save cannot handle images with alpha channelsF_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 artFeatherFileFile "%s" saved.File '%s' doesn't seem to be an IFS Fractal file.File '%s' exists. Overwrite it?File '%s' is corrupt. @@ -441,8 +443,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: 2005-02-22 23:04+0100 -PO-Revision-Date: 2004-12-26 23:48+0100 +POT-Creation-Date: 2005-04-09 21:56+0200 +PO-Revision-Date: 2005-03-22 09:31+0100 Last-Translator: Miloslav Trmac Language-Team: Czech MIME-Version: 1.0 @@ -476,7 +478,7 @@ Rychlý a Velmi rychlý jsou algoritmy značně rychlejší, a dají se dobře použít na text a jednoduché kresby. Hybridní Floyd-Steinbergův algoritmus produkuje nejslabší výstup.Vyberte model tiskárny, soubor PPD, a příkaz, který je třeba použít pro tisk na tuto tiskárnuKruhHloubka _kružnice v procentech:Úklid...VymazatVymazat průhlednéUzavření křivky při dokončeníZavřeno_BarvaPrůměrování _barev_Barva:_Barvy_Komentář:_Kompenzovat tmavnutíKo_mplexnost:_Komprimovat značky TDÚroveň ko_mprese:Ply_nulý přechodKo_ntrast:_Korelovaný šumSlo_upec:ShrnoutBarvaHustota barvyVylepšení barev...Záměna barevZaměňuji barvy...Záměna barev: z barvyZáměna barev: na barvuBarevná funkceBarevný režim_Mapování rozsahu barev...Dialog výběru barvyBarevná transformace_Barevný šum:Barevná v_ariace:Vyplnění barvouBarva je počítaná z průměru všech pixelů pod stopouBarevný výstupBarva do alfyBarevná pipeta barvy do alfyBarva do _alfy...Barva:Barevná _mapa:_Analýza barevné krychle...Analýza barevné krychleAnalýza barevné krychle...KolorováníVlastní barva kolorováníKoloruji...BarevnostRotace barevná mapy_Rotace barevná mapy...BarvyBarvy:Zkombinovat_Komentář:Příkaz:KomentářKomentář:KompoziceKompozice kanálůSpojuji obrázky...Komponuji...Kompozice:Komprimovaná velikost: %sKompresePoměr komprese (přibližně): %d k 1Typ kompreseOmezit poměr stran:Vytváří se bludiště užitím Primova algoritmu...Vytváří se dlaždicovatelné bludiště užitím Primova algoritmu...KontextPlynulý přechod bez děrPlynulý přechodPlynulá aktualizaceObrysyKontrast:ŘízeníOvládání intenzity odleskůPřeveďte nejdříve obrázek do RGB!Konvoluční maticeKonvoluční matice nefunguje na vrstvy menší než 3 pixely.OstrostKopírovatKopírovat P-zářiKopírovat nastaveníKopírovat objektKopírovat parametryKopírovat aktivní křivku na druhou hraniciKopíruje texturu zvoleného papíru jako pozadíKopírovat do schránkyIFS se kopíruje do obrázku (%d/%d)...Kopíruji...Copyright © 1999-2004 Maurits RijkCopyright:KosinusNemohu vytvořit pracovní adresář '%s': %sNemohu spustit určený WWW prohlížeč: %sNemohu získat vrstvy pro obrázek %dNemohu interpretovat '%s'Nemohu načíst implicitní nastavení PNGNemohu otevřít soubor '%s' jako SUN-raster-souborNemohu otevřít '%s' pro čtení.Nemohu otevřít '%s' pro čtení: %sNemohu otevřít '%s' pro zápis.Nemohu otevřít '%s' pro zápis: %sNemohu zpracovat určený příkaz WWW prohlížeče: -%sNemohu číst hlavičku XWD z '%s'Nemohu číst barevné položky z '%s'Nemohu číst hlavičku z '%s'Nemohu zapsat '%s': %sNelze načíst jednu ze stop v koloně, nedokončeno.Nemohu uložit průhlednost beze ztrát, ukládám místo toho neprůhlednost.Nelze číst soubor:Nelze zapsat soubor:Nelze zapsat soubor zdrojů:Nemohu jednoduše dále snížit barvy. Ukládám jako neprůhledné.Badatel párované mapy mřížeVytv_ořit nový obrázekVytvořitVytvořit vodítkaVytvořit _novou vrstvuVytvořit _histogramVytvoří barevnou mapu s použitím přechodu z editoru přechodůVytváří barevnou mapu s volbami určenými výše (funkce barva/hustota). Výsledek je viditelný v náhledovém obrázkuVytvoření nového obrázku při použití filtruVytvořit novou jednotku od začátku,Vytvořit novou jednotku s právě zvolenou jednotkou jako vzorem.Vytvořit výsečVytváří Beziérovu křivku. Přeřaďovač + tlačítko myši ukončuje vytváření objektu.Vytvořit kružniciVytvořit elipsuVytvořit vodítka...Vytvořit čáruVytvořit nový obrázekVytvořit pravidelný mnohoúhelníkVytvořit spiráluVytvořit hvězduCreateDIBSection selhaloVytvořeno v GIMPuVytvářejí se difrakční obrazce..._OřezOřezávám..._Křivka:KubismusKubistická transformace...Souhrnné vrstvy (kombinace)Rozčeření vrstvyMísto rozčeřeníOrientace rozčeřeníAktuální přechodAktuální přechod (obrácený)Aktuální:ZkřiveníZkřivení...Typ křivkyKřivka hranicVlastní barva:Vlastní přechodVyříznoutAzurováAzurová:Azurová_KVálecDélka válcePoloměr válceMetoda DCT:Obrázek DICOM_Míra deformace:Děl_itel:TmavšíTmavší:Komprese datFormátování datFormátování datDatum:DekompoziceDekomponovat do _vrstevDekomponuji...ImplicitníImplicitní druh mapyImplicitní _URL:Implicitní typ úseku:Implicitní zpoždění políčka:Implicitní dispozice políčka:Definovat kruhovou/oválnou oblastDefinovat novou tiskárnuDefinovat mnohoúhelníkovou oblastDefinovat obdélníkovou oblastDefinice nové logické tiskárny. To lze použít k pojmenování určité množiny nastavení, kterou si můžete přát zapamatovat pro pozdější použití.Režim deformaceStupeň naklonění na hraně každého kusuStupněOdstranění prokládáníOdstranit prokládání...Pro zabránění ošklivé animaci žeroucí CPU vloženo zpoždění.OdstranitOdstranit oblastOdstranit fraktálOdstranit P-zářiOdstranit bodOdstranit objektOdstranit právě zvolený fraktálOdstranit vybranou oblastOdstranit zvolený vektor mvOdstranit vybraný vektorSmaže zvolenou předvolbuDelta funkceDelta funkce po krocíchHustota:Sloučení hloubkyDo hloubkyMapa hloubky:Slučuji hloubku...Odvozuji plynulou paletu..._Vyčistit...Odstranit pruhy...Popis:Odvybrat _všeVyčištěníCílový kanál:Cílový barevný rozsahCíl:Odstranění pruhůOdstraňuji pruhy...Práh odchylky:DiamantDiferenciálníDifrakční obrazceDifúze:Vzdálenost difúze:Obrázek Digital Imaging and Communications in MedicineČísliceRozměr:RozměryRozměry:SměrSměrový vektorSměrovéSměrové světloSměrySměry:VytlačeníMapa vytlačování:Vytlačuji...Zobrazit jako:Vzdálenost obrázku od spodního okraje papíruVzdálenost obrázku od levého okraje papíruVzdálenost pravého okraje obrázku od levého okraje papíruVzdálenost obrázku od pravého okraje papíruVzdálenost spodního okraje obrázku od horního okraje papíruVzdálenost obrázku od horního okraje papíruAlgoritmus rozptylu:Velikost rozptylu:DěleníVytvořit _náhledOpravdu chcete přijít o tyto změny?Opravdu jej chcete přepsat?Dokument nenalezenKreslit okolo obrázku hranici hrotůObrazovky mají různé velikostiKreslím plamen...Kreslím mřížku...Kreslím bludiště...Volby kresbyKreslí čáry mezi řídicími body. Pouze během vytváření křivkyVrhat stínBěhem čtení soubor skončilData EXIF budou ignorována._Zdvih:Povolit mapování vyvýše_ní_Povolit mapování prostředí_ErodovatRozšíři_tKusy mají zaoblené stranyKusy mají rovné stranyS vlivem na hranyDetekce hranDetekují se hrany...Ztmavení hran:HranyÚpravyÚpravy informace o oblastech...Úprava plamenuÚpravy informace o mapování...Upravit objektUpravit informace o oblasti...Změnit jméno fraktáluÚpravit informace o mapěUpravit informaci o vybrané oblastiÚpravy objektu pouze pro čtení - nebude možné je zapsatEfektový kanálEfektový operátorReliéfVy_rýt..._Obrázek prostředí:Povolit vyhl_azováníPovolení/zákaz mapování vyvýšení (hloubka obrázku)Povolit/zakázat mapování prostředí (odraz)Povolení/zákaz náhledu vysoké kvalityPovolení/zákaz odstraňování zubatých hran (vyhlazování)Povolení/zákaz náhledu na změny v reálném časeObrázek v zapouzdřeném PostScriptuZapouzdření dat:EndPage selhaloRytinaRyji...Zadejte název zkopírované P-zářeZadejte název pro nové P-zářeZadejte název souboru PPD pro vaši tiskárnuZadejte příkaz pro tisk na vaši tiskárnu. Poznámka: Neodstraňujte prosím z příkazu parametry `-l' nebo `-oraw', jinak tisk pravděpodobně selže!Zadejte název, kterým chcete pojmenovat tuto logickou tiskárnuCelá vrstvaCitlivost na prostředí:Použitý obrázek prostředíChyba při otevírání souboru FITSChyba při zápisu obrázku indexovaného/v šedíchChyba při zápisu rgb obrázkuChyba při zachytávání ukazateleChyba v souboru stopy GIMPu '%s'Chyba v souboru GIMP kolony stop.Chyba při získávání ID vrstevChyba při získávání snímku obrazovkyChyba při otevírání souboruChyba při otevírání souboru '%s'Chyba při čtení hlavičky souboru BMP z '%s'Chyba při čtení souboruChyba při spouštění ghostscriptu (%s)Chyba při spouštění ghostscriptu: %sChyba při pokusu otevřít dočasný soubor '%s' pro načtení parazita. +%sNemohu číst hlavičku XWD z '%s'Nemohu číst barevné položky z '%s'Nemohu číst hlavičku z '%s'Nemohu zapsat '%s': %sNelze načíst jednu ze stop v koloně, nedokončeno.Nemohu uložit průhlednost beze ztrát, ukládám místo toho neprůhlednost.Nelze číst soubor:Nelze zapsat soubor:Nelze zapsat soubor zdrojů:Nemohu jednoduše dále snížit barvy. Ukládám jako neprůhledné.Badatel párované mapy mřížeVytv_ořit nový obrázekVytvořitVytvořit vodítkaVytvořit _novou vrstvuVytvořit _histogramVytvoří barevnou mapu s použitím přechodu z editoru přechodůVytváří barevnou mapu s volbami určenými výše (funkce barva/hustota). Výsledek je viditelný v náhledovém obrázkuVytvoření nového obrázku při použití filtruVytvořit novou jednotku od začátku,Vytvořit novou jednotku s právě zvolenou jednotkou jako vzorem.Vytvořit výsečVytvořit Beziérovu křivkuVytváří Beziérovu křivku. Přeřaďovač + tlačítko myši ukončuje vytváření objektu.Vytvořit kružniciVytvořit elipsuVytvořit vodítka...Vytvořit čáruVytvořit nový obrázekVytvořit pravidelný mnohoúhelníkVytvořit spiráluVytvořit hvězduCreateDIBSection selhaloVytvořeno v GIMPuVytvářejí se difrakční obrazce..._OřezOřezávám..._Křivka:KubismusKubistická transformace...Souhrnné vrstvy (kombinace)Rozčeření vrstvyMísto rozčeřeníOrientace rozčeřeníAktuální přechodAktuální přechod (obrácený)Aktuální:ZkřiveníZkřivení...Typ křivkyKřivka hranicVlastní barva:Vlastní přechodVyříznoutAzurováAzurová:Azurová_KVálecDélka válcePoloměr válceMetoda DCT:Obrázek DICOM_Míra deformace:Děl_itel:TmavšíTmavší:Komprese datFormátování datFormátování datDatum:DekompoziceDekomponovat do _vrstevDekomponuji...ImplicitníImplicitní druh mapyImplicitní _URL:Implicitní typ úseku:Implicitní zpoždění políčka:Implicitní dispozice políčka:Definovat kruhovou/oválnou oblastDefinovat novou tiskárnuDefinovat mnohoúhelníkovou oblastDefinovat obdélníkovou oblastDefinice nové logické tiskárny. To lze použít k pojmenování určité množiny nastavení, kterou si můžete přát zapamatovat pro pozdější použití.Režim deformaceStupeň naklonění na hraně každého kusuStupněOdstranění prokládáníOdstranit prokládání...Pro zabránění ošklivé animaci žeroucí CPU vloženo zpoždění.OdstranitOdstranit oblastOdstranit fraktálOdstranit P-zářiOdstranit bodOdstranit objektOdstranit právě zvolený fraktálOdstranit vybranou oblastOdstranit zvolený vektor mvOdstranit vybraný vektorSmaže zvolenou předvolbuDelta funkceDelta funkce po krocíchHustota:Sloučení hloubkyDo hloubkyMapa hloubky:Slučuji hloubku...Odvozuji plynulou paletu..._Vyčistit...Odstranit pruhy...Popis:Odvybrat _všeVyčištěníCílový kanál:Cílový barevný rozsahCíl:Odstranění pruhůOdstraňuji pruhy...Práh odchylky:DiamantDiferenciálníDifrakční obrazceDifúze:Vzdálenost difúze:Obrázek Digital Imaging and Communications in MedicineČísliceRozměr:RozměryRozměry:SměrSměrový vektorSměrovéSměrové světloSměrySměry:VytlačeníMapa vytlačování:Vytlačuji...Zobrazit jako:Vzdálenost obrázku od spodního okraje papíruVzdálenost obrázku od levého okraje papíruVzdálenost pravého okraje obrázku od levého okraje papíruVzdálenost obrázku od pravého okraje papíruVzdálenost spodního okraje obrázku od horního okraje papíruVzdálenost obrázku od horního okraje papíruAlgoritmus rozptylu:Velikost rozptylu:DěleníVytvořit _náhledOpravdu chcete přijít o tyto změny?Opravdu jej chcete přepsat?Dokument nenalezenKreslit okolo obrázku hranici hrotůObrazovky mají různé velikostiKreslím plamen...Kreslím mřížku...Kreslím bludiště...Volby kresbyKreslí čáry mezi řídicími body. Pouze během vytváření křivkyVrhat stínBěhem čtení soubor skončilData EXIF budou ignorována._Zdvih:Povolit mapování vyvýše_ní_Povolit mapování prostředí_ErodovatRozšíři_tKusy mají zaoblené stranyKusy mají rovné stranyS vlivem na hranyDetekce hranDetekují se hrany...Ztmavení hran:HranyÚpravyÚpravy informace o oblastech...Úprava plamenuÚpravy informace o mapování...Upravit objektUpravit informace o oblasti...Změnit jméno fraktáluÚpravit informace o mapěUpravit informaci o vybrané oblastiÚpravy objektu pouze pro čtení - nebude možné je zapsatEfektový kanálEfektový operátorReliéfVy_rýt..._Obrázek prostředí:Povolit vyhl_azováníPovolení/zákaz mapování vyvýšení (hloubka obrázku)Povolit/zakázat mapování prostředí (odraz)Povolení/zákaz náhledu vysoké kvalityPovolení/zákaz odstraňování zubatých hran (vyhlazování)Povolení/zákaz náhledu na změny v reálném časeObrázek v zapouzdřeném PostScriptuZapouzdření dat:EndPage selhaloRytinaRyji...Zadejte název zkopírované P-zářeZadejte název pro nové P-zářeZadejte název souboru PPD pro vaši tiskárnuZadejte příkaz pro tisk na vaši tiskárnu. Poznámka: Neodstraňujte prosím z příkazu parametry `-l' nebo `-oraw', jinak tisk pravděpodobně selže!Zadejte název, kterým chcete pojmenovat tuto logickou tiskárnuCelá vrstvaCitlivost na prostředí:Použitý obrázek prostředíChyba při otevírání souboru FITSChyba při zápisu obrázku indexovaného/v šedíchChyba při zápisu rgb obrázkuChyba při zachytávání ukazateleChyba v souboru stopy GIMPu '%s'Chyba v souboru GIMP kolony stop.Chyba při získávání ID vrstevChyba při získávání snímku obrazovkyChyba při otevírání souboruChyba při otevírání souboru '%s'Chyba při čtení hlavičky souboru BMP z '%s'Chyba při čtení souboruChyba při spouštění ghostscriptu (%s)Chyba při spouštění ghostscriptu: %sChyba při pokusu otevřít dočasný soubor '%s' pro načtení parazita. Chyba při pokusu uložit obrázek jako parazita: nemohu připojit parazita k drawable. Chyba při čtení '%s'. Poškozený soubor?Chyba při ukládání '%s'. Nemohu uložit obrázek.Chyba při zápisu výstupního souboru.Chyba: Nemohu načíst soubor XJT vlastností '%s'.Chyba: Soubor XJT vlastností '%s' je prázdný.Chyba: nemohu načíst parametryChyba: nejedná se o CML soubor s parametry.Rovnoměrně rozloženéExp.:Náhled exportuExtrahovat kanályBarva popředíSoubor FITS nepřechovává zobrazitelná dataFITS zápis neumí zpracovat obrázky s alfa kanálySou_bor_První barva:_Intenzita záře:FaktorNemohu otevřít soubor P-záře '%s': %sNemohu uložit soubor PPM '%s': %sNemohu zapsat soubor P-záře '%s': %sRychlé celočíselnéNejrychlejší a nejjasnější barvy pro text a čárovou grafikuZaobleníSouborSoubor "%s" zapsán.Soubor '%s' zřejmě není soubor IFS Fractal.Soubor '%s' existuje. Přepsat jej?Soubor '%s' je poškozený. diff -uraN gimp-2.2.4/po-plug-ins/cs.po gimp-2.2.5/po-plug-ins/cs.po --- gimp-2.2.4/po-plug-ins/cs.po 2005-02-22 23:12:25.000000000 +0100 +++ gimp-2.2.5/po-plug-ins/cs.po 2005-04-09 23:09:11.000000000 +0200 @@ -1,16 +1,16 @@ # Czech translation of GIMP plugins # Copyright (C) 2001,2003 Free Software Foundation, Inc. -# Copyright (C) 2003, 2004 Miloslav Trmac +# Copyright (C) 2003, 2004, 2005 Miloslav Trmac # Stanislav Brabec , 1999-2001 # Michal Bukovjan , 2002,2003. -# Miloslav Trmac , 2003, 2004. +# Miloslav Trmac , 2003, 2004, 2005. # msgid "" msgstr "" "Project-Id-Version: gimp-plug-ins VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-02-22 23:04+0100\n" -"PO-Revision-Date: 2004-12-26 23:48+0100\n" +"POT-Creation-Date: 2005-04-09 21:56+0200\n" +"PO-Revision-Date: 2005-03-22 09:31+0100\n" "Last-Translator: Miloslav Trmac \n" "Language-Team: Czech \n" "MIME-Version: 1.0\n" @@ -386,7 +386,7 @@ #: ../plug-ins/common/pat.c:433 ../plug-ins/common/pcx.c:585 #: ../plug-ins/common/pix.c:515 ../plug-ins/common/png.c:1178 #: ../plug-ins/common/pnm.c:809 ../plug-ins/common/postscript.c:1123 -#: ../plug-ins/common/psd_save.c:1588 ../plug-ins/common/raw.c:517 +#: ../plug-ins/common/psd_save.c:1336 ../plug-ins/common/raw.c:517 #: ../plug-ins/common/raw.c:544 ../plug-ins/common/spheredesigner.c:2088 #: ../plug-ins/common/sunras.c:513 ../plug-ins/common/tga.c:1030 #: ../plug-ins/common/tiff.c:1810 ../plug-ins/common/xbm.c:996 @@ -1225,35 +1225,36 @@ #: ../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 +#: ../plug-ins/bmp/bmpread.c:207 ../plug-ins/bmp/bmpread.c:307 +#: ../plug-ins/bmp/bmpread.c:348 #, c-format msgid "'%s' is not a valid BMP file" msgstr "'%s' není platný soubor BMP" #: ../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 +#: ../plug-ins/bmp/bmpread.c:300 ../plug-ins/bmp/bmpread.c:313 +#: ../plug-ins/bmp/bmpread.c:319 #, c-format msgid "Error reading BMP file header from '%s'" msgstr "Chyba při čtení hlavičky souboru BMP z '%s'" -#: ../plug-ins/bmp/bmpread.c:442 ../plug-ins/bmp/bmpread.c:477 +#: ../plug-ins/bmp/bmpread.c:450 ../plug-ins/bmp/bmpread.c:485 msgid "Unrecognized or invalid BMP compression format." msgstr "Neznámý nebo neplatný formát komprese BMP." #. #. * Create the "background" layer to hold the image... #. -#: ../plug-ins/bmp/bmpread.c:482 ../plug-ins/common/CEL.c:357 +#: ../plug-ins/bmp/bmpread.c:490 ../plug-ins/common/CEL.c:357 #: ../plug-ins/common/CEL.c:360 ../plug-ins/common/blinds.c:273 #: ../plug-ins/common/compose.c:625 ../plug-ins/common/decompose.c:595 #: ../plug-ins/common/dicom.c:442 ../plug-ins/common/film.c:946 -#: ../plug-ins/common/gifload.c:865 ../plug-ins/common/jpeg.c:1113 +#: ../plug-ins/common/gifload.c:864 ../plug-ins/common/jpeg.c:1113 #: ../plug-ins/common/jpeg.c:2474 ../plug-ins/common/pcx.c:334 #: ../plug-ins/common/pcx.c:340 ../plug-ins/common/pix.c:374 #: ../plug-ins/common/png.c:808 ../plug-ins/common/pnm.c:517 -#: ../plug-ins/common/psd.c:2173 ../plug-ins/common/raw.c:677 +#: ../plug-ins/common/psd.c:2174 ../plug-ins/common/raw.c:677 #: ../plug-ins/common/smooth_palette.c:257 ../plug-ins/common/sunras.c:925 #: ../plug-ins/common/tga.c:929 ../plug-ins/common/tiff.c:833 #: ../plug-ins/common/tile.c:266 ../plug-ins/common/winclipboard.c:579 @@ -1284,12 +1285,12 @@ #: ../plug-ins/common/jpeg.c:1453 ../plug-ins/common/pat.c:438 #: ../plug-ins/common/pcx.c:545 ../plug-ins/common/pix.c:521 #: ../plug-ins/common/png.c:1185 ../plug-ins/common/pnm.c:814 -#: ../plug-ins/common/postscript.c:1128 ../plug-ins/common/psd_save.c:1593 +#: ../plug-ins/common/postscript.c:1128 ../plug-ins/common/psd_save.c:1341 #: ../plug-ins/common/sunras.c:518 ../plug-ins/common/tga.c:1035 #: ../plug-ins/common/tiff.c:1815 ../plug-ins/common/xbm.c:1001 #: ../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:957 +#: ../plug-ins/sgi/sgi.c:545 ../plug-ins/winicon/icosave.c:977 #: ../plug-ins/xjt/xjt.c:1682 #, c-format msgid "Saving '%s'..." @@ -1625,7 +1626,7 @@ msgstr "Odstín" #: ../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 +#: ../plug-ins/common/decompose.c:144 ../plug-ins/rcm/rcm_dialog.c:548 msgid "Saturation" msgstr "Sytost" @@ -2432,24 +2433,24 @@ msgid "Color to _Alpha..." msgstr "Barva do _alfy..." -#: ../plug-ins/common/colortoalpha.c:181 +#: ../plug-ins/common/colortoalpha.c:187 msgid "Removing color..." msgstr "Odstraňuje se barva..." -#: ../plug-ins/common/colortoalpha.c:377 +#: ../plug-ins/common/colortoalpha.c:380 msgid "Color to Alpha" msgstr "Barva do alfy" -#: ../plug-ins/common/colortoalpha.c:402 ../plug-ins/common/mapcolor.c:424 +#: ../plug-ins/common/colortoalpha.c:405 ../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:406 +#: ../plug-ins/common/colortoalpha.c:409 msgid "Color to Alpha Color Picker" msgstr "Barevná pipeta barvy do alfy" -#: ../plug-ins/common/colortoalpha.c:420 +#: ../plug-ins/common/colortoalpha.c:423 msgid "to alpha" msgstr "do alfy" @@ -2472,13 +2473,13 @@ msgstr "HSV" #. Gray: Circle: Spinbutton 1 -#: ../plug-ins/common/compose.c:148 ../plug-ins/rcm/rcm_dialog.c:452 +#: ../plug-ins/common/compose.c:148 ../plug-ins/rcm/rcm_dialog.c:459 msgid "Hue:" msgstr "Odstín:" #. Gray: Circle: Spinbutton 2 #: ../plug-ins/common/compose.c:149 ../plug-ins/print/gimp_color_window.c:364 -#: ../plug-ins/rcm/rcm_dialog.c:479 +#: ../plug-ins/rcm/rcm_dialog.c:486 msgid "Saturation:" msgstr "Sytost:" @@ -3093,15 +3094,15 @@ msgid "Deinterlace..." msgstr "Odstranit prokládání..." -#: ../plug-ins/common/deinterlace.c:315 +#: ../plug-ins/common/deinterlace.c:324 msgid "Deinterlace" msgstr "Odstranění prokládání" -#: ../plug-ins/common/deinterlace.c:340 +#: ../plug-ins/common/deinterlace.c:349 msgid "Keep o_dd fields" msgstr "Zachovat _lichá pole" -#: ../plug-ins/common/deinterlace.c:341 +#: ../plug-ins/common/deinterlace.c:350 msgid "Keep _even fields" msgstr "Zachovat _sudá pole" @@ -3500,7 +3501,7 @@ #. Create selection #: ../plug-ins/common/film.c:1166 ../plug-ins/imagemap/imap_selection.c:400 -#: ../plug-ins/rcm/rcm_dialog.c:158 +#: ../plug-ins/rcm/rcm_dialog.c:165 msgid "Selection" msgstr "Výběr" @@ -4036,23 +4037,23 @@ msgid "Non-square pixels. Image might look squashed." msgstr "Nečtvercové pixely. Obrázek může vypadat rozmáčkle." -#: ../plug-ins/common/gifload.c:867 +#: ../plug-ins/common/gifload.c:866 #, c-format msgid "Background (%d%s)" msgstr "Pozadí (%d%s)" -#: ../plug-ins/common/gifload.c:915 ../plug-ins/common/iwarp.c:783 +#: ../plug-ins/common/gifload.c:914 ../plug-ins/common/iwarp.c:783 #: ../plug-ins/common/iwarp.c:817 #, c-format msgid "Frame %d" msgstr "Políčko %d" -#: ../plug-ins/common/gifload.c:917 +#: ../plug-ins/common/gifload.c:916 #, c-format msgid "Frame %d (%d%s)" msgstr "Políčko %d (%d%s)" -#: ../plug-ins/common/gifload.c:947 +#: ../plug-ins/common/gifload.c:946 #, c-format msgid "" "GIF: Undocumented GIF composite type %d is not handled. Animation might not " @@ -5835,7 +5836,7 @@ msgid "B/W" msgstr "Č/B" -#: ../plug-ins/common/postscript.c:3003 ../plug-ins/rcm/rcm_dialog.c:404 +#: ../plug-ins/common/postscript.c:3003 ../plug-ins/rcm/rcm_dialog.c:411 msgid "Gray" msgstr "Šedá" @@ -5926,11 +5927,11 @@ msgid "Invalid UTF-8 string in PSD file" msgstr "Neplatný řetězec UTF-8 v souboru PSD" -#: ../plug-ins/common/psd_save.c:181 +#: ../plug-ins/common/psd_save.c:192 msgid "Photoshop image" msgstr "Obrázek Photoshopu" -#: ../plug-ins/common/psd_save.c:1564 +#: ../plug-ins/common/psd_save.c:1312 #, c-format msgid "" "Unable to save '%s'. The psd file format does not support images that are " @@ -5939,7 +5940,7 @@ "Nemohu uložit '%s'. Formát souborů psd nepodporuje obrázky, které jsou širší " "nebo vyšší než 30000 pixelů." -#: ../plug-ins/common/psd_save.c:1576 +#: ../plug-ins/common/psd_save.c:1324 #, c-format msgid "" "Unable to save '%s'. The psd file format does not support images with " @@ -8779,9 +8780,8 @@ msgstr "Počet bodů hvězdy" #: ../plug-ins/gfig/gfig-stock.c:41 -#, fuzzy msgid "Create bezier curve" -msgstr "Vytvořit kružnici" +msgstr "Vytvořit Beziérovu křivku" #: ../plug-ins/gfig/gfig.c:132 msgid "_Gfig..." @@ -11412,87 +11412,87 @@ msgid "Rotating the colormap..." msgstr "Rotuje se barevné mapa..." -#: ../plug-ins/rcm/rcm_dialog.c:114 +#: ../plug-ins/rcm/rcm_dialog.c:119 msgid "Original" msgstr "Původní" -#: ../plug-ins/rcm/rcm_dialog.c:127 +#: ../plug-ins/rcm/rcm_dialog.c:133 msgid "Rotated" msgstr "Rotovaný" -#: ../plug-ins/rcm/rcm_dialog.c:140 +#: ../plug-ins/rcm/rcm_dialog.c:147 msgid "Continuous update" msgstr "Plynulá aktualizace" -#: ../plug-ins/rcm/rcm_dialog.c:153 +#: ../plug-ins/rcm/rcm_dialog.c:160 msgid "Area:" msgstr "Oblast:" -#: ../plug-ins/rcm/rcm_dialog.c:157 +#: ../plug-ins/rcm/rcm_dialog.c:164 msgid "Entire Layer" msgstr "Celá vrstva" -#: ../plug-ins/rcm/rcm_dialog.c:159 +#: ../plug-ins/rcm/rcm_dialog.c:166 msgid "Context" msgstr "Kontext" #. spinbutton 1 -#: ../plug-ins/rcm/rcm_dialog.c:284 ../plug-ins/rcm/rcm_dialog.c:362 +#: ../plug-ins/rcm/rcm_dialog.c:291 ../plug-ins/rcm/rcm_dialog.c:369 msgid "From" msgstr "Z" #. spinbutton 2 -#: ../plug-ins/rcm/rcm_dialog.c:310 ../plug-ins/rcm/rcm_dialog.c:363 +#: ../plug-ins/rcm/rcm_dialog.c:317 ../plug-ins/rcm/rcm_dialog.c:370 msgid "To" msgstr "Do" #. * Gray: Operation-Mode * -#: ../plug-ins/rcm/rcm_dialog.c:499 +#: ../plug-ins/rcm/rcm_dialog.c:506 msgid "Gray Mode" msgstr "Šedý režim" #. Gray: Operation-Mode: two radio buttons -#: ../plug-ins/rcm/rcm_dialog.c:508 +#: ../plug-ins/rcm/rcm_dialog.c:515 msgid "Treat as this" msgstr "Zpracovat jako toto" -#: ../plug-ins/rcm/rcm_dialog.c:520 +#: ../plug-ins/rcm/rcm_dialog.c:527 msgid "Change to this" msgstr "Změnit do tohoto" #. * Gray: What is gray? * -#: ../plug-ins/rcm/rcm_dialog.c:533 +#: ../plug-ins/rcm/rcm_dialog.c:540 msgid "Gray Threshold" msgstr "Práh šedé" #. * Misc: Used unit selection * -#: ../plug-ins/rcm/rcm_dialog.c:572 ../plug-ins/rcm/rcm_dialog.c:676 +#: ../plug-ins/rcm/rcm_dialog.c:579 ../plug-ins/rcm/rcm_dialog.c:683 msgid "Units" msgstr "Jednotky" #. Misc: Used unit selection: 3 radio buttons -#: ../plug-ins/rcm/rcm_dialog.c:581 +#: ../plug-ins/rcm/rcm_dialog.c:588 msgid "Radians" msgstr "Radiány" -#: ../plug-ins/rcm/rcm_dialog.c:593 +#: ../plug-ins/rcm/rcm_dialog.c:600 msgid "Radians/Pi" msgstr "Radiány/pí" -#: ../plug-ins/rcm/rcm_dialog.c:605 +#: ../plug-ins/rcm/rcm_dialog.c:612 msgid "Degrees" msgstr "Stupně" #. Create dialog -#: ../plug-ins/rcm/rcm_dialog.c:638 +#: ../plug-ins/rcm/rcm_dialog.c:645 msgid "Colormap Rotation" msgstr "Rotace barevná mapy" -#: ../plug-ins/rcm/rcm_dialog.c:670 +#: ../plug-ins/rcm/rcm_dialog.c:677 msgid "Main Options" msgstr "Hlavní volby" -#: ../plug-ins/rcm/rcm_dialog.c:673 +#: ../plug-ins/rcm/rcm_dialog.c:680 msgid "Gray Options" msgstr "Možnosti šedé" @@ -11575,27 +11575,27 @@ msgid "Transferring TWAIN data..." msgstr "Přenáším se data TWAIN..." -#: ../plug-ins/winicon/icodialog.c:123 +#: ../plug-ins/winicon/icodialog.c:89 msgid "1 bpp, 1-bit alpha, 2-slot palette" msgstr "1 bpp, jednobitová alfa, dvouprvková paleta" -#: ../plug-ins/winicon/icodialog.c:124 +#: ../plug-ins/winicon/icodialog.c:90 msgid "4 bpp, 1-bit alpha, 16-slot palette" msgstr "4 bpp, jednobitová alfa, šestnáctiprvková paleta" -#: ../plug-ins/winicon/icodialog.c:125 +#: ../plug-ins/winicon/icodialog.c:91 msgid "8 bpp, 1-bit alpha, 256-slot palette" msgstr "8 bpp, jednobitová alfa, dvěstěpadesátišestiprvková paleta" -#: ../plug-ins/winicon/icodialog.c:126 +#: ../plug-ins/winicon/icodialog.c:92 msgid "32 bpp, 8-bit alpha, no palette" msgstr "32 bpp, osmibitová alpha, bez palety" -#: ../plug-ins/winicon/icodialog.c:151 +#: ../plug-ins/winicon/icodialog.c:117 msgid "GIMP Windows Icon Plugin" msgstr "Zásuvný modul GIMPu pro ikony Windows" -#: ../plug-ins/winicon/icodialog.c:172 +#: ../plug-ins/winicon/icodialog.c:138 msgid "Icon details" msgstr "Podrobnosti o ikoně" @@ -11604,7 +11604,7 @@ msgid "Icon #%i" msgstr "Ikona č. %i" -#: ../plug-ins/winicon/icosave.c:943 +#: ../plug-ins/winicon/icosave.c:969 msgid "Windows icons cannot be higher or wider than 255 pixels." msgstr "Ikony Windows nemohou být vyšší ani širší než 255 pixelů." diff -uraN gimp-2.2.4/po-plug-ins/da.gmo gimp-2.2.5/po-plug-ins/da.gmo --- gimp-2.2.4/po-plug-ins/da.gmo 2005-02-22 23:12:42.000000000 +0100 +++ gimp-2.2.5/po-plug-ins/da.gmo 2005-04-09 23:09:28.000000000 +0200 @@ -307,7 +307,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: 2005-02-22 23:04+0100 +POT-Creation-Date: 2005-04-09 21:56+0200 PO-Revision-Date: 2005-02-15 22:58+0100 Last-Translator: Ole Laursen Language-Team: Danish diff -uraN gimp-2.2.4/po-plug-ins/da.po gimp-2.2.5/po-plug-ins/da.po --- gimp-2.2.4/po-plug-ins/da.po 2005-02-22 23:12:26.000000000 +0100 +++ gimp-2.2.5/po-plug-ins/da.po 2005-04-09 23:09:11.000000000 +0200 @@ -32,7 +32,7 @@ msgstr "" "Project-Id-Version: GIMP plug-ins /gnome-cvs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-02-22 23:04+0100\n" +"POT-Creation-Date: 2005-04-09 21:56+0200\n" "PO-Revision-Date: 2005-02-15 22:58+0100\n" "Last-Translator: Ole Laursen \n" "Language-Team: Danish \n" @@ -413,7 +413,7 @@ #: ../plug-ins/common/pat.c:433 ../plug-ins/common/pcx.c:585 #: ../plug-ins/common/pix.c:515 ../plug-ins/common/png.c:1178 #: ../plug-ins/common/pnm.c:809 ../plug-ins/common/postscript.c:1123 -#: ../plug-ins/common/psd_save.c:1588 ../plug-ins/common/raw.c:517 +#: ../plug-ins/common/psd_save.c:1336 ../plug-ins/common/raw.c:517 #: ../plug-ins/common/raw.c:544 ../plug-ins/common/spheredesigner.c:2088 #: ../plug-ins/common/sunras.c:513 ../plug-ins/common/tga.c:1030 #: ../plug-ins/common/tiff.c:1810 ../plug-ins/common/xbm.c:996 @@ -1312,35 +1312,36 @@ #: ../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 +#: ../plug-ins/bmp/bmpread.c:207 ../plug-ins/bmp/bmpread.c:307 +#: ../plug-ins/bmp/bmpread.c:348 #, c-format msgid "'%s' is not a valid BMP file" msgstr "'%s' er ikke en gyldig BMP-fil" #: ../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 +#: ../plug-ins/bmp/bmpread.c:300 ../plug-ins/bmp/bmpread.c:313 +#: ../plug-ins/bmp/bmpread.c:319 #, c-format msgid "Error reading BMP file header from '%s'" msgstr "Fejl ved læsning af BMP-filens hoved fra '%s'" -#: ../plug-ins/bmp/bmpread.c:442 ../plug-ins/bmp/bmpread.c:477 +#: ../plug-ins/bmp/bmpread.c:450 ../plug-ins/bmp/bmpread.c:485 msgid "Unrecognized or invalid BMP compression format." msgstr "" #. #. * Create the "background" layer to hold the image... #. -#: ../plug-ins/bmp/bmpread.c:482 ../plug-ins/common/CEL.c:357 +#: ../plug-ins/bmp/bmpread.c:490 ../plug-ins/common/CEL.c:357 #: ../plug-ins/common/CEL.c:360 ../plug-ins/common/blinds.c:273 #: ../plug-ins/common/compose.c:625 ../plug-ins/common/decompose.c:595 #: ../plug-ins/common/dicom.c:442 ../plug-ins/common/film.c:946 -#: ../plug-ins/common/gifload.c:865 ../plug-ins/common/jpeg.c:1113 +#: ../plug-ins/common/gifload.c:864 ../plug-ins/common/jpeg.c:1113 #: ../plug-ins/common/jpeg.c:2474 ../plug-ins/common/pcx.c:334 #: ../plug-ins/common/pcx.c:340 ../plug-ins/common/pix.c:374 #: ../plug-ins/common/png.c:808 ../plug-ins/common/pnm.c:517 -#: ../plug-ins/common/psd.c:2173 ../plug-ins/common/raw.c:677 +#: ../plug-ins/common/psd.c:2174 ../plug-ins/common/raw.c:677 #: ../plug-ins/common/smooth_palette.c:257 ../plug-ins/common/sunras.c:925 #: ../plug-ins/common/tga.c:929 ../plug-ins/common/tiff.c:833 #: ../plug-ins/common/tile.c:266 ../plug-ins/common/winclipboard.c:579 @@ -1371,12 +1372,12 @@ #: ../plug-ins/common/jpeg.c:1453 ../plug-ins/common/pat.c:438 #: ../plug-ins/common/pcx.c:545 ../plug-ins/common/pix.c:521 #: ../plug-ins/common/png.c:1185 ../plug-ins/common/pnm.c:814 -#: ../plug-ins/common/postscript.c:1128 ../plug-ins/common/psd_save.c:1593 +#: ../plug-ins/common/postscript.c:1128 ../plug-ins/common/psd_save.c:1341 #: ../plug-ins/common/sunras.c:518 ../plug-ins/common/tga.c:1035 #: ../plug-ins/common/tiff.c:1815 ../plug-ins/common/xbm.c:1001 #: ../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:957 +#: ../plug-ins/sgi/sgi.c:545 ../plug-ins/winicon/icosave.c:977 #: ../plug-ins/xjt/xjt.c:1682 #, c-format msgid "Saving '%s'..." @@ -1733,7 +1734,7 @@ msgstr "Farvetone" #: ../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 +#: ../plug-ins/common/decompose.c:144 ../plug-ins/rcm/rcm_dialog.c:548 msgid "Saturation" msgstr "Mætning" @@ -2631,24 +2632,24 @@ msgid "Color to _Alpha..." msgstr "Farve til alfa" -#: ../plug-ins/common/colortoalpha.c:181 +#: ../plug-ins/common/colortoalpha.c:187 msgid "Removing color..." msgstr "Fjerner farve..." -#: ../plug-ins/common/colortoalpha.c:377 +#: ../plug-ins/common/colortoalpha.c:380 msgid "Color to Alpha" msgstr "Farve til alfa" -#: ../plug-ins/common/colortoalpha.c:402 ../plug-ins/common/mapcolor.c:424 +#: ../plug-ins/common/colortoalpha.c:405 ../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:406 +#: ../plug-ins/common/colortoalpha.c:409 msgid "Color to Alpha Color Picker" msgstr "Farve til alfa-farveopsnapper" -#: ../plug-ins/common/colortoalpha.c:420 +#: ../plug-ins/common/colortoalpha.c:423 #, fuzzy msgid "to alpha" msgstr "til alfa" @@ -2672,13 +2673,13 @@ msgstr "HSV" #. Gray: Circle: Spinbutton 1 -#: ../plug-ins/common/compose.c:148 ../plug-ins/rcm/rcm_dialog.c:452 +#: ../plug-ins/common/compose.c:148 ../plug-ins/rcm/rcm_dialog.c:459 msgid "Hue:" msgstr "Farvetone:" #. Gray: Circle: Spinbutton 2 #: ../plug-ins/common/compose.c:149 ../plug-ins/print/gimp_color_window.c:364 -#: ../plug-ins/rcm/rcm_dialog.c:479 +#: ../plug-ins/rcm/rcm_dialog.c:486 msgid "Saturation:" msgstr "Mætning:" @@ -3319,16 +3320,16 @@ msgid "Deinterlace..." msgstr "Fjerner linjespring..." -#: ../plug-ins/common/deinterlace.c:315 +#: ../plug-ins/common/deinterlace.c:324 msgid "Deinterlace" msgstr "Fjern linjespring" -#: ../plug-ins/common/deinterlace.c:340 +#: ../plug-ins/common/deinterlace.c:349 #, fuzzy msgid "Keep o_dd fields" msgstr "Behold _ulige linjer" -#: ../plug-ins/common/deinterlace.c:341 +#: ../plug-ins/common/deinterlace.c:350 #, fuzzy msgid "Keep _even fields" msgstr "Behold _lige linjer" @@ -3772,7 +3773,7 @@ #. Create selection #: ../plug-ins/common/film.c:1166 ../plug-ins/imagemap/imap_selection.c:400 -#: ../plug-ins/rcm/rcm_dialog.c:158 +#: ../plug-ins/rcm/rcm_dialog.c:165 msgid "Selection" msgstr "Markering" @@ -4349,23 +4350,23 @@ msgid "Non-square pixels. Image might look squashed." msgstr "Ikke-kvadratiske billedpunkter. Billedet kan se sammentrykket ud." -#: ../plug-ins/common/gifload.c:867 +#: ../plug-ins/common/gifload.c:866 #, c-format msgid "Background (%d%s)" msgstr "Baggrund (%d%s)" -#: ../plug-ins/common/gifload.c:915 ../plug-ins/common/iwarp.c:783 +#: ../plug-ins/common/gifload.c:914 ../plug-ins/common/iwarp.c:783 #: ../plug-ins/common/iwarp.c:817 #, c-format msgid "Frame %d" msgstr "Billede %d" -#: ../plug-ins/common/gifload.c:917 +#: ../plug-ins/common/gifload.c:916 #, c-format msgid "Frame %d (%d%s)" msgstr "Billede %d (%d%s)" -#: ../plug-ins/common/gifload.c:947 +#: ../plug-ins/common/gifload.c:946 #, c-format msgid "" "GIF: Undocumented GIF composite type %d is not handled. Animation might not " @@ -6296,7 +6297,7 @@ msgid "B/W" msgstr "S/H" -#: ../plug-ins/common/postscript.c:3003 ../plug-ins/rcm/rcm_dialog.c:404 +#: ../plug-ins/common/postscript.c:3003 ../plug-ins/rcm/rcm_dialog.c:411 msgid "Gray" msgstr "Grå" @@ -6392,18 +6393,18 @@ msgid "Invalid UTF-8 string in PSD file" msgstr "Ugyldig UTF-8-tekst i PSD-fil" -#: ../plug-ins/common/psd_save.c:181 +#: ../plug-ins/common/psd_save.c:192 msgid "Photoshop image" msgstr "" -#: ../plug-ins/common/psd_save.c:1564 +#: ../plug-ins/common/psd_save.c:1312 #, c-format msgid "" "Unable to save '%s'. The psd file format does not support images that are " "more than 30000 pixels wide or tall." msgstr "" -#: ../plug-ins/common/psd_save.c:1576 +#: ../plug-ins/common/psd_save.c:1324 #, c-format msgid "" "Unable to save '%s'. The psd file format does not support images with " @@ -12202,89 +12203,89 @@ msgid "Rotating the colormap..." msgstr "Roterer farver..." -#: ../plug-ins/rcm/rcm_dialog.c:114 +#: ../plug-ins/rcm/rcm_dialog.c:119 msgid "Original" msgstr "Oprindelig" -#: ../plug-ins/rcm/rcm_dialog.c:127 +#: ../plug-ins/rcm/rcm_dialog.c:133 msgid "Rotated" msgstr "Roteret" -#: ../plug-ins/rcm/rcm_dialog.c:140 +#: ../plug-ins/rcm/rcm_dialog.c:147 msgid "Continuous update" msgstr "Fortløbende opdatering" -#: ../plug-ins/rcm/rcm_dialog.c:153 +#: ../plug-ins/rcm/rcm_dialog.c:160 msgid "Area:" msgstr "Areal:" -#: ../plug-ins/rcm/rcm_dialog.c:157 +#: ../plug-ins/rcm/rcm_dialog.c:164 msgid "Entire Layer" msgstr "Hele laget" -#: ../plug-ins/rcm/rcm_dialog.c:159 +#: ../plug-ins/rcm/rcm_dialog.c:166 msgid "Context" msgstr "Kontekst" #. spinbutton 1 -#: ../plug-ins/rcm/rcm_dialog.c:284 ../plug-ins/rcm/rcm_dialog.c:362 +#: ../plug-ins/rcm/rcm_dialog.c:291 ../plug-ins/rcm/rcm_dialog.c:369 msgid "From" msgstr "Fra" #. spinbutton 2 -#: ../plug-ins/rcm/rcm_dialog.c:310 ../plug-ins/rcm/rcm_dialog.c:363 +#: ../plug-ins/rcm/rcm_dialog.c:317 ../plug-ins/rcm/rcm_dialog.c:370 msgid "To" msgstr "Til" #. * Gray: Operation-Mode * -#: ../plug-ins/rcm/rcm_dialog.c:499 +#: ../plug-ins/rcm/rcm_dialog.c:506 #, fuzzy msgid "Gray Mode" msgstr "Farvetilstand" #. Gray: Operation-Mode: two radio buttons -#: ../plug-ins/rcm/rcm_dialog.c:508 +#: ../plug-ins/rcm/rcm_dialog.c:515 msgid "Treat as this" msgstr "Behandl som dette" -#: ../plug-ins/rcm/rcm_dialog.c:520 +#: ../plug-ins/rcm/rcm_dialog.c:527 msgid "Change to this" msgstr "Ændr til dette" #. * Gray: What is gray? * -#: ../plug-ins/rcm/rcm_dialog.c:533 +#: ../plug-ins/rcm/rcm_dialog.c:540 #, fuzzy msgid "Gray Threshold" msgstr "_Grøn tærskel:" #. * Misc: Used unit selection * -#: ../plug-ins/rcm/rcm_dialog.c:572 ../plug-ins/rcm/rcm_dialog.c:676 +#: ../plug-ins/rcm/rcm_dialog.c:579 ../plug-ins/rcm/rcm_dialog.c:683 msgid "Units" msgstr "Enheder" #. Misc: Used unit selection: 3 radio buttons -#: ../plug-ins/rcm/rcm_dialog.c:581 +#: ../plug-ins/rcm/rcm_dialog.c:588 msgid "Radians" msgstr "Radianer" -#: ../plug-ins/rcm/rcm_dialog.c:593 +#: ../plug-ins/rcm/rcm_dialog.c:600 msgid "Radians/Pi" msgstr "Radianer/pi" -#: ../plug-ins/rcm/rcm_dialog.c:605 +#: ../plug-ins/rcm/rcm_dialog.c:612 msgid "Degrees" msgstr "Grader" #. Create dialog -#: ../plug-ins/rcm/rcm_dialog.c:638 +#: ../plug-ins/rcm/rcm_dialog.c:645 msgid "Colormap Rotation" msgstr "Farverotation" -#: ../plug-ins/rcm/rcm_dialog.c:670 +#: ../plug-ins/rcm/rcm_dialog.c:677 msgid "Main Options" msgstr "Hovedindstillinger" -#: ../plug-ins/rcm/rcm_dialog.c:673 +#: ../plug-ins/rcm/rcm_dialog.c:680 #, fuzzy msgid "Gray Options" msgstr "Generelle indstillinger" @@ -12373,27 +12374,27 @@ msgid "Transferring TWAIN data..." msgstr "Overfører TWAIN-data..." -#: ../plug-ins/winicon/icodialog.c:123 +#: ../plug-ins/winicon/icodialog.c:89 msgid "1 bpp, 1-bit alpha, 2-slot palette" msgstr "" -#: ../plug-ins/winicon/icodialog.c:124 +#: ../plug-ins/winicon/icodialog.c:90 msgid "4 bpp, 1-bit alpha, 16-slot palette" msgstr "" -#: ../plug-ins/winicon/icodialog.c:125 +#: ../plug-ins/winicon/icodialog.c:91 msgid "8 bpp, 1-bit alpha, 256-slot palette" msgstr "" -#: ../plug-ins/winicon/icodialog.c:126 +#: ../plug-ins/winicon/icodialog.c:92 msgid "32 bpp, 8-bit alpha, no palette" msgstr "" -#: ../plug-ins/winicon/icodialog.c:151 +#: ../plug-ins/winicon/icodialog.c:117 msgid "GIMP Windows Icon Plugin" msgstr "" -#: ../plug-ins/winicon/icodialog.c:172 +#: ../plug-ins/winicon/icodialog.c:138 msgid "Icon details" msgstr "Ikondetaljer" @@ -12402,7 +12403,7 @@ msgid "Icon #%i" msgstr "Ikon nr. %i" -#: ../plug-ins/winicon/icosave.c:943 +#: ../plug-ins/winicon/icosave.c:969 msgid "Windows icons cannot be higher or wider than 255 pixels." msgstr "" diff -uraN gimp-2.2.4/po-plug-ins/de.gmo gimp-2.2.5/po-plug-ins/de.gmo --- gimp-2.2.4/po-plug-ins/de.gmo 2005-02-22 23:12:42.000000000 +0100 +++ gimp-2.2.5/po-plug-ins/de.gmo 2005-04-09 23:09:29.000000000 +0200 @@ -463,7 +463,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: 2005-02-22 23:04+0100 +POT-Creation-Date: 2005-04-09 21:56+0200 PO-Revision-Date: 2005-01-28 18:36+0100 Last-Translator: Sven Neumann Language-Team: German diff -uraN gimp-2.2.4/po-plug-ins/de.po gimp-2.2.5/po-plug-ins/de.po --- gimp-2.2.4/po-plug-ins/de.po 2005-02-22 23:12:26.000000000 +0100 +++ gimp-2.2.5/po-plug-ins/de.po 2005-04-09 23:09:12.000000000 +0200 @@ -14,7 +14,7 @@ msgstr "" "Project-Id-Version: GIMP 2.2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-02-22 23:04+0100\n" +"POT-Creation-Date: 2005-04-09 21:56+0200\n" "PO-Revision-Date: 2005-01-28 18:36+0100\n" "Last-Translator: Sven Neumann \n" "Language-Team: German \n" @@ -396,7 +396,7 @@ #: ../plug-ins/common/pat.c:433 ../plug-ins/common/pcx.c:585 #: ../plug-ins/common/pix.c:515 ../plug-ins/common/png.c:1178 #: ../plug-ins/common/pnm.c:809 ../plug-ins/common/postscript.c:1123 -#: ../plug-ins/common/psd_save.c:1588 ../plug-ins/common/raw.c:517 +#: ../plug-ins/common/psd_save.c:1336 ../plug-ins/common/raw.c:517 #: ../plug-ins/common/raw.c:544 ../plug-ins/common/spheredesigner.c:2088 #: ../plug-ins/common/sunras.c:513 ../plug-ins/common/tga.c:1030 #: ../plug-ins/common/tiff.c:1810 ../plug-ins/common/xbm.c:996 @@ -1239,35 +1239,36 @@ #: ../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 +#: ../plug-ins/bmp/bmpread.c:207 ../plug-ins/bmp/bmpread.c:307 +#: ../plug-ins/bmp/bmpread.c:348 #, c-format msgid "'%s' is not a valid BMP file" msgstr "'%s' ist keine gültige BMP-Datei" #: ../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 +#: ../plug-ins/bmp/bmpread.c:300 ../plug-ins/bmp/bmpread.c:313 +#: ../plug-ins/bmp/bmpread.c:319 #, c-format msgid "Error reading BMP file header from '%s'" msgstr "Fehler beim Lesen des BMP-headers aus '%s'" -#: ../plug-ins/bmp/bmpread.c:442 ../plug-ins/bmp/bmpread.c:477 +#: ../plug-ins/bmp/bmpread.c:450 ../plug-ins/bmp/bmpread.c:485 msgid "Unrecognized or invalid BMP compression format." msgstr "Unbekanntes oder ungültiges BMP-Komprimierungsformat." #. #. * Create the "background" layer to hold the image... #. -#: ../plug-ins/bmp/bmpread.c:482 ../plug-ins/common/CEL.c:357 +#: ../plug-ins/bmp/bmpread.c:490 ../plug-ins/common/CEL.c:357 #: ../plug-ins/common/CEL.c:360 ../plug-ins/common/blinds.c:273 #: ../plug-ins/common/compose.c:625 ../plug-ins/common/decompose.c:595 #: ../plug-ins/common/dicom.c:442 ../plug-ins/common/film.c:946 -#: ../plug-ins/common/gifload.c:865 ../plug-ins/common/jpeg.c:1113 +#: ../plug-ins/common/gifload.c:864 ../plug-ins/common/jpeg.c:1113 #: ../plug-ins/common/jpeg.c:2474 ../plug-ins/common/pcx.c:334 #: ../plug-ins/common/pcx.c:340 ../plug-ins/common/pix.c:374 #: ../plug-ins/common/png.c:808 ../plug-ins/common/pnm.c:517 -#: ../plug-ins/common/psd.c:2173 ../plug-ins/common/raw.c:677 +#: ../plug-ins/common/psd.c:2174 ../plug-ins/common/raw.c:677 #: ../plug-ins/common/smooth_palette.c:257 ../plug-ins/common/sunras.c:925 #: ../plug-ins/common/tga.c:929 ../plug-ins/common/tiff.c:833 #: ../plug-ins/common/tile.c:266 ../plug-ins/common/winclipboard.c:579 @@ -1298,12 +1299,12 @@ #: ../plug-ins/common/jpeg.c:1453 ../plug-ins/common/pat.c:438 #: ../plug-ins/common/pcx.c:545 ../plug-ins/common/pix.c:521 #: ../plug-ins/common/png.c:1185 ../plug-ins/common/pnm.c:814 -#: ../plug-ins/common/postscript.c:1128 ../plug-ins/common/psd_save.c:1593 +#: ../plug-ins/common/postscript.c:1128 ../plug-ins/common/psd_save.c:1341 #: ../plug-ins/common/sunras.c:518 ../plug-ins/common/tga.c:1035 #: ../plug-ins/common/tiff.c:1815 ../plug-ins/common/xbm.c:1001 #: ../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:957 +#: ../plug-ins/sgi/sgi.c:545 ../plug-ins/winicon/icosave.c:977 #: ../plug-ins/xjt/xjt.c:1682 #, c-format msgid "Saving '%s'..." @@ -1640,7 +1641,7 @@ msgstr "Farbton" #: ../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 +#: ../plug-ins/common/decompose.c:144 ../plug-ins/rcm/rcm_dialog.c:548 msgid "Saturation" msgstr "Sättigung" @@ -2446,24 +2447,24 @@ msgid "Color to _Alpha..." msgstr "Farbe zu _Transparenz..." -#: ../plug-ins/common/colortoalpha.c:181 +#: ../plug-ins/common/colortoalpha.c:187 msgid "Removing color..." msgstr "Entferne Farbe..." -#: ../plug-ins/common/colortoalpha.c:377 +#: ../plug-ins/common/colortoalpha.c:380 msgid "Color to Alpha" msgstr "Farbe zu Transparenz" -#: ../plug-ins/common/colortoalpha.c:402 ../plug-ins/common/mapcolor.c:424 +#: ../plug-ins/common/colortoalpha.c:405 ../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:406 +#: ../plug-ins/common/colortoalpha.c:409 msgid "Color to Alpha Color Picker" msgstr "Farbe zu Transparenz Farbauswahl" -#: ../plug-ins/common/colortoalpha.c:420 +#: ../plug-ins/common/colortoalpha.c:423 msgid "to alpha" msgstr "zu Transparenz" @@ -2486,13 +2487,13 @@ msgstr "HSV" #. Gray: Circle: Spinbutton 1 -#: ../plug-ins/common/compose.c:148 ../plug-ins/rcm/rcm_dialog.c:452 +#: ../plug-ins/common/compose.c:148 ../plug-ins/rcm/rcm_dialog.c:459 msgid "Hue:" msgstr "Farbton:" #. Gray: Circle: Spinbutton 2 #: ../plug-ins/common/compose.c:149 ../plug-ins/print/gimp_color_window.c:364 -#: ../plug-ins/rcm/rcm_dialog.c:479 +#: ../plug-ins/rcm/rcm_dialog.c:486 msgid "Saturation:" msgstr "Sättigung:" @@ -3110,15 +3111,15 @@ msgid "Deinterlace..." msgstr "Entflackern..." -#: ../plug-ins/common/deinterlace.c:315 +#: ../plug-ins/common/deinterlace.c:324 msgid "Deinterlace" msgstr "Entflackern" -#: ../plug-ins/common/deinterlace.c:340 +#: ../plug-ins/common/deinterlace.c:349 msgid "Keep o_dd fields" msgstr "Erhalte _Ungerade Zeilen" -#: ../plug-ins/common/deinterlace.c:341 +#: ../plug-ins/common/deinterlace.c:350 msgid "Keep _even fields" msgstr "Erhalte _Gerade Zeilen" @@ -3519,7 +3520,7 @@ #. Create selection #: ../plug-ins/common/film.c:1166 ../plug-ins/imagemap/imap_selection.c:400 -#: ../plug-ins/rcm/rcm_dialog.c:158 +#: ../plug-ins/rcm/rcm_dialog.c:165 msgid "Selection" msgstr "Auswahl" @@ -4059,23 +4060,23 @@ msgid "Non-square pixels. Image might look squashed." msgstr "Unquadratische Pixel. Das Bild könnte gequetscht aussehen." -#: ../plug-ins/common/gifload.c:867 +#: ../plug-ins/common/gifload.c:866 #, c-format msgid "Background (%d%s)" msgstr "Hintergrund (%d%s)" -#: ../plug-ins/common/gifload.c:915 ../plug-ins/common/iwarp.c:783 +#: ../plug-ins/common/gifload.c:914 ../plug-ins/common/iwarp.c:783 #: ../plug-ins/common/iwarp.c:817 #, c-format msgid "Frame %d" msgstr "Frame %d" -#: ../plug-ins/common/gifload.c:917 +#: ../plug-ins/common/gifload.c:916 #, c-format msgid "Frame %d (%d%s)" msgstr "Frame %d (%d%s)" -#: ../plug-ins/common/gifload.c:947 +#: ../plug-ins/common/gifload.c:946 #, c-format msgid "" "GIF: Undocumented GIF composite type %d is not handled. Animation might not " @@ -5874,7 +5875,7 @@ msgid "B/W" msgstr "S&W" -#: ../plug-ins/common/postscript.c:3003 ../plug-ins/rcm/rcm_dialog.c:404 +#: ../plug-ins/common/postscript.c:3003 ../plug-ins/rcm/rcm_dialog.c:411 msgid "Gray" msgstr "Grau" @@ -5965,11 +5966,11 @@ msgid "Invalid UTF-8 string in PSD file" msgstr "Ungültige UTF-8-Zeichenkette in PSD-Datei" -#: ../plug-ins/common/psd_save.c:181 +#: ../plug-ins/common/psd_save.c:192 msgid "Photoshop image" msgstr "Photoshop-Bild" -#: ../plug-ins/common/psd_save.c:1564 +#: ../plug-ins/common/psd_save.c:1312 #, c-format msgid "" "Unable to save '%s'. The psd file format does not support images that are " @@ -5978,7 +5979,7 @@ "»%s« konnte nicht gespeichert werden. Das PSD-Dateiformat unterstützt keine " "Bilder die höher oder breiter als 30.000 Pixel sind." -#: ../plug-ins/common/psd_save.c:1576 +#: ../plug-ins/common/psd_save.c:1324 #, c-format msgid "" "Unable to save '%s'. The psd file format does not support images with " @@ -11496,87 +11497,87 @@ msgid "Rotating the colormap..." msgstr "Drehe Farben..." -#: ../plug-ins/rcm/rcm_dialog.c:114 +#: ../plug-ins/rcm/rcm_dialog.c:119 msgid "Original" msgstr "Original" -#: ../plug-ins/rcm/rcm_dialog.c:127 +#: ../plug-ins/rcm/rcm_dialog.c:133 msgid "Rotated" msgstr "Gedreht" -#: ../plug-ins/rcm/rcm_dialog.c:140 +#: ../plug-ins/rcm/rcm_dialog.c:147 msgid "Continuous update" msgstr "Ständig neu berechnen" -#: ../plug-ins/rcm/rcm_dialog.c:153 +#: ../plug-ins/rcm/rcm_dialog.c:160 msgid "Area:" msgstr "Bereich:" -#: ../plug-ins/rcm/rcm_dialog.c:157 +#: ../plug-ins/rcm/rcm_dialog.c:164 msgid "Entire Layer" msgstr "Ganze Ebene" -#: ../plug-ins/rcm/rcm_dialog.c:159 +#: ../plug-ins/rcm/rcm_dialog.c:166 msgid "Context" msgstr "Umgebung" #. spinbutton 1 -#: ../plug-ins/rcm/rcm_dialog.c:284 ../plug-ins/rcm/rcm_dialog.c:362 +#: ../plug-ins/rcm/rcm_dialog.c:291 ../plug-ins/rcm/rcm_dialog.c:369 msgid "From" msgstr "Von" #. spinbutton 2 -#: ../plug-ins/rcm/rcm_dialog.c:310 ../plug-ins/rcm/rcm_dialog.c:363 +#: ../plug-ins/rcm/rcm_dialog.c:317 ../plug-ins/rcm/rcm_dialog.c:370 msgid "To" msgstr "Nach" #. * Gray: Operation-Mode * -#: ../plug-ins/rcm/rcm_dialog.c:499 +#: ../plug-ins/rcm/rcm_dialog.c:506 msgid "Gray Mode" msgstr "Graumodus" #. Gray: Operation-Mode: two radio buttons -#: ../plug-ins/rcm/rcm_dialog.c:508 +#: ../plug-ins/rcm/rcm_dialog.c:515 msgid "Treat as this" msgstr "Behandle als dies" -#: ../plug-ins/rcm/rcm_dialog.c:520 +#: ../plug-ins/rcm/rcm_dialog.c:527 msgid "Change to this" msgstr "Ändere in dies" #. * Gray: What is gray? * -#: ../plug-ins/rcm/rcm_dialog.c:533 +#: ../plug-ins/rcm/rcm_dialog.c:540 msgid "Gray Threshold" msgstr "Schwellwert Grau:" #. * Misc: Used unit selection * -#: ../plug-ins/rcm/rcm_dialog.c:572 ../plug-ins/rcm/rcm_dialog.c:676 +#: ../plug-ins/rcm/rcm_dialog.c:579 ../plug-ins/rcm/rcm_dialog.c:683 msgid "Units" msgstr "Einheiten" #. Misc: Used unit selection: 3 radio buttons -#: ../plug-ins/rcm/rcm_dialog.c:581 +#: ../plug-ins/rcm/rcm_dialog.c:588 msgid "Radians" msgstr "Radian" -#: ../plug-ins/rcm/rcm_dialog.c:593 +#: ../plug-ins/rcm/rcm_dialog.c:600 msgid "Radians/Pi" msgstr "Radian/Pi" -#: ../plug-ins/rcm/rcm_dialog.c:605 +#: ../plug-ins/rcm/rcm_dialog.c:612 msgid "Degrees" msgstr "Grad" #. Create dialog -#: ../plug-ins/rcm/rcm_dialog.c:638 +#: ../plug-ins/rcm/rcm_dialog.c:645 msgid "Colormap Rotation" msgstr "Farben drehen" -#: ../plug-ins/rcm/rcm_dialog.c:670 +#: ../plug-ins/rcm/rcm_dialog.c:677 msgid "Main Options" msgstr "Haupteinstellungen" -#: ../plug-ins/rcm/rcm_dialog.c:673 +#: ../plug-ins/rcm/rcm_dialog.c:680 msgid "Gray Options" msgstr "Grau-Optionen" @@ -11660,27 +11661,27 @@ msgid "Transferring TWAIN data..." msgstr "Übertrage TWAIN Daten..." -#: ../plug-ins/winicon/icodialog.c:123 +#: ../plug-ins/winicon/icodialog.c:89 msgid "1 bpp, 1-bit alpha, 2-slot palette" msgstr "1 bpp, 1-Bit Alpha, 2-Slot Palette" -#: ../plug-ins/winicon/icodialog.c:124 +#: ../plug-ins/winicon/icodialog.c:90 msgid "4 bpp, 1-bit alpha, 16-slot palette" msgstr "4 bpp, 1-Bit Alpha, 16-Slot Palette" -#: ../plug-ins/winicon/icodialog.c:125 +#: ../plug-ins/winicon/icodialog.c:91 msgid "8 bpp, 1-bit alpha, 256-slot palette" msgstr "8 bpp, 1-Bit Alpha, 256-Slot Palette" -#: ../plug-ins/winicon/icodialog.c:126 +#: ../plug-ins/winicon/icodialog.c:92 msgid "32 bpp, 8-bit alpha, no palette" msgstr "32 bpp, 8-Bit Alpha, keine Palette" -#: ../plug-ins/winicon/icodialog.c:151 +#: ../plug-ins/winicon/icodialog.c:117 msgid "GIMP Windows Icon Plugin" msgstr "The-Gimp-Plugin für Microsoft Windows Symbole" -#: ../plug-ins/winicon/icodialog.c:172 +#: ../plug-ins/winicon/icodialog.c:138 msgid "Icon details" msgstr "Symbolinformationen" @@ -11689,7 +11690,7 @@ msgid "Icon #%i" msgstr "Symbol Nr. %i" -#: ../plug-ins/winicon/icosave.c:943 +#: ../plug-ins/winicon/icosave.c:969 msgid "Windows icons cannot be higher or wider than 255 pixels." msgstr "" "Microsoft Windows Symbole dürfen nicht höher oder breiter als 255 Pixel sein." diff -uraN gimp-2.2.4/po-plug-ins/el.gmo gimp-2.2.5/po-plug-ins/el.gmo --- gimp-2.2.4/po-plug-ins/el.gmo 2005-02-22 23:12:42.000000000 +0100 +++ gimp-2.2.5/po-plug-ins/el.gmo 2005-04-09 23:09:29.000000000 +0200 @@ -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: 2005-02-22 23:04+0100 +POT-Creation-Date: 2005-04-09 21:56+0200 PO-Revision-Date: 2004-10-22 15:51+0300 Last-Translator: Nikos Charonitakis Language-Team: diff -uraN gimp-2.2.4/po-plug-ins/el.po gimp-2.2.5/po-plug-ins/el.po --- gimp-2.2.4/po-plug-ins/el.po 2005-02-22 23:12:27.000000000 +0100 +++ gimp-2.2.5/po-plug-ins/el.po 2005-04-09 23:09:12.000000000 +0200 @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: el\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-02-22 23:04+0100\n" +"POT-Creation-Date: 2005-04-09 21:56+0200\n" "PO-Revision-Date: 2004-10-22 15:51+0300\n" "Last-Translator: Nikos Charonitakis \n" "Language-Team: \n" @@ -414,7 +414,7 @@ #: ../plug-ins/common/pat.c:433 ../plug-ins/common/pcx.c:585 #: ../plug-ins/common/pix.c:515 ../plug-ins/common/png.c:1178 #: ../plug-ins/common/pnm.c:809 ../plug-ins/common/postscript.c:1123 -#: ../plug-ins/common/psd_save.c:1588 ../plug-ins/common/raw.c:517 +#: ../plug-ins/common/psd_save.c:1336 ../plug-ins/common/raw.c:517 #: ../plug-ins/common/raw.c:544 ../plug-ins/common/spheredesigner.c:2088 #: ../plug-ins/common/sunras.c:513 ../plug-ins/common/tga.c:1030 #: ../plug-ins/common/tiff.c:1810 ../plug-ins/common/xbm.c:996 @@ -1362,20 +1362,21 @@ #: ../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 +#: ../plug-ins/bmp/bmpread.c:207 ../plug-ins/bmp/bmpread.c:307 +#: ../plug-ins/bmp/bmpread.c:348 #, fuzzy, c-format msgid "'%s' is not a valid BMP file" msgstr "Το αρχείο %s δεν είναι έγκυρο αρχείο XML" #: ../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 +#: ../plug-ins/bmp/bmpread.c:300 ../plug-ins/bmp/bmpread.c:313 +#: ../plug-ins/bmp/bmpread.c:319 #, fuzzy, c-format msgid "Error reading BMP file header from '%s'" msgstr "σφάλμα κατά την ανάγνωση του αρχείου" -#: ../plug-ins/bmp/bmpread.c:442 ../plug-ins/bmp/bmpread.c:477 +#: ../plug-ins/bmp/bmpread.c:450 ../plug-ins/bmp/bmpread.c:485 msgid "Unrecognized or invalid BMP compression format." msgstr "" @@ -1383,15 +1384,15 @@ #. #. * Create the "background" layer to hold the image... #. -#: ../plug-ins/bmp/bmpread.c:482 ../plug-ins/common/CEL.c:357 +#: ../plug-ins/bmp/bmpread.c:490 ../plug-ins/common/CEL.c:357 #: ../plug-ins/common/CEL.c:360 ../plug-ins/common/blinds.c:273 #: ../plug-ins/common/compose.c:625 ../plug-ins/common/decompose.c:595 #: ../plug-ins/common/dicom.c:442 ../plug-ins/common/film.c:946 -#: ../plug-ins/common/gifload.c:865 ../plug-ins/common/jpeg.c:1113 +#: ../plug-ins/common/gifload.c:864 ../plug-ins/common/jpeg.c:1113 #: ../plug-ins/common/jpeg.c:2474 ../plug-ins/common/pcx.c:334 #: ../plug-ins/common/pcx.c:340 ../plug-ins/common/pix.c:374 #: ../plug-ins/common/png.c:808 ../plug-ins/common/pnm.c:517 -#: ../plug-ins/common/psd.c:2173 ../plug-ins/common/raw.c:677 +#: ../plug-ins/common/psd.c:2174 ../plug-ins/common/raw.c:677 #: ../plug-ins/common/smooth_palette.c:257 ../plug-ins/common/sunras.c:925 #: ../plug-ins/common/tga.c:929 ../plug-ins/common/tiff.c:833 #: ../plug-ins/common/tile.c:266 ../plug-ins/common/winclipboard.c:579 @@ -1423,12 +1424,12 @@ #: ../plug-ins/common/jpeg.c:1453 ../plug-ins/common/pat.c:438 #: ../plug-ins/common/pcx.c:545 ../plug-ins/common/pix.c:521 #: ../plug-ins/common/png.c:1185 ../plug-ins/common/pnm.c:814 -#: ../plug-ins/common/postscript.c:1128 ../plug-ins/common/psd_save.c:1593 +#: ../plug-ins/common/postscript.c:1128 ../plug-ins/common/psd_save.c:1341 #: ../plug-ins/common/sunras.c:518 ../plug-ins/common/tga.c:1035 #: ../plug-ins/common/tiff.c:1815 ../plug-ins/common/xbm.c:1001 #: ../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:957 +#: ../plug-ins/sgi/sgi.c:545 ../plug-ins/winicon/icosave.c:977 #: ../plug-ins/xjt/xjt.c:1682 #, fuzzy, c-format msgid "Saving '%s'..." @@ -1818,7 +1819,7 @@ msgstr "Απόχρωση" #: ../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 +#: ../plug-ins/common/decompose.c:144 ../plug-ins/rcm/rcm_dialog.c:548 msgid "Saturation" msgstr "Κορεσμός" @@ -2770,27 +2771,27 @@ msgid "Color to _Alpha..." msgstr "Χρώμα προς χρήση:" -#: ../plug-ins/common/colortoalpha.c:181 +#: ../plug-ins/common/colortoalpha.c:187 #, fuzzy msgid "Removing color..." msgstr "Αφαίρεση φακέλου %s" -#: ../plug-ins/common/colortoalpha.c:377 +#: ../plug-ins/common/colortoalpha.c:380 #, fuzzy msgid "Color to Alpha" msgstr "Χρώμα προς χρήση:" # -#: ../plug-ins/common/colortoalpha.c:402 ../plug-ins/common/mapcolor.c:424 +#: ../plug-ins/common/colortoalpha.c:405 ../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:406 +#: ../plug-ins/common/colortoalpha.c:409 msgid "Color to Alpha Color Picker" msgstr "" -#: ../plug-ins/common/colortoalpha.c:420 +#: ../plug-ins/common/colortoalpha.c:423 #, fuzzy msgid "to alpha" msgstr "Άλφα" @@ -2815,14 +2816,14 @@ # #. Gray: Circle: Spinbutton 1 -#: ../plug-ins/common/compose.c:148 ../plug-ins/rcm/rcm_dialog.c:452 +#: ../plug-ins/common/compose.c:148 ../plug-ins/rcm/rcm_dialog.c:459 msgid "Hue:" msgstr "Απόχρωση:" # #. Gray: Circle: Spinbutton 2 #: ../plug-ins/common/compose.c:149 ../plug-ins/print/gimp_color_window.c:364 -#: ../plug-ins/rcm/rcm_dialog.c:479 +#: ../plug-ins/rcm/rcm_dialog.c:486 msgid "Saturation:" msgstr "Κορεσμός:" @@ -3527,16 +3528,16 @@ msgid "Deinterlace..." msgstr "Διασύνδεση χρήστη" -#: ../plug-ins/common/deinterlace.c:315 +#: ../plug-ins/common/deinterlace.c:324 #, fuzzy msgid "Deinterlace" msgstr "Διασύνδεση χρήστη" -#: ../plug-ins/common/deinterlace.c:340 +#: ../plug-ins/common/deinterlace.c:349 msgid "Keep o_dd fields" msgstr "" -#: ../plug-ins/common/deinterlace.c:341 +#: ../plug-ins/common/deinterlace.c:350 msgid "Keep _even fields" msgstr "" @@ -4023,7 +4024,7 @@ #. Create selection #: ../plug-ins/common/film.c:1166 ../plug-ins/imagemap/imap_selection.c:400 -#: ../plug-ins/rcm/rcm_dialog.c:158 +#: ../plug-ins/rcm/rcm_dialog.c:165 msgid "Selection" msgstr "Επιλογή" @@ -4653,23 +4654,23 @@ msgstr "" # -#: ../plug-ins/common/gifload.c:867 +#: ../plug-ins/common/gifload.c:866 #, fuzzy, c-format msgid "Background (%d%s)" msgstr "Φόντο" -#: ../plug-ins/common/gifload.c:915 ../plug-ins/common/iwarp.c:783 +#: ../plug-ins/common/gifload.c:914 ../plug-ins/common/iwarp.c:783 #: ../plug-ins/common/iwarp.c:817 #, fuzzy, c-format msgid "Frame %d" msgstr "Πλαίσιο" -#: ../plug-ins/common/gifload.c:917 +#: ../plug-ins/common/gifload.c:916 #, fuzzy, c-format msgid "Frame %d (%d%s)" msgstr "Πάχος πλαισίου (σε εικονοστοιχεία)" -#: ../plug-ins/common/gifload.c:947 +#: ../plug-ins/common/gifload.c:946 #, c-format msgid "" "GIF: Undocumented GIF composite type %d is not handled. Animation might not " @@ -6800,7 +6801,7 @@ msgid "B/W" msgstr "" -#: ../plug-ins/common/postscript.c:3003 ../plug-ins/rcm/rcm_dialog.c:404 +#: ../plug-ins/common/postscript.c:3003 ../plug-ins/rcm/rcm_dialog.c:411 msgid "Gray" msgstr "Γκρι" @@ -6905,18 +6906,18 @@ msgid "Invalid UTF-8 string in PSD file" msgstr "" -#: ../plug-ins/common/psd_save.c:181 +#: ../plug-ins/common/psd_save.c:192 msgid "Photoshop image" msgstr "" -#: ../plug-ins/common/psd_save.c:1564 +#: ../plug-ins/common/psd_save.c:1312 #, c-format msgid "" "Unable to save '%s'. The psd file format does not support images that are " "more than 30000 pixels wide or tall." msgstr "" -#: ../plug-ins/common/psd_save.c:1576 +#: ../plug-ins/common/psd_save.c:1324 #, c-format msgid "" "Unable to save '%s'. The psd file format does not support images with " @@ -13252,104 +13253,104 @@ msgid "Rotating the colormap..." msgstr "MΕπαλήθευση της μορφοποίησης..." -#: ../plug-ins/rcm/rcm_dialog.c:114 +#: ../plug-ins/rcm/rcm_dialog.c:119 #, fuzzy msgid "Original" msgstr "Σημείο αναφοράς" -#: ../plug-ins/rcm/rcm_dialog.c:127 +#: ../plug-ins/rcm/rcm_dialog.c:133 #, fuzzy msgid "Rotated" msgstr "Περιστροφή" -#: ../plug-ins/rcm/rcm_dialog.c:140 +#: ../plug-ins/rcm/rcm_dialog.c:147 #, fuzzy msgid "Continuous update" msgstr "&Συνεχόμενα" -#: ../plug-ins/rcm/rcm_dialog.c:153 +#: ../plug-ins/rcm/rcm_dialog.c:160 msgid "Area:" msgstr "Περιοχή:" -#: ../plug-ins/rcm/rcm_dialog.c:157 +#: ../plug-ins/rcm/rcm_dialog.c:164 #, fuzzy msgid "Entire Layer" msgstr "Ολόκληρο το μενού" -#: ../plug-ins/rcm/rcm_dialog.c:159 +#: ../plug-ins/rcm/rcm_dialog.c:166 #, fuzzy msgid "Context" msgstr "Περιεχόμενα:" # #. spinbutton 1 -#: ../plug-ins/rcm/rcm_dialog.c:284 ../plug-ins/rcm/rcm_dialog.c:362 +#: ../plug-ins/rcm/rcm_dialog.c:291 ../plug-ins/rcm/rcm_dialog.c:369 msgid "From" msgstr "Από" # #. spinbutton 2 -#: ../plug-ins/rcm/rcm_dialog.c:310 ../plug-ins/rcm/rcm_dialog.c:363 +#: ../plug-ins/rcm/rcm_dialog.c:317 ../plug-ins/rcm/rcm_dialog.c:370 msgid "To" msgstr "Πρoς" # #. * Gray: Operation-Mode * -#: ../plug-ins/rcm/rcm_dialog.c:499 +#: ../plug-ins/rcm/rcm_dialog.c:506 #, fuzzy msgid "Gray Mode" msgstr "Χρώμα %d" #. Gray: Operation-Mode: two radio buttons -#: ../plug-ins/rcm/rcm_dialog.c:508 +#: ../plug-ins/rcm/rcm_dialog.c:515 #, fuzzy msgid "Treat as this" msgstr "πραγματική διαδρομή" -#: ../plug-ins/rcm/rcm_dialog.c:520 +#: ../plug-ins/rcm/rcm_dialog.c:527 #, fuzzy msgid "Change to this" msgstr "Αλλαγή ρυθμίσεων" #. * Gray: What is gray? * -#: ../plug-ins/rcm/rcm_dialog.c:533 +#: ../plug-ins/rcm/rcm_dialog.c:540 #, fuzzy msgid "Gray Threshold" msgstr "Κατώφλι" #. * Misc: Used unit selection * -#: ../plug-ins/rcm/rcm_dialog.c:572 ../plug-ins/rcm/rcm_dialog.c:676 +#: ../plug-ins/rcm/rcm_dialog.c:579 ../plug-ins/rcm/rcm_dialog.c:683 msgid "Units" msgstr "Μονάδες" #. Misc: Used unit selection: 3 radio buttons -#: ../plug-ins/rcm/rcm_dialog.c:581 +#: ../plug-ins/rcm/rcm_dialog.c:588 #, fuzzy msgid "Radians" msgstr "Βροχή" -#: ../plug-ins/rcm/rcm_dialog.c:593 +#: ../plug-ins/rcm/rcm_dialog.c:600 msgid "Radians/Pi" msgstr "" -#: ../plug-ins/rcm/rcm_dialog.c:605 +#: ../plug-ins/rcm/rcm_dialog.c:612 #, fuzzy msgid "Degrees" msgstr "Μείωση" #. Create dialog -#: ../plug-ins/rcm/rcm_dialog.c:638 +#: ../plug-ins/rcm/rcm_dialog.c:645 #, fuzzy msgid "Colormap Rotation" msgstr "Συνεργασία" # -#: ../plug-ins/rcm/rcm_dialog.c:670 +#: ../plug-ins/rcm/rcm_dialog.c:677 #, fuzzy msgid "Main Options" msgstr "Επιλογές Μηνυμάτων" -#: ../plug-ins/rcm/rcm_dialog.c:673 +#: ../plug-ins/rcm/rcm_dialog.c:680 #, fuzzy msgid "Gray Options" msgstr "Γενικές Επιλογές" @@ -13441,27 +13442,27 @@ msgid "Transferring TWAIN data..." msgstr "Εικόνα ράστερ CMU" -#: ../plug-ins/winicon/icodialog.c:123 +#: ../plug-ins/winicon/icodialog.c:89 msgid "1 bpp, 1-bit alpha, 2-slot palette" msgstr "" -#: ../plug-ins/winicon/icodialog.c:124 +#: ../plug-ins/winicon/icodialog.c:90 msgid "4 bpp, 1-bit alpha, 16-slot palette" msgstr "" -#: ../plug-ins/winicon/icodialog.c:125 +#: ../plug-ins/winicon/icodialog.c:91 msgid "8 bpp, 1-bit alpha, 256-slot palette" msgstr "" -#: ../plug-ins/winicon/icodialog.c:126 +#: ../plug-ins/winicon/icodialog.c:92 msgid "32 bpp, 8-bit alpha, no palette" msgstr "" -#: ../plug-ins/winicon/icodialog.c:151 +#: ../plug-ins/winicon/icodialog.c:117 msgid "GIMP Windows Icon Plugin" msgstr "" -#: ../plug-ins/winicon/icodialog.c:172 +#: ../plug-ins/winicon/icodialog.c:138 #, fuzzy msgid "Icon details" msgstr "Ρυθμίσεις Σύνδεσης" @@ -13471,7 +13472,7 @@ msgid "Icon #%i" msgstr "" -#: ../plug-ins/winicon/icosave.c:943 +#: ../plug-ins/winicon/icosave.c:969 msgid "Windows icons cannot be higher or wider than 255 pixels." msgstr "" diff -uraN gimp-2.2.4/po-plug-ins/en_CA.gmo gimp-2.2.5/po-plug-ins/en_CA.gmo --- gimp-2.2.4/po-plug-ins/en_CA.gmo 2005-02-22 23:12:42.000000000 +0100 +++ gimp-2.2.5/po-plug-ins/en_CA.gmo 2005-04-09 23:09:29.000000000 +0200 @@ -472,7 +472,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: 2005-02-22 23:04+0100 +POT-Creation-Date: 2005-04-09 21:56+0200 PO-Revision-Date: 2005-01-26 14:31-0400 Last-Translator: Adam Weinberger Language-Team: English/Canada diff -uraN gimp-2.2.4/po-plug-ins/en_CA.po gimp-2.2.5/po-plug-ins/en_CA.po --- gimp-2.2.4/po-plug-ins/en_CA.po 2005-02-22 23:12:27.000000000 +0100 +++ gimp-2.2.5/po-plug-ins/en_CA.po 2005-04-09 23:09:13.000000000 +0200 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: gimp plug-ins\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-02-22 23:04+0100\n" +"POT-Creation-Date: 2005-04-09 21:56+0200\n" "PO-Revision-Date: 2005-01-26 14:31-0400\n" "Last-Translator: Adam Weinberger \n" "Language-Team: English/Canada \n" @@ -386,7 +386,7 @@ #: ../plug-ins/common/pat.c:433 ../plug-ins/common/pcx.c:585 #: ../plug-ins/common/pix.c:515 ../plug-ins/common/png.c:1178 #: ../plug-ins/common/pnm.c:809 ../plug-ins/common/postscript.c:1123 -#: ../plug-ins/common/psd_save.c:1588 ../plug-ins/common/raw.c:517 +#: ../plug-ins/common/psd_save.c:1336 ../plug-ins/common/raw.c:517 #: ../plug-ins/common/raw.c:544 ../plug-ins/common/spheredesigner.c:2088 #: ../plug-ins/common/sunras.c:513 ../plug-ins/common/tga.c:1030 #: ../plug-ins/common/tiff.c:1810 ../plug-ins/common/xbm.c:996 @@ -1224,35 +1224,36 @@ #: ../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 +#: ../plug-ins/bmp/bmpread.c:207 ../plug-ins/bmp/bmpread.c:307 +#: ../plug-ins/bmp/bmpread.c:348 #, c-format msgid "'%s' is not a valid BMP file" msgstr "'%s' is not a valid BMP file" #: ../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 +#: ../plug-ins/bmp/bmpread.c:300 ../plug-ins/bmp/bmpread.c:313 +#: ../plug-ins/bmp/bmpread.c:319 #, c-format msgid "Error reading BMP file header from '%s'" msgstr "Error reading BMP file header from '%s'" -#: ../plug-ins/bmp/bmpread.c:442 ../plug-ins/bmp/bmpread.c:477 +#: ../plug-ins/bmp/bmpread.c:450 ../plug-ins/bmp/bmpread.c:485 msgid "Unrecognized or invalid BMP compression format." msgstr "Unrecognized or invalid BMP compression format." #. #. * Create the "background" layer to hold the image... #. -#: ../plug-ins/bmp/bmpread.c:482 ../plug-ins/common/CEL.c:357 +#: ../plug-ins/bmp/bmpread.c:490 ../plug-ins/common/CEL.c:357 #: ../plug-ins/common/CEL.c:360 ../plug-ins/common/blinds.c:273 #: ../plug-ins/common/compose.c:625 ../plug-ins/common/decompose.c:595 #: ../plug-ins/common/dicom.c:442 ../plug-ins/common/film.c:946 -#: ../plug-ins/common/gifload.c:865 ../plug-ins/common/jpeg.c:1113 +#: ../plug-ins/common/gifload.c:864 ../plug-ins/common/jpeg.c:1113 #: ../plug-ins/common/jpeg.c:2474 ../plug-ins/common/pcx.c:334 #: ../plug-ins/common/pcx.c:340 ../plug-ins/common/pix.c:374 #: ../plug-ins/common/png.c:808 ../plug-ins/common/pnm.c:517 -#: ../plug-ins/common/psd.c:2173 ../plug-ins/common/raw.c:677 +#: ../plug-ins/common/psd.c:2174 ../plug-ins/common/raw.c:677 #: ../plug-ins/common/smooth_palette.c:257 ../plug-ins/common/sunras.c:925 #: ../plug-ins/common/tga.c:929 ../plug-ins/common/tiff.c:833 #: ../plug-ins/common/tile.c:266 ../plug-ins/common/winclipboard.c:579 @@ -1283,12 +1284,12 @@ #: ../plug-ins/common/jpeg.c:1453 ../plug-ins/common/pat.c:438 #: ../plug-ins/common/pcx.c:545 ../plug-ins/common/pix.c:521 #: ../plug-ins/common/png.c:1185 ../plug-ins/common/pnm.c:814 -#: ../plug-ins/common/postscript.c:1128 ../plug-ins/common/psd_save.c:1593 +#: ../plug-ins/common/postscript.c:1128 ../plug-ins/common/psd_save.c:1341 #: ../plug-ins/common/sunras.c:518 ../plug-ins/common/tga.c:1035 #: ../plug-ins/common/tiff.c:1815 ../plug-ins/common/xbm.c:1001 #: ../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:957 +#: ../plug-ins/sgi/sgi.c:545 ../plug-ins/winicon/icosave.c:977 #: ../plug-ins/xjt/xjt.c:1682 #, c-format msgid "Saving '%s'..." @@ -1624,7 +1625,7 @@ msgstr "Hue" #: ../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 +#: ../plug-ins/common/decompose.c:144 ../plug-ins/rcm/rcm_dialog.c:548 msgid "Saturation" msgstr "Saturation" @@ -2430,24 +2431,24 @@ msgid "Color to _Alpha..." msgstr "Colour to _Alpha..." -#: ../plug-ins/common/colortoalpha.c:181 +#: ../plug-ins/common/colortoalpha.c:187 msgid "Removing color..." msgstr "Removing colour..." -#: ../plug-ins/common/colortoalpha.c:377 +#: ../plug-ins/common/colortoalpha.c:380 msgid "Color to Alpha" msgstr "Colour to Alpha" -#: ../plug-ins/common/colortoalpha.c:402 ../plug-ins/common/mapcolor.c:424 +#: ../plug-ins/common/colortoalpha.c:405 ../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:406 +#: ../plug-ins/common/colortoalpha.c:409 msgid "Color to Alpha Color Picker" msgstr "Colour to Alpha Colour Picker" -#: ../plug-ins/common/colortoalpha.c:420 +#: ../plug-ins/common/colortoalpha.c:423 msgid "to alpha" msgstr "to alpha" @@ -2470,13 +2471,13 @@ msgstr "HSV" #. Gray: Circle: Spinbutton 1 -#: ../plug-ins/common/compose.c:148 ../plug-ins/rcm/rcm_dialog.c:452 +#: ../plug-ins/common/compose.c:148 ../plug-ins/rcm/rcm_dialog.c:459 msgid "Hue:" msgstr "Hue:" #. Gray: Circle: Spinbutton 2 #: ../plug-ins/common/compose.c:149 ../plug-ins/print/gimp_color_window.c:364 -#: ../plug-ins/rcm/rcm_dialog.c:479 +#: ../plug-ins/rcm/rcm_dialog.c:486 msgid "Saturation:" msgstr "Saturation:" @@ -3090,15 +3091,15 @@ msgid "Deinterlace..." msgstr "Deinterlace..." -#: ../plug-ins/common/deinterlace.c:315 +#: ../plug-ins/common/deinterlace.c:324 msgid "Deinterlace" msgstr "Deinterlace" -#: ../plug-ins/common/deinterlace.c:340 +#: ../plug-ins/common/deinterlace.c:349 msgid "Keep o_dd fields" msgstr "Keep o_dd fields" -#: ../plug-ins/common/deinterlace.c:341 +#: ../plug-ins/common/deinterlace.c:350 msgid "Keep _even fields" msgstr "Keep _even fields" @@ -3495,7 +3496,7 @@ #. Create selection #: ../plug-ins/common/film.c:1166 ../plug-ins/imagemap/imap_selection.c:400 -#: ../plug-ins/rcm/rcm_dialog.c:158 +#: ../plug-ins/rcm/rcm_dialog.c:165 msgid "Selection" msgstr "Selection" @@ -4032,23 +4033,23 @@ msgid "Non-square pixels. Image might look squashed." msgstr "Non-square pixels. Image might look squashed." -#: ../plug-ins/common/gifload.c:867 +#: ../plug-ins/common/gifload.c:866 #, c-format msgid "Background (%d%s)" msgstr "Background (%d%s)" -#: ../plug-ins/common/gifload.c:915 ../plug-ins/common/iwarp.c:783 +#: ../plug-ins/common/gifload.c:914 ../plug-ins/common/iwarp.c:783 #: ../plug-ins/common/iwarp.c:817 #, c-format msgid "Frame %d" msgstr "Frame %d" -#: ../plug-ins/common/gifload.c:917 +#: ../plug-ins/common/gifload.c:916 #, c-format msgid "Frame %d (%d%s)" msgstr "Frame %d (%d%s)" -#: ../plug-ins/common/gifload.c:947 +#: ../plug-ins/common/gifload.c:946 #, c-format msgid "" "GIF: Undocumented GIF composite type %d is not handled. Animation might not " @@ -5830,7 +5831,7 @@ msgid "B/W" msgstr "B/W" -#: ../plug-ins/common/postscript.c:3003 ../plug-ins/rcm/rcm_dialog.c:404 +#: ../plug-ins/common/postscript.c:3003 ../plug-ins/rcm/rcm_dialog.c:411 msgid "Gray" msgstr "Gray" @@ -5921,11 +5922,11 @@ msgid "Invalid UTF-8 string in PSD file" msgstr "Invalid UTF-8 string in PSD file" -#: ../plug-ins/common/psd_save.c:181 +#: ../plug-ins/common/psd_save.c:192 msgid "Photoshop image" msgstr "Photoshop image" -#: ../plug-ins/common/psd_save.c:1564 +#: ../plug-ins/common/psd_save.c:1312 #, c-format msgid "" "Unable to save '%s'. The psd file format does not support images that are " @@ -5934,7 +5935,7 @@ "Unable to save '%s'. The PSD file format does not support images that are " "more than 30000 pixels wide or tall." -#: ../plug-ins/common/psd_save.c:1576 +#: ../plug-ins/common/psd_save.c:1324 #, c-format msgid "" "Unable to save '%s'. The psd file format does not support images with " @@ -11406,87 +11407,87 @@ msgid "Rotating the colormap..." msgstr "Rotating the colourmap..." -#: ../plug-ins/rcm/rcm_dialog.c:114 +#: ../plug-ins/rcm/rcm_dialog.c:119 msgid "Original" msgstr "Original" -#: ../plug-ins/rcm/rcm_dialog.c:127 +#: ../plug-ins/rcm/rcm_dialog.c:133 msgid "Rotated" msgstr "Rotated" -#: ../plug-ins/rcm/rcm_dialog.c:140 +#: ../plug-ins/rcm/rcm_dialog.c:147 msgid "Continuous update" msgstr "Continuous update" -#: ../plug-ins/rcm/rcm_dialog.c:153 +#: ../plug-ins/rcm/rcm_dialog.c:160 msgid "Area:" msgstr "Area:" -#: ../plug-ins/rcm/rcm_dialog.c:157 +#: ../plug-ins/rcm/rcm_dialog.c:164 msgid "Entire Layer" msgstr "Entire Layer" -#: ../plug-ins/rcm/rcm_dialog.c:159 +#: ../plug-ins/rcm/rcm_dialog.c:166 msgid "Context" msgstr "Context" #. spinbutton 1 -#: ../plug-ins/rcm/rcm_dialog.c:284 ../plug-ins/rcm/rcm_dialog.c:362 +#: ../plug-ins/rcm/rcm_dialog.c:291 ../plug-ins/rcm/rcm_dialog.c:369 msgid "From" msgstr "From" #. spinbutton 2 -#: ../plug-ins/rcm/rcm_dialog.c:310 ../plug-ins/rcm/rcm_dialog.c:363 +#: ../plug-ins/rcm/rcm_dialog.c:317 ../plug-ins/rcm/rcm_dialog.c:370 msgid "To" msgstr "To" #. * Gray: Operation-Mode * -#: ../plug-ins/rcm/rcm_dialog.c:499 +#: ../plug-ins/rcm/rcm_dialog.c:506 msgid "Gray Mode" msgstr "Gray Mode" #. Gray: Operation-Mode: two radio buttons -#: ../plug-ins/rcm/rcm_dialog.c:508 +#: ../plug-ins/rcm/rcm_dialog.c:515 msgid "Treat as this" msgstr "Treat as this" -#: ../plug-ins/rcm/rcm_dialog.c:520 +#: ../plug-ins/rcm/rcm_dialog.c:527 msgid "Change to this" msgstr "Change to this" #. * Gray: What is gray? * -#: ../plug-ins/rcm/rcm_dialog.c:533 +#: ../plug-ins/rcm/rcm_dialog.c:540 msgid "Gray Threshold" msgstr "Gray Threshold" #. * Misc: Used unit selection * -#: ../plug-ins/rcm/rcm_dialog.c:572 ../plug-ins/rcm/rcm_dialog.c:676 +#: ../plug-ins/rcm/rcm_dialog.c:579 ../plug-ins/rcm/rcm_dialog.c:683 msgid "Units" msgstr "Units" #. Misc: Used unit selection: 3 radio buttons -#: ../plug-ins/rcm/rcm_dialog.c:581 +#: ../plug-ins/rcm/rcm_dialog.c:588 msgid "Radians" msgstr "Radians" -#: ../plug-ins/rcm/rcm_dialog.c:593 +#: ../plug-ins/rcm/rcm_dialog.c:600 msgid "Radians/Pi" msgstr "Radians/Pi" -#: ../plug-ins/rcm/rcm_dialog.c:605 +#: ../plug-ins/rcm/rcm_dialog.c:612 msgid "Degrees" msgstr "Degrees" #. Create dialog -#: ../plug-ins/rcm/rcm_dialog.c:638 +#: ../plug-ins/rcm/rcm_dialog.c:645 msgid "Colormap Rotation" msgstr "Colourmap Rotation" -#: ../plug-ins/rcm/rcm_dialog.c:670 +#: ../plug-ins/rcm/rcm_dialog.c:677 msgid "Main Options" msgstr "Main Options" -#: ../plug-ins/rcm/rcm_dialog.c:673 +#: ../plug-ins/rcm/rcm_dialog.c:680 msgid "Gray Options" msgstr "Gray Options" @@ -11569,27 +11570,27 @@ msgid "Transferring TWAIN data..." msgstr "Transferring TWAIN data..." -#: ../plug-ins/winicon/icodialog.c:123 +#: ../plug-ins/winicon/icodialog.c:89 msgid "1 bpp, 1-bit alpha, 2-slot palette" msgstr "1 bpp, 1-bit alpha, 2-slot palette" -#: ../plug-ins/winicon/icodialog.c:124 +#: ../plug-ins/winicon/icodialog.c:90 msgid "4 bpp, 1-bit alpha, 16-slot palette" msgstr "4 bpp, 1-bit alpha, 16-slot palette" -#: ../plug-ins/winicon/icodialog.c:125 +#: ../plug-ins/winicon/icodialog.c:91 msgid "8 bpp, 1-bit alpha, 256-slot palette" msgstr "8 bpp, 1-bit alpha, 256-slot palette" -#: ../plug-ins/winicon/icodialog.c:126 +#: ../plug-ins/winicon/icodialog.c:92 msgid "32 bpp, 8-bit alpha, no palette" msgstr "32 bpp, 8-bit alpha, no palette" -#: ../plug-ins/winicon/icodialog.c:151 +#: ../plug-ins/winicon/icodialog.c:117 msgid "GIMP Windows Icon Plugin" msgstr "GIMP Windows Icon Plugin" -#: ../plug-ins/winicon/icodialog.c:172 +#: ../plug-ins/winicon/icodialog.c:138 msgid "Icon details" msgstr "Icon details" @@ -11598,7 +11599,7 @@ msgid "Icon #%i" msgstr "Icon #%i" -#: ../plug-ins/winicon/icosave.c:943 +#: ../plug-ins/winicon/icosave.c:969 msgid "Windows icons cannot be higher or wider than 255 pixels." msgstr "Windows icons cannot be higher or wider than 255 pixels." diff -uraN gimp-2.2.4/po-plug-ins/en_GB.gmo gimp-2.2.5/po-plug-ins/en_GB.gmo --- gimp-2.2.4/po-plug-ins/en_GB.gmo 2005-02-22 23:12:42.000000000 +0100 +++ gimp-2.2.5/po-plug-ins/en_GB.gmo 2005-04-09 23:09:29.000000000 +0200 @@ -470,7 +470,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: 2005-02-22 23:04+0100 +POT-Creation-Date: 2005-04-09 21:56+0200 PO-Revision-Date: 2005-02-15 23:46+0100 Last-Translator: David Lodge Language-Team: diff -uraN gimp-2.2.4/po-plug-ins/en_GB.po gimp-2.2.5/po-plug-ins/en_GB.po --- gimp-2.2.4/po-plug-ins/en_GB.po 2005-02-22 23:12:27.000000000 +0100 +++ gimp-2.2.5/po-plug-ins/en_GB.po 2005-04-09 23:09:13.000000000 +0200 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: gimp CVS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-02-22 23:04+0100\n" +"POT-Creation-Date: 2005-04-09 21:56+0200\n" "PO-Revision-Date: 2005-02-15 23:46+0100\n" "Last-Translator: David Lodge \n" "Language-Team: \n" @@ -385,7 +385,7 @@ #: ../plug-ins/common/pat.c:433 ../plug-ins/common/pcx.c:585 #: ../plug-ins/common/pix.c:515 ../plug-ins/common/png.c:1178 #: ../plug-ins/common/pnm.c:809 ../plug-ins/common/postscript.c:1123 -#: ../plug-ins/common/psd_save.c:1588 ../plug-ins/common/raw.c:517 +#: ../plug-ins/common/psd_save.c:1336 ../plug-ins/common/raw.c:517 #: ../plug-ins/common/raw.c:544 ../plug-ins/common/spheredesigner.c:2088 #: ../plug-ins/common/sunras.c:513 ../plug-ins/common/tga.c:1030 #: ../plug-ins/common/tiff.c:1810 ../plug-ins/common/xbm.c:996 @@ -1223,35 +1223,36 @@ #: ../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 +#: ../plug-ins/bmp/bmpread.c:207 ../plug-ins/bmp/bmpread.c:307 +#: ../plug-ins/bmp/bmpread.c:348 #, c-format msgid "'%s' is not a valid BMP file" msgstr "'%s' is not a valid BMP file" #: ../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 +#: ../plug-ins/bmp/bmpread.c:300 ../plug-ins/bmp/bmpread.c:313 +#: ../plug-ins/bmp/bmpread.c:319 #, c-format msgid "Error reading BMP file header from '%s'" msgstr "Error reading BMP file header from '%s'" -#: ../plug-ins/bmp/bmpread.c:442 ../plug-ins/bmp/bmpread.c:477 +#: ../plug-ins/bmp/bmpread.c:450 ../plug-ins/bmp/bmpread.c:485 msgid "Unrecognized or invalid BMP compression format." msgstr "Unrecognised or invalid BMP compression format." #. #. * Create the "background" layer to hold the image... #. -#: ../plug-ins/bmp/bmpread.c:482 ../plug-ins/common/CEL.c:357 +#: ../plug-ins/bmp/bmpread.c:490 ../plug-ins/common/CEL.c:357 #: ../plug-ins/common/CEL.c:360 ../plug-ins/common/blinds.c:273 #: ../plug-ins/common/compose.c:625 ../plug-ins/common/decompose.c:595 #: ../plug-ins/common/dicom.c:442 ../plug-ins/common/film.c:946 -#: ../plug-ins/common/gifload.c:865 ../plug-ins/common/jpeg.c:1113 +#: ../plug-ins/common/gifload.c:864 ../plug-ins/common/jpeg.c:1113 #: ../plug-ins/common/jpeg.c:2474 ../plug-ins/common/pcx.c:334 #: ../plug-ins/common/pcx.c:340 ../plug-ins/common/pix.c:374 #: ../plug-ins/common/png.c:808 ../plug-ins/common/pnm.c:517 -#: ../plug-ins/common/psd.c:2173 ../plug-ins/common/raw.c:677 +#: ../plug-ins/common/psd.c:2174 ../plug-ins/common/raw.c:677 #: ../plug-ins/common/smooth_palette.c:257 ../plug-ins/common/sunras.c:925 #: ../plug-ins/common/tga.c:929 ../plug-ins/common/tiff.c:833 #: ../plug-ins/common/tile.c:266 ../plug-ins/common/winclipboard.c:579 @@ -1282,12 +1283,12 @@ #: ../plug-ins/common/jpeg.c:1453 ../plug-ins/common/pat.c:438 #: ../plug-ins/common/pcx.c:545 ../plug-ins/common/pix.c:521 #: ../plug-ins/common/png.c:1185 ../plug-ins/common/pnm.c:814 -#: ../plug-ins/common/postscript.c:1128 ../plug-ins/common/psd_save.c:1593 +#: ../plug-ins/common/postscript.c:1128 ../plug-ins/common/psd_save.c:1341 #: ../plug-ins/common/sunras.c:518 ../plug-ins/common/tga.c:1035 #: ../plug-ins/common/tiff.c:1815 ../plug-ins/common/xbm.c:1001 #: ../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:957 +#: ../plug-ins/sgi/sgi.c:545 ../plug-ins/winicon/icosave.c:977 #: ../plug-ins/xjt/xjt.c:1682 #, c-format msgid "Saving '%s'..." @@ -1623,7 +1624,7 @@ msgstr "Hue" #: ../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 +#: ../plug-ins/common/decompose.c:144 ../plug-ins/rcm/rcm_dialog.c:548 msgid "Saturation" msgstr "Saturation" @@ -2429,24 +2430,24 @@ msgid "Color to _Alpha..." msgstr "Colour to _Alpha..." -#: ../plug-ins/common/colortoalpha.c:181 +#: ../plug-ins/common/colortoalpha.c:187 msgid "Removing color..." msgstr "Removing colour..." -#: ../plug-ins/common/colortoalpha.c:377 +#: ../plug-ins/common/colortoalpha.c:380 msgid "Color to Alpha" msgstr "Colour to Alpha" -#: ../plug-ins/common/colortoalpha.c:402 ../plug-ins/common/mapcolor.c:424 +#: ../plug-ins/common/colortoalpha.c:405 ../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:406 +#: ../plug-ins/common/colortoalpha.c:409 msgid "Color to Alpha Color Picker" msgstr "Colour to Alpha Colour Picker" -#: ../plug-ins/common/colortoalpha.c:420 +#: ../plug-ins/common/colortoalpha.c:423 msgid "to alpha" msgstr "to alpha" @@ -2469,13 +2470,13 @@ msgstr "HSV" #. Gray: Circle: Spinbutton 1 -#: ../plug-ins/common/compose.c:148 ../plug-ins/rcm/rcm_dialog.c:452 +#: ../plug-ins/common/compose.c:148 ../plug-ins/rcm/rcm_dialog.c:459 msgid "Hue:" msgstr "Hue:" #. Gray: Circle: Spinbutton 2 #: ../plug-ins/common/compose.c:149 ../plug-ins/print/gimp_color_window.c:364 -#: ../plug-ins/rcm/rcm_dialog.c:479 +#: ../plug-ins/rcm/rcm_dialog.c:486 msgid "Saturation:" msgstr "Saturation:" @@ -3089,15 +3090,15 @@ msgid "Deinterlace..." msgstr "Deinterlace..." -#: ../plug-ins/common/deinterlace.c:315 +#: ../plug-ins/common/deinterlace.c:324 msgid "Deinterlace" msgstr "Deinterlace" -#: ../plug-ins/common/deinterlace.c:340 +#: ../plug-ins/common/deinterlace.c:349 msgid "Keep o_dd fields" msgstr "Keep o_dd fields" -#: ../plug-ins/common/deinterlace.c:341 +#: ../plug-ins/common/deinterlace.c:350 msgid "Keep _even fields" msgstr "Keep _even fields" @@ -3494,7 +3495,7 @@ #. Create selection #: ../plug-ins/common/film.c:1166 ../plug-ins/imagemap/imap_selection.c:400 -#: ../plug-ins/rcm/rcm_dialog.c:158 +#: ../plug-ins/rcm/rcm_dialog.c:165 msgid "Selection" msgstr "Selection" @@ -4031,23 +4032,23 @@ msgid "Non-square pixels. Image might look squashed." msgstr "Non-square pixels. Image might look squashed." -#: ../plug-ins/common/gifload.c:867 +#: ../plug-ins/common/gifload.c:866 #, c-format msgid "Background (%d%s)" msgstr "Background (%d%s)" -#: ../plug-ins/common/gifload.c:915 ../plug-ins/common/iwarp.c:783 +#: ../plug-ins/common/gifload.c:914 ../plug-ins/common/iwarp.c:783 #: ../plug-ins/common/iwarp.c:817 #, c-format msgid "Frame %d" msgstr "Frame %d" -#: ../plug-ins/common/gifload.c:917 +#: ../plug-ins/common/gifload.c:916 #, c-format msgid "Frame %d (%d%s)" msgstr "Frame %d (%d%s)" -#: ../plug-ins/common/gifload.c:947 +#: ../plug-ins/common/gifload.c:946 #, c-format msgid "" "GIF: Undocumented GIF composite type %d is not handled. Animation might not " @@ -5829,7 +5830,7 @@ msgid "B/W" msgstr "B/W" -#: ../plug-ins/common/postscript.c:3003 ../plug-ins/rcm/rcm_dialog.c:404 +#: ../plug-ins/common/postscript.c:3003 ../plug-ins/rcm/rcm_dialog.c:411 msgid "Gray" msgstr "Grey" @@ -5920,11 +5921,11 @@ msgid "Invalid UTF-8 string in PSD file" msgstr "Invalid UTF-8 string in PSD file" -#: ../plug-ins/common/psd_save.c:181 +#: ../plug-ins/common/psd_save.c:192 msgid "Photoshop image" msgstr "Photoshop image" -#: ../plug-ins/common/psd_save.c:1564 +#: ../plug-ins/common/psd_save.c:1312 #, c-format msgid "" "Unable to save '%s'. The psd file format does not support images that are " @@ -5933,7 +5934,7 @@ "Unable to save '%s'. The psd file format does not support images that are " "more than 30000 pixels wide or tall." -#: ../plug-ins/common/psd_save.c:1576 +#: ../plug-ins/common/psd_save.c:1324 #, c-format msgid "" "Unable to save '%s'. The psd file format does not support images with " @@ -11405,87 +11406,87 @@ msgid "Rotating the colormap..." msgstr "Rotating the colourmap..." -#: ../plug-ins/rcm/rcm_dialog.c:114 +#: ../plug-ins/rcm/rcm_dialog.c:119 msgid "Original" msgstr "Original" -#: ../plug-ins/rcm/rcm_dialog.c:127 +#: ../plug-ins/rcm/rcm_dialog.c:133 msgid "Rotated" msgstr "Rotated" -#: ../plug-ins/rcm/rcm_dialog.c:140 +#: ../plug-ins/rcm/rcm_dialog.c:147 msgid "Continuous update" msgstr "Continuous update" -#: ../plug-ins/rcm/rcm_dialog.c:153 +#: ../plug-ins/rcm/rcm_dialog.c:160 msgid "Area:" msgstr "Area:" -#: ../plug-ins/rcm/rcm_dialog.c:157 +#: ../plug-ins/rcm/rcm_dialog.c:164 msgid "Entire Layer" msgstr "Entire Layer" -#: ../plug-ins/rcm/rcm_dialog.c:159 +#: ../plug-ins/rcm/rcm_dialog.c:166 msgid "Context" msgstr "Context" #. spinbutton 1 -#: ../plug-ins/rcm/rcm_dialog.c:284 ../plug-ins/rcm/rcm_dialog.c:362 +#: ../plug-ins/rcm/rcm_dialog.c:291 ../plug-ins/rcm/rcm_dialog.c:369 msgid "From" msgstr "From" #. spinbutton 2 -#: ../plug-ins/rcm/rcm_dialog.c:310 ../plug-ins/rcm/rcm_dialog.c:363 +#: ../plug-ins/rcm/rcm_dialog.c:317 ../plug-ins/rcm/rcm_dialog.c:370 msgid "To" msgstr "To" #. * Gray: Operation-Mode * -#: ../plug-ins/rcm/rcm_dialog.c:499 +#: ../plug-ins/rcm/rcm_dialog.c:506 msgid "Gray Mode" msgstr "Grey Mode" #. Gray: Operation-Mode: two radio buttons -#: ../plug-ins/rcm/rcm_dialog.c:508 +#: ../plug-ins/rcm/rcm_dialog.c:515 msgid "Treat as this" msgstr "Treat as this" -#: ../plug-ins/rcm/rcm_dialog.c:520 +#: ../plug-ins/rcm/rcm_dialog.c:527 msgid "Change to this" msgstr "Change to this" #. * Gray: What is gray? * -#: ../plug-ins/rcm/rcm_dialog.c:533 +#: ../plug-ins/rcm/rcm_dialog.c:540 msgid "Gray Threshold" msgstr "Grey Threshold" #. * Misc: Used unit selection * -#: ../plug-ins/rcm/rcm_dialog.c:572 ../plug-ins/rcm/rcm_dialog.c:676 +#: ../plug-ins/rcm/rcm_dialog.c:579 ../plug-ins/rcm/rcm_dialog.c:683 msgid "Units" msgstr "Units" #. Misc: Used unit selection: 3 radio buttons -#: ../plug-ins/rcm/rcm_dialog.c:581 +#: ../plug-ins/rcm/rcm_dialog.c:588 msgid "Radians" msgstr "Radians" -#: ../plug-ins/rcm/rcm_dialog.c:593 +#: ../plug-ins/rcm/rcm_dialog.c:600 msgid "Radians/Pi" msgstr "Radians/Pi" -#: ../plug-ins/rcm/rcm_dialog.c:605 +#: ../plug-ins/rcm/rcm_dialog.c:612 msgid "Degrees" msgstr "Degrees" #. Create dialog -#: ../plug-ins/rcm/rcm_dialog.c:638 +#: ../plug-ins/rcm/rcm_dialog.c:645 msgid "Colormap Rotation" msgstr "Colourmap Rotation" -#: ../plug-ins/rcm/rcm_dialog.c:670 +#: ../plug-ins/rcm/rcm_dialog.c:677 msgid "Main Options" msgstr "Main Options" -#: ../plug-ins/rcm/rcm_dialog.c:673 +#: ../plug-ins/rcm/rcm_dialog.c:680 msgid "Gray Options" msgstr "Grey Options" @@ -11568,27 +11569,27 @@ msgid "Transferring TWAIN data..." msgstr "Transferring TWAIN data..." -#: ../plug-ins/winicon/icodialog.c:123 +#: ../plug-ins/winicon/icodialog.c:89 msgid "1 bpp, 1-bit alpha, 2-slot palette" msgstr "1 bpp, 1-bit alpha, 2-slot palette" -#: ../plug-ins/winicon/icodialog.c:124 +#: ../plug-ins/winicon/icodialog.c:90 msgid "4 bpp, 1-bit alpha, 16-slot palette" msgstr "4 bpp, 1-bit alpha, 16-slot palette" -#: ../plug-ins/winicon/icodialog.c:125 +#: ../plug-ins/winicon/icodialog.c:91 msgid "8 bpp, 1-bit alpha, 256-slot palette" msgstr "8 bpp, 1-bit alpha, 256-slot palette" -#: ../plug-ins/winicon/icodialog.c:126 +#: ../plug-ins/winicon/icodialog.c:92 msgid "32 bpp, 8-bit alpha, no palette" msgstr "32 bpp, 8-bit alpha, no palette" -#: ../plug-ins/winicon/icodialog.c:151 +#: ../plug-ins/winicon/icodialog.c:117 msgid "GIMP Windows Icon Plugin" msgstr "GIMP Windows Icon Plugin" -#: ../plug-ins/winicon/icodialog.c:172 +#: ../plug-ins/winicon/icodialog.c:138 msgid "Icon details" msgstr "Icon details" @@ -11597,7 +11598,7 @@ msgid "Icon #%i" msgstr "Icon #%i" -#: ../plug-ins/winicon/icosave.c:943 +#: ../plug-ins/winicon/icosave.c:969 msgid "Windows icons cannot be higher or wider than 255 pixels." msgstr "Windows icons cannot be higher or wider than 255 pixels." diff -uraN gimp-2.2.4/po-plug-ins/es.gmo gimp-2.2.5/po-plug-ins/es.gmo --- gimp-2.2.4/po-plug-ins/es.gmo 2005-02-22 23:12:42.000000000 +0100 +++ gimp-2.2.5/po-plug-ins/es.gmo 2005-04-09 23:09:29.000000000 +0200 @@ -455,7 +455,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: 2005-02-22 23:04+0100 +POT-Creation-Date: 2005-04-09 21:56+0200 PO-Revision-Date: 2005-02-06 16:03+0100 Last-Translator: Francisco Javier F. Serrador Language-Team: Spanish diff -uraN gimp-2.2.4/po-plug-ins/es.po gimp-2.2.5/po-plug-ins/es.po --- gimp-2.2.4/po-plug-ins/es.po 2005-02-22 23:12:28.000000000 +0100 +++ gimp-2.2.5/po-plug-ins/es.po 2005-04-09 23:09:13.000000000 +0200 @@ -13,7 +13,7 @@ msgstr "" "Project-Id-Version: es\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-02-22 23:04+0100\n" +"POT-Creation-Date: 2005-04-09 21:56+0200\n" "PO-Revision-Date: 2005-02-06 16:03+0100\n" "Last-Translator: Francisco Javier F. Serrador \n" "Language-Team: Spanish \n" @@ -395,7 +395,7 @@ #: ../plug-ins/common/pat.c:433 ../plug-ins/common/pcx.c:585 #: ../plug-ins/common/pix.c:515 ../plug-ins/common/png.c:1178 #: ../plug-ins/common/pnm.c:809 ../plug-ins/common/postscript.c:1123 -#: ../plug-ins/common/psd_save.c:1588 ../plug-ins/common/raw.c:517 +#: ../plug-ins/common/psd_save.c:1336 ../plug-ins/common/raw.c:517 #: ../plug-ins/common/raw.c:544 ../plug-ins/common/spheredesigner.c:2088 #: ../plug-ins/common/sunras.c:513 ../plug-ins/common/tga.c:1030 #: ../plug-ins/common/tiff.c:1810 ../plug-ins/common/xbm.c:996 @@ -1241,35 +1241,36 @@ #: ../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 +#: ../plug-ins/bmp/bmpread.c:207 ../plug-ins/bmp/bmpread.c:307 +#: ../plug-ins/bmp/bmpread.c:348 #, c-format msgid "'%s' is not a valid BMP file" msgstr "«%s» no es un archivo BMP válido" #: ../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 +#: ../plug-ins/bmp/bmpread.c:300 ../plug-ins/bmp/bmpread.c:313 +#: ../plug-ins/bmp/bmpread.c:319 #, c-format msgid "Error reading BMP file header from '%s'" msgstr "Ocurrió un error al leer cabecera del archivo BMP de «%s»" -#: ../plug-ins/bmp/bmpread.c:442 ../plug-ins/bmp/bmpread.c:477 +#: ../plug-ins/bmp/bmpread.c:450 ../plug-ins/bmp/bmpread.c:485 msgid "Unrecognized or invalid BMP compression format." msgstr "Formato de compresión BMP no reconocido o inválido." #. #. * Create the "background" layer to hold the image... #. -#: ../plug-ins/bmp/bmpread.c:482 ../plug-ins/common/CEL.c:357 +#: ../plug-ins/bmp/bmpread.c:490 ../plug-ins/common/CEL.c:357 #: ../plug-ins/common/CEL.c:360 ../plug-ins/common/blinds.c:273 #: ../plug-ins/common/compose.c:625 ../plug-ins/common/decompose.c:595 #: ../plug-ins/common/dicom.c:442 ../plug-ins/common/film.c:946 -#: ../plug-ins/common/gifload.c:865 ../plug-ins/common/jpeg.c:1113 +#: ../plug-ins/common/gifload.c:864 ../plug-ins/common/jpeg.c:1113 #: ../plug-ins/common/jpeg.c:2474 ../plug-ins/common/pcx.c:334 #: ../plug-ins/common/pcx.c:340 ../plug-ins/common/pix.c:374 #: ../plug-ins/common/png.c:808 ../plug-ins/common/pnm.c:517 -#: ../plug-ins/common/psd.c:2173 ../plug-ins/common/raw.c:677 +#: ../plug-ins/common/psd.c:2174 ../plug-ins/common/raw.c:677 #: ../plug-ins/common/smooth_palette.c:257 ../plug-ins/common/sunras.c:925 #: ../plug-ins/common/tga.c:929 ../plug-ins/common/tiff.c:833 #: ../plug-ins/common/tile.c:266 ../plug-ins/common/winclipboard.c:579 @@ -1300,12 +1301,12 @@ #: ../plug-ins/common/jpeg.c:1453 ../plug-ins/common/pat.c:438 #: ../plug-ins/common/pcx.c:545 ../plug-ins/common/pix.c:521 #: ../plug-ins/common/png.c:1185 ../plug-ins/common/pnm.c:814 -#: ../plug-ins/common/postscript.c:1128 ../plug-ins/common/psd_save.c:1593 +#: ../plug-ins/common/postscript.c:1128 ../plug-ins/common/psd_save.c:1341 #: ../plug-ins/common/sunras.c:518 ../plug-ins/common/tga.c:1035 #: ../plug-ins/common/tiff.c:1815 ../plug-ins/common/xbm.c:1001 #: ../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:957 +#: ../plug-ins/sgi/sgi.c:545 ../plug-ins/winicon/icosave.c:977 #: ../plug-ins/xjt/xjt.c:1682 #, c-format msgid "Saving '%s'..." @@ -1643,7 +1644,7 @@ msgstr "Tono" #: ../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 +#: ../plug-ins/common/decompose.c:144 ../plug-ins/rcm/rcm_dialog.c:548 msgid "Saturation" msgstr "Saturación" @@ -2457,24 +2458,24 @@ msgid "Color to _Alpha..." msgstr "Color a _alfa..." -#: ../plug-ins/common/colortoalpha.c:181 +#: ../plug-ins/common/colortoalpha.c:187 msgid "Removing color..." msgstr "Quitando color..." -#: ../plug-ins/common/colortoalpha.c:377 +#: ../plug-ins/common/colortoalpha.c:380 msgid "Color to Alpha" msgstr "Color a alfa" -#: ../plug-ins/common/colortoalpha.c:402 ../plug-ins/common/mapcolor.c:424 +#: ../plug-ins/common/colortoalpha.c:405 ../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:406 +#: ../plug-ins/common/colortoalpha.c:409 msgid "Color to Alpha Color Picker" msgstr "Selector de color para «De color a alfa»" -#: ../plug-ins/common/colortoalpha.c:420 +#: ../plug-ins/common/colortoalpha.c:423 msgid "to alpha" msgstr "a alfa" @@ -2497,13 +2498,13 @@ msgstr "HSV" #. Gray: Circle: Spinbutton 1 -#: ../plug-ins/common/compose.c:148 ../plug-ins/rcm/rcm_dialog.c:452 +#: ../plug-ins/common/compose.c:148 ../plug-ins/rcm/rcm_dialog.c:459 msgid "Hue:" msgstr "Tono:" #. Gray: Circle: Spinbutton 2 #: ../plug-ins/common/compose.c:149 ../plug-ins/print/gimp_color_window.c:364 -#: ../plug-ins/rcm/rcm_dialog.c:479 +#: ../plug-ins/rcm/rcm_dialog.c:486 msgid "Saturation:" msgstr "Saturación:" @@ -3118,15 +3119,15 @@ msgid "Deinterlace..." msgstr "Desentrelazando..." -#: ../plug-ins/common/deinterlace.c:315 +#: ../plug-ins/common/deinterlace.c:324 msgid "Deinterlace" msgstr "Desentrelazar" -#: ../plug-ins/common/deinterlace.c:340 +#: ../plug-ins/common/deinterlace.c:349 msgid "Keep o_dd fields" msgstr "Mantener los campos im_pares" -#: ../plug-ins/common/deinterlace.c:341 +#: ../plug-ins/common/deinterlace.c:350 msgid "Keep _even fields" msgstr "Mant_ener los campos pares" @@ -3527,7 +3528,7 @@ #. Create selection #: ../plug-ins/common/film.c:1166 ../plug-ins/imagemap/imap_selection.c:400 -#: ../plug-ins/rcm/rcm_dialog.c:158 +#: ../plug-ins/rcm/rcm_dialog.c:165 msgid "Selection" msgstr "Selección" @@ -4068,23 +4069,23 @@ msgid "Non-square pixels. Image might look squashed." msgstr "Píxeles no cuadrados. La imagen se verá aplastada." -#: ../plug-ins/common/gifload.c:867 +#: ../plug-ins/common/gifload.c:866 #, c-format msgid "Background (%d%s)" msgstr "Fondo (%d%s)" -#: ../plug-ins/common/gifload.c:915 ../plug-ins/common/iwarp.c:783 +#: ../plug-ins/common/gifload.c:914 ../plug-ins/common/iwarp.c:783 #: ../plug-ins/common/iwarp.c:817 #, c-format msgid "Frame %d" msgstr "Cuadro %d" -#: ../plug-ins/common/gifload.c:917 +#: ../plug-ins/common/gifload.c:916 #, c-format msgid "Frame %d (%d%s)" msgstr "Cuadro %d (%d%s)" -#: ../plug-ins/common/gifload.c:947 +#: ../plug-ins/common/gifload.c:946 #, c-format msgid "" "GIF: Undocumented GIF composite type %d is not handled. Animation might not " @@ -5873,7 +5874,7 @@ msgid "B/W" msgstr "B/N" -#: ../plug-ins/common/postscript.c:3003 ../plug-ins/rcm/rcm_dialog.c:404 +#: ../plug-ins/common/postscript.c:3003 ../plug-ins/rcm/rcm_dialog.c:411 msgid "Gray" msgstr "Gris" @@ -5964,11 +5965,11 @@ msgid "Invalid UTF-8 string in PSD file" msgstr "Cadena UTF-8 inválida en el archivo PSD" -#: ../plug-ins/common/psd_save.c:181 +#: ../plug-ins/common/psd_save.c:192 msgid "Photoshop image" msgstr "Imagen de Photoshop" -#: ../plug-ins/common/psd_save.c:1564 +#: ../plug-ins/common/psd_save.c:1312 #, c-format msgid "" "Unable to save '%s'. The psd file format does not support images that are " @@ -5977,7 +5978,7 @@ "Imposible guardar «%s». El formato de archivo psd no soporta imágenes que " "tengan más de 30000 píxeles de ancho o alto." -#: ../plug-ins/common/psd_save.c:1576 +#: ../plug-ins/common/psd_save.c:1324 #, c-format msgid "" "Unable to save '%s'. The psd file format does not support images with " @@ -11496,87 +11497,87 @@ msgid "Rotating the colormap..." msgstr "Rotando el mapa de color..." -#: ../plug-ins/rcm/rcm_dialog.c:114 +#: ../plug-ins/rcm/rcm_dialog.c:119 msgid "Original" msgstr "Original" -#: ../plug-ins/rcm/rcm_dialog.c:127 +#: ../plug-ins/rcm/rcm_dialog.c:133 msgid "Rotated" msgstr "Rotado" -#: ../plug-ins/rcm/rcm_dialog.c:140 +#: ../plug-ins/rcm/rcm_dialog.c:147 msgid "Continuous update" msgstr "Actualización continua" -#: ../plug-ins/rcm/rcm_dialog.c:153 +#: ../plug-ins/rcm/rcm_dialog.c:160 msgid "Area:" msgstr "Área:" -#: ../plug-ins/rcm/rcm_dialog.c:157 +#: ../plug-ins/rcm/rcm_dialog.c:164 msgid "Entire Layer" msgstr "Capa completa" -#: ../plug-ins/rcm/rcm_dialog.c:159 +#: ../plug-ins/rcm/rcm_dialog.c:166 msgid "Context" msgstr "Contexto" #. spinbutton 1 -#: ../plug-ins/rcm/rcm_dialog.c:284 ../plug-ins/rcm/rcm_dialog.c:362 +#: ../plug-ins/rcm/rcm_dialog.c:291 ../plug-ins/rcm/rcm_dialog.c:369 msgid "From" msgstr "Desde" #. spinbutton 2 -#: ../plug-ins/rcm/rcm_dialog.c:310 ../plug-ins/rcm/rcm_dialog.c:363 +#: ../plug-ins/rcm/rcm_dialog.c:317 ../plug-ins/rcm/rcm_dialog.c:370 msgid "To" msgstr "a" #. * Gray: Operation-Mode * -#: ../plug-ins/rcm/rcm_dialog.c:499 +#: ../plug-ins/rcm/rcm_dialog.c:506 msgid "Gray Mode" msgstr "Modo de gris" #. Gray: Operation-Mode: two radio buttons -#: ../plug-ins/rcm/rcm_dialog.c:508 +#: ../plug-ins/rcm/rcm_dialog.c:515 msgid "Treat as this" msgstr "Tratar como éste" -#: ../plug-ins/rcm/rcm_dialog.c:520 +#: ../plug-ins/rcm/rcm_dialog.c:527 msgid "Change to this" msgstr "Cambiar a éste" #. * Gray: What is gray? * -#: ../plug-ins/rcm/rcm_dialog.c:533 +#: ../plug-ins/rcm/rcm_dialog.c:540 msgid "Gray Threshold" msgstr "Umbral de gris" #. * Misc: Used unit selection * -#: ../plug-ins/rcm/rcm_dialog.c:572 ../plug-ins/rcm/rcm_dialog.c:676 +#: ../plug-ins/rcm/rcm_dialog.c:579 ../plug-ins/rcm/rcm_dialog.c:683 msgid "Units" msgstr "Unidades" #. Misc: Used unit selection: 3 radio buttons -#: ../plug-ins/rcm/rcm_dialog.c:581 +#: ../plug-ins/rcm/rcm_dialog.c:588 msgid "Radians" msgstr "Radianes" -#: ../plug-ins/rcm/rcm_dialog.c:593 +#: ../plug-ins/rcm/rcm_dialog.c:600 msgid "Radians/Pi" msgstr "Radiantes/PI" -#: ../plug-ins/rcm/rcm_dialog.c:605 +#: ../plug-ins/rcm/rcm_dialog.c:612 msgid "Degrees" msgstr "Grados" #. Create dialog -#: ../plug-ins/rcm/rcm_dialog.c:638 +#: ../plug-ins/rcm/rcm_dialog.c:645 msgid "Colormap Rotation" msgstr "Rotación de mapa de color" -#: ../plug-ins/rcm/rcm_dialog.c:670 +#: ../plug-ins/rcm/rcm_dialog.c:677 msgid "Main Options" msgstr "Opciones principales" -#: ../plug-ins/rcm/rcm_dialog.c:673 +#: ../plug-ins/rcm/rcm_dialog.c:680 msgid "Gray Options" msgstr "Opciones de gris" @@ -11659,27 +11660,27 @@ msgid "Transferring TWAIN data..." msgstr "Transfiriendo datos TWAIN..." -#: ../plug-ins/winicon/icodialog.c:123 +#: ../plug-ins/winicon/icodialog.c:89 msgid "1 bpp, 1-bit alpha, 2-slot palette" msgstr "1 bpp, 1-bit alpha, 2-slot palette" -#: ../plug-ins/winicon/icodialog.c:124 +#: ../plug-ins/winicon/icodialog.c:90 msgid "4 bpp, 1-bit alpha, 16-slot palette" msgstr "4 bpp, 1-bit alpha, 16-slot palette" -#: ../plug-ins/winicon/icodialog.c:125 +#: ../plug-ins/winicon/icodialog.c:91 msgid "8 bpp, 1-bit alpha, 256-slot palette" msgstr "8 bpp, 1-bit alpha, 256-slot palette" -#: ../plug-ins/winicon/icodialog.c:126 +#: ../plug-ins/winicon/icodialog.c:92 msgid "32 bpp, 8-bit alpha, no palette" msgstr "32 bpp, 8-bit alpha, no palette" -#: ../plug-ins/winicon/icodialog.c:151 +#: ../plug-ins/winicon/icodialog.c:117 msgid "GIMP Windows Icon Plugin" msgstr "Complemento de iconos para Windows de Gimp" -#: ../plug-ins/winicon/icodialog.c:172 +#: ../plug-ins/winicon/icodialog.c:138 msgid "Icon details" msgstr "Detalles del icono" @@ -11688,7 +11689,7 @@ msgid "Icon #%i" msgstr "Icono #%i" -#: ../plug-ins/winicon/icosave.c:943 +#: ../plug-ins/winicon/icosave.c:969 msgid "Windows icons cannot be higher or wider than 255 pixels." msgstr "" "Los iconos de Windows no pueden ser mayores o más anchos de 255píxeles." diff -uraN gimp-2.2.4/po-plug-ins/eu.gmo gimp-2.2.5/po-plug-ins/eu.gmo --- gimp-2.2.4/po-plug-ins/eu.gmo 2005-02-22 23:12:42.000000000 +0100 +++ gimp-2.2.5/po-plug-ins/eu.gmo 2005-04-09 23:09:29.000000000 +0200 @@ -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: 2005-02-22 23:04+0100 +POT-Creation-Date: 2005-04-09 21:56+0200 PO-Revision-Date: 2004-04-06 19:23+0200 Last-Translator: Iñaki Larrañaga Murgoitio Language-Team: Basque diff -uraN gimp-2.2.4/po-plug-ins/eu.po gimp-2.2.5/po-plug-ins/eu.po --- gimp-2.2.4/po-plug-ins/eu.po 2005-02-22 23:12:28.000000000 +0100 +++ gimp-2.2.5/po-plug-ins/eu.po 2005-04-09 23:09:14.000000000 +0200 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: eu\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-02-22 23:04+0100\n" +"POT-Creation-Date: 2005-04-09 21:56+0200\n" "PO-Revision-Date: 2004-04-06 19:23+0200\n" "Last-Translator: Iñaki Larrañaga Murgoitio \n" "Language-Team: Basque \n" @@ -389,7 +389,7 @@ #: ../plug-ins/common/pat.c:433 ../plug-ins/common/pcx.c:585 #: ../plug-ins/common/pix.c:515 ../plug-ins/common/png.c:1178 #: ../plug-ins/common/pnm.c:809 ../plug-ins/common/postscript.c:1123 -#: ../plug-ins/common/psd_save.c:1588 ../plug-ins/common/raw.c:517 +#: ../plug-ins/common/psd_save.c:1336 ../plug-ins/common/raw.c:517 #: ../plug-ins/common/raw.c:544 ../plug-ins/common/spheredesigner.c:2088 #: ../plug-ins/common/sunras.c:513 ../plug-ins/common/tga.c:1030 #: ../plug-ins/common/tiff.c:1810 ../plug-ins/common/xbm.c:996 @@ -1275,35 +1275,36 @@ #: ../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 +#: ../plug-ins/bmp/bmpread.c:207 ../plug-ins/bmp/bmpread.c:307 +#: ../plug-ins/bmp/bmpread.c:348 #, c-format msgid "'%s' is not a valid BMP file" msgstr "'%s' ez da baliozko BMP fitxategia." #: ../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 +#: ../plug-ins/bmp/bmpread.c:300 ../plug-ins/bmp/bmpread.c:313 +#: ../plug-ins/bmp/bmpread.c:319 #, c-format msgid "Error reading BMP file header from '%s'" msgstr "Errorea BMP fitxategi-goiburua '%s'tik irakurtzean" -#: ../plug-ins/bmp/bmpread.c:442 ../plug-ins/bmp/bmpread.c:477 +#: ../plug-ins/bmp/bmpread.c:450 ../plug-ins/bmp/bmpread.c:485 msgid "Unrecognized or invalid BMP compression format." msgstr "" #. #. * Create the "background" layer to hold the image... #. -#: ../plug-ins/bmp/bmpread.c:482 ../plug-ins/common/CEL.c:357 +#: ../plug-ins/bmp/bmpread.c:490 ../plug-ins/common/CEL.c:357 #: ../plug-ins/common/CEL.c:360 ../plug-ins/common/blinds.c:273 #: ../plug-ins/common/compose.c:625 ../plug-ins/common/decompose.c:595 #: ../plug-ins/common/dicom.c:442 ../plug-ins/common/film.c:946 -#: ../plug-ins/common/gifload.c:865 ../plug-ins/common/jpeg.c:1113 +#: ../plug-ins/common/gifload.c:864 ../plug-ins/common/jpeg.c:1113 #: ../plug-ins/common/jpeg.c:2474 ../plug-ins/common/pcx.c:334 #: ../plug-ins/common/pcx.c:340 ../plug-ins/common/pix.c:374 #: ../plug-ins/common/png.c:808 ../plug-ins/common/pnm.c:517 -#: ../plug-ins/common/psd.c:2173 ../plug-ins/common/raw.c:677 +#: ../plug-ins/common/psd.c:2174 ../plug-ins/common/raw.c:677 #: ../plug-ins/common/smooth_palette.c:257 ../plug-ins/common/sunras.c:925 #: ../plug-ins/common/tga.c:929 ../plug-ins/common/tiff.c:833 #: ../plug-ins/common/tile.c:266 ../plug-ins/common/winclipboard.c:579 @@ -1334,12 +1335,12 @@ #: ../plug-ins/common/jpeg.c:1453 ../plug-ins/common/pat.c:438 #: ../plug-ins/common/pcx.c:545 ../plug-ins/common/pix.c:521 #: ../plug-ins/common/png.c:1185 ../plug-ins/common/pnm.c:814 -#: ../plug-ins/common/postscript.c:1128 ../plug-ins/common/psd_save.c:1593 +#: ../plug-ins/common/postscript.c:1128 ../plug-ins/common/psd_save.c:1341 #: ../plug-ins/common/sunras.c:518 ../plug-ins/common/tga.c:1035 #: ../plug-ins/common/tiff.c:1815 ../plug-ins/common/xbm.c:1001 #: ../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:957 +#: ../plug-ins/sgi/sgi.c:545 ../plug-ins/winicon/icosave.c:977 #: ../plug-ins/xjt/xjt.c:1682 #, c-format msgid "Saving '%s'..." @@ -1696,7 +1697,7 @@ msgstr "�bardura" #: ../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 +#: ../plug-ins/common/decompose.c:144 ../plug-ins/rcm/rcm_dialog.c:548 msgid "Saturation" msgstr "Saturazioa" @@ -2581,24 +2582,24 @@ msgid "Color to _Alpha..." msgstr "Kolorea alfara" -#: ../plug-ins/common/colortoalpha.c:181 +#: ../plug-ins/common/colortoalpha.c:187 msgid "Removing color..." msgstr "Kolorea kentzen..." -#: ../plug-ins/common/colortoalpha.c:377 +#: ../plug-ins/common/colortoalpha.c:380 msgid "Color to Alpha" msgstr "Kolorea alfara" -#: ../plug-ins/common/colortoalpha.c:402 ../plug-ins/common/mapcolor.c:424 +#: ../plug-ins/common/colortoalpha.c:405 ../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:406 +#: ../plug-ins/common/colortoalpha.c:409 msgid "Color to Alpha Color Picker" msgstr "Kolorea alfara: kolore-hautatzailea" -#: ../plug-ins/common/colortoalpha.c:420 +#: ../plug-ins/common/colortoalpha.c:423 #, fuzzy msgid "to alpha" msgstr "alfara" @@ -2622,13 +2623,13 @@ msgstr "HSV" #. Gray: Circle: Spinbutton 1 -#: ../plug-ins/common/compose.c:148 ../plug-ins/rcm/rcm_dialog.c:452 +#: ../plug-ins/common/compose.c:148 ../plug-ins/rcm/rcm_dialog.c:459 msgid "Hue:" msgstr "�bardura:" #. Gray: Circle: Spinbutton 2 #: ../plug-ins/common/compose.c:149 ../plug-ins/print/gimp_color_window.c:364 -#: ../plug-ins/rcm/rcm_dialog.c:479 +#: ../plug-ins/rcm/rcm_dialog.c:486 msgid "Saturation:" msgstr "Saturazioa:" @@ -3269,16 +3270,16 @@ msgid "Deinterlace..." msgstr "Gurutzelarkatuak bereizi..." -#: ../plug-ins/common/deinterlace.c:315 +#: ../plug-ins/common/deinterlace.c:324 msgid "Deinterlace" msgstr "Gurutzelarkatuak bereizi" -#: ../plug-ins/common/deinterlace.c:340 +#: ../plug-ins/common/deinterlace.c:349 #, fuzzy msgid "Keep o_dd fields" msgstr "Mantendu eremu bakoitiak" -#: ../plug-ins/common/deinterlace.c:341 +#: ../plug-ins/common/deinterlace.c:350 #, fuzzy msgid "Keep _even fields" msgstr "Mantendu eremu _bikoitiak " @@ -3721,7 +3722,7 @@ #. Create selection #: ../plug-ins/common/film.c:1166 ../plug-ins/imagemap/imap_selection.c:400 -#: ../plug-ins/rcm/rcm_dialog.c:158 +#: ../plug-ins/rcm/rcm_dialog.c:165 msgid "Selection" msgstr "Hautapena" @@ -4292,23 +4293,23 @@ msgid "Non-square pixels. Image might look squashed." msgstr "Pixel ez-laukiak: irudia zapalduta ikusiko da." -#: ../plug-ins/common/gifload.c:867 +#: ../plug-ins/common/gifload.c:866 #, c-format msgid "Background (%d%s)" msgstr "Atzeko planoa (%d%s)" -#: ../plug-ins/common/gifload.c:915 ../plug-ins/common/iwarp.c:783 +#: ../plug-ins/common/gifload.c:914 ../plug-ins/common/iwarp.c:783 #: ../plug-ins/common/iwarp.c:817 #, c-format msgid "Frame %d" msgstr "%d markoa " -#: ../plug-ins/common/gifload.c:917 +#: ../plug-ins/common/gifload.c:916 #, c-format msgid "Frame %d (%d%s)" msgstr "%d markoa (%d%s)" -#: ../plug-ins/common/gifload.c:947 +#: ../plug-ins/common/gifload.c:946 #, c-format msgid "" "GIF: Undocumented GIF composite type %d is not handled. Animation might not " @@ -6238,7 +6239,7 @@ msgid "B/W" msgstr "Z/B" -#: ../plug-ins/common/postscript.c:3003 ../plug-ins/rcm/rcm_dialog.c:404 +#: ../plug-ins/common/postscript.c:3003 ../plug-ins/rcm/rcm_dialog.c:411 msgid "Gray" msgstr "Grisa" @@ -6334,18 +6335,18 @@ msgid "Invalid UTF-8 string in PSD file" msgstr "UTF-8 kate baliogabea PSD fitxategian" -#: ../plug-ins/common/psd_save.c:181 +#: ../plug-ins/common/psd_save.c:192 msgid "Photoshop image" msgstr "" -#: ../plug-ins/common/psd_save.c:1564 +#: ../plug-ins/common/psd_save.c:1312 #, c-format msgid "" "Unable to save '%s'. The psd file format does not support images that are " "more than 30000 pixels wide or tall." msgstr "" -#: ../plug-ins/common/psd_save.c:1576 +#: ../plug-ins/common/psd_save.c:1324 #, c-format msgid "" "Unable to save '%s'. The psd file format does not support images with " @@ -12132,89 +12133,89 @@ msgid "Rotating the colormap..." msgstr "Kolore-mapa biratzen..." -#: ../plug-ins/rcm/rcm_dialog.c:114 +#: ../plug-ins/rcm/rcm_dialog.c:119 msgid "Original" msgstr "Originala" -#: ../plug-ins/rcm/rcm_dialog.c:127 +#: ../plug-ins/rcm/rcm_dialog.c:133 msgid "Rotated" msgstr "Biratuta" -#: ../plug-ins/rcm/rcm_dialog.c:140 +#: ../plug-ins/rcm/rcm_dialog.c:147 msgid "Continuous update" msgstr "Etengabeko eguneratzea" -#: ../plug-ins/rcm/rcm_dialog.c:153 +#: ../plug-ins/rcm/rcm_dialog.c:160 msgid "Area:" msgstr "Area:" -#: ../plug-ins/rcm/rcm_dialog.c:157 +#: ../plug-ins/rcm/rcm_dialog.c:164 msgid "Entire Layer" msgstr "Geruza osoa" -#: ../plug-ins/rcm/rcm_dialog.c:159 +#: ../plug-ins/rcm/rcm_dialog.c:166 msgid "Context" msgstr "Testuingurua" #. spinbutton 1 -#: ../plug-ins/rcm/rcm_dialog.c:284 ../plug-ins/rcm/rcm_dialog.c:362 +#: ../plug-ins/rcm/rcm_dialog.c:291 ../plug-ins/rcm/rcm_dialog.c:369 msgid "From" msgstr "Nondik" #. spinbutton 2 -#: ../plug-ins/rcm/rcm_dialog.c:310 ../plug-ins/rcm/rcm_dialog.c:363 +#: ../plug-ins/rcm/rcm_dialog.c:317 ../plug-ins/rcm/rcm_dialog.c:370 msgid "To" msgstr "Nora" #. * Gray: Operation-Mode * -#: ../plug-ins/rcm/rcm_dialog.c:499 +#: ../plug-ins/rcm/rcm_dialog.c:506 #, fuzzy msgid "Gray Mode" msgstr "Kolore-modua" #. Gray: Operation-Mode: two radio buttons -#: ../plug-ins/rcm/rcm_dialog.c:508 +#: ../plug-ins/rcm/rcm_dialog.c:515 msgid "Treat as this" msgstr "Tratatu hau bezala" -#: ../plug-ins/rcm/rcm_dialog.c:520 +#: ../plug-ins/rcm/rcm_dialog.c:527 msgid "Change to this" msgstr "Aldatu honetara" #. * Gray: What is gray? * -#: ../plug-ins/rcm/rcm_dialog.c:533 +#: ../plug-ins/rcm/rcm_dialog.c:540 #, fuzzy msgid "Gray Threshold" msgstr "Muga _berdea:" #. * Misc: Used unit selection * -#: ../plug-ins/rcm/rcm_dialog.c:572 ../plug-ins/rcm/rcm_dialog.c:676 +#: ../plug-ins/rcm/rcm_dialog.c:579 ../plug-ins/rcm/rcm_dialog.c:683 msgid "Units" msgstr "Unitateak" #. Misc: Used unit selection: 3 radio buttons -#: ../plug-ins/rcm/rcm_dialog.c:581 +#: ../plug-ins/rcm/rcm_dialog.c:588 msgid "Radians" msgstr "Radianak" -#: ../plug-ins/rcm/rcm_dialog.c:593 +#: ../plug-ins/rcm/rcm_dialog.c:600 msgid "Radians/Pi" msgstr "Radian/Pi" -#: ../plug-ins/rcm/rcm_dialog.c:605 +#: ../plug-ins/rcm/rcm_dialog.c:612 msgid "Degrees" msgstr "Graduak" #. Create dialog -#: ../plug-ins/rcm/rcm_dialog.c:638 +#: ../plug-ins/rcm/rcm_dialog.c:645 msgid "Colormap Rotation" msgstr "Kolore-maparen biraketa" -#: ../plug-ins/rcm/rcm_dialog.c:670 +#: ../plug-ins/rcm/rcm_dialog.c:677 msgid "Main Options" msgstr "Aukera nagusiak" -#: ../plug-ins/rcm/rcm_dialog.c:673 +#: ../plug-ins/rcm/rcm_dialog.c:680 #, fuzzy msgid "Gray Options" msgstr "Aukera orokorrak" @@ -12302,27 +12303,27 @@ msgid "Transferring TWAIN data..." msgstr "TWAIN datuak transferitzen..." -#: ../plug-ins/winicon/icodialog.c:123 +#: ../plug-ins/winicon/icodialog.c:89 msgid "1 bpp, 1-bit alpha, 2-slot palette" msgstr "" -#: ../plug-ins/winicon/icodialog.c:124 +#: ../plug-ins/winicon/icodialog.c:90 msgid "4 bpp, 1-bit alpha, 16-slot palette" msgstr "" -#: ../plug-ins/winicon/icodialog.c:125 +#: ../plug-ins/winicon/icodialog.c:91 msgid "8 bpp, 1-bit alpha, 256-slot palette" msgstr "" -#: ../plug-ins/winicon/icodialog.c:126 +#: ../plug-ins/winicon/icodialog.c:92 msgid "32 bpp, 8-bit alpha, no palette" msgstr "" -#: ../plug-ins/winicon/icodialog.c:151 +#: ../plug-ins/winicon/icodialog.c:117 msgid "GIMP Windows Icon Plugin" msgstr "" -#: ../plug-ins/winicon/icodialog.c:172 +#: ../plug-ins/winicon/icodialog.c:138 #, fuzzy msgid "Icon details" msgstr "Bildumaren xehetasunak" @@ -12332,7 +12333,7 @@ msgid "Icon #%i" msgstr "" -#: ../plug-ins/winicon/icosave.c:943 +#: ../plug-ins/winicon/icosave.c:969 msgid "Windows icons cannot be higher or wider than 255 pixels." msgstr "" diff -uraN gimp-2.2.4/po-plug-ins/fi.gmo gimp-2.2.5/po-plug-ins/fi.gmo --- gimp-2.2.4/po-plug-ins/fi.gmo 2005-02-22 23:12:42.000000000 +0100 +++ gimp-2.2.5/po-plug-ins/fi.gmo 2005-04-09 23:09:29.000000000 +0200 @@ -316,7 +316,7 @@ 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.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: 2005-02-22 23:04+0100 +POT-Creation-Date: 2005-04-09 21:56+0200 PO-Revision-Date: 2004-12-18 05:22+0200 Last-Translator: Mikko Paananen Language-Team: Finnish diff -uraN gimp-2.2.4/po-plug-ins/fi.po gimp-2.2.5/po-plug-ins/fi.po --- gimp-2.2.4/po-plug-ins/fi.po 2005-02-22 23:12:29.000000000 +0100 +++ gimp-2.2.5/po-plug-ins/fi.po 2005-04-09 23:09:14.000000000 +0200 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: gimp-plug-ins 1.1.26\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-02-22 23:04+0100\n" +"POT-Creation-Date: 2005-04-09 21:56+0200\n" "PO-Revision-Date: 2004-12-18 05:22+0200\n" "Last-Translator: Mikko Paananen \n" "Language-Team: Finnish \n" @@ -381,7 +381,7 @@ #: ../plug-ins/common/pat.c:433 ../plug-ins/common/pcx.c:585 #: ../plug-ins/common/pix.c:515 ../plug-ins/common/png.c:1178 #: ../plug-ins/common/pnm.c:809 ../plug-ins/common/postscript.c:1123 -#: ../plug-ins/common/psd_save.c:1588 ../plug-ins/common/raw.c:517 +#: ../plug-ins/common/psd_save.c:1336 ../plug-ins/common/raw.c:517 #: ../plug-ins/common/raw.c:544 ../plug-ins/common/spheredesigner.c:2088 #: ../plug-ins/common/sunras.c:513 ../plug-ins/common/tga.c:1030 #: ../plug-ins/common/tiff.c:1810 ../plug-ins/common/xbm.c:996 @@ -1218,35 +1218,36 @@ #: ../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 +#: ../plug-ins/bmp/bmpread.c:207 ../plug-ins/bmp/bmpread.c:307 +#: ../plug-ins/bmp/bmpread.c:348 #, c-format msgid "'%s' is not a valid BMP file" msgstr "'%s' ei ole kelvollinen BMP-tiedosto" #: ../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 +#: ../plug-ins/bmp/bmpread.c:300 ../plug-ins/bmp/bmpread.c:313 +#: ../plug-ins/bmp/bmpread.c:319 #, c-format msgid "Error reading BMP file header from '%s'" msgstr "Virhe luettaessa BMP-tiedoston \"%s\" otsikkoa" -#: ../plug-ins/bmp/bmpread.c:442 ../plug-ins/bmp/bmpread.c:477 +#: ../plug-ins/bmp/bmpread.c:450 ../plug-ins/bmp/bmpread.c:485 msgid "Unrecognized or invalid BMP compression format." msgstr "Tunnistamaton BMP pakkaustapa." #. #. * Create the "background" layer to hold the image... #. -#: ../plug-ins/bmp/bmpread.c:482 ../plug-ins/common/CEL.c:357 +#: ../plug-ins/bmp/bmpread.c:490 ../plug-ins/common/CEL.c:357 #: ../plug-ins/common/CEL.c:360 ../plug-ins/common/blinds.c:273 #: ../plug-ins/common/compose.c:625 ../plug-ins/common/decompose.c:595 #: ../plug-ins/common/dicom.c:442 ../plug-ins/common/film.c:946 -#: ../plug-ins/common/gifload.c:865 ../plug-ins/common/jpeg.c:1113 +#: ../plug-ins/common/gifload.c:864 ../plug-ins/common/jpeg.c:1113 #: ../plug-ins/common/jpeg.c:2474 ../plug-ins/common/pcx.c:334 #: ../plug-ins/common/pcx.c:340 ../plug-ins/common/pix.c:374 #: ../plug-ins/common/png.c:808 ../plug-ins/common/pnm.c:517 -#: ../plug-ins/common/psd.c:2173 ../plug-ins/common/raw.c:677 +#: ../plug-ins/common/psd.c:2174 ../plug-ins/common/raw.c:677 #: ../plug-ins/common/smooth_palette.c:257 ../plug-ins/common/sunras.c:925 #: ../plug-ins/common/tga.c:929 ../plug-ins/common/tiff.c:833 #: ../plug-ins/common/tile.c:266 ../plug-ins/common/winclipboard.c:579 @@ -1277,12 +1278,12 @@ #: ../plug-ins/common/jpeg.c:1453 ../plug-ins/common/pat.c:438 #: ../plug-ins/common/pcx.c:545 ../plug-ins/common/pix.c:521 #: ../plug-ins/common/png.c:1185 ../plug-ins/common/pnm.c:814 -#: ../plug-ins/common/postscript.c:1128 ../plug-ins/common/psd_save.c:1593 +#: ../plug-ins/common/postscript.c:1128 ../plug-ins/common/psd_save.c:1341 #: ../plug-ins/common/sunras.c:518 ../plug-ins/common/tga.c:1035 #: ../plug-ins/common/tiff.c:1815 ../plug-ins/common/xbm.c:1001 #: ../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:957 +#: ../plug-ins/sgi/sgi.c:545 ../plug-ins/winicon/icosave.c:977 #: ../plug-ins/xjt/xjt.c:1682 #, c-format msgid "Saving '%s'..." @@ -1618,7 +1619,7 @@ msgstr "Sävy" #: ../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 +#: ../plug-ins/common/decompose.c:144 ../plug-ins/rcm/rcm_dialog.c:548 msgid "Saturation" msgstr "Saturaatio" @@ -2420,24 +2421,24 @@ msgid "Color to _Alpha..." msgstr "Väri -> Alfa..." -#: ../plug-ins/common/colortoalpha.c:181 +#: ../plug-ins/common/colortoalpha.c:187 msgid "Removing color..." msgstr "Poistetaan väri..." -#: ../plug-ins/common/colortoalpha.c:377 +#: ../plug-ins/common/colortoalpha.c:380 msgid "Color to Alpha" msgstr "Väri -> Alfa" -#: ../plug-ins/common/colortoalpha.c:402 ../plug-ins/common/mapcolor.c:424 +#: ../plug-ins/common/colortoalpha.c:405 ../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:406 +#: ../plug-ins/common/colortoalpha.c:409 msgid "Color to Alpha Color Picker" msgstr "Väri -> Alfa värivalitsin" -#: ../plug-ins/common/colortoalpha.c:420 +#: ../plug-ins/common/colortoalpha.c:423 msgid "to alpha" msgstr "alfakanavaksi" @@ -2460,13 +2461,13 @@ msgstr "HSV" #. Gray: Circle: Spinbutton 1 -#: ../plug-ins/common/compose.c:148 ../plug-ins/rcm/rcm_dialog.c:452 +#: ../plug-ins/common/compose.c:148 ../plug-ins/rcm/rcm_dialog.c:459 msgid "Hue:" msgstr "Sävy:" #. Gray: Circle: Spinbutton 2 #: ../plug-ins/common/compose.c:149 ../plug-ins/print/gimp_color_window.c:364 -#: ../plug-ins/rcm/rcm_dialog.c:479 +#: ../plug-ins/rcm/rcm_dialog.c:486 msgid "Saturation:" msgstr "Kylläisyys:" @@ -3080,15 +3081,15 @@ msgid "Deinterlace..." msgstr "Lomituksen poisto..." -#: ../plug-ins/common/deinterlace.c:315 +#: ../plug-ins/common/deinterlace.c:324 msgid "Deinterlace" msgstr "Lomituksen poisto" -#: ../plug-ins/common/deinterlace.c:340 +#: ../plug-ins/common/deinterlace.c:349 msgid "Keep o_dd fields" msgstr "Säilytä parittomat kentät" -#: ../plug-ins/common/deinterlace.c:341 +#: ../plug-ins/common/deinterlace.c:350 msgid "Keep _even fields" msgstr "Säilytä parilliset kentät" @@ -3485,7 +3486,7 @@ #. Create selection #: ../plug-ins/common/film.c:1166 ../plug-ins/imagemap/imap_selection.c:400 -#: ../plug-ins/rcm/rcm_dialog.c:158 +#: ../plug-ins/rcm/rcm_dialog.c:165 msgid "Selection" msgstr "Valinta" @@ -4011,23 +4012,23 @@ msgid "Non-square pixels. Image might look squashed." msgstr "Pikselisuhde ei ole neliömäinen. Kuva voi näyttää litistyneeltä." -#: ../plug-ins/common/gifload.c:867 +#: ../plug-ins/common/gifload.c:866 #, c-format msgid "Background (%d%s)" msgstr "Tausta (%d%s)" -#: ../plug-ins/common/gifload.c:915 ../plug-ins/common/iwarp.c:783 +#: ../plug-ins/common/gifload.c:914 ../plug-ins/common/iwarp.c:783 #: ../plug-ins/common/iwarp.c:817 #, c-format msgid "Frame %d" msgstr "Ruutu %d" -#: ../plug-ins/common/gifload.c:917 +#: ../plug-ins/common/gifload.c:916 #, c-format msgid "Frame %d (%d%s)" msgstr "Ruutu %d (%d%s)" -#: ../plug-ins/common/gifload.c:947 +#: ../plug-ins/common/gifload.c:946 #, c-format msgid "" "GIF: Undocumented GIF composite type %d is not handled. Animation might not " @@ -5797,7 +5798,7 @@ msgid "B/W" msgstr "Mustavalko" -#: ../plug-ins/common/postscript.c:3003 ../plug-ins/rcm/rcm_dialog.c:404 +#: ../plug-ins/common/postscript.c:3003 ../plug-ins/rcm/rcm_dialog.c:411 msgid "Gray" msgstr "Harmaasävy" @@ -5888,18 +5889,18 @@ msgid "Invalid UTF-8 string in PSD file" msgstr "Virheellinen unicode merkkijono PSD tiedostossa" -#: ../plug-ins/common/psd_save.c:181 +#: ../plug-ins/common/psd_save.c:192 msgid "Photoshop image" msgstr "" -#: ../plug-ins/common/psd_save.c:1564 +#: ../plug-ins/common/psd_save.c:1312 #, c-format msgid "" "Unable to save '%s'. The psd file format does not support images that are " "more than 30000 pixels wide or tall." msgstr "" -#: ../plug-ins/common/psd_save.c:1576 +#: ../plug-ins/common/psd_save.c:1324 #, c-format msgid "" "Unable to save '%s'. The psd file format does not support images with " @@ -11321,87 +11322,87 @@ msgid "Rotating the colormap..." msgstr "Kierretään värikarttaa..." -#: ../plug-ins/rcm/rcm_dialog.c:114 +#: ../plug-ins/rcm/rcm_dialog.c:119 msgid "Original" msgstr "Alkuperäinen" -#: ../plug-ins/rcm/rcm_dialog.c:127 +#: ../plug-ins/rcm/rcm_dialog.c:133 msgid "Rotated" msgstr "Kierretty" -#: ../plug-ins/rcm/rcm_dialog.c:140 +#: ../plug-ins/rcm/rcm_dialog.c:147 msgid "Continuous update" msgstr "Jatkuva päivitys" -#: ../plug-ins/rcm/rcm_dialog.c:153 +#: ../plug-ins/rcm/rcm_dialog.c:160 msgid "Area:" msgstr "Alue:" -#: ../plug-ins/rcm/rcm_dialog.c:157 +#: ../plug-ins/rcm/rcm_dialog.c:164 msgid "Entire Layer" msgstr "Koko taso" -#: ../plug-ins/rcm/rcm_dialog.c:159 +#: ../plug-ins/rcm/rcm_dialog.c:166 msgid "Context" msgstr "Sisältö" #. spinbutton 1 -#: ../plug-ins/rcm/rcm_dialog.c:284 ../plug-ins/rcm/rcm_dialog.c:362 +#: ../plug-ins/rcm/rcm_dialog.c:291 ../plug-ins/rcm/rcm_dialog.c:369 msgid "From" msgstr "Mistä" #. spinbutton 2 -#: ../plug-ins/rcm/rcm_dialog.c:310 ../plug-ins/rcm/rcm_dialog.c:363 +#: ../plug-ins/rcm/rcm_dialog.c:317 ../plug-ins/rcm/rcm_dialog.c:370 msgid "To" msgstr "Mihin" #. * Gray: Operation-Mode * -#: ../plug-ins/rcm/rcm_dialog.c:499 +#: ../plug-ins/rcm/rcm_dialog.c:506 msgid "Gray Mode" msgstr "Harmaasävytila" #. Gray: Operation-Mode: two radio buttons -#: ../plug-ins/rcm/rcm_dialog.c:508 +#: ../plug-ins/rcm/rcm_dialog.c:515 msgid "Treat as this" msgstr "" -#: ../plug-ins/rcm/rcm_dialog.c:520 +#: ../plug-ins/rcm/rcm_dialog.c:527 msgid "Change to this" msgstr "" #. * Gray: What is gray? * -#: ../plug-ins/rcm/rcm_dialog.c:533 +#: ../plug-ins/rcm/rcm_dialog.c:540 msgid "Gray Threshold" msgstr "Harmaan kynnysarvo" #. * Misc: Used unit selection * -#: ../plug-ins/rcm/rcm_dialog.c:572 ../plug-ins/rcm/rcm_dialog.c:676 +#: ../plug-ins/rcm/rcm_dialog.c:579 ../plug-ins/rcm/rcm_dialog.c:683 msgid "Units" msgstr "Yksikkö" #. Misc: Used unit selection: 3 radio buttons -#: ../plug-ins/rcm/rcm_dialog.c:581 +#: ../plug-ins/rcm/rcm_dialog.c:588 msgid "Radians" msgstr "Radiaania" -#: ../plug-ins/rcm/rcm_dialog.c:593 +#: ../plug-ins/rcm/rcm_dialog.c:600 msgid "Radians/Pi" msgstr "Radiaania/pii" -#: ../plug-ins/rcm/rcm_dialog.c:605 +#: ../plug-ins/rcm/rcm_dialog.c:612 msgid "Degrees" msgstr "Astetta" #. Create dialog -#: ../plug-ins/rcm/rcm_dialog.c:638 +#: ../plug-ins/rcm/rcm_dialog.c:645 msgid "Colormap Rotation" msgstr "" -#: ../plug-ins/rcm/rcm_dialog.c:670 +#: ../plug-ins/rcm/rcm_dialog.c:677 msgid "Main Options" msgstr "Pääasetukset" -#: ../plug-ins/rcm/rcm_dialog.c:673 +#: ../plug-ins/rcm/rcm_dialog.c:680 msgid "Gray Options" msgstr "Harmaa-asetukset" @@ -11484,27 +11485,27 @@ msgid "Transferring TWAIN data..." msgstr "Siirretään TWAIN data..." -#: ../plug-ins/winicon/icodialog.c:123 +#: ../plug-ins/winicon/icodialog.c:89 msgid "1 bpp, 1-bit alpha, 2-slot palette" msgstr "" -#: ../plug-ins/winicon/icodialog.c:124 +#: ../plug-ins/winicon/icodialog.c:90 msgid "4 bpp, 1-bit alpha, 16-slot palette" msgstr "" -#: ../plug-ins/winicon/icodialog.c:125 +#: ../plug-ins/winicon/icodialog.c:91 msgid "8 bpp, 1-bit alpha, 256-slot palette" msgstr "" -#: ../plug-ins/winicon/icodialog.c:126 +#: ../plug-ins/winicon/icodialog.c:92 msgid "32 bpp, 8-bit alpha, no palette" msgstr "" -#: ../plug-ins/winicon/icodialog.c:151 +#: ../plug-ins/winicon/icodialog.c:117 msgid "GIMP Windows Icon Plugin" msgstr "" -#: ../plug-ins/winicon/icodialog.c:172 +#: ../plug-ins/winicon/icodialog.c:138 msgid "Icon details" msgstr "" @@ -11513,7 +11514,7 @@ msgid "Icon #%i" msgstr "" -#: ../plug-ins/winicon/icosave.c:943 +#: ../plug-ins/winicon/icosave.c:969 msgid "Windows icons cannot be higher or wider than 255 pixels." msgstr "" diff -uraN gimp-2.2.4/po-plug-ins/fr.gmo gimp-2.2.5/po-plug-ins/fr.gmo --- gimp-2.2.4/po-plug-ins/fr.gmo 2005-02-22 23:12:42.000000000 +0100 +++ gimp-2.2.5/po-plug-ins/fr.gmo 2005-04-09 23:09:29.000000000 +0200 @@ -451,7 +451,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: fr Report-Msgid-Bugs-To: -POT-Creation-Date: 2005-02-22 23:04+0100 +POT-Creation-Date: 2005-04-09 21:56+0200 PO-Revision-Date: 2005-01-25 20:11+0100 Last-Translator: Language-Team: diff -uraN gimp-2.2.4/po-plug-ins/fr.po gimp-2.2.5/po-plug-ins/fr.po --- gimp-2.2.4/po-plug-ins/fr.po 2005-02-22 23:12:29.000000000 +0100 +++ gimp-2.2.5/po-plug-ins/fr.po 2005-04-09 23:09:15.000000000 +0200 @@ -17,7 +17,7 @@ msgstr "" "Project-Id-Version: fr\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-02-22 23:04+0100\n" +"POT-Creation-Date: 2005-04-09 21:56+0200\n" "PO-Revision-Date: 2005-01-25 20:11+0100\n" "Last-Translator: \n" "Language-Team: \n" @@ -399,7 +399,7 @@ #: ../plug-ins/common/pat.c:433 ../plug-ins/common/pcx.c:585 #: ../plug-ins/common/pix.c:515 ../plug-ins/common/png.c:1178 #: ../plug-ins/common/pnm.c:809 ../plug-ins/common/postscript.c:1123 -#: ../plug-ins/common/psd_save.c:1588 ../plug-ins/common/raw.c:517 +#: ../plug-ins/common/psd_save.c:1336 ../plug-ins/common/raw.c:517 #: ../plug-ins/common/raw.c:544 ../plug-ins/common/spheredesigner.c:2088 #: ../plug-ins/common/sunras.c:513 ../plug-ins/common/tga.c:1030 #: ../plug-ins/common/tiff.c:1810 ../plug-ins/common/xbm.c:996 @@ -1245,35 +1245,36 @@ #: ../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 +#: ../plug-ins/bmp/bmpread.c:207 ../plug-ins/bmp/bmpread.c:307 +#: ../plug-ins/bmp/bmpread.c:348 #, c-format msgid "'%s' is not a valid BMP file" msgstr "« %s » n'est pas un fichier BMP valide" #: ../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 +#: ../plug-ins/bmp/bmpread.c:300 ../plug-ins/bmp/bmpread.c:313 +#: ../plug-ins/bmp/bmpread.c:319 #, c-format msgid "Error reading BMP file header from '%s'" msgstr "Erreur de lecture de l'en-tête BMP depuis « %s »" -#: ../plug-ins/bmp/bmpread.c:442 ../plug-ins/bmp/bmpread.c:477 +#: ../plug-ins/bmp/bmpread.c:450 ../plug-ins/bmp/bmpread.c:485 msgid "Unrecognized or invalid BMP compression format." msgstr "Format de compression BMP inconnu ou non valide." #. #. * Create the "background" layer to hold the image... #. -#: ../plug-ins/bmp/bmpread.c:482 ../plug-ins/common/CEL.c:357 +#: ../plug-ins/bmp/bmpread.c:490 ../plug-ins/common/CEL.c:357 #: ../plug-ins/common/CEL.c:360 ../plug-ins/common/blinds.c:273 #: ../plug-ins/common/compose.c:625 ../plug-ins/common/decompose.c:595 #: ../plug-ins/common/dicom.c:442 ../plug-ins/common/film.c:946 -#: ../plug-ins/common/gifload.c:865 ../plug-ins/common/jpeg.c:1113 +#: ../plug-ins/common/gifload.c:864 ../plug-ins/common/jpeg.c:1113 #: ../plug-ins/common/jpeg.c:2474 ../plug-ins/common/pcx.c:334 #: ../plug-ins/common/pcx.c:340 ../plug-ins/common/pix.c:374 #: ../plug-ins/common/png.c:808 ../plug-ins/common/pnm.c:517 -#: ../plug-ins/common/psd.c:2173 ../plug-ins/common/raw.c:677 +#: ../plug-ins/common/psd.c:2174 ../plug-ins/common/raw.c:677 #: ../plug-ins/common/smooth_palette.c:257 ../plug-ins/common/sunras.c:925 #: ../plug-ins/common/tga.c:929 ../plug-ins/common/tiff.c:833 #: ../plug-ins/common/tile.c:266 ../plug-ins/common/winclipboard.c:579 @@ -1304,12 +1305,12 @@ #: ../plug-ins/common/jpeg.c:1453 ../plug-ins/common/pat.c:438 #: ../plug-ins/common/pcx.c:545 ../plug-ins/common/pix.c:521 #: ../plug-ins/common/png.c:1185 ../plug-ins/common/pnm.c:814 -#: ../plug-ins/common/postscript.c:1128 ../plug-ins/common/psd_save.c:1593 +#: ../plug-ins/common/postscript.c:1128 ../plug-ins/common/psd_save.c:1341 #: ../plug-ins/common/sunras.c:518 ../plug-ins/common/tga.c:1035 #: ../plug-ins/common/tiff.c:1815 ../plug-ins/common/xbm.c:1001 #: ../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:957 +#: ../plug-ins/sgi/sgi.c:545 ../plug-ins/winicon/icosave.c:977 #: ../plug-ins/xjt/xjt.c:1682 #, c-format msgid "Saving '%s'..." @@ -1645,7 +1646,7 @@ msgstr "Teinte" #: ../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 +#: ../plug-ins/common/decompose.c:144 ../plug-ins/rcm/rcm_dialog.c:548 msgid "Saturation" msgstr "Saturation" @@ -2457,24 +2458,24 @@ msgid "Color to _Alpha..." msgstr "Couleur vers _alpha..." -#: ../plug-ins/common/colortoalpha.c:181 +#: ../plug-ins/common/colortoalpha.c:187 msgid "Removing color..." msgstr "Suppression de la couleur..." -#: ../plug-ins/common/colortoalpha.c:377 +#: ../plug-ins/common/colortoalpha.c:380 msgid "Color to Alpha" msgstr "Couleur vers alpha" -#: ../plug-ins/common/colortoalpha.c:402 ../plug-ins/common/mapcolor.c:424 +#: ../plug-ins/common/colortoalpha.c:405 ../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:406 +#: ../plug-ins/common/colortoalpha.c:409 msgid "Color to Alpha Color Picker" msgstr "Couleur vers alpha : sélection de la couleur" -#: ../plug-ins/common/colortoalpha.c:420 +#: ../plug-ins/common/colortoalpha.c:423 msgid "to alpha" msgstr "vers alpha" @@ -2497,13 +2498,13 @@ msgstr "TSV" #. Gray: Circle: Spinbutton 1 -#: ../plug-ins/common/compose.c:148 ../plug-ins/rcm/rcm_dialog.c:452 +#: ../plug-ins/common/compose.c:148 ../plug-ins/rcm/rcm_dialog.c:459 msgid "Hue:" msgstr "Teinte :" #. Gray: Circle: Spinbutton 2 #: ../plug-ins/common/compose.c:149 ../plug-ins/print/gimp_color_window.c:364 -#: ../plug-ins/rcm/rcm_dialog.c:479 +#: ../plug-ins/rcm/rcm_dialog.c:486 msgid "Saturation:" msgstr "Saturation :" @@ -3122,15 +3123,15 @@ msgid "Deinterlace..." msgstr "Désentrelacement..." -#: ../plug-ins/common/deinterlace.c:315 +#: ../plug-ins/common/deinterlace.c:324 msgid "Deinterlace" msgstr "Désentrelacer" -#: ../plug-ins/common/deinterlace.c:340 +#: ../plug-ins/common/deinterlace.c:349 msgid "Keep o_dd fields" msgstr "Garder les lignes _impaires" -#: ../plug-ins/common/deinterlace.c:341 +#: ../plug-ins/common/deinterlace.c:350 msgid "Keep _even fields" msgstr "Garder les lignes _paires" @@ -3529,7 +3530,7 @@ #. Create selection #: ../plug-ins/common/film.c:1166 ../plug-ins/imagemap/imap_selection.c:400 -#: ../plug-ins/rcm/rcm_dialog.c:158 +#: ../plug-ins/rcm/rcm_dialog.c:165 msgid "Selection" msgstr "Sélection" @@ -4073,23 +4074,23 @@ msgid "Non-square pixels. Image might look squashed." msgstr "Pixels non carrés. L'image peut apparaître criarde." -#: ../plug-ins/common/gifload.c:867 +#: ../plug-ins/common/gifload.c:866 #, c-format msgid "Background (%d%s)" msgstr "Arrière-plan (%d%s)" -#: ../plug-ins/common/gifload.c:915 ../plug-ins/common/iwarp.c:783 +#: ../plug-ins/common/gifload.c:914 ../plug-ins/common/iwarp.c:783 #: ../plug-ins/common/iwarp.c:817 #, c-format msgid "Frame %d" msgstr "Image %d" -#: ../plug-ins/common/gifload.c:917 +#: ../plug-ins/common/gifload.c:916 #, c-format msgid "Frame %d (%d%s)" msgstr "Image vidéo %d (%d%s)" -#: ../plug-ins/common/gifload.c:947 +#: ../plug-ins/common/gifload.c:946 #, c-format msgid "" "GIF: Undocumented GIF composite type %d is not handled. Animation might not " @@ -5887,7 +5888,7 @@ msgid "B/W" msgstr "N/B" -#: ../plug-ins/common/postscript.c:3003 ../plug-ins/rcm/rcm_dialog.c:404 +#: ../plug-ins/common/postscript.c:3003 ../plug-ins/rcm/rcm_dialog.c:411 msgid "Gray" msgstr "Gris" @@ -5978,11 +5979,11 @@ msgid "Invalid UTF-8 string in PSD file" msgstr "Chaîne de caractèe UTF-8 non valide dans le fichiers PSD" -#: ../plug-ins/common/psd_save.c:181 +#: ../plug-ins/common/psd_save.c:192 msgid "Photoshop image" msgstr "Image Photoshop" -#: ../plug-ins/common/psd_save.c:1564 +#: ../plug-ins/common/psd_save.c:1312 #, c-format msgid "" "Unable to save '%s'. The psd file format does not support images that are " @@ -5991,7 +5992,7 @@ "Impossible d'enregistrer « %s ». Le format de fichier PSD ne supporte pas " "les images de plus de 30000 pixels de largeur ou de hauteur." -#: ../plug-ins/common/psd_save.c:1576 +#: ../plug-ins/common/psd_save.c:1324 #, c-format msgid "" "Unable to save '%s'. The psd file format does not support images with " @@ -11517,87 +11518,87 @@ msgid "Rotating the colormap..." msgstr "Rotation de la carte des couleurs en cours..." -#: ../plug-ins/rcm/rcm_dialog.c:114 +#: ../plug-ins/rcm/rcm_dialog.c:119 msgid "Original" msgstr "Original" -#: ../plug-ins/rcm/rcm_dialog.c:127 +#: ../plug-ins/rcm/rcm_dialog.c:133 msgid "Rotated" msgstr "Tourné" -#: ../plug-ins/rcm/rcm_dialog.c:140 +#: ../plug-ins/rcm/rcm_dialog.c:147 msgid "Continuous update" msgstr "Mise à jour continue" -#: ../plug-ins/rcm/rcm_dialog.c:153 +#: ../plug-ins/rcm/rcm_dialog.c:160 msgid "Area:" msgstr "Zone :" -#: ../plug-ins/rcm/rcm_dialog.c:157 +#: ../plug-ins/rcm/rcm_dialog.c:164 msgid "Entire Layer" msgstr "Calque entier" -#: ../plug-ins/rcm/rcm_dialog.c:159 +#: ../plug-ins/rcm/rcm_dialog.c:166 msgid "Context" msgstr "Contexte" #. spinbutton 1 -#: ../plug-ins/rcm/rcm_dialog.c:284 ../plug-ins/rcm/rcm_dialog.c:362 +#: ../plug-ins/rcm/rcm_dialog.c:291 ../plug-ins/rcm/rcm_dialog.c:369 msgid "From" msgstr "Depuis" #. spinbutton 2 -#: ../plug-ins/rcm/rcm_dialog.c:310 ../plug-ins/rcm/rcm_dialog.c:363 +#: ../plug-ins/rcm/rcm_dialog.c:317 ../plug-ins/rcm/rcm_dialog.c:370 msgid "To" msgstr "Vers" #. * Gray: Operation-Mode * -#: ../plug-ins/rcm/rcm_dialog.c:499 +#: ../plug-ins/rcm/rcm_dialog.c:506 msgid "Gray Mode" msgstr "Mode gris" #. Gray: Operation-Mode: two radio buttons -#: ../plug-ins/rcm/rcm_dialog.c:508 +#: ../plug-ins/rcm/rcm_dialog.c:515 msgid "Treat as this" msgstr "Traiter comme cela" -#: ../plug-ins/rcm/rcm_dialog.c:520 +#: ../plug-ins/rcm/rcm_dialog.c:527 msgid "Change to this" msgstr "Changer en cela" #. * Gray: What is gray? * -#: ../plug-ins/rcm/rcm_dialog.c:533 +#: ../plug-ins/rcm/rcm_dialog.c:540 msgid "Gray Threshold" msgstr "Seuil gris" #. * Misc: Used unit selection * -#: ../plug-ins/rcm/rcm_dialog.c:572 ../plug-ins/rcm/rcm_dialog.c:676 +#: ../plug-ins/rcm/rcm_dialog.c:579 ../plug-ins/rcm/rcm_dialog.c:683 msgid "Units" msgstr "Unités" #. Misc: Used unit selection: 3 radio buttons -#: ../plug-ins/rcm/rcm_dialog.c:581 +#: ../plug-ins/rcm/rcm_dialog.c:588 msgid "Radians" msgstr "Radians" -#: ../plug-ins/rcm/rcm_dialog.c:593 +#: ../plug-ins/rcm/rcm_dialog.c:600 msgid "Radians/Pi" msgstr "Radians/Pi" -#: ../plug-ins/rcm/rcm_dialog.c:605 +#: ../plug-ins/rcm/rcm_dialog.c:612 msgid "Degrees" msgstr "Degrés" #. Create dialog -#: ../plug-ins/rcm/rcm_dialog.c:638 +#: ../plug-ins/rcm/rcm_dialog.c:645 msgid "Colormap Rotation" msgstr "Rotation de la Carte des Couleurs" -#: ../plug-ins/rcm/rcm_dialog.c:670 +#: ../plug-ins/rcm/rcm_dialog.c:677 msgid "Main Options" msgstr "Options principales" -#: ../plug-ins/rcm/rcm_dialog.c:673 +#: ../plug-ins/rcm/rcm_dialog.c:680 msgid "Gray Options" msgstr "Options gris" @@ -11680,27 +11681,27 @@ msgid "Transferring TWAIN data..." msgstr "Transfert des données TWAIN..." -#: ../plug-ins/winicon/icodialog.c:123 +#: ../plug-ins/winicon/icodialog.c:89 msgid "1 bpp, 1-bit alpha, 2-slot palette" msgstr "1 bpp, 1-bit alpha, 2-slot palette" -#: ../plug-ins/winicon/icodialog.c:124 +#: ../plug-ins/winicon/icodialog.c:90 msgid "4 bpp, 1-bit alpha, 16-slot palette" msgstr "4 bpp, 1-bit alpha, 16-slot palette" -#: ../plug-ins/winicon/icodialog.c:125 +#: ../plug-ins/winicon/icodialog.c:91 msgid "8 bpp, 1-bit alpha, 256-slot palette" msgstr "8 bpp, 1-bit alpha, 256-slot palette" -#: ../plug-ins/winicon/icodialog.c:126 +#: ../plug-ins/winicon/icodialog.c:92 msgid "32 bpp, 8-bit alpha, no palette" msgstr "32 bpp, 8-bit alpha, no palette" -#: ../plug-ins/winicon/icodialog.c:151 +#: ../plug-ins/winicon/icodialog.c:117 msgid "GIMP Windows Icon Plugin" msgstr "Greffon icône Windows" -#: ../plug-ins/winicon/icodialog.c:172 +#: ../plug-ins/winicon/icodialog.c:138 msgid "Icon details" msgstr "Détails de l'icône" @@ -11709,7 +11710,7 @@ msgid "Icon #%i" msgstr "Icône n° %i" -#: ../plug-ins/winicon/icosave.c:943 +#: ../plug-ins/winicon/icosave.c:969 msgid "Windows icons cannot be higher or wider than 255 pixels." msgstr "Les icônes Windows ne peuvent être plus large ou haute que 255 pixels." diff -uraN gimp-2.2.4/po-plug-ins/ga.gmo gimp-2.2.5/po-plug-ins/ga.gmo --- gimp-2.2.4/po-plug-ins/ga.gmo 2005-02-22 23:12:43.000000000 +0100 +++ gimp-2.2.5/po-plug-ins/ga.gmo 2005-04-09 23:09:29.000000000 +0200 @@ -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: 2005-02-22 23:04+0100 +POT-Creation-Date: 2005-04-09 21:56+0200 PO-Revision-Date: 2004-03-21 00:23+0000 Last-Translator: Alastair McKinstry Language-Team: Gaeilge diff -uraN gimp-2.2.4/po-plug-ins/ga.po gimp-2.2.5/po-plug-ins/ga.po --- gimp-2.2.4/po-plug-ins/ga.po 2005-02-22 23:12:29.000000000 +0100 +++ gimp-2.2.5/po-plug-ins/ga.po 2005-04-09 23:09:15.000000000 +0200 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: gimp po-plug-ins CVS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-02-22 23:04+0100\n" +"POT-Creation-Date: 2005-04-09 21:56+0200\n" "PO-Revision-Date: 2004-03-21 00:23+0000\n" "Last-Translator: Alastair McKinstry \n" "Language-Team: Gaeilge \n" @@ -371,7 +371,7 @@ #: ../plug-ins/common/pat.c:433 ../plug-ins/common/pcx.c:585 #: ../plug-ins/common/pix.c:515 ../plug-ins/common/png.c:1178 #: ../plug-ins/common/pnm.c:809 ../plug-ins/common/postscript.c:1123 -#: ../plug-ins/common/psd_save.c:1588 ../plug-ins/common/raw.c:517 +#: ../plug-ins/common/psd_save.c:1336 ../plug-ins/common/raw.c:517 #: ../plug-ins/common/raw.c:544 ../plug-ins/common/spheredesigner.c:2088 #: ../plug-ins/common/sunras.c:513 ../plug-ins/common/tga.c:1030 #: ../plug-ins/common/tiff.c:1810 ../plug-ins/common/xbm.c:996 @@ -1228,35 +1228,36 @@ #: ../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 +#: ../plug-ins/bmp/bmpread.c:207 ../plug-ins/bmp/bmpread.c:307 +#: ../plug-ins/bmp/bmpread.c:348 #, c-format msgid "'%s' is not a valid BMP file" msgstr "" #: ../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 +#: ../plug-ins/bmp/bmpread.c:300 ../plug-ins/bmp/bmpread.c:313 +#: ../plug-ins/bmp/bmpread.c:319 #, c-format msgid "Error reading BMP file header from '%s'" msgstr "" -#: ../plug-ins/bmp/bmpread.c:442 ../plug-ins/bmp/bmpread.c:477 +#: ../plug-ins/bmp/bmpread.c:450 ../plug-ins/bmp/bmpread.c:485 msgid "Unrecognized or invalid BMP compression format." msgstr "" #. #. * Create the "background" layer to hold the image... #. -#: ../plug-ins/bmp/bmpread.c:482 ../plug-ins/common/CEL.c:357 +#: ../plug-ins/bmp/bmpread.c:490 ../plug-ins/common/CEL.c:357 #: ../plug-ins/common/CEL.c:360 ../plug-ins/common/blinds.c:273 #: ../plug-ins/common/compose.c:625 ../plug-ins/common/decompose.c:595 #: ../plug-ins/common/dicom.c:442 ../plug-ins/common/film.c:946 -#: ../plug-ins/common/gifload.c:865 ../plug-ins/common/jpeg.c:1113 +#: ../plug-ins/common/gifload.c:864 ../plug-ins/common/jpeg.c:1113 #: ../plug-ins/common/jpeg.c:2474 ../plug-ins/common/pcx.c:334 #: ../plug-ins/common/pcx.c:340 ../plug-ins/common/pix.c:374 #: ../plug-ins/common/png.c:808 ../plug-ins/common/pnm.c:517 -#: ../plug-ins/common/psd.c:2173 ../plug-ins/common/raw.c:677 +#: ../plug-ins/common/psd.c:2174 ../plug-ins/common/raw.c:677 #: ../plug-ins/common/smooth_palette.c:257 ../plug-ins/common/sunras.c:925 #: ../plug-ins/common/tga.c:929 ../plug-ins/common/tiff.c:833 #: ../plug-ins/common/tile.c:266 ../plug-ins/common/winclipboard.c:579 @@ -1287,12 +1288,12 @@ #: ../plug-ins/common/jpeg.c:1453 ../plug-ins/common/pat.c:438 #: ../plug-ins/common/pcx.c:545 ../plug-ins/common/pix.c:521 #: ../plug-ins/common/png.c:1185 ../plug-ins/common/pnm.c:814 -#: ../plug-ins/common/postscript.c:1128 ../plug-ins/common/psd_save.c:1593 +#: ../plug-ins/common/postscript.c:1128 ../plug-ins/common/psd_save.c:1341 #: ../plug-ins/common/sunras.c:518 ../plug-ins/common/tga.c:1035 #: ../plug-ins/common/tiff.c:1815 ../plug-ins/common/xbm.c:1001 #: ../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:957 +#: ../plug-ins/sgi/sgi.c:545 ../plug-ins/winicon/icosave.c:977 #: ../plug-ins/xjt/xjt.c:1682 #, c-format msgid "Saving '%s'..." @@ -1638,7 +1639,7 @@ msgstr "" #: ../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 +#: ../plug-ins/common/decompose.c:144 ../plug-ins/rcm/rcm_dialog.c:548 msgid "Saturation" msgstr "" @@ -2453,24 +2454,24 @@ msgid "Color to _Alpha..." msgstr "Dath do Alpha" -#: ../plug-ins/common/colortoalpha.c:181 +#: ../plug-ins/common/colortoalpha.c:187 msgid "Removing color..." msgstr "" -#: ../plug-ins/common/colortoalpha.c:377 +#: ../plug-ins/common/colortoalpha.c:380 msgid "Color to Alpha" msgstr "Dath do Alpha" -#: ../plug-ins/common/colortoalpha.c:402 ../plug-ins/common/mapcolor.c:424 +#: ../plug-ins/common/colortoalpha.c:405 ../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:406 +#: ../plug-ins/common/colortoalpha.c:409 msgid "Color to Alpha Color Picker" msgstr "" -#: ../plug-ins/common/colortoalpha.c:420 +#: ../plug-ins/common/colortoalpha.c:423 #, fuzzy msgid "to alpha" msgstr "alpha" @@ -2494,13 +2495,13 @@ msgstr "" #. Gray: Circle: Spinbutton 1 -#: ../plug-ins/common/compose.c:148 ../plug-ins/rcm/rcm_dialog.c:452 +#: ../plug-ins/common/compose.c:148 ../plug-ins/rcm/rcm_dialog.c:459 msgid "Hue:" msgstr "" #. Gray: Circle: Spinbutton 2 #: ../plug-ins/common/compose.c:149 ../plug-ins/print/gimp_color_window.c:364 -#: ../plug-ins/rcm/rcm_dialog.c:479 +#: ../plug-ins/rcm/rcm_dialog.c:486 msgid "Saturation:" msgstr "" @@ -3120,15 +3121,15 @@ msgid "Deinterlace..." msgstr "" -#: ../plug-ins/common/deinterlace.c:315 +#: ../plug-ins/common/deinterlace.c:324 msgid "Deinterlace" msgstr "" -#: ../plug-ins/common/deinterlace.c:340 +#: ../plug-ins/common/deinterlace.c:349 msgid "Keep o_dd fields" msgstr "" -#: ../plug-ins/common/deinterlace.c:341 +#: ../plug-ins/common/deinterlace.c:350 msgid "Keep _even fields" msgstr "" @@ -3541,7 +3542,7 @@ #. Create selection #: ../plug-ins/common/film.c:1166 ../plug-ins/imagemap/imap_selection.c:400 -#: ../plug-ins/rcm/rcm_dialog.c:158 +#: ../plug-ins/rcm/rcm_dialog.c:165 msgid "Selection" msgstr "" @@ -4072,23 +4073,23 @@ msgid "Non-square pixels. Image might look squashed." msgstr "" -#: ../plug-ins/common/gifload.c:867 +#: ../plug-ins/common/gifload.c:866 #, c-format msgid "Background (%d%s)" msgstr "Cúlra (%d%s)" -#: ../plug-ins/common/gifload.c:915 ../plug-ins/common/iwarp.c:783 +#: ../plug-ins/common/gifload.c:914 ../plug-ins/common/iwarp.c:783 #: ../plug-ins/common/iwarp.c:817 #, c-format msgid "Frame %d" msgstr "" -#: ../plug-ins/common/gifload.c:917 +#: ../plug-ins/common/gifload.c:916 #, c-format msgid "Frame %d (%d%s)" msgstr "" -#: ../plug-ins/common/gifload.c:947 +#: ../plug-ins/common/gifload.c:946 #, c-format msgid "" "GIF: Undocumented GIF composite type %d is not handled. Animation might not " @@ -5896,7 +5897,7 @@ msgid "B/W" msgstr "" -#: ../plug-ins/common/postscript.c:3003 ../plug-ins/rcm/rcm_dialog.c:404 +#: ../plug-ins/common/postscript.c:3003 ../plug-ins/rcm/rcm_dialog.c:411 msgid "Gray" msgstr "" @@ -5986,18 +5987,18 @@ msgid "Invalid UTF-8 string in PSD file" msgstr "" -#: ../plug-ins/common/psd_save.c:181 +#: ../plug-ins/common/psd_save.c:192 msgid "Photoshop image" msgstr "" -#: ../plug-ins/common/psd_save.c:1564 +#: ../plug-ins/common/psd_save.c:1312 #, c-format msgid "" "Unable to save '%s'. The psd file format does not support images that are " "more than 30000 pixels wide or tall." msgstr "" -#: ../plug-ins/common/psd_save.c:1576 +#: ../plug-ins/common/psd_save.c:1324 #, c-format msgid "" "Unable to save '%s'. The psd file format does not support images with " @@ -11432,88 +11433,88 @@ msgid "Rotating the colormap..." msgstr "" -#: ../plug-ins/rcm/rcm_dialog.c:114 +#: ../plug-ins/rcm/rcm_dialog.c:119 msgid "Original" msgstr "" -#: ../plug-ins/rcm/rcm_dialog.c:127 +#: ../plug-ins/rcm/rcm_dialog.c:133 msgid "Rotated" msgstr "" -#: ../plug-ins/rcm/rcm_dialog.c:140 +#: ../plug-ins/rcm/rcm_dialog.c:147 msgid "Continuous update" msgstr "" -#: ../plug-ins/rcm/rcm_dialog.c:153 +#: ../plug-ins/rcm/rcm_dialog.c:160 msgid "Area:" msgstr "" -#: ../plug-ins/rcm/rcm_dialog.c:157 +#: ../plug-ins/rcm/rcm_dialog.c:164 msgid "Entire Layer" msgstr "" -#: ../plug-ins/rcm/rcm_dialog.c:159 +#: ../plug-ins/rcm/rcm_dialog.c:166 msgid "Context" msgstr "" #. spinbutton 1 -#: ../plug-ins/rcm/rcm_dialog.c:284 ../plug-ins/rcm/rcm_dialog.c:362 +#: ../plug-ins/rcm/rcm_dialog.c:291 ../plug-ins/rcm/rcm_dialog.c:369 msgid "From" msgstr "" #. spinbutton 2 -#: ../plug-ins/rcm/rcm_dialog.c:310 ../plug-ins/rcm/rcm_dialog.c:363 +#: ../plug-ins/rcm/rcm_dialog.c:317 ../plug-ins/rcm/rcm_dialog.c:370 msgid "To" msgstr "" #. * Gray: Operation-Mode * -#: ../plug-ins/rcm/rcm_dialog.c:499 +#: ../plug-ins/rcm/rcm_dialog.c:506 #, fuzzy msgid "Gray Mode" msgstr "Módh Dath" #. Gray: Operation-Mode: two radio buttons -#: ../plug-ins/rcm/rcm_dialog.c:508 +#: ../plug-ins/rcm/rcm_dialog.c:515 msgid "Treat as this" msgstr "" -#: ../plug-ins/rcm/rcm_dialog.c:520 +#: ../plug-ins/rcm/rcm_dialog.c:527 msgid "Change to this" msgstr "" #. * Gray: What is gray? * -#: ../plug-ins/rcm/rcm_dialog.c:533 +#: ../plug-ins/rcm/rcm_dialog.c:540 msgid "Gray Threshold" msgstr "" #. * Misc: Used unit selection * -#: ../plug-ins/rcm/rcm_dialog.c:572 ../plug-ins/rcm/rcm_dialog.c:676 +#: ../plug-ins/rcm/rcm_dialog.c:579 ../plug-ins/rcm/rcm_dialog.c:683 msgid "Units" msgstr "" #. Misc: Used unit selection: 3 radio buttons -#: ../plug-ins/rcm/rcm_dialog.c:581 +#: ../plug-ins/rcm/rcm_dialog.c:588 msgid "Radians" msgstr "" -#: ../plug-ins/rcm/rcm_dialog.c:593 +#: ../plug-ins/rcm/rcm_dialog.c:600 msgid "Radians/Pi" msgstr "" -#: ../plug-ins/rcm/rcm_dialog.c:605 +#: ../plug-ins/rcm/rcm_dialog.c:612 msgid "Degrees" msgstr "" #. Create dialog -#: ../plug-ins/rcm/rcm_dialog.c:638 +#: ../plug-ins/rcm/rcm_dialog.c:645 msgid "Colormap Rotation" msgstr "" -#: ../plug-ins/rcm/rcm_dialog.c:670 +#: ../plug-ins/rcm/rcm_dialog.c:677 msgid "Main Options" msgstr "" -#: ../plug-ins/rcm/rcm_dialog.c:673 +#: ../plug-ins/rcm/rcm_dialog.c:680 #, fuzzy msgid "Gray Options" msgstr "Roghnachais GIF" @@ -11595,27 +11596,27 @@ msgid "Transferring TWAIN data..." msgstr "" -#: ../plug-ins/winicon/icodialog.c:123 +#: ../plug-ins/winicon/icodialog.c:89 msgid "1 bpp, 1-bit alpha, 2-slot palette" msgstr "" -#: ../plug-ins/winicon/icodialog.c:124 +#: ../plug-ins/winicon/icodialog.c:90 msgid "4 bpp, 1-bit alpha, 16-slot palette" msgstr "" -#: ../plug-ins/winicon/icodialog.c:125 +#: ../plug-ins/winicon/icodialog.c:91 msgid "8 bpp, 1-bit alpha, 256-slot palette" msgstr "" -#: ../plug-ins/winicon/icodialog.c:126 +#: ../plug-ins/winicon/icodialog.c:92 msgid "32 bpp, 8-bit alpha, no palette" msgstr "" -#: ../plug-ins/winicon/icodialog.c:151 +#: ../plug-ins/winicon/icodialog.c:117 msgid "GIMP Windows Icon Plugin" msgstr "" -#: ../plug-ins/winicon/icodialog.c:172 +#: ../plug-ins/winicon/icodialog.c:138 msgid "Icon details" msgstr "" @@ -11624,7 +11625,7 @@ msgid "Icon #%i" msgstr "" -#: ../plug-ins/winicon/icosave.c:943 +#: ../plug-ins/winicon/icosave.c:969 msgid "Windows icons cannot be higher or wider than 255 pixels." msgstr "" diff -uraN gimp-2.2.4/po-plug-ins/gimp20-std-plug-ins.pot gimp-2.2.5/po-plug-ins/gimp20-std-plug-ins.pot --- gimp-2.2.4/po-plug-ins/gimp20-std-plug-ins.pot 2005-02-22 23:04:27.000000000 +0100 +++ gimp-2.2.5/po-plug-ins/gimp20-std-plug-ins.pot 2005-04-09 21:56:12.000000000 +0200 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-02-22 23:04+0100\n" +"POT-Creation-Date: 2005-04-09 21:56+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -370,7 +370,7 @@ #: ../plug-ins/common/pat.c:433 ../plug-ins/common/pcx.c:585 #: ../plug-ins/common/pix.c:515 ../plug-ins/common/png.c:1178 #: ../plug-ins/common/pnm.c:809 ../plug-ins/common/postscript.c:1123 -#: ../plug-ins/common/psd_save.c:1588 ../plug-ins/common/raw.c:517 +#: ../plug-ins/common/psd_save.c:1336 ../plug-ins/common/raw.c:517 #: ../plug-ins/common/raw.c:544 ../plug-ins/common/spheredesigner.c:2088 #: ../plug-ins/common/sunras.c:513 ../plug-ins/common/tga.c:1030 #: ../plug-ins/common/tiff.c:1810 ../plug-ins/common/xbm.c:996 @@ -1206,35 +1206,36 @@ #: ../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 +#: ../plug-ins/bmp/bmpread.c:207 ../plug-ins/bmp/bmpread.c:307 +#: ../plug-ins/bmp/bmpread.c:348 #, c-format msgid "'%s' is not a valid BMP file" msgstr "" #: ../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 +#: ../plug-ins/bmp/bmpread.c:300 ../plug-ins/bmp/bmpread.c:313 +#: ../plug-ins/bmp/bmpread.c:319 #, c-format msgid "Error reading BMP file header from '%s'" msgstr "" -#: ../plug-ins/bmp/bmpread.c:442 ../plug-ins/bmp/bmpread.c:477 +#: ../plug-ins/bmp/bmpread.c:450 ../plug-ins/bmp/bmpread.c:485 msgid "Unrecognized or invalid BMP compression format." msgstr "" #. #. * Create the "background" layer to hold the image... #. -#: ../plug-ins/bmp/bmpread.c:482 ../plug-ins/common/CEL.c:357 +#: ../plug-ins/bmp/bmpread.c:490 ../plug-ins/common/CEL.c:357 #: ../plug-ins/common/CEL.c:360 ../plug-ins/common/blinds.c:273 #: ../plug-ins/common/compose.c:625 ../plug-ins/common/decompose.c:595 #: ../plug-ins/common/dicom.c:442 ../plug-ins/common/film.c:946 -#: ../plug-ins/common/gifload.c:865 ../plug-ins/common/jpeg.c:1113 +#: ../plug-ins/common/gifload.c:864 ../plug-ins/common/jpeg.c:1113 #: ../plug-ins/common/jpeg.c:2474 ../plug-ins/common/pcx.c:334 #: ../plug-ins/common/pcx.c:340 ../plug-ins/common/pix.c:374 #: ../plug-ins/common/png.c:808 ../plug-ins/common/pnm.c:517 -#: ../plug-ins/common/psd.c:2173 ../plug-ins/common/raw.c:677 +#: ../plug-ins/common/psd.c:2174 ../plug-ins/common/raw.c:677 #: ../plug-ins/common/smooth_palette.c:257 ../plug-ins/common/sunras.c:925 #: ../plug-ins/common/tga.c:929 ../plug-ins/common/tiff.c:833 #: ../plug-ins/common/tile.c:266 ../plug-ins/common/winclipboard.c:579 @@ -1265,12 +1266,12 @@ #: ../plug-ins/common/jpeg.c:1453 ../plug-ins/common/pat.c:438 #: ../plug-ins/common/pcx.c:545 ../plug-ins/common/pix.c:521 #: ../plug-ins/common/png.c:1185 ../plug-ins/common/pnm.c:814 -#: ../plug-ins/common/postscript.c:1128 ../plug-ins/common/psd_save.c:1593 +#: ../plug-ins/common/postscript.c:1128 ../plug-ins/common/psd_save.c:1341 #: ../plug-ins/common/sunras.c:518 ../plug-ins/common/tga.c:1035 #: ../plug-ins/common/tiff.c:1815 ../plug-ins/common/xbm.c:1001 #: ../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:957 +#: ../plug-ins/sgi/sgi.c:545 ../plug-ins/winicon/icosave.c:977 #: ../plug-ins/xjt/xjt.c:1682 #, c-format msgid "Saving '%s'..." @@ -1606,7 +1607,7 @@ msgstr "" #: ../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 +#: ../plug-ins/common/decompose.c:144 ../plug-ins/rcm/rcm_dialog.c:548 msgid "Saturation" msgstr "" @@ -2404,24 +2405,24 @@ msgid "Color to _Alpha..." msgstr "" -#: ../plug-ins/common/colortoalpha.c:181 +#: ../plug-ins/common/colortoalpha.c:187 msgid "Removing color..." msgstr "" -#: ../plug-ins/common/colortoalpha.c:377 +#: ../plug-ins/common/colortoalpha.c:380 msgid "Color to Alpha" msgstr "" -#: ../plug-ins/common/colortoalpha.c:402 ../plug-ins/common/mapcolor.c:424 +#: ../plug-ins/common/colortoalpha.c:405 ../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:406 +#: ../plug-ins/common/colortoalpha.c:409 msgid "Color to Alpha Color Picker" msgstr "" -#: ../plug-ins/common/colortoalpha.c:420 +#: ../plug-ins/common/colortoalpha.c:423 msgid "to alpha" msgstr "" @@ -2444,13 +2445,13 @@ msgstr "" #. Gray: Circle: Spinbutton 1 -#: ../plug-ins/common/compose.c:148 ../plug-ins/rcm/rcm_dialog.c:452 +#: ../plug-ins/common/compose.c:148 ../plug-ins/rcm/rcm_dialog.c:459 msgid "Hue:" msgstr "" #. Gray: Circle: Spinbutton 2 #: ../plug-ins/common/compose.c:149 ../plug-ins/print/gimp_color_window.c:364 -#: ../plug-ins/rcm/rcm_dialog.c:479 +#: ../plug-ins/rcm/rcm_dialog.c:486 msgid "Saturation:" msgstr "" @@ -3064,15 +3065,15 @@ msgid "Deinterlace..." msgstr "" -#: ../plug-ins/common/deinterlace.c:315 +#: ../plug-ins/common/deinterlace.c:324 msgid "Deinterlace" msgstr "" -#: ../plug-ins/common/deinterlace.c:340 +#: ../plug-ins/common/deinterlace.c:349 msgid "Keep o_dd fields" msgstr "" -#: ../plug-ins/common/deinterlace.c:341 +#: ../plug-ins/common/deinterlace.c:350 msgid "Keep _even fields" msgstr "" @@ -3469,7 +3470,7 @@ #. Create selection #: ../plug-ins/common/film.c:1166 ../plug-ins/imagemap/imap_selection.c:400 -#: ../plug-ins/rcm/rcm_dialog.c:158 +#: ../plug-ins/rcm/rcm_dialog.c:165 msgid "Selection" msgstr "" @@ -3989,23 +3990,23 @@ msgid "Non-square pixels. Image might look squashed." msgstr "" -#: ../plug-ins/common/gifload.c:867 +#: ../plug-ins/common/gifload.c:866 #, c-format msgid "Background (%d%s)" msgstr "" -#: ../plug-ins/common/gifload.c:915 ../plug-ins/common/iwarp.c:783 +#: ../plug-ins/common/gifload.c:914 ../plug-ins/common/iwarp.c:783 #: ../plug-ins/common/iwarp.c:817 #, c-format msgid "Frame %d" msgstr "" -#: ../plug-ins/common/gifload.c:917 +#: ../plug-ins/common/gifload.c:916 #, c-format msgid "Frame %d (%d%s)" msgstr "" -#: ../plug-ins/common/gifload.c:947 +#: ../plug-ins/common/gifload.c:946 #, c-format msgid "" "GIF: Undocumented GIF composite type %d is not handled. Animation might not " @@ -5767,7 +5768,7 @@ msgid "B/W" msgstr "" -#: ../plug-ins/common/postscript.c:3003 ../plug-ins/rcm/rcm_dialog.c:404 +#: ../plug-ins/common/postscript.c:3003 ../plug-ins/rcm/rcm_dialog.c:411 msgid "Gray" msgstr "" @@ -5856,18 +5857,18 @@ msgid "Invalid UTF-8 string in PSD file" msgstr "" -#: ../plug-ins/common/psd_save.c:181 +#: ../plug-ins/common/psd_save.c:192 msgid "Photoshop image" msgstr "" -#: ../plug-ins/common/psd_save.c:1564 +#: ../plug-ins/common/psd_save.c:1312 #, c-format msgid "" "Unable to save '%s'. The psd file format does not support images that are " "more than 30000 pixels wide or tall." msgstr "" -#: ../plug-ins/common/psd_save.c:1576 +#: ../plug-ins/common/psd_save.c:1324 #, c-format msgid "" "Unable to save '%s'. The psd file format does not support images with " @@ -11192,87 +11193,87 @@ msgid "Rotating the colormap..." msgstr "" -#: ../plug-ins/rcm/rcm_dialog.c:114 +#: ../plug-ins/rcm/rcm_dialog.c:119 msgid "Original" msgstr "" -#: ../plug-ins/rcm/rcm_dialog.c:127 +#: ../plug-ins/rcm/rcm_dialog.c:133 msgid "Rotated" msgstr "" -#: ../plug-ins/rcm/rcm_dialog.c:140 +#: ../plug-ins/rcm/rcm_dialog.c:147 msgid "Continuous update" msgstr "" -#: ../plug-ins/rcm/rcm_dialog.c:153 +#: ../plug-ins/rcm/rcm_dialog.c:160 msgid "Area:" msgstr "" -#: ../plug-ins/rcm/rcm_dialog.c:157 +#: ../plug-ins/rcm/rcm_dialog.c:164 msgid "Entire Layer" msgstr "" -#: ../plug-ins/rcm/rcm_dialog.c:159 +#: ../plug-ins/rcm/rcm_dialog.c:166 msgid "Context" msgstr "" #. spinbutton 1 -#: ../plug-ins/rcm/rcm_dialog.c:284 ../plug-ins/rcm/rcm_dialog.c:362 +#: ../plug-ins/rcm/rcm_dialog.c:291 ../plug-ins/rcm/rcm_dialog.c:369 msgid "From" msgstr "" #. spinbutton 2 -#: ../plug-ins/rcm/rcm_dialog.c:310 ../plug-ins/rcm/rcm_dialog.c:363 +#: ../plug-ins/rcm/rcm_dialog.c:317 ../plug-ins/rcm/rcm_dialog.c:370 msgid "To" msgstr "" #. * Gray: Operation-Mode * -#: ../plug-ins/rcm/rcm_dialog.c:499 +#: ../plug-ins/rcm/rcm_dialog.c:506 msgid "Gray Mode" msgstr "" #. Gray: Operation-Mode: two radio buttons -#: ../plug-ins/rcm/rcm_dialog.c:508 +#: ../plug-ins/rcm/rcm_dialog.c:515 msgid "Treat as this" msgstr "" -#: ../plug-ins/rcm/rcm_dialog.c:520 +#: ../plug-ins/rcm/rcm_dialog.c:527 msgid "Change to this" msgstr "" #. * Gray: What is gray? * -#: ../plug-ins/rcm/rcm_dialog.c:533 +#: ../plug-ins/rcm/rcm_dialog.c:540 msgid "Gray Threshold" msgstr "" #. * Misc: Used unit selection * -#: ../plug-ins/rcm/rcm_dialog.c:572 ../plug-ins/rcm/rcm_dialog.c:676 +#: ../plug-ins/rcm/rcm_dialog.c:579 ../plug-ins/rcm/rcm_dialog.c:683 msgid "Units" msgstr "" #. Misc: Used unit selection: 3 radio buttons -#: ../plug-ins/rcm/rcm_dialog.c:581 +#: ../plug-ins/rcm/rcm_dialog.c:588 msgid "Radians" msgstr "" -#: ../plug-ins/rcm/rcm_dialog.c:593 +#: ../plug-ins/rcm/rcm_dialog.c:600 msgid "Radians/Pi" msgstr "" -#: ../plug-ins/rcm/rcm_dialog.c:605 +#: ../plug-ins/rcm/rcm_dialog.c:612 msgid "Degrees" msgstr "" #. Create dialog -#: ../plug-ins/rcm/rcm_dialog.c:638 +#: ../plug-ins/rcm/rcm_dialog.c:645 msgid "Colormap Rotation" msgstr "" -#: ../plug-ins/rcm/rcm_dialog.c:670 +#: ../plug-ins/rcm/rcm_dialog.c:677 msgid "Main Options" msgstr "" -#: ../plug-ins/rcm/rcm_dialog.c:673 +#: ../plug-ins/rcm/rcm_dialog.c:680 msgid "Gray Options" msgstr "" @@ -11353,27 +11354,27 @@ msgid "Transferring TWAIN data..." msgstr "" -#: ../plug-ins/winicon/icodialog.c:123 +#: ../plug-ins/winicon/icodialog.c:89 msgid "1 bpp, 1-bit alpha, 2-slot palette" msgstr "" -#: ../plug-ins/winicon/icodialog.c:124 +#: ../plug-ins/winicon/icodialog.c:90 msgid "4 bpp, 1-bit alpha, 16-slot palette" msgstr "" -#: ../plug-ins/winicon/icodialog.c:125 +#: ../plug-ins/winicon/icodialog.c:91 msgid "8 bpp, 1-bit alpha, 256-slot palette" msgstr "" -#: ../plug-ins/winicon/icodialog.c:126 +#: ../plug-ins/winicon/icodialog.c:92 msgid "32 bpp, 8-bit alpha, no palette" msgstr "" -#: ../plug-ins/winicon/icodialog.c:151 +#: ../plug-ins/winicon/icodialog.c:117 msgid "GIMP Windows Icon Plugin" msgstr "" -#: ../plug-ins/winicon/icodialog.c:172 +#: ../plug-ins/winicon/icodialog.c:138 msgid "Icon details" msgstr "" @@ -11382,7 +11383,7 @@ msgid "Icon #%i" msgstr "" -#: ../plug-ins/winicon/icosave.c:943 +#: ../plug-ins/winicon/icosave.c:969 msgid "Windows icons cannot be higher or wider than 255 pixels." msgstr "" diff -uraN gimp-2.2.4/po-plug-ins/gl.gmo gimp-2.2.5/po-plug-ins/gl.gmo --- gimp-2.2.4/po-plug-ins/gl.gmo 2005-02-22 23:12:43.000000000 +0100 +++ gimp-2.2.5/po-plug-ins/gl.gmo 2005-04-09 23:09:30.000000000 +0200 @@ -1,6 +1,6 @@ $,89Project-Id-Version: gimp-plugins VERSION Report-Msgid-Bugs-To: -POT-Creation-Date: 2005-02-22 23:04+0100 +POT-Creation-Date: 2005-04-09 21:56+0200 PO-Revision-Date: 2000-12-23 11:40-0800 Last-Translator: Nobody Language-Team: Galician diff -uraN gimp-2.2.4/po-plug-ins/gl.po gimp-2.2.5/po-plug-ins/gl.po --- gimp-2.2.4/po-plug-ins/gl.po 2005-02-22 23:12:30.000000000 +0100 +++ gimp-2.2.5/po-plug-ins/gl.po 2005-04-09 23:09:15.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: gimp-plugins VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-02-22 23:04+0100\n" +"POT-Creation-Date: 2005-04-09 21:56+0200\n" "PO-Revision-Date: 2000-12-23 11:40-0800\n" "Last-Translator: Nobody\n" "Language-Team: Galician\n" @@ -368,7 +368,7 @@ #: ../plug-ins/common/pat.c:433 ../plug-ins/common/pcx.c:585 #: ../plug-ins/common/pix.c:515 ../plug-ins/common/png.c:1178 #: ../plug-ins/common/pnm.c:809 ../plug-ins/common/postscript.c:1123 -#: ../plug-ins/common/psd_save.c:1588 ../plug-ins/common/raw.c:517 +#: ../plug-ins/common/psd_save.c:1336 ../plug-ins/common/raw.c:517 #: ../plug-ins/common/raw.c:544 ../plug-ins/common/spheredesigner.c:2088 #: ../plug-ins/common/sunras.c:513 ../plug-ins/common/tga.c:1030 #: ../plug-ins/common/tiff.c:1810 ../plug-ins/common/xbm.c:996 @@ -1205,35 +1205,36 @@ #: ../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 +#: ../plug-ins/bmp/bmpread.c:207 ../plug-ins/bmp/bmpread.c:307 +#: ../plug-ins/bmp/bmpread.c:348 #, c-format msgid "'%s' is not a valid BMP file" msgstr "" #: ../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 +#: ../plug-ins/bmp/bmpread.c:300 ../plug-ins/bmp/bmpread.c:313 +#: ../plug-ins/bmp/bmpread.c:319 #, c-format msgid "Error reading BMP file header from '%s'" msgstr "" -#: ../plug-ins/bmp/bmpread.c:442 ../plug-ins/bmp/bmpread.c:477 +#: ../plug-ins/bmp/bmpread.c:450 ../plug-ins/bmp/bmpread.c:485 msgid "Unrecognized or invalid BMP compression format." msgstr "" #. #. * Create the "background" layer to hold the image... #. -#: ../plug-ins/bmp/bmpread.c:482 ../plug-ins/common/CEL.c:357 +#: ../plug-ins/bmp/bmpread.c:490 ../plug-ins/common/CEL.c:357 #: ../plug-ins/common/CEL.c:360 ../plug-ins/common/blinds.c:273 #: ../plug-ins/common/compose.c:625 ../plug-ins/common/decompose.c:595 #: ../plug-ins/common/dicom.c:442 ../plug-ins/common/film.c:946 -#: ../plug-ins/common/gifload.c:865 ../plug-ins/common/jpeg.c:1113 +#: ../plug-ins/common/gifload.c:864 ../plug-ins/common/jpeg.c:1113 #: ../plug-ins/common/jpeg.c:2474 ../plug-ins/common/pcx.c:334 #: ../plug-ins/common/pcx.c:340 ../plug-ins/common/pix.c:374 #: ../plug-ins/common/png.c:808 ../plug-ins/common/pnm.c:517 -#: ../plug-ins/common/psd.c:2173 ../plug-ins/common/raw.c:677 +#: ../plug-ins/common/psd.c:2174 ../plug-ins/common/raw.c:677 #: ../plug-ins/common/smooth_palette.c:257 ../plug-ins/common/sunras.c:925 #: ../plug-ins/common/tga.c:929 ../plug-ins/common/tiff.c:833 #: ../plug-ins/common/tile.c:266 ../plug-ins/common/winclipboard.c:579 @@ -1264,12 +1265,12 @@ #: ../plug-ins/common/jpeg.c:1453 ../plug-ins/common/pat.c:438 #: ../plug-ins/common/pcx.c:545 ../plug-ins/common/pix.c:521 #: ../plug-ins/common/png.c:1185 ../plug-ins/common/pnm.c:814 -#: ../plug-ins/common/postscript.c:1128 ../plug-ins/common/psd_save.c:1593 +#: ../plug-ins/common/postscript.c:1128 ../plug-ins/common/psd_save.c:1341 #: ../plug-ins/common/sunras.c:518 ../plug-ins/common/tga.c:1035 #: ../plug-ins/common/tiff.c:1815 ../plug-ins/common/xbm.c:1001 #: ../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:957 +#: ../plug-ins/sgi/sgi.c:545 ../plug-ins/winicon/icosave.c:977 #: ../plug-ins/xjt/xjt.c:1682 #, c-format msgid "Saving '%s'..." @@ -1605,7 +1606,7 @@ msgstr "" #: ../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 +#: ../plug-ins/common/decompose.c:144 ../plug-ins/rcm/rcm_dialog.c:548 msgid "Saturation" msgstr "" @@ -2407,24 +2408,24 @@ msgid "Color to _Alpha..." msgstr "/Filters/Colors/Map/Alien Map..." -#: ../plug-ins/common/colortoalpha.c:181 +#: ../plug-ins/common/colortoalpha.c:187 msgid "Removing color..." msgstr "" -#: ../plug-ins/common/colortoalpha.c:377 +#: ../plug-ins/common/colortoalpha.c:380 msgid "Color to Alpha" msgstr "" -#: ../plug-ins/common/colortoalpha.c:402 ../plug-ins/common/mapcolor.c:424 +#: ../plug-ins/common/colortoalpha.c:405 ../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:406 +#: ../plug-ins/common/colortoalpha.c:409 msgid "Color to Alpha Color Picker" msgstr "" -#: ../plug-ins/common/colortoalpha.c:420 +#: ../plug-ins/common/colortoalpha.c:423 msgid "to alpha" msgstr "" @@ -2447,13 +2448,13 @@ msgstr "" #. Gray: Circle: Spinbutton 1 -#: ../plug-ins/common/compose.c:148 ../plug-ins/rcm/rcm_dialog.c:452 +#: ../plug-ins/common/compose.c:148 ../plug-ins/rcm/rcm_dialog.c:459 msgid "Hue:" msgstr "" #. Gray: Circle: Spinbutton 2 #: ../plug-ins/common/compose.c:149 ../plug-ins/print/gimp_color_window.c:364 -#: ../plug-ins/rcm/rcm_dialog.c:479 +#: ../plug-ins/rcm/rcm_dialog.c:486 msgid "Saturation:" msgstr "" @@ -3068,15 +3069,15 @@ msgid "Deinterlace..." msgstr "" -#: ../plug-ins/common/deinterlace.c:315 +#: ../plug-ins/common/deinterlace.c:324 msgid "Deinterlace" msgstr "" -#: ../plug-ins/common/deinterlace.c:340 +#: ../plug-ins/common/deinterlace.c:349 msgid "Keep o_dd fields" msgstr "" -#: ../plug-ins/common/deinterlace.c:341 +#: ../plug-ins/common/deinterlace.c:350 msgid "Keep _even fields" msgstr "" @@ -3476,7 +3477,7 @@ #. Create selection #: ../plug-ins/common/film.c:1166 ../plug-ins/imagemap/imap_selection.c:400 -#: ../plug-ins/rcm/rcm_dialog.c:158 +#: ../plug-ins/rcm/rcm_dialog.c:165 msgid "Selection" msgstr "" @@ -4000,23 +4001,23 @@ msgid "Non-square pixels. Image might look squashed." msgstr "" -#: ../plug-ins/common/gifload.c:867 +#: ../plug-ins/common/gifload.c:866 #, c-format msgid "Background (%d%s)" msgstr "" -#: ../plug-ins/common/gifload.c:915 ../plug-ins/common/iwarp.c:783 +#: ../plug-ins/common/gifload.c:914 ../plug-ins/common/iwarp.c:783 #: ../plug-ins/common/iwarp.c:817 #, c-format msgid "Frame %d" msgstr "" -#: ../plug-ins/common/gifload.c:917 +#: ../plug-ins/common/gifload.c:916 #, c-format msgid "Frame %d (%d%s)" msgstr "" -#: ../plug-ins/common/gifload.c:947 +#: ../plug-ins/common/gifload.c:946 #, c-format msgid "" "GIF: Undocumented GIF composite type %d is not handled. Animation might not " @@ -5783,7 +5784,7 @@ msgid "B/W" msgstr "" -#: ../plug-ins/common/postscript.c:3003 ../plug-ins/rcm/rcm_dialog.c:404 +#: ../plug-ins/common/postscript.c:3003 ../plug-ins/rcm/rcm_dialog.c:411 msgid "Gray" msgstr "" @@ -5872,18 +5873,18 @@ msgid "Invalid UTF-8 string in PSD file" msgstr "" -#: ../plug-ins/common/psd_save.c:181 +#: ../plug-ins/common/psd_save.c:192 msgid "Photoshop image" msgstr "" -#: ../plug-ins/common/psd_save.c:1564 +#: ../plug-ins/common/psd_save.c:1312 #, c-format msgid "" "Unable to save '%s'. The psd file format does not support images that are " "more than 30000 pixels wide or tall." msgstr "" -#: ../plug-ins/common/psd_save.c:1576 +#: ../plug-ins/common/psd_save.c:1324 #, c-format msgid "" "Unable to save '%s'. The psd file format does not support images with " @@ -11220,87 +11221,87 @@ msgid "Rotating the colormap..." msgstr "" -#: ../plug-ins/rcm/rcm_dialog.c:114 +#: ../plug-ins/rcm/rcm_dialog.c:119 msgid "Original" msgstr "" -#: ../plug-ins/rcm/rcm_dialog.c:127 +#: ../plug-ins/rcm/rcm_dialog.c:133 msgid "Rotated" msgstr "" -#: ../plug-ins/rcm/rcm_dialog.c:140 +#: ../plug-ins/rcm/rcm_dialog.c:147 msgid "Continuous update" msgstr "" -#: ../plug-ins/rcm/rcm_dialog.c:153 +#: ../plug-ins/rcm/rcm_dialog.c:160 msgid "Area:" msgstr "" -#: ../plug-ins/rcm/rcm_dialog.c:157 +#: ../plug-ins/rcm/rcm_dialog.c:164 msgid "Entire Layer" msgstr "" -#: ../plug-ins/rcm/rcm_dialog.c:159 +#: ../plug-ins/rcm/rcm_dialog.c:166 msgid "Context" msgstr "" #. spinbutton 1 -#: ../plug-ins/rcm/rcm_dialog.c:284 ../plug-ins/rcm/rcm_dialog.c:362 +#: ../plug-ins/rcm/rcm_dialog.c:291 ../plug-ins/rcm/rcm_dialog.c:369 msgid "From" msgstr "" #. spinbutton 2 -#: ../plug-ins/rcm/rcm_dialog.c:310 ../plug-ins/rcm/rcm_dialog.c:363 +#: ../plug-ins/rcm/rcm_dialog.c:317 ../plug-ins/rcm/rcm_dialog.c:370 msgid "To" msgstr "" #. * Gray: Operation-Mode * -#: ../plug-ins/rcm/rcm_dialog.c:499 +#: ../plug-ins/rcm/rcm_dialog.c:506 msgid "Gray Mode" msgstr "" #. Gray: Operation-Mode: two radio buttons -#: ../plug-ins/rcm/rcm_dialog.c:508 +#: ../plug-ins/rcm/rcm_dialog.c:515 msgid "Treat as this" msgstr "" -#: ../plug-ins/rcm/rcm_dialog.c:520 +#: ../plug-ins/rcm/rcm_dialog.c:527 msgid "Change to this" msgstr "" #. * Gray: What is gray? * -#: ../plug-ins/rcm/rcm_dialog.c:533 +#: ../plug-ins/rcm/rcm_dialog.c:540 msgid "Gray Threshold" msgstr "" #. * Misc: Used unit selection * -#: ../plug-ins/rcm/rcm_dialog.c:572 ../plug-ins/rcm/rcm_dialog.c:676 +#: ../plug-ins/rcm/rcm_dialog.c:579 ../plug-ins/rcm/rcm_dialog.c:683 msgid "Units" msgstr "" #. Misc: Used unit selection: 3 radio buttons -#: ../plug-ins/rcm/rcm_dialog.c:581 +#: ../plug-ins/rcm/rcm_dialog.c:588 msgid "Radians" msgstr "" -#: ../plug-ins/rcm/rcm_dialog.c:593 +#: ../plug-ins/rcm/rcm_dialog.c:600 msgid "Radians/Pi" msgstr "" -#: ../plug-ins/rcm/rcm_dialog.c:605 +#: ../plug-ins/rcm/rcm_dialog.c:612 msgid "Degrees" msgstr "" #. Create dialog -#: ../plug-ins/rcm/rcm_dialog.c:638 +#: ../plug-ins/rcm/rcm_dialog.c:645 msgid "Colormap Rotation" msgstr "" -#: ../plug-ins/rcm/rcm_dialog.c:670 +#: ../plug-ins/rcm/rcm_dialog.c:677 msgid "Main Options" msgstr "" -#: ../plug-ins/rcm/rcm_dialog.c:673 +#: ../plug-ins/rcm/rcm_dialog.c:680 msgid "Gray Options" msgstr "" @@ -11381,27 +11382,27 @@ msgid "Transferring TWAIN data..." msgstr "" -#: ../plug-ins/winicon/icodialog.c:123 +#: ../plug-ins/winicon/icodialog.c:89 msgid "1 bpp, 1-bit alpha, 2-slot palette" msgstr "" -#: ../plug-ins/winicon/icodialog.c:124 +#: ../plug-ins/winicon/icodialog.c:90 msgid "4 bpp, 1-bit alpha, 16-slot palette" msgstr "" -#: ../plug-ins/winicon/icodialog.c:125 +#: ../plug-ins/winicon/icodialog.c:91 msgid "8 bpp, 1-bit alpha, 256-slot palette" msgstr "" -#: ../plug-ins/winicon/icodialog.c:126 +#: ../plug-ins/winicon/icodialog.c:92 msgid "32 bpp, 8-bit alpha, no palette" msgstr "" -#: ../plug-ins/winicon/icodialog.c:151 +#: ../plug-ins/winicon/icodialog.c:117 msgid "GIMP Windows Icon Plugin" msgstr "" -#: ../plug-ins/winicon/icodialog.c:172 +#: ../plug-ins/winicon/icodialog.c:138 msgid "Icon details" msgstr "" @@ -11410,7 +11411,7 @@ msgid "Icon #%i" msgstr "" -#: ../plug-ins/winicon/icosave.c:943 +#: ../plug-ins/winicon/icosave.c:969 msgid "Windows icons cannot be higher or wider than 255 pixels." msgstr "" diff -uraN gimp-2.2.4/po-plug-ins/he.gmo gimp-2.2.5/po-plug-ins/he.gmo --- gimp-2.2.4/po-plug-ins/he.gmo 2005-02-22 23:12:43.000000000 +0100 +++ gimp-2.2.5/po-plug-ins/he.gmo 2005-04-09 23:09:30.000000000 +0200 @@ -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: 2005-02-22 23:04+0100 +POT-Creation-Date: 2005-04-09 21:56+0200 PO-Revision-Date: 2000-02-02 14:07+0000 Last-Translator: Gil 'Dolfin' Osher Language-Team: Hebrew diff -uraN gimp-2.2.4/po-plug-ins/he.po gimp-2.2.5/po-plug-ins/he.po --- gimp-2.2.4/po-plug-ins/he.po 2005-02-22 23:12:30.000000000 +0100 +++ gimp-2.2.5/po-plug-ins/he.po 2005-04-09 23:09:16.000000000 +0200 @@ -2,7 +2,7 @@ msgstr "" "Project-Id-Version: gimp CVS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-02-22 23:04+0100\n" +"POT-Creation-Date: 2005-04-09 21:56+0200\n" "PO-Revision-Date: 2000-02-02 14:07+0000\n" "Last-Translator: Gil 'Dolfin' Osher \n" "Language-Team: Hebrew \n" @@ -374,7 +374,7 @@ #: ../plug-ins/common/pat.c:433 ../plug-ins/common/pcx.c:585 #: ../plug-ins/common/pix.c:515 ../plug-ins/common/png.c:1178 #: ../plug-ins/common/pnm.c:809 ../plug-ins/common/postscript.c:1123 -#: ../plug-ins/common/psd_save.c:1588 ../plug-ins/common/raw.c:517 +#: ../plug-ins/common/psd_save.c:1336 ../plug-ins/common/raw.c:517 #: ../plug-ins/common/raw.c:544 ../plug-ins/common/spheredesigner.c:2088 #: ../plug-ins/common/sunras.c:513 ../plug-ins/common/tga.c:1030 #: ../plug-ins/common/tiff.c:1810 ../plug-ins/common/xbm.c:996 @@ -1247,35 +1247,36 @@ #: ../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 +#: ../plug-ins/bmp/bmpread.c:207 ../plug-ins/bmp/bmpread.c:307 +#: ../plug-ins/bmp/bmpread.c:348 #, c-format msgid "'%s' is not a valid BMP file" msgstr "" #: ../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 +#: ../plug-ins/bmp/bmpread.c:300 ../plug-ins/bmp/bmpread.c:313 +#: ../plug-ins/bmp/bmpread.c:319 #, c-format msgid "Error reading BMP file header from '%s'" msgstr "" -#: ../plug-ins/bmp/bmpread.c:442 ../plug-ins/bmp/bmpread.c:477 +#: ../plug-ins/bmp/bmpread.c:450 ../plug-ins/bmp/bmpread.c:485 msgid "Unrecognized or invalid BMP compression format." msgstr "" #. #. * Create the "background" layer to hold the image... #. -#: ../plug-ins/bmp/bmpread.c:482 ../plug-ins/common/CEL.c:357 +#: ../plug-ins/bmp/bmpread.c:490 ../plug-ins/common/CEL.c:357 #: ../plug-ins/common/CEL.c:360 ../plug-ins/common/blinds.c:273 #: ../plug-ins/common/compose.c:625 ../plug-ins/common/decompose.c:595 #: ../plug-ins/common/dicom.c:442 ../plug-ins/common/film.c:946 -#: ../plug-ins/common/gifload.c:865 ../plug-ins/common/jpeg.c:1113 +#: ../plug-ins/common/gifload.c:864 ../plug-ins/common/jpeg.c:1113 #: ../plug-ins/common/jpeg.c:2474 ../plug-ins/common/pcx.c:334 #: ../plug-ins/common/pcx.c:340 ../plug-ins/common/pix.c:374 #: ../plug-ins/common/png.c:808 ../plug-ins/common/pnm.c:517 -#: ../plug-ins/common/psd.c:2173 ../plug-ins/common/raw.c:677 +#: ../plug-ins/common/psd.c:2174 ../plug-ins/common/raw.c:677 #: ../plug-ins/common/smooth_palette.c:257 ../plug-ins/common/sunras.c:925 #: ../plug-ins/common/tga.c:929 ../plug-ins/common/tiff.c:833 #: ../plug-ins/common/tile.c:266 ../plug-ins/common/winclipboard.c:579 @@ -1307,12 +1308,12 @@ #: ../plug-ins/common/jpeg.c:1453 ../plug-ins/common/pat.c:438 #: ../plug-ins/common/pcx.c:545 ../plug-ins/common/pix.c:521 #: ../plug-ins/common/png.c:1185 ../plug-ins/common/pnm.c:814 -#: ../plug-ins/common/postscript.c:1128 ../plug-ins/common/psd_save.c:1593 +#: ../plug-ins/common/postscript.c:1128 ../plug-ins/common/psd_save.c:1341 #: ../plug-ins/common/sunras.c:518 ../plug-ins/common/tga.c:1035 #: ../plug-ins/common/tiff.c:1815 ../plug-ins/common/xbm.c:1001 #: ../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:957 +#: ../plug-ins/sgi/sgi.c:545 ../plug-ins/winicon/icosave.c:977 #: ../plug-ins/xjt/xjt.c:1682 #, c-format msgid "Saving '%s'..." @@ -1660,7 +1661,7 @@ msgstr "" #: ../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 +#: ../plug-ins/common/decompose.c:144 ../plug-ins/rcm/rcm_dialog.c:548 msgid "Saturation" msgstr "" @@ -2497,25 +2498,25 @@ msgid "Color to _Alpha..." msgstr "Colour to Alpha" -#: ../plug-ins/common/colortoalpha.c:181 +#: ../plug-ins/common/colortoalpha.c:187 #, fuzzy msgid "Removing color..." msgstr "Rotating the colourmap..." -#: ../plug-ins/common/colortoalpha.c:377 +#: ../plug-ins/common/colortoalpha.c:380 msgid "Color to Alpha" msgstr "Colour to Alpha" -#: ../plug-ins/common/colortoalpha.c:402 ../plug-ins/common/mapcolor.c:424 +#: ../plug-ins/common/colortoalpha.c:405 ../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:406 +#: ../plug-ins/common/colortoalpha.c:409 msgid "Color to Alpha Color Picker" msgstr "Colour to Alpha Colour Picker" -#: ../plug-ins/common/colortoalpha.c:420 +#: ../plug-ins/common/colortoalpha.c:423 #, fuzzy msgid "to alpha" msgstr "Colour to Alpha" @@ -2539,13 +2540,13 @@ msgstr "" #. Gray: Circle: Spinbutton 1 -#: ../plug-ins/common/compose.c:148 ../plug-ins/rcm/rcm_dialog.c:452 +#: ../plug-ins/common/compose.c:148 ../plug-ins/rcm/rcm_dialog.c:459 msgid "Hue:" msgstr "" #. Gray: Circle: Spinbutton 2 #: ../plug-ins/common/compose.c:149 ../plug-ins/print/gimp_color_window.c:364 -#: ../plug-ins/rcm/rcm_dialog.c:479 +#: ../plug-ins/rcm/rcm_dialog.c:486 msgid "Saturation:" msgstr "" @@ -3176,15 +3177,15 @@ msgid "Deinterlace..." msgstr "" -#: ../plug-ins/common/deinterlace.c:315 +#: ../plug-ins/common/deinterlace.c:324 msgid "Deinterlace" msgstr "" -#: ../plug-ins/common/deinterlace.c:340 +#: ../plug-ins/common/deinterlace.c:349 msgid "Keep o_dd fields" msgstr "" -#: ../plug-ins/common/deinterlace.c:341 +#: ../plug-ins/common/deinterlace.c:350 msgid "Keep _even fields" msgstr "" @@ -3596,7 +3597,7 @@ #. Create selection #: ../plug-ins/common/film.c:1166 ../plug-ins/imagemap/imap_selection.c:400 -#: ../plug-ins/rcm/rcm_dialog.c:158 +#: ../plug-ins/rcm/rcm_dialog.c:165 msgid "Selection" msgstr "" @@ -4149,23 +4150,23 @@ msgid "Non-square pixels. Image might look squashed." msgstr "" -#: ../plug-ins/common/gifload.c:867 +#: ../plug-ins/common/gifload.c:866 #, fuzzy, c-format msgid "Background (%d%s)" msgstr "Background Colour" -#: ../plug-ins/common/gifload.c:915 ../plug-ins/common/iwarp.c:783 +#: ../plug-ins/common/gifload.c:914 ../plug-ins/common/iwarp.c:783 #: ../plug-ins/common/iwarp.c:817 #, c-format msgid "Frame %d" msgstr "" -#: ../plug-ins/common/gifload.c:917 +#: ../plug-ins/common/gifload.c:916 #, c-format msgid "Frame %d (%d%s)" msgstr "" -#: ../plug-ins/common/gifload.c:947 +#: ../plug-ins/common/gifload.c:946 #, c-format msgid "" "GIF: Undocumented GIF composite type %d is not handled. Animation might not " @@ -6002,7 +6003,7 @@ msgid "B/W" msgstr "" -#: ../plug-ins/common/postscript.c:3003 ../plug-ins/rcm/rcm_dialog.c:404 +#: ../plug-ins/common/postscript.c:3003 ../plug-ins/rcm/rcm_dialog.c:411 msgid "Gray" msgstr "Grey" @@ -6094,18 +6095,18 @@ msgid "Invalid UTF-8 string in PSD file" msgstr "" -#: ../plug-ins/common/psd_save.c:181 +#: ../plug-ins/common/psd_save.c:192 msgid "Photoshop image" msgstr "" -#: ../plug-ins/common/psd_save.c:1564 +#: ../plug-ins/common/psd_save.c:1312 #, c-format msgid "" "Unable to save '%s'. The psd file format does not support images that are " "more than 30000 pixels wide or tall." msgstr "" -#: ../plug-ins/common/psd_save.c:1576 +#: ../plug-ins/common/psd_save.c:1324 #, c-format msgid "" "Unable to save '%s'. The psd file format does not support images with " @@ -11658,88 +11659,88 @@ msgid "Rotating the colormap..." msgstr "Rotating the colourmap..." -#: ../plug-ins/rcm/rcm_dialog.c:114 +#: ../plug-ins/rcm/rcm_dialog.c:119 msgid "Original" msgstr "" -#: ../plug-ins/rcm/rcm_dialog.c:127 +#: ../plug-ins/rcm/rcm_dialog.c:133 msgid "Rotated" msgstr "" -#: ../plug-ins/rcm/rcm_dialog.c:140 +#: ../plug-ins/rcm/rcm_dialog.c:147 msgid "Continuous update" msgstr "" -#: ../plug-ins/rcm/rcm_dialog.c:153 +#: ../plug-ins/rcm/rcm_dialog.c:160 msgid "Area:" msgstr "" -#: ../plug-ins/rcm/rcm_dialog.c:157 +#: ../plug-ins/rcm/rcm_dialog.c:164 msgid "Entire Layer" msgstr "" -#: ../plug-ins/rcm/rcm_dialog.c:159 +#: ../plug-ins/rcm/rcm_dialog.c:166 msgid "Context" msgstr "" #. spinbutton 1 -#: ../plug-ins/rcm/rcm_dialog.c:284 ../plug-ins/rcm/rcm_dialog.c:362 +#: ../plug-ins/rcm/rcm_dialog.c:291 ../plug-ins/rcm/rcm_dialog.c:369 msgid "From" msgstr "" #. spinbutton 2 -#: ../plug-ins/rcm/rcm_dialog.c:310 ../plug-ins/rcm/rcm_dialog.c:363 +#: ../plug-ins/rcm/rcm_dialog.c:317 ../plug-ins/rcm/rcm_dialog.c:370 msgid "To" msgstr "" #. * Gray: Operation-Mode * -#: ../plug-ins/rcm/rcm_dialog.c:499 +#: ../plug-ins/rcm/rcm_dialog.c:506 #, fuzzy msgid "Gray Mode" msgstr "Colour Mode" #. Gray: Operation-Mode: two radio buttons -#: ../plug-ins/rcm/rcm_dialog.c:508 +#: ../plug-ins/rcm/rcm_dialog.c:515 msgid "Treat as this" msgstr "" -#: ../plug-ins/rcm/rcm_dialog.c:520 +#: ../plug-ins/rcm/rcm_dialog.c:527 msgid "Change to this" msgstr "" #. * Gray: What is gray? * -#: ../plug-ins/rcm/rcm_dialog.c:533 +#: ../plug-ins/rcm/rcm_dialog.c:540 msgid "Gray Threshold" msgstr "" #. * Misc: Used unit selection * -#: ../plug-ins/rcm/rcm_dialog.c:572 ../plug-ins/rcm/rcm_dialog.c:676 +#: ../plug-ins/rcm/rcm_dialog.c:579 ../plug-ins/rcm/rcm_dialog.c:683 msgid "Units" msgstr "" #. Misc: Used unit selection: 3 radio buttons -#: ../plug-ins/rcm/rcm_dialog.c:581 +#: ../plug-ins/rcm/rcm_dialog.c:588 msgid "Radians" msgstr "" -#: ../plug-ins/rcm/rcm_dialog.c:593 +#: ../plug-ins/rcm/rcm_dialog.c:600 msgid "Radians/Pi" msgstr "" -#: ../plug-ins/rcm/rcm_dialog.c:605 +#: ../plug-ins/rcm/rcm_dialog.c:612 msgid "Degrees" msgstr "" #. Create dialog -#: ../plug-ins/rcm/rcm_dialog.c:638 +#: ../plug-ins/rcm/rcm_dialog.c:645 msgid "Colormap Rotation" msgstr "Colourmap Rotation" -#: ../plug-ins/rcm/rcm_dialog.c:670 +#: ../plug-ins/rcm/rcm_dialog.c:677 msgid "Main Options" msgstr "" -#: ../plug-ins/rcm/rcm_dialog.c:673 +#: ../plug-ins/rcm/rcm_dialog.c:680 #, fuzzy msgid "Gray Options" msgstr "Centre" @@ -11823,27 +11824,27 @@ msgid "Transferring TWAIN data..." msgstr "" -#: ../plug-ins/winicon/icodialog.c:123 +#: ../plug-ins/winicon/icodialog.c:89 msgid "1 bpp, 1-bit alpha, 2-slot palette" msgstr "" -#: ../plug-ins/winicon/icodialog.c:124 +#: ../plug-ins/winicon/icodialog.c:90 msgid "4 bpp, 1-bit alpha, 16-slot palette" msgstr "" -#: ../plug-ins/winicon/icodialog.c:125 +#: ../plug-ins/winicon/icodialog.c:91 msgid "8 bpp, 1-bit alpha, 256-slot palette" msgstr "" -#: ../plug-ins/winicon/icodialog.c:126 +#: ../plug-ins/winicon/icodialog.c:92 msgid "32 bpp, 8-bit alpha, no palette" msgstr "" -#: ../plug-ins/winicon/icodialog.c:151 +#: ../plug-ins/winicon/icodialog.c:117 msgid "GIMP Windows Icon Plugin" msgstr "" -#: ../plug-ins/winicon/icodialog.c:172 +#: ../plug-ins/winicon/icodialog.c:138 #, fuzzy msgid "Icon details" msgstr "Colour Selection Dialog" @@ -11853,7 +11854,7 @@ msgid "Icon #%i" msgstr "" -#: ../plug-ins/winicon/icosave.c:943 +#: ../plug-ins/winicon/icosave.c:969 msgid "Windows icons cannot be higher or wider than 255 pixels." msgstr "" diff -uraN gimp-2.2.4/po-plug-ins/hr.gmo gimp-2.2.5/po-plug-ins/hr.gmo --- gimp-2.2.4/po-plug-ins/hr.gmo 2005-02-22 23:12:43.000000000 +0100 +++ gimp-2.2.5/po-plug-ins/hr.gmo 2005-04-09 23:09:30.000000000 +0200 @@ -303,7 +303,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: 2005-02-22 23:04+0100 +POT-Creation-Date: 2005-04-09 21:56+0200 PO-Revision-Date: 2004-03-20 14:49+CET Last-Translator: auto Language-Team: Croatian diff -uraN gimp-2.2.4/po-plug-ins/hr.po gimp-2.2.5/po-plug-ins/hr.po --- gimp-2.2.4/po-plug-ins/hr.po 2005-02-22 23:12:31.000000000 +0100 +++ gimp-2.2.5/po-plug-ins/hr.po 2005-04-09 23:09:17.000000000 +0200 @@ -5,7 +5,7 @@ msgstr "" "Project-Id-Version: gimp-plug-ins 0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-02-22 23:04+0100\n" +"POT-Creation-Date: 2005-04-09 21:56+0200\n" "PO-Revision-Date: 2004-03-20 14:49+CET\n" "Last-Translator: auto\n" "Language-Team: Croatian \n" @@ -383,7 +383,7 @@ #: ../plug-ins/common/pat.c:433 ../plug-ins/common/pcx.c:585 #: ../plug-ins/common/pix.c:515 ../plug-ins/common/png.c:1178 #: ../plug-ins/common/pnm.c:809 ../plug-ins/common/postscript.c:1123 -#: ../plug-ins/common/psd_save.c:1588 ../plug-ins/common/raw.c:517 +#: ../plug-ins/common/psd_save.c:1336 ../plug-ins/common/raw.c:517 #: ../plug-ins/common/raw.c:544 ../plug-ins/common/spheredesigner.c:2088 #: ../plug-ins/common/sunras.c:513 ../plug-ins/common/tga.c:1030 #: ../plug-ins/common/tiff.c:1810 ../plug-ins/common/xbm.c:996 @@ -1264,35 +1264,36 @@ #: ../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 +#: ../plug-ins/bmp/bmpread.c:207 ../plug-ins/bmp/bmpread.c:307 +#: ../plug-ins/bmp/bmpread.c:348 #, c-format msgid "'%s' is not a valid BMP file" msgstr "'%s' nije valjana BMP datoteka" #: ../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 +#: ../plug-ins/bmp/bmpread.c:300 ../plug-ins/bmp/bmpread.c:313 +#: ../plug-ins/bmp/bmpread.c:319 #, c-format msgid "Error reading BMP file header from '%s'" msgstr "Greška kod čitanja BMP zaglavlja iz '%s'" -#: ../plug-ins/bmp/bmpread.c:442 ../plug-ins/bmp/bmpread.c:477 +#: ../plug-ins/bmp/bmpread.c:450 ../plug-ins/bmp/bmpread.c:485 msgid "Unrecognized or invalid BMP compression format." msgstr "" #. #. * Create the "background" layer to hold the image... #. -#: ../plug-ins/bmp/bmpread.c:482 ../plug-ins/common/CEL.c:357 +#: ../plug-ins/bmp/bmpread.c:490 ../plug-ins/common/CEL.c:357 #: ../plug-ins/common/CEL.c:360 ../plug-ins/common/blinds.c:273 #: ../plug-ins/common/compose.c:625 ../plug-ins/common/decompose.c:595 #: ../plug-ins/common/dicom.c:442 ../plug-ins/common/film.c:946 -#: ../plug-ins/common/gifload.c:865 ../plug-ins/common/jpeg.c:1113 +#: ../plug-ins/common/gifload.c:864 ../plug-ins/common/jpeg.c:1113 #: ../plug-ins/common/jpeg.c:2474 ../plug-ins/common/pcx.c:334 #: ../plug-ins/common/pcx.c:340 ../plug-ins/common/pix.c:374 #: ../plug-ins/common/png.c:808 ../plug-ins/common/pnm.c:517 -#: ../plug-ins/common/psd.c:2173 ../plug-ins/common/raw.c:677 +#: ../plug-ins/common/psd.c:2174 ../plug-ins/common/raw.c:677 #: ../plug-ins/common/smooth_palette.c:257 ../plug-ins/common/sunras.c:925 #: ../plug-ins/common/tga.c:929 ../plug-ins/common/tiff.c:833 #: ../plug-ins/common/tile.c:266 ../plug-ins/common/winclipboard.c:579 @@ -1323,12 +1324,12 @@ #: ../plug-ins/common/jpeg.c:1453 ../plug-ins/common/pat.c:438 #: ../plug-ins/common/pcx.c:545 ../plug-ins/common/pix.c:521 #: ../plug-ins/common/png.c:1185 ../plug-ins/common/pnm.c:814 -#: ../plug-ins/common/postscript.c:1128 ../plug-ins/common/psd_save.c:1593 +#: ../plug-ins/common/postscript.c:1128 ../plug-ins/common/psd_save.c:1341 #: ../plug-ins/common/sunras.c:518 ../plug-ins/common/tga.c:1035 #: ../plug-ins/common/tiff.c:1815 ../plug-ins/common/xbm.c:1001 #: ../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:957 +#: ../plug-ins/sgi/sgi.c:545 ../plug-ins/winicon/icosave.c:977 #: ../plug-ins/xjt/xjt.c:1682 #, c-format msgid "Saving '%s'..." @@ -1685,7 +1686,7 @@ msgstr "Nijanse" #: ../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 +#: ../plug-ins/common/decompose.c:144 ../plug-ins/rcm/rcm_dialog.c:548 msgid "Saturation" msgstr "Zasićenje" @@ -2569,24 +2570,24 @@ msgid "Color to _Alpha..." msgstr "Boja u Alfu" -#: ../plug-ins/common/colortoalpha.c:181 +#: ../plug-ins/common/colortoalpha.c:187 msgid "Removing color..." msgstr "Uklanjam boju..." -#: ../plug-ins/common/colortoalpha.c:377 +#: ../plug-ins/common/colortoalpha.c:380 msgid "Color to Alpha" msgstr "Boja u Alfu" -#: ../plug-ins/common/colortoalpha.c:402 ../plug-ins/common/mapcolor.c:424 +#: ../plug-ins/common/colortoalpha.c:405 ../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:406 +#: ../plug-ins/common/colortoalpha.c:409 msgid "Color to Alpha Color Picker" msgstr "Boja u Kapaljku Alfa Boje" -#: ../plug-ins/common/colortoalpha.c:420 +#: ../plug-ins/common/colortoalpha.c:423 #, fuzzy msgid "to alpha" msgstr "u Alfu" @@ -2610,13 +2611,13 @@ msgstr "HSV" #. Gray: Circle: Spinbutton 1 -#: ../plug-ins/common/compose.c:148 ../plug-ins/rcm/rcm_dialog.c:452 +#: ../plug-ins/common/compose.c:148 ../plug-ins/rcm/rcm_dialog.c:459 msgid "Hue:" msgstr "Nijansa:" #. Gray: Circle: Spinbutton 2 #: ../plug-ins/common/compose.c:149 ../plug-ins/print/gimp_color_window.c:364 -#: ../plug-ins/rcm/rcm_dialog.c:479 +#: ../plug-ins/rcm/rcm_dialog.c:486 msgid "Saturation:" msgstr "Zasićenje:" @@ -3253,16 +3254,16 @@ msgid "Deinterlace..." msgstr "Isprepletenost..." -#: ../plug-ins/common/deinterlace.c:315 +#: ../plug-ins/common/deinterlace.c:324 msgid "Deinterlace" msgstr "Isprepletenost" -#: ../plug-ins/common/deinterlace.c:340 +#: ../plug-ins/common/deinterlace.c:349 #, fuzzy msgid "Keep o_dd fields" msgstr "Zadrži _parna polja" -#: ../plug-ins/common/deinterlace.c:341 +#: ../plug-ins/common/deinterlace.c:350 #, fuzzy msgid "Keep _even fields" msgstr "Zadrži _neparna polja" @@ -3705,7 +3706,7 @@ #. Create selection #: ../plug-ins/common/film.c:1166 ../plug-ins/imagemap/imap_selection.c:400 -#: ../plug-ins/rcm/rcm_dialog.c:158 +#: ../plug-ins/rcm/rcm_dialog.c:165 msgid "Selection" msgstr "Odabir" @@ -4275,23 +4276,23 @@ msgid "Non-square pixels. Image might look squashed." msgstr "Ne-kvadratne točke. Slika može izgledati stiješnjeno." -#: ../plug-ins/common/gifload.c:867 +#: ../plug-ins/common/gifload.c:866 #, c-format msgid "Background (%d%s)" msgstr "Pozadina (%d%s)" -#: ../plug-ins/common/gifload.c:915 ../plug-ins/common/iwarp.c:783 +#: ../plug-ins/common/gifload.c:914 ../plug-ins/common/iwarp.c:783 #: ../plug-ins/common/iwarp.c:817 #, c-format msgid "Frame %d" msgstr "Okvir %d" -#: ../plug-ins/common/gifload.c:917 +#: ../plug-ins/common/gifload.c:916 #, c-format msgid "Frame %d (%d%s)" msgstr "Okvir %d (%d%s)" -#: ../plug-ins/common/gifload.c:947 +#: ../plug-ins/common/gifload.c:946 #, c-format msgid "" "GIF: Undocumented GIF composite type %d is not handled. Animation might not " @@ -6209,7 +6210,7 @@ msgid "B/W" msgstr "B/W" -#: ../plug-ins/common/postscript.c:3003 ../plug-ins/rcm/rcm_dialog.c:404 +#: ../plug-ins/common/postscript.c:3003 ../plug-ins/rcm/rcm_dialog.c:411 msgid "Gray" msgstr "Siva" @@ -6305,18 +6306,18 @@ msgid "Invalid UTF-8 string in PSD file" msgstr "Neispravan UTF-8 niz u PSD datoteci" -#: ../plug-ins/common/psd_save.c:181 +#: ../plug-ins/common/psd_save.c:192 msgid "Photoshop image" msgstr "" -#: ../plug-ins/common/psd_save.c:1564 +#: ../plug-ins/common/psd_save.c:1312 #, c-format msgid "" "Unable to save '%s'. The psd file format does not support images that are " "more than 30000 pixels wide or tall." msgstr "" -#: ../plug-ins/common/psd_save.c:1576 +#: ../plug-ins/common/psd_save.c:1324 #, c-format msgid "" "Unable to save '%s'. The psd file format does not support images with " @@ -12079,89 +12080,89 @@ msgid "Rotating the colormap..." msgstr "Rotiram mapu boja..." -#: ../plug-ins/rcm/rcm_dialog.c:114 +#: ../plug-ins/rcm/rcm_dialog.c:119 msgid "Original" msgstr "Original" -#: ../plug-ins/rcm/rcm_dialog.c:127 +#: ../plug-ins/rcm/rcm_dialog.c:133 msgid "Rotated" msgstr "Rotirano" -#: ../plug-ins/rcm/rcm_dialog.c:140 +#: ../plug-ins/rcm/rcm_dialog.c:147 msgid "Continuous update" msgstr "Kontinuirana nadogradnja" -#: ../plug-ins/rcm/rcm_dialog.c:153 +#: ../plug-ins/rcm/rcm_dialog.c:160 msgid "Area:" msgstr "Područje:" -#: ../plug-ins/rcm/rcm_dialog.c:157 +#: ../plug-ins/rcm/rcm_dialog.c:164 msgid "Entire Layer" msgstr "Cijela Slika" -#: ../plug-ins/rcm/rcm_dialog.c:159 +#: ../plug-ins/rcm/rcm_dialog.c:166 msgid "Context" msgstr "Kontekst" #. spinbutton 1 -#: ../plug-ins/rcm/rcm_dialog.c:284 ../plug-ins/rcm/rcm_dialog.c:362 +#: ../plug-ins/rcm/rcm_dialog.c:291 ../plug-ins/rcm/rcm_dialog.c:369 msgid "From" msgstr "Od" #. spinbutton 2 -#: ../plug-ins/rcm/rcm_dialog.c:310 ../plug-ins/rcm/rcm_dialog.c:363 +#: ../plug-ins/rcm/rcm_dialog.c:317 ../plug-ins/rcm/rcm_dialog.c:370 msgid "To" msgstr "Prima" #. * Gray: Operation-Mode * -#: ../plug-ins/rcm/rcm_dialog.c:499 +#: ../plug-ins/rcm/rcm_dialog.c:506 #, fuzzy msgid "Gray Mode" msgstr "Odabir boje" #. Gray: Operation-Mode: two radio buttons -#: ../plug-ins/rcm/rcm_dialog.c:508 +#: ../plug-ins/rcm/rcm_dialog.c:515 msgid "Treat as this" msgstr "Gledaj kao ovo" -#: ../plug-ins/rcm/rcm_dialog.c:520 +#: ../plug-ins/rcm/rcm_dialog.c:527 msgid "Change to this" msgstr "Promijeni u ovo" #. * Gray: What is gray? * -#: ../plug-ins/rcm/rcm_dialog.c:533 +#: ../plug-ins/rcm/rcm_dialog.c:540 #, fuzzy msgid "Gray Threshold" msgstr "Prag _Zelene:" #. * Misc: Used unit selection * -#: ../plug-ins/rcm/rcm_dialog.c:572 ../plug-ins/rcm/rcm_dialog.c:676 +#: ../plug-ins/rcm/rcm_dialog.c:579 ../plug-ins/rcm/rcm_dialog.c:683 msgid "Units" msgstr "Jedinice" #. Misc: Used unit selection: 3 radio buttons -#: ../plug-ins/rcm/rcm_dialog.c:581 +#: ../plug-ins/rcm/rcm_dialog.c:588 msgid "Radians" msgstr "Radijani" -#: ../plug-ins/rcm/rcm_dialog.c:593 +#: ../plug-ins/rcm/rcm_dialog.c:600 msgid "Radians/Pi" msgstr "Polumjer/Pi" -#: ../plug-ins/rcm/rcm_dialog.c:605 +#: ../plug-ins/rcm/rcm_dialog.c:612 msgid "Degrees" msgstr "Stupnjeva" #. Create dialog -#: ../plug-ins/rcm/rcm_dialog.c:638 +#: ../plug-ins/rcm/rcm_dialog.c:645 msgid "Colormap Rotation" msgstr "Rotacija mape boja" -#: ../plug-ins/rcm/rcm_dialog.c:670 +#: ../plug-ins/rcm/rcm_dialog.c:677 msgid "Main Options" msgstr "Glavne opcije" -#: ../plug-ins/rcm/rcm_dialog.c:673 +#: ../plug-ins/rcm/rcm_dialog.c:680 #, fuzzy msgid "Gray Options" msgstr "Opće Mogućnosti" @@ -12249,27 +12250,27 @@ msgid "Transferring TWAIN data..." msgstr "Prenosim TWAIN podatke..." -#: ../plug-ins/winicon/icodialog.c:123 +#: ../plug-ins/winicon/icodialog.c:89 msgid "1 bpp, 1-bit alpha, 2-slot palette" msgstr "" -#: ../plug-ins/winicon/icodialog.c:124 +#: ../plug-ins/winicon/icodialog.c:90 msgid "4 bpp, 1-bit alpha, 16-slot palette" msgstr "" -#: ../plug-ins/winicon/icodialog.c:125 +#: ../plug-ins/winicon/icodialog.c:91 msgid "8 bpp, 1-bit alpha, 256-slot palette" msgstr "" -#: ../plug-ins/winicon/icodialog.c:126 +#: ../plug-ins/winicon/icodialog.c:92 msgid "32 bpp, 8-bit alpha, no palette" msgstr "" -#: ../plug-ins/winicon/icodialog.c:151 +#: ../plug-ins/winicon/icodialog.c:117 msgid "GIMP Windows Icon Plugin" msgstr "" -#: ../plug-ins/winicon/icodialog.c:172 +#: ../plug-ins/winicon/icodialog.c:138 #, fuzzy msgid "Icon details" msgstr "Detalji kolekcije" @@ -12279,7 +12280,7 @@ msgid "Icon #%i" msgstr "" -#: ../plug-ins/winicon/icosave.c:943 +#: ../plug-ins/winicon/icosave.c:969 msgid "Windows icons cannot be higher or wider than 255 pixels." msgstr "" diff -uraN gimp-2.2.4/po-plug-ins/hu.gmo gimp-2.2.5/po-plug-ins/hu.gmo --- gimp-2.2.4/po-plug-ins/hu.gmo 2005-02-22 23:12:43.000000000 +0100 +++ gimp-2.2.5/po-plug-ins/hu.gmo 2005-04-09 23:09:30.000000000 +0200 @@ -467,7 +467,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: 2005-02-22 23:04+0100 +POT-Creation-Date: 2005-04-09 21:56+0200 PO-Revision-Date: 2004-12-19 09:46+0100 Last-Translator: Arpad Biro Language-Team: Hungarian diff -uraN gimp-2.2.4/po-plug-ins/hu.po gimp-2.2.5/po-plug-ins/hu.po --- gimp-2.2.4/po-plug-ins/hu.po 2005-02-22 23:12:31.000000000 +0100 +++ gimp-2.2.5/po-plug-ins/hu.po 2005-04-09 23:09:16.000000000 +0200 @@ -10,7 +10,7 @@ msgstr "" "Project-Id-Version: gimp-plug-ins\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-02-22 23:04+0100\n" +"POT-Creation-Date: 2005-04-09 21:56+0200\n" "PO-Revision-Date: 2004-12-19 09:46+0100\n" "Last-Translator: Arpad Biro \n" "Language-Team: Hungarian \n" @@ -388,7 +388,7 @@ #: ../plug-ins/common/pat.c:433 ../plug-ins/common/pcx.c:585 #: ../plug-ins/common/pix.c:515 ../plug-ins/common/png.c:1178 #: ../plug-ins/common/pnm.c:809 ../plug-ins/common/postscript.c:1123 -#: ../plug-ins/common/psd_save.c:1588 ../plug-ins/common/raw.c:517 +#: ../plug-ins/common/psd_save.c:1336 ../plug-ins/common/raw.c:517 #: ../plug-ins/common/raw.c:544 ../plug-ins/common/spheredesigner.c:2088 #: ../plug-ins/common/sunras.c:513 ../plug-ins/common/tga.c:1030 #: ../plug-ins/common/tiff.c:1810 ../plug-ins/common/xbm.c:996 @@ -1230,35 +1230,36 @@ #: ../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 +#: ../plug-ins/bmp/bmpread.c:207 ../plug-ins/bmp/bmpread.c:307 +#: ../plug-ins/bmp/bmpread.c:348 #, c-format msgid "'%s' is not a valid BMP file" msgstr "\"%s\" nem érvényes BMP-fájl" #: ../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 +#: ../plug-ins/bmp/bmpread.c:300 ../plug-ins/bmp/bmpread.c:313 +#: ../plug-ins/bmp/bmpread.c:319 #, c-format msgid "Error reading BMP file header from '%s'" msgstr "Hiba a BMP-fájlfejléc innen való beolvasásakor: \"%s\"" -#: ../plug-ins/bmp/bmpread.c:442 ../plug-ins/bmp/bmpread.c:477 +#: ../plug-ins/bmp/bmpread.c:450 ../plug-ins/bmp/bmpread.c:485 msgid "Unrecognized or invalid BMP compression format." msgstr "Ismeretlen vagy érvénytelen BMP-tömörítési formátum." #. #. * Create the "background" layer to hold the image... #. -#: ../plug-ins/bmp/bmpread.c:482 ../plug-ins/common/CEL.c:357 +#: ../plug-ins/bmp/bmpread.c:490 ../plug-ins/common/CEL.c:357 #: ../plug-ins/common/CEL.c:360 ../plug-ins/common/blinds.c:273 #: ../plug-ins/common/compose.c:625 ../plug-ins/common/decompose.c:595 #: ../plug-ins/common/dicom.c:442 ../plug-ins/common/film.c:946 -#: ../plug-ins/common/gifload.c:865 ../plug-ins/common/jpeg.c:1113 +#: ../plug-ins/common/gifload.c:864 ../plug-ins/common/jpeg.c:1113 #: ../plug-ins/common/jpeg.c:2474 ../plug-ins/common/pcx.c:334 #: ../plug-ins/common/pcx.c:340 ../plug-ins/common/pix.c:374 #: ../plug-ins/common/png.c:808 ../plug-ins/common/pnm.c:517 -#: ../plug-ins/common/psd.c:2173 ../plug-ins/common/raw.c:677 +#: ../plug-ins/common/psd.c:2174 ../plug-ins/common/raw.c:677 #: ../plug-ins/common/smooth_palette.c:257 ../plug-ins/common/sunras.c:925 #: ../plug-ins/common/tga.c:929 ../plug-ins/common/tiff.c:833 #: ../plug-ins/common/tile.c:266 ../plug-ins/common/winclipboard.c:579 @@ -1289,12 +1290,12 @@ #: ../plug-ins/common/jpeg.c:1453 ../plug-ins/common/pat.c:438 #: ../plug-ins/common/pcx.c:545 ../plug-ins/common/pix.c:521 #: ../plug-ins/common/png.c:1185 ../plug-ins/common/pnm.c:814 -#: ../plug-ins/common/postscript.c:1128 ../plug-ins/common/psd_save.c:1593 +#: ../plug-ins/common/postscript.c:1128 ../plug-ins/common/psd_save.c:1341 #: ../plug-ins/common/sunras.c:518 ../plug-ins/common/tga.c:1035 #: ../plug-ins/common/tiff.c:1815 ../plug-ins/common/xbm.c:1001 #: ../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:957 +#: ../plug-ins/sgi/sgi.c:545 ../plug-ins/winicon/icosave.c:977 #: ../plug-ins/xjt/xjt.c:1682 #, c-format msgid "Saving '%s'..." @@ -1631,7 +1632,7 @@ msgstr "Árnyalat" #: ../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 +#: ../plug-ins/common/decompose.c:144 ../plug-ins/rcm/rcm_dialog.c:548 msgid "Saturation" msgstr "Telítettség" @@ -2438,24 +2439,24 @@ msgid "Color to _Alpha..." msgstr "Színből a_lfa..." -#: ../plug-ins/common/colortoalpha.c:181 +#: ../plug-ins/common/colortoalpha.c:187 msgid "Removing color..." msgstr "Szín eltávolítása..." -#: ../plug-ins/common/colortoalpha.c:377 +#: ../plug-ins/common/colortoalpha.c:380 msgid "Color to Alpha" msgstr "Színből alfa" -#: ../plug-ins/common/colortoalpha.c:402 ../plug-ins/common/mapcolor.c:424 +#: ../plug-ins/common/colortoalpha.c:405 ../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:406 +#: ../plug-ins/common/colortoalpha.c:409 msgid "Color to Alpha Color Picker" msgstr "\"Színből alfa\" színpipetta" -#: ../plug-ins/common/colortoalpha.c:420 +#: ../plug-ins/common/colortoalpha.c:423 msgid "to alpha" msgstr "alfára" @@ -2478,13 +2479,13 @@ msgstr "HSV" #. Gray: Circle: Spinbutton 1 -#: ../plug-ins/common/compose.c:148 ../plug-ins/rcm/rcm_dialog.c:452 +#: ../plug-ins/common/compose.c:148 ../plug-ins/rcm/rcm_dialog.c:459 msgid "Hue:" msgstr "Árnyalat:" #. Gray: Circle: Spinbutton 2 #: ../plug-ins/common/compose.c:149 ../plug-ins/print/gimp_color_window.c:364 -#: ../plug-ins/rcm/rcm_dialog.c:479 +#: ../plug-ins/rcm/rcm_dialog.c:486 msgid "Saturation:" msgstr "Telítettség:" @@ -3098,15 +3099,15 @@ msgid "Deinterlace..." msgstr "Váltottsorosság megszüntetése..." -#: ../plug-ins/common/deinterlace.c:315 +#: ../plug-ins/common/deinterlace.c:324 msgid "Deinterlace" msgstr "Váltottsorosság megszüntetése" -#: ../plug-ins/common/deinterlace.c:340 +#: ../plug-ins/common/deinterlace.c:349 msgid "Keep o_dd fields" msgstr "Pára_tlan mezők megtartása" -#: ../plug-ins/common/deinterlace.c:341 +#: ../plug-ins/common/deinterlace.c:350 msgid "Keep _even fields" msgstr "Pá_ros mezők megtartása" @@ -3508,7 +3509,7 @@ #. Create selection #: ../plug-ins/common/film.c:1166 ../plug-ins/imagemap/imap_selection.c:400 -#: ../plug-ins/rcm/rcm_dialog.c:158 +#: ../plug-ins/rcm/rcm_dialog.c:165 msgid "Selection" msgstr "Kijelölés" @@ -4044,23 +4045,23 @@ msgid "Non-square pixels. Image might look squashed." msgstr "A képpontok nem négyzet alakúak. A kép megjelenése torzulhat." -#: ../plug-ins/common/gifload.c:867 +#: ../plug-ins/common/gifload.c:866 #, c-format msgid "Background (%d%s)" msgstr "Háttér (%d%s)" -#: ../plug-ins/common/gifload.c:915 ../plug-ins/common/iwarp.c:783 +#: ../plug-ins/common/gifload.c:914 ../plug-ins/common/iwarp.c:783 #: ../plug-ins/common/iwarp.c:817 #, c-format msgid "Frame %d" msgstr "%d. képkocka" -#: ../plug-ins/common/gifload.c:917 +#: ../plug-ins/common/gifload.c:916 #, c-format msgid "Frame %d (%d%s)" msgstr "%d. képkocka (%d%s)" -#: ../plug-ins/common/gifload.c:947 +#: ../plug-ins/common/gifload.c:946 #, c-format msgid "" "GIF: Undocumented GIF composite type %d is not handled. Animation might not " @@ -5844,7 +5845,7 @@ msgid "B/W" msgstr "Fekete-fehér" -#: ../plug-ins/common/postscript.c:3003 ../plug-ins/rcm/rcm_dialog.c:404 +#: ../plug-ins/common/postscript.c:3003 ../plug-ins/rcm/rcm_dialog.c:411 msgid "Gray" msgstr "Szürke" @@ -5935,11 +5936,11 @@ msgid "Invalid UTF-8 string in PSD file" msgstr "Érvénytelen UTF-8 karakterlánc a PSD-fájlban" -#: ../plug-ins/common/psd_save.c:181 +#: ../plug-ins/common/psd_save.c:192 msgid "Photoshop image" msgstr "Photoshop-kép" -#: ../plug-ins/common/psd_save.c:1564 +#: ../plug-ins/common/psd_save.c:1312 #, c-format msgid "" "Unable to save '%s'. The psd file format does not support images that are " @@ -5948,7 +5949,7 @@ "\"%s\" mentése nem lehetséges. A psd fájlformátum nem tud olyan képeket " "eltárolni, amelyek szélessége vagy magassága 30000 képpontnál nagyobb." -#: ../plug-ins/common/psd_save.c:1576 +#: ../plug-ins/common/psd_save.c:1324 #, c-format msgid "" "Unable to save '%s'. The psd file format does not support images with " @@ -11445,87 +11446,87 @@ msgid "Rotating the colormap..." msgstr "A színtérkép elforgatása..." -#: ../plug-ins/rcm/rcm_dialog.c:114 +#: ../plug-ins/rcm/rcm_dialog.c:119 msgid "Original" msgstr "Eredeti" -#: ../plug-ins/rcm/rcm_dialog.c:127 +#: ../plug-ins/rcm/rcm_dialog.c:133 msgid "Rotated" msgstr "Elforgatott" -#: ../plug-ins/rcm/rcm_dialog.c:140 +#: ../plug-ins/rcm/rcm_dialog.c:147 msgid "Continuous update" msgstr "Folyamatos frissítés" -#: ../plug-ins/rcm/rcm_dialog.c:153 +#: ../plug-ins/rcm/rcm_dialog.c:160 msgid "Area:" msgstr "Terület:" -#: ../plug-ins/rcm/rcm_dialog.c:157 +#: ../plug-ins/rcm/rcm_dialog.c:164 msgid "Entire Layer" msgstr "Teljes réteg" -#: ../plug-ins/rcm/rcm_dialog.c:159 +#: ../plug-ins/rcm/rcm_dialog.c:166 msgid "Context" msgstr "Környezet" #. spinbutton 1 -#: ../plug-ins/rcm/rcm_dialog.c:284 ../plug-ins/rcm/rcm_dialog.c:362 +#: ../plug-ins/rcm/rcm_dialog.c:291 ../plug-ins/rcm/rcm_dialog.c:369 msgid "From" msgstr "Ebből" #. spinbutton 2 -#: ../plug-ins/rcm/rcm_dialog.c:310 ../plug-ins/rcm/rcm_dialog.c:363 +#: ../plug-ins/rcm/rcm_dialog.c:317 ../plug-ins/rcm/rcm_dialog.c:370 msgid "To" msgstr "Ebbe" #. * Gray: Operation-Mode * -#: ../plug-ins/rcm/rcm_dialog.c:499 +#: ../plug-ins/rcm/rcm_dialog.c:506 msgid "Gray Mode" msgstr "Szürke-mód" #. Gray: Operation-Mode: two radio buttons -#: ../plug-ins/rcm/rcm_dialog.c:508 +#: ../plug-ins/rcm/rcm_dialog.c:515 msgid "Treat as this" msgstr "Ekként való kezelés" -#: ../plug-ins/rcm/rcm_dialog.c:520 +#: ../plug-ins/rcm/rcm_dialog.c:527 msgid "Change to this" msgstr "Erre történő módosítás" #. * Gray: What is gray? * -#: ../plug-ins/rcm/rcm_dialog.c:533 +#: ../plug-ins/rcm/rcm_dialog.c:540 msgid "Gray Threshold" msgstr "Szürke-küszöb" #. * Misc: Used unit selection * -#: ../plug-ins/rcm/rcm_dialog.c:572 ../plug-ins/rcm/rcm_dialog.c:676 +#: ../plug-ins/rcm/rcm_dialog.c:579 ../plug-ins/rcm/rcm_dialog.c:683 msgid "Units" msgstr "Mértékegységek" #. Misc: Used unit selection: 3 radio buttons -#: ../plug-ins/rcm/rcm_dialog.c:581 +#: ../plug-ins/rcm/rcm_dialog.c:588 msgid "Radians" msgstr "Radián" -#: ../plug-ins/rcm/rcm_dialog.c:593 +#: ../plug-ins/rcm/rcm_dialog.c:600 msgid "Radians/Pi" msgstr "Radián/Pi" -#: ../plug-ins/rcm/rcm_dialog.c:605 +#: ../plug-ins/rcm/rcm_dialog.c:612 msgid "Degrees" msgstr "Fok" #. Create dialog -#: ../plug-ins/rcm/rcm_dialog.c:638 +#: ../plug-ins/rcm/rcm_dialog.c:645 msgid "Colormap Rotation" msgstr "Színtérkép-elforgatás" -#: ../plug-ins/rcm/rcm_dialog.c:670 +#: ../plug-ins/rcm/rcm_dialog.c:677 msgid "Main Options" msgstr "Főbb beállítások" -#: ../plug-ins/rcm/rcm_dialog.c:673 +#: ../plug-ins/rcm/rcm_dialog.c:680 msgid "Gray Options" msgstr "Szürke-beállítások" @@ -11608,27 +11609,27 @@ msgid "Transferring TWAIN data..." msgstr "TWAIN-adatátvitel..." -#: ../plug-ins/winicon/icodialog.c:123 +#: ../plug-ins/winicon/icodialog.c:89 msgid "1 bpp, 1-bit alpha, 2-slot palette" msgstr "1 bit/képpont, 1 bites alfa, 2 elemű paletta" -#: ../plug-ins/winicon/icodialog.c:124 +#: ../plug-ins/winicon/icodialog.c:90 msgid "4 bpp, 1-bit alpha, 16-slot palette" msgstr "4 bit/képpont, 1 bites alfa, 16 elemű paletta" -#: ../plug-ins/winicon/icodialog.c:125 +#: ../plug-ins/winicon/icodialog.c:91 msgid "8 bpp, 1-bit alpha, 256-slot palette" msgstr "8 bit/képpont, 1 bites alfa, 256 elemű paletta" -#: ../plug-ins/winicon/icodialog.c:126 +#: ../plug-ins/winicon/icodialog.c:92 msgid "32 bpp, 8-bit alpha, no palette" msgstr "32 bit/képpont, 8 bites alfa, nincs paletta" -#: ../plug-ins/winicon/icodialog.c:151 +#: ../plug-ins/winicon/icodialog.c:117 msgid "GIMP Windows Icon Plugin" msgstr "GIMP Windows-ikon-bővítmény" -#: ../plug-ins/winicon/icodialog.c:172 +#: ../plug-ins/winicon/icodialog.c:138 msgid "Icon details" msgstr "Részletes ikontulajdonságok" @@ -11638,7 +11639,7 @@ msgid "Icon #%i" msgstr "Ikon #%i" -#: ../plug-ins/winicon/icosave.c:943 +#: ../plug-ins/winicon/icosave.c:969 msgid "Windows icons cannot be higher or wider than 255 pixels." msgstr "" "A windowsos ikonok magassága és szélessége nem lehet nagyobb 255 képpontnál." diff -uraN gimp-2.2.4/po-plug-ins/id.gmo gimp-2.2.5/po-plug-ins/id.gmo --- gimp-2.2.4/po-plug-ins/id.gmo 2005-02-22 23:12:43.000000000 +0100 +++ gimp-2.2.5/po-plug-ins/id.gmo 2005-04-09 23:09:30.000000000 +0200 @@ -2,7 +2,7 @@ O Zdip     AboutAmbient:BlueGreenLinearLogarithmicNonePointPositionPreviewRedSizeSpider_UpdateProject-Id-Version: gimp-plugins HEAD Report-Msgid-Bugs-To: -POT-Creation-Date: 2005-02-22 23:04+0100 +POT-Creation-Date: 2005-04-09 21:56+0200 PO-Revision-Date: 2003-06-28 22:04+0700 Last-Translator: Mohammad DAMT Language-Team: Indonesian diff -uraN gimp-2.2.4/po-plug-ins/id.po gimp-2.2.5/po-plug-ins/id.po --- gimp-2.2.4/po-plug-ins/id.po 2005-02-22 23:12:31.000000000 +0100 +++ gimp-2.2.5/po-plug-ins/id.po 2005-04-09 23:09:17.000000000 +0200 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: gimp-plugins HEAD\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-02-22 23:04+0100\n" +"POT-Creation-Date: 2005-04-09 21:56+0200\n" "PO-Revision-Date: 2003-06-28 22:04+0700\n" "Last-Translator: Mohammad DAMT \n" "Language-Team: Indonesian \n" @@ -365,7 +365,7 @@ #: ../plug-ins/common/pat.c:433 ../plug-ins/common/pcx.c:585 #: ../plug-ins/common/pix.c:515 ../plug-ins/common/png.c:1178 #: ../plug-ins/common/pnm.c:809 ../plug-ins/common/postscript.c:1123 -#: ../plug-ins/common/psd_save.c:1588 ../plug-ins/common/raw.c:517 +#: ../plug-ins/common/psd_save.c:1336 ../plug-ins/common/raw.c:517 #: ../plug-ins/common/raw.c:544 ../plug-ins/common/spheredesigner.c:2088 #: ../plug-ins/common/sunras.c:513 ../plug-ins/common/tga.c:1030 #: ../plug-ins/common/tiff.c:1810 ../plug-ins/common/xbm.c:996 @@ -1203,35 +1203,36 @@ #: ../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 +#: ../plug-ins/bmp/bmpread.c:207 ../plug-ins/bmp/bmpread.c:307 +#: ../plug-ins/bmp/bmpread.c:348 #, c-format msgid "'%s' is not a valid BMP file" msgstr "" #: ../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 +#: ../plug-ins/bmp/bmpread.c:300 ../plug-ins/bmp/bmpread.c:313 +#: ../plug-ins/bmp/bmpread.c:319 #, c-format msgid "Error reading BMP file header from '%s'" msgstr "" -#: ../plug-ins/bmp/bmpread.c:442 ../plug-ins/bmp/bmpread.c:477 +#: ../plug-ins/bmp/bmpread.c:450 ../plug-ins/bmp/bmpread.c:485 msgid "Unrecognized or invalid BMP compression format." msgstr "" #. #. * Create the "background" layer to hold the image... #. -#: ../plug-ins/bmp/bmpread.c:482 ../plug-ins/common/CEL.c:357 +#: ../plug-ins/bmp/bmpread.c:490 ../plug-ins/common/CEL.c:357 #: ../plug-ins/common/CEL.c:360 ../plug-ins/common/blinds.c:273 #: ../plug-ins/common/compose.c:625 ../plug-ins/common/decompose.c:595 #: ../plug-ins/common/dicom.c:442 ../plug-ins/common/film.c:946 -#: ../plug-ins/common/gifload.c:865 ../plug-ins/common/jpeg.c:1113 +#: ../plug-ins/common/gifload.c:864 ../plug-ins/common/jpeg.c:1113 #: ../plug-ins/common/jpeg.c:2474 ../plug-ins/common/pcx.c:334 #: ../plug-ins/common/pcx.c:340 ../plug-ins/common/pix.c:374 #: ../plug-ins/common/png.c:808 ../plug-ins/common/pnm.c:517 -#: ../plug-ins/common/psd.c:2173 ../plug-ins/common/raw.c:677 +#: ../plug-ins/common/psd.c:2174 ../plug-ins/common/raw.c:677 #: ../plug-ins/common/smooth_palette.c:257 ../plug-ins/common/sunras.c:925 #: ../plug-ins/common/tga.c:929 ../plug-ins/common/tiff.c:833 #: ../plug-ins/common/tile.c:266 ../plug-ins/common/winclipboard.c:579 @@ -1262,12 +1263,12 @@ #: ../plug-ins/common/jpeg.c:1453 ../plug-ins/common/pat.c:438 #: ../plug-ins/common/pcx.c:545 ../plug-ins/common/pix.c:521 #: ../plug-ins/common/png.c:1185 ../plug-ins/common/pnm.c:814 -#: ../plug-ins/common/postscript.c:1128 ../plug-ins/common/psd_save.c:1593 +#: ../plug-ins/common/postscript.c:1128 ../plug-ins/common/psd_save.c:1341 #: ../plug-ins/common/sunras.c:518 ../plug-ins/common/tga.c:1035 #: ../plug-ins/common/tiff.c:1815 ../plug-ins/common/xbm.c:1001 #: ../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:957 +#: ../plug-ins/sgi/sgi.c:545 ../plug-ins/winicon/icosave.c:977 #: ../plug-ins/xjt/xjt.c:1682 #, c-format msgid "Saving '%s'..." @@ -1603,7 +1604,7 @@ msgstr "" #: ../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 +#: ../plug-ins/common/decompose.c:144 ../plug-ins/rcm/rcm_dialog.c:548 msgid "Saturation" msgstr "" @@ -2402,24 +2403,24 @@ msgid "Color to _Alpha..." msgstr "" -#: ../plug-ins/common/colortoalpha.c:181 +#: ../plug-ins/common/colortoalpha.c:187 msgid "Removing color..." msgstr "" -#: ../plug-ins/common/colortoalpha.c:377 +#: ../plug-ins/common/colortoalpha.c:380 msgid "Color to Alpha" msgstr "" -#: ../plug-ins/common/colortoalpha.c:402 ../plug-ins/common/mapcolor.c:424 +#: ../plug-ins/common/colortoalpha.c:405 ../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:406 +#: ../plug-ins/common/colortoalpha.c:409 msgid "Color to Alpha Color Picker" msgstr "" -#: ../plug-ins/common/colortoalpha.c:420 +#: ../plug-ins/common/colortoalpha.c:423 msgid "to alpha" msgstr "" @@ -2442,13 +2443,13 @@ msgstr "" #. Gray: Circle: Spinbutton 1 -#: ../plug-ins/common/compose.c:148 ../plug-ins/rcm/rcm_dialog.c:452 +#: ../plug-ins/common/compose.c:148 ../plug-ins/rcm/rcm_dialog.c:459 msgid "Hue:" msgstr "" #. Gray: Circle: Spinbutton 2 #: ../plug-ins/common/compose.c:149 ../plug-ins/print/gimp_color_window.c:364 -#: ../plug-ins/rcm/rcm_dialog.c:479 +#: ../plug-ins/rcm/rcm_dialog.c:486 msgid "Saturation:" msgstr "" @@ -3065,15 +3066,15 @@ msgid "Deinterlace..." msgstr "" -#: ../plug-ins/common/deinterlace.c:315 +#: ../plug-ins/common/deinterlace.c:324 msgid "Deinterlace" msgstr "" -#: ../plug-ins/common/deinterlace.c:340 +#: ../plug-ins/common/deinterlace.c:349 msgid "Keep o_dd fields" msgstr "" -#: ../plug-ins/common/deinterlace.c:341 +#: ../plug-ins/common/deinterlace.c:350 msgid "Keep _even fields" msgstr "" @@ -3474,7 +3475,7 @@ #. Create selection #: ../plug-ins/common/film.c:1166 ../plug-ins/imagemap/imap_selection.c:400 -#: ../plug-ins/rcm/rcm_dialog.c:158 +#: ../plug-ins/rcm/rcm_dialog.c:165 msgid "Selection" msgstr "" @@ -3998,23 +3999,23 @@ msgid "Non-square pixels. Image might look squashed." msgstr "" -#: ../plug-ins/common/gifload.c:867 +#: ../plug-ins/common/gifload.c:866 #, c-format msgid "Background (%d%s)" msgstr "" -#: ../plug-ins/common/gifload.c:915 ../plug-ins/common/iwarp.c:783 +#: ../plug-ins/common/gifload.c:914 ../plug-ins/common/iwarp.c:783 #: ../plug-ins/common/iwarp.c:817 #, c-format msgid "Frame %d" msgstr "" -#: ../plug-ins/common/gifload.c:917 +#: ../plug-ins/common/gifload.c:916 #, c-format msgid "Frame %d (%d%s)" msgstr "" -#: ../plug-ins/common/gifload.c:947 +#: ../plug-ins/common/gifload.c:946 #, c-format msgid "" "GIF: Undocumented GIF composite type %d is not handled. Animation might not " @@ -5780,7 +5781,7 @@ msgid "B/W" msgstr "" -#: ../plug-ins/common/postscript.c:3003 ../plug-ins/rcm/rcm_dialog.c:404 +#: ../plug-ins/common/postscript.c:3003 ../plug-ins/rcm/rcm_dialog.c:411 msgid "Gray" msgstr "" @@ -5870,18 +5871,18 @@ msgid "Invalid UTF-8 string in PSD file" msgstr "" -#: ../plug-ins/common/psd_save.c:181 +#: ../plug-ins/common/psd_save.c:192 msgid "Photoshop image" msgstr "" -#: ../plug-ins/common/psd_save.c:1564 +#: ../plug-ins/common/psd_save.c:1312 #, c-format msgid "" "Unable to save '%s'. The psd file format does not support images that are " "more than 30000 pixels wide or tall." msgstr "" -#: ../plug-ins/common/psd_save.c:1576 +#: ../plug-ins/common/psd_save.c:1324 #, c-format msgid "" "Unable to save '%s'. The psd file format does not support images with " @@ -11237,87 +11238,87 @@ msgid "Rotating the colormap..." msgstr "" -#: ../plug-ins/rcm/rcm_dialog.c:114 +#: ../plug-ins/rcm/rcm_dialog.c:119 msgid "Original" msgstr "" -#: ../plug-ins/rcm/rcm_dialog.c:127 +#: ../plug-ins/rcm/rcm_dialog.c:133 msgid "Rotated" msgstr "" -#: ../plug-ins/rcm/rcm_dialog.c:140 +#: ../plug-ins/rcm/rcm_dialog.c:147 msgid "Continuous update" msgstr "" -#: ../plug-ins/rcm/rcm_dialog.c:153 +#: ../plug-ins/rcm/rcm_dialog.c:160 msgid "Area:" msgstr "" -#: ../plug-ins/rcm/rcm_dialog.c:157 +#: ../plug-ins/rcm/rcm_dialog.c:164 msgid "Entire Layer" msgstr "" -#: ../plug-ins/rcm/rcm_dialog.c:159 +#: ../plug-ins/rcm/rcm_dialog.c:166 msgid "Context" msgstr "" #. spinbutton 1 -#: ../plug-ins/rcm/rcm_dialog.c:284 ../plug-ins/rcm/rcm_dialog.c:362 +#: ../plug-ins/rcm/rcm_dialog.c:291 ../plug-ins/rcm/rcm_dialog.c:369 msgid "From" msgstr "" #. spinbutton 2 -#: ../plug-ins/rcm/rcm_dialog.c:310 ../plug-ins/rcm/rcm_dialog.c:363 +#: ../plug-ins/rcm/rcm_dialog.c:317 ../plug-ins/rcm/rcm_dialog.c:370 msgid "To" msgstr "" #. * Gray: Operation-Mode * -#: ../plug-ins/rcm/rcm_dialog.c:499 +#: ../plug-ins/rcm/rcm_dialog.c:506 msgid "Gray Mode" msgstr "" #. Gray: Operation-Mode: two radio buttons -#: ../plug-ins/rcm/rcm_dialog.c:508 +#: ../plug-ins/rcm/rcm_dialog.c:515 msgid "Treat as this" msgstr "" -#: ../plug-ins/rcm/rcm_dialog.c:520 +#: ../plug-ins/rcm/rcm_dialog.c:527 msgid "Change to this" msgstr "" #. * Gray: What is gray? * -#: ../plug-ins/rcm/rcm_dialog.c:533 +#: ../plug-ins/rcm/rcm_dialog.c:540 msgid "Gray Threshold" msgstr "" #. * Misc: Used unit selection * -#: ../plug-ins/rcm/rcm_dialog.c:572 ../plug-ins/rcm/rcm_dialog.c:676 +#: ../plug-ins/rcm/rcm_dialog.c:579 ../plug-ins/rcm/rcm_dialog.c:683 msgid "Units" msgstr "" #. Misc: Used unit selection: 3 radio buttons -#: ../plug-ins/rcm/rcm_dialog.c:581 +#: ../plug-ins/rcm/rcm_dialog.c:588 msgid "Radians" msgstr "" -#: ../plug-ins/rcm/rcm_dialog.c:593 +#: ../plug-ins/rcm/rcm_dialog.c:600 msgid "Radians/Pi" msgstr "" -#: ../plug-ins/rcm/rcm_dialog.c:605 +#: ../plug-ins/rcm/rcm_dialog.c:612 msgid "Degrees" msgstr "" #. Create dialog -#: ../plug-ins/rcm/rcm_dialog.c:638 +#: ../plug-ins/rcm/rcm_dialog.c:645 msgid "Colormap Rotation" msgstr "" -#: ../plug-ins/rcm/rcm_dialog.c:670 +#: ../plug-ins/rcm/rcm_dialog.c:677 msgid "Main Options" msgstr "" -#: ../plug-ins/rcm/rcm_dialog.c:673 +#: ../plug-ins/rcm/rcm_dialog.c:680 #, fuzzy msgid "Gray Options" msgstr "Lihat Contoh Jadi" @@ -11399,27 +11400,27 @@ msgid "Transferring TWAIN data..." msgstr "" -#: ../plug-ins/winicon/icodialog.c:123 +#: ../plug-ins/winicon/icodialog.c:89 msgid "1 bpp, 1-bit alpha, 2-slot palette" msgstr "" -#: ../plug-ins/winicon/icodialog.c:124 +#: ../plug-ins/winicon/icodialog.c:90 msgid "4 bpp, 1-bit alpha, 16-slot palette" msgstr "" -#: ../plug-ins/winicon/icodialog.c:125 +#: ../plug-ins/winicon/icodialog.c:91 msgid "8 bpp, 1-bit alpha, 256-slot palette" msgstr "" -#: ../plug-ins/winicon/icodialog.c:126 +#: ../plug-ins/winicon/icodialog.c:92 msgid "32 bpp, 8-bit alpha, no palette" msgstr "" -#: ../plug-ins/winicon/icodialog.c:151 +#: ../plug-ins/winicon/icodialog.c:117 msgid "GIMP Windows Icon Plugin" msgstr "" -#: ../plug-ins/winicon/icodialog.c:172 +#: ../plug-ins/winicon/icodialog.c:138 msgid "Icon details" msgstr "" @@ -11428,7 +11429,7 @@ msgid "Icon #%i" msgstr "" -#: ../plug-ins/winicon/icosave.c:943 +#: ../plug-ins/winicon/icosave.c:969 msgid "Windows icons cannot be higher or wider than 255 pixels." msgstr "" diff -uraN gimp-2.2.4/po-plug-ins/it.gmo gimp-2.2.5/po-plug-ins/it.gmo --- gimp-2.2.4/po-plug-ins/it.gmo 2005-02-22 23:12:43.000000000 +0100 +++ gimp-2.2.5/po-plug-ins/it.gmo 2005-04-09 23:09:30.000000000 +0200 @@ -463,7 +463,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: 2005-02-22 23:04+0100 +POT-Creation-Date: 2005-04-09 21:56+0200 PO-Revision-Date: 2004-12-16 16:12+0100 Last-Translator: Marco Ciampa Language-Team: tp@lists.linux.it diff -uraN gimp-2.2.4/po-plug-ins/it.po gimp-2.2.5/po-plug-ins/it.po --- gimp-2.2.4/po-plug-ins/it.po 2005-02-22 23:12:32.000000000 +0100 +++ gimp-2.2.5/po-plug-ins/it.po 2005-04-09 23:09:18.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: gimp 2.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-02-22 23:04+0100\n" +"POT-Creation-Date: 2005-04-09 21:56+0200\n" "PO-Revision-Date: 2004-12-16 16:12+0100\n" "Last-Translator: Marco Ciampa \n" "Language-Team: tp@lists.linux.it\n" @@ -385,7 +385,7 @@ #: ../plug-ins/common/pat.c:433 ../plug-ins/common/pcx.c:585 #: ../plug-ins/common/pix.c:515 ../plug-ins/common/png.c:1178 #: ../plug-ins/common/pnm.c:809 ../plug-ins/common/postscript.c:1123 -#: ../plug-ins/common/psd_save.c:1588 ../plug-ins/common/raw.c:517 +#: ../plug-ins/common/psd_save.c:1336 ../plug-ins/common/raw.c:517 #: ../plug-ins/common/raw.c:544 ../plug-ins/common/spheredesigner.c:2088 #: ../plug-ins/common/sunras.c:513 ../plug-ins/common/tga.c:1030 #: ../plug-ins/common/tiff.c:1810 ../plug-ins/common/xbm.c:996 @@ -1228,35 +1228,36 @@ #: ../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 +#: ../plug-ins/bmp/bmpread.c:207 ../plug-ins/bmp/bmpread.c:307 +#: ../plug-ins/bmp/bmpread.c:348 #, c-format msgid "'%s' is not a valid BMP file" msgstr "'%s' non è un file BMP valido" #: ../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 +#: ../plug-ins/bmp/bmpread.c:300 ../plug-ins/bmp/bmpread.c:313 +#: ../plug-ins/bmp/bmpread.c:319 #, c-format msgid "Error reading BMP file header from '%s'" msgstr "Errore lettura intestazione file BMP da '%s'" -#: ../plug-ins/bmp/bmpread.c:442 ../plug-ins/bmp/bmpread.c:477 +#: ../plug-ins/bmp/bmpread.c:450 ../plug-ins/bmp/bmpread.c:485 msgid "Unrecognized or invalid BMP compression format." msgstr "Formato di compressione BMP non riconosciuto o non valido." #. #. * Create the "background" layer to hold the image... #. -#: ../plug-ins/bmp/bmpread.c:482 ../plug-ins/common/CEL.c:357 +#: ../plug-ins/bmp/bmpread.c:490 ../plug-ins/common/CEL.c:357 #: ../plug-ins/common/CEL.c:360 ../plug-ins/common/blinds.c:273 #: ../plug-ins/common/compose.c:625 ../plug-ins/common/decompose.c:595 #: ../plug-ins/common/dicom.c:442 ../plug-ins/common/film.c:946 -#: ../plug-ins/common/gifload.c:865 ../plug-ins/common/jpeg.c:1113 +#: ../plug-ins/common/gifload.c:864 ../plug-ins/common/jpeg.c:1113 #: ../plug-ins/common/jpeg.c:2474 ../plug-ins/common/pcx.c:334 #: ../plug-ins/common/pcx.c:340 ../plug-ins/common/pix.c:374 #: ../plug-ins/common/png.c:808 ../plug-ins/common/pnm.c:517 -#: ../plug-ins/common/psd.c:2173 ../plug-ins/common/raw.c:677 +#: ../plug-ins/common/psd.c:2174 ../plug-ins/common/raw.c:677 #: ../plug-ins/common/smooth_palette.c:257 ../plug-ins/common/sunras.c:925 #: ../plug-ins/common/tga.c:929 ../plug-ins/common/tiff.c:833 #: ../plug-ins/common/tile.c:266 ../plug-ins/common/winclipboard.c:579 @@ -1287,12 +1288,12 @@ #: ../plug-ins/common/jpeg.c:1453 ../plug-ins/common/pat.c:438 #: ../plug-ins/common/pcx.c:545 ../plug-ins/common/pix.c:521 #: ../plug-ins/common/png.c:1185 ../plug-ins/common/pnm.c:814 -#: ../plug-ins/common/postscript.c:1128 ../plug-ins/common/psd_save.c:1593 +#: ../plug-ins/common/postscript.c:1128 ../plug-ins/common/psd_save.c:1341 #: ../plug-ins/common/sunras.c:518 ../plug-ins/common/tga.c:1035 #: ../plug-ins/common/tiff.c:1815 ../plug-ins/common/xbm.c:1001 #: ../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:957 +#: ../plug-ins/sgi/sgi.c:545 ../plug-ins/winicon/icosave.c:977 #: ../plug-ins/xjt/xjt.c:1682 #, c-format msgid "Saving '%s'..." @@ -1628,7 +1629,7 @@ msgstr "Tonalità" #: ../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 +#: ../plug-ins/common/decompose.c:144 ../plug-ins/rcm/rcm_dialog.c:548 msgid "Saturation" msgstr "Saturazione" @@ -2437,24 +2438,24 @@ msgid "Color to _Alpha..." msgstr "Colore ad _alfa..." -#: ../plug-ins/common/colortoalpha.c:181 +#: ../plug-ins/common/colortoalpha.c:187 msgid "Removing color..." msgstr "Rimozione colore..." -#: ../plug-ins/common/colortoalpha.c:377 +#: ../plug-ins/common/colortoalpha.c:380 msgid "Color to Alpha" msgstr "Colore ad alfa" -#: ../plug-ins/common/colortoalpha.c:402 ../plug-ins/common/mapcolor.c:424 +#: ../plug-ins/common/colortoalpha.c:405 ../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:406 +#: ../plug-ins/common/colortoalpha.c:409 msgid "Color to Alpha Color Picker" msgstr "Colore a contagocce colore alfa" -#: ../plug-ins/common/colortoalpha.c:420 +#: ../plug-ins/common/colortoalpha.c:423 msgid "to alpha" msgstr "ad alfa" @@ -2477,13 +2478,13 @@ msgstr "HSV" #. Gray: Circle: Spinbutton 1 -#: ../plug-ins/common/compose.c:148 ../plug-ins/rcm/rcm_dialog.c:452 +#: ../plug-ins/common/compose.c:148 ../plug-ins/rcm/rcm_dialog.c:459 msgid "Hue:" msgstr "Tonalità:" #. Gray: Circle: Spinbutton 2 #: ../plug-ins/common/compose.c:149 ../plug-ins/print/gimp_color_window.c:364 -#: ../plug-ins/rcm/rcm_dialog.c:479 +#: ../plug-ins/rcm/rcm_dialog.c:486 msgid "Saturation:" msgstr "Saturazione:" @@ -3100,15 +3101,15 @@ msgid "Deinterlace..." msgstr "Deinterlaccia..." -#: ../plug-ins/common/deinterlace.c:315 +#: ../plug-ins/common/deinterlace.c:324 msgid "Deinterlace" msgstr "Deinterlaccia" -#: ../plug-ins/common/deinterlace.c:340 +#: ../plug-ins/common/deinterlace.c:349 msgid "Keep o_dd fields" msgstr "Mantieni campi _dispari" -#: ../plug-ins/common/deinterlace.c:341 +#: ../plug-ins/common/deinterlace.c:350 msgid "Keep _even fields" msgstr "Mantieni campi _pari" @@ -3506,7 +3507,7 @@ #. Create selection #: ../plug-ins/common/film.c:1166 ../plug-ins/imagemap/imap_selection.c:400 -#: ../plug-ins/rcm/rcm_dialog.c:158 +#: ../plug-ins/rcm/rcm_dialog.c:165 msgid "Selection" msgstr "Selezione" @@ -4043,23 +4044,23 @@ msgid "Non-square pixels. Image might look squashed." msgstr "Punti non quadrati. L'immagine potrebbe apparire schiacciata." -#: ../plug-ins/common/gifload.c:867 +#: ../plug-ins/common/gifload.c:866 #, c-format msgid "Background (%d%s)" msgstr "Sfondo (%d%s)" -#: ../plug-ins/common/gifload.c:915 ../plug-ins/common/iwarp.c:783 +#: ../plug-ins/common/gifload.c:914 ../plug-ins/common/iwarp.c:783 #: ../plug-ins/common/iwarp.c:817 #, c-format msgid "Frame %d" msgstr "Fotogramma %d" -#: ../plug-ins/common/gifload.c:917 +#: ../plug-ins/common/gifload.c:916 #, c-format msgid "Frame %d (%d%s)" msgstr "Fotogramma %d (%d%s)" -#: ../plug-ins/common/gifload.c:947 +#: ../plug-ins/common/gifload.c:946 #, c-format msgid "" "GIF: Undocumented GIF composite type %d is not handled. Animation might not " @@ -5842,7 +5843,7 @@ msgid "B/W" msgstr "Bianco/Nero" -#: ../plug-ins/common/postscript.c:3003 ../plug-ins/rcm/rcm_dialog.c:404 +#: ../plug-ins/common/postscript.c:3003 ../plug-ins/rcm/rcm_dialog.c:411 msgid "Gray" msgstr "Grigio" @@ -5933,11 +5934,11 @@ msgid "Invalid UTF-8 string in PSD file" msgstr "Stringa UTF-8 non valida nel file PSD" -#: ../plug-ins/common/psd_save.c:181 +#: ../plug-ins/common/psd_save.c:192 msgid "Photoshop image" msgstr "Immagine Photoshop" -#: ../plug-ins/common/psd_save.c:1564 +#: ../plug-ins/common/psd_save.c:1312 #, c-format msgid "" "Unable to save '%s'. The psd file format does not support images that are " @@ -5946,7 +5947,7 @@ "Impossibile salvare '%s'. Il formato del file psd non supporta immagini più " "larghe o alte di 30000 pixel." -#: ../plug-ins/common/psd_save.c:1576 +#: ../plug-ins/common/psd_save.c:1324 #, c-format msgid "" "Unable to save '%s'. The psd file format does not support images with " @@ -11443,87 +11444,87 @@ msgid "Rotating the colormap..." msgstr "Rotazione mappa colori..." -#: ../plug-ins/rcm/rcm_dialog.c:114 +#: ../plug-ins/rcm/rcm_dialog.c:119 msgid "Original" msgstr "Originale" -#: ../plug-ins/rcm/rcm_dialog.c:127 +#: ../plug-ins/rcm/rcm_dialog.c:133 msgid "Rotated" msgstr "Ruotato" -#: ../plug-ins/rcm/rcm_dialog.c:140 +#: ../plug-ins/rcm/rcm_dialog.c:147 msgid "Continuous update" msgstr "Aggiornamento continuo" -#: ../plug-ins/rcm/rcm_dialog.c:153 +#: ../plug-ins/rcm/rcm_dialog.c:160 msgid "Area:" msgstr "Area:" -#: ../plug-ins/rcm/rcm_dialog.c:157 +#: ../plug-ins/rcm/rcm_dialog.c:164 msgid "Entire Layer" msgstr "Intero livello" -#: ../plug-ins/rcm/rcm_dialog.c:159 +#: ../plug-ins/rcm/rcm_dialog.c:166 msgid "Context" msgstr "Contesto" #. spinbutton 1 -#: ../plug-ins/rcm/rcm_dialog.c:284 ../plug-ins/rcm/rcm_dialog.c:362 +#: ../plug-ins/rcm/rcm_dialog.c:291 ../plug-ins/rcm/rcm_dialog.c:369 msgid "From" msgstr "Da" #. spinbutton 2 -#: ../plug-ins/rcm/rcm_dialog.c:310 ../plug-ins/rcm/rcm_dialog.c:363 +#: ../plug-ins/rcm/rcm_dialog.c:317 ../plug-ins/rcm/rcm_dialog.c:370 msgid "To" msgstr "A" #. * Gray: Operation-Mode * -#: ../plug-ins/rcm/rcm_dialog.c:499 +#: ../plug-ins/rcm/rcm_dialog.c:506 msgid "Gray Mode" msgstr "Modalità scala di grigi" #. Gray: Operation-Mode: two radio buttons -#: ../plug-ins/rcm/rcm_dialog.c:508 +#: ../plug-ins/rcm/rcm_dialog.c:515 msgid "Treat as this" msgstr "Trattalo come" -#: ../plug-ins/rcm/rcm_dialog.c:520 +#: ../plug-ins/rcm/rcm_dialog.c:527 msgid "Change to this" msgstr "Cambialo in" #. * Gray: What is gray? * -#: ../plug-ins/rcm/rcm_dialog.c:533 +#: ../plug-ins/rcm/rcm_dialog.c:540 msgid "Gray Threshold" msgstr "Soglia del grigio" #. * Misc: Used unit selection * -#: ../plug-ins/rcm/rcm_dialog.c:572 ../plug-ins/rcm/rcm_dialog.c:676 +#: ../plug-ins/rcm/rcm_dialog.c:579 ../plug-ins/rcm/rcm_dialog.c:683 msgid "Units" msgstr "Unità" #. Misc: Used unit selection: 3 radio buttons -#: ../plug-ins/rcm/rcm_dialog.c:581 +#: ../plug-ins/rcm/rcm_dialog.c:588 msgid "Radians" msgstr "Radianti" -#: ../plug-ins/rcm/rcm_dialog.c:593 +#: ../plug-ins/rcm/rcm_dialog.c:600 msgid "Radians/Pi" msgstr "Radianti/Pi" -#: ../plug-ins/rcm/rcm_dialog.c:605 +#: ../plug-ins/rcm/rcm_dialog.c:612 msgid "Degrees" msgstr "Gradi" #. Create dialog -#: ../plug-ins/rcm/rcm_dialog.c:638 +#: ../plug-ins/rcm/rcm_dialog.c:645 msgid "Colormap Rotation" msgstr "Rotazione mappa colore" -#: ../plug-ins/rcm/rcm_dialog.c:670 +#: ../plug-ins/rcm/rcm_dialog.c:677 msgid "Main Options" msgstr "Opzioni principali" -#: ../plug-ins/rcm/rcm_dialog.c:673 +#: ../plug-ins/rcm/rcm_dialog.c:680 msgid "Gray Options" msgstr "Opzioni del grigio" @@ -11606,27 +11607,27 @@ msgid "Transferring TWAIN data..." msgstr "Trasferimento dati TWAIN..." -#: ../plug-ins/winicon/icodialog.c:123 +#: ../plug-ins/winicon/icodialog.c:89 msgid "1 bpp, 1-bit alpha, 2-slot palette" msgstr "1 bpp, 1-bit alfa, 2-colori tavolozza" -#: ../plug-ins/winicon/icodialog.c:124 +#: ../plug-ins/winicon/icodialog.c:90 msgid "4 bpp, 1-bit alpha, 16-slot palette" msgstr "4 bpp, 1-bit alfa, 16-colori tavolozza" -#: ../plug-ins/winicon/icodialog.c:125 +#: ../plug-ins/winicon/icodialog.c:91 msgid "8 bpp, 1-bit alpha, 256-slot palette" msgstr "8 bpp, 1-bit alfa, 256-colori tavolozza" -#: ../plug-ins/winicon/icodialog.c:126 +#: ../plug-ins/winicon/icodialog.c:92 msgid "32 bpp, 8-bit alpha, no palette" msgstr "32 bpp, 8-bit alfa, senza tavolozza" -#: ../plug-ins/winicon/icodialog.c:151 +#: ../plug-ins/winicon/icodialog.c:117 msgid "GIMP Windows Icon Plugin" msgstr "Plugin Icone Windows di Gimp" -#: ../plug-ins/winicon/icodialog.c:172 +#: ../plug-ins/winicon/icodialog.c:138 msgid "Icon details" msgstr "Dettagli icona" @@ -11635,7 +11636,7 @@ msgid "Icon #%i" msgstr "Icona #%i" -#: ../plug-ins/winicon/icosave.c:943 +#: ../plug-ins/winicon/icosave.c:969 msgid "Windows icons cannot be higher or wider than 255 pixels." msgstr "" "Le icone di Windows non possono esser più alte o più larghe di 256 punti." diff -uraN gimp-2.2.4/po-plug-ins/ja.gmo gimp-2.2.5/po-plug-ins/ja.gmo --- gimp-2.2.4/po-plug-ins/ja.gmo 2005-02-22 23:12:43.000000000 +0100 +++ gimp-2.2.5/po-plug-ins/ja.gmo 2005-04-09 23:09:30.000000000 +0200 @@ -277,7 +277,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:_About ImageMap_Adaptive_Additive_Advanced_Alpha_Alpha:_Amount:_Amplitude:_Angle:_Animate_Antialiasing_Automatically convert_Azimuth:_Background_Base URL:_Bilinear_Black_Blacken_Blast_Blend_Blinds..._Blue_Blue:_Blur_Blur radius:_Border:_Bottom:_Box_Bright:_Brightness_Brightness:_Brush_Bump Map_Bump map:_Bumpmap_Checkerboard..._Clear_Contents_Copy_Cubism..._Deflate_Depth:_Derivative_Description:_Detail:_Digits:_Displacement:_Distorted_Divisions:_Dots_Edit_Effect Image:_Elevation:_Emboss_Encapsulated PostScript_Environment Map_Exponent:_Factor:_File_Film..._Font:_Force_Foreground & background_Fractal Explorer..._Fractals_Free_Ftp Site_GFlare..._GIF comment:_GIMPressionist..._Gamma:_General_Gfig..._Gopher_Gradient_Gray:_Green_Green:_Grey_Grid_Grid size:_Grid..._Grow_HSL color model_Height_Height:_Help_Hex_Hidden_High_Holdness:_Horizontal_Horizontal style:_Horizontal:_Horz. Spacing:_Hue_ID:_Ideal_Ignore_ImageMap..._Inch_Input SPI:_Insert_Intensity:_Interlace_Interlacing (Adam7)_Invert_JPEG_JavaScript_Keep NCSA circles true_Kill_LZW_Large staggered_Left_Left Start at:_Light_Lighting Effects..._Linear_Lines_Link_Loop forever_Low_Lower_Map type:_Mapping_Mask file extension:_Material_Max (%):_Max Depth:_Max. delta:_Metallic_Millimeter_Mirror_Misc Ops._Modify hue channel_Modify red channel_Monochrome_Mosaic..._Move_Neon..._None_Normal_Optimize (Difference)_Pack Bits_Palette Type:_Paper Tile..._Parameters_Period:_Phase:_Ping Pong_Playback..._Plug-In Browser_Plural:_Polygon_Prefixed name:_Presets_Preview_Preview!_Prompt for area info_Psychobilly_RGB_RGB color model_RLE compression_RLE encoded_Radial_Radius:_Randomize_Rays_Rectangle_Red:_Redo %s_Reflective_Remove_Rendering_Require default URL_Right_Right Border_Ripple..._Rotated_Saturation_Saturation:_Save comment to file_Scale:_Screen Shot..._Search:_Second Flares_Settings_Sharpness:_Size_Size:_Smear_Snap-To Grid Enabled_Sobel..._Speed:_Spokes:_Square_Squares_Staggered_Strength:_Symbol:_Target frame name/ID: (optional - used for FRAMES only)_Thickness:_Threshold_Threshold:_Tile size:_Title:_Tools_Top Start at:_Top:_Transparent_URL to activate when this area is clicked: (required)_Undo_Undo %s_Update_Upper_Upper Border_Use GLib types (guint8*)_Use background color_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_Wrap around_Write hot spot values_X Scale:_X offset:_X:_Y Scale:_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_eftredredness_cr470redness_cr470fredness_cr709redness_cr709fsaturationsin^p, steppedsin^p-based functionthe _Whole Screenvaluex (pixels)y (pixels)yellowyellow_kProject-Id-Version: gimp gimp-2-2 Report-Msgid-Bugs-To: -POT-Creation-Date: 2005-02-22 23:04+0100 +POT-Creation-Date: 2005-04-09 21:56+0200 PO-Revision-Date: 2005-02-17 12:34+0900 Last-Translator: Tadashi Jokagi Language-Team: Japanese diff -uraN gimp-2.2.4/po-plug-ins/ja.po gimp-2.2.5/po-plug-ins/ja.po --- gimp-2.2.4/po-plug-ins/ja.po 2005-02-22 23:12:32.000000000 +0100 +++ gimp-2.2.5/po-plug-ins/ja.po 2005-04-09 23:09:18.000000000 +0200 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: gimp gimp-2-2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-02-22 23:04+0100\n" +"POT-Creation-Date: 2005-04-09 21:56+0200\n" "PO-Revision-Date: 2005-02-17 12:34+0900\n" "Last-Translator: Tadashi Jokagi \n" "Language-Team: Japanese \n" @@ -382,7 +382,7 @@ #: ../plug-ins/common/pat.c:433 ../plug-ins/common/pcx.c:585 #: ../plug-ins/common/pix.c:515 ../plug-ins/common/png.c:1178 #: ../plug-ins/common/pnm.c:809 ../plug-ins/common/postscript.c:1123 -#: ../plug-ins/common/psd_save.c:1588 ../plug-ins/common/raw.c:517 +#: ../plug-ins/common/psd_save.c:1336 ../plug-ins/common/raw.c:517 #: ../plug-ins/common/raw.c:544 ../plug-ins/common/spheredesigner.c:2088 #: ../plug-ins/common/sunras.c:513 ../plug-ins/common/tga.c:1030 #: ../plug-ins/common/tiff.c:1810 ../plug-ins/common/xbm.c:996 @@ -1239,35 +1239,36 @@ #: ../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 +#: ../plug-ins/bmp/bmpread.c:207 ../plug-ins/bmp/bmpread.c:307 +#: ../plug-ins/bmp/bmpread.c:348 #, c-format msgid "'%s' is not a valid BMP file" msgstr "'%s' は正常な BMP ファイルではありません" #: ../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 +#: ../plug-ins/bmp/bmpread.c:300 ../plug-ins/bmp/bmpread.c:313 +#: ../plug-ins/bmp/bmpread.c:319 #, fuzzy, c-format msgid "Error reading BMP file header from '%s'" msgstr "'%s' から BMP ファイルヘッダ読み込み中にエラー発生" -#: ../plug-ins/bmp/bmpread.c:442 ../plug-ins/bmp/bmpread.c:477 +#: ../plug-ins/bmp/bmpread.c:450 ../plug-ins/bmp/bmpread.c:485 msgid "Unrecognized or invalid BMP compression format." msgstr "" #. #. * Create the "background" layer to hold the image... #. -#: ../plug-ins/bmp/bmpread.c:482 ../plug-ins/common/CEL.c:357 +#: ../plug-ins/bmp/bmpread.c:490 ../plug-ins/common/CEL.c:357 #: ../plug-ins/common/CEL.c:360 ../plug-ins/common/blinds.c:273 #: ../plug-ins/common/compose.c:625 ../plug-ins/common/decompose.c:595 #: ../plug-ins/common/dicom.c:442 ../plug-ins/common/film.c:946 -#: ../plug-ins/common/gifload.c:865 ../plug-ins/common/jpeg.c:1113 +#: ../plug-ins/common/gifload.c:864 ../plug-ins/common/jpeg.c:1113 #: ../plug-ins/common/jpeg.c:2474 ../plug-ins/common/pcx.c:334 #: ../plug-ins/common/pcx.c:340 ../plug-ins/common/pix.c:374 #: ../plug-ins/common/png.c:808 ../plug-ins/common/pnm.c:517 -#: ../plug-ins/common/psd.c:2173 ../plug-ins/common/raw.c:677 +#: ../plug-ins/common/psd.c:2174 ../plug-ins/common/raw.c:677 #: ../plug-ins/common/smooth_palette.c:257 ../plug-ins/common/sunras.c:925 #: ../plug-ins/common/tga.c:929 ../plug-ins/common/tiff.c:833 #: ../plug-ins/common/tile.c:266 ../plug-ins/common/winclipboard.c:579 @@ -1300,12 +1301,12 @@ #: ../plug-ins/common/jpeg.c:1453 ../plug-ins/common/pat.c:438 #: ../plug-ins/common/pcx.c:545 ../plug-ins/common/pix.c:521 #: ../plug-ins/common/png.c:1185 ../plug-ins/common/pnm.c:814 -#: ../plug-ins/common/postscript.c:1128 ../plug-ins/common/psd_save.c:1593 +#: ../plug-ins/common/postscript.c:1128 ../plug-ins/common/psd_save.c:1341 #: ../plug-ins/common/sunras.c:518 ../plug-ins/common/tga.c:1035 #: ../plug-ins/common/tiff.c:1815 ../plug-ins/common/xbm.c:1001 #: ../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:957 +#: ../plug-ins/sgi/sgi.c:545 ../plug-ins/winicon/icosave.c:977 #: ../plug-ins/xjt/xjt.c:1682 #, c-format msgid "Saving '%s'..." @@ -1642,7 +1643,7 @@ msgstr "色相" #: ../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 +#: ../plug-ins/common/decompose.c:144 ../plug-ins/rcm/rcm_dialog.c:548 msgid "Saturation" msgstr "彩度" @@ -2501,24 +2502,24 @@ msgid "Color to _Alpha..." msgstr "色を透明度に" -#: ../plug-ins/common/colortoalpha.c:181 +#: ../plug-ins/common/colortoalpha.c:187 msgid "Removing color..." msgstr "カラーマップを削除しています..." -#: ../plug-ins/common/colortoalpha.c:377 +#: ../plug-ins/common/colortoalpha.c:380 msgid "Color to Alpha" msgstr "色を透明度に" -#: ../plug-ins/common/colortoalpha.c:402 ../plug-ins/common/mapcolor.c:424 +#: ../plug-ins/common/colortoalpha.c:405 ../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:406 +#: ../plug-ins/common/colortoalpha.c:409 msgid "Color to Alpha Color Picker" msgstr "「色を透明度に」色選択" -#: ../plug-ins/common/colortoalpha.c:420 +#: ../plug-ins/common/colortoalpha.c:423 #, fuzzy msgid "to alpha" msgstr "を透明度に:" @@ -2542,13 +2543,13 @@ msgstr "HSV" #. Gray: Circle: Spinbutton 1 -#: ../plug-ins/common/compose.c:148 ../plug-ins/rcm/rcm_dialog.c:452 +#: ../plug-ins/common/compose.c:148 ../plug-ins/rcm/rcm_dialog.c:459 msgid "Hue:" msgstr "色相:" #. Gray: Circle: Spinbutton 2 #: ../plug-ins/common/compose.c:149 ../plug-ins/print/gimp_color_window.c:364 -#: ../plug-ins/rcm/rcm_dialog.c:479 +#: ../plug-ins/rcm/rcm_dialog.c:486 msgid "Saturation:" msgstr "彩度:" @@ -3186,16 +3187,16 @@ msgid "Deinterlace..." msgstr "非インターレース化しています..." -#: ../plug-ins/common/deinterlace.c:315 +#: ../plug-ins/common/deinterlace.c:324 msgid "Deinterlace" msgstr "非インターレース化" -#: ../plug-ins/common/deinterlace.c:340 +#: ../plug-ins/common/deinterlace.c:349 #, fuzzy msgid "Keep o_dd fields" msgstr "奇数ラインを残す(_D)" -#: ../plug-ins/common/deinterlace.c:341 +#: ../plug-ins/common/deinterlace.c:350 #, fuzzy msgid "Keep _even fields" msgstr "偶数ラインを残す(_E)" @@ -3632,7 +3633,7 @@ #. Create selection #: ../plug-ins/common/film.c:1166 ../plug-ins/imagemap/imap_selection.c:400 -#: ../plug-ins/rcm/rcm_dialog.c:158 +#: ../plug-ins/rcm/rcm_dialog.c:165 msgid "Selection" msgstr "選択" @@ -4208,23 +4209,23 @@ msgid "Non-square pixels. Image might look squashed." msgstr "" -#: ../plug-ins/common/gifload.c:867 +#: ../plug-ins/common/gifload.c:866 #, fuzzy, c-format msgid "Background (%d%s)" msgstr "背景 (%dms)" -#: ../plug-ins/common/gifload.c:915 ../plug-ins/common/iwarp.c:783 +#: ../plug-ins/common/gifload.c:914 ../plug-ins/common/iwarp.c:783 #: ../plug-ins/common/iwarp.c:817 #, c-format msgid "Frame %d" msgstr "フレーム %d" -#: ../plug-ins/common/gifload.c:917 +#: ../plug-ins/common/gifload.c:916 #, fuzzy, c-format msgid "Frame %d (%d%s)" msgstr "フレーム %d (%dms)" -#: ../plug-ins/common/gifload.c:947 +#: ../plug-ins/common/gifload.c:946 #, c-format msgid "" "GIF: Undocumented GIF composite type %d is not handled. Animation might not " @@ -6123,7 +6124,7 @@ msgid "B/W" msgstr "白黒" -#: ../plug-ins/common/postscript.c:3003 ../plug-ins/rcm/rcm_dialog.c:404 +#: ../plug-ins/common/postscript.c:3003 ../plug-ins/rcm/rcm_dialog.c:411 msgid "Gray" msgstr "グレー" @@ -6219,18 +6220,18 @@ msgid "Invalid UTF-8 string in PSD file" msgstr "" -#: ../plug-ins/common/psd_save.c:181 +#: ../plug-ins/common/psd_save.c:192 msgid "Photoshop image" msgstr "" -#: ../plug-ins/common/psd_save.c:1564 +#: ../plug-ins/common/psd_save.c:1312 #, c-format msgid "" "Unable to save '%s'. The psd file format does not support images that are " "more than 30000 pixels wide or tall." msgstr "" -#: ../plug-ins/common/psd_save.c:1576 +#: ../plug-ins/common/psd_save.c:1324 #, c-format msgid "" "Unable to save '%s'. The psd file format does not support images with " @@ -11875,89 +11876,89 @@ msgid "Rotating the colormap..." msgstr "カラーマップを回転しています..." -#: ../plug-ins/rcm/rcm_dialog.c:114 +#: ../plug-ins/rcm/rcm_dialog.c:119 msgid "Original" msgstr "オリジナル" -#: ../plug-ins/rcm/rcm_dialog.c:127 +#: ../plug-ins/rcm/rcm_dialog.c:133 msgid "Rotated" msgstr "回転" -#: ../plug-ins/rcm/rcm_dialog.c:140 +#: ../plug-ins/rcm/rcm_dialog.c:147 msgid "Continuous update" msgstr "逐次更新" -#: ../plug-ins/rcm/rcm_dialog.c:153 +#: ../plug-ins/rcm/rcm_dialog.c:160 msgid "Area:" msgstr "領域:" -#: ../plug-ins/rcm/rcm_dialog.c:157 +#: ../plug-ins/rcm/rcm_dialog.c:164 msgid "Entire Layer" msgstr "レイヤー全体" -#: ../plug-ins/rcm/rcm_dialog.c:159 +#: ../plug-ins/rcm/rcm_dialog.c:166 msgid "Context" msgstr "コンテキスト" #. spinbutton 1 -#: ../plug-ins/rcm/rcm_dialog.c:284 ../plug-ins/rcm/rcm_dialog.c:362 +#: ../plug-ins/rcm/rcm_dialog.c:291 ../plug-ins/rcm/rcm_dialog.c:369 msgid "From" msgstr "始め" #. spinbutton 2 -#: ../plug-ins/rcm/rcm_dialog.c:310 ../plug-ins/rcm/rcm_dialog.c:363 +#: ../plug-ins/rcm/rcm_dialog.c:317 ../plug-ins/rcm/rcm_dialog.c:370 msgid "To" msgstr "終り" #. * Gray: Operation-Mode * -#: ../plug-ins/rcm/rcm_dialog.c:499 +#: ../plug-ins/rcm/rcm_dialog.c:506 #, fuzzy msgid "Gray Mode" msgstr "カラーモード" #. Gray: Operation-Mode: two radio buttons -#: ../plug-ins/rcm/rcm_dialog.c:508 +#: ../plug-ins/rcm/rcm_dialog.c:515 msgid "Treat as this" msgstr "この色として扱う" -#: ../plug-ins/rcm/rcm_dialog.c:520 +#: ../plug-ins/rcm/rcm_dialog.c:527 msgid "Change to this" msgstr "この色にする" #. * Gray: What is gray? * -#: ../plug-ins/rcm/rcm_dialog.c:533 +#: ../plug-ins/rcm/rcm_dialog.c:540 #, fuzzy msgid "Gray Threshold" msgstr "緑閾値:" #. * Misc: Used unit selection * -#: ../plug-ins/rcm/rcm_dialog.c:572 ../plug-ins/rcm/rcm_dialog.c:676 +#: ../plug-ins/rcm/rcm_dialog.c:579 ../plug-ins/rcm/rcm_dialog.c:683 msgid "Units" msgstr "単位" #. Misc: Used unit selection: 3 radio buttons -#: ../plug-ins/rcm/rcm_dialog.c:581 +#: ../plug-ins/rcm/rcm_dialog.c:588 msgid "Radians" msgstr "ラジアン" -#: ../plug-ins/rcm/rcm_dialog.c:593 +#: ../plug-ins/rcm/rcm_dialog.c:600 msgid "Radians/Pi" msgstr "ラジアン/π" -#: ../plug-ins/rcm/rcm_dialog.c:605 +#: ../plug-ins/rcm/rcm_dialog.c:612 msgid "Degrees" msgstr "度" #. Create dialog -#: ../plug-ins/rcm/rcm_dialog.c:638 +#: ../plug-ins/rcm/rcm_dialog.c:645 msgid "Colormap Rotation" msgstr "カラーマップ回転" -#: ../plug-ins/rcm/rcm_dialog.c:670 +#: ../plug-ins/rcm/rcm_dialog.c:677 msgid "Main Options" msgstr "主オプション" -#: ../plug-ins/rcm/rcm_dialog.c:673 +#: ../plug-ins/rcm/rcm_dialog.c:680 #, fuzzy msgid "Gray Options" msgstr "一般オプション" @@ -12048,27 +12049,27 @@ msgid "Transferring TWAIN data..." msgstr "TWAIN データを転送しています" -#: ../plug-ins/winicon/icodialog.c:123 +#: ../plug-ins/winicon/icodialog.c:89 msgid "1 bpp, 1-bit alpha, 2-slot palette" msgstr "" -#: ../plug-ins/winicon/icodialog.c:124 +#: ../plug-ins/winicon/icodialog.c:90 msgid "4 bpp, 1-bit alpha, 16-slot palette" msgstr "" -#: ../plug-ins/winicon/icodialog.c:125 +#: ../plug-ins/winicon/icodialog.c:91 msgid "8 bpp, 1-bit alpha, 256-slot palette" msgstr "" -#: ../plug-ins/winicon/icodialog.c:126 +#: ../plug-ins/winicon/icodialog.c:92 msgid "32 bpp, 8-bit alpha, no palette" msgstr "" -#: ../plug-ins/winicon/icodialog.c:151 +#: ../plug-ins/winicon/icodialog.c:117 msgid "GIMP Windows Icon Plugin" msgstr "" -#: ../plug-ins/winicon/icodialog.c:172 +#: ../plug-ins/winicon/icodialog.c:138 #, fuzzy msgid "Icon details" msgstr "コレクション詳細" @@ -12078,7 +12079,7 @@ msgid "Icon #%i" msgstr "" -#: ../plug-ins/winicon/icosave.c:943 +#: ../plug-ins/winicon/icosave.c:969 msgid "Windows icons cannot be higher or wider than 255 pixels." msgstr "" diff -uraN gimp-2.2.4/po-plug-ins/ko.gmo gimp-2.2.5/po-plug-ins/ko.gmo --- gimp-2.2.4/po-plug-ins/ko.gmo 2005-02-22 23:12:43.000000000 +0100 +++ gimp-2.2.5/po-plug-ins/ko.gmo 2005-04-09 23:09:30.000000000 +0200 @@ -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: 2005-02-22 23:04+0100 +POT-Creation-Date: 2005-04-09 21:56+0200 PO-Revision-Date: 2003-06-05 07:54+0800 Last-Translator: Young-Boo Park Language-Team: Korean diff -uraN gimp-2.2.4/po-plug-ins/ko.po gimp-2.2.5/po-plug-ins/ko.po --- gimp-2.2.4/po-plug-ins/ko.po 2005-02-22 23:12:33.000000000 +0100 +++ gimp-2.2.5/po-plug-ins/ko.po 2005-04-09 23:09:19.000000000 +0200 @@ -5,7 +5,7 @@ msgstr "" "Project-Id-Version: gimp-plug-ins 1.1.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-02-22 23:04+0100\n" +"POT-Creation-Date: 2005-04-09 21:56+0200\n" "PO-Revision-Date: 2003-06-05 07:54+0800\n" "Last-Translator: Young-Boo Park \n" "Language-Team: Korean \n" @@ -395,7 +395,7 @@ #: ../plug-ins/common/pat.c:433 ../plug-ins/common/pcx.c:585 #: ../plug-ins/common/pix.c:515 ../plug-ins/common/png.c:1178 #: ../plug-ins/common/pnm.c:809 ../plug-ins/common/postscript.c:1123 -#: ../plug-ins/common/psd_save.c:1588 ../plug-ins/common/raw.c:517 +#: ../plug-ins/common/psd_save.c:1336 ../plug-ins/common/raw.c:517 #: ../plug-ins/common/raw.c:544 ../plug-ins/common/spheredesigner.c:2088 #: ../plug-ins/common/sunras.c:513 ../plug-ins/common/tga.c:1030 #: ../plug-ins/common/tiff.c:1810 ../plug-ins/common/xbm.c:996 @@ -1338,35 +1338,36 @@ #: ../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 +#: ../plug-ins/bmp/bmpread.c:207 ../plug-ins/bmp/bmpread.c:307 +#: ../plug-ins/bmp/bmpread.c:348 #, fuzzy, c-format msgid "'%s' is not a valid BMP file" msgstr "%s: BMP파일 %s가 정확치 않습니다.\n" #: ../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 +#: ../plug-ins/bmp/bmpread.c:300 ../plug-ins/bmp/bmpread.c:313 +#: ../plug-ins/bmp/bmpread.c:319 #, fuzzy, c-format msgid "Error reading BMP file header from '%s'" msgstr "%s: BMP 파일 해더 읽기 애러\n" -#: ../plug-ins/bmp/bmpread.c:442 ../plug-ins/bmp/bmpread.c:477 +#: ../plug-ins/bmp/bmpread.c:450 ../plug-ins/bmp/bmpread.c:485 msgid "Unrecognized or invalid BMP compression format." msgstr "" #. #. * Create the "background" layer to hold the image... #. -#: ../plug-ins/bmp/bmpread.c:482 ../plug-ins/common/CEL.c:357 +#: ../plug-ins/bmp/bmpread.c:490 ../plug-ins/common/CEL.c:357 #: ../plug-ins/common/CEL.c:360 ../plug-ins/common/blinds.c:273 #: ../plug-ins/common/compose.c:625 ../plug-ins/common/decompose.c:595 #: ../plug-ins/common/dicom.c:442 ../plug-ins/common/film.c:946 -#: ../plug-ins/common/gifload.c:865 ../plug-ins/common/jpeg.c:1113 +#: ../plug-ins/common/gifload.c:864 ../plug-ins/common/jpeg.c:1113 #: ../plug-ins/common/jpeg.c:2474 ../plug-ins/common/pcx.c:334 #: ../plug-ins/common/pcx.c:340 ../plug-ins/common/pix.c:374 #: ../plug-ins/common/png.c:808 ../plug-ins/common/pnm.c:517 -#: ../plug-ins/common/psd.c:2173 ../plug-ins/common/raw.c:677 +#: ../plug-ins/common/psd.c:2174 ../plug-ins/common/raw.c:677 #: ../plug-ins/common/smooth_palette.c:257 ../plug-ins/common/sunras.c:925 #: ../plug-ins/common/tga.c:929 ../plug-ins/common/tiff.c:833 #: ../plug-ins/common/tile.c:266 ../plug-ins/common/winclipboard.c:579 @@ -1399,12 +1400,12 @@ #: ../plug-ins/common/jpeg.c:1453 ../plug-ins/common/pat.c:438 #: ../plug-ins/common/pcx.c:545 ../plug-ins/common/pix.c:521 #: ../plug-ins/common/png.c:1185 ../plug-ins/common/pnm.c:814 -#: ../plug-ins/common/postscript.c:1128 ../plug-ins/common/psd_save.c:1593 +#: ../plug-ins/common/postscript.c:1128 ../plug-ins/common/psd_save.c:1341 #: ../plug-ins/common/sunras.c:518 ../plug-ins/common/tga.c:1035 #: ../plug-ins/common/tiff.c:1815 ../plug-ins/common/xbm.c:1001 #: ../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:957 +#: ../plug-ins/sgi/sgi.c:545 ../plug-ins/winicon/icosave.c:977 #: ../plug-ins/xjt/xjt.c:1682 #, fuzzy, c-format msgid "Saving '%s'..." @@ -1766,7 +1767,7 @@ msgstr "색도" #: ../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 +#: ../plug-ins/common/decompose.c:144 ../plug-ins/rcm/rcm_dialog.c:548 msgid "Saturation" msgstr "채도" @@ -2695,28 +2696,28 @@ msgid "Color to _Alpha..." msgstr "색상 :" -#: ../plug-ins/common/colortoalpha.c:181 +#: ../plug-ins/common/colortoalpha.c:187 #, fuzzy msgid "Removing color..." msgstr "회전중..." -#: ../plug-ins/common/colortoalpha.c:377 +#: ../plug-ins/common/colortoalpha.c:380 #, fuzzy msgid "Color to Alpha" msgstr "색상 :" -#: ../plug-ins/common/colortoalpha.c:402 ../plug-ins/common/mapcolor.c:424 +#: ../plug-ins/common/colortoalpha.c:405 ../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:406 +#: ../plug-ins/common/colortoalpha.c:409 #, fuzzy msgid "Color to Alpha Color Picker" msgstr "Script-Fu 색상 채취" -#: ../plug-ins/common/colortoalpha.c:420 +#: ../plug-ins/common/colortoalpha.c:423 #, fuzzy msgid "to alpha" msgstr "알파" @@ -2740,13 +2741,13 @@ msgstr "" #. Gray: Circle: Spinbutton 1 -#: ../plug-ins/common/compose.c:148 ../plug-ins/rcm/rcm_dialog.c:452 +#: ../plug-ins/common/compose.c:148 ../plug-ins/rcm/rcm_dialog.c:459 msgid "Hue:" msgstr "색조:" #. Gray: Circle: Spinbutton 2 #: ../plug-ins/common/compose.c:149 ../plug-ins/print/gimp_color_window.c:364 -#: ../plug-ins/rcm/rcm_dialog.c:479 +#: ../plug-ins/rcm/rcm_dialog.c:486 msgid "Saturation:" msgstr "채도:" @@ -3419,16 +3420,16 @@ msgid "Deinterlace..." msgstr " 인터레이스됨" -#: ../plug-ins/common/deinterlace.c:315 +#: ../plug-ins/common/deinterlace.c:324 #, fuzzy msgid "Deinterlace" msgstr " 인터레이스됨" -#: ../plug-ins/common/deinterlace.c:340 +#: ../plug-ins/common/deinterlace.c:349 msgid "Keep o_dd fields" msgstr "" -#: ../plug-ins/common/deinterlace.c:341 +#: ../plug-ins/common/deinterlace.c:350 msgid "Keep _even fields" msgstr "" @@ -3898,7 +3899,7 @@ #. Create selection #: ../plug-ins/common/film.c:1166 ../plug-ins/imagemap/imap_selection.c:400 -#: ../plug-ins/rcm/rcm_dialog.c:158 +#: ../plug-ins/rcm/rcm_dialog.c:165 #, fuzzy msgid "Selection" msgstr "선택" @@ -4516,23 +4517,23 @@ msgid "Non-square pixels. Image might look squashed." msgstr "" -#: ../plug-ins/common/gifload.c:867 +#: ../plug-ins/common/gifload.c:866 #, fuzzy, c-format msgid "Background (%d%s)" msgstr "배경 (%dms)" -#: ../plug-ins/common/gifload.c:915 ../plug-ins/common/iwarp.c:783 +#: ../plug-ins/common/gifload.c:914 ../plug-ins/common/iwarp.c:783 #: ../plug-ins/common/iwarp.c:817 #, c-format msgid "Frame %d" msgstr "프레임 %d" -#: ../plug-ins/common/gifload.c:917 +#: ../plug-ins/common/gifload.c:916 #, fuzzy, c-format msgid "Frame %d (%d%s)" msgstr "프레임 %d (%dms)" -#: ../plug-ins/common/gifload.c:947 +#: ../plug-ins/common/gifload.c:946 #, c-format msgid "" "GIF: Undocumented GIF composite type %d is not handled. Animation might not " @@ -6564,7 +6565,7 @@ msgid "B/W" msgstr "B&W" -#: ../plug-ins/common/postscript.c:3003 ../plug-ins/rcm/rcm_dialog.c:404 +#: ../plug-ins/common/postscript.c:3003 ../plug-ins/rcm/rcm_dialog.c:411 #, fuzzy msgid "Gray" msgstr "그레이" @@ -6666,18 +6667,18 @@ msgid "Invalid UTF-8 string in PSD file" msgstr "" -#: ../plug-ins/common/psd_save.c:181 +#: ../plug-ins/common/psd_save.c:192 msgid "Photoshop image" msgstr "" -#: ../plug-ins/common/psd_save.c:1564 +#: ../plug-ins/common/psd_save.c:1312 #, c-format msgid "" "Unable to save '%s'. The psd file format does not support images that are " "more than 30000 pixels wide or tall." msgstr "" -#: ../plug-ins/common/psd_save.c:1576 +#: ../plug-ins/common/psd_save.c:1324 #, c-format msgid "" "Unable to save '%s'. The psd file format does not support images with " @@ -12722,101 +12723,101 @@ msgid "Rotating the colormap..." msgstr "회전중..." -#: ../plug-ins/rcm/rcm_dialog.c:114 +#: ../plug-ins/rcm/rcm_dialog.c:119 #, fuzzy msgid "Original" msgstr "원래 환경 유지" -#: ../plug-ins/rcm/rcm_dialog.c:127 +#: ../plug-ins/rcm/rcm_dialog.c:133 #, fuzzy msgid "Rotated" msgstr "회전하기" -#: ../plug-ins/rcm/rcm_dialog.c:140 +#: ../plug-ins/rcm/rcm_dialog.c:147 #, fuzzy msgid "Continuous update" msgstr "연속적인 색감변화도" -#: ../plug-ins/rcm/rcm_dialog.c:153 +#: ../plug-ins/rcm/rcm_dialog.c:160 msgid "Area:" msgstr "" -#: ../plug-ins/rcm/rcm_dialog.c:157 +#: ../plug-ins/rcm/rcm_dialog.c:164 #, fuzzy msgid "Entire Layer" msgstr "이미지 환경:" -#: ../plug-ins/rcm/rcm_dialog.c:159 +#: ../plug-ins/rcm/rcm_dialog.c:166 #, fuzzy msgid "Context" msgstr "계속" #. spinbutton 1 -#: ../plug-ins/rcm/rcm_dialog.c:284 ../plug-ins/rcm/rcm_dialog.c:362 +#: ../plug-ins/rcm/rcm_dialog.c:291 ../plug-ins/rcm/rcm_dialog.c:369 #, fuzzy msgid "From" msgstr "어디에서 :" #. spinbutton 2 -#: ../plug-ins/rcm/rcm_dialog.c:310 ../plug-ins/rcm/rcm_dialog.c:363 +#: ../plug-ins/rcm/rcm_dialog.c:317 ../plug-ins/rcm/rcm_dialog.c:370 #, fuzzy msgid "To" msgstr "어디로 :" #. * Gray: Operation-Mode * -#: ../plug-ins/rcm/rcm_dialog.c:499 +#: ../plug-ins/rcm/rcm_dialog.c:506 #, fuzzy msgid "Gray Mode" msgstr "모드:" #. Gray: Operation-Mode: two radio buttons -#: ../plug-ins/rcm/rcm_dialog.c:508 +#: ../plug-ins/rcm/rcm_dialog.c:515 msgid "Treat as this" msgstr "" -#: ../plug-ins/rcm/rcm_dialog.c:520 +#: ../plug-ins/rcm/rcm_dialog.c:527 msgid "Change to this" msgstr "" #. * Gray: What is gray? * -#: ../plug-ins/rcm/rcm_dialog.c:533 +#: ../plug-ins/rcm/rcm_dialog.c:540 #, fuzzy msgid "Gray Threshold" msgstr "발단규모(Threshold)" #. * Misc: Used unit selection * -#: ../plug-ins/rcm/rcm_dialog.c:572 ../plug-ins/rcm/rcm_dialog.c:676 +#: ../plug-ins/rcm/rcm_dialog.c:579 ../plug-ins/rcm/rcm_dialog.c:683 #, fuzzy msgid "Units" msgstr "단위" #. Misc: Used unit selection: 3 radio buttons -#: ../plug-ins/rcm/rcm_dialog.c:581 +#: ../plug-ins/rcm/rcm_dialog.c:588 #, fuzzy msgid "Radians" msgstr "반경" -#: ../plug-ins/rcm/rcm_dialog.c:593 +#: ../plug-ins/rcm/rcm_dialog.c:600 #, fuzzy msgid "Radians/Pi" msgstr "반경" -#: ../plug-ins/rcm/rcm_dialog.c:605 +#: ../plug-ins/rcm/rcm_dialog.c:612 #, fuzzy msgid "Degrees" msgstr "각도" #. Create dialog -#: ../plug-ins/rcm/rcm_dialog.c:638 +#: ../plug-ins/rcm/rcm_dialog.c:645 #, fuzzy msgid "Colormap Rotation" msgstr "색상 변화" -#: ../plug-ins/rcm/rcm_dialog.c:670 +#: ../plug-ins/rcm/rcm_dialog.c:677 msgid "Main Options" msgstr "주 옵션" -#: ../plug-ins/rcm/rcm_dialog.c:673 +#: ../plug-ins/rcm/rcm_dialog.c:680 #, fuzzy msgid "Gray Options" msgstr "일반적인 옵션들" @@ -12907,27 +12908,27 @@ msgid "Transferring TWAIN data..." msgstr "" -#: ../plug-ins/winicon/icodialog.c:123 +#: ../plug-ins/winicon/icodialog.c:89 msgid "1 bpp, 1-bit alpha, 2-slot palette" msgstr "" -#: ../plug-ins/winicon/icodialog.c:124 +#: ../plug-ins/winicon/icodialog.c:90 msgid "4 bpp, 1-bit alpha, 16-slot palette" msgstr "" -#: ../plug-ins/winicon/icodialog.c:125 +#: ../plug-ins/winicon/icodialog.c:91 msgid "8 bpp, 1-bit alpha, 256-slot palette" msgstr "" -#: ../plug-ins/winicon/icodialog.c:126 +#: ../plug-ins/winicon/icodialog.c:92 msgid "32 bpp, 8-bit alpha, no palette" msgstr "" -#: ../plug-ins/winicon/icodialog.c:151 +#: ../plug-ins/winicon/icodialog.c:117 msgid "GIMP Windows Icon Plugin" msgstr "" -#: ../plug-ins/winicon/icodialog.c:172 +#: ../plug-ins/winicon/icodialog.c:138 #, fuzzy msgid "Icon details" msgstr "색상 셀렉션 대화상자" @@ -12937,7 +12938,7 @@ msgid "Icon #%i" msgstr "" -#: ../plug-ins/winicon/icosave.c:943 +#: ../plug-ins/winicon/icosave.c:969 msgid "Windows icons cannot be higher or wider than 255 pixels." msgstr "" diff -uraN gimp-2.2.4/po-plug-ins/lt.gmo gimp-2.2.5/po-plug-ins/lt.gmo --- gimp-2.2.4/po-plug-ins/lt.gmo 2005-02-22 23:12:44.000000000 +0100 +++ gimp-2.2.5/po-plug-ins/lt.gmo 2005-04-09 23:09:30.000000000 +0200 @@ -80,7 +80,7 @@ Save SettingsPrinter Model:Printer SettingsPrinting...Procedure BrowserProcedure _BrowserQbist ...RGBRGBAR_edRadius:RedRed:Redo last zoomRedrawRedraw previewRefresh the Preview windowRelief:Removing color...ResolutionResolution:RewindRightRight:RippleRotation:RoundSa_ve alpha channel (RGBA/RGB)Satu_rationSaturationSaveSave SettingsSave BrushSave FlameSave as BrushSave as GIFSave as JPEGSave as MNGSave as PNGSave as TextScatter HSVScatter RGBScattering HSV...ScreenScreen ShotSeconds DelaySelective Gaussian BlurSelective Gaussian Blur...Set the contrast of the printSettingsSetup PrinterShadow blur:ShiftSineSizeSize (%):Size:Sizes:Smoo_th Palette...SobelSobel Edge Detecting...Sobel Edge DetectionSobel _HorizontallySobel _VerticallySoftglowSolid NoiseSolid Noise...Spacing:SparkleSphereSphere DesignerSphere _Designer...SpiderSpiralSpreadSpread AmountSpreading...StandardStepStyleSuperNovaSwirlTemporary ProcedureThank you for choosing GIMPThere are not enough layers to align.This is not a GIF fileThreshold:To ColorTo:ToolsTop:Type:UndoUndo last zoomUnitUnit EditorUnit factor must not be 0.Units:Unsharp MaskUnsupported format or Clipboard empty!UpdateUse GIMP guides...Use Gimp GuidesV_alueValueVan Gogh (LIC)Van Gogh (LIC)...Very darkVi_deo...VideoVideo PatternVideo/RGB...W_hirl and Pinch...WarpWavesWaving...Whirl and PinchWhirling and Pinching...WhiteWi_nd...Width:WindWoodYellowYellow:You can not rotate the whole image if there's a selection.ZealousCropping(tm)..._About ImageMap_Alpha_Apply Canvas..._Autocrop Image_Autocrop Layer_Background_Black_Blend_Blinds..._Blue_Blue:_Blur_Blur radius:_Border Average..._Border:_Brightness:_Brush_Bump Map..._Bump map:_Checkerboard..._Clear_Color Enhance_Color Exchange..._Colorify..._Convolution Matrix..._Cubism..._Curve Bend..._Decompose..._Deinterlace..._Depth Merge..._Depth:_Diffraction Patterns..._Dilate_Displace..._Dots_Edge..._Edit_Emboss_Emboss..._File_Film..._Filter Pack..._Flame..._FlareFX..._Font:_Fractal Explorer..._Fractal Trace..._Fractals_GFlare..._GIF comment:_GIMPressionist..._Gaussian Blur..._Gfig..._Glass Tile..._Gradient Map_Green_Green:_Grid_Grid size:_Grid..._Guillotine_Height_Height:_Help_High_Horizontal_Hot..._Hurl..._IFS Fractal..._IIR_IWarp..._Illusion..._ImageMap..._Insert_Invert_Jigsaw..._Kill_Laplace_Left_Lighting Effects..._Lines_Loop forever_Make Seamless_Max RGB..._Maze..._Metallic_Monochrome_Mosaic..._Motion Blur..._NL Filter..._Neon..._Optimize (Difference)_Pagecurl..._Paper Tile..._Parameters_Photocopy..._Pick..._Pinch amount:_Pixelize..._Plasma..._Playback..._Plug-In Browser_Preview_Print_Qbist..._RGB_RLE_Red:_Right_Ripple..._Sample Colorize..._Scatter RGB..._Screen Shot..._Selective Gaussian Blur..._Semi-Flatten_Settings_Sharpen..._Shift..._Sinus..._Size_Size:_Slur..._Small Tiles..._Sobel..._Softglow..._Solid Noise..._Sparkle..._Speed:_Stretch Contrast_Symbol:_Threshold_Threshold:_Tile bumpmap_Tile..._Tools_Transparent_UnOptimize_Undo_Undo %s_Unit Editor_Unsharp Mask..._Update_Value_Value Invert_Value Propagate..._Value:_Van Gogh (LIC)..._Vertical_Warp_Warp..._Waves..._Whirl angle:_White_Width_Wind_Wrap_Zealous Crop_Zoomafterblackbluecmgreenpixelsredto alphayellowProject-Id-Version: GIMP plugins HEAD Report-Msgid-Bugs-To: -POT-Creation-Date: 2005-02-22 23:04+0100 +POT-Creation-Date: 2005-04-09 21:56+0200 PO-Revision-Date: 2005-02-10 21:27+0200 Last-Translator: Giedrius Naudžiūnas Language-Team: Lithuanian diff -uraN gimp-2.2.4/po-plug-ins/lt.po gimp-2.2.5/po-plug-ins/lt.po --- gimp-2.2.4/po-plug-ins/lt.po 2005-02-22 23:12:33.000000000 +0100 +++ gimp-2.2.5/po-plug-ins/lt.po 2005-04-09 23:09:19.000000000 +0200 @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: GIMP plugins HEAD\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-02-22 23:04+0100\n" +"POT-Creation-Date: 2005-04-09 21:56+0200\n" "PO-Revision-Date: 2005-02-10 21:27+0200\n" "Last-Translator: Giedrius Naudžiūnas \n" "Language-Team: Lithuanian \n" @@ -377,7 +377,7 @@ #: ../plug-ins/common/pat.c:433 ../plug-ins/common/pcx.c:585 #: ../plug-ins/common/pix.c:515 ../plug-ins/common/png.c:1178 #: ../plug-ins/common/pnm.c:809 ../plug-ins/common/postscript.c:1123 -#: ../plug-ins/common/psd_save.c:1588 ../plug-ins/common/raw.c:517 +#: ../plug-ins/common/psd_save.c:1336 ../plug-ins/common/raw.c:517 #: ../plug-ins/common/raw.c:544 ../plug-ins/common/spheredesigner.c:2088 #: ../plug-ins/common/sunras.c:513 ../plug-ins/common/tga.c:1030 #: ../plug-ins/common/tiff.c:1810 ../plug-ins/common/xbm.c:996 @@ -1246,35 +1246,36 @@ #: ../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 +#: ../plug-ins/bmp/bmpread.c:207 ../plug-ins/bmp/bmpread.c:307 +#: ../plug-ins/bmp/bmpread.c:348 #, c-format msgid "'%s' is not a valid BMP file" msgstr "" #: ../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 +#: ../plug-ins/bmp/bmpread.c:300 ../plug-ins/bmp/bmpread.c:313 +#: ../plug-ins/bmp/bmpread.c:319 #, c-format msgid "Error reading BMP file header from '%s'" msgstr "" -#: ../plug-ins/bmp/bmpread.c:442 ../plug-ins/bmp/bmpread.c:477 +#: ../plug-ins/bmp/bmpread.c:450 ../plug-ins/bmp/bmpread.c:485 msgid "Unrecognized or invalid BMP compression format." msgstr "" #. #. * Create the "background" layer to hold the image... #. -#: ../plug-ins/bmp/bmpread.c:482 ../plug-ins/common/CEL.c:357 +#: ../plug-ins/bmp/bmpread.c:490 ../plug-ins/common/CEL.c:357 #: ../plug-ins/common/CEL.c:360 ../plug-ins/common/blinds.c:273 #: ../plug-ins/common/compose.c:625 ../plug-ins/common/decompose.c:595 #: ../plug-ins/common/dicom.c:442 ../plug-ins/common/film.c:946 -#: ../plug-ins/common/gifload.c:865 ../plug-ins/common/jpeg.c:1113 +#: ../plug-ins/common/gifload.c:864 ../plug-ins/common/jpeg.c:1113 #: ../plug-ins/common/jpeg.c:2474 ../plug-ins/common/pcx.c:334 #: ../plug-ins/common/pcx.c:340 ../plug-ins/common/pix.c:374 #: ../plug-ins/common/png.c:808 ../plug-ins/common/pnm.c:517 -#: ../plug-ins/common/psd.c:2173 ../plug-ins/common/raw.c:677 +#: ../plug-ins/common/psd.c:2174 ../plug-ins/common/raw.c:677 #: ../plug-ins/common/smooth_palette.c:257 ../plug-ins/common/sunras.c:925 #: ../plug-ins/common/tga.c:929 ../plug-ins/common/tiff.c:833 #: ../plug-ins/common/tile.c:266 ../plug-ins/common/winclipboard.c:579 @@ -1305,12 +1306,12 @@ #: ../plug-ins/common/jpeg.c:1453 ../plug-ins/common/pat.c:438 #: ../plug-ins/common/pcx.c:545 ../plug-ins/common/pix.c:521 #: ../plug-ins/common/png.c:1185 ../plug-ins/common/pnm.c:814 -#: ../plug-ins/common/postscript.c:1128 ../plug-ins/common/psd_save.c:1593 +#: ../plug-ins/common/postscript.c:1128 ../plug-ins/common/psd_save.c:1341 #: ../plug-ins/common/sunras.c:518 ../plug-ins/common/tga.c:1035 #: ../plug-ins/common/tiff.c:1815 ../plug-ins/common/xbm.c:1001 #: ../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:957 +#: ../plug-ins/sgi/sgi.c:545 ../plug-ins/winicon/icosave.c:977 #: ../plug-ins/xjt/xjt.c:1682 #, c-format msgid "Saving '%s'..." @@ -1661,7 +1662,7 @@ msgstr "" #: ../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 +#: ../plug-ins/common/decompose.c:144 ../plug-ins/rcm/rcm_dialog.c:548 msgid "Saturation" msgstr "Sodrumas" @@ -2477,24 +2478,24 @@ msgid "Color to _Alpha..." msgstr "Splavą į Alfą..." -#: ../plug-ins/common/colortoalpha.c:181 +#: ../plug-ins/common/colortoalpha.c:187 msgid "Removing color..." msgstr "Naikinama spalva..." -#: ../plug-ins/common/colortoalpha.c:377 +#: ../plug-ins/common/colortoalpha.c:380 msgid "Color to Alpha" msgstr "Spalvą į Alfą" -#: ../plug-ins/common/colortoalpha.c:402 ../plug-ins/common/mapcolor.c:424 +#: ../plug-ins/common/colortoalpha.c:405 ../plug-ins/common/mapcolor.c:424 #: ../plug-ins/gfli/gfli.c:835 ../plug-ins/gfli/gfli.c:898 msgid "From:" msgstr "Iš:" -#: ../plug-ins/common/colortoalpha.c:406 +#: ../plug-ins/common/colortoalpha.c:409 msgid "Color to Alpha Color Picker" msgstr "" -#: ../plug-ins/common/colortoalpha.c:420 +#: ../plug-ins/common/colortoalpha.c:423 msgid "to alpha" msgstr "į alfą" @@ -2518,13 +2519,13 @@ msgstr "" #. Gray: Circle: Spinbutton 1 -#: ../plug-ins/common/compose.c:148 ../plug-ins/rcm/rcm_dialog.c:452 +#: ../plug-ins/common/compose.c:148 ../plug-ins/rcm/rcm_dialog.c:459 msgid "Hue:" msgstr "" #. Gray: Circle: Spinbutton 2 #: ../plug-ins/common/compose.c:149 ../plug-ins/print/gimp_color_window.c:364 -#: ../plug-ins/rcm/rcm_dialog.c:479 +#: ../plug-ins/rcm/rcm_dialog.c:486 msgid "Saturation:" msgstr "" @@ -3157,15 +3158,15 @@ msgid "Deinterlace..." msgstr "Naikinti susimaišymus..." -#: ../plug-ins/common/deinterlace.c:315 +#: ../plug-ins/common/deinterlace.c:324 msgid "Deinterlace" msgstr "Naikinti susimaišymus" -#: ../plug-ins/common/deinterlace.c:340 +#: ../plug-ins/common/deinterlace.c:349 msgid "Keep o_dd fields" msgstr "" -#: ../plug-ins/common/deinterlace.c:341 +#: ../plug-ins/common/deinterlace.c:350 msgid "Keep _even fields" msgstr "" @@ -3580,7 +3581,7 @@ #. Create selection #: ../plug-ins/common/film.c:1166 ../plug-ins/imagemap/imap_selection.c:400 -#: ../plug-ins/rcm/rcm_dialog.c:158 +#: ../plug-ins/rcm/rcm_dialog.c:165 msgid "Selection" msgstr "" @@ -4119,23 +4120,23 @@ msgid "Non-square pixels. Image might look squashed." msgstr "" -#: ../plug-ins/common/gifload.c:867 +#: ../plug-ins/common/gifload.c:866 #, fuzzy, c-format msgid "Background (%d%s)" msgstr "Fonas" -#: ../plug-ins/common/gifload.c:915 ../plug-ins/common/iwarp.c:783 +#: ../plug-ins/common/gifload.c:914 ../plug-ins/common/iwarp.c:783 #: ../plug-ins/common/iwarp.c:817 #, c-format msgid "Frame %d" msgstr "Kadras %d" -#: ../plug-ins/common/gifload.c:917 +#: ../plug-ins/common/gifload.c:916 #, fuzzy, c-format msgid "Frame %d (%d%s)" msgstr "Kadras %d (%dms)" -#: ../plug-ins/common/gifload.c:947 +#: ../plug-ins/common/gifload.c:946 #, c-format msgid "" "GIF: Undocumented GIF composite type %d is not handled. Animation might not " @@ -5976,7 +5977,7 @@ msgid "B/W" msgstr "" -#: ../plug-ins/common/postscript.c:3003 ../plug-ins/rcm/rcm_dialog.c:404 +#: ../plug-ins/common/postscript.c:3003 ../plug-ins/rcm/rcm_dialog.c:411 msgid "Gray" msgstr "" @@ -6067,18 +6068,18 @@ msgid "Invalid UTF-8 string in PSD file" msgstr "" -#: ../plug-ins/common/psd_save.c:181 +#: ../plug-ins/common/psd_save.c:192 msgid "Photoshop image" msgstr "" -#: ../plug-ins/common/psd_save.c:1564 +#: ../plug-ins/common/psd_save.c:1312 #, c-format msgid "" "Unable to save '%s'. The psd file format does not support images that are " "more than 30000 pixels wide or tall." msgstr "" -#: ../plug-ins/common/psd_save.c:1576 +#: ../plug-ins/common/psd_save.c:1324 #, c-format msgid "" "Unable to save '%s'. The psd file format does not support images with " @@ -11597,88 +11598,88 @@ msgid "Rotating the colormap..." msgstr "" -#: ../plug-ins/rcm/rcm_dialog.c:114 +#: ../plug-ins/rcm/rcm_dialog.c:119 msgid "Original" msgstr "" -#: ../plug-ins/rcm/rcm_dialog.c:127 +#: ../plug-ins/rcm/rcm_dialog.c:133 msgid "Rotated" msgstr "" -#: ../plug-ins/rcm/rcm_dialog.c:140 +#: ../plug-ins/rcm/rcm_dialog.c:147 msgid "Continuous update" msgstr "" -#: ../plug-ins/rcm/rcm_dialog.c:153 +#: ../plug-ins/rcm/rcm_dialog.c:160 msgid "Area:" msgstr "" -#: ../plug-ins/rcm/rcm_dialog.c:157 +#: ../plug-ins/rcm/rcm_dialog.c:164 msgid "Entire Layer" msgstr "" -#: ../plug-ins/rcm/rcm_dialog.c:159 +#: ../plug-ins/rcm/rcm_dialog.c:166 msgid "Context" msgstr "Kontekstas" #. spinbutton 1 -#: ../plug-ins/rcm/rcm_dialog.c:284 ../plug-ins/rcm/rcm_dialog.c:362 +#: ../plug-ins/rcm/rcm_dialog.c:291 ../plug-ins/rcm/rcm_dialog.c:369 msgid "From" msgstr "" #. spinbutton 2 -#: ../plug-ins/rcm/rcm_dialog.c:310 ../plug-ins/rcm/rcm_dialog.c:363 +#: ../plug-ins/rcm/rcm_dialog.c:317 ../plug-ins/rcm/rcm_dialog.c:370 msgid "To" msgstr "" #. * Gray: Operation-Mode * -#: ../plug-ins/rcm/rcm_dialog.c:499 +#: ../plug-ins/rcm/rcm_dialog.c:506 msgid "Gray Mode" msgstr "" #. Gray: Operation-Mode: two radio buttons -#: ../plug-ins/rcm/rcm_dialog.c:508 +#: ../plug-ins/rcm/rcm_dialog.c:515 msgid "Treat as this" msgstr "" -#: ../plug-ins/rcm/rcm_dialog.c:520 +#: ../plug-ins/rcm/rcm_dialog.c:527 msgid "Change to this" msgstr "" #. * Gray: What is gray? * -#: ../plug-ins/rcm/rcm_dialog.c:533 +#: ../plug-ins/rcm/rcm_dialog.c:540 msgid "Gray Threshold" msgstr "" #. * Misc: Used unit selection * -#: ../plug-ins/rcm/rcm_dialog.c:572 ../plug-ins/rcm/rcm_dialog.c:676 +#: ../plug-ins/rcm/rcm_dialog.c:579 ../plug-ins/rcm/rcm_dialog.c:683 msgid "Units" msgstr "" #. Misc: Used unit selection: 3 radio buttons -#: ../plug-ins/rcm/rcm_dialog.c:581 +#: ../plug-ins/rcm/rcm_dialog.c:588 msgid "Radians" msgstr "" -#: ../plug-ins/rcm/rcm_dialog.c:593 +#: ../plug-ins/rcm/rcm_dialog.c:600 msgid "Radians/Pi" msgstr "" -#: ../plug-ins/rcm/rcm_dialog.c:605 +#: ../plug-ins/rcm/rcm_dialog.c:612 msgid "Degrees" msgstr "" #. Create dialog -#: ../plug-ins/rcm/rcm_dialog.c:638 +#: ../plug-ins/rcm/rcm_dialog.c:645 msgid "Colormap Rotation" msgstr "" -#: ../plug-ins/rcm/rcm_dialog.c:670 +#: ../plug-ins/rcm/rcm_dialog.c:677 #, fuzzy msgid "Main Options" msgstr "Pasirinkimai" -#: ../plug-ins/rcm/rcm_dialog.c:673 +#: ../plug-ins/rcm/rcm_dialog.c:680 #, fuzzy msgid "Gray Options" msgstr "GIF parinktys" @@ -11763,27 +11764,27 @@ msgid "Transferring TWAIN data..." msgstr "" -#: ../plug-ins/winicon/icodialog.c:123 +#: ../plug-ins/winicon/icodialog.c:89 msgid "1 bpp, 1-bit alpha, 2-slot palette" msgstr "" -#: ../plug-ins/winicon/icodialog.c:124 +#: ../plug-ins/winicon/icodialog.c:90 msgid "4 bpp, 1-bit alpha, 16-slot palette" msgstr "" -#: ../plug-ins/winicon/icodialog.c:125 +#: ../plug-ins/winicon/icodialog.c:91 msgid "8 bpp, 1-bit alpha, 256-slot palette" msgstr "" -#: ../plug-ins/winicon/icodialog.c:126 +#: ../plug-ins/winicon/icodialog.c:92 msgid "32 bpp, 8-bit alpha, no palette" msgstr "" -#: ../plug-ins/winicon/icodialog.c:151 +#: ../plug-ins/winicon/icodialog.c:117 msgid "GIMP Windows Icon Plugin" msgstr "" -#: ../plug-ins/winicon/icodialog.c:172 +#: ../plug-ins/winicon/icodialog.c:138 msgid "Icon details" msgstr "" @@ -11792,7 +11793,7 @@ msgid "Icon #%i" msgstr "" -#: ../plug-ins/winicon/icosave.c:943 +#: ../plug-ins/winicon/icosave.c:969 msgid "Windows icons cannot be higher or wider than 255 pixels." msgstr "" diff -uraN gimp-2.2.4/po-plug-ins/Makefile.in.in gimp-2.2.5/po-plug-ins/Makefile.in.in --- gimp-2.2.4/po-plug-ins/Makefile.in.in 2002-02-25 04:26:12.000000000 +0100 +++ gimp-2.2.5/po-plug-ins/Makefile.in.in 2005-03-08 16:48:01.000000000 +0100 @@ -27,25 +27,28 @@ prefix = @prefix@ exec_prefix = @exec_prefix@ -datadir = $(prefix)/@DATADIRNAME@ -localedir = $(datadir)/locale -gnulocaledir = $(prefix)/share/locale -gettextsrcdir = $(prefix)/share/glib-2.0/gettext/po +datadir = @datadir@ +libdir = @libdir@ +localedir = $(libdir)/locale +gnulocaledir = $(datadir)/locale +gettextsrcdir = $(datadir)/glib-2.0/gettext/po subdir = po +install_sh = @install_sh@ +mkdir_p = @mkdir_p@ +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ -MKINSTALLDIRS = $(top_srcdir)/@MKINSTALLDIRS@ CC = @CC@ GENCAT = @GENCAT@ -GMSGFMT = PATH=../src:$$PATH @GMSGFMT@ +GMSGFMT = @GMSGFMT@ MSGFMT = @MSGFMT@ -XGETTEXT = PATH=../src:$$PATH @XGETTEXT@ +XGETTEXT = @XGETTEXT@ INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ -MSGMERGE = INTLTOOL_EXTRACT=$(INTLTOOL_EXTRACT) $(INTLTOOL_UPDATE) --gettext-package $(GETTEXT_PACKAGE) --dist -GENPOT = INTLTOOL_EXTRACT=$(INTLTOOL_EXTRACT) $(INTLTOOL_UPDATE) --gettext-package $(GETTEXT_PACKAGE) --pot +MSGMERGE = INTLTOOL_EXTRACT=$(INTLTOOL_EXTRACT) srcdir=$(srcdir) $(INTLTOOL_UPDATE) --gettext-package $(GETTEXT_PACKAGE) --dist +GENPOT = INTLTOOL_EXTRACT=$(INTLTOOL_EXTRACT) srcdir=$(srcdir) $(INTLTOOL_UPDATE) --gettext-package $(GETTEXT_PACKAGE) --pot DEFS = @DEFS@ CFLAGS = @CFLAGS@ @@ -58,7 +61,7 @@ SOURCES = POFILES = @POFILES@ GMOFILES = @GMOFILES@ -DISTFILES = ChangeLog Makefile.in.in POTFILES.in $(GETTEXT_PACKAGE).pot \ +DISTFILES = ChangeLog Makefile.in.in POTFILES.in \ $(POFILES) $(GMOFILES) $(SOURCES) POTFILES = \ @@ -75,13 +78,13 @@ .po.pox: $(MAKE) $(GETTEXT_PACKAGE).pot - $(MSGMERGE) $< $(srcdir)/$(GETTEXT_PACKAGE).pot -o $*.pox + $(MSGMERGE) $< $(top_builddir)/po/$(GETTEXT_PACKAGE).pot -o $*pox .po.mo: $(MSGFMT) -o $@ $< .po.gmo: - file=$(srcdir)/`echo $* | sed 's,.*/,,'`.gmo \ + file=`echo $* | sed 's,.*/,,'`.gmo \ && rm -f $$file && $(GMSGFMT) -o $$file $< .po.cat: @@ -94,7 +97,7 @@ all-yes: $(CATALOGS) all-no: -$(srcdir)/$(GETTEXT_PACKAGE).pot: $(POTFILES) +$(GETTEXT_PACKAGE).pot: $(POTFILES) $(GENPOT) install: install-exec install-data @@ -102,7 +105,7 @@ install-data: install-data-@USE_NLS@ install-data-no: all install-data-yes: all - if test -r "$(MKINSTALLDIRS)"; then \ + if test -n "$(MKINSTALLDIRS)"; then \ $(MKINSTALLDIRS) $(DESTDIR)$(datadir); \ else \ $(SHELL) $(top_srcdir)/mkinstalldirs $(DESTDIR)$(datadir); \ @@ -116,7 +119,7 @@ esac; \ lang=`echo $$cat | sed 's/\$(CATOBJEXT)$$//'`; \ dir=$(DESTDIR)$$destdir/$$lang/LC_MESSAGES; \ - if test -r "$(MKINSTALLDIRS)"; then \ + if test -n "$(MKINSTALLDIRS)"; then \ $(MKINSTALLDIRS) $$dir; \ else \ $(SHELL) $(top_srcdir)/mkinstalldirs $$dir; \ @@ -144,7 +147,7 @@ fi; \ done if test "$(PACKAGE)" = "glib"; then \ - if test -r "$(MKINSTALLDIRS)"; then \ + if test -n "$(MKINSTALLDIRS)"; then \ $(MKINSTALLDIRS) $(DESTDIR)$(gettextsrcdir); \ else \ $(SHELL) $(top_srcdir)/mkinstalldirs $(DESTDIR)$(gettextsrcdir); \ @@ -168,15 +171,18 @@ rm -f $(DESTDIR)$(gnulocaledir)/$$lang/LC_MESSAGES/$(GETTEXT_PACKAGE)$(INSTOBJEXT); \ rm -f $(DESTDIR)$(gnulocaledir)/$$lang/LC_MESSAGES/$(GETTEXT_PACKAGE)$(INSTOBJEXT).m; \ done - rm -f $(DESTDIR)$(gettextsrcdir)/po-Makefile.in.in + if test "$(PACKAGE)" = "glib"; then \ + rm -f $(DESTDIR)$(gettextsrcdir)/Makefile.in.in; \ + fi check: all dvi info tags TAGS ID: mostlyclean: - rm -f core core.* *.pox $(GETTEXT_PACKAGE).po *.old.po cat-id-tbl.tmp + rm -f core core.* *.pox $(GETTEXT_PACKAGE).pot *.old.po cat-id-tbl.tmp rm -fr *.o + rm -f .intltool-merge-cache clean: mostlyclean @@ -189,7 +195,7 @@ rm -f $(GMOFILES) distdir = ../$(GETTEXT_PACKAGE)-$(VERSION)/$(subdir) -dist distdir: update-po $(DISTFILES) +dist distdir: $(DISTFILES) $(GETTEXT_PACKAGE).pot dists="$(DISTFILES)"; \ for file in $$dists; do \ ln $(srcdir)/$$file $(distdir) 2> /dev/null \ @@ -198,36 +204,31 @@ update-po: Makefile $(MAKE) $(GETTEXT_PACKAGE).pot - PATH=`pwd`/../src:$$PATH; \ - cd $(srcdir); \ + tmpdir=`pwd`; \ catalogs='$(CATALOGS)'; \ for cat in $$catalogs; do \ cat=`basename $$cat`; \ lang=`echo $$cat | sed 's/\$(CATOBJEXT)$$//'`; \ - cp $$lang.po $$lang.old.po; \ echo "$$lang:"; \ - if $(MSGMERGE) $$lang; then \ - rm -f $$lang.old.po; \ + result="`$(MSGMERGE) -o $$tmpdir/$$lang.new.po $$lang`"; \ + if $$result; then \ + if cmp $(srcdir)/$$lang.po $$tmpdir/$$lang.new.po >/dev/null 2>&1; then \ + rm -f $$tmpdir/$$lang.new.po; \ + else \ + if mv -f $$tmpdir/$$lang.new.po $$lang.po; then \ + :; \ + else \ + echo "msgmerge for $$lang.po failed: cannot move $$tmpdir/$$lang.new.po to $$lang.po" 1>&2; \ + rm -f $$tmpdir/$$lang.new.po; \ + exit 1; \ + fi; \ + fi; \ else \ echo "msgmerge for $$cat failed!"; \ - rm -f $$lang.po; \ - mv $$lang.old.po $$lang.po; \ + rm -f $$tmpdir/$$lang.new.po; \ fi; \ done -.po: Makefile - $(MAKE) $(PACKAGE).pot; - PATH=`pwd`/../src:$$PATH; \ - echo; printf "$*: "; \ - if $(MSGMERGE) $*; then \ - rm -f $*.old.po; \ - else \ - echo "msgmerge for * failed!"; \ - mv $*.old.po $*.po; \ - fi; \ - msgfmt --statistics $*.po; echo; - - # POTFILES is created from POTFILES.in by stripping comments, empty lines # and Intltool tags (enclosed in square brackets), and appending a full # relative path to them diff -uraN gimp-2.2.4/po-plug-ins/ms.gmo gimp-2.2.5/po-plug-ins/ms.gmo --- gimp-2.2.4/po-plug-ins/ms.gmo 2005-02-22 23:12:44.000000000 +0100 +++ gimp-2.2.5/po-plug-ins/ms.gmo 2005-04-09 23:09:31.000000000 +0200 @@ -278,7 +278,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: 2005-02-22 23:04+0100 +POT-Creation-Date: 2005-04-09 21:56+0200 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.4/po-plug-ins/ms.po gimp-2.2.5/po-plug-ins/ms.po --- gimp-2.2.4/po-plug-ins/ms.po 2005-02-22 23:12:33.000000000 +0100 +++ gimp-2.2.5/po-plug-ins/ms.po 2005-04-09 23:09:19.000000000 +0200 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: Gimp 1.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-02-22 23:04+0100\n" +"POT-Creation-Date: 2005-04-09 21:56+0200\n" "PO-Revision-Date: 2003-11-07 16:26+0800\n" "Last-Translator: MIMOS Open Source Development Group \n" "Language-Team: Projek Gabai \n" @@ -384,7 +384,7 @@ #: ../plug-ins/common/pat.c:433 ../plug-ins/common/pcx.c:585 #: ../plug-ins/common/pix.c:515 ../plug-ins/common/png.c:1178 #: ../plug-ins/common/pnm.c:809 ../plug-ins/common/postscript.c:1123 -#: ../plug-ins/common/psd_save.c:1588 ../plug-ins/common/raw.c:517 +#: ../plug-ins/common/psd_save.c:1336 ../plug-ins/common/raw.c:517 #: ../plug-ins/common/raw.c:544 ../plug-ins/common/spheredesigner.c:2088 #: ../plug-ins/common/sunras.c:513 ../plug-ins/common/tga.c:1030 #: ../plug-ins/common/tiff.c:1810 ../plug-ins/common/xbm.c:996 @@ -1280,37 +1280,38 @@ #: ../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 +#: ../plug-ins/bmp/bmpread.c:207 ../plug-ins/bmp/bmpread.c:307 +#: ../plug-ins/bmp/bmpread.c:348 #, c-format msgid "'%s' is not a valid BMP file" msgstr "'%s' bukan fail BMP yang sah" #: ../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 +#: ../plug-ins/bmp/bmpread.c:300 ../plug-ins/bmp/bmpread.c:313 +#: ../plug-ins/bmp/bmpread.c:319 #, fuzzy, c-format msgid "Error reading BMP file header from '%s'" msgstr "" "Ralat membaca pengepala fail BMP\n" "daripada '%s'" -#: ../plug-ins/bmp/bmpread.c:442 ../plug-ins/bmp/bmpread.c:477 +#: ../plug-ins/bmp/bmpread.c:450 ../plug-ins/bmp/bmpread.c:485 msgid "Unrecognized or invalid BMP compression format." msgstr "" #. #. * Create the "background" layer to hold the image... #. -#: ../plug-ins/bmp/bmpread.c:482 ../plug-ins/common/CEL.c:357 +#: ../plug-ins/bmp/bmpread.c:490 ../plug-ins/common/CEL.c:357 #: ../plug-ins/common/CEL.c:360 ../plug-ins/common/blinds.c:273 #: ../plug-ins/common/compose.c:625 ../plug-ins/common/decompose.c:595 #: ../plug-ins/common/dicom.c:442 ../plug-ins/common/film.c:946 -#: ../plug-ins/common/gifload.c:865 ../plug-ins/common/jpeg.c:1113 +#: ../plug-ins/common/gifload.c:864 ../plug-ins/common/jpeg.c:1113 #: ../plug-ins/common/jpeg.c:2474 ../plug-ins/common/pcx.c:334 #: ../plug-ins/common/pcx.c:340 ../plug-ins/common/pix.c:374 #: ../plug-ins/common/png.c:808 ../plug-ins/common/pnm.c:517 -#: ../plug-ins/common/psd.c:2173 ../plug-ins/common/raw.c:677 +#: ../plug-ins/common/psd.c:2174 ../plug-ins/common/raw.c:677 #: ../plug-ins/common/smooth_palette.c:257 ../plug-ins/common/sunras.c:925 #: ../plug-ins/common/tga.c:929 ../plug-ins/common/tiff.c:833 #: ../plug-ins/common/tile.c:266 ../plug-ins/common/winclipboard.c:579 @@ -1343,12 +1344,12 @@ #: ../plug-ins/common/jpeg.c:1453 ../plug-ins/common/pat.c:438 #: ../plug-ins/common/pcx.c:545 ../plug-ins/common/pix.c:521 #: ../plug-ins/common/png.c:1185 ../plug-ins/common/pnm.c:814 -#: ../plug-ins/common/postscript.c:1128 ../plug-ins/common/psd_save.c:1593 +#: ../plug-ins/common/postscript.c:1128 ../plug-ins/common/psd_save.c:1341 #: ../plug-ins/common/sunras.c:518 ../plug-ins/common/tga.c:1035 #: ../plug-ins/common/tiff.c:1815 ../plug-ins/common/xbm.c:1001 #: ../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:957 +#: ../plug-ins/sgi/sgi.c:545 ../plug-ins/winicon/icosave.c:977 #: ../plug-ins/xjt/xjt.c:1682 #, c-format msgid "Saving '%s'..." @@ -1705,7 +1706,7 @@ msgstr "Warna" #: ../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 +#: ../plug-ins/common/decompose.c:144 ../plug-ins/rcm/rcm_dialog.c:548 msgid "Saturation" msgstr "Ketepuan" @@ -2602,24 +2603,24 @@ msgid "Color to _Alpha..." msgstr "Warna ke Alfa" -#: ../plug-ins/common/colortoalpha.c:181 +#: ../plug-ins/common/colortoalpha.c:187 msgid "Removing color..." msgstr "Mengeluarkan warna..." -#: ../plug-ins/common/colortoalpha.c:377 +#: ../plug-ins/common/colortoalpha.c:380 msgid "Color to Alpha" msgstr "Warna ke Alfa" -#: ../plug-ins/common/colortoalpha.c:402 ../plug-ins/common/mapcolor.c:424 +#: ../plug-ins/common/colortoalpha.c:405 ../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:406 +#: ../plug-ins/common/colortoalpha.c:409 msgid "Color to Alpha Color Picker" msgstr "Warna ke Pemilih Warna Alfa" -#: ../plug-ins/common/colortoalpha.c:420 +#: ../plug-ins/common/colortoalpha.c:423 #, fuzzy msgid "to alpha" msgstr "ke Alfa" @@ -2643,13 +2644,13 @@ msgstr "HSV" #. Gray: Circle: Spinbutton 1 -#: ../plug-ins/common/compose.c:148 ../plug-ins/rcm/rcm_dialog.c:452 +#: ../plug-ins/common/compose.c:148 ../plug-ins/rcm/rcm_dialog.c:459 msgid "Hue:" msgstr "Warna:" #. Gray: Circle: Spinbutton 2 #: ../plug-ins/common/compose.c:149 ../plug-ins/print/gimp_color_window.c:364 -#: ../plug-ins/rcm/rcm_dialog.c:479 +#: ../plug-ins/rcm/rcm_dialog.c:486 msgid "Saturation:" msgstr "Ketepuan:" @@ -3293,16 +3294,16 @@ msgid "Deinterlace..." msgstr "Deinterlace..." -#: ../plug-ins/common/deinterlace.c:315 +#: ../plug-ins/common/deinterlace.c:324 msgid "Deinterlace" msgstr "Deinterlace" -#: ../plug-ins/common/deinterlace.c:340 +#: ../plug-ins/common/deinterlace.c:349 #, fuzzy msgid "Keep o_dd fields" msgstr "Simpan Medan G_anjil" -#: ../plug-ins/common/deinterlace.c:341 +#: ../plug-ins/common/deinterlace.c:350 #, fuzzy msgid "Keep _even fields" msgstr "Simpan Medan _Genap" @@ -3747,7 +3748,7 @@ #. Create selection #: ../plug-ins/common/film.c:1166 ../plug-ins/imagemap/imap_selection.c:400 -#: ../plug-ins/rcm/rcm_dialog.c:158 +#: ../plug-ins/rcm/rcm_dialog.c:165 msgid "Selection" msgstr "Pemilihan" @@ -4327,23 +4328,23 @@ msgid "Non-square pixels. Image might look squashed." msgstr "" -#: ../plug-ins/common/gifload.c:867 +#: ../plug-ins/common/gifload.c:866 #, fuzzy, c-format msgid "Background (%d%s)" msgstr "Latar Belakang (%dms)" -#: ../plug-ins/common/gifload.c:915 ../plug-ins/common/iwarp.c:783 +#: ../plug-ins/common/gifload.c:914 ../plug-ins/common/iwarp.c:783 #: ../plug-ins/common/iwarp.c:817 #, c-format msgid "Frame %d" msgstr "Bingkai %d" -#: ../plug-ins/common/gifload.c:917 +#: ../plug-ins/common/gifload.c:916 #, fuzzy, c-format msgid "Frame %d (%d%s)" msgstr "Bingkai %d (%dms)" -#: ../plug-ins/common/gifload.c:947 +#: ../plug-ins/common/gifload.c:946 #, c-format msgid "" "GIF: Undocumented GIF composite type %d is not handled. Animation might not " @@ -6279,7 +6280,7 @@ msgid "B/W" msgstr "B/W" -#: ../plug-ins/common/postscript.c:3003 ../plug-ins/rcm/rcm_dialog.c:404 +#: ../plug-ins/common/postscript.c:3003 ../plug-ins/rcm/rcm_dialog.c:411 msgid "Gray" msgstr "Kelabu" @@ -6375,18 +6376,18 @@ msgid "Invalid UTF-8 string in PSD file" msgstr "" -#: ../plug-ins/common/psd_save.c:181 +#: ../plug-ins/common/psd_save.c:192 msgid "Photoshop image" msgstr "" -#: ../plug-ins/common/psd_save.c:1564 +#: ../plug-ins/common/psd_save.c:1312 #, c-format msgid "" "Unable to save '%s'. The psd file format does not support images that are " "more than 30000 pixels wide or tall." msgstr "" -#: ../plug-ins/common/psd_save.c:1576 +#: ../plug-ins/common/psd_save.c:1324 #, c-format msgid "" "Unable to save '%s'. The psd file format does not support images with " @@ -12190,89 +12191,89 @@ msgid "Rotating the colormap..." msgstr "Putarkan peta warna..." -#: ../plug-ins/rcm/rcm_dialog.c:114 +#: ../plug-ins/rcm/rcm_dialog.c:119 msgid "Original" msgstr "Asal" -#: ../plug-ins/rcm/rcm_dialog.c:127 +#: ../plug-ins/rcm/rcm_dialog.c:133 msgid "Rotated" msgstr "Terputar" -#: ../plug-ins/rcm/rcm_dialog.c:140 +#: ../plug-ins/rcm/rcm_dialog.c:147 msgid "Continuous update" msgstr "Kemas kini berterusan" -#: ../plug-ins/rcm/rcm_dialog.c:153 +#: ../plug-ins/rcm/rcm_dialog.c:160 msgid "Area:" msgstr "Kawasan:" -#: ../plug-ins/rcm/rcm_dialog.c:157 +#: ../plug-ins/rcm/rcm_dialog.c:164 msgid "Entire Layer" msgstr "Keseluruhan Lapisan" -#: ../plug-ins/rcm/rcm_dialog.c:159 +#: ../plug-ins/rcm/rcm_dialog.c:166 msgid "Context" msgstr "Konteks" #. spinbutton 1 -#: ../plug-ins/rcm/rcm_dialog.c:284 ../plug-ins/rcm/rcm_dialog.c:362 +#: ../plug-ins/rcm/rcm_dialog.c:291 ../plug-ins/rcm/rcm_dialog.c:369 msgid "From" msgstr "Dari" #. spinbutton 2 -#: ../plug-ins/rcm/rcm_dialog.c:310 ../plug-ins/rcm/rcm_dialog.c:363 +#: ../plug-ins/rcm/rcm_dialog.c:317 ../plug-ins/rcm/rcm_dialog.c:370 msgid "To" msgstr "Ke" #. * Gray: Operation-Mode * -#: ../plug-ins/rcm/rcm_dialog.c:499 +#: ../plug-ins/rcm/rcm_dialog.c:506 #, fuzzy msgid "Gray Mode" msgstr "Mod Warna" #. Gray: Operation-Mode: two radio buttons -#: ../plug-ins/rcm/rcm_dialog.c:508 +#: ../plug-ins/rcm/rcm_dialog.c:515 msgid "Treat as this" msgstr "Anggap sebagai ini" -#: ../plug-ins/rcm/rcm_dialog.c:520 +#: ../plug-ins/rcm/rcm_dialog.c:527 msgid "Change to this" msgstr "Ubah kepada ini" #. * Gray: What is gray? * -#: ../plug-ins/rcm/rcm_dialog.c:533 +#: ../plug-ins/rcm/rcm_dialog.c:540 #, fuzzy msgid "Gray Threshold" msgstr "Ambang H_ijau:" #. * Misc: Used unit selection * -#: ../plug-ins/rcm/rcm_dialog.c:572 ../plug-ins/rcm/rcm_dialog.c:676 +#: ../plug-ins/rcm/rcm_dialog.c:579 ../plug-ins/rcm/rcm_dialog.c:683 msgid "Units" msgstr "Unit" #. Misc: Used unit selection: 3 radio buttons -#: ../plug-ins/rcm/rcm_dialog.c:581 +#: ../plug-ins/rcm/rcm_dialog.c:588 msgid "Radians" msgstr "Radian" -#: ../plug-ins/rcm/rcm_dialog.c:593 +#: ../plug-ins/rcm/rcm_dialog.c:600 msgid "Radians/Pi" msgstr "Radian/Pai" -#: ../plug-ins/rcm/rcm_dialog.c:605 +#: ../plug-ins/rcm/rcm_dialog.c:612 msgid "Degrees" msgstr "Darjah" #. Create dialog -#: ../plug-ins/rcm/rcm_dialog.c:638 +#: ../plug-ins/rcm/rcm_dialog.c:645 msgid "Colormap Rotation" msgstr "Putaran Petawarna" -#: ../plug-ins/rcm/rcm_dialog.c:670 +#: ../plug-ins/rcm/rcm_dialog.c:677 msgid "Main Options" msgstr "Opseyn Utama" -#: ../plug-ins/rcm/rcm_dialog.c:673 +#: ../plug-ins/rcm/rcm_dialog.c:680 #, fuzzy msgid "Gray Options" msgstr "Opsyen Am" @@ -12361,27 +12362,27 @@ msgid "Transferring TWAIN data..." msgstr "Memindahkan data TWAIN" -#: ../plug-ins/winicon/icodialog.c:123 +#: ../plug-ins/winicon/icodialog.c:89 msgid "1 bpp, 1-bit alpha, 2-slot palette" msgstr "" -#: ../plug-ins/winicon/icodialog.c:124 +#: ../plug-ins/winicon/icodialog.c:90 msgid "4 bpp, 1-bit alpha, 16-slot palette" msgstr "" -#: ../plug-ins/winicon/icodialog.c:125 +#: ../plug-ins/winicon/icodialog.c:91 msgid "8 bpp, 1-bit alpha, 256-slot palette" msgstr "" -#: ../plug-ins/winicon/icodialog.c:126 +#: ../plug-ins/winicon/icodialog.c:92 msgid "32 bpp, 8-bit alpha, no palette" msgstr "" -#: ../plug-ins/winicon/icodialog.c:151 +#: ../plug-ins/winicon/icodialog.c:117 msgid "GIMP Windows Icon Plugin" msgstr "" -#: ../plug-ins/winicon/icodialog.c:172 +#: ../plug-ins/winicon/icodialog.c:138 #, fuzzy msgid "Icon details" msgstr "Perincian Koleksi" @@ -12391,7 +12392,7 @@ msgid "Icon #%i" msgstr "" -#: ../plug-ins/winicon/icosave.c:943 +#: ../plug-ins/winicon/icosave.c:969 msgid "Windows icons cannot be higher or wider than 255 pixels." msgstr "" diff -uraN gimp-2.2.4/po-plug-ins/nb.gmo gimp-2.2.5/po-plug-ins/nb.gmo --- gimp-2.2.4/po-plug-ins/nb.gmo 2005-02-22 23:12:44.000000000 +0100 +++ gimp-2.2.5/po-plug-ins/nb.gmo 2005-04-09 23:09:31.000000000 +0200 @@ -202,7 +202,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: 2005-02-22 23:04+0100 +POT-Creation-Date: 2005-04-09 21:56+0200 PO-Revision-Date: 2004-11-07 17:28+0100 Last-Translator: Sigurd Gartmann Language-Team: Norwegian diff -uraN gimp-2.2.4/po-plug-ins/nb.po gimp-2.2.5/po-plug-ins/nb.po --- gimp-2.2.4/po-plug-ins/nb.po 2005-02-22 23:12:34.000000000 +0100 +++ gimp-2.2.5/po-plug-ins/nb.po 2005-04-09 23:09:20.000000000 +0200 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: GIMP po-plug-ins HEAD\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-02-22 23:04+0100\n" +"POT-Creation-Date: 2005-04-09 21:56+0200\n" "PO-Revision-Date: 2004-11-07 17:28+0100\n" "Last-Translator: Sigurd Gartmann \n" "Language-Team: Norwegian \n" @@ -381,7 +381,7 @@ #: ../plug-ins/common/pat.c:433 ../plug-ins/common/pcx.c:585 #: ../plug-ins/common/pix.c:515 ../plug-ins/common/png.c:1178 #: ../plug-ins/common/pnm.c:809 ../plug-ins/common/postscript.c:1123 -#: ../plug-ins/common/psd_save.c:1588 ../plug-ins/common/raw.c:517 +#: ../plug-ins/common/psd_save.c:1336 ../plug-ins/common/raw.c:517 #: ../plug-ins/common/raw.c:544 ../plug-ins/common/spheredesigner.c:2088 #: ../plug-ins/common/sunras.c:513 ../plug-ins/common/tga.c:1030 #: ../plug-ins/common/tiff.c:1810 ../plug-ins/common/xbm.c:996 @@ -1257,35 +1257,36 @@ #: ../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 +#: ../plug-ins/bmp/bmpread.c:207 ../plug-ins/bmp/bmpread.c:307 +#: ../plug-ins/bmp/bmpread.c:348 #, c-format msgid "'%s' is not a valid BMP file" msgstr "«%s» er ikke en gyldig punktgrafikkfil" #: ../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 +#: ../plug-ins/bmp/bmpread.c:300 ../plug-ins/bmp/bmpread.c:313 +#: ../plug-ins/bmp/bmpread.c:319 #, c-format msgid "Error reading BMP file header from '%s'" msgstr "Feil ved lesing av punktgrafikkfilhodet fra «%s»" -#: ../plug-ins/bmp/bmpread.c:442 ../plug-ins/bmp/bmpread.c:477 +#: ../plug-ins/bmp/bmpread.c:450 ../plug-ins/bmp/bmpread.c:485 msgid "Unrecognized or invalid BMP compression format." msgstr "" #. #. * Create the "background" layer to hold the image... #. -#: ../plug-ins/bmp/bmpread.c:482 ../plug-ins/common/CEL.c:357 +#: ../plug-ins/bmp/bmpread.c:490 ../plug-ins/common/CEL.c:357 #: ../plug-ins/common/CEL.c:360 ../plug-ins/common/blinds.c:273 #: ../plug-ins/common/compose.c:625 ../plug-ins/common/decompose.c:595 #: ../plug-ins/common/dicom.c:442 ../plug-ins/common/film.c:946 -#: ../plug-ins/common/gifload.c:865 ../plug-ins/common/jpeg.c:1113 +#: ../plug-ins/common/gifload.c:864 ../plug-ins/common/jpeg.c:1113 #: ../plug-ins/common/jpeg.c:2474 ../plug-ins/common/pcx.c:334 #: ../plug-ins/common/pcx.c:340 ../plug-ins/common/pix.c:374 #: ../plug-ins/common/png.c:808 ../plug-ins/common/pnm.c:517 -#: ../plug-ins/common/psd.c:2173 ../plug-ins/common/raw.c:677 +#: ../plug-ins/common/psd.c:2174 ../plug-ins/common/raw.c:677 #: ../plug-ins/common/smooth_palette.c:257 ../plug-ins/common/sunras.c:925 #: ../plug-ins/common/tga.c:929 ../plug-ins/common/tiff.c:833 #: ../plug-ins/common/tile.c:266 ../plug-ins/common/winclipboard.c:579 @@ -1317,12 +1318,12 @@ #: ../plug-ins/common/jpeg.c:1453 ../plug-ins/common/pat.c:438 #: ../plug-ins/common/pcx.c:545 ../plug-ins/common/pix.c:521 #: ../plug-ins/common/png.c:1185 ../plug-ins/common/pnm.c:814 -#: ../plug-ins/common/postscript.c:1128 ../plug-ins/common/psd_save.c:1593 +#: ../plug-ins/common/postscript.c:1128 ../plug-ins/common/psd_save.c:1341 #: ../plug-ins/common/sunras.c:518 ../plug-ins/common/tga.c:1035 #: ../plug-ins/common/tiff.c:1815 ../plug-ins/common/xbm.c:1001 #: ../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:957 +#: ../plug-ins/sgi/sgi.c:545 ../plug-ins/winicon/icosave.c:977 #: ../plug-ins/xjt/xjt.c:1682 #, fuzzy, c-format msgid "Saving '%s'..." @@ -1679,7 +1680,7 @@ msgstr "Glød" #: ../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 +#: ../plug-ins/common/decompose.c:144 ../plug-ins/rcm/rcm_dialog.c:548 msgid "Saturation" msgstr "Metning" @@ -2549,24 +2550,24 @@ msgid "Color to _Alpha..." msgstr "Farge til alpha" -#: ../plug-ins/common/colortoalpha.c:181 +#: ../plug-ins/common/colortoalpha.c:187 msgid "Removing color..." msgstr "Fjerner farge..." -#: ../plug-ins/common/colortoalpha.c:377 +#: ../plug-ins/common/colortoalpha.c:380 msgid "Color to Alpha" msgstr "Farge til alpha" -#: ../plug-ins/common/colortoalpha.c:402 ../plug-ins/common/mapcolor.c:424 +#: ../plug-ins/common/colortoalpha.c:405 ../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:406 +#: ../plug-ins/common/colortoalpha.c:409 msgid "Color to Alpha Color Picker" msgstr "Farge til alpga fargeplukker" -#: ../plug-ins/common/colortoalpha.c:420 +#: ../plug-ins/common/colortoalpha.c:423 #, fuzzy msgid "to alpha" msgstr "til alpha" @@ -2590,13 +2591,13 @@ msgstr "HSV" #. Gray: Circle: Spinbutton 1 -#: ../plug-ins/common/compose.c:148 ../plug-ins/rcm/rcm_dialog.c:452 +#: ../plug-ins/common/compose.c:148 ../plug-ins/rcm/rcm_dialog.c:459 msgid "Hue:" msgstr "Glød:" #. Gray: Circle: Spinbutton 2 #: ../plug-ins/common/compose.c:149 ../plug-ins/print/gimp_color_window.c:364 -#: ../plug-ins/rcm/rcm_dialog.c:479 +#: ../plug-ins/rcm/rcm_dialog.c:486 msgid "Saturation:" msgstr "Metning:" @@ -3242,16 +3243,16 @@ msgid "Deinterlace..." msgstr "Deinterlace..." -#: ../plug-ins/common/deinterlace.c:315 +#: ../plug-ins/common/deinterlace.c:324 msgid "Deinterlace" msgstr "Deinterlace" -#: ../plug-ins/common/deinterlace.c:340 +#: ../plug-ins/common/deinterlace.c:349 #, fuzzy msgid "Keep o_dd fields" msgstr "Behold o_dde felt" -#: ../plug-ins/common/deinterlace.c:341 +#: ../plug-ins/common/deinterlace.c:350 #, fuzzy msgid "Keep _even fields" msgstr "B_ehold like felt" @@ -3694,7 +3695,7 @@ #. Create selection #: ../plug-ins/common/film.c:1166 ../plug-ins/imagemap/imap_selection.c:400 -#: ../plug-ins/rcm/rcm_dialog.c:158 +#: ../plug-ins/rcm/rcm_dialog.c:165 msgid "Selection" msgstr "Valg" @@ -4253,23 +4254,23 @@ msgid "Non-square pixels. Image might look squashed." msgstr "" -#: ../plug-ins/common/gifload.c:867 +#: ../plug-ins/common/gifload.c:866 #, fuzzy, c-format msgid "Background (%d%s)" msgstr "Bakgrunn (%dms)" -#: ../plug-ins/common/gifload.c:915 ../plug-ins/common/iwarp.c:783 +#: ../plug-ins/common/gifload.c:914 ../plug-ins/common/iwarp.c:783 #: ../plug-ins/common/iwarp.c:817 #, c-format msgid "Frame %d" msgstr "Ramme %d" -#: ../plug-ins/common/gifload.c:917 +#: ../plug-ins/common/gifload.c:916 #, fuzzy, c-format msgid "Frame %d (%d%s)" msgstr "Ramme %d (%dms)" -#: ../plug-ins/common/gifload.c:947 +#: ../plug-ins/common/gifload.c:946 #, c-format msgid "" "GIF: Undocumented GIF composite type %d is not handled. Animation might not " @@ -6193,7 +6194,7 @@ msgid "B/W" msgstr "S/HV" -#: ../plug-ins/common/postscript.c:3003 ../plug-ins/rcm/rcm_dialog.c:404 +#: ../plug-ins/common/postscript.c:3003 ../plug-ins/rcm/rcm_dialog.c:411 msgid "Gray" msgstr "Grå" @@ -6286,18 +6287,18 @@ msgid "Invalid UTF-8 string in PSD file" msgstr "Ugyldig «UTF-8»-streng i PSD-fil" -#: ../plug-ins/common/psd_save.c:181 +#: ../plug-ins/common/psd_save.c:192 msgid "Photoshop image" msgstr "" -#: ../plug-ins/common/psd_save.c:1564 +#: ../plug-ins/common/psd_save.c:1312 #, c-format msgid "" "Unable to save '%s'. The psd file format does not support images that are " "more than 30000 pixels wide or tall." msgstr "" -#: ../plug-ins/common/psd_save.c:1576 +#: ../plug-ins/common/psd_save.c:1324 #, c-format msgid "" "Unable to save '%s'. The psd file format does not support images with " @@ -11962,89 +11963,89 @@ msgid "Rotating the colormap..." msgstr "Roterer fargekartet..." -#: ../plug-ins/rcm/rcm_dialog.c:114 +#: ../plug-ins/rcm/rcm_dialog.c:119 msgid "Original" msgstr "Original" -#: ../plug-ins/rcm/rcm_dialog.c:127 +#: ../plug-ins/rcm/rcm_dialog.c:133 msgid "Rotated" msgstr "Rotert" -#: ../plug-ins/rcm/rcm_dialog.c:140 +#: ../plug-ins/rcm/rcm_dialog.c:147 msgid "Continuous update" msgstr "Kontiuerlig oppdatering" -#: ../plug-ins/rcm/rcm_dialog.c:153 +#: ../plug-ins/rcm/rcm_dialog.c:160 msgid "Area:" msgstr "Område:" -#: ../plug-ins/rcm/rcm_dialog.c:157 +#: ../plug-ins/rcm/rcm_dialog.c:164 msgid "Entire Layer" msgstr "Hele laget" -#: ../plug-ins/rcm/rcm_dialog.c:159 +#: ../plug-ins/rcm/rcm_dialog.c:166 msgid "Context" msgstr "Kontekst:" #. spinbutton 1 -#: ../plug-ins/rcm/rcm_dialog.c:284 ../plug-ins/rcm/rcm_dialog.c:362 +#: ../plug-ins/rcm/rcm_dialog.c:291 ../plug-ins/rcm/rcm_dialog.c:369 msgid "From" msgstr "Fra" #. spinbutton 2 -#: ../plug-ins/rcm/rcm_dialog.c:310 ../plug-ins/rcm/rcm_dialog.c:363 +#: ../plug-ins/rcm/rcm_dialog.c:317 ../plug-ins/rcm/rcm_dialog.c:370 msgid "To" msgstr "Til" #. * Gray: Operation-Mode * -#: ../plug-ins/rcm/rcm_dialog.c:499 +#: ../plug-ins/rcm/rcm_dialog.c:506 #, fuzzy msgid "Gray Mode" msgstr "Fargemodus" #. Gray: Operation-Mode: two radio buttons -#: ../plug-ins/rcm/rcm_dialog.c:508 +#: ../plug-ins/rcm/rcm_dialog.c:515 msgid "Treat as this" msgstr "" -#: ../plug-ins/rcm/rcm_dialog.c:520 +#: ../plug-ins/rcm/rcm_dialog.c:527 msgid "Change to this" msgstr "Endre til dette" #. * Gray: What is gray? * -#: ../plug-ins/rcm/rcm_dialog.c:533 +#: ../plug-ins/rcm/rcm_dialog.c:540 #, fuzzy msgid "Gray Threshold" msgstr "Grønn terskel:" #. * Misc: Used unit selection * -#: ../plug-ins/rcm/rcm_dialog.c:572 ../plug-ins/rcm/rcm_dialog.c:676 +#: ../plug-ins/rcm/rcm_dialog.c:579 ../plug-ins/rcm/rcm_dialog.c:683 msgid "Units" msgstr "Enheter" #. Misc: Used unit selection: 3 radio buttons -#: ../plug-ins/rcm/rcm_dialog.c:581 +#: ../plug-ins/rcm/rcm_dialog.c:588 msgid "Radians" msgstr "Radianer" -#: ../plug-ins/rcm/rcm_dialog.c:593 +#: ../plug-ins/rcm/rcm_dialog.c:600 msgid "Radians/Pi" msgstr "Radianer/Pi" -#: ../plug-ins/rcm/rcm_dialog.c:605 +#: ../plug-ins/rcm/rcm_dialog.c:612 msgid "Degrees" msgstr "Grader" #. Create dialog -#: ../plug-ins/rcm/rcm_dialog.c:638 +#: ../plug-ins/rcm/rcm_dialog.c:645 msgid "Colormap Rotation" msgstr "Rotasjon av fargekart" -#: ../plug-ins/rcm/rcm_dialog.c:670 +#: ../plug-ins/rcm/rcm_dialog.c:677 msgid "Main Options" msgstr "Hovedalternativer" -#: ../plug-ins/rcm/rcm_dialog.c:673 +#: ../plug-ins/rcm/rcm_dialog.c:680 #, fuzzy msgid "Gray Options" msgstr "Generelle alternativer" @@ -12129,27 +12130,27 @@ msgid "Transferring TWAIN data..." msgstr "Overfører TWAIN-data..." -#: ../plug-ins/winicon/icodialog.c:123 +#: ../plug-ins/winicon/icodialog.c:89 msgid "1 bpp, 1-bit alpha, 2-slot palette" msgstr "" -#: ../plug-ins/winicon/icodialog.c:124 +#: ../plug-ins/winicon/icodialog.c:90 msgid "4 bpp, 1-bit alpha, 16-slot palette" msgstr "" -#: ../plug-ins/winicon/icodialog.c:125 +#: ../plug-ins/winicon/icodialog.c:91 msgid "8 bpp, 1-bit alpha, 256-slot palette" msgstr "" -#: ../plug-ins/winicon/icodialog.c:126 +#: ../plug-ins/winicon/icodialog.c:92 msgid "32 bpp, 8-bit alpha, no palette" msgstr "" -#: ../plug-ins/winicon/icodialog.c:151 +#: ../plug-ins/winicon/icodialog.c:117 msgid "GIMP Windows Icon Plugin" msgstr "" -#: ../plug-ins/winicon/icodialog.c:172 +#: ../plug-ins/winicon/icodialog.c:138 #, fuzzy msgid "Icon details" msgstr "Detaljer for samling" @@ -12159,7 +12160,7 @@ msgid "Icon #%i" msgstr "" -#: ../plug-ins/winicon/icosave.c:943 +#: ../plug-ins/winicon/icosave.c:969 msgid "Windows icons cannot be higher or wider than 255 pixels." msgstr "" diff -uraN gimp-2.2.4/po-plug-ins/nl.gmo gimp-2.2.5/po-plug-ins/nl.gmo --- gimp-2.2.4/po-plug-ins/nl.gmo 2005-02-22 23:12:44.000000000 +0100 +++ gimp-2.2.5/po-plug-ins/nl.gmo 2005-04-09 23:09:31.000000000 +0200 @@ -368,7 +368,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: 2005-02-22 23:04+0100 +POT-Creation-Date: 2005-04-09 21:56+0200 PO-Revision-Date: 2004-11-21 20:30+0100 Last-Translator: Tino Meinen Language-Team: Dutch diff -uraN gimp-2.2.4/po-plug-ins/nl.po gimp-2.2.5/po-plug-ins/nl.po --- gimp-2.2.4/po-plug-ins/nl.po 2005-02-22 23:12:34.000000000 +0100 +++ gimp-2.2.5/po-plug-ins/nl.po 2005-04-09 23:09:20.000000000 +0200 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: gimp 2.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-02-22 23:04+0100\n" +"POT-Creation-Date: 2005-04-09 21:56+0200\n" "PO-Revision-Date: 2004-11-21 20:30+0100\n" "Last-Translator: Tino Meinen \n" "Language-Team: Dutch \n" @@ -391,7 +391,7 @@ #: ../plug-ins/common/pat.c:433 ../plug-ins/common/pcx.c:585 #: ../plug-ins/common/pix.c:515 ../plug-ins/common/png.c:1178 #: ../plug-ins/common/pnm.c:809 ../plug-ins/common/postscript.c:1123 -#: ../plug-ins/common/psd_save.c:1588 ../plug-ins/common/raw.c:517 +#: ../plug-ins/common/psd_save.c:1336 ../plug-ins/common/raw.c:517 #: ../plug-ins/common/raw.c:544 ../plug-ins/common/spheredesigner.c:2088 #: ../plug-ins/common/sunras.c:513 ../plug-ins/common/tga.c:1030 #: ../plug-ins/common/tiff.c:1810 ../plug-ins/common/xbm.c:996 @@ -1262,7 +1262,8 @@ #: ../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 +#: ../plug-ins/bmp/bmpread.c:207 ../plug-ins/bmp/bmpread.c:307 +#: ../plug-ins/bmp/bmpread.c:348 #, c-format msgid "'%s' is not a valid BMP file" msgstr "'%s' is niet een geldig BMP-bestand" @@ -1270,28 +1271,28 @@ # What is the Dutch translation of header? #: ../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 +#: ../plug-ins/bmp/bmpread.c:300 ../plug-ins/bmp/bmpread.c:313 +#: ../plug-ins/bmp/bmpread.c:319 #, c-format msgid "Error reading BMP file header from '%s'" msgstr "Fout bij het laden van BMP-bestandsheader van '%s'" -#: ../plug-ins/bmp/bmpread.c:442 ../plug-ins/bmp/bmpread.c:477 +#: ../plug-ins/bmp/bmpread.c:450 ../plug-ins/bmp/bmpread.c:485 msgid "Unrecognized or invalid BMP compression format." msgstr "Niet herkend of ongeldig BMP compressieformaat." #. #. * Create the "background" layer to hold the image... #. -#: ../plug-ins/bmp/bmpread.c:482 ../plug-ins/common/CEL.c:357 +#: ../plug-ins/bmp/bmpread.c:490 ../plug-ins/common/CEL.c:357 #: ../plug-ins/common/CEL.c:360 ../plug-ins/common/blinds.c:273 #: ../plug-ins/common/compose.c:625 ../plug-ins/common/decompose.c:595 #: ../plug-ins/common/dicom.c:442 ../plug-ins/common/film.c:946 -#: ../plug-ins/common/gifload.c:865 ../plug-ins/common/jpeg.c:1113 +#: ../plug-ins/common/gifload.c:864 ../plug-ins/common/jpeg.c:1113 #: ../plug-ins/common/jpeg.c:2474 ../plug-ins/common/pcx.c:334 #: ../plug-ins/common/pcx.c:340 ../plug-ins/common/pix.c:374 #: ../plug-ins/common/png.c:808 ../plug-ins/common/pnm.c:517 -#: ../plug-ins/common/psd.c:2173 ../plug-ins/common/raw.c:677 +#: ../plug-ins/common/psd.c:2174 ../plug-ins/common/raw.c:677 #: ../plug-ins/common/smooth_palette.c:257 ../plug-ins/common/sunras.c:925 #: ../plug-ins/common/tga.c:929 ../plug-ins/common/tiff.c:833 #: ../plug-ins/common/tile.c:266 ../plug-ins/common/winclipboard.c:579 @@ -1323,12 +1324,12 @@ #: ../plug-ins/common/jpeg.c:1453 ../plug-ins/common/pat.c:438 #: ../plug-ins/common/pcx.c:545 ../plug-ins/common/pix.c:521 #: ../plug-ins/common/png.c:1185 ../plug-ins/common/pnm.c:814 -#: ../plug-ins/common/postscript.c:1128 ../plug-ins/common/psd_save.c:1593 +#: ../plug-ins/common/postscript.c:1128 ../plug-ins/common/psd_save.c:1341 #: ../plug-ins/common/sunras.c:518 ../plug-ins/common/tga.c:1035 #: ../plug-ins/common/tiff.c:1815 ../plug-ins/common/xbm.c:1001 #: ../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:957 +#: ../plug-ins/sgi/sgi.c:545 ../plug-ins/winicon/icosave.c:977 #: ../plug-ins/xjt/xjt.c:1682 #, c-format msgid "Saving '%s'..." @@ -1701,7 +1702,7 @@ # What is the Dutch translation of the term 'Saturation'? #: ../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 +#: ../plug-ins/common/decompose.c:144 ../plug-ins/rcm/rcm_dialog.c:548 msgid "Saturation" msgstr "Saturation" @@ -2561,24 +2562,24 @@ msgid "Color to _Alpha..." msgstr "Kleur naar alpha" -#: ../plug-ins/common/colortoalpha.c:181 +#: ../plug-ins/common/colortoalpha.c:187 msgid "Removing color..." msgstr "Bezig met het verwijderen van kleur..." -#: ../plug-ins/common/colortoalpha.c:377 +#: ../plug-ins/common/colortoalpha.c:380 msgid "Color to Alpha" msgstr "Kleur naar alpha" -#: ../plug-ins/common/colortoalpha.c:402 ../plug-ins/common/mapcolor.c:424 +#: ../plug-ins/common/colortoalpha.c:405 ../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:406 +#: ../plug-ins/common/colortoalpha.c:409 msgid "Color to Alpha Color Picker" msgstr "Kleur naar alpha kleurkiezer" -#: ../plug-ins/common/colortoalpha.c:420 +#: ../plug-ins/common/colortoalpha.c:423 #, fuzzy msgid "to alpha" msgstr "naar alpha" @@ -2604,14 +2605,14 @@ # What is the Dutch translation of this phrase? #. Gray: Circle: Spinbutton 1 -#: ../plug-ins/common/compose.c:148 ../plug-ins/rcm/rcm_dialog.c:452 +#: ../plug-ins/common/compose.c:148 ../plug-ins/rcm/rcm_dialog.c:459 msgid "Hue:" msgstr "Hue:" # What is the Dutch translation of this phrase? #. Gray: Circle: Spinbutton 2 #: ../plug-ins/common/compose.c:149 ../plug-ins/print/gimp_color_window.c:364 -#: ../plug-ins/rcm/rcm_dialog.c:479 +#: ../plug-ins/rcm/rcm_dialog.c:486 msgid "Saturation:" msgstr "Saturation:" @@ -3272,16 +3273,16 @@ msgid "Deinterlace..." msgstr "Deinterlace..." -#: ../plug-ins/common/deinterlace.c:315 +#: ../plug-ins/common/deinterlace.c:324 msgid "Deinterlace" msgstr "Deinterlace" -#: ../plug-ins/common/deinterlace.c:340 +#: ../plug-ins/common/deinterlace.c:349 #, fuzzy msgid "Keep o_dd fields" msgstr "Behoud oneven velden" -#: ../plug-ins/common/deinterlace.c:341 +#: ../plug-ins/common/deinterlace.c:350 #, fuzzy msgid "Keep _even fields" msgstr "Behoud even velden" @@ -3704,7 +3705,7 @@ #. Create selection #: ../plug-ins/common/film.c:1166 ../plug-ins/imagemap/imap_selection.c:400 -#: ../plug-ins/rcm/rcm_dialog.c:158 +#: ../plug-ins/rcm/rcm_dialog.c:165 msgid "Selection" msgstr "Selectie" @@ -4270,24 +4271,24 @@ msgid "Non-square pixels. Image might look squashed." msgstr "Niet-vierkante pixels. Afbeelding kan vervormd uitzien." -#: ../plug-ins/common/gifload.c:867 +#: ../plug-ins/common/gifload.c:866 #, c-format msgid "Background (%d%s)" msgstr "Achtergrond (%d%s)" # What is the Dutch translation for this phrase? -#: ../plug-ins/common/gifload.c:915 ../plug-ins/common/iwarp.c:783 +#: ../plug-ins/common/gifload.c:914 ../plug-ins/common/iwarp.c:783 #: ../plug-ins/common/iwarp.c:817 #, c-format msgid "Frame %d" msgstr "Frame %d" -#: ../plug-ins/common/gifload.c:917 +#: ../plug-ins/common/gifload.c:916 #, c-format msgid "Frame %d (%d%s)" msgstr "Frame %d (%d%s)" -#: ../plug-ins/common/gifload.c:947 +#: ../plug-ins/common/gifload.c:946 #, c-format msgid "" "GIF: Undocumented GIF composite type %d is not handled. Animation might not " @@ -6177,7 +6178,7 @@ msgid "B/W" msgstr "Z/W" -#: ../plug-ins/common/postscript.c:3003 ../plug-ins/rcm/rcm_dialog.c:404 +#: ../plug-ins/common/postscript.c:3003 ../plug-ins/rcm/rcm_dialog.c:411 msgid "Gray" msgstr "Grijs" @@ -6273,18 +6274,18 @@ msgid "Invalid UTF-8 string in PSD file" msgstr "Ongeldige UTF-8-tekenreeks in PSD-bestand" -#: ../plug-ins/common/psd_save.c:181 +#: ../plug-ins/common/psd_save.c:192 msgid "Photoshop image" msgstr "Photoshop-afbeelding" -#: ../plug-ins/common/psd_save.c:1564 +#: ../plug-ins/common/psd_save.c:1312 #, c-format msgid "" "Unable to save '%s'. The psd file format does not support images that are " "more than 30000 pixels wide or tall." msgstr "" -#: ../plug-ins/common/psd_save.c:1576 +#: ../plug-ins/common/psd_save.c:1324 #, c-format msgid "" "Unable to save '%s'. The psd file format does not support images with " @@ -12119,91 +12120,91 @@ msgid "Rotating the colormap..." msgstr "Bezig met het draaien van de kleurenkaart..." -#: ../plug-ins/rcm/rcm_dialog.c:114 +#: ../plug-ins/rcm/rcm_dialog.c:119 msgid "Original" msgstr "Origineel" -#: ../plug-ins/rcm/rcm_dialog.c:127 +#: ../plug-ins/rcm/rcm_dialog.c:133 msgid "Rotated" msgstr "Gedraaid" -#: ../plug-ins/rcm/rcm_dialog.c:140 +#: ../plug-ins/rcm/rcm_dialog.c:147 msgid "Continuous update" msgstr "Voortdurend bijwerken" -#: ../plug-ins/rcm/rcm_dialog.c:153 +#: ../plug-ins/rcm/rcm_dialog.c:160 msgid "Area:" msgstr "Gebied:" -#: ../plug-ins/rcm/rcm_dialog.c:157 +#: ../plug-ins/rcm/rcm_dialog.c:164 msgid "Entire Layer" msgstr "Volledige laag" -#: ../plug-ins/rcm/rcm_dialog.c:159 +#: ../plug-ins/rcm/rcm_dialog.c:166 msgid "Context" msgstr "Context" #. spinbutton 1 -#: ../plug-ins/rcm/rcm_dialog.c:284 ../plug-ins/rcm/rcm_dialog.c:362 +#: ../plug-ins/rcm/rcm_dialog.c:291 ../plug-ins/rcm/rcm_dialog.c:369 msgid "From" msgstr "Van" #. spinbutton 2 -#: ../plug-ins/rcm/rcm_dialog.c:310 ../plug-ins/rcm/rcm_dialog.c:363 +#: ../plug-ins/rcm/rcm_dialog.c:317 ../plug-ins/rcm/rcm_dialog.c:370 msgid "To" msgstr "Naar" #. * Gray: Operation-Mode * -#: ../plug-ins/rcm/rcm_dialog.c:499 +#: ../plug-ins/rcm/rcm_dialog.c:506 #, fuzzy msgid "Gray Mode" msgstr "Kleurmodus" #. Gray: Operation-Mode: two radio buttons -#: ../plug-ins/rcm/rcm_dialog.c:508 +#: ../plug-ins/rcm/rcm_dialog.c:515 msgid "Treat as this" msgstr "Behandel als dit" -#: ../plug-ins/rcm/rcm_dialog.c:520 +#: ../plug-ins/rcm/rcm_dialog.c:527 msgid "Change to this" msgstr "Verander naar dit" #. * Gray: What is gray? * -#: ../plug-ins/rcm/rcm_dialog.c:533 +#: ../plug-ins/rcm/rcm_dialog.c:540 #, fuzzy msgid "Gray Threshold" msgstr "Groene drempel:" #. * Misc: Used unit selection * -#: ../plug-ins/rcm/rcm_dialog.c:572 ../plug-ins/rcm/rcm_dialog.c:676 +#: ../plug-ins/rcm/rcm_dialog.c:579 ../plug-ins/rcm/rcm_dialog.c:683 msgid "Units" msgstr "Eenheden" # What is a radian? #. Misc: Used unit selection: 3 radio buttons -#: ../plug-ins/rcm/rcm_dialog.c:581 +#: ../plug-ins/rcm/rcm_dialog.c:588 msgid "Radians" msgstr "Radialen" # What is a radian? -#: ../plug-ins/rcm/rcm_dialog.c:593 +#: ../plug-ins/rcm/rcm_dialog.c:600 msgid "Radians/Pi" msgstr "Radialen/Pi" -#: ../plug-ins/rcm/rcm_dialog.c:605 +#: ../plug-ins/rcm/rcm_dialog.c:612 msgid "Degrees" msgstr "Graden" #. Create dialog -#: ../plug-ins/rcm/rcm_dialog.c:638 +#: ../plug-ins/rcm/rcm_dialog.c:645 msgid "Colormap Rotation" msgstr "Kleurenkaartdraaiing" -#: ../plug-ins/rcm/rcm_dialog.c:670 +#: ../plug-ins/rcm/rcm_dialog.c:677 msgid "Main Options" msgstr "Hoofdopties" -#: ../plug-ins/rcm/rcm_dialog.c:673 +#: ../plug-ins/rcm/rcm_dialog.c:680 #, fuzzy msgid "Gray Options" msgstr "Algemene opties" @@ -12292,27 +12293,27 @@ msgid "Transferring TWAIN data..." msgstr "Bezig met overzetten TWAIN-gegevens" -#: ../plug-ins/winicon/icodialog.c:123 +#: ../plug-ins/winicon/icodialog.c:89 msgid "1 bpp, 1-bit alpha, 2-slot palette" msgstr "" -#: ../plug-ins/winicon/icodialog.c:124 +#: ../plug-ins/winicon/icodialog.c:90 msgid "4 bpp, 1-bit alpha, 16-slot palette" msgstr "" -#: ../plug-ins/winicon/icodialog.c:125 +#: ../plug-ins/winicon/icodialog.c:91 msgid "8 bpp, 1-bit alpha, 256-slot palette" msgstr "" -#: ../plug-ins/winicon/icodialog.c:126 +#: ../plug-ins/winicon/icodialog.c:92 msgid "32 bpp, 8-bit alpha, no palette" msgstr "" -#: ../plug-ins/winicon/icodialog.c:151 +#: ../plug-ins/winicon/icodialog.c:117 msgid "GIMP Windows Icon Plugin" msgstr "" -#: ../plug-ins/winicon/icodialog.c:172 +#: ../plug-ins/winicon/icodialog.c:138 #, fuzzy msgid "Icon details" msgstr "Verzamelingsdetails" @@ -12322,7 +12323,7 @@ msgid "Icon #%i" msgstr "" -#: ../plug-ins/winicon/icosave.c:943 +#: ../plug-ins/winicon/icosave.c:969 msgid "Windows icons cannot be higher or wider than 255 pixels." msgstr "" diff -uraN gimp-2.2.4/po-plug-ins/no.gmo gimp-2.2.5/po-plug-ins/no.gmo --- gimp-2.2.4/po-plug-ins/no.gmo 2005-02-22 23:12:44.000000000 +0100 +++ gimp-2.2.5/po-plug-ins/no.gmo 2005-04-09 23:09:31.000000000 +0200 @@ -202,7 +202,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: 2005-02-22 23:04+0100 +POT-Creation-Date: 2005-04-09 21:56+0200 PO-Revision-Date: 2004-11-07 17:28+0100 Last-Translator: Sigurd Gartmann Language-Team: Norwegian diff -uraN gimp-2.2.4/po-plug-ins/no.po gimp-2.2.5/po-plug-ins/no.po --- gimp-2.2.4/po-plug-ins/no.po 2005-02-22 23:12:35.000000000 +0100 +++ gimp-2.2.5/po-plug-ins/no.po 2005-04-09 23:09:21.000000000 +0200 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: GIMP po-plug-ins HEAD\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-02-22 23:04+0100\n" +"POT-Creation-Date: 2005-04-09 21:56+0200\n" "PO-Revision-Date: 2004-11-07 17:28+0100\n" "Last-Translator: Sigurd Gartmann \n" "Language-Team: Norwegian \n" @@ -381,7 +381,7 @@ #: ../plug-ins/common/pat.c:433 ../plug-ins/common/pcx.c:585 #: ../plug-ins/common/pix.c:515 ../plug-ins/common/png.c:1178 #: ../plug-ins/common/pnm.c:809 ../plug-ins/common/postscript.c:1123 -#: ../plug-ins/common/psd_save.c:1588 ../plug-ins/common/raw.c:517 +#: ../plug-ins/common/psd_save.c:1336 ../plug-ins/common/raw.c:517 #: ../plug-ins/common/raw.c:544 ../plug-ins/common/spheredesigner.c:2088 #: ../plug-ins/common/sunras.c:513 ../plug-ins/common/tga.c:1030 #: ../plug-ins/common/tiff.c:1810 ../plug-ins/common/xbm.c:996 @@ -1257,35 +1257,36 @@ #: ../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 +#: ../plug-ins/bmp/bmpread.c:207 ../plug-ins/bmp/bmpread.c:307 +#: ../plug-ins/bmp/bmpread.c:348 #, c-format msgid "'%s' is not a valid BMP file" msgstr "«%s» er ikke en gyldig punktgrafikkfil" #: ../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 +#: ../plug-ins/bmp/bmpread.c:300 ../plug-ins/bmp/bmpread.c:313 +#: ../plug-ins/bmp/bmpread.c:319 #, c-format msgid "Error reading BMP file header from '%s'" msgstr "Feil ved lesing av punktgrafikkfilhodet fra «%s»" -#: ../plug-ins/bmp/bmpread.c:442 ../plug-ins/bmp/bmpread.c:477 +#: ../plug-ins/bmp/bmpread.c:450 ../plug-ins/bmp/bmpread.c:485 msgid "Unrecognized or invalid BMP compression format." msgstr "" #. #. * Create the "background" layer to hold the image... #. -#: ../plug-ins/bmp/bmpread.c:482 ../plug-ins/common/CEL.c:357 +#: ../plug-ins/bmp/bmpread.c:490 ../plug-ins/common/CEL.c:357 #: ../plug-ins/common/CEL.c:360 ../plug-ins/common/blinds.c:273 #: ../plug-ins/common/compose.c:625 ../plug-ins/common/decompose.c:595 #: ../plug-ins/common/dicom.c:442 ../plug-ins/common/film.c:946 -#: ../plug-ins/common/gifload.c:865 ../plug-ins/common/jpeg.c:1113 +#: ../plug-ins/common/gifload.c:864 ../plug-ins/common/jpeg.c:1113 #: ../plug-ins/common/jpeg.c:2474 ../plug-ins/common/pcx.c:334 #: ../plug-ins/common/pcx.c:340 ../plug-ins/common/pix.c:374 #: ../plug-ins/common/png.c:808 ../plug-ins/common/pnm.c:517 -#: ../plug-ins/common/psd.c:2173 ../plug-ins/common/raw.c:677 +#: ../plug-ins/common/psd.c:2174 ../plug-ins/common/raw.c:677 #: ../plug-ins/common/smooth_palette.c:257 ../plug-ins/common/sunras.c:925 #: ../plug-ins/common/tga.c:929 ../plug-ins/common/tiff.c:833 #: ../plug-ins/common/tile.c:266 ../plug-ins/common/winclipboard.c:579 @@ -1317,12 +1318,12 @@ #: ../plug-ins/common/jpeg.c:1453 ../plug-ins/common/pat.c:438 #: ../plug-ins/common/pcx.c:545 ../plug-ins/common/pix.c:521 #: ../plug-ins/common/png.c:1185 ../plug-ins/common/pnm.c:814 -#: ../plug-ins/common/postscript.c:1128 ../plug-ins/common/psd_save.c:1593 +#: ../plug-ins/common/postscript.c:1128 ../plug-ins/common/psd_save.c:1341 #: ../plug-ins/common/sunras.c:518 ../plug-ins/common/tga.c:1035 #: ../plug-ins/common/tiff.c:1815 ../plug-ins/common/xbm.c:1001 #: ../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:957 +#: ../plug-ins/sgi/sgi.c:545 ../plug-ins/winicon/icosave.c:977 #: ../plug-ins/xjt/xjt.c:1682 #, fuzzy, c-format msgid "Saving '%s'..." @@ -1679,7 +1680,7 @@ msgstr "Glød" #: ../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 +#: ../plug-ins/common/decompose.c:144 ../plug-ins/rcm/rcm_dialog.c:548 msgid "Saturation" msgstr "Metning" @@ -2549,24 +2550,24 @@ msgid "Color to _Alpha..." msgstr "Farge til alpha" -#: ../plug-ins/common/colortoalpha.c:181 +#: ../plug-ins/common/colortoalpha.c:187 msgid "Removing color..." msgstr "Fjerner farge..." -#: ../plug-ins/common/colortoalpha.c:377 +#: ../plug-ins/common/colortoalpha.c:380 msgid "Color to Alpha" msgstr "Farge til alpha" -#: ../plug-ins/common/colortoalpha.c:402 ../plug-ins/common/mapcolor.c:424 +#: ../plug-ins/common/colortoalpha.c:405 ../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:406 +#: ../plug-ins/common/colortoalpha.c:409 msgid "Color to Alpha Color Picker" msgstr "Farge til alpga fargeplukker" -#: ../plug-ins/common/colortoalpha.c:420 +#: ../plug-ins/common/colortoalpha.c:423 #, fuzzy msgid "to alpha" msgstr "til alpha" @@ -2590,13 +2591,13 @@ msgstr "HSV" #. Gray: Circle: Spinbutton 1 -#: ../plug-ins/common/compose.c:148 ../plug-ins/rcm/rcm_dialog.c:452 +#: ../plug-ins/common/compose.c:148 ../plug-ins/rcm/rcm_dialog.c:459 msgid "Hue:" msgstr "Glød:" #. Gray: Circle: Spinbutton 2 #: ../plug-ins/common/compose.c:149 ../plug-ins/print/gimp_color_window.c:364 -#: ../plug-ins/rcm/rcm_dialog.c:479 +#: ../plug-ins/rcm/rcm_dialog.c:486 msgid "Saturation:" msgstr "Metning:" @@ -3242,16 +3243,16 @@ msgid "Deinterlace..." msgstr "Deinterlace..." -#: ../plug-ins/common/deinterlace.c:315 +#: ../plug-ins/common/deinterlace.c:324 msgid "Deinterlace" msgstr "Deinterlace" -#: ../plug-ins/common/deinterlace.c:340 +#: ../plug-ins/common/deinterlace.c:349 #, fuzzy msgid "Keep o_dd fields" msgstr "Behold o_dde felt" -#: ../plug-ins/common/deinterlace.c:341 +#: ../plug-ins/common/deinterlace.c:350 #, fuzzy msgid "Keep _even fields" msgstr "B_ehold like felt" @@ -3694,7 +3695,7 @@ #. Create selection #: ../plug-ins/common/film.c:1166 ../plug-ins/imagemap/imap_selection.c:400 -#: ../plug-ins/rcm/rcm_dialog.c:158 +#: ../plug-ins/rcm/rcm_dialog.c:165 msgid "Selection" msgstr "Valg" @@ -4253,23 +4254,23 @@ msgid "Non-square pixels. Image might look squashed." msgstr "" -#: ../plug-ins/common/gifload.c:867 +#: ../plug-ins/common/gifload.c:866 #, fuzzy, c-format msgid "Background (%d%s)" msgstr "Bakgrunn (%dms)" -#: ../plug-ins/common/gifload.c:915 ../plug-ins/common/iwarp.c:783 +#: ../plug-ins/common/gifload.c:914 ../plug-ins/common/iwarp.c:783 #: ../plug-ins/common/iwarp.c:817 #, c-format msgid "Frame %d" msgstr "Ramme %d" -#: ../plug-ins/common/gifload.c:917 +#: ../plug-ins/common/gifload.c:916 #, fuzzy, c-format msgid "Frame %d (%d%s)" msgstr "Ramme %d (%dms)" -#: ../plug-ins/common/gifload.c:947 +#: ../plug-ins/common/gifload.c:946 #, c-format msgid "" "GIF: Undocumented GIF composite type %d is not handled. Animation might not " @@ -6193,7 +6194,7 @@ msgid "B/W" msgstr "S/HV" -#: ../plug-ins/common/postscript.c:3003 ../plug-ins/rcm/rcm_dialog.c:404 +#: ../plug-ins/common/postscript.c:3003 ../plug-ins/rcm/rcm_dialog.c:411 msgid "Gray" msgstr "Grå" @@ -6286,18 +6287,18 @@ msgid "Invalid UTF-8 string in PSD file" msgstr "Ugyldig «UTF-8»-streng i PSD-fil" -#: ../plug-ins/common/psd_save.c:181 +#: ../plug-ins/common/psd_save.c:192 msgid "Photoshop image" msgstr "" -#: ../plug-ins/common/psd_save.c:1564 +#: ../plug-ins/common/psd_save.c:1312 #, c-format msgid "" "Unable to save '%s'. The psd file format does not support images that are " "more than 30000 pixels wide or tall." msgstr "" -#: ../plug-ins/common/psd_save.c:1576 +#: ../plug-ins/common/psd_save.c:1324 #, c-format msgid "" "Unable to save '%s'. The psd file format does not support images with " @@ -11962,89 +11963,89 @@ msgid "Rotating the colormap..." msgstr "Roterer fargekartet..." -#: ../plug-ins/rcm/rcm_dialog.c:114 +#: ../plug-ins/rcm/rcm_dialog.c:119 msgid "Original" msgstr "Original" -#: ../plug-ins/rcm/rcm_dialog.c:127 +#: ../plug-ins/rcm/rcm_dialog.c:133 msgid "Rotated" msgstr "Rotert" -#: ../plug-ins/rcm/rcm_dialog.c:140 +#: ../plug-ins/rcm/rcm_dialog.c:147 msgid "Continuous update" msgstr "Kontiuerlig oppdatering" -#: ../plug-ins/rcm/rcm_dialog.c:153 +#: ../plug-ins/rcm/rcm_dialog.c:160 msgid "Area:" msgstr "Område:" -#: ../plug-ins/rcm/rcm_dialog.c:157 +#: ../plug-ins/rcm/rcm_dialog.c:164 msgid "Entire Layer" msgstr "Hele laget" -#: ../plug-ins/rcm/rcm_dialog.c:159 +#: ../plug-ins/rcm/rcm_dialog.c:166 msgid "Context" msgstr "Kontekst:" #. spinbutton 1 -#: ../plug-ins/rcm/rcm_dialog.c:284 ../plug-ins/rcm/rcm_dialog.c:362 +#: ../plug-ins/rcm/rcm_dialog.c:291 ../plug-ins/rcm/rcm_dialog.c:369 msgid "From" msgstr "Fra" #. spinbutton 2 -#: ../plug-ins/rcm/rcm_dialog.c:310 ../plug-ins/rcm/rcm_dialog.c:363 +#: ../plug-ins/rcm/rcm_dialog.c:317 ../plug-ins/rcm/rcm_dialog.c:370 msgid "To" msgstr "Til" #. * Gray: Operation-Mode * -#: ../plug-ins/rcm/rcm_dialog.c:499 +#: ../plug-ins/rcm/rcm_dialog.c:506 #, fuzzy msgid "Gray Mode" msgstr "Fargemodus" #. Gray: Operation-Mode: two radio buttons -#: ../plug-ins/rcm/rcm_dialog.c:508 +#: ../plug-ins/rcm/rcm_dialog.c:515 msgid "Treat as this" msgstr "" -#: ../plug-ins/rcm/rcm_dialog.c:520 +#: ../plug-ins/rcm/rcm_dialog.c:527 msgid "Change to this" msgstr "Endre til dette" #. * Gray: What is gray? * -#: ../plug-ins/rcm/rcm_dialog.c:533 +#: ../plug-ins/rcm/rcm_dialog.c:540 #, fuzzy msgid "Gray Threshold" msgstr "Grønn terskel:" #. * Misc: Used unit selection * -#: ../plug-ins/rcm/rcm_dialog.c:572 ../plug-ins/rcm/rcm_dialog.c:676 +#: ../plug-ins/rcm/rcm_dialog.c:579 ../plug-ins/rcm/rcm_dialog.c:683 msgid "Units" msgstr "Enheter" #. Misc: Used unit selection: 3 radio buttons -#: ../plug-ins/rcm/rcm_dialog.c:581 +#: ../plug-ins/rcm/rcm_dialog.c:588 msgid "Radians" msgstr "Radianer" -#: ../plug-ins/rcm/rcm_dialog.c:593 +#: ../plug-ins/rcm/rcm_dialog.c:600 msgid "Radians/Pi" msgstr "Radianer/Pi" -#: ../plug-ins/rcm/rcm_dialog.c:605 +#: ../plug-ins/rcm/rcm_dialog.c:612 msgid "Degrees" msgstr "Grader" #. Create dialog -#: ../plug-ins/rcm/rcm_dialog.c:638 +#: ../plug-ins/rcm/rcm_dialog.c:645 msgid "Colormap Rotation" msgstr "Rotasjon av fargekart" -#: ../plug-ins/rcm/rcm_dialog.c:670 +#: ../plug-ins/rcm/rcm_dialog.c:677 msgid "Main Options" msgstr "Hovedalternativer" -#: ../plug-ins/rcm/rcm_dialog.c:673 +#: ../plug-ins/rcm/rcm_dialog.c:680 #, fuzzy msgid "Gray Options" msgstr "Generelle alternativer" @@ -12129,27 +12130,27 @@ msgid "Transferring TWAIN data..." msgstr "Overfører TWAIN-data..." -#: ../plug-ins/winicon/icodialog.c:123 +#: ../plug-ins/winicon/icodialog.c:89 msgid "1 bpp, 1-bit alpha, 2-slot palette" msgstr "" -#: ../plug-ins/winicon/icodialog.c:124 +#: ../plug-ins/winicon/icodialog.c:90 msgid "4 bpp, 1-bit alpha, 16-slot palette" msgstr "" -#: ../plug-ins/winicon/icodialog.c:125 +#: ../plug-ins/winicon/icodialog.c:91 msgid "8 bpp, 1-bit alpha, 256-slot palette" msgstr "" -#: ../plug-ins/winicon/icodialog.c:126 +#: ../plug-ins/winicon/icodialog.c:92 msgid "32 bpp, 8-bit alpha, no palette" msgstr "" -#: ../plug-ins/winicon/icodialog.c:151 +#: ../plug-ins/winicon/icodialog.c:117 msgid "GIMP Windows Icon Plugin" msgstr "" -#: ../plug-ins/winicon/icodialog.c:172 +#: ../plug-ins/winicon/icodialog.c:138 #, fuzzy msgid "Icon details" msgstr "Detaljer for samling" @@ -12159,7 +12160,7 @@ msgid "Icon #%i" msgstr "" -#: ../plug-ins/winicon/icosave.c:943 +#: ../plug-ins/winicon/icosave.c:969 msgid "Windows icons cannot be higher or wider than 255 pixels." msgstr "" diff -uraN gimp-2.2.4/po-plug-ins/pa.gmo gimp-2.2.5/po-plug-ins/pa.gmo --- gimp-2.2.4/po-plug-ins/pa.gmo 2005-02-22 23:12:44.000000000 +0100 +++ gimp-2.2.5/po-plug-ins/pa.gmo 2005-04-09 23:09:31.000000000 +0200 @@ -1,52 +1,86 @@ - -" "1"""# -#"#)#.#4#M# -V#a#i# q# {###<###2#$$$A?$ $$$$$$$$ $$$ -$ -$ -$$% %% %$%*%2%6%=%A%F%J%N% V%h`%h%42&4g&(&)&'&l'*'5'5'('*(R(Y(_(f(m(u(~( (( -((((( -( -((#(# )1)J)<Q)|)' * 3*?*G*P*T*]*m*s*{** **!* ** ** * -+++ +&+)8+/b+#+++ ++,,,6,'R, z, ,, , ,,,,,, , , --%- *-6-<-C-G-L-R-BZ- ------ -\-C$.h. -o.z. ..6. ......../%/$9/%^/$/%/$//00 080Q0 h0<t0%0 0 -0 00 11.131D1 I1IU1 11111112'2F2N2d2m2 r2|222 22222 -22222222 2 3333#3(3,313B3Z3^3c3r3y3 333"3333 4 4 4 4 -*4 54A4 F4P4h4 44 4 44#44 445 5 -55 -"5-5 25<5B5 I5 S5 ]5 g5q5 x555575555 5-6164686>6 C6O6T6r666666 666,6Q6:J77*777777 7777788 8888#8+8.868?8 D8N8U8]8c8j8s8 x888 88888 8888 8 8889 999 9%9,929 89 B9N9 T9`9i9 r9|999 9999 999 9999 9 -9: -:::::':+:1:8:I:O:U:Z:]:e:k:o:x: }: :: -::::O:&<T8<X<<$<!=5= <=HI======= >>1> > ->> p?i}??@ @ @F@A A A #A-ADAHAXAmAA A A AAA AA B B'B+B0B4B8BHB[BpC}D}EMEJEJFeF]^GzGz7H*H_H =I JI TI ^I hI rI IIIIIII J1J!EJgJJzJGJ3 K AKNKK`L2M -LMWM kMxM"M M MM MM" NB,NoNN NN"NNN OO).OXXOTO\PtcPP9P )Q 6Q CQdPQ[QR)R+DRpRRDRRSS$S 4S >SLSfSwSS S -SS S -S SST T -TTTTTUPV`V }VVVV EWRWVWfWjWoWWW.WVWV)XVXVXV.YVY%Y)Z ,ZE9ZCZUZ[5[\[ \'\)C\/m\\3\ \/\ &]0]P]!^?^&S^'z^ ^^B^B _BO__#_ ___ ` `` `2`6` F` -S`^`n`~```````a"a&a+a Ca Ma Za)daIa a -a0ab,;bhb,~b=blbVc fcDtcc cccdd/dBdNbdYd& e2e#He/le e^e -f f6fQfdftf ff ff f ffgg.g BgOgeg0xggug/hBh [hhh~zh h -i ii(i >iQKi=i iii-i #j0jJj]jZwjjyrk6kT#l xl l lll llllllllll l l mm(mBmGm Zm -gm rm mm mm mmm m%n 'n4nDn Wn -anlnnn nnn nnnnnoo o&o?oVoooooo -o oo o o -pp .p 8pFp\p up ppp pp ppp pp q q)q Eq Rq _q lqyq q qqq qq qq q r rk _8Im(x:ZdM4{ ta,dR=r\Q;71Pce: < clg#%XAy.j!YoHT!@{+;/Af$t6 0}UI^o._9kKPE@N bJ5wO3b=}FVW4) -*$Gj~q`<)[LeBQz6|YLCypws|x -HDp->m~iSl,Gs'DBvF?K"3 10W2M]^T/ZE\gaN2i?+ hfur%&'#`> q9unhJ*R&z"]7V(8UO[CXS-n5v Rows of '%s' is corrupt. Line %d Option section incorrect'%s' is not a FractalExplorer file(None)A_boutA_llAboutAdd FractalExplorer PathAdditionAl_ternateAll JNGAll PNGAll blackAll whiteAlpha:Ambient:Amount of original color to show where no direct light fallsAmount:Angle:Antialiasing quality. Higher is better, but slowerApplyApply active gradient to final imageAre you sure you want to delete "%s" from the list and from disk?Area SettingsArea:ArrowAs specified aboveAsciiAut_hor:Author:AutoAutomaticB/WBack:Barnsley 1Barnsley 2Barnsley 3Black:BlueBlue:BorderBorder SizeBot_hBottom:BoxBrowseCMYCMYKCX:CY:C_ameraC_ylinderChange 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 delimitationChange to thisChoose Fractal by double-clicking on itCircleClearClosedCo_lorCo_lorsCol_umn:ColorColor DensityColor FunctionColor ModeColoringCommand:ControlsCopyCopying...Copyright:CosineCould not open '%s' for reading: %sCould not open '%s' for writing: %sCould not write '%s': %sCreateCreate 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 lineCu_rve:Current:CutCylinderCylinder lengthDate:DefaultDegreesDeleteDelete AreaDelete FractalDelete currently selected fractalDescription:Diffuse:DirectionDirection VectorDirectionalDirectionsEdgesEditEdit ObjectEdit fractal nameEnable/disable bump-mapping (image depth)Enable/disable environment-mapping (reflection)Enable/disable high quality previewEnable/disable real time preview of changesEntire LayerEnvironment image to useF_ileFeatherFileFile '%s' is corrupt. -Line %d Option section incorrectFile '%s' is not a FractalExplorer fileFilename:Filename: %sFractal ParametersFractal TypeFractal name:FractalExplorer GradientFrame %dFromFrom:Front:GEE-SLIMEGIF OptionsGIF WarningGeneral OptionsGrabGrab _AfterGreenGreen:HSVH_ueH_ue:Height:Higher values makes the object reflect more light (appear lighter)Highlight:HueHue:IDITER:I_nteractiveIf 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 automaticallyIm_ageImage SizeInchIntensityIntensity LevelsIntensity of original color when lit by a light sourceInversionJNGJuliaLABLZ77L_ength:LambdaLeft:Light 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 spaceLighting EffectsLighting Effects...LinearLoad Fractal ParametersLoad a fractal from fileLoading Screen Shot...LogarithmicMake destination image transparent where bump height is zeroMake image transparent outside objectMan'o'warMandelbrotMap to Box...Map to Cylinder...Map to:Maximum height for bumpsMoveMy first fractalNameNew FractalNo %s in gimprc: +L|,H;I; `;1j;";; +;; ;; +;; ;< <<1<:<W<h< +w<<<< < <<<<<= ==2(=[=$a==A= ====> +>">*>3>;> @>J>]>o>s>>> > +> +> +> >>>>>>> ?? ?$?,?0?7? G?U?Y?^?b?f?n? ? ? +?h?h +@4s@4@(@)A'0AlXA*A5A5&B\B'kBBBBBBBBBB BB +B +CCC"C+C3CS GSQS XSfSnS rS|SSS +SS +S S +SSSSSSS S TTT %T1T 9T FT RT\T`T +eTpTyT~TTTTTTTTT TTTTUU U#U8U"LUoU +uUUUUUUU UUU U U +UUV (V4V 9VCV[VpV VV VV VV V VVVW +!W,W#=WaWzW WWWWWWWWW WX X +!X,X1X +:XEX JXTXZX aX nX xXX XX XX XXXX X7X-Y 5YBYIYOY VYcY {YYYYYYY Z %Z2Z-DZrZuZ +~Z ZZZZ ZZZ ZZ ZZZ[)[/[3[;[J[ O[[[a[i[[,[Q[: +\E\*Z\\\\\\\\ \\ \ \\] ]]]] %]3] 6]B]H] N][]`]e]h]n]t]y]~]]]]]] ] ]]] ]]]]]]] ^^ ^"^(^ 0^>^D^M^ S^a^r^x^^ ^^^^ ^^ ^^^^^^_ __ _$_ 7_D_I_N_S_[_a_ i_u_}_____ ___ +_ _ ____ ``&`/` 8` F`P` W` a`k`|` +`````` ` ``` ``a a +aa +'a 2a >aJaQa Wada jawaaaa aa aa +aaaaa a + bb +b#b'b/b3b9b@bQbWb]bbbebmbsbwbb b b bb +bbbbbb'd&dTdX*ee$eeeeef#f :fGfH^ff6ff% g1g#Dghgyggg ggg h +hhh >iiKiQijj j jFj!k'k;k Lk Zk hkrk'k#kk,k ll4lNlclxll l#l l l ll m+m +HSj%ô   +5E ]kqv,'Ƶ '4Mm+,ɶ #=N_ s} +ѷ ܷ&*DM[ ٸ + #Cc #Ĺ6 IV q' غ!$Fae  ) ڻ   )3< AMi |  Լ Hp t)aKln[Ru\$!n,o/L}YMFfj.6Av(+|Sc&l:^,nHX(%Wx!z6)bbl+t_TdKa sB5_Nm9~&Nkb\QI.<*0wk=`'$@BSOP3v'# o-iC? 1vX}YV=VD"Z>-W +[M7-s}9XrG*]1^d=q2p?cZ #y[y 4J{DsE3oO"$jJ6>i%!y;UPNp)c0u<Oke{R;5ijCm 5~Y x1E'`4LG>CgM.# +t /U<|L3Ff QgBUT?,@4^I +TG{ A RPI0r7qE]z|gr+QV *faF/x`h2(]Sqe%8"2uW~KezA &wh:H 7dZm@h;89:J_D8\w Columns on each layer Rows of '%s' is corrupt. Line %d Option section incorrect'%s' is not a FractalExplorer file(None)A_boutA_dvancedA_llA_ll tilesA_mount:AbbreviationAboutAd_vancedAdd FractalExplorer PathAdditionAdvanced Filter Pack OptionsAdvanced OptionsAffected RangeAl_ternateAl_ternate tilesAll JNGAll PNGAll blackAll whiteAlpha:Ambient:Amount of original color to show where no direct light fallsAmount:Angle:Animated GIF OptionsAntialiasing quality. Higher is better, but slowerApplyApply active gradient to final imageApplying the Filter Pack...Are you sure you want to delete "%s" from the list and from disk?Area SettingsArea:ArrowAs specified aboveAsciiAt _bottomAt _topAut_hor:Author:AutoAutomaticAutomatic pre_viewAvailable Images:B/WB_lue threshold:Back:Background (%d%s)Background:Barnsley 1Barnsley 2Barnsley 3Basic OptionsBlackBlack and whiteBlack:BlueBlue:BorderBorder SizeBot_hBottom edgeBottom:BoxBrowseBumpm_ap image:C source codeCMYCMYKCX:CY:C_ameraC_reate New ImageC_ylinderCa_rtoon...Cell size:Change 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 delimitationChange to thisChoose Fractal by double-clicking on itCircleClearClear transparentClosedCo_lorCo_lor:Co_lorsCol_umn:ColorColor DensityColor FunctionColor ModeColor fillColor:ColoringCommand:ContextControlsCopyCopy an objectCopy parametersCopy to ClipboardCopying...Copyright:CosineCould not open '%s' for reading: %sCould not open '%s' for writing: %sCould not write '%s': %sCre_ate new imageCreateCreate 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 arcCreate circleCreate ellipseCreate lineCreate new imageCreate reg polygonCreate starCu_rve:Current:Curve TypeCurve for BorderCustom gradientCutCylinderCylinder lengthDarkerDarker:Date:DefaultDegreesDeleteDelete AreaDelete FractalDelete an objectDelete currently selected fractalDepth map:Description:Diffuse:DigitsDimension:DirectionDirection VectorDirectionalDirectional lightDirectionsDisplay as:Drawing Grid...E_nable bump mappingE_nable environment mappingEdge DetectionEdge Detection...EdgesEditEdit ObjectEdit fractal nameEn_vironment image:Enable/disable bump-mapping (image depth)Enable/disable environment-mapping (reflection)Enable/disable high quality previewEnable/disable real time preview of changesEntire LayerEnvironment image to useError in GIMP brush file '%s'Error in GIMP brush pipe file.Error writing output file.FG colorF_ileFactorFeatherFileFile '%s' is corrupt. +Line %d Option section incorrectFile '%s' is not a FractalExplorer fileFilename:Filename: %sFillFilmFlareFXFlipForegroundFractal ParametersFractal TypeFractal name:FractalExplorer GradientFrame %dFrame %d (%d%s)FrequenciesFromFrom ColorFrom:Front:FunctionG-QbistGEE-SLIMEGEE-ZOOMGIF OptionsGIF WarningGIF imageGIMP ExtensionGIMP Plug-InGIMP brushGIMP brush (animated)G_reen threshold:General OptionsGeneral optionsGfigGrabGrab _AfterGradientGradientsGray ModeGray OptionsGray ThresholdGreenGreen:GridGrid color:HSVH_ighlightsH_ueH_ue:Height:High _Quality previewHigher values makes the object reflect more light (appear lighter)Highlight:Highlights:Ho_rizontal base:HorizontalHorizontal ColorHueHue VariationsHue:I don't careIDITER:I_nteractiveIcon detailsIf 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 automaticallyIm_ageImage SelectionImage SizeImage TypesImage _height:InchInitial value:Insertion DateIntensityIntensity LevelsIntensity of original color when lit by a light sourceInternal GIMP procedureInvalid UTF-8 string in brush file '%s'.InversionJNGJuliaLABLZ77L_ength:LambdaLaplaceLarg_e 3x3LeftLeft:Light 1Light 2Light 3Light 4Light 5Light 6Light SettingsLight 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:Line artLinearLoad Fractal ParametersLoad Lighting PresetLoad QBE fileLoad a fractal from fileLoading Screen Shot...LogarithmicMa_ximum height:Make destination image transparent where bump height is zeroMake image transparent outside objectMan'o'warMandelbrotMap to Box...Map to Cylinder...Map to:Max undo:Maximum height for bumpsMedianMor_e opaqueMore Advanced OptionsMore _white (larger value)More blac_k (smaller value)More t_ransparentMoveMove a single pointMove an objectMy first fractalNameNew FractalNo %s in gimprc: You need to add an entry like (%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 +to your %s file.No colorsNo compressionNo lightNoneNormalNumber of ColorsNumber of SegmentsNumber of cells:Number of colors:NumberingO_nly foregroundO_ptionsObject DetailsObject X position in XYZ spaceObject Y position in XYZ spaceObject Z position in XYZ spaceOffset:On Film:One frame per layer (replace)Only b_ackgroundOnly one unique colorOp_tionsOpacity:OpenOpen FileOptionsOriginalOriginal:Ot_herOther optionsOverlayPNGPPD File:PPIP_reviewPage %dPage SetupPages:ParametersPattern fillPhotographPixelsPlanePlug-In BrowserPluralPo_larization:PointPoint lightPolygonPositionPre_viewPreferencesPreviewPreview SizePrinting...Qbist ...RGBRGBAR_adius 2:R_adius:R_edR_ed threshold:RadiansRadius:RandomRanks:RawRe_dRealtime PreviewRecompute preview imageRectangleRedRed:Redo last zoomRedrawRedraw previewReflectivityRendering Fractal...Rescan for FractalsReset parameters to default valuesRightRight edgeRight:Ro_w:RobertsRotat_e:Rotation angle:S_elect Window AfterS_electorS_wapSameSat_urationSatu_rationSaturationSaturation VariationsSaturation fr_equency:Saturation:SaveSave FileSave Fractal ParametersSave Lighting PresetSave active fractal to fileSave as BrushSave as Brush PipeSave as GIFSavedScreen ShotSe_lection OnlySeconds DelaySeconds delaySelectSelect Film ColorSelect Pixels bySelect allSelect an objectSelect folder and rescan collectionSelect lightsource colorSelect:SelectionSet light source colorSettingsSha_dowsShadows:ShowShow Line FrameShow all objectsShow control pointsShow gridShow next objectShow positionSierpinskiSineSingularSinusoidalSizeSize (%):Size:Sizes:Solid colorsSource 1:Source 2:Source channel:Source...Spacing:Specular:SphereSphericalSpiderSpiral Number of TurnsStandardStart offset:Stop when pixel differences are smaller than this valueStretchStretch _HSVStrongStyleSymbolTIFF ChannelT_ransparent backgroundTemporaryTemporary ProcedureThank you for choosing GIMPThe unit's plural form.The unit's singular form.This is not a GIF fileThis tool has no optionsTile _height:Tile _width:Tile source imageTile source image: useful for infinite planesToTo ColorTo _bottomTo _rightTo _topTo l_eftTo:Tool optionsToolsTop:TransparentTransparent backgroundTree ViewTypeType of light source to applyType of object to map toType:URLURL: %sUndo last zoomUnitUnit EditorUnitsUnnamedUnsupported brush formatUntitledUse 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 Invert...Value VariationsValue:Ver_tical base:VerticalVi_deo...VideoVideo PatternVideo/RGB...WarningWarpWeakWhiteWidth:WindowsWork on cop_yX:XBM OptionsXMAX:XMIN:XY position:X_1:X_2:Y:YMAX:YMIN:Y_1:Y_2:YellowYellow:Z:Zoom inZoom out_3x3_Advanced_Algorithm:_Alpha_Angle:_Black level:_Blue_Blue:_Bottom:_Box_Bright:_Brush_Bump Map_Clear_Colorify..._Copy_Depth:_Description:_Dots_Edge..._Edit_Entire Image_Environment Map_File_Film..._Filter Pack..._FlareFX..._Font:_Force_Format:_Fractals_Free_GIF comment:_General_Green_Green:_Grid..._HSL color model_Height:_Help_Hex_Horizontal_Horizontal style:_Horizontal:_Hue_ID:_IIR_Ignore_Inch_Insert_Intensity:_Invert_JPEG_LZW_Light_Lighting Effects..._Link_Loop forever_Lower_MIME_Map type:_Material_Millimeter_Mirror_None_Number of segments:_Parameters_Plug-In Browser_Polygon_Preview_Preview once_Preview!_Print_Print..._Qbist..._RGB color model_RLE_Radius 1:_Rays_Red:_Remove_Remove Backdrop_Rotated_Saturation_Saturation:_Save comment to file_Search:_Show cursor_Size_Size:_Speed:_Strength:_Stroke_Threshold_Threshold:_Tile size:_Tools_Top:_Transparent_Undo_Unit Editor_Update_Upper_Use background color_Value_Value Invert_Value:_Vertical_Vertical style:_Vertical:_View_Warp_Warp..._White_White level:_X offset:_X:_Y offset:_Y:_Yellow_Z:_Zoom_Zoom:a _Single Windowafteralphabluecme-_mailgreenhuek(1-x^p)kx^pk{x(1-x)}^pmillisecondspixels/%aredsaturationthe _Whole Screento alphavalueyellowProject-Id-Version: gimp-plug-ins.gimp-2-2 Report-Msgid-Bugs-To: -POT-Creation-Date: 2005-02-22 23:04+0100 -PO-Revision-Date: 2004-07-20 16:21+0530 -Last-Translator: Amanpreet Singh Alam -Language-Team: Punjabi +POT-Creation-Date: 2005-04-09 21:56+0200 +PO-Revision-Date: 2005-03-09 10:22+0530 +Last-Translator: Amanpreet Singh Alam +Language-Team: Punjabi MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit -X-Generator: KBabel 1.3.1 -ਇਸ ਦੀਆਂ ਕਤਾਰਾਂ'%s' ਨਸ਼ਟ ਹੈ. ਲਾਈਨ %d ਚੋਣ ਹਿੱਸਾ ਗਲਤ ਹੈ'%s' ਇੱਕ ਆਂਸ਼ਿਕ-ਐਕਸਪਲੋਰਰ ਫਾਇਲ ਨਹੀ ਹੈ(ਕੋਈ ਨਹੀ)<ਬਿਨਾਂ ਸਿਰਲੇਖ>ਇਸ ਬਾਰੇਸਭਬਾਰੇਆਂਸ਼ਿਕ-ਐਕਸਪਲੋਰਰ ਰਸਤਾ ਜੋਡ਼ੋਸ਼ਾਮਿਲਬਦਲਵਾਂਸਾਰੇ JNGਸਾਰੇ PNGਸਾਰਾ ਕਾਲਾਸਾਰਾ ਚਿੱਟਾਐਲਫਾ:ਹਰ-ਪਾਸੇ:ਵਿਖਾਉਣ ਲਈ ਵਾਸਤਵਿਕ ਰੰਗ ਦੀ ਮਾਤਰਾ ਜਿੱਥੇ ਕੋਈ ਸਿੱਧੀ ਰੌਸਨੀ ਨਹੀ ਪਾਈ ਗਈਖਾਤਾ:ਕੋਣ:ਉਪਨਾਮ-ਵਿਰੋਧੀ ਵਿਸ਼ੇਸ਼ਤਾ । ਵਧੀਆ ਚੰਗਾ ਹੈ, ਪਰ ਹੌਲੀ ਹੈਲਾਗੂਆਖਰੀ ਚਿੱਤਰ ਉੱਪਰ ਸਰਗਰਮ ਗਰੇਡੀਐਨਟ ਲਾਗੂ ਕਰੋਕੀ ਤੁਸੀ ਯਕੀਨਨ "%s" ਨੂੰ ਸੂਚੀ ਅਤੇ ਡਿਸਕ ਵਿੱਚੋ ਮਿਟਾਉਣਾ ਚਾਹੁੰਦੇ ਹੋ?ਖੇਤਰ ਵਿਵਸਥਾਖੇਤਰ:ਤੀਰਜਿਵੇ ਉੱਪਰ ਨਿਰਧਾਰਿਤ ਕੀਤਾ ਹੈAsciiਲੇਖਕ:ਲੇਖਕ:ਸਵੈਸਵੈ-ਚਾਲਤB/Wਪਿੱਠਃਬਰਨਸਲੇ 1ਬਰਨਸਲੇ 2ਬਰਨਸਲੇ 3ਕਾਲਾ:ਨੀਲਾਨੀਲਾ:ਹਾਸ਼ੀਆਹਾਸ਼ੀਆਂ ਆਕਾਰਦੋਵੇਹੇਠਾਂਃਡੱਬਾਝਲਕCMYCMYKCX:CY:ਕੈਮਰਾਸਿਲੰਡਰCX ਮੁੱਲ ਤਬਦੀਲ ਕਰੋ (ਆਂਸ਼ਿਕ ਦੀਆਂ ਅਗਲੀਆਂ ਤਬਦੀਲੀਆਂ, ਹਰੇਕ ਆਂਸ਼ਿਕ ਨਾਲ ਸਰਗਰਮ ਹੋਣਗੀਆਂ ਪਰ ਮੈਨਡਲਬਰਾਟ ਅਤੇ ਸਾਇਰਪਿੰਸਕੀ)CY ਮੁੱਲ ਤਬਦੀਲ ਕਰੋ (ਆਂਸ਼ਿਕ ਦੀਆਂ ਅਗਲੀਆਂ ਤਬਦੀਲੀਆਂ, ਹਰੇਕ ਆਂਸ਼ਿਕ ਨਾਲ ਸਰਗਰਮ ਹੋਣਗੀਆਂ ਪਰ ਮੈਨਡਲਬਰਾਟ ਅਤੇ ਸਾਇਰਪਿੰਸਕੀ)ਪਹਿਲਾ (ਘੱਟ-ਤੋਂ-ਘੱਟ) x-ਕੁਆਰਡੀਨੇਟ ਨਿਰਧਾਰਨ ਤਬਦੀਲ ਕਰੋਪਹਿਲਾ (ਘੱਟ-ਤੋਂ-ਘੱਟ) y-ਕੁਆਰਡੀਨੇਟ ਨਿਰਧਾਰਨ ਤਬਦੀਲ ਕਰੋਨੀਲਾ ਚੈਨਲ ਦੀ ਤੀਬਰਤਾ ਤਬਦੀਲ ਕਰੋਹਰੇ ਚੈਨਲ ਦੀ ਤੀਬਰਤਾ ਤਬਦੀਲ ਕਰੋਲਾਲ ਚੈਨਲ ਦੀ ਤੀਬਰਤਾ ਤਬਦੀਲ ਕਰੋਮੁਡ਼ ਆਉਣ ਵਾਲਾ ਮੁੱਲ ਤਬਦੀਲ ਕਰੋ । ਜਿੰਨਾ ਵੱਧ ਹੋਵੇਗਾ, ਵਧੇਰੇ ਵਿਸਥਾਰ ਪਤਾ ਲੱਗੇਗਾ, ਜੋ ਕਿ ਜਿਆਦਾ ਸਮਾਂ ਲਵੇਗਾਨਕਸ਼ੇ ਵਿੱਚ ਰੰਗਾਂ ਦੀ ਗਿਣਤੀ ਤਬਦੀਲ ਕਰੋਦੂਜਾ (ਵੱਧ-ਤੋਂ-ਵੱਧ) x-ਕੁਆਰਡੀਨੇਟ ਨਿਰਧਾਰਨ ਤਬਦੀਲ ਕਰੋਦੂਜਾ (ਵੱਧ-ਤੋਂ-ਵੱਧ) y-ਕੁਆਰਡੀਨੇਟ ਨਿਰਧਾਰਨ ਤਬਦੀਲ ਕਰੋਇਸ ਨੂੰ ਤਬਦੀਲ ਕਰੋਆਂਸ਼ਿਕ ਉੱਪਰ ਦੋ ਵਾਰ ਦਬਾ ਕੇ ਇਸ ਨੂੰ ਚੁਣੋਚੱਕਰਸਾਫ਼ਬੰਦਰੰਗਰੰਗਕਾਲਮ:ਰੰਗਰੰਗ ਘਣਤਾਰੰਗ ਫੰਕਸ਼ਨਰੰਗ ਮੋਡਰੰਗਦਾਰਕਮਾਂਡ:ਕੰਟਰੋਲਨਕਲਨਕਲ ਕੀਤੀ ਜਾ ਰਹੀ ਹੈ...ਹੱਕ ਰਾਖਵੇ ਹਨ:ਕੁਸਾਈਨ'%s' ਨੂੰ ਪੜ੍ਹਨ ਲਈ ਖੋਲ ਨਹੀ ਸਕਦਾ: %s'%s' ਨੂੰ ਲਿਖਣ ਲਈ ਖੋਲ ਨਹੀ ਸਕਦਾ: %s'%s' ਨੂੰ ਲਿਖ ਨਹੀ ਸਕਦਾ: %sਬਣਾਓਗਰੇਡੀਐਨਟ ਸੋਧਕ ਵਿੱਚੋ ਗਰੇਡੀਐਨਟ ਵਰਤ ਕੇ ਰੰਗ-ਨਕਸ਼ਾ ਬਣਾਓਚੋਣਾਂ ਜੋ ਤੁਸੀ ਹੇਠਾਂ ਦਿੱਤੀਆਂ ਹਨ (ਰੰਗ ਘਣਤਾ/ਫੰਕਸ਼ਨ) ਨਾਲ ਰੰਗ-ਨਕਸ਼ਾ ਬਣਾਓ । ਨਤੀਜਾ ਅਸਲ ਚਿੱਤਰ ਵਿੱਚ ਦਿਖੇਗਾਜਦੋਂ ਫਿਲਟਰ ਲਾਗੂ ਕੀਤਾ ਨਵਾਂ ਚਿੱਤਰ ਬਣਾਓਰੇਖਾ ਬਣਾਓਚਾਪ:ਮੌਜੂਦਾ:ਕੱਟੋਸਿਲੰਡਰਸਿੰਲਡਰ ਲੰਬਾਈਮਿਤੀ:ਮੂਲਡਿਗਰੀਆਂਹਟਾਓਮਿਟਾਇਆ ਖੇਤਰਆਂਸ਼ਿਕ ਮਿਟਾਓਵਰਤਮਾਨ ਚੁਣੇ ਆਂਸ਼ਿਕ ਮਿਟਾਓਵੇਰਵਾ:ਫੈਲਾਉਣਾ:ਦਿਸ਼ਾਦਿਸ਼ਾ ਸੂਚਕਦਿਸ਼ਾ-ਸੰਚਾਲਨਦਿਸ਼ਾਵਾਂਕਿਨਾਰਾਸੋਧਇਕਾਈ ਸੋਧਆਂਸ਼ਿਕ ਨਾਮ ਸੋਧੋਯੋਗ/ਅਯੋਗ ਉਬਾਰ ਨਕਸ਼ਾ (ਚਿੱਤਰ ਡੂੰਘਾਈ)ਯੋਗ/ਅਯੋਗ ਵਾਤਾਵਰਣ ਨਕਸ਼ਾ (ਪਰਾਵਰਤਣ)ਯੋਗ/ਅਯੋਗ ਵਧੀਆ ਵਿਸ਼ੇਸ਼ਤਾ ਵਾਲਾ ਚਿੱਤਰਤਬਦੀਲੀਆਂ ਦੇ ਰੀਅਲ ਟਾਈਮ ਤਸਵੀਰ ਨੂੰ ਯੋਗ/ਅਯੋਗ ਕਰੋਸਾਰੀ ਪਰਤਵਰਾਣ ਲਈ ਵਾਤਾਵਰਣ ਚਿੱਤਰਫਾਇਲ਼ਅੱਗੇਫਾਇਲ਼ਫਾਇਲ '%s' ਨਸ਼ਟ ਹੈ । -ਲਾਈਨ %d ਚੋਣ ਹਿੱਸਾ ਗਲਤ ਹੈਫਾਇਲ '%s' ਆਂਸ਼ਿਕ-ਐਕਸਪਲੋਰਰ ਫਾਇਲ ਨਹੀ ਹੈਫਾਇਲ ਨਾਂ:ਫਾਇਲ ਨਾਂ: %sਆਂਸ਼ਿਕ ਪੈਰਾਮੀਟਰਆਂਸ਼ਿਕ ਕਿਸਮਆਂਸ਼ਿਕ ਨਾਮ:ਆਂਸ਼ਿਕ-ਐਕਸਪਲੋਰਰ ਗਰੇਡੀਐਨਟਫਰੇਮ %dਵੱਲੋਂਵੱਲੋਂ:ਮੁੱਖਃGEE-SLIMEGIF ਚੋਣGIF ਚੇਤਾਵਨੀਆਮ ਚੋਣਪ੍ਰਾਪਤ ਕਰੋਇਸ ਬਾਅਦ ਹਰਾਹਰਾ:HSVਆਭਾਆਭਾ:ਉਚਾਈ:ਵੱਧ ਕੀਮਤ ਆਬਜੈਕਟ ਨੂੰ ਜਿਆਦਾ ਰੌਸ਼ਨੀ ਪਰਾਵਰਤਣ ਕਰਨ ਦੇ ਯੋਗ ਬਣਾਉਦੀ ਹੈ (ਲਾਇਟਰ ਲੱਗਦਾ ਹੈ)ਉਭਾਰੋ:ਆਭਾਆਭਾ:IDITER:ਖਿੱਚਵਾਜੇ ਤੁਸੀ ਇਸ ਚੋਣ ਨੂੰ ਯੋਗ ਕਰਦੇ ਹੋ ਵੱਧ ਰੰਗ ਕੀਮਤ ਘੱਟ ਨਾਲ ਰੁਕ ਜਾਵੇਗੀ ਅਤੇ ਉਲਟਜੇ ਤੁਸੀ ਇਸ ਚੋਣ ਨੂੰ ਯੋਗ ਕਰਦੇ ਹੋ ਤਾਂ ਤਸਵੀਰ ਆਪਣੇ-ਆਪ ਮੁਡ਼ ਉਲੀਕੀ ਜਾਵੇਗੀਚਿੱਤਰਚਿੱਤਰ ਆਕਾਰਇੰਚਤੀਬਰਤਾਤੀਬਰਤਾ ਦਰਜੇਵਾਸਤਵਿਕ ਰੰਗ ਦੀ ਤੀਬਰਤਾ ਜਦੋ ਰੌਸ਼ਨੀ ਸਰੋਤ ਨਾਲ ਰੌਸ਼ਨ ਕੀਤਾਉਲਟਾJNGਜੂਲੀਆLABLZ77ਲੰਬਾਈ:ਲੈਮਬਡਾਖੱਬਾਃਰੌਸ਼ਨੀ ਵਿਵਸਥਾਵਾਂਰੌਸ਼ਨੀ ਸਰੋਤ ਦੀ XYZ ਸਪੇਸ ਵਿੱਚ X ਦਿਸ਼ਾਰੌਸ਼ਨੀ ਸਰੋਤ ਦੀ XYZ ਸਪੇਸ ਵਿੱਚ X ਸਥਿਤੀਰੌਸ਼ਨੀ ਸਰੋਤ ਦੀ XYZ ਸਪੇਸ ਵਿੱਚ Y ਦਿਸ਼ਾਰੌਸ਼ਨੀ ਸਰੋਤ ਦੀ XYZ ਸਪੇਸ ਵਿੱਚ Y ਸਥਿਤੀਰੌਸ਼ਨੀ ਸਰੋਤ ਦੀ XYZ ਸਪੇਸ ਵਿੱਚ Z ਦਿਸ਼ਾਰੌਸ਼ਨੀ ਸਰੋਤ ਦੀ XYZ ਸਪੇਸ ਵਿੱਚ Z ਸਥਿਤੀਰੌਸ਼ਨੀ ਪ੍ਰਭਾਵਰੌਸ਼ਨੀ ਪ੍ਰਭਾਵ....ਰੇਖੀਆਂਸ਼ਿਕ ਪੈਰਾਮੀਟਰਾਂ ਲੋਡ ਕਰੋਫਾਇਲ ਵਿੱਚੋ ਆਂਸ਼ਿਕ ਲੋਡ ਕਰੋਪਰਦੇ ਦੀ ਤਸਵੀਰ ਲੋਡ ਕੀਤੀ ਜਾ ਰਹੀ ਹੈ...ਲਾਗਰਿਥਮਿਕਨਿਯਤ ਚਿੱਤਰ ਨੂੰ ਪਾਰਦਰਸ਼ੀ ਬਣਾਓ ਜਿੱਥੇ ਉਬਾਰ ਉਚਾਈ ਸਿਫਰ ਹੈਆਬਜੈਕਟ ਦੇ ਬਾਹਰ ਚਿੱਤਰ ਪਾਰਦਰਸ਼ੀ ਬਣਾਓMan'o'warਮੈਨਡਲਬਰਾਟਬਕਸੇ ਦੇ ਅਨੁਸਾਰ...ਸਿਲੰਡਰ ਦੇ ਅਨੁਸਾਰ...ਨੂੰ ਮਾਪੋ:ਉਬਾਰ ਲਈ ਅਧਿਕਤਮ ਉਚਾਈਭੇਜੋਮੇਰਾ ਪਹਿਲਾ ਆਂਸ਼ਿਕਨਾਂਨਵਾਂ ਆਂਸ਼ਿਕਜੈਮਪ-rc ਵਿੱਚ ਕੋਈ %s ਨਹੀ: +X-Generator: KBabel 1.9.1 +Plural-Forms: nplurals=2; plural=(n != 1); + ਪ੍ਰਤੀ ਪਰਤ ਕਾਲਮਇਸ ਦੀਆਂ ਕਤਾਰਾਂ'%s' ਨਸ਼ਟ ਹੈ. ਲਾਈਨ %d ਚੋਣ ਹਿੱਸਾ ਗਲਤ ਹੈ'%s' ਇੱਕ ਆਂਸ਼ਿਕ-ਐਕਸਪਲੋਰਰ ਫਾਇਲ ਨਹੀ ਹੈ(ਕੋਈ ਨਹੀ)<ਬਿਨਾਂ ਸਿਰਲੇਖ>ਇਸ ਬਾਰੇਤਕਨੀਕੀ(_d)ਸਭਸਭ ਟਾਇਲਾਂ(_l)ਮਾਤਰਾ(_m):ਛੋਟਾ ਰੂਪਬਾਰੇਤਕਨੀਕੀ(_v)ਆਂਸ਼ਿਕ-ਐਕਸਪਲੋਰਰ ਰਸਤਾ ਜੋਡ਼ੋਸ਼ਾਮਿਲਤਕਨੀਕੀ ਫਿਲਟਰ ਪੈਕ ਚੋਣਤਕਨੀਕੀ ਚੋਣਪ੍ਰਭਾਵਿਤ ਸੀਮਾਬਦਲਵਾਂਬਦਲਵੀਂ ਟਾਇਲ(_t)ਸਾਰੇ JNGਸਾਰੇ PNGਸਾਰਾ ਕਾਲਾਸਾਰਾ ਚਿੱਟਾਐਲਫਾ:ਹਰ-ਪਾਸੇ:ਵਿਖਾਉਣ ਲਈ ਵਾਸਤਵਿਕ ਰੰਗ ਦੀ ਮਾਤਰਾ ਜਿੱਥੇ ਕੋਈ ਸਿੱਧੀ ਰੌਸਨੀ ਨਹੀ ਪਾਈ ਗਈਖਾਤਾ:ਕੋਣ:ਸਜੀਵ GIF ਚੋਣਉਪਨਾਮ-ਵਿਰੋਧੀ ਵਿਸ਼ੇਸ਼ਤਾ । ਵਧੀਆ ਚੰਗਾ ਹੈ, ਪਰ ਹੌਲੀ ਹੈਲਾਗੂਆਖਰੀ ਚਿੱਤਰ ਉੱਪਰ ਸਰਗਰਮ ਗਰੇਡੀਐਨਟ ਲਾਗੂ ਕਰੋਫਿਲਟਰ ਪੈਕ ਲਾਗੂ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ...ਕੀ ਤੁਸੀ ਯਕੀਨਨ "%s" ਨੂੰ ਸੂਚੀ ਅਤੇ ਡਿਸਕ ਵਿੱਚੋ ਮਿਟਾਉਣਾ ਚਾਹੁੰਦੇ ਹੋ?ਖੇਤਰ ਵਿਵਸਥਾਖੇਤਰ:ਤੀਰਜਿਵੇ ਉੱਪਰ ਨਿਰਧਾਰਿਤ ਕੀਤਾ ਹੈAsciiਹੇਠਾਂ(_b)ਉੱਪਰ(_t)ਲੇਖਕ:ਲੇਖਕ:ਸਵੈਸਵੈ-ਚਾਲਤਸਵੈ-ਚਾਲਤ ਦਿੱਖ(_v)ਉਪਲੱਬਧ ਚਿੱਤਰ:B/Wਨੀਲਾ ਥਰਿੱਸ਼ਹੋਲਡ:ਪਿੱਠ:ਪਿੱਠਭੂਮੀ (%d%s)ਪਿੱਠਭੂਮੀ:ਬਰਨਸਲੇ 1ਬਰਨਸਲੇ 2ਬਰਨਸਲੇ 3ਮੂਲ ਚੋਣਕਾਲਾਕਾਲਾ ਤੇ ਚਿੱਟਾਕਾਲਾ:ਨੀਲਾਨੀਲਾ:ਹਾਸ਼ੀਆਹਾਸ਼ੀਆਂ ਆਕਾਰਦੋਵੇ(_h)ਹੇਠਾਂ ਕੋਨਾਹੇਠਾਂ:ਡੱਬਾਝਲਕਉਬਾਰ-ਨਕਸ਼ਾ ਚਿੱਤਰ(_a):C ਸਰੋਤ ਕੋਡCMYCMYKCX:CY:ਕੈਮਰਾਨਵਾਂ ਚਿੱਤਰ ਬਣਾਓ(_r)ਸਿਲੰਡਰਕਾਰਟੂਨ(_r)...ਸੈਲ ਆਕਾਰ:CX ਮੁੱਲ ਤਬਦੀਲ ਕਰੋ (ਆਂਸ਼ਿਕ ਦੀਆਂ ਅਗਲੀਆਂ ਤਬਦੀਲੀਆਂ, ਹਰੇਕ ਆਂਸ਼ਿਕ ਨਾਲ ਸਰਗਰਮ ਹੋਣਗੀਆਂ ਪਰ ਮੈਨਡਲਬਰਾਟ ਅਤੇ ਸਾਇਰਪਿੰਸਕੀ)CY ਮੁੱਲ ਤਬਦੀਲ ਕਰੋ (ਆਂਸ਼ਿਕ ਦੀਆਂ ਅਗਲੀਆਂ ਤਬਦੀਲੀਆਂ, ਹਰੇਕ ਆਂਸ਼ਿਕ ਨਾਲ ਸਰਗਰਮ ਹੋਣਗੀਆਂ ਪਰ ਮੈਨਡਲਬਰਾਟ ਅਤੇ ਸਾਇਰਪਿੰਸਕੀ)ਪਹਿਲਾ (ਘੱਟ-ਤੋਂ-ਘੱਟ) x-ਕੁਆਰਡੀਨੇਟ ਨਿਰਧਾਰਨ ਤਬਦੀਲ ਕਰੋਪਹਿਲਾ (ਘੱਟ-ਤੋਂ-ਘੱਟ) y-ਕੁਆਰਡੀਨੇਟ ਨਿਰਧਾਰਨ ਤਬਦੀਲ ਕਰੋਨੀਲਾ ਚੈਨਲ ਦੀ ਤੀਬਰਤਾ ਤਬਦੀਲ ਕਰੋਹਰੇ ਚੈਨਲ ਦੀ ਤੀਬਰਤਾ ਤਬਦੀਲ ਕਰੋਲਾਲ ਚੈਨਲ ਦੀ ਤੀਬਰਤਾ ਤਬਦੀਲ ਕਰੋਮੁਡ਼ ਆਉਣ ਵਾਲਾ ਮੁੱਲ ਤਬਦੀਲ ਕਰੋ । ਜਿੰਨਾ ਵੱਧ ਹੋਵੇਗਾ, ਵਧੇਰੇ ਵਿਸਥਾਰ ਪਤਾ ਲੱਗੇਗਾ, ਜੋ ਕਿ ਜਿਆਦਾ ਸਮਾਂ ਲਵੇਗਾਨਕਸ਼ੇ ਵਿੱਚ ਰੰਗਾਂ ਦੀ ਗਿਣਤੀ ਤਬਦੀਲ ਕਰੋਦੂਜਾ (ਵੱਧ-ਤੋਂ-ਵੱਧ) x-ਕੁਆਰਡੀਨੇਟ ਨਿਰਧਾਰਨ ਤਬਦੀਲ ਕਰੋਦੂਜਾ (ਵੱਧ-ਤੋਂ-ਵੱਧ) y-ਕੁਆਰਡੀਨੇਟ ਨਿਰਧਾਰਨ ਤਬਦੀਲ ਕਰੋਇਸ ਨੂੰ ਤਬਦੀਲ ਕਰੋਆਂਸ਼ਿਕ ਉੱਪਰ ਦੋ ਵਾਰ ਦਬਾ ਕੇ ਇਸ ਨੂੰ ਚੁਣੋਚੱਕਰਸਾਫ਼ਪਾਰਦਰਸ਼ੀ ਸਾਫ਼ਬੰਦਰੰਗਰੰਗ(_l):ਰੰਗਕਾਲਮ(_u):ਰੰਗਰੰਗ ਘਣਤਾਰੰਗ ਫੰਕਸ਼ਨਰੰਗ ਮੋਡਰੰਗ ਭਰਨਰੰਗਰੰਗਦਾਰਕਮਾਂਡ:ਪ੍ਰਸੰਗਕੰਟਰੋਲਨਕਲਇਕਾਈ ਨਕਲਨਕਲ ਪੈਰਾਮੀਟਰਕਲਿੱਪਬੋਰਡ ਵਿੱਚ ਨਕਲਨਕਲ ਕੀਤੀ ਜਾ ਰਹੀ ਹੈ...ਹੱਕ ਰਾਖਵੇ ਹਨ:ਕੁਸਾਈਨ'%s' ਨੂੰ ਪੜ੍ਹਨ ਲਈ ਖੋਲ ਨਹੀ ਸਕਦਾ: %s'%s' ਨੂੰ ਲਿਖਣ ਲਈ ਖੋਲ ਨਹੀ ਸਕਦਾ: %s'%s' ਨੂੰ ਲਿਖ ਨਹੀ ਸਕਦਾ: %sਨਵਾਂ ਚਿੱਤਰ ਬਣਾਓ(_a)ਬਣਾਓਗਰੇਡੀਐਨਟ ਸੋਧਕ ਵਿੱਚੋ ਗਰੇਡੀਐਨਟ ਵਰਤ ਕੇ ਰੰਗ-ਨਕਸ਼ਾ ਬਣਾਓਚੋਣਾਂ ਜੋ ਤੁਸੀ ਹੇਠਾਂ ਦਿੱਤੀਆਂ ਹਨ (ਰੰਗ ਘਣਤਾ/ਫੰਕਸ਼ਨ) ਨਾਲ ਰੰਗ-ਨਕਸ਼ਾ ਬਣਾਓ । ਨਤੀਜਾ ਅਸਲ ਚਿੱਤਰ ਵਿੱਚ ਦਿਖੇਗਾਜਦੋਂ ਫਿਲਟਰ ਲਾਗੂ ਕੀਤਾ ਨਵਾਂ ਚਿੱਤਰ ਬਣਾਓਚਾਪ ਬਣਾਓਚੱਕਰ ਬਣਾਓਅੰਡਕਾਰ ਬਣਾਓਰੇਖਾ ਬਣਾਓਨਵਾਂ ਚਿੱਤਰ ਬਣਾਓਨਿਯਮਤ ਬਹੁਭੁਜ ਬਣਾਓਤਾਰਾ ਬਣਾਓਚਾਪ:ਮੌਜੂਦਾ:ਚਾਪ ਕਿਸਮਹਾਸੀਏ ਦੀ ਚਾਪਢਾਲਵਾਂ ਸੋਧਕੱਟੋਸਿਲੰਡਰਸਿੰਲਡਰ ਲੰਬਾਈਗੂੜਾਗੂੜਾ:ਮਿਤੀ:ਮੂਲਡਿਗਰੀਆਂਹਟਾਓਮਿਟਾਇਆ ਖੇਤਰਆਂਸ਼ਿਕ ਮਿਟਾਓਇਕਾਈ ਹਟਾਓਵਰਤਮਾਨ ਚੁਣੇ ਆਂਸ਼ਿਕ ਮਿਟਾਓਡੂੰਘਾਈ ਖਾਕਾ:ਵੇਰਵਾ:ਫੈਲਾਉਣਾ:ਅੰਕਮਾਪ:ਦਿਸ਼ਾਦਿਸ਼ਾ ਸੂਚਕਦਿਸ਼ਾ-ਸੰਚਾਲਨਦਿਸ਼ਾ ਰੌਸ਼ਨੀਦਿਸ਼ਾਵਾਂਵੇਖਾਓ:ਗਰਿੱਡ ਬਣਾਇਆ ਜਾ ਰਿਹਾ ਹੈ...ਉਬਾਰ ਨਕਸ਼ਾ ਯੋਗ(_n)ਵਾਤਾਵਰਣ ਨਕਸ਼ਾ ਯੋਗ(_n)ਕਿਨਾਰਾ ਖੋਜਕਿਨਾਰਾ ਖੋਜ...ਕਿਨਾਰਾਸੋਧਇਕਾਈ ਸੋਧਆਂਸ਼ਿਕ ਨਾਮ ਸੋਧੋਵਾਤਾਵਰਣ ਚਿੱਤਰ(_v):ਯੋਗ/ਅਯੋਗ ਉਬਾਰ ਨਕਸ਼ਾ (ਚਿੱਤਰ ਡੂੰਘਾਈ)ਯੋਗ/ਅਯੋਗ ਵਾਤਾਵਰਣ ਨਕਸ਼ਾ (ਪਰਾਵਰਤਣ)ਯੋਗ/ਅਯੋਗ ਵਧੀਆ ਵਿਸ਼ੇਸ਼ਤਾ ਵਾਲਾ ਚਿੱਤਰਤਬਦੀਲੀਆਂ ਦੇ ਰੀਅਲ ਟਾਈਮ ਤਸਵੀਰ ਨੂੰ ਯੋਗ/ਅਯੋਗ ਕਰੋਸਾਰੀ ਪਰਤਵਰਤਣ ਲਈ ਵਾਤਾਵਰਣ ਚਿੱਤਰਜੈਮਪ ਬੁਰਸ਼ ਫਾਇਲ %s ਵਿੱਚ ਗਲਤੀਜੈਮਪ ਬੁਰਸ਼ ਪਾਇਪ ਫਾਇਲ ਵਿੱਚ ਗਲਤੀ ਹੈ।ਆਉਟਪੁੱਟ ਫਾਇਲ ਲਿਖਣ ਦੌਰਾਨ ਗਲਤੀ ਹੈ।FG ਰੰਗਫਾਇਲ਼ਫੈਕਟਰਅੱਗੇਫਾਇਲ਼ਫਾਇਲ '%s' ਨਸ਼ਟ ਹੈ । +ਲਾਈਨ %d ਚੋਣ ਹਿੱਸਾ ਗਲਤ ਹੈਫਾਇਲ '%s' ਆਂਸ਼ਿਕ-ਐਕਸਪਲੋਰਰ ਫਾਇਲ ਨਹੀ ਹੈਫਾਇਲ ਨਾਂ:ਫਾਇਲ ਨਾਂ: %sਭਰਨਫਿਲਮFlareFXਝਟਕੋਮੁੱਖ-ਭੂਮੀਆਂਸ਼ਿਕ ਪੈਰਾਮੀਟਰਆਂਸ਼ਿਕ ਕਿਸਮਆਂਸ਼ਿਕ ਨਾਮ:ਆਂਸ਼ਿਕ-ਐਕਸਪਲੋਰਰ ਗਰੇਡੀਐਨਟਫਰੇਮ %dਫਰੇਮ %d (%d%s)ਆਵਿਰਤੀਵੱਲੋਂਰੰਗ ਵਲੋਂਵੱਲੋਂ:ਮੁੱਖ:ਫੰਕਸ਼ਨG-QbistGEE-SLIMEGEE-ZOOMGIF ਚੋਣGIF ਚੇਤਾਵਨੀGIF ਚਿੱਤਰਜੈਮਪ ਵਿਸਥਾਰਜੈਮਪ ਪਲੱਗਿੰਨਜੈਮਪ ਬੁਰਸ਼ਜੈਮਪ ਬੁਰਸ਼ (ਸਜੀਵ)ਹਰਾ ਥਰਿੱਸ਼ਹੋਲਡ:ਆਮ ਚੋਣਆਮ ਚੋਣGfigਪ੍ਰਾਪਤ ਕਰੋਇਸ ਬਾਅਦ ਢਾਂਲੂਢਾਲਵਾਂਸਲੇਟੀ ਮੋਡਸਲੇਟੀ ਚੋਣਸਲੇਟੀ ਥਰਿੱਸ਼ਹੋਲਡ:ਹਰਾਹਰਾ:ਗਰਿੱਡਗਰਿੱਡ ਰੰਗ:HSVਉਭਾਰਨਾ(_i)ਆਭਾ(_u)ਆਭਾ:ਉਚਾਈ:ਉੱਚ ਗੁਣਵੱਤਾ ਦਿੱਖ(_Q)ਵੱਧ ਕੀਮਤ ਆਬਜੈਕਟ ਨੂੰ ਜਿਆਦਾ ਰੌਸ਼ਨੀ ਪਰਾਵਰਤਣ ਕਰਨ ਦੇ ਯੋਗ ਬਣਾਉਦੀ ਹੈ (ਲਾਇਟਰ ਲੱਗਦਾ ਹੈ)ਉਭਾਰੋ:ਉਭਰਵਾਂ:ਖਿਤਿਜੀ ਅਧਾਰ(_r):ਖਿਤਿਜੀਖਿਤਿਜੀ ਰੰਗਆਭਾਆਭਾ ਮੁੱਲਆਭਾ:ਮੈਂ ਨੀਂ ਪਰਵਾਹ ਕਰਦਾIDITER:ਖਿੱਚਵਾਆਈਕਾਨ ਵੇਰਵਾਜੇ ਤੁਸੀ ਇਸ ਚੋਣ ਨੂੰ ਯੋਗ ਕਰਦੇ ਹੋ ਵੱਧ ਰੰਗ ਕੀਮਤ ਘੱਟ ਨਾਲ ਰੁਕ ਜਾਵੇਗੀ ਅਤੇ ਉਲਟਜੇ ਤੁਸੀ ਇਸ ਚੋਣ ਨੂੰ ਯੋਗ ਕਰਦੇ ਹੋ ਤਾਂ ਤਸਵੀਰ ਆਪਣੇ-ਆਪ ਮੁਡ਼ ਉਲੀਕੀ ਜਾਵੇਗੀਚਿੱਤਰਚਿੱਤਰ ਚੋਣਚਿੱਤਰ ਆਕਾਰਚਿੱਤਰ ਕਿਸਮਚਿੱਤਰ ਉਚਾਈ(_h):ਇੰਚਮੁੱਢਲਾ ਮੁੱਲ:ਮਿਤੀ ਸ਼ਾਮਲਤੀਬਰਤਾਤੀਬਰਤਾ ਦਰਜੇਵਾਸਤਵਿਕ ਰੰਗ ਦੀ ਤੀਬਰਤਾ ਜਦੋ ਰੌਸ਼ਨੀ ਸਰੋਤ ਨਾਲ ਰੌਸ਼ਨ ਕੀਤਾਅੰਦਰੂਨੀ ਜੈਮਪ ਤਰੀਕਾਬੁਰਸ਼ ਫਾਇਲ '%s' ਵਿੱਚ ਗਲਤ ਯੂਟੀਐਫ-8 ਸਤਰਉਲਟਾJNGਜੂਲੀਆLABLZ77ਲੰਬਾਈ:ਲੈਮਬਡਾਲੈਪਲਸਵੱਡਾ(_e) 3x3ਖੱਬੇਖੱਬਾ:ਰੌਸ਼ਨੀ 1ਰੌਸ਼ਨੀ 2ਰੌਸ਼ਨੀ 3ਰੌਸ਼ਨੀ 4ਰੌਸ਼ਨੀ 5ਰੌਸ਼ਨੀ 6ਰੌਸ਼ਨੀ ਵਿਵਸਥਾਵਾਂਰੋਸ਼ਨੀ ਤੀਬਰਤਾਰੌਸ਼ਨੀ ਸਰੋਤ ਦੀ XYZ ਸਪੇਸ ਵਿੱਚ X ਦਿਸ਼ਾਰੌਸ਼ਨੀ ਸਰੋਤ ਦੀ XYZ ਸਪੇਸ ਵਿੱਚ X ਸਥਿਤੀਰੌਸ਼ਨੀ ਸਰੋਤ ਦੀ XYZ ਸਪੇਸ ਵਿੱਚ Y ਦਿਸ਼ਾਰੌਸ਼ਨੀ ਸਰੋਤ ਦੀ XYZ ਸਪੇਸ ਵਿੱਚ Y ਸਥਿਤੀਰੌਸ਼ਨੀ ਸਰੋਤ ਦੀ XYZ ਸਪੇਸ ਵਿੱਚ Z ਦਿਸ਼ਾਰੌਸ਼ਨੀ ਸਰੋਤ ਦੀ XYZ ਸਪੇਸ ਵਿੱਚ Z ਸਥਿਤੀਹਲਕਾਹਲਕਾ:ਰੌਸ਼ਨੀ ਪ੍ਰਭਾਵਰੌਸ਼ਨੀ ਪ੍ਰਭਾਵ....ਰੌਸ਼ਨੀ ਪ੍ਰਭਾਵ:ਰੌਸ਼ਨੀ-ਸਰੋਤ ਰੰਗ:ਰੌਸ਼ਨੀ-ਸਰੋਤ ਕਿਸਮ:ਸਤਰ ਕਲਾਕਾਰੀਰੇਖੀਆਂਸ਼ਿਕ ਪੈਰਾਮੀਟਰਾਂ ਲੋਡ ਕਰੋਰੌਸ਼ਨੀ ਪ੍ਰਭਾਵ ਲੋਡQBE ਫਾਇਲ ਲੋਡਫਾਇਲ ਵਿੱਚੋ ਆਂਸ਼ਿਕ ਲੋਡ ਕਰੋਪਰਦੇ ਦੀ ਤਸਵੀਰ ਲੋਡ ਕੀਤੀ ਜਾ ਰਹੀ ਹੈ...ਲਾਗਰਿਥਮਿਕਅਧਿਕਤਮ ਉਚਾਈ(_x):ਨਿਯਤ ਚਿੱਤਰ ਨੂੰ ਪਾਰਦਰਸ਼ੀ ਬਣਾਓ ਜਿੱਥੇ ਉਬਾਰ ਉਚਾਈ ਸਿਫਰ ਹੈਆਬਜੈਕਟ ਦੇ ਬਾਹਰ ਚਿੱਤਰ ਪਾਰਦਰਸ਼ੀ ਬਣਾਓMan'o'warਮੈਨਡਲਬਰਾਟਬਕਸੇ ਦੇ ਅਨੁਸਾਰ...ਸਿਲੰਡਰ ਦੇ ਅਨੁਸਾਰ...ਨੂੰ ਮਾਪੋ:ਅਧਿਕਤਮ ਵਾਪਸ:ਉਬਾਰ ਲਈ ਅਧਿਕਤਮ ਉਚਾਈਮੱਧਮਾਨਹੋਰ ਧੁੰਦਲਾਪਨ(_e)ਹੋਰ ਤਕਨੀਕੀ ਚੋਣਹੋਰ ਚਿੱਟਾ (ਜਿਆਦਾ ਮੁੱਲ)(_w)ਹੋਰ ਕਾਲਾ (ਜਿਆਦਾ ਮੁੱਲ)(_k)ਹੋਰ ਪਾਰਦਰਸ਼ੀ(_r)ਭੇਜੋਇੱਕ ਬਿੰਦੂ ਏਧਰ-ਓਧਰਇਕਾਈ ਏਧਰ-ਓਧਰਮੇਰਾ ਪਹਿਲਾ ਆਂਸ਼ਿਕਨਾਂਨਵਾਂ ਆਂਸ਼ਿਕਜੈਮਪ-rc ਵਿੱਚ ਕੋਈ %s ਨਹੀ: ਤੁਹਾਨੂੰ ਇੱਕ (%s "%s") ਵਰਗੀ ਇੰਦਰਾਜ -ਆਪਣੀ ਫਾਇਲ %s ਵਿੱਚ ਜੋਡ਼ਨੀ ਪਵੇਗੀ ।ਕੋਈ ਰੰਗ ਨਹੀਕੋਈ ਨਹੀਰੰਗਾਂ ਦੀ ਗਿਣਤੀਰੰਗਾਂ ਦੀ ਗਿਣਤੀ:ਚੋਣਇਕਾਈ ਵੇਰਵਾXYZ ਸਪੇਸ ਵਿੱਚ ਆਬਜੈਕਟ X ਸਥਿਤੀXYZ ਸਪੇਸ ਵਿੱਚ ਆਬਜੈਕਟ Y ਸਥਿਤੀXYZ ਸਪੇਸ ਵਿੱਚ ਆਬਜੈਕਟ Z ਸਥਿਤੀਅੰਤਰਲੰਬ :ਇੱਕ ਵੱਖਰਾ ਰੰਗਚੋਣਖੋਲ੍ਹੋਫਾਇਲ ਖੋਲੋਅਸਲੀਹੋਰPNGPPD ਫਾਇਲ਼:PPIਨਮੂਨਾਸਫ਼ਾ %dਸਫ਼ੇ:ਤਸਵੀਰਪਿਕਸਲਸਮਤਲ-ਖੇਤਰਧੁਰੀਕ੍ਰਿਤ:ਬਿੰਦੂਬਹੁਭੁਜਸਥਿਤੀਨਮੂਨਾਮੇਰੀ ਪਸੰਦਤਸਵੀਰRGBRGBAਅਰਧ-ਵਿਆਸ:ਲਾਲਕੱਚਾਲਾਲਰੀਅਲ-ਟਾਈਮ ਤਸਵੀਰਵਾਸਤਵਿਕ ਚਿੱਤਰ ਮੁਡ਼ ਪਤਾ ਲਗਾਓਲਾਲਲਾਲ:ਆਖਰੀ ਜ਼ੂਮ ਮੁਡ਼ ਕਰੋਮੁਡ਼-ਉਲੀਕੋਤਸਵੀਰ ਮੁਡ਼-ਉਲੀਕੋਪਰਾਵਰਤਣਰੱਖਣ ਵਾਲੇ ਆਂਸਿਕ...ਆਂਸ਼ਿਕ ਦੀ ਮੁਡ਼ ਜਾਂਚ ਕਰੋਪੈਰਾਮੀਟਰਾਂ ਦੇ ਮੂਲ ਮੁੱਲ ਮੁਡ਼ ਨਿਰਧਾਰਿਤ ਕਰੋਸੱਜਾਃਕਤਾਰ:ਇਸ ਬਾਅਦ ਝਰੋਖਾ ਦੀ ਤਸਵੀਰ ਲਵੋਚੋਣਕਾਰਉਹੀਸਤ੍ਰਿਪਤਸਤ੍ਰਿਪਤਸਤ੍ਰਿਪਤਸਤ੍ਰਿਪਤ:ਸੰਭਾਲੋਫਾਇਲ ਸੰਭਾਲੋਆਂਸ਼ਿਕ ਪੈਰਾਮੀਟਰਾਂ ਨੂੰ ਸੰਭਾਲੋਸਰਗਰਮ ਆਂਸ਼ਿਕ ਨੂੰ ਫਾਇਲ ਵਿੱਚ ਸੰਭਾਲੋGIF ਵਾਂਗ ਚੇਤਾਵਨੀਸੰਭਾਲਿਆਪਰਦੇ ਦੀ ਤਸਵੀਰਸਕਿੰਟਾਂ ਦਾ ਅੰਤਰਾਲਚੁਣਫੋਲਡਰ ਚੁਣੋ ਅਤੇ ਸਮੂਹ ਦੀ ਮੁਡ਼ ਜਾਂਚ ਕਰੋਚੁਣ:ਚੋਣਰੌਸ਼ਨੀ ਸਰੋਤ ਰੰਗ ਚੁਣੋਵਿਵਸਥਾਵੇਖਾਓਸਾਇਰਪਿੰਸਕੀਸਾਈਨਸਾਈਨੋਸਾਇਡਲਆਕਾਰਆਕਾਰSize (%):ਆਕਾਰ:ਆਕਾਰ:ਸਰੋਤ 1:ਸਰੋਤ 2:ਸਰੋਤ...ਚਮਕੀਲਾ:ਗੋਲਾਗੋਲਾਕਾਰਸਪਾਈਡਰਘੁੰਮਾਉ ਾਂ ਦੀ ਗਿਣਤੀਮਿਆਰੀਜਦੋਂ ਪਿਕਸਲ ਅੰਤਰ ਇਸ ਕੀਮਤ ਤੋਂ ਘੱਟ ਹੋਵੇ ਤਾਂ ਰੁਕੋਖਿੱਚੋਂਸ਼ਕਤੀਸ਼ਾਲੀਸ਼ੈਲੀTIFF ਚੈਨਲਟਾਈਲ ਸਰੋਤ ਚਿੱਤਰ: ਦੂਰਵਰਤੀ ਸਮਤਲ-ਖੇਤਰਾਂ ਲਈ ਵਰਤਣ ਯੋਗਵੱਲਵੱਲ:ਸੰਦਉੱਪਰਃਪਾਰਦਰਸ਼ੀਕਿਸਮਲਾਗੂ ਕਰਨ ਲਈ ਰੌਸ਼ਨੀ ਸਰੋਤ ਦੀ ਕਿਸਮਮਾਪਜ਼ ਲਈ ਆਬਜੈਕਟ ਦੀ ਕਿਸਮਕਿਸਮ:URLURL: %sਆਖਰੀ ਜ਼ੂਮ ਰੱਦ ਕਰੋਇਕਾਈਇਕਾਈ ਸੋਧਕਇਕਾਈਆਂਬਿਨਾਂ ਨਾਂਇਸ ਰੰਗ ਸੰਖੇਪ ਲਈ ਕੁਸਾਈਨ-ਫੰਕਸ਼ਨ ਵਰਤੋਇਸ ਰੰਗ ਚੈਨਲ ਲਈ ਕਿਸੇ ਤਿਕੋਣ-ਮਿਤੀ ਫੰਕਸ਼ਨ ਦੀ ਬਜਾਇ ਰੇਖੀ ਨਕਸ਼ਾ ਵਰਤੋਨਤੀਜੇ ਵਿੱਚ "ਬੰਧਨ" ਹਟਾਉਣ ਲਈ ਲਾਗ-ਲਾਗ ਮਲਾਇਮਤਾ ਵਰਤੋਲਾਗ-ਲਾਗ ਮਲਾਇਮਤਾ ਵਰਤੋਇਸ ਰੰਗ ਸੰਖੇਪ ਲਈ ਸਾਈਨ-ਫੰਕਸ਼ਨ ਵਰਤੋਮੁੱਲਮੁੱਲਮੁੱਲ:ਕਮਜੋਰX:XBM ਚੋਣXMAX:XMIN:X_1:X_2:Y:YMAX:YMIN:Y_1:Y_2:ਪੀਲਾਪੀਲਾ:Z:ਆਕਾਰ ਵੱਡਾਆਕਾਰ ਛੋਟਾ_3x3ਤਕਨੀਕੀਐਲਫਾਕੋਣ:ਨੀਲਾਨੀਲਾ:ਹੇਠਾਂ:ਡੱਬਾਉਬਾਰ ਨਕਸ਼ਾਨਕਲਡੂੰਘਾਈ:ਵੇਰਵਾ:ਸੋਧਵਾਤਾਵਰਣ ਨਕਸ਼ਾਫਾਇਲ਼ਮਜਬੂਰਆਂਸ਼ਿਕਹਰਾਹਰਾ:ਸਹਾਇਤਾਖਿਤਿਜੀਖਿਤਿਜੀ:ਆਭਾ_ID:ਅਣਡਿੱਠਾਇੰਚਸ਼ਾਮਿਲ_JPEG_LZWਰੌਸ਼ਨੀਸੰਬੰਧ_MIMEਮਲਬਾਮਿਲੀਮੀਟਰਕੋਈ ਨਹੀਂਪੈਰਾਮੀਟਰਬਹੁਭੁਜਨਮੂਨਾਨਮੂਨਾ!ਰੇਖਾਵਾਂਲਾਲ:ਹਟਾਓਸਤ੍ਰਿਪਤ:ਆਕਾਰਆਕਾਰ:ਗਤੀ:ਥਰਿੱਸ਼ਹੋਲਡ:ਸੰਦਉੱਪਰ:ਪਾਰਦਰਸ਼ੀਨਵੀਨੀਕਰਨਮੁੱਲਮੁੱਲ:ਲੰਬਕਾਰੀਲੰਬਕਾਰੀ:ਵੇਖੋਲਪੇਟੋਸਫੈਦ_X:_Y:ਪੀਲਾ_Z:ਆਕਾਰਆਕਾਰ:ਇੱਕ ਇੱਕਲਾ ਝਰੋਖਾਬਾਅਦਐਲਫਾਨੀਲਾਸੈਮੀਈ-ਪੱਤਰਹਰਾਆਭਾk(1-x^p)kx^pk{x(1-x)}^pਪਿਕਸਲ/%aਲਾਲਸਤ੍ਰਿਪਤਸਾਰੇ ਪਰਦੇ ਦੀਮੁੱਲਪੀਲਾ \ No newline at end of file +ਆਪਣੀ ਫਾਇਲ %s ਵਿੱਚ ਜੋਡ਼ਨੀ ਪਵੇਗੀ ।ਕੋਈ ਰੰਗ ਨਹੀਕੋਈ ਨਪੀੜਨ ਨਹੀਕੋਈ ਰੌਸ਼ਨੀ ਨਹੀਕੋਈ ਨਹੀਸਧਾਰਨਰੰਗਾਂ ਦੀ ਗਿਣਤੀਖੰਡਾਂ ਦੀ ਗਿਣਤੀਸੈਲਾਂ ਦੀ ਗਿਣਤੀ:ਰੰਗਾਂ ਦੀ ਗਿਣਤੀ:ਗਿਣਤੀਸਿਰਫ ਮੁੱਖਭੂਮੀ(_n)ਚੋਣਇਕਾਈ ਵੇਰਵਾXYZ ਸਪੇਸ ਵਿੱਚ ਆਬਜੈਕਟ X ਸਥਿਤੀXYZ ਸਪੇਸ ਵਿੱਚ ਆਬਜੈਕਟ Y ਸਥਿਤੀXYZ ਸਪੇਸ ਵਿੱਚ ਆਬਜੈਕਟ Z ਸਥਿਤੀਅੰਤਰਲੰਬ :ਫਿਲਮ ਤੋਂ:ਇੱਕ ਫਰੇਮ ਪ੍ਰਤੀ ਪਰਤ (ਤਬਦੀਲਪਿੱਠਭੂਮੀ ਹੀ(_a)ਇੱਕ ਵੱਖਰਾ ਰੰਗਚੋਣਧੁੰਦਲਾਪਨ:ਖੋਲ੍ਹੋਫਾਇਲ ਖੋਲੋਚੋਣਅਸਲੀਅਸਲੀ:ਹੋਰਹੋਰ ਚੋਣਪਰਤ ਫੈਲਾਉPNGPPD ਫਾਇਲ਼:PPIਨਮੂਨਾਸਫ਼ਾ %dਸਫ਼ਾ ਵਿਵਸਥਾਸਫ਼ੇ:ਪੈਰਾਮੀਟਰਤਰਤੀਬ ਭਰੋਤਸਵੀਰਪਿਕਸਲਸਮਤਲ-ਖੇਤਰਪਲੱਗਿੰਨ ਝਲਕਾਰਾਬਹੁਵਚਨਧੁਰੀਕ੍ਰਿਤ:ਬਿੰਦੂਬਿੰਦੂ ਰੌਸ਼ਨੀਬਹੁਭੁਜਸਥਿਤੀਨਮੂਨਾਮੇਰੀ ਪਸੰਦਦਿੱਖਦਿੱਖ ਅਕਾਰਛਾਪਿਆ ਜਾ ਰਿਹਾ ਹੈ...Qbist ...RGBRGBAਅਰਧਵਿਆਸ(_a) 2:ਅਰਧ-ਵਿਆਸ:ਲਾਲਲਾਲ ਥਰਿੱਸ਼ਹੋਲਡ (ਦਹਿਲੀਜ਼):ਰੇਡੀਅਨਅਰਧ-ਵਿਆਸ:ਰਲਵਾਂਰੈਕ:ਕੱਚਾਲਾਲਰੀਅਲ-ਟਾਈਮ ਤਸਵੀਰਵਾਸਤਵਿਕ ਚਿੱਤਰ ਮੁਡ਼ ਪਤਾ ਲਗਾਓਚਤੁਰਭੁਜਲਾਲਲਾਲ:ਆਖਰੀ ਜ਼ੂਮ ਮੁਡ਼ ਕਰੋਮੁਡ਼-ਉਲੀਕੋਤਸਵੀਰ ਮੁਡ਼-ਉਲੀਕੋਪਰਾਵਰਤਣਰੱਖਣ ਵਾਲੇ ਆਂਸਿਕ...ਆਂਸ਼ਿਕ ਦੀ ਮੁਡ਼ ਜਾਂਚ ਕਰੋਪੈਰਾਮੀਟਰਾਂ ਦੇ ਮੂਲ ਮੁੱਲ ਮੁਡ਼ ਨਿਰਧਾਰਿਤ ਕਰੋਸੱਜੇਸੱਜਾ ਕੋਨਾਸੱਜਾ:ਕਤਾਰ(_w):ਰੋਬੀਰਟਸਘੁੰਮਾਓ(_e):ਘੁੰਮਾਓ ਕੋਣ:ਇਸ ਬਾਅਦ ਝਰੋਖਾ ਦੀ ਤਸਵੀਰ ਲਵੋਚੋਣਕਾਰਸਵੈਪ(_w)ਉਹੀਸਤ੍ਰਿਪਤਸਤ੍ਰਿਪਤ(_r)ਸਤ੍ਰਿਪਤਸਤ੍ਰਿਪਤ ਅੰਤਰਸਤ੍ਰਿਪਤ ਆਵਿਰਤੀ(_e):ਸਤ੍ਰਿਪਤ:ਸੰਭਾਲੋਫਾਇਲ ਸੰਭਾਲੋਆਂਸ਼ਿਕ ਪੈਰਾਮੀਟਰਾਂ ਨੂੰ ਸੰਭਾਲੋਰੌਸ਼ਨੀ ਪ੍ਰਭਾਵ ਸੰਭਾਲੋਸਰਗਰਮ ਆਂਸ਼ਿਕ ਨੂੰ ਫਾਇਲ ਵਿੱਚ ਸੰਭਾਲੋਬੁਰਸ਼ ਵਾਂਗ ਸੰਭਾਲੋਬੁਰਸ਼ ਪਾਈਪ ਵਾਂਗ ਸੰਭਾਲੋGIF ਵਾਂਗ ਚੇਤਾਵਨੀਸੰਭਾਲਿਆਪਰਦੇ ਦੀ ਤਸਵੀਰਚੋਣ ਹੀ(_l)ਸਕਿੰਟਾਂ ਦਾ ਅੰਤਰਾਲਸਕਿੰਟ ਅੰਤਰਾਲਚੁਣਫਿਲਮ ਰੰਗ ਚੁਣੋਪਿਕਸਲ ਚੋਣਸਭ ਚੁਣੋਇਕਾਈ ਚੁਣੋਫੋਲਡਰ ਚੁਣੋ ਅਤੇ ਸਮੂਹ ਦੀ ਮੁਡ਼ ਜਾਂਚ ਕਰੋਰੌਸ਼ਨੀ-ਸਰੋਤ ਰੰਗ ਚੁਣੋਚੁਣੋ:ਚੋਣਰੌਸ਼ਨੀ ਸਰੋਤ ਰੰਗ ਚੁਣੋਵਿਵਸਥਾਛਾਂ(_d)ਛਾਂ:ਵੇਖਾਓਰੇਖਾ ਫਰੇਮ ਵੇਖਾਓਸਭ ਇਕਾਈਆਂ ਵੇਖਾਓਕੰਟਰੋਲ ਬਿੰਦੂ ਵੇਖਾਓਗਰਿੱਡ ਵੇਖਾਓਅੱਗੇ ਇਕਾਈ ਵੇਖਾਓਸਥਿਤੀ ਵੇਖਾਓਸਾਇਰਪਿੰਸਕੀਸਾਈਨਇੱਕਵਚਨਸਾਈਨੋਸਾਇਡਲਆਕਾਰਆਕਾਰSize (%):ਆਕਾਰ:ਆਕਾਰ:ਇੱਕ ਰੰਗਸਰੋਤ 1:ਸਰੋਤ 2:ਸਰੋਤ ਚੈਨਲ:ਸਰੋਤ...ਖਾਲ਼ੀ ਥਾਂ:ਚਮਕੀਲਾ:ਗੋਲਾਗੋਲਾਕਾਰਸਪਾਈਡਰਘੁੰਮਾਉ ਾਂ ਦੀ ਗਿਣਤੀਮਿਆਰੀਅੰਤਰਲੰਬ :ਜਦੋਂ ਪਿਕਸਲ ਅੰਤਰ ਇਸ ਕੀਮਤ ਤੋਂ ਘੱਟ ਹੋਵੇ ਤਾਂ ਰੁਕੋਖਿੱਚੋਂ_HSV ਖਿੱਚੋਸ਼ਕਤੀਸ਼ਾਲੀਸ਼ੈਲੀਨਿਸ਼ਾਨTIFF ਚੈਨਲਪਾਰਦਰਸ਼ੀ ਪਿੱਠਭੂਮੀ(_r)ਆਰਜ਼ੀਆਰਜ਼ੀ ਤਰੀਕਾ** ਜੈਮਪ ਚੁਣਨ ਲਈ ਧੰਨਵਾਦ **ਇੱਕਾਈ ਦਾ ਬਹੁਵਚਨ ਹੈ।ਇੱਕਾਈ ਦਾ ਇੱਕਵਚਨ ਹੈ।ਇਹ GIF ਫਾਇਲ ਨਹੀਂ ਹੈਇਹ ਸੰਦ ਲਈ ਕੋਈ ਚੋਣ ਨਹੀਂਟਾਇਲ ਉਚਾਈ(_h):ਟਾਇਲ ਚੌੜਾਈ(_w):ਟਾਈਲ ਸਰੋਤ ਚਿੱਤਰਟਾਈਲ ਸਰੋਤ ਚਿੱਤਰ: ਦੂਰਵਰਤੀ ਸਮਤਲ-ਖੇਤਰਾਂ ਲਈ ਵਰਤਣ ਯੋਗਵੱਲਰੰਗ ਤੋਂਹੇਠਾਂ(_b)ਸੱਜੇ(_r)ਉਪਰ(_t)ਖੱਬੇ(_e)ਵੱਲ:ਸੰਦ ਚੋਣਸੰਦਉੱਪਰ:ਪਾਰਦਰਸ਼ੀਪਾਰਦਰਸ਼ੀ ਪਿੱਠਭੂਮੀਲੜੀ ਦਰਿਸ਼ਕਿਸਮਲਾਗੂ ਕਰਨ ਲਈ ਰੌਸ਼ਨੀ ਸਰੋਤ ਦੀ ਕਿਸਮਮਾਪਜ਼ ਲਈ ਆਬਜੈਕਟ ਦੀ ਕਿਸਮਕਿਸਮ:URLURL: %sਆਖਰੀ ਜ਼ੂਮ ਰੱਦ ਕਰੋਇਕਾਈਇਕਾਈ ਸੋਧਕਇਕਾਈਆਂਬਿਨਾਂ ਨਾਂਨਾ-ਸਹਾਇਕ ਬੁਰਸ਼ ਫਾਰਮਿਟਬਿਨਾਂ ਨਾਂਇਸ ਰੰਗ ਸੰਖੇਪ ਲਈ ਕੁਸਾਈਨ-ਫੰਕਸ਼ਨ ਵਰਤੋਇਸ ਰੰਗ ਚੈਨਲ ਲਈ ਕਿਸੇ ਤਿਕੋਣ-ਮਿਤੀ ਫੰਕਸ਼ਨ ਦੀ ਬਜਾਇ ਰੇਖੀ ਨਕਸ਼ਾ ਵਰਤੋਨਤੀਜੇ ਵਿੱਚ "ਬੰਧਨ" ਹਟਾਉਣ ਲਈ ਲਾਗ-ਲਾਗ ਮਲਾਇਮਤਾ ਵਰਤੋਲਾਗ-ਲਾਗ ਮਲਾਇਮਤਾ ਵਰਤੋਇਸ ਰੰਗ ਸੰਖੇਪ ਲਈ ਸਾਈਨ-ਫੰਕਸ਼ਨ ਵਰਤੋਮੁੱਲ(_a)ਮੁੱਲਮੁੱਲ ਉਲਟ...ਮੁੱਲ ਅੰਤਰਮੁੱਲ:ਲੰਬਕਾਰੀ ਅਧਾਰ(_t):ਲੰਬਕਾਰੀਵੀਡਿਓ(_d)...ਵੀਡਿਓਵੀਡਿਓ ਤਰਤੀਬਵੀਡਿਓ/RGB...ਚੇਤਾਵਨੀਸਮੇਟੋਕਮਜੋਰਚਿੱਟਾਚੌੜਾਈ:ਝਰੋਖੇਨਕਲ ਤੇ ਕੰਮ(_y)X:XBM ਚੋਣXMAX:XMIN:XY ਸਥਿਤੀ:X_1:X_2:Y:YMAX:YMIN:Y_1:Y_2:ਪੀਲਾਪੀਲਾ:Z:ਆਕਾਰ ਵੱਡਾਆਕਾਰ ਛੋਟਾ_3x3ਤਕਨੀਕੀਕਨਲਵਿਧੀ(_A):ਐਲਫਾਕੋਣ:ਕਾਲਾ ਪੱਧਰ(_B):ਨੀਲਾਨੀਲਾ:ਹੇਠਾਂ:ਡੱਬਾਰੌਸ਼ਨੀ(_B):ਬੁਰਸ਼(_B)ਉਬਾਰ ਨਕਸ਼ਾਸਾਫ਼(_C)ਰੰਗਦਾਰ(_C)...ਨਕਲ(_C)ਡੂੰਘਾਈ:ਵੇਰਵਾ:ਬਿੰਦੂ(_D)ਕਿਨਾਰਾ(_E)...ਸੋਧਮੁਕੰਮਲ ਚਿੱਤਰ(_E)ਵਾਤਾਵਰਣ ਨਕਸ਼ਾਫਾਇਲ਼ਫਿਲਮ(_F)...ਫਿਲਟਰ ਪੈਕ(_F)..._FlareFX...ਫੋਂਟ(_F):ਮਜਬੂਰਫਾਰਮਿਟ(_F):ਆਂਸ਼ਿਕਮੁਕਤ(_F)_GIF ਟਿੱਪਣੀ:ਸਧਾਰਨ(_G)ਹਰਾਹਰਾ:ਗਰਿੱਡ(_G)..._HSL ਰੰਗ ਮਾਡਲਉਚਾਈ(_H):ਸਹਾਇਤਾ_Hexਖਿਤਿਜੀਖਿਤਿਜੀ ਸ਼ੈਲੀ (_H):ਖਿਤਿਜੀ(_H):ਆਭਾ_ID:_IIRਅਣਡਿੱਠਾਇੰਚਸ਼ਾਮਿਲਤੀਬਰਤਾ(_I):ਉਲਟ(_I)_JPEG_LZWਰੌਸ਼ਨੀਰੌਸ਼ਨੀ ਪ੍ਰਭਾਵ(_L)...ਸੰਬੰਧਹਮੇਸ਼ਾ ਲਈ ਚੱਕਰ(_L)ਹੇਠਾਂ(_L)_MIMEਨਕਸ਼ਾ ਕਿਸਮ(_M):ਮਲਬਾਮਿਲੀਮੀਟਰਪ੍ਰਤੀਬਿੰਬ(_M)ਕੋਈ ਨਹੀਂਖੰਡਾਂ ਦੀ ਗਿਣਤੀ(_N):ਪੈਰਾਮੀਟਰਪਲੱਗਿੰਨ ਝਲਕਾਰਾ(_P)ਬਹੁਭੁਜਨਮੂਨਾਦਿੱਖ ਇੱਕਵਾਰ(_P)ਨਮੂਨਾ!ਛਾਪੋ(_P)ਛਾਪੋ(_P)..._Qbist..._RGB ਰੰਗ ਮਾਡਲ_RLEਅਰਧਵਿਆਸ(_R) 1:ਰੇਖਾਵਾਂਲਾਲ:ਹਟਾਓਬੈਕਡਰਾਪ ਹਟਾਓ(_R)ਘੁੰਮਾਇਆ(_R)ਸਤ੍ਰਿਪਤ(_S)ਸਤ੍ਰਿਪਤ:ਟਿੱਪਣੀ ਨੂੰ ਫਾਇਲ ਵਿੱਚ ਸੰਭਾਲੋ(_S)ਖੋਜ(_S):ਕਰਸਰ ਵੇਖਾਓ(_S)ਆਕਾਰਆਕਾਰ:ਗਤੀ:ਸ਼ਕਤੀ(_S):ਛੋਹ(_S)ਮੁੱਢਲਾ ਮੁੱਲ(_T)ਥਰਿੱਸ਼ਹੋਲਡ:ਟਾਇਲ ਅਕਾਰ(_T):ਸੰਦਉੱਪਰ:ਪਾਰਦਰਸ਼ੀਵਾਪਿਸ(_U)ਇਕਾਈ ਸੰਪਾਦਕ(_U)ਨਵੀਨੀਕਰਨਉੱਪਰ(_U)ਪਿੱਠਭੂਮੀ ਰੰਗ ਵਰਤੋਂ(_U)ਮੁੱਲਮੁੱਲ ਉਲਟ(_V)ਮੁੱਲ:ਲੰਬਕਾਰੀਲੰਬਕਾਰੀ ਸ਼ੈਲੀ(_V):ਲੰਬਕਾਰੀ(_V):ਵੇਖੋਸਮੇਟੋ(_W)ਸਮੇਟੋ(_W)...ਚਿੱਟਾ(_W)ਚਿੱਟਾ ਪੱਧਰ(_W):_X ਅੰਤਰਲੰਬ :_X:_Y ਅੰਤਰਲੰਬ :_Y:ਪੀਲਾ_Z:ਆਕਾਰਆਕਾਰ:ਇੱਕ ਇੱਕਲਾ ਝਰੋਖਾਬਾਅਦਐਲਫਾਨੀਲਾਸੈਮੀਈ-ਪੱਤਰਹਰਾਆਭਾk(1-x^p)kx^pk{x(1-x)}^pਮਿਲੀਸਕਿੰਟਪਿਕਸਲ/%aਲਾਲਸਤ੍ਰਿਪਤਸਾਰੇ ਪਰਦੇ ਦੀਐਲਫਾ ਤੋਂਮੁੱਲਪੀਲਾ \ No newline at end of file diff -uraN gimp-2.2.4/po-plug-ins/pa.po gimp-2.2.5/po-plug-ins/pa.po --- gimp-2.2.4/po-plug-ins/pa.po 2005-02-22 23:12:35.000000000 +0100 +++ gimp-2.2.5/po-plug-ins/pa.po 2005-04-09 23:09:21.000000000 +0200 @@ -1,21 +1,24 @@ +# translation of gimp-plug-ins.gimp-2-2.po to Punjabi # translation of pa.po to Punjabi # Copyright (C) 2004 THE gimp-plug-ins'S COPYRIGHT HOLDER # This file is distributed under the same license as the gimp-plug-ins package. # Jaswinder Singh Phulewala , 2004. # Amanpreet Singh Alam , 2004. +# Amanpreet Singh Alam , 2005. # msgid "" msgstr "" -"Project-Id-Version: pa\n" +"Project-Id-Version: gimp-plug-ins.gimp-2-2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-02-22 23:04+0100\n" -"PO-Revision-Date: 2004-07-20 16:21+0530\n" -"Last-Translator: Amanpreet Singh Alam \n" -"Language-Team: Punjabi \n" +"POT-Creation-Date: 2005-04-09 21:56+0200\n" +"PO-Revision-Date: 2005-03-09 10:22+0530\n" +"Last-Translator: Amanpreet Singh Alam \n" +"Language-Team: Punjabi \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: KBabel 1.3.1\n" +"X-Generator: KBabel 1.9.1\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: ../plug-ins/FractalExplorer/Dialogs.c:523 #: ../plug-ins/gfig/gfig-dialog.c:283 ../plug-ins/gflare/gflare.c:891 @@ -56,8 +59,9 @@ #. Zoom Options #: ../plug-ins/FractalExplorer/Dialogs.c:627 #: ../plug-ins/imagemap/imap_popup.c:146 +#, fuzzy msgid "Zoom" -msgstr "" +msgstr "ਆਕਾਰ" #: ../plug-ins/FractalExplorer/Dialogs.c:655 msgid "Undo last zoom" @@ -382,7 +386,7 @@ #: ../plug-ins/common/pat.c:433 ../plug-ins/common/pcx.c:585 #: ../plug-ins/common/pix.c:515 ../plug-ins/common/png.c:1178 #: ../plug-ins/common/pnm.c:809 ../plug-ins/common/postscript.c:1123 -#: ../plug-ins/common/psd_save.c:1588 ../plug-ins/common/raw.c:517 +#: ../plug-ins/common/psd_save.c:1336 ../plug-ins/common/raw.c:517 #: ../plug-ins/common/raw.c:544 ../plug-ins/common/spheredesigner.c:2088 #: ../plug-ins/common/sunras.c:513 ../plug-ins/common/tga.c:1030 #: ../plug-ins/common/tiff.c:1810 ../plug-ins/common/xbm.c:996 @@ -447,9 +451,8 @@ msgstr "'%s' ਨਸ਼ਟ ਹੈ. ਲਾਈਨ %d ਚੋਣ ਹਿੱਸਾ ਗਲਤ ਹੈ" #: ../plug-ins/FractalExplorer/FractalExplorer.c:269 -#, fuzzy msgid "_Fractal Explorer..." -msgstr "ਆਂਸ਼ਿਕ-ਐਕਸਪਲੋਰਰ ਰਸਤਾ ਜੋਡ਼ੋ" +msgstr "" #: ../plug-ins/FractalExplorer/FractalExplorer.c:400 msgid "Rendering Fractal..." @@ -521,9 +524,8 @@ msgstr "ਰੌਸ਼ਨੀ ਪ੍ਰਭਾਵ...." #: ../plug-ins/Lighting/lighting_main.c:197 -#, fuzzy msgid "_Lighting Effects..." -msgstr "ਰੌਸ਼ਨੀ ਪ੍ਰਭਾਵ...." +msgstr "ਰੌਸ਼ਨੀ ਪ੍ਰਭਾਵ(_L)..." #. General options #: ../plug-ins/Lighting/lighting_ui.c:261 @@ -531,18 +533,16 @@ msgstr "ਆਮ ਚੋਣ" #: ../plug-ins/Lighting/lighting_ui.c:269 -#, fuzzy msgid "T_ransparent background" -msgstr "ਪਾਰਦਰਸ਼ੀ ਪਿੱਠਭੂਮੀ" +msgstr "ਪਾਰਦਰਸ਼ੀ ਪਿੱਠਭੂਮੀ(_r)" #: ../plug-ins/Lighting/lighting_ui.c:279 msgid "Make destination image transparent where bump height is zero" msgstr "ਨਿਯਤ ਚਿੱਤਰ ਨੂੰ ਪਾਰਦਰਸ਼ੀ ਬਣਾਓ ਜਿੱਥੇ ਉਬਾਰ ਉਚਾਈ ਸਿਫਰ ਹੈ" #: ../plug-ins/Lighting/lighting_ui.c:282 -#, fuzzy msgid "Cre_ate new image" -msgstr "ਨਵਾਂ ਚਿੱਤਰ ਬਣਾਓ" +msgstr "ਨਵਾਂ ਚਿੱਤਰ ਬਣਾਓ(_a)" #: ../plug-ins/Lighting/lighting_ui.c:292 #: ../plug-ins/MapObject/mapobject_ui.c:570 @@ -550,9 +550,8 @@ msgstr "ਜਦੋਂ ਫਿਲਟਰ ਲਾਗੂ ਕੀਤਾ ਨਵਾਂ ਚਿੱਤਰ ਬਣਾਓ" #: ../plug-ins/Lighting/lighting_ui.c:294 -#, fuzzy msgid "High _Quality preview" -msgstr "ਵਧੀਆ ਵਿਸ਼ੇਸ਼ਤਾ ਵਾਲਾ ਚਿੱਤਰ" +msgstr "ਉੱਚ ਗੁਣਵੱਤਾ ਦਿੱਖ(_Q)" #: ../plug-ins/Lighting/lighting_ui.c:304 msgid "Enable/disable high quality preview" @@ -564,34 +563,28 @@ msgstr "ਰੌਸ਼ਨੀ ਵਿਵਸਥਾਵਾਂ" #: ../plug-ins/Lighting/lighting_ui.c:344 -#, fuzzy msgid "Light 1" -msgstr "ਰੌਸ਼ਨੀ" +msgstr "ਰੌਸ਼ਨੀ 1" #: ../plug-ins/Lighting/lighting_ui.c:345 -#, fuzzy msgid "Light 2" -msgstr "ਰੌਸ਼ਨੀ" +msgstr "ਰੌਸ਼ਨੀ 2" #: ../plug-ins/Lighting/lighting_ui.c:346 -#, fuzzy msgid "Light 3" -msgstr "ਰੌਸ਼ਨੀ" +msgstr "ਰੌਸ਼ਨੀ 3" #: ../plug-ins/Lighting/lighting_ui.c:347 -#, fuzzy msgid "Light 4" -msgstr "ਰੌਸ਼ਨੀ" +msgstr "ਰੌਸ਼ਨੀ 4" #: ../plug-ins/Lighting/lighting_ui.c:348 -#, fuzzy msgid "Light 5" -msgstr "ਰੌਸ਼ਨੀ" +msgstr "ਰੌਸ਼ਨੀ 5" #: ../plug-ins/Lighting/lighting_ui.c:349 -#, fuzzy msgid "Light 6" -msgstr "ਰੌਸ਼ਨੀ" +msgstr "ਰੌਸ਼ਨੀ 6" #. row labels #: ../plug-ins/Lighting/lighting_ui.c:358 @@ -600,7 +593,6 @@ msgstr "ਕਿਸਮ:" #: ../plug-ins/Lighting/lighting_ui.c:363 -#, fuzzy msgid "Color:" msgstr "ਰੰਗ" @@ -619,7 +611,6 @@ #: ../plug-ins/Lighting/lighting_ui.c:388 #: ../plug-ins/MapObject/mapobject_ui.c:679 -#, fuzzy msgid "Select lightsource color" msgstr "ਰੌਸ਼ਨੀ-ਸਰੋਤ ਰੰਗ ਚੁਣੋ" @@ -629,14 +620,12 @@ msgstr "ਰੌਸ਼ਨੀ ਸਰੋਤ ਰੰਗ ਚੁਣੋ" #: ../plug-ins/Lighting/lighting_ui.c:408 -#, fuzzy msgid "_Intensity:" -msgstr "ਤੀਬਰਤਾ" +msgstr "ਤੀਬਰਤਾ(_I):" #: ../plug-ins/Lighting/lighting_ui.c:414 -#, fuzzy msgid "Light intensity" -msgstr "ਤੀਬਰਤਾ" +msgstr "ਰੋਸ਼ਨੀ ਤੀਬਰਤਾ" #: ../plug-ins/Lighting/lighting_ui.c:417 #: ../plug-ins/MapObject/mapobject_ui.c:694 @@ -736,9 +725,8 @@ msgstr "" #: ../plug-ins/Lighting/lighting_ui.c:512 -#, fuzzy msgid "Lighting preset:" -msgstr "ਰੌਸ਼ਨੀ ਪ੍ਰਭਾਵ" +msgstr "ਰੌਸ਼ਨੀ ਪ੍ਰਭਾਵ:" #: ../plug-ins/Lighting/lighting_ui.c:558 msgid "Material properties" @@ -754,9 +742,8 @@ msgstr "ਵਿਖਾਉਣ ਲਈ ਵਾਸਤਵਿਕ ਰੰਗ ਦੀ ਮਾਤਰਾ ਜਿੱਥੇ ਕੋਈ ਸਿੱਧੀ ਰੌਸਨੀ ਨਹੀ ਪਾਈ ਗਈ" #: ../plug-ins/Lighting/lighting_ui.c:605 -#, fuzzy msgid "_Bright:" -msgstr "ਰੌਸ਼ਨੀ" +msgstr "ਰੌਸ਼ਨੀ(_B):" #: ../plug-ins/Lighting/lighting_ui.c:621 #: ../plug-ins/MapObject/mapobject_ui.c:888 @@ -764,9 +751,8 @@ msgstr "ਵਾਸਤਵਿਕ ਰੰਗ ਦੀ ਤੀਬਰਤਾ ਜਦੋ ਰੌਸ਼ਨੀ ਸਰੋਤ ਨਾਲ ਰੌਸ਼ਨ ਕੀਤਾ" #: ../plug-ins/Lighting/lighting_ui.c:634 -#, fuzzy msgid "_Shiny:" -msgstr "ਆਕਾਰ:" +msgstr "" #: ../plug-ins/Lighting/lighting_ui.c:650 #: ../plug-ins/MapObject/mapobject_ui.c:960 @@ -788,18 +774,16 @@ msgstr "" #: ../plug-ins/Lighting/lighting_ui.c:723 -#, fuzzy msgid "E_nable bump mapping" -msgstr "ਉਬਾਰ ਨਕਸ਼ਾ ਯੋਗ ਕਰੋ" +msgstr "ਉਬਾਰ ਨਕਸ਼ਾ ਯੋਗ(_n)" #: ../plug-ins/Lighting/lighting_ui.c:737 msgid "Enable/disable bump-mapping (image depth)" msgstr "ਯੋਗ/ਅਯੋਗ ਉਬਾਰ ਨਕਸ਼ਾ (ਚਿੱਤਰ ਡੂੰਘਾਈ)" #: ../plug-ins/Lighting/lighting_ui.c:755 -#, fuzzy msgid "Bumpm_ap image:" -msgstr "ਉਬਾਰ-ਨਕਸ਼ਾ ਚਿੱਤਰ:" +msgstr "ਉਬਾਰ-ਨਕਸ਼ਾ ਚਿੱਤਰ(_a):" #. Map type menu #: ../plug-ins/Lighting/lighting_ui.c:758 ../plug-ins/common/bumpmap.c:898 @@ -826,31 +810,28 @@ msgstr "ਚਾਪ:" #: ../plug-ins/Lighting/lighting_ui.c:776 -#, fuzzy msgid "Ma_ximum height:" -msgstr "ਅਧਿਕਤਮ ਉਚਾਈ:" +msgstr "ਅਧਿਕਤਮ ਉਚਾਈ(_x):" #: ../plug-ins/Lighting/lighting_ui.c:786 msgid "Maximum height for bumps" msgstr "ਉਬਾਰ ਲਈ ਅਧਿਕਤਮ ਉਚਾਈ" #: ../plug-ins/Lighting/lighting_ui.c:811 -#, fuzzy msgid "E_nable environment mapping" -msgstr "ਵਾਤਾਵਰਣ ਨਕਸ਼ਾ ਯੋਗ ਕਰੋ" +msgstr "ਵਾਤਾਵਰਣ ਨਕਸ਼ਾ ਯੋਗ(_n)" #: ../plug-ins/Lighting/lighting_ui.c:825 msgid "Enable/disable environment-mapping (reflection)" msgstr "ਯੋਗ/ਅਯੋਗ ਵਾਤਾਵਰਣ ਨਕਸ਼ਾ (ਪਰਾਵਰਤਣ)" #: ../plug-ins/Lighting/lighting_ui.c:847 -#, fuzzy msgid "En_vironment image:" -msgstr "ਵਾਤਾਵਰਣ ਚਿੱਤਰ:" +msgstr "ਵਾਤਾਵਰਣ ਚਿੱਤਰ(_v):" #: ../plug-ins/Lighting/lighting_ui.c:849 msgid "Environment image to use" -msgstr "ਵਰਾਣ ਲਈ ਵਾਤਾਵਰਣ ਚਿੱਤਰ" +msgstr "ਵਰਤਣ ਲਈ ਵਾਤਾਵਰਣ ਚਿੱਤਰ" #: ../plug-ins/Lighting/lighting_ui.c:871 msgid "Op_tions" @@ -898,14 +879,12 @@ msgstr "ਤਬਦੀਲੀਆਂ ਦੇ ਰੀਅਲ ਟਾਈਮ ਤਸਵੀਰ ਨੂੰ ਯੋਗ/ਅਯੋਗ ਕਰੋ" #: ../plug-ins/Lighting/lighting_ui.c:1044 -#, fuzzy msgid "Save Lighting Preset" -msgstr "ਰੌਸ਼ਨੀ ਪ੍ਰਭਾਵ" +msgstr "ਰੌਸ਼ਨੀ ਪ੍ਰਭਾਵ ਸੰਭਾਲੋ" #: ../plug-ins/Lighting/lighting_ui.c:1177 -#, fuzzy msgid "Load Lighting Preset" -msgstr "ਰੌਸ਼ਨੀ ਪ੍ਰਭਾਵ" +msgstr "ਰੌਸ਼ਨੀ ਪ੍ਰਭਾਵ ਲੋਡ" #: ../plug-ins/MapObject/mapobject_apply.c:273 msgid "Map to Plane..." @@ -939,7 +918,6 @@ #. General options #: ../plug-ins/MapObject/mapobject_ui.c:496 -#, fuzzy msgid "General options" msgstr "ਆਮ ਚੋਣ" @@ -968,7 +946,6 @@ msgstr "ਮਾਪਜ਼ ਲਈ ਆਬਜੈਕਟ ਦੀ ਕਿਸਮ" #: ../plug-ins/MapObject/mapobject_ui.c:532 -#, fuzzy msgid "Transparent background" msgstr "ਪਾਰਦਰਸ਼ੀ ਪਿੱਠਭੂਮੀ" @@ -977,7 +954,6 @@ msgstr "ਆਬਜੈਕਟ ਦੇ ਬਾਹਰ ਚਿੱਤਰ ਪਾਰਦਰਸ਼ੀ ਬਣਾਓ" #: ../plug-ins/MapObject/mapobject_ui.c:545 -#, fuzzy msgid "Tile source image" msgstr "ਟਾਈਲ ਸਰੋਤ ਚਿੱਤਰ" @@ -986,7 +962,6 @@ msgstr "ਟਾਈਲ ਸਰੋਤ ਚਿੱਤਰ: ਦੂਰਵਰਤੀ ਸਮਤਲ-ਖੇਤਰਾਂ ਲਈ ਵਰਤਣ ਯੋਗ" #: ../plug-ins/MapObject/mapobject_ui.c:559 -#, fuzzy msgid "Create new image" msgstr "ਨਵਾਂ ਚਿੱਤਰ ਬਣਾਓ" @@ -1019,27 +994,22 @@ msgstr "ਜਦੋਂ ਪਿਕਸਲ ਅੰਤਰ ਇਸ ਕੀਮਤ ਤੋਂ ਘੱਟ ਹੋਵੇ ਤਾਂ ਰੁਕੋ" #: ../plug-ins/MapObject/mapobject_ui.c:658 -#, fuzzy msgid "Point light" msgstr "ਬਿੰਦੂ ਰੌਸ਼ਨੀ" #: ../plug-ins/MapObject/mapobject_ui.c:659 -#, fuzzy msgid "Directional light" msgstr "ਦਿਸ਼ਾ ਰੌਸ਼ਨੀ" #: ../plug-ins/MapObject/mapobject_ui.c:660 -#, fuzzy msgid "No light" msgstr "ਕੋਈ ਰੌਸ਼ਨੀ ਨਹੀ" #: ../plug-ins/MapObject/mapobject_ui.c:674 -#, fuzzy msgid "Lightsource type:" msgstr "ਰੌਸ਼ਨੀ-ਸਰੋਤ ਕਿਸਮ:" #: ../plug-ins/MapObject/mapobject_ui.c:684 -#, fuzzy msgid "Lightsource color:" msgstr "ਰੌਸ਼ਨੀ-ਸਰੋਤ ਰੰਗ:" @@ -1108,31 +1078,31 @@ #: ../plug-ins/MapObject/mapobject_ui.c:1132 msgid "Front:" -msgstr "ਮੁੱਖਃ" +msgstr "ਮੁੱਖ:" #: ../plug-ins/MapObject/mapobject_ui.c:1132 msgid "Back:" -msgstr "ਪਿੱਠਃ" +msgstr "ਪਿੱਠ:" #: ../plug-ins/MapObject/mapobject_ui.c:1133 #: ../plug-ins/print/gimp_main_window.c:523 msgid "Top:" -msgstr "ਉੱਪਰਃ" +msgstr "ਉੱਪਰ:" #: ../plug-ins/MapObject/mapobject_ui.c:1133 #: ../plug-ins/print/gimp_main_window.c:564 msgid "Bottom:" -msgstr "ਹੇਠਾਂਃ" +msgstr "ਹੇਠਾਂ:" #: ../plug-ins/MapObject/mapobject_ui.c:1134 #: ../plug-ins/print/gimp_main_window.c:510 msgid "Left:" -msgstr "ਖੱਬਾਃ" +msgstr "ਖੱਬਾ:" #: ../plug-ins/MapObject/mapobject_ui.c:1134 #: ../plug-ins/print/gimp_main_window.c:536 msgid "Right:" -msgstr "ਸੱਜਾਃ" +msgstr "ਸੱਜਾ:" #: ../plug-ins/MapObject/mapobject_ui.c:1140 msgid "Map Images to Box Faces" @@ -1255,35 +1225,36 @@ #: ../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 +#: ../plug-ins/bmp/bmpread.c:207 ../plug-ins/bmp/bmpread.c:307 +#: ../plug-ins/bmp/bmpread.c:348 #, c-format msgid "'%s' is not a valid BMP file" msgstr "" #: ../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 +#: ../plug-ins/bmp/bmpread.c:300 ../plug-ins/bmp/bmpread.c:313 +#: ../plug-ins/bmp/bmpread.c:319 #, c-format msgid "Error reading BMP file header from '%s'" msgstr "" -#: ../plug-ins/bmp/bmpread.c:442 ../plug-ins/bmp/bmpread.c:477 +#: ../plug-ins/bmp/bmpread.c:450 ../plug-ins/bmp/bmpread.c:485 msgid "Unrecognized or invalid BMP compression format." msgstr "" #. #. * Create the "background" layer to hold the image... #. -#: ../plug-ins/bmp/bmpread.c:482 ../plug-ins/common/CEL.c:357 +#: ../plug-ins/bmp/bmpread.c:490 ../plug-ins/common/CEL.c:357 #: ../plug-ins/common/CEL.c:360 ../plug-ins/common/blinds.c:273 #: ../plug-ins/common/compose.c:625 ../plug-ins/common/decompose.c:595 #: ../plug-ins/common/dicom.c:442 ../plug-ins/common/film.c:946 -#: ../plug-ins/common/gifload.c:865 ../plug-ins/common/jpeg.c:1113 +#: ../plug-ins/common/gifload.c:864 ../plug-ins/common/jpeg.c:1113 #: ../plug-ins/common/jpeg.c:2474 ../plug-ins/common/pcx.c:334 #: ../plug-ins/common/pcx.c:340 ../plug-ins/common/pix.c:374 #: ../plug-ins/common/png.c:808 ../plug-ins/common/pnm.c:517 -#: ../plug-ins/common/psd.c:2173 ../plug-ins/common/raw.c:677 +#: ../plug-ins/common/psd.c:2174 ../plug-ins/common/raw.c:677 #: ../plug-ins/common/smooth_palette.c:257 ../plug-ins/common/sunras.c:925 #: ../plug-ins/common/tga.c:929 ../plug-ins/common/tiff.c:833 #: ../plug-ins/common/tile.c:266 ../plug-ins/common/winclipboard.c:579 @@ -1291,8 +1262,9 @@ #: ../plug-ins/fits/fits.c:506 ../plug-ins/gfig/gfig-dialog.c:1286 #: ../plug-ins/gimpressionist/general.c:121 ../plug-ins/sgi/sgi.c:376 #: ../plug-ins/twain/twain.c:571 ../plug-ins/winsnap/winsnap.c:1152 +#, fuzzy msgid "Background" -msgstr "" +msgstr "ਪਿੱਠਭੂਮੀ" #: ../plug-ins/bmp/bmpwrite.c:136 ../plug-ins/common/dicom.c:617 #: ../plug-ins/common/pcx.c:579 @@ -1314,12 +1286,12 @@ #: ../plug-ins/common/jpeg.c:1453 ../plug-ins/common/pat.c:438 #: ../plug-ins/common/pcx.c:545 ../plug-ins/common/pix.c:521 #: ../plug-ins/common/png.c:1185 ../plug-ins/common/pnm.c:814 -#: ../plug-ins/common/postscript.c:1128 ../plug-ins/common/psd_save.c:1593 +#: ../plug-ins/common/postscript.c:1128 ../plug-ins/common/psd_save.c:1341 #: ../plug-ins/common/sunras.c:518 ../plug-ins/common/tga.c:1035 #: ../plug-ins/common/tiff.c:1815 ../plug-ins/common/xbm.c:1001 #: ../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:957 +#: ../plug-ins/sgi/sgi.c:545 ../plug-ins/winicon/icosave.c:977 #: ../plug-ins/xjt/xjt.c:1682 #, c-format msgid "Saving '%s'..." @@ -1370,9 +1342,8 @@ msgstr "" #: ../plug-ins/common/AlienMap2.c:153 -#, fuzzy msgid "Saturation fr_equency:" -msgstr "ਸਤ੍ਰਿਪਤ:" +msgstr "ਸਤ੍ਰਿਪਤ ਆਵਿਰਤੀ(_e):" #: ../plug-ins/common/AlienMap2.c:154 msgid "Blue freq_uency:" @@ -1432,18 +1403,17 @@ #. Propagate Mode #: ../plug-ins/common/AlienMap2.c:512 ../plug-ins/common/hot.c:588 #: ../plug-ins/common/vpropagate.c:1084 ../plug-ins/common/waves.c:270 +#, fuzzy msgid "Mode" -msgstr "" +msgstr "ਢੰਗ" #: ../plug-ins/common/AlienMap2.c:516 -#, fuzzy msgid "_RGB color model" -msgstr "ਰੰਗ ਮੋਡ" +msgstr "_RGB ਰੰਗ ਮਾਡਲ" #: ../plug-ins/common/AlienMap2.c:517 -#, fuzzy msgid "_HSL color model" -msgstr "ਰੰਗ ਮੋਡ" +msgstr "_HSL ਰੰਗ ਮਾਡਲ" #: ../plug-ins/common/CEL.c:112 ../plug-ins/common/CEL.c:130 msgid "KISS CEL" @@ -1659,7 +1629,7 @@ msgstr "ਆਭਾ" #: ../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 +#: ../plug-ins/common/decompose.c:144 ../plug-ins/rcm/rcm_dialog.c:548 msgid "Saturation" msgstr "ਸਤ੍ਰਿਪਤ" @@ -1720,7 +1690,6 @@ msgstr "" #: ../plug-ins/common/CML_explorer.c:1338 -#, fuzzy msgid "Initial value:" msgstr "ਮੁੱਢਲਾ ਮੁੱਲ:" @@ -1729,7 +1698,6 @@ msgstr "" #: ../plug-ins/common/CML_explorer.c:1353 -#, fuzzy msgid "Start offset:" msgstr "ਅੰਤਰਲੰਬ :" @@ -1762,9 +1730,8 @@ msgstr "" #: ../plug-ins/common/CML_explorer.c:1440 -#, fuzzy msgid "Source channel:" -msgstr "ਸਰੋਤ 2:" +msgstr "ਸਰੋਤ ਚੈਨਲ:" #: ../plug-ins/common/CML_explorer.c:1455 #: ../plug-ins/common/CML_explorer.c:1503 @@ -1772,9 +1739,8 @@ msgstr "" #: ../plug-ins/common/CML_explorer.c:1459 -#, fuzzy msgid "Copy parameters" -msgstr "ਪੈਰਾਮੀਟਰ" +msgstr "ਨਕਲ ਪੈਰਾਮੀਟਰ" #: ../plug-ins/common/CML_explorer.c:1468 msgid "Selective Load Settings" @@ -1918,9 +1884,8 @@ msgstr "" #: ../plug-ins/common/aa.c:360 -#, fuzzy msgid "_Format:" -msgstr "ਵੱਲੋਂ:" +msgstr "ਫਾਰਮਿਟ(_F):" #: ../plug-ins/common/align_layers.c:135 msgid "Align _Visible Layers..." @@ -1953,9 +1918,8 @@ msgstr "" #: ../plug-ins/common/align_layers.c:429 -#, fuzzy msgid "_Horizontal style:" -msgstr "ਖਿਤਿਜੀ:" +msgstr "ਖਿਤਿਜੀ ਸ਼ੈਲੀ (_H):" #: ../plug-ins/common/align_layers.c:433 msgid "Left edge" @@ -1963,18 +1927,17 @@ #: ../plug-ins/common/align_layers.c:434 ../plug-ins/common/align_layers.c:464 #: ../plug-ins/gflare/gflare.c:2641 +#, fuzzy msgid "Center" -msgstr "" +msgstr "ਕੇਂਦਰੀ" #: ../plug-ins/common/align_layers.c:435 -#, fuzzy msgid "Right edge" -msgstr "ਸੱਜਾਃ" +msgstr "ਸੱਜਾ ਕੋਨਾ" #: ../plug-ins/common/align_layers.c:444 -#, fuzzy msgid "Ho_rizontal base:" -msgstr "ਖਿਤਿਜੀ:" +msgstr "ਖਿਤਿਜੀ ਅਧਾਰ(_r):" #: ../plug-ins/common/align_layers.c:449 msgid "Fill (top to bottom)" @@ -1985,23 +1948,20 @@ msgstr "" #: ../plug-ins/common/align_layers.c:460 -#, fuzzy msgid "_Vertical style:" -msgstr "ਲੰਬਕਾਰੀ:" +msgstr "ਲੰਬਕਾਰੀ ਸ਼ੈਲੀ(_V):" #: ../plug-ins/common/align_layers.c:463 msgid "Top edge" msgstr "" #: ../plug-ins/common/align_layers.c:465 -#, fuzzy msgid "Bottom edge" -msgstr "ਹੇਠਾਂਃ" +msgstr "ਹੇਠਾਂ ਕੋਨਾ" #: ../plug-ins/common/align_layers.c:474 -#, fuzzy msgid "Ver_tical base:" -msgstr "ਲੰਬਕਾਰੀ:" +msgstr "ਲੰਬਕਾਰੀ ਅਧਾਰ(_t):" #: ../plug-ins/common/align_layers.c:478 msgid "_Grid size:" @@ -2024,21 +1984,22 @@ msgstr "" #: ../plug-ins/common/animationplay.c:431 -#, fuzzy msgid "Playback:" -msgstr "ਕਾਲਾ:" +msgstr "" #: ../plug-ins/common/animationplay.c:457 msgid "Play/Stop" msgstr "" #: ../plug-ins/common/animationplay.c:463 +#, fuzzy msgid "Rewind" -msgstr "" +msgstr "ਤੇਜ਼ ਪਿੱਛੇ" #: ../plug-ins/common/animationplay.c:469 +#, fuzzy msgid "Step" -msgstr "" +msgstr "ਪਗ਼" #: ../plug-ins/common/animationplay.c:1138 #, c-format @@ -2058,9 +2019,8 @@ msgstr "" #: ../plug-ins/common/animoptimize.c:198 -#, fuzzy msgid "_Remove Backdrop" -msgstr "ਹਟਾਓ" +msgstr "ਬੈਕਡਰਾਪ ਹਟਾਓ(_R)" #: ../plug-ins/common/animoptimize.c:214 msgid "_Find Backdrop" @@ -2127,9 +2087,8 @@ msgstr "" #: ../plug-ins/common/autostretch_hsv.c:80 -#, fuzzy msgid "Stretch _HSV" -msgstr "ਖਿੱਚੋਂ" +msgstr "_HSV ਖਿੱਚੋ" #: ../plug-ins/common/autostretch_hsv.c:116 msgid "Auto-Stretching HSV..." @@ -2153,8 +2112,9 @@ #. Orientation toggle box #: ../plug-ins/common/blinds.c:255 ../plug-ins/common/ripple.c:535 +#, fuzzy msgid "Orientation" -msgstr "" +msgstr "ਸਥਿਤੀ" #: ../plug-ins/common/blinds.c:259 ../plug-ins/common/ripple.c:539 #: ../plug-ins/common/tileit.c:418 ../plug-ins/pagecurl/pagecurl.c:530 @@ -2176,14 +2136,13 @@ msgstr "" #: ../plug-ins/common/blinds.c:315 -#, fuzzy msgid "_Number of segments:" -msgstr "ਸੈਲਾਂ ਦੀ ਗਿਣਤੀ:" +msgstr "ਖੰਡਾਂ ਦੀ ਗਿਣਤੀ(_N):" #: ../plug-ins/common/blur.c:147 #, fuzzy msgid "_Blur" -msgstr "ਨੀਲਾ" +msgstr "ਧੱਬਾ(_B)" #: ../plug-ins/common/blur.c:191 ../plug-ins/common/unsharp.c:432 msgid "Blurring..." @@ -2232,9 +2191,8 @@ msgstr "ਉਬਾਰ ਨਕਸ਼ਾ" #: ../plug-ins/common/bumpmap.c:907 -#, fuzzy msgid "_Map type:" -msgstr "ਨੂੰ ਮਾਪੋ:" +msgstr "ਨਕਸ਼ਾ ਕਿਸਮ(_M):" #. Compensate darkening #: ../plug-ins/common/bumpmap.c:912 @@ -2260,9 +2218,8 @@ msgstr "" #: ../plug-ins/common/bumpmap.c:993 ../plug-ins/common/postscript.c:3137 -#, fuzzy msgid "_X offset:" -msgstr "ਅੰਤਰਲੰਬ :" +msgstr "_X ਅੰਤਰਲੰਬ :" #: ../plug-ins/common/bumpmap.c:996 ../plug-ins/common/bumpmap.c:1010 msgid "" @@ -2271,9 +2228,8 @@ msgstr "" #: ../plug-ins/common/bumpmap.c:1007 ../plug-ins/common/postscript.c:3146 -#, fuzzy msgid "_Y offset:" -msgstr "ਅੰਤਰਲੰਬ :" +msgstr "_Y ਅੰਤਰਲੰਬ :" #: ../plug-ins/common/bumpmap.c:1021 msgid "_Waterlevel:" @@ -2296,9 +2252,8 @@ msgstr "" #: ../plug-ins/common/cartoon.c:147 -#, fuzzy msgid "Ca_rtoon..." -msgstr "ਸਰੋਤ..." +msgstr "ਕਾਰਟੂਨ(_r)..." #: ../plug-ins/common/cartoon.c:229 ../plug-ins/common/dog.c:247 #: ../plug-ins/common/gauss.c:431 ../plug-ins/common/neon.c:221 @@ -2412,8 +2367,9 @@ msgstr "" #: ../plug-ins/common/channel_mixer.c:628 +#, fuzzy msgid "Preserve _luminosity" -msgstr "" +msgstr "ਪਰਕਾਸ਼ਵਾਨੀ ਰੱਖੋ(_l)" #: ../plug-ins/common/channel_mixer.c:857 msgid "Load Channel Mixer Settings" @@ -2457,9 +2413,8 @@ msgstr "" #: ../plug-ins/common/colorify.c:110 -#, fuzzy msgid "_Colorify..." -msgstr "ਰੰਗਦਾਰ" +msgstr "ਰੰਗਦਾਰ(_C)..." #: ../plug-ins/common/colorify.c:171 msgid "Colorifying..." @@ -2481,27 +2436,26 @@ msgid "Color to _Alpha..." msgstr "" -#: ../plug-ins/common/colortoalpha.c:181 +#: ../plug-ins/common/colortoalpha.c:187 msgid "Removing color..." msgstr "" -#: ../plug-ins/common/colortoalpha.c:377 +#: ../plug-ins/common/colortoalpha.c:380 msgid "Color to Alpha" msgstr "" -#: ../plug-ins/common/colortoalpha.c:402 ../plug-ins/common/mapcolor.c:424 +#: ../plug-ins/common/colortoalpha.c:405 ../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:406 +#: ../plug-ins/common/colortoalpha.c:409 msgid "Color to Alpha Color Picker" msgstr "" -#: ../plug-ins/common/colortoalpha.c:420 -#, fuzzy +#: ../plug-ins/common/colortoalpha.c:423 msgid "to alpha" -msgstr "ਐਲਫਾ" +msgstr "ਐਲਫਾ ਤੋਂ" #: ../plug-ins/common/compose.c:127 ../plug-ins/common/decompose.c:130 #: ../plug-ins/common/raw.c:953 @@ -2522,13 +2476,13 @@ msgstr "HSV" #. Gray: Circle: Spinbutton 1 -#: ../plug-ins/common/compose.c:148 ../plug-ins/rcm/rcm_dialog.c:452 +#: ../plug-ins/common/compose.c:148 ../plug-ins/rcm/rcm_dialog.c:459 msgid "Hue:" msgstr "ਆਭਾ:" #. Gray: Circle: Spinbutton 2 #: ../plug-ins/common/compose.c:149 ../plug-ins/print/gimp_color_window.c:364 -#: ../plug-ins/rcm/rcm_dialog.c:479 +#: ../plug-ins/rcm/rcm_dialog.c:486 msgid "Saturation:" msgstr "ਸਤ੍ਰਿਪਤ:" @@ -2542,13 +2496,15 @@ #: ../plug-ins/common/compose.c:155 ../plug-ins/common/compose.c:162 #: ../plug-ins/common/fp.c:220 ../plug-ins/print/gimp_color_window.c:307 +#, fuzzy msgid "Cyan:" -msgstr "" +msgstr "ਯਰਕਾਨ(ਨੀਲਾ):" #: ../plug-ins/common/compose.c:156 ../plug-ins/common/compose.c:163 #: ../plug-ins/common/fp.c:222 ../plug-ins/print/gimp_color_window.c:326 +#, fuzzy msgid "Magenta:" -msgstr "" +msgstr "ਮੈਜ਼ਾਨਟਿਕ:" #: ../plug-ins/common/compose.c:157 ../plug-ins/common/compose.c:164 #: ../plug-ins/common/fp.c:221 ../plug-ins/print/gimp_color_window.c:345 @@ -2646,8 +2602,9 @@ msgstr "" #: ../plug-ins/common/compose.c:1103 +#, fuzzy msgid "Compose" -msgstr "" +msgstr "ਨਿਰਮਾਣ" #. The left frame keeps the compose type toggles #: ../plug-ins/common/compose.c:1119 @@ -2753,13 +2710,13 @@ msgstr "ਹਾਸ਼ੀਆ" #: ../plug-ins/common/convmatrix.c:1032 +#, fuzzy msgid "Channels" -msgstr "" +msgstr "ਚੈਨਲ" #: ../plug-ins/common/csource.c:108 -#, fuzzy msgid "C source code" -msgstr "ਰੰਗ ਮੋਡ" +msgstr "C ਸਰੋਤ ਕੋਡ" #: ../plug-ins/common/csource.c:635 msgid "Save as C-Source" @@ -2770,15 +2727,15 @@ msgstr "" #: ../plug-ins/common/csource.c:668 +#, fuzzy msgid "Co_mment:" -msgstr "" +msgstr "ਟਿੱਪਣੀ :" #. Use Comment #. #: ../plug-ins/common/csource.c:675 -#, fuzzy msgid "_Save comment to file" -msgstr "ਸਰਗਰਮ ਆਂਸ਼ਿਕ ਨੂੰ ਫਾਇਲ ਵਿੱਚ ਸੰਭਾਲੋ" +msgstr "ਟਿੱਪਣੀ ਨੂੰ ਫਾਇਲ ਵਿੱਚ ਸੰਭਾਲੋ(_S)" #. GLib types #. @@ -2818,7 +2775,7 @@ #: ../plug-ins/common/cubism.c:298 msgid "_Tile size:" -msgstr "" +msgstr "ਟਾਇਲ ਅਕਾਰ(_T):" #: ../plug-ins/common/cubism.c:311 #, fuzzy @@ -2827,7 +2784,7 @@ #: ../plug-ins/common/cubism.c:322 msgid "_Use background color" -msgstr "" +msgstr "ਪਿੱਠਭੂਮੀ ਰੰਗ ਵਰਤੋਂ(_U)" #: ../plug-ins/common/cubism.c:412 msgid "Cubistic Transformation..." @@ -2860,19 +2817,17 @@ #: ../plug-ins/gimpressionist/orientmap.c:567 #: ../plug-ins/gimpressionist/sizemap.c:437 msgid "Preview" -msgstr "ਤਸਵੀਰ" +msgstr "ਦਿੱਖ" #. The preview button #: ../plug-ins/common/curve_bend.c:1297 -#, fuzzy msgid "_Preview once" -msgstr "ਨਮੂਨਾ" +msgstr "ਦਿੱਖ ਇੱਕਵਾਰ(_P)" #. The preview toggle #: ../plug-ins/common/curve_bend.c:1306 -#, fuzzy msgid "Automatic pre_view" -msgstr "ਸਵੈ-ਚਾਲਤ" +msgstr "ਸਵੈ-ਚਾਲਤ ਦਿੱਖ(_v)" #. Options area, bottom of column #. the vertical box and its toggle buttons @@ -2880,12 +2835,12 @@ #: ../plug-ins/common/curve_bend.c:1316 ../plug-ins/common/mosaic.c:529 #: ../plug-ins/common/ripple.c:501 ../plug-ins/gfig/gfig-dialog.c:1209 msgid "Options" -msgstr "" +msgstr "ਚੋਣ" #. Rotate spinbutton #: ../plug-ins/common/curve_bend.c:1330 msgid "Rotat_e:" -msgstr "" +msgstr "ਘੁੰਮਾਓ(_e):" #. The smoothing toggle #: ../plug-ins/common/curve_bend.c:1348 @@ -2895,13 +2850,14 @@ #. The antialiasing toggle #: ../plug-ins/common/curve_bend.c:1358 ../plug-ins/common/gqbist.c:823 #: ../plug-ins/common/mosaic.c:535 ../plug-ins/common/ripple.c:510 +#, fuzzy msgid "_Antialiasing" -msgstr "" +msgstr "ਐਟੀਲਾਸੀਇੰਗ(_A)" #. The work_on_copy toggle #: ../plug-ins/common/curve_bend.c:1368 msgid "Work on cop_y" -msgstr "" +msgstr "ਨਕਲ ਤੇ ਕੰਮ(_y)" #. The curves graph #: ../plug-ins/common/curve_bend.c:1378 @@ -2910,19 +2866,19 @@ #: ../plug-ins/common/curve_bend.c:1406 msgid "Curve for Border" -msgstr "" +msgstr "ਹਾਸੀਏ ਦੀ ਚਾਪ" #: ../plug-ins/common/curve_bend.c:1410 msgid "_Upper" -msgstr "" +msgstr "ਉੱਪਰ(_U)" #: ../plug-ins/common/curve_bend.c:1411 msgid "_Lower" -msgstr "" +msgstr "ਹੇਠਾਂ(_L)" #: ../plug-ins/common/curve_bend.c:1421 msgid "Curve Type" -msgstr "" +msgstr "ਚਾਪ ਕਿਸਮ" #: ../plug-ins/common/curve_bend.c:1425 msgid "Smoot_h" @@ -2930,12 +2886,12 @@ #: ../plug-ins/common/curve_bend.c:1426 msgid "_Free" -msgstr "" +msgstr "ਮੁਕਤ(_F)" #. The Copy button #: ../plug-ins/common/curve_bend.c:1441 msgid "_Copy" -msgstr "ਨਕਲ" +msgstr "ਨਕਲ(_C)" #: ../plug-ins/common/curve_bend.c:1446 msgid "Copy the active curve to the other border" @@ -2944,7 +2900,7 @@ #. The CopyInv button #: ../plug-ins/common/curve_bend.c:1453 msgid "_Mirror" -msgstr "" +msgstr "ਪ੍ਰਤੀਬਿੰਬ(_M)" #: ../plug-ins/common/curve_bend.c:1458 msgid "Mirror the active curve to the other border" @@ -2953,7 +2909,7 @@ #. The Swap button #: ../plug-ins/common/curve_bend.c:1466 msgid "S_wap" -msgstr "" +msgstr "ਸਵੈਪ(_w)" #: ../plug-ins/common/curve_bend.c:1471 msgid "Swap the two curves" @@ -3027,12 +2983,14 @@ msgstr "ਪੀਲਾ" #: ../plug-ins/common/decompose.c:149 +#, fuzzy msgid "Cyan" -msgstr "" +msgstr "ਨੀਲਾ-ਹਰਾ" #: ../plug-ins/common/decompose.c:150 +#, fuzzy msgid "Magenta" -msgstr "" +msgstr "ਮੈਜ਼ੀਨਟਾ" #: ../plug-ins/common/decompose.c:151 msgid "Yellow" @@ -3067,8 +3025,9 @@ msgstr "" #: ../plug-ins/common/decompose.c:159 +#, fuzzy msgid "Alpha" -msgstr "" +msgstr "ਐਲਫਾ" #: ../plug-ins/common/decompose.c:166 msgid "luma_y470" @@ -3147,15 +3106,15 @@ msgid "Deinterlace..." msgstr "" -#: ../plug-ins/common/deinterlace.c:315 +#: ../plug-ins/common/deinterlace.c:324 msgid "Deinterlace" msgstr "" -#: ../plug-ins/common/deinterlace.c:340 +#: ../plug-ins/common/deinterlace.c:349 msgid "Keep o_dd fields" msgstr "" -#: ../plug-ins/common/deinterlace.c:341 +#: ../plug-ins/common/deinterlace.c:350 msgid "Keep _even fields" msgstr "" @@ -3176,9 +3135,8 @@ msgstr "ਸਰੋਤ 1:" #: ../plug-ins/common/depthmerge.c:691 ../plug-ins/common/depthmerge.c:721 -#, fuzzy msgid "Depth map:" -msgstr "ਡੂੰਘਾਈ:" +msgstr "ਡੂੰਘਾਈ ਖਾਕਾ:" #: ../plug-ins/common/depthmerge.c:706 msgid "Source 2:" @@ -3216,9 +3174,8 @@ #. parameter settings #: ../plug-ins/common/despeckle.c:454 -#, fuzzy msgid "Median" -msgstr "ਮੁੱਖ" +msgstr "ਮੱਧਮਾਨ" #: ../plug-ins/common/despeckle.c:460 msgid "_Adaptive" @@ -3236,14 +3193,12 @@ msgstr "" #: ../plug-ins/common/despeckle.c:510 -#, fuzzy msgid "_Black level:" -msgstr "ਕਾਲਾ:" +msgstr "ਕਾਲਾ ਪੱਧਰ(_B):" #: ../plug-ins/common/despeckle.c:526 -#, fuzzy msgid "_White level:" -msgstr "ਸਫੈਦ" +msgstr "ਚਿੱਟਾ ਪੱਧਰ(_W):" #: ../plug-ins/common/destripe.c:113 msgid "Des_tripe..." @@ -3262,8 +3217,9 @@ #: ../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 "" +msgstr "ਚੌਡ਼ਾਈ:" #: ../plug-ins/common/destripe.c:480 msgid "Create _histogram" @@ -3295,14 +3251,12 @@ msgstr "" #: ../plug-ins/common/diffraction.c:524 -#, fuzzy msgid "Frequencies" -msgstr "ਮੇਰੀ ਪਸੰਦ" +msgstr "ਆਵਿਰਤੀ" #: ../plug-ins/common/diffraction.c:562 -#, fuzzy msgid "Contours" -msgstr "ਕੰਟਰੋਲ" +msgstr "" #: ../plug-ins/common/diffraction.c:600 msgid "Sharp edges" @@ -3310,8 +3264,9 @@ #: ../plug-ins/common/diffraction.c:612 ../plug-ins/common/softglow.c:673 #: ../plug-ins/flame/flame.c:1037 +#, fuzzy msgid "_Brightness:" -msgstr "" +msgstr "ਚਮੀਕਲਾਪਨ:" #: ../plug-ins/common/diffraction.c:621 msgid "Sc_attering:" @@ -3322,9 +3277,8 @@ msgstr "ਧੁਰੀਕ੍ਰਿਤ:" #: ../plug-ins/common/diffraction.c:638 -#, fuzzy msgid "Other options" -msgstr "ਚੋਣ" +msgstr "ਹੋਰ ਚੋਣ" #: ../plug-ins/common/displace.c:154 msgid "_Displace..." @@ -3360,8 +3314,9 @@ #: ../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 "" +msgstr "ਕਾਲਾ" #: ../plug-ins/common/dog.c:139 msgid "Difference of Gaussians..." @@ -3376,35 +3331,33 @@ msgstr "" #: ../plug-ins/common/dog.c:309 -#, fuzzy msgid "_Radius 1:" -msgstr "ਅਰਧ-ਵਿਆਸ:" +msgstr "ਅਰਧਵਿਆਸ(_R) 1:" #: ../plug-ins/common/dog.c:313 -#, fuzzy msgid "R_adius 2:" -msgstr "ਅਰਧ-ਵਿਆਸ:" +msgstr "ਅਰਧਵਿਆਸ(_a) 2:" #: ../plug-ins/common/dog.c:325 ../plug-ins/common/normalize.c:88 +#, fuzzy msgid "_Normalize" -msgstr "" +msgstr "ਸਧਾਰਨ" #: ../plug-ins/common/dog.c:336 ../plug-ins/gimpressionist/paper.c:149 msgid "_Invert" -msgstr "" +msgstr "ਉਲਟ(_I)" #: ../plug-ins/common/edge.c:162 -#, fuzzy msgid "_Edge..." -msgstr "ਕਿਨਾਰਾ" +msgstr "ਕਿਨਾਰਾ(_E)..." #: ../plug-ins/common/edge.c:234 msgid "Edge Detection..." -msgstr "" +msgstr "ਕਿਨਾਰਾ ਖੋਜ..." #: ../plug-ins/common/edge.c:648 msgid "Edge Detection" -msgstr "" +msgstr "ਕਿਨਾਰਾ ਖੋਜ" #: ../plug-ins/common/edge.c:675 #, fuzzy @@ -3418,41 +3371,40 @@ #: ../plug-ins/common/edge.c:677 ../plug-ins/common/sinus.c:897 msgid "Gradient" -msgstr "" +msgstr "ਢਾਂਲੂ" #: ../plug-ins/common/edge.c:678 msgid "Roberts" -msgstr "" +msgstr "ਰੋਬੀਰਟਸ" #: ../plug-ins/common/edge.c:679 -#, fuzzy msgid "Differential" -msgstr "ਦਿਸ਼ਾ-ਸੰਚਾਲਨ" +msgstr "" #: ../plug-ins/common/edge.c:680 msgid "Laplace" -msgstr "" +msgstr "ਲੈਪਲਸ" #: ../plug-ins/common/edge.c:689 msgid "_Algorithm:" -msgstr "" +msgstr "ਕਨਲਵਿਧੀ(_A):" #: ../plug-ins/common/edge.c:697 -#, fuzzy msgid "A_mount:" -msgstr "ਖਾਤਾ:" +msgstr "ਮਾਤਰਾ(_m):" #: ../plug-ins/common/emboss.c:133 msgid "_Emboss..." msgstr "" #: ../plug-ins/common/emboss.c:376 ../plug-ins/common/emboss.c:439 +#, fuzzy msgid "Emboss" -msgstr "" +msgstr "ਝੱਗ" #: ../plug-ins/common/emboss.c:460 msgid "Function" -msgstr "" +msgstr "ਫੰਕਸ਼ਨ" #: ../plug-ins/common/emboss.c:464 msgid "_Bumpmap" @@ -3485,7 +3437,7 @@ #: ../plug-ins/imagemap/imap_cmd_guides.c:177 #: ../plug-ins/imagemap/imap_rectangle.c:410 msgid "_Height:" -msgstr "" +msgstr "ਉਚਾਈ(_H):" #: ../plug-ins/common/engrave.c:249 msgid "_Limit line width" @@ -3510,11 +3462,11 @@ #: ../plug-ins/common/exchange.c:346 msgid "To Color" -msgstr "" +msgstr "ਰੰਗ ਤੋਂ" #: ../plug-ins/common/exchange.c:346 msgid "From Color" -msgstr "" +msgstr "ਰੰਗ ਵਲੋਂ" #: ../plug-ins/common/exchange.c:364 msgid "Color Exchange: To Color" @@ -3525,19 +3477,16 @@ msgstr "" #: ../plug-ins/common/exchange.c:423 -#, fuzzy msgid "R_ed threshold:" -msgstr "ਥਰਿੱਸ਼ਹੋਲਡ (ਦਹਿਲੀਜ਼):" +msgstr "ਲਾਲ ਥਰਿੱਸ਼ਹੋਲਡ (ਦਹਿਲੀਜ਼):" #: ../plug-ins/common/exchange.c:484 -#, fuzzy msgid "G_reen threshold:" -msgstr "ਥਰਿੱਸ਼ਹੋਲਡ (ਦਹਿਲੀਜ਼):" +msgstr "ਹਰਾ ਥਰਿੱਸ਼ਹੋਲਡ:" #: ../plug-ins/common/exchange.c:545 -#, fuzzy msgid "B_lue threshold:" -msgstr "ਥਰਿੱਸ਼ਹੋਲਡ:" +msgstr "ਨੀਲਾ ਥਰਿੱਸ਼ਹੋਲਡ:" #: ../plug-ins/common/exchange.c:573 #, fuzzy @@ -3545,9 +3494,8 @@ msgstr "ਥਰਿੱਸ਼ਹੋਲਡ:" #: ../plug-ins/common/film.c:240 -#, fuzzy msgid "_Film..." -msgstr "ਫਾਇਲ਼" +msgstr "ਫਿਲਮ(_F)..." #: ../plug-ins/common/film.c:325 msgid "Composing Images..." @@ -3556,31 +3504,31 @@ #: ../plug-ins/common/film.c:438 ../plug-ins/common/guillotine.c:183 #: ../plug-ins/helpbrowser/dialog.c:525 msgid "Untitled" -msgstr "" +msgstr "ਬਿਨਾਂ ਨਾਂ" #. ** Get a RGB copy of the source region ** #: ../plug-ins/common/film.c:700 msgid "Temporary" -msgstr "" +msgstr "ਆਰਜ਼ੀ" #: ../plug-ins/common/film.c:1079 msgid "Available Images:" -msgstr "" +msgstr "ਉਪਲੱਬਧ ਚਿੱਤਰ:" #: ../plug-ins/common/film.c:1080 msgid "On Film:" -msgstr "" +msgstr "ਫਿਲਮ ਤੋਂ:" #. Create selection #: ../plug-ins/common/film.c:1166 ../plug-ins/imagemap/imap_selection.c:400 -#: ../plug-ins/rcm/rcm_dialog.c:158 +#: ../plug-ins/rcm/rcm_dialog.c:165 msgid "Selection" msgstr "ਚੋਣ" #. Film height/colour #: ../plug-ins/common/film.c:1176 ../plug-ins/common/film.c:1449 msgid "Film" -msgstr "" +msgstr "ਫਿਲਮ" #. Keep maximum image height #: ../plug-ins/common/film.c:1185 @@ -3590,17 +3538,17 @@ #. Film color #: ../plug-ins/common/film.c:1221 msgid "Select Film Color" -msgstr "" +msgstr "ਫਿਲਮ ਰੰਗ ਚੁਣੋ" #: ../plug-ins/common/film.c:1226 ../plug-ins/common/film.c:1277 #: ../plug-ins/common/nova.c:346 msgid "Co_lor:" -msgstr "" +msgstr "ਰੰਗ(_l):" #. Film numbering: Startindex/Font/colour #: ../plug-ins/common/film.c:1235 msgid "Numbering" -msgstr "" +msgstr "ਗਿਣਤੀ" #: ../plug-ins/common/film.c:1253 msgid "Start _index:" @@ -3608,7 +3556,7 @@ #: ../plug-ins/common/film.c:1267 msgid "_Font:" -msgstr "" +msgstr "ਫੋਂਟ(_F):" #. Numbering color #: ../plug-ins/common/film.c:1272 @@ -3616,18 +3564,17 @@ msgstr "" #: ../plug-ins/common/film.c:1287 -#, fuzzy msgid "At _bottom" -msgstr "ਹੇਠਾਂ:" +msgstr "ਹੇਠਾਂ(_b)" #: ../plug-ins/common/film.c:1288 msgid "At _top" -msgstr "" +msgstr "ਉੱਪਰ(_t)" #. ** The right frame keeps the image selection ** #: ../plug-ins/common/film.c:1301 msgid "Image Selection" -msgstr "" +msgstr "ਚਿੱਤਰ ਚੋਣ" #: ../plug-ins/common/film.c:1329 msgid "All Values are Fractions of the Film Height" @@ -3635,12 +3582,11 @@ #: ../plug-ins/common/film.c:1332 msgid "Ad_vanced" -msgstr "" +msgstr "ਤਕਨੀਕੀ(_v)" #: ../plug-ins/common/film.c:1351 -#, fuzzy msgid "Image _height:" -msgstr "ਚਿੱਤਰ ਕਿਸਮ:" +msgstr "ਚਿੱਤਰ ਉਚਾਈ(_h):" #: ../plug-ins/common/film.c:1362 #, fuzzy @@ -3672,7 +3618,7 @@ #: ../plug-ins/common/flarefx.c:196 msgid "_FlareFX..." -msgstr "" +msgstr "_FlareFX..." #: ../plug-ins/common/flarefx.c:271 msgid "Render Flare..." @@ -3680,7 +3626,7 @@ #: ../plug-ins/common/flarefx.c:308 msgid "FlareFX" -msgstr "" +msgstr "FlareFX" #: ../plug-ins/common/flarefx.c:741 msgid "Center of Flare Effect" @@ -3688,15 +3634,15 @@ #: ../plug-ins/common/flarefx.c:777 msgid "_Show cursor" -msgstr "" +msgstr "ਕਰਸਰ ਵੇਖਾਓ(_S)" #: ../plug-ins/common/fp.c:224 msgid "Darker:" -msgstr "" +msgstr "ਗੂੜਾ:" #: ../plug-ins/common/fp.c:225 msgid "Lighter:" -msgstr "" +msgstr "ਹਲਕਾ:" #: ../plug-ins/common/fp.c:227 msgid "More Sat:" @@ -3712,7 +3658,7 @@ #: ../plug-ins/common/fp.c:321 msgid "_Filter Pack..." -msgstr "" +msgstr "ਫਿਲਟਰ ਪੈਕ(_F)..." #: ../plug-ins/common/fp.c:361 msgid "Convert the image to RGB first!" @@ -3720,15 +3666,15 @@ #: ../plug-ins/common/fp.c:366 msgid "Applying the Filter Pack..." -msgstr "" +msgstr "ਫਿਲਟਰ ਪੈਕ ਲਾਗੂ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ..." #: ../plug-ins/common/fp.c:480 msgid "Original:" -msgstr "" +msgstr "ਅਸਲੀ:" #: ../plug-ins/common/fp.c:532 msgid "Hue Variations" -msgstr "" +msgstr "ਆਭਾ ਮੁੱਲ" #: ../plug-ins/common/fp.c:586 msgid "Roughness" @@ -3736,11 +3682,11 @@ #: ../plug-ins/common/fp.c:629 msgid "Affected Range" -msgstr "" +msgstr "ਪ੍ਰਭਾਵਿਤ ਸੀਮਾ" #: ../plug-ins/common/fp.c:633 msgid "Sha_dows" -msgstr "" +msgstr "ਛਾਂ(_d)" #: ../plug-ins/common/fp.c:634 msgid "_Midtones" @@ -3748,43 +3694,43 @@ #: ../plug-ins/common/fp.c:635 msgid "H_ighlights" -msgstr "" +msgstr "ਉਭਾਰਨਾ(_i)" #: ../plug-ins/common/fp.c:649 msgid "Windows" -msgstr "" +msgstr "ਝਰੋਖੇ" #: ../plug-ins/common/fp.c:659 ../plug-ins/common/lic.c:670 msgid "_Saturation" -msgstr "" +msgstr "ਸਤ੍ਰਿਪਤ(_S)" #: ../plug-ins/common/fp.c:667 msgid "A_dvanced" -msgstr "" +msgstr "ਤਕਨੀਕੀ(_d)" #: ../plug-ins/common/fp.c:687 msgid "Value Variations" -msgstr "" +msgstr "ਮੁੱਲ ਅੰਤਰ" #: ../plug-ins/common/fp.c:731 msgid "Saturation Variations" -msgstr "" +msgstr "ਸਤ੍ਰਿਪਤ ਅੰਤਰ" #: ../plug-ins/common/fp.c:783 msgid "Select Pixels by" -msgstr "" +msgstr "ਪਿਕਸਲ ਚੋਣ" #: ../plug-ins/common/fp.c:788 msgid "H_ue" -msgstr "ਆਭਾ" +msgstr "ਆਭਾ(_u)" #: ../plug-ins/common/fp.c:789 msgid "Satu_ration" -msgstr "ਸਤ੍ਰਿਪਤ" +msgstr "ਸਤ੍ਰਿਪਤ(_r)" #: ../plug-ins/common/fp.c:790 msgid "V_alue" -msgstr "ਮੁੱਲ" +msgstr "ਮੁੱਲ(_a)" #: ../plug-ins/common/fp.c:816 msgid "Show" @@ -3792,11 +3738,11 @@ #: ../plug-ins/common/fp.c:821 msgid "_Entire Image" -msgstr "" +msgstr "ਮੁਕੰਮਲ ਚਿੱਤਰ(_E)" #: ../plug-ins/common/fp.c:822 msgid "Se_lection Only" -msgstr "" +msgstr "ਚੋਣ ਹੀ(_l)" #: ../plug-ins/common/fp.c:823 msgid "Selec_tion In Context" @@ -3808,7 +3754,7 @@ #: ../plug-ins/common/fp.c:1245 msgid "Shadows:" -msgstr "" +msgstr "ਛਾਂ:" #: ../plug-ins/common/fp.c:1246 msgid "Midtones:" @@ -3816,11 +3762,11 @@ #: ../plug-ins/common/fp.c:1247 msgid "Highlights:" -msgstr "" +msgstr "ਉਭਰਵਾਂ:" #: ../plug-ins/common/fp.c:1259 msgid "Advanced Filter Pack Options" -msgstr "" +msgstr "ਤਕਨੀਕੀ ਫਿਲਟਰ ਪੈਕ ਚੋਣ" #: ../plug-ins/common/fp.c:1270 msgid "Smoothness of Aliasing" @@ -3832,12 +3778,11 @@ #: ../plug-ins/common/fp.c:1374 msgid "Preview Size" -msgstr "" +msgstr "ਦਿੱਖ ਅਕਾਰ" #: ../plug-ins/common/fractaltrace.c:126 -#, fuzzy msgid "_Fractal Trace..." -msgstr "ਆਂਸ਼ਿਕ ਕਿਸਮ" +msgstr "" #: ../plug-ins/common/fractaltrace.c:466 ../plug-ins/common/fractaltrace.c:693 msgid "Fractal Trace" @@ -3850,11 +3795,11 @@ #: ../plug-ins/common/fractaltrace.c:731 msgid "_Warp" -msgstr "ਲਪੇਟੋ" +msgstr "ਸਮੇਟੋ(_W)" #: ../plug-ins/common/fractaltrace.c:737 msgid "_White" -msgstr "ਸਫੈਦ" +msgstr "ਚਿੱਟਾ(_W)" #: ../plug-ins/common/fractaltrace.c:744 msgid "Mandelbrot Parameters" @@ -3896,12 +3841,12 @@ #: ../plug-ins/common/gauss.c:498 ../plug-ins/common/jigsaw.c:2456 #: ../plug-ins/common/spread.c:379 msgid "_Horizontal:" -msgstr "ਖਿਤਿਜੀ:" +msgstr "ਖਿਤਿਜੀ(_H):" #: ../plug-ins/common/gauss.c:502 ../plug-ins/common/jigsaw.c:2473 #: ../plug-ins/common/spread.c:383 msgid "_Vertical:" -msgstr "ਲੰਬਕਾਰੀ:" +msgstr "ਲੰਬਕਾਰੀ(_V):" #: ../plug-ins/common/gauss.c:525 msgid "Blur Method" @@ -3909,29 +3854,29 @@ #: ../plug-ins/common/gauss.c:529 msgid "_IIR" -msgstr "" +msgstr "_IIR" #: ../plug-ins/common/gauss.c:530 msgid "_RLE" -msgstr "" +msgstr "_RLE" #: ../plug-ins/common/gbr.c:130 ../plug-ins/common/gbr.c:151 msgid "GIMP brush" -msgstr "" +msgstr "ਜੈਮਪ ਬੁਰਸ਼" #: ../plug-ins/common/gbr.c:369 ../plug-ins/common/gbr.c:381 msgid "Unsupported brush format" -msgstr "" +msgstr "ਨਾ-ਸਹਾਇਕ ਬੁਰਸ਼ ਫਾਰਮਿਟ" #: ../plug-ins/common/gbr.c:392 #, c-format msgid "Error in GIMP brush file '%s'" -msgstr "" +msgstr "ਜੈਮਪ ਬੁਰਸ਼ ਫਾਇਲ %s ਵਿੱਚ ਗਲਤੀ" #: ../plug-ins/common/gbr.c:400 #, c-format msgid "Invalid UTF-8 string in brush file '%s'." -msgstr "" +msgstr "ਬੁਰਸ਼ ਫਾਇਲ '%s' ਵਿੱਚ ਗਲਤ ਯੂਟੀਐਫ-8 ਸਤਰ" #: ../plug-ins/common/gbr.c:406 ../plug-ins/common/gih.c:497 #: ../plug-ins/common/gih.c:1154 ../plug-ins/gflare/gflare.c:2991 @@ -3944,12 +3889,12 @@ #: ../plug-ins/common/gbr.c:663 msgid "Save as Brush" -msgstr "" +msgstr "ਬੁਰਸ਼ ਵਾਂਗ ਸੰਭਾਲੋ" #. attach labels #: ../plug-ins/common/gbr.c:683 ../plug-ins/common/grid.c:769 msgid "Spacing:" -msgstr "" +msgstr "ਖਾਲ਼ੀ ਥਾਂ:" #: ../plug-ins/common/gbr.c:694 ../plug-ins/common/gih.c:904 #: ../plug-ins/common/pat.c:521 ../plug-ins/gimpressionist/presets.c:642 @@ -3965,7 +3910,6 @@ msgstr "GEE-SLIME" #: ../plug-ins/common/gee.c:158 ../plug-ins/common/gee_zoom.c:191 -#, fuzzy msgid "Thank you for choosing GIMP" msgstr "** ਜੈਮਪ ਚੁਣਨ ਲਈ ਧੰਨਵਾਦ **" @@ -3982,7 +3926,7 @@ #: ../plug-ins/common/gee_zoom.c:185 msgid "GEE-ZOOM" -msgstr "" +msgstr "GEE-ZOOM" #: ../plug-ins/common/gee_zoom.c:199 msgid "" @@ -3991,9 +3935,8 @@ msgstr "" #: ../plug-ins/common/gif.c:402 ../plug-ins/common/gifload.c:143 -#, fuzzy msgid "GIF image" -msgstr "ਚਿੱਤਰ" +msgstr "GIF ਚਿੱਤਰ" #: ../plug-ins/common/gif.c:687 msgid "Couldn't simply reduce colors further. Saving as opaque." @@ -4052,16 +3995,16 @@ #: ../plug-ins/common/gif.c:1291 msgid "_GIF comment:" -msgstr "" +msgstr "_GIF ਟਿੱਪਣੀ:" #. additional animated gif parameter settings #: ../plug-ins/common/gif.c:1348 msgid "Animated GIF Options" -msgstr "" +msgstr "ਸਜੀਵ GIF ਚੋਣ" #: ../plug-ins/common/gif.c:1354 msgid "_Loop forever" -msgstr "" +msgstr "ਹਮੇਸ਼ਾ ਲਈ ਚੱਕਰ(_L)" #: ../plug-ins/common/gif.c:1367 msgid "_Delay between frames where unspecified:" @@ -4069,16 +4012,15 @@ #: ../plug-ins/common/gif.c:1380 ../plug-ins/common/mng.c:1527 msgid "milliseconds" -msgstr "" +msgstr "ਮਿਲੀਸਕਿੰਟ" #: ../plug-ins/common/gif.c:1390 msgid "Frame disposal where unspecified: " msgstr "" #: ../plug-ins/common/gif.c:1394 -#, fuzzy msgid "I don't care" -msgstr "ਮੈਂ ਪਰਵਾਹ ਨਹੀ ਕਰਦਾ" +msgstr "ਮੈਂ ਨੀਂ ਪਰਵਾਹ ਕਰਦਾ" #: ../plug-ins/common/gif.c:1396 msgid "Cumulative layers (combine)" @@ -4086,11 +4028,11 @@ #: ../plug-ins/common/gif.c:1398 msgid "One frame per layer (replace)" -msgstr "" +msgstr "ਇੱਕ ਫਰੇਮ ਪ੍ਰਤੀ ਪਰਤ (ਤਬਦੀਲ" #: ../plug-ins/common/gif.c:2611 msgid "Error writing output file." -msgstr "" +msgstr "ਆਉਟਪੁੱਟ ਫਾਇਲ ਲਿਖਣ ਦੌਰਾਨ ਗਲਤੀ ਹੈ।" #: ../plug-ins/common/gif.c:2681 #, c-format @@ -4099,29 +4041,29 @@ #: ../plug-ins/common/gifload.c:314 msgid "This is not a GIF file" -msgstr "" +msgstr "ਇਹ GIF ਫਾਇਲ ਨਹੀਂ ਹੈ" #: ../plug-ins/common/gifload.c:352 msgid "Non-square pixels. Image might look squashed." msgstr "" -#: ../plug-ins/common/gifload.c:867 +#: ../plug-ins/common/gifload.c:866 #, c-format msgid "Background (%d%s)" -msgstr "" +msgstr "ਪਿੱਠਭੂਮੀ (%d%s)" -#: ../plug-ins/common/gifload.c:915 ../plug-ins/common/iwarp.c:783 +#: ../plug-ins/common/gifload.c:914 ../plug-ins/common/iwarp.c:783 #: ../plug-ins/common/iwarp.c:817 #, c-format msgid "Frame %d" msgstr "ਫਰੇਮ %d" -#: ../plug-ins/common/gifload.c:917 +#: ../plug-ins/common/gifload.c:916 #, c-format msgid "Frame %d (%d%s)" -msgstr "" +msgstr "ਫਰੇਮ %d (%d%s)" -#: ../plug-ins/common/gifload.c:947 +#: ../plug-ins/common/gifload.c:946 #, c-format msgid "" "GIF: Undocumented GIF composite type %d is not handled. Animation might not " @@ -4130,7 +4072,7 @@ #: ../plug-ins/common/gih.c:205 ../plug-ins/common/gih.c:226 msgid "GIMP brush (animated)" -msgstr "" +msgstr "ਜੈਮਪ ਬੁਰਸ਼ (ਸਜੀਵ)" #: ../plug-ins/common/gih.c:319 #, c-format @@ -4139,7 +4081,7 @@ #: ../plug-ins/common/gih.c:490 msgid "Error in GIMP brush pipe file." -msgstr "" +msgstr "ਜੈਮਪ ਬੁਰਸ਼ ਪਾਇਪ ਫਾਇਲ ਵਿੱਚ ਗਲਤੀ ਹੈ।" #: ../plug-ins/common/gih.c:556 msgid "GIMP brush file appears to be corrupted." @@ -4151,7 +4093,7 @@ #: ../plug-ins/common/gih.c:867 msgid "Save as Brush Pipe" -msgstr "" +msgstr "ਬੁਰਸ਼ ਪਾਈਪ ਵਾਂਗ ਸੰਭਾਲੋ" #: ../plug-ins/common/gih.c:890 msgid "Spacing (percent):" @@ -4162,12 +4104,10 @@ msgstr "ਪਿਕਸਲ" #: ../plug-ins/common/gih.c:962 -#, fuzzy msgid "Cell size:" msgstr "ਸੈਲ ਆਕਾਰ:" #: ../plug-ins/common/gih.c:974 -#, fuzzy msgid "Number of cells:" msgstr "ਸੈਲਾਂ ਦੀ ਗਿਣਤੀ:" @@ -4177,7 +4117,7 @@ #: ../plug-ins/common/gih.c:1011 msgid " Columns on each layer" -msgstr "" +msgstr " ਪ੍ਰਤੀ ਪਰਤ ਕਾਲਮ" #: ../plug-ins/common/gih.c:1015 msgid " (Width Mismatch!) " @@ -4189,15 +4129,15 @@ #: ../plug-ins/common/gih.c:1024 msgid "Display as:" -msgstr "" +msgstr "ਵੇਖਾਓ:" #: ../plug-ins/common/gih.c:1033 msgid "Dimension:" -msgstr "" +msgstr "ਮਾਪ:" #: ../plug-ins/common/gih.c:1110 msgid "Ranks:" -msgstr "" +msgstr "ਰੈਕ:" #: ../plug-ins/common/glasstile.c:129 msgid "_Glass Tile..." @@ -4213,24 +4153,23 @@ #: ../plug-ins/common/glasstile.c:281 msgid "Tile _width:" -msgstr "" +msgstr "ਟਾਇਲ ਚੌੜਾਈ(_w):" #: ../plug-ins/common/glasstile.c:295 ../plug-ins/common/mosaic.c:621 -#, fuzzy msgid "Tile _height:" -msgstr "ਉਭਾਰੋ:" +msgstr "ਟਾਇਲ ਉਚਾਈ(_h):" #: ../plug-ins/common/gqbist.c:415 msgid "_Qbist..." -msgstr "" +msgstr "_Qbist..." #: ../plug-ins/common/gqbist.c:514 msgid "Qbist ..." -msgstr "" +msgstr "Qbist ..." #: ../plug-ins/common/gqbist.c:695 msgid "Load QBE file" -msgstr "" +msgstr "QBE ਫਾਇਲ ਲੋਡ" #: ../plug-ins/common/gqbist.c:733 msgid "Save (middle transform) as QBE file" @@ -4238,12 +4177,11 @@ #: ../plug-ins/common/gqbist.c:781 msgid "G-Qbist" -msgstr "" +msgstr "G-Qbist" #: ../plug-ins/common/gradmap.c:86 -#, fuzzy msgid "_Gradient Map" -msgstr "ਵਾਤਾਵਰਣ ਨਕਸ਼ਾ" +msgstr "" #: ../plug-ins/common/gradmap.c:124 msgid "Gradient Map..." @@ -4251,26 +4189,26 @@ #: ../plug-ins/common/grid.c:149 msgid "_Grid..." -msgstr "" +msgstr "ਗਰਿੱਡ(_G)..." #: ../plug-ins/common/grid.c:242 msgid "Drawing Grid..." -msgstr "" +msgstr "ਗਰਿੱਡ ਬਣਾਇਆ ਜਾ ਰਿਹਾ ਹੈ..." #: ../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 "ਗਰਿੱਡ" #. attach labels #: ../plug-ins/common/grid.c:696 msgid "Horizontal" -msgstr "" +msgstr "ਖਿਤਿਜੀ" #: ../plug-ins/common/grid.c:698 msgid "Vertical" -msgstr "" +msgstr "ਲੰਬਕਾਰੀ" #: ../plug-ins/common/grid.c:700 msgid "Intersection" @@ -4281,7 +4219,7 @@ #: ../plug-ins/common/wmf.c:548 ../plug-ins/print/gimp_main_window.c:992 #: ../plug-ins/print/gimp_main_window.c:1199 msgid "Width:" -msgstr "" +msgstr "ਚੌੜਾਈ:" #. attach labels #: ../plug-ins/common/grid.c:836 @@ -4291,7 +4229,7 @@ #. attach color selectors #: ../plug-ins/common/grid.c:875 msgid "Horizontal Color" -msgstr "" +msgstr "ਖਿਤਿਜੀ ਰੰਗ" #: ../plug-ins/common/grid.c:893 msgid "Vertical Color" @@ -4311,7 +4249,7 @@ #: ../plug-ins/common/gtm.c:419 msgid "Warning" -msgstr "" +msgstr "ਚੇਤਾਵਨੀ" #: ../plug-ins/common/gtm.c:430 msgid "" @@ -4448,8 +4386,9 @@ msgstr "ਨਵਾਂ ਚਿੱਤਰ ਬਣਾਓ" #: ../plug-ins/common/hot.c:609 +#, fuzzy msgid "Action" -msgstr "" +msgstr "ਕਾਰਵਾਈ" #: ../plug-ins/common/hot.c:613 msgid "Reduce _Luminance" @@ -4530,8 +4469,9 @@ msgstr "" #: ../plug-ins/common/iwarp.c:1025 +#, fuzzy msgid "_Move" -msgstr "" +msgstr "_ਭੇਜੋ" #: ../plug-ins/common/iwarp.c:1026 msgid "_Grow" @@ -4683,8 +4623,9 @@ msgstr "" #: ../plug-ins/common/jpeg.c:1947 +#, fuzzy msgid "_Quality:" -msgstr "" +msgstr "ਗੁਣ:" #: ../plug-ins/common/jpeg.c:1951 msgid "JPEG quality parameter" @@ -4697,11 +4638,12 @@ #: ../plug-ins/common/jpeg.c:1983 #, fuzzy msgid "_Advanced Options" -msgstr "ਤਕਨੀਕੀ" +msgstr "ਤਕਨੀਕੀ ਚੋਣ(_A)" #: ../plug-ins/common/jpeg.c:2011 +#, fuzzy msgid "_Smoothing:" -msgstr "" +msgstr "ਮੁਲਾਅਮੀਕਰਨ:" #: ../plug-ins/common/jpeg.c:2024 msgid "Frequency (rows):" @@ -4747,16 +4689,18 @@ msgstr "" #: ../plug-ins/common/jpeg.c:2170 +#, fuzzy msgid "Integer" -msgstr "" +msgstr "ਪੂਰਨ ਅੰਕ" #: ../plug-ins/common/jpeg.c:2171 msgid "Floating-Point" msgstr "" #: ../plug-ins/common/jpeg.c:2185 +#, fuzzy msgid "Comment" -msgstr "" +msgstr "ਟਿੱਪਣੀ" #: ../plug-ins/common/jpeg.c:2338 #, c-format @@ -4800,8 +4744,9 @@ msgstr "" #: ../plug-ins/common/lic.c:683 +#, fuzzy msgid "_Gradient" -msgstr "" +msgstr "ਢਾਂਲਵਾਂ" #: ../plug-ins/common/lic.c:689 msgid "Convolve" @@ -4863,8 +4808,9 @@ msgstr "" #: ../plug-ins/common/mail.c:522 +#, fuzzy msgid "S_ubject:" -msgstr "" +msgstr "ਵਿਸ਼ਾ(_u):" #: ../plug-ins/common/mail.c:534 msgid "Comm_ent:" @@ -4985,8 +4931,9 @@ msgstr "" #: ../plug-ins/common/mblur.c:919 +#, fuzzy msgid "_Linear" -msgstr "" +msgstr "ਰੇਖਿਕ(_L)" #: ../plug-ins/common/mblur.c:920 msgid "_Radial" @@ -5077,8 +5024,9 @@ msgstr "" #: ../plug-ins/common/mng.c:1419 +#, fuzzy msgid "Replace" -msgstr "" +msgstr "ਤਬਦੀਲ" #: ../plug-ins/common/mng.c:1430 msgid "Default frame disposal:" @@ -5105,8 +5053,9 @@ msgstr "" #: ../plug-ins/common/mng.c:1497 +#, fuzzy msgid "Loop" -msgstr "" +msgstr "ਲੂਪ" #: ../plug-ins/common/mng.c:1511 msgid "Default frame delay:" @@ -5218,12 +5167,14 @@ msgstr "" #: ../plug-ins/common/newsprint.c:135 +#, fuzzy msgid "Round" -msgstr "" +msgstr "ਗੋਲ" #: ../plug-ins/common/newsprint.c:144 +#, fuzzy msgid "Line" -msgstr "" +msgstr "ਸਤਰ" #: ../plug-ins/common/newsprint.c:153 msgid "Diamond" @@ -5280,8 +5231,9 @@ #. resolution settings #: ../plug-ins/common/newsprint.c:1243 +#, fuzzy msgid "Resolution" -msgstr "" +msgstr "ਰੈਜ਼ੋਲੇਸ਼ਨ" #: ../plug-ins/common/newsprint.c:1262 msgid "_Input SPI:" @@ -5298,8 +5250,9 @@ #. screen settings #: ../plug-ins/common/newsprint.c:1302 ../plug-ins/gflare/gflare.c:562 +#, fuzzy msgid "Screen" -msgstr "" +msgstr "ਪਰਦਾ" #: ../plug-ins/common/newsprint.c:1321 msgid "B_lack pullout (%):" @@ -5310,8 +5263,9 @@ msgstr "" #: ../plug-ins/common/newsprint.c:1347 +#, fuzzy msgid "_RGB" -msgstr "" +msgstr "_RGB" #: ../plug-ins/common/newsprint.c:1364 msgid "C_MYK" @@ -5332,8 +5286,9 @@ #. anti-alias control #: ../plug-ins/common/newsprint.c:1445 ../plug-ins/gfig/gfig-dialog.c:1258 +#, fuzzy msgid "Antialiasing" -msgstr "" +msgstr "ਐਟੀਲਾਇਸਿੰਗ" #: ../plug-ins/common/newsprint.c:1453 msgid "O_versample:" @@ -5352,8 +5307,9 @@ msgstr "" #: ../plug-ins/common/nlfilt.c:1038 +#, fuzzy msgid "Filter" -msgstr "" +msgstr "ਫਿਲਟਰ" #: ../plug-ins/common/nlfilt.c:1042 msgid "_Alpha trimmed mean" @@ -5467,8 +5423,9 @@ msgstr "" #: ../plug-ins/common/papertile.c:254 +#, fuzzy msgid "Division" -msgstr "" +msgstr "ਭਾਗ" #: ../plug-ins/common/papertile.c:293 msgid "Fractional Pixels" @@ -5501,7 +5458,7 @@ #: ../plug-ins/common/papertile.c:343 #, fuzzy msgid "_Wrap around" -msgstr "ਪਾਰਦਰਸ਼ੀ ਪਿੱਠਭੂਮੀ" +msgstr "ਪਾਸੇ ਸਮੇਟੋ(_W)" #: ../plug-ins/common/papertile.c:353 msgid "Background Type" @@ -5528,8 +5485,9 @@ msgstr "" #: ../plug-ins/common/papertile.c:375 +#, fuzzy msgid "Background Color" -msgstr "" +msgstr "ਪਿੱਠਭੂਮੀ ਰੰਗ" #: ../plug-ins/common/papertile.c:527 msgid "Paper Tile..." @@ -5892,8 +5850,9 @@ #. Resolution #: ../plug-ins/common/postscript.c:2949 ../plug-ins/common/svg.c:882 #: ../plug-ins/common/wmf.c:669 ../plug-ins/print/gimp_main_window.c:1087 +#, fuzzy msgid "Resolution:" -msgstr "" +msgstr "ਰੈਜ਼ੋਲੇਸ਼ਨ:" #: ../plug-ins/common/postscript.c:2977 msgid "Pages:" @@ -5916,9 +5875,10 @@ msgid "B/W" msgstr "B/W" -#: ../plug-ins/common/postscript.c:3003 ../plug-ins/rcm/rcm_dialog.c:404 +#: ../plug-ins/common/postscript.c:3003 ../plug-ins/rcm/rcm_dialog.c:411 +#, fuzzy msgid "Gray" -msgstr "" +msgstr "ਸਲੇਟੀ" #: ../plug-ins/common/postscript.c:3004 ../plug-ins/common/xpm.c:469 #: ../plug-ins/gimpressionist/color.c:48 @@ -5960,8 +5920,9 @@ msgstr "ਚਿੱਤਰ ਆਕਾਰ" #: ../plug-ins/common/postscript.c:3152 +#, fuzzy msgid "_Keep aspect ratio" -msgstr "" +msgstr "ਅਕਾਰ ਅਨੁਪਾਤ ਰੱਖੋ" #: ../plug-ins/common/postscript.c:3158 msgid "" @@ -5984,8 +5945,9 @@ #. Format #: ../plug-ins/common/postscript.c:3198 +#, fuzzy msgid "Output" -msgstr "" +msgstr "ਆਉਟਪੁੱਟ" #: ../plug-ins/common/postscript.c:3204 msgid "_PostScript level 2" @@ -6008,18 +5970,18 @@ msgid "Invalid UTF-8 string in PSD file" msgstr "" -#: ../plug-ins/common/psd_save.c:181 +#: ../plug-ins/common/psd_save.c:192 msgid "Photoshop image" msgstr "" -#: ../plug-ins/common/psd_save.c:1564 +#: ../plug-ins/common/psd_save.c:1312 #, c-format msgid "" "Unable to save '%s'. The psd file format does not support images that are " "more than 30000 pixels wide or tall." msgstr "" -#: ../plug-ins/common/psd_save.c:1576 +#: ../plug-ins/common/psd_save.c:1324 #, c-format msgid "" "Unable to save '%s'. The psd file format does not support images with " @@ -6103,15 +6065,16 @@ #: ../plug-ins/common/raw.c:943 #, fuzzy msgid "Image" -msgstr "ਚਿੱਤਰ" +msgstr "ਪ੍ਰਤੀਬਿੰਬ" #: ../plug-ins/common/raw.c:955 msgid "Planar RGB" msgstr "" #: ../plug-ins/common/raw.c:956 +#, fuzzy msgid "Indexed" -msgstr "" +msgstr "ਤਤਕਰਾ" #: ../plug-ins/common/raw.c:961 #, fuzzy @@ -6121,7 +6084,7 @@ #: ../plug-ins/common/raw.c:1011 #, fuzzy msgid "Palette" -msgstr "ਹਟਾਓ" +msgstr "ਰੰਗ-ਪੱਟੀ" #: ../plug-ins/common/raw.c:1021 ../plug-ins/common/raw.c:1109 msgid "R, G, B (normal)" @@ -6190,8 +6153,9 @@ msgstr "" #: ../plug-ins/common/retinex.c:311 +#, fuzzy msgid "Level" -msgstr "" +msgstr "ਪੱਧਰ" #: ../plug-ins/common/retinex.c:315 #, fuzzy @@ -6210,7 +6174,7 @@ #: ../plug-ins/common/retinex.c:344 #, fuzzy msgid "_Scale:" -msgstr "ਸਰੋਤ 1:" +msgstr "ਪੈਮਾਨਾ:" #: ../plug-ins/common/retinex.c:359 msgid "_Scale division:" @@ -6279,8 +6243,9 @@ msgstr "" #: ../plug-ins/common/rotate.c:445 +#, fuzzy msgid "Rotating..." -msgstr "" +msgstr "ਘੁੰਮਾ ਰਿਹਾ ਹੈ..." #: ../plug-ins/common/sample_colorize.c:296 msgid "_Sample Colorize..." @@ -6300,8 +6265,9 @@ #. layer combo_box (Dst) #: ../plug-ins/common/sample_colorize.c:1335 +#, fuzzy msgid "Destination:" -msgstr "" +msgstr "ਨਿਯਤ:" #. layer combo_box (Sample) #: ../plug-ins/common/sample_colorize.c:1351 @@ -6492,8 +6458,9 @@ msgstr "" #: ../plug-ins/common/sharpen.c:480 +#, fuzzy msgid "Sharpen" -msgstr "" +msgstr "ਉਘੜਵਾਂ" #: ../plug-ins/common/shift.c:113 msgid "_Shift..." @@ -6504,8 +6471,9 @@ msgstr "" #: ../plug-ins/common/shift.c:349 +#, fuzzy msgid "Shift" -msgstr "" +msgstr "Shift" #: ../plug-ins/common/shift.c:373 #, fuzzy @@ -6574,8 +6542,9 @@ #: ../plug-ins/common/sinus.c:775 ../plug-ins/common/sinus.c:791 #: ../plug-ins/imagemap/imap_preferences.c:516 +#, fuzzy msgid "Colors" -msgstr "" +msgstr "ਰੰਗ" #. if in grey scale, the colors are necessarily black and white #: ../plug-ins/common/sinus.c:784 @@ -6873,16 +6842,18 @@ #: ../plug-ins/common/spheredesigner.c:280 #: ../plug-ins/gimpressionist/general.c:147 +#, fuzzy msgid "Solid" -msgstr "" +msgstr "ਠੋਸ" #: ../plug-ins/common/spheredesigner.c:281 msgid "Checker" msgstr "" #: ../plug-ins/common/spheredesigner.c:282 +#, fuzzy msgid "Marble" -msgstr "" +msgstr "ਸੰਗਮਰਮਰ" #: ../plug-ins/common/spheredesigner.c:283 msgid "Lizard" @@ -6919,8 +6890,9 @@ #: ../plug-ins/common/spheredesigner.c:1745 #: ../plug-ins/common/spheredesigner.c:2617 +#, fuzzy msgid "Light" -msgstr "" +msgstr "ਹਲਕਾ" #: ../plug-ins/common/spheredesigner.c:2164 msgid "Open File" @@ -6956,8 +6928,9 @@ msgstr "" #: ../plug-ins/common/spheredesigner.c:2649 +#, fuzzy msgid "Colors:" -msgstr "" +msgstr "ਰੰਗ:" #: ../plug-ins/common/spheredesigner.c:2652 #: ../plug-ins/common/spheredesigner.c:2663 @@ -7040,8 +7013,9 @@ msgstr "" #: ../plug-ins/common/spread.c:346 +#, fuzzy msgid "Spread" -msgstr "" +msgstr "ਫੈਲਿਆ" #: ../plug-ins/common/spread.c:364 msgid "Spread Amount" @@ -7076,7 +7050,7 @@ #: ../plug-ins/common/struc.c:1293 #, fuzzy msgid "Bottom-_right" -msgstr "ਹੇਠਾਂਃ" +msgstr "ਹੇਠਾਂ:" #: ../plug-ins/common/sunras.c:217 ../plug-ins/common/sunras.c:237 msgid "SUN Rasterfile image" @@ -7138,8 +7112,9 @@ msgstr "" #: ../plug-ins/common/svg.c:313 ../plug-ins/common/svg.c:696 +#, fuzzy msgid "Unknown reason" -msgstr "" +msgstr "ਅਣਪਛਾਤਾ ਕਾਰਨ" #: ../plug-ins/common/svg.c:317 msgid "Rendering SVG..." @@ -7224,8 +7199,9 @@ #. rle #: ../plug-ins/common/tga.c:1209 +#, fuzzy msgid "_RLE compression" -msgstr "" +msgstr "RLE ਸੁੰਘਡ਼ਨ" #. origin #: ../plug-ins/common/tga.c:1219 @@ -7254,8 +7230,9 @@ msgstr "" #: ../plug-ins/common/threshold_alpha.c:239 +#, fuzzy msgid "Threshold:" -msgstr "" +msgstr "ਅਧਾਰ ਮੁੱਲ:" #: ../plug-ins/common/tiff.c:211 ../plug-ins/common/tiff.c:232 #: ../plug-ins/common/tiff.c:249 @@ -7292,8 +7269,9 @@ #. compression #: ../plug-ins/common/tiff.c:2118 +#, fuzzy msgid "Compression" -msgstr "" +msgstr "ਨਪੀੜਨ" #: ../plug-ins/common/tiff.c:2122 msgid "_None" @@ -7320,8 +7298,9 @@ msgstr "" #: ../plug-ins/common/tiff.c:2151 ../plug-ins/common/xbm.c:1201 +#, fuzzy msgid "Comment:" -msgstr "" +msgstr "ਟਿੱਪਣੀ:" #: ../plug-ins/common/tile.c:112 #, fuzzy @@ -7343,7 +7322,7 @@ #: ../plug-ins/common/tile.c:430 msgid "C_reate New Image" -msgstr "" +msgstr "ਨਵਾਂ ਚਿੱਤਰ ਬਣਾਓ(_r)" #: ../plug-ins/common/tileit.c:224 msgid "_Small Tiles..." @@ -7358,17 +7337,15 @@ #. Flip #: ../plug-ins/common/tileit.c:406 ../plug-ins/ifscompose/ifscompose.c:628 msgid "Flip" -msgstr "" +msgstr "ਝਟਕੋ" #: ../plug-ins/common/tileit.c:454 -#, fuzzy msgid "A_ll tiles" -msgstr "ਸਾਰਾ ਚਿੱਟਾ" +msgstr "ਸਭ ਟਾਇਲਾਂ(_l)" #: ../plug-ins/common/tileit.c:468 -#, fuzzy msgid "Al_ternate tiles" -msgstr "ਬਦਲਵਾਂ" +msgstr "ਬਦਲਵੀਂ ਟਾਇਲ(_t)" #: ../plug-ins/common/tileit.c:482 msgid "_Explicit tile" @@ -7376,11 +7353,11 @@ #: ../plug-ins/common/tileit.c:488 msgid "Ro_w:" -msgstr "ਕਤਾਰ:" +msgstr "ਕਤਾਰ(_w):" #: ../plug-ins/common/tileit.c:512 msgid "Col_umn:" -msgstr "ਕਾਲਮ:" +msgstr "ਕਾਲਮ(_u):" #: ../plug-ins/common/tileit.c:564 msgid "O_pacity:" @@ -7388,9 +7365,8 @@ #. Lower frame saying howmany segments #: ../plug-ins/common/tileit.c:573 -#, fuzzy msgid "Number of Segments" -msgstr "ਸੈਲਾਂ ਦੀ ਗਿਣਤੀ:" +msgstr "ਖੰਡਾਂ ਦੀ ਗਿਣਤੀ" #: ../plug-ins/common/tiler.c:66 msgid "_Make Seamless" @@ -7421,7 +7397,7 @@ #: ../plug-ins/common/uniteditor.c:98 msgid "Factor" -msgstr "" +msgstr "ਫੈਕਟਰ" #: ../plug-ins/common/uniteditor.c:98 msgid "How many units make up an inch." @@ -7429,7 +7405,7 @@ #: ../plug-ins/common/uniteditor.c:99 msgid "Digits" -msgstr "" +msgstr "ਅੰਕ" #: ../plug-ins/common/uniteditor.c:99 msgid "" @@ -7440,7 +7416,7 @@ #: ../plug-ins/common/uniteditor.c:104 msgid "Symbol" -msgstr "" +msgstr "ਨਿਸ਼ਾਨ" #: ../plug-ins/common/uniteditor.c:104 msgid "" @@ -7450,7 +7426,7 @@ #: ../plug-ins/common/uniteditor.c:107 msgid "Abbreviation" -msgstr "" +msgstr "ਛੋਟਾ ਰੂਪ" #: ../plug-ins/common/uniteditor.c:107 msgid "The unit's abbreviation (e.g. \"cm\" for centimeters)." @@ -7458,19 +7434,19 @@ #: ../plug-ins/common/uniteditor.c:109 msgid "Singular" -msgstr "" +msgstr "ਇੱਕਵਚਨ" #: ../plug-ins/common/uniteditor.c:109 msgid "The unit's singular form." -msgstr "" +msgstr "ਇੱਕਾਈ ਦਾ ਇੱਕਵਚਨ ਹੈ।" #: ../plug-ins/common/uniteditor.c:110 msgid "Plural" -msgstr "" +msgstr "ਬਹੁਵਚਨ" #: ../plug-ins/common/uniteditor.c:110 msgid "The unit's plural form." -msgstr "" +msgstr "ਇੱਕਾਈ ਦਾ ਬਹੁਵਚਨ ਹੈ।" #: ../plug-ins/common/uniteditor.c:121 msgid "Create a new unit from scratch." @@ -7481,9 +7457,8 @@ msgstr "" #: ../plug-ins/common/uniteditor.c:151 -#, fuzzy msgid "_Unit Editor" -msgstr "ਇਕਾਈ ਸੋਧਕ" +msgstr "ਇਕਾਈ ਸੰਪਾਦਕ(_U)" #: ../plug-ins/common/uniteditor.c:210 msgid "New Unit" @@ -7571,33 +7546,32 @@ #: ../plug-ins/common/video.c:50 msgid "Larg_e 3x3" -msgstr "" +msgstr "ਵੱਡਾ(_e) 3x3" #: ../plug-ins/common/video.c:51 msgid "_Hex" -msgstr "" +msgstr "_Hex" #: ../plug-ins/common/video.c:52 msgid "_Dots" -msgstr "" +msgstr "ਬਿੰਦੂ(_D)" #: ../plug-ins/common/video.c:1817 msgid "Vi_deo..." -msgstr "" +msgstr "ਵੀਡਿਓ(_d)..." #: ../plug-ins/common/video.c:1889 msgid "Video/RGB..." -msgstr "" +msgstr "ਵੀਡਿਓ/RGB..." #: ../plug-ins/common/video.c:2020 msgid "Video" -msgstr "" +msgstr "ਵੀਡਿਓ" #. frame for the radio buttons #: ../plug-ins/common/video.c:2035 -#, fuzzy msgid "Video Pattern" -msgstr "ਤਰਤੀਬ" +msgstr "ਵੀਡਿਓ ਤਰਤੀਬ" #: ../plug-ins/common/video.c:2079 msgid "_Additive" @@ -7605,24 +7579,23 @@ #: ../plug-ins/common/video.c:2089 msgid "_Rotated" -msgstr "" +msgstr "ਘੁੰਮਾਇਆ(_R)" #: ../plug-ins/common/vinvert.c:84 -#, fuzzy msgid "_Value Invert" -msgstr "ਮੁੱਲ" +msgstr "ਮੁੱਲ ਉਲਟ(_V)" #: ../plug-ins/common/vinvert.c:126 msgid "Value Invert..." -msgstr "" +msgstr "ਮੁੱਲ ਉਲਟ..." #: ../plug-ins/common/vpropagate.c:193 msgid "More _white (larger value)" -msgstr "" +msgstr "ਹੋਰ ਚਿੱਟਾ (ਜਿਆਦਾ ਮੁੱਲ)(_w)" #: ../plug-ins/common/vpropagate.c:196 msgid "More blac_k (smaller value)" -msgstr "" +msgstr "ਹੋਰ ਕਾਲਾ (ਜਿਆਦਾ ਮੁੱਲ)(_k)" #: ../plug-ins/common/vpropagate.c:199 msgid "_Middle value to peaks" @@ -7634,20 +7607,19 @@ #: ../plug-ins/common/vpropagate.c:205 msgid "O_nly foreground" -msgstr "" +msgstr "ਸਿਰਫ ਮੁੱਖਭੂਮੀ(_n)" #: ../plug-ins/common/vpropagate.c:208 msgid "Only b_ackground" -msgstr "" +msgstr "ਪਿੱਠਭੂਮੀ ਹੀ(_a)" #: ../plug-ins/common/vpropagate.c:211 msgid "Mor_e opaque" -msgstr "" +msgstr "ਹੋਰ ਧੁੰਦਲਾਪਨ(_e)" #: ../plug-ins/common/vpropagate.c:214 -#, fuzzy msgid "More t_ransparent" -msgstr "ਪਾਰਦਰਸ਼ੀ" +msgstr "ਹੋਰ ਪਾਰਦਰਸ਼ੀ(_r)" #: ../plug-ins/common/vpropagate.c:242 msgid "_Value Propagate..." @@ -7691,21 +7663,19 @@ #: ../plug-ins/common/vpropagate.c:1164 msgid "To l_eft" -msgstr "" +msgstr "ਖੱਬੇ(_e)" #: ../plug-ins/common/vpropagate.c:1167 -#, fuzzy msgid "To _right" -msgstr "ਕੋਈ ਰੌਸ਼ਨੀ ਨਹੀ" +msgstr "ਸੱਜੇ(_r)" #: ../plug-ins/common/vpropagate.c:1170 msgid "To _top" -msgstr "" +msgstr "ਉਪਰ(_t)" #: ../plug-ins/common/vpropagate.c:1173 -#, fuzzy msgid "To _bottom" -msgstr "ਹੇਠਾਂ:" +msgstr "ਹੇਠਾਂ(_b)" #: ../plug-ins/common/vpropagate.c:1182 msgid "Propagating _Alpha Channel" @@ -7716,23 +7686,20 @@ msgstr "" #: ../plug-ins/common/warp.c:247 -#, fuzzy msgid "_Warp..." -msgstr "ਲਪੇਟੋ" +msgstr "ਸਮੇਟੋ(_W)..." #: ../plug-ins/common/warp.c:391 msgid "Warp" -msgstr "" +msgstr "ਸਮੇਟੋ" #: ../plug-ins/common/warp.c:405 -#, fuzzy msgid "Basic Options" -msgstr "XBM ਚੋਣ" +msgstr "ਮੂਲ ਚੋਣ" #: ../plug-ins/common/warp.c:427 -#, fuzzy msgid "Step size:" -msgstr "ਆਕਾਰ:" +msgstr "" #: ../plug-ins/common/warp.c:441 ../plug-ins/ifscompose/ifscompose.c:1214 msgid "Iterations:" @@ -7760,19 +7727,17 @@ #: ../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 "" +msgstr "ਕਾਲਾ" #: ../plug-ins/common/warp.c:524 -#, fuzzy msgid "FG color" -msgstr "ਕੋਈ ਰੰਗ ਨਹੀ" +msgstr "FG ਰੰਗ" #. -------------------------------------------------------------------- #. --------- The secondary table -------------------------- #: ../plug-ins/common/warp.c:544 -#, fuzzy msgid "Advanced Options" -msgstr "ਤਸਵੀਰ ਚੋਣ" +msgstr "ਤਕਨੀਕੀ ਚੋਣ" #: ../plug-ins/common/warp.c:560 msgid "Dither size:" @@ -7780,7 +7745,7 @@ #: ../plug-ins/common/warp.c:573 msgid "Rotation angle:" -msgstr "" +msgstr "ਘੁੰਮਾਓ ਕੋਣ:" #: ../plug-ins/common/warp.c:586 msgid "Substeps:" @@ -7798,9 +7763,8 @@ #. -------------------------------------------------------------------- #. --------- The "other" table -------------------------- #: ../plug-ins/common/warp.c:630 -#, fuzzy msgid "More Advanced Options" -msgstr "ਤਸਵੀਰ ਚੋਣ" +msgstr "ਹੋਰ ਤਕਨੀਕੀ ਚੋਣ" #: ../plug-ins/common/warp.c:647 msgid "Gradient scale:" @@ -7918,7 +7882,7 @@ #: ../plug-ins/common/winclipboard.c:109 msgid "Copy to Clipboard" -msgstr "" +msgstr "ਕਲਿੱਪਬੋਰਡ ਵਿੱਚ ਨਕਲ" #: ../plug-ins/common/winclipboard.c:121 msgid "Paste from Clipboard" @@ -8006,7 +7970,7 @@ #: ../plug-ins/common/wind.c:960 msgid "Bot_h" -msgstr "ਦੋਵੇ" +msgstr "ਦੋਵੇ(_h)" #: ../plug-ins/common/wind.c:997 msgid "Higher values restrict the effect to fewer areas of the image" @@ -8014,21 +7978,19 @@ #: ../plug-ins/common/wind.c:1012 ../plug-ins/gimpressionist/orientmap.c:669 msgid "_Strength:" -msgstr "" +msgstr "ਸ਼ਕਤੀ(_S):" #: ../plug-ins/common/wind.c:1016 msgid "Higher values increase the magnitude of the effect" msgstr "" #: ../plug-ins/common/winprint.c:224 -#, fuzzy msgid "_Print" -msgstr "ਬਿੰਦੂ" +msgstr "ਛਾਪੋ(_P)" #: ../plug-ins/common/winprint.c:236 -#, fuzzy msgid "Page Setup" -msgstr "ਚਿੱਤਰ ਆਕਾਰ" +msgstr "ਸਫ਼ਾ ਵਿਵਸਥਾ" #: ../plug-ins/common/winprint.c:341 #, c-format @@ -8045,7 +8007,7 @@ #: ../plug-ins/common/winprint.c:427 ../plug-ins/print/print-image-gimp.c:320 msgid "Printing..." -msgstr "" +msgstr "ਛਾਪਿਆ ਜਾ ਰਿਹਾ ਹੈ..." #: ../plug-ins/common/winprint.c:459 msgid "CreateDIBSection failed" @@ -8207,9 +8169,8 @@ msgstr "" #: ../plug-ins/common/xpm.c:796 -#, fuzzy msgid "_Alpha threshold:" -msgstr "ਥਰਿੱਸ਼ਹੋਲਡ (ਦਹਿਲੀਜ਼):" +msgstr "" #: ../plug-ins/common/xwd.c:277 ../plug-ins/common/xwd.c:297 msgid "X window dump" @@ -8275,7 +8236,7 @@ #: ../plug-ins/dbbrowser/gimpprocbrowser.c:224 #: ../plug-ins/dbbrowser/plugin-browser.c:718 msgid "_Search:" -msgstr "" +msgstr "ਖੋਜ(_S):" #: ../plug-ins/dbbrowser/gimpprocbrowser.c:386 #: ../plug-ins/dbbrowser/plugin-browser.c:397 @@ -8314,7 +8275,7 @@ #: ../plug-ins/gflare/gflare.c:3503 ../plug-ins/gflare/gflare.c:3608 #: ../plug-ins/gflare/gflare.c:3745 msgid "Parameters" -msgstr "" +msgstr "ਪੈਰਾਮੀਟਰ" #: ../plug-ins/dbbrowser/gimpprocview.c:146 msgid "Return Values" @@ -8338,24 +8299,23 @@ #: ../plug-ins/dbbrowser/gimpprocview.c:319 msgid "Internal GIMP procedure" -msgstr "" +msgstr "ਅੰਦਰੂਨੀ ਜੈਮਪ ਤਰੀਕਾ" #: ../plug-ins/dbbrowser/gimpprocview.c:320 msgid "GIMP Plug-In" -msgstr "" +msgstr "ਜੈਮਪ ਪਲੱਗਿੰਨ" #: ../plug-ins/dbbrowser/gimpprocview.c:321 msgid "GIMP Extension" -msgstr "" +msgstr "ਜੈਮਪ ਵਿਸਥਾਰ" #: ../plug-ins/dbbrowser/gimpprocview.c:322 msgid "Temporary Procedure" -msgstr "" +msgstr "ਆਰਜ਼ੀ ਤਰੀਕਾ" #: ../plug-ins/dbbrowser/plugin-browser.c:151 -#, fuzzy msgid "_Plug-In Browser" -msgstr "ਝਲਕ" +msgstr "ਪਲੱਗਿੰਨ ਝਲਕਾਰਾ(_P)" #: ../plug-ins/dbbrowser/plugin-browser.c:418 msgid "1 Plug-In Interface" @@ -8367,9 +8327,8 @@ msgstr "" #: ../plug-ins/dbbrowser/plugin-browser.c:544 -#, fuzzy msgid "Plug-In Browser" -msgstr "ਜੈਮਪ ਸਹਾਇਤਾ ਝਲਕਾਰਾ" +msgstr "ਪਲੱਗਿੰਨ ਝਲਕਾਰਾ" #: ../plug-ins/dbbrowser/plugin-browser.c:595 msgid "Name" @@ -8377,9 +8336,8 @@ #: ../plug-ins/dbbrowser/plugin-browser.c:603 #: ../plug-ins/dbbrowser/plugin-browser.c:672 -#, fuzzy msgid "Insertion Date" -msgstr "ਉਲਟਾ" +msgstr "ਮਿਤੀ ਸ਼ਾਮਲ" #: ../plug-ins/dbbrowser/plugin-browser.c:611 msgid "Menu Path" @@ -8387,9 +8345,8 @@ #: ../plug-ins/dbbrowser/plugin-browser.c:619 #: ../plug-ins/dbbrowser/plugin-browser.c:681 -#, fuzzy msgid "Image Types" -msgstr "ਚਿੱਤਰ ਕਿਸਮ:" +msgstr "ਚਿੱਤਰ ਕਿਸਮ" #: ../plug-ins/dbbrowser/plugin-browser.c:643 msgid "List View" @@ -8400,9 +8357,8 @@ msgstr "" #: ../plug-ins/dbbrowser/plugin-browser.c:704 -#, fuzzy msgid "Tree View" -msgstr "ਤਸਵੀਰ" +msgstr "ਲੜੀ ਦਰਿਸ਼" #: ../plug-ins/dbbrowser/procedure-browser.c:89 msgid "Procedure _Browser" @@ -8439,7 +8395,7 @@ #: ../plug-ins/fits/fits.c:989 ../plug-ins/gfig/gfig-dialog.c:1288 #: ../plug-ins/gfig/gfig-dialog.c:1422 msgid "White" -msgstr "" +msgstr "ਚਿੱਟਾ" #: ../plug-ins/fits/fits.c:996 msgid "Pixel value scaling" @@ -8497,7 +8453,7 @@ #: ../plug-ins/flame/flame.c:732 ../plug-ins/gimpressionist/orientation.c:146 #: ../plug-ins/gimpressionist/size.c:149 msgid "Random" -msgstr "" +msgstr "ਰਲਵਾਂ" #: ../plug-ins/flame/flame.c:736 msgid "Swirl" @@ -8561,7 +8517,7 @@ #: ../plug-ins/flame/flame.c:1162 msgid "Custom gradient" -msgstr "" +msgstr "ਢਾਲਵਾਂ ਸੋਧ" #: ../plug-ins/flame/flame.c:1188 msgid "C_amera" @@ -8581,7 +8537,7 @@ #: ../plug-ins/gfig/gfig-bezier.c:458 msgid "Show Line Frame" -msgstr "" +msgstr "ਰੇਖਾ ਫਰੇਮ ਵੇਖਾਓ" #: ../plug-ins/gfig/gfig-bezier.c:463 msgid "Draws lines between the control points. Only during curve creation" @@ -8590,38 +8546,33 @@ #. Start building the dialog up #: ../plug-ins/gfig/gfig-dialog.c:295 msgid "Gfig" -msgstr "" +msgstr "Gfig" #. Tool options notebook #: ../plug-ins/gfig/gfig-dialog.c:341 -#, fuzzy msgid "Tool options" -msgstr "ਜ਼ੂਮ ਚੋਣ" +msgstr "ਸੰਦ ਚੋਣ" #: ../plug-ins/gfig/gfig-dialog.c:358 -#, fuzzy msgid "_Stroke" -msgstr "ਸ਼ਕਤੀਸ਼ਾਲੀ" +msgstr "ਛੋਹ(_S)" #. Fill frame on right side #: ../plug-ins/gfig/gfig-dialog.c:405 -#, fuzzy msgid "Fill" -msgstr "ਫਾਇਲ਼" +msgstr "ਭਰਨ" #: ../plug-ins/gfig/gfig-dialog.c:419 msgid "No fill" msgstr "" #: ../plug-ins/gfig/gfig-dialog.c:420 -#, fuzzy msgid "Color fill" -msgstr "ਰੰਗ" +msgstr "ਰੰਗ ਭਰਨ" #: ../plug-ins/gfig/gfig-dialog.c:421 -#, fuzzy msgid "Pattern fill" -msgstr "ਤਰਤੀਬ" +msgstr "ਤਰਤੀਬ ਭਰੋ" #: ../plug-ins/gfig/gfig-dialog.c:422 msgid "Gradient fill" @@ -8634,9 +8585,8 @@ #. "show grid" checkbutton at bottom of style frame #: ../plug-ins/gfig/gfig-dialog.c:504 -#, fuzzy msgid "Show grid" -msgstr "ਵੇਖਾਓ" +msgstr "ਗਰਿੱਡ ਵੇਖਾਓ" #: ../plug-ins/gfig/gfig-dialog.c:639 msgid "Load Gfig object collection" @@ -8651,14 +8601,12 @@ msgstr "" #: ../plug-ins/gfig/gfig-dialog.c:859 -#, fuzzy msgid "_Undo" -msgstr "ਇਕਾਈ ਸੋਧਕ" +msgstr "ਵਾਪਿਸ(_U)" #: ../plug-ins/gfig/gfig-dialog.c:863 -#, fuzzy msgid "_Clear" -msgstr "ਸਾਫ਼" +msgstr "ਸਾਫ਼(_C)" #: ../plug-ins/gfig/gfig-dialog.c:867 msgid "_Grid" @@ -8686,11 +8634,11 @@ #: ../plug-ins/gfig/gfig-dialog.c:895 msgid "Show next object" -msgstr "" +msgstr "ਅੱਗੇ ਇਕਾਈ ਵੇਖਾਓ" #: ../plug-ins/gfig/gfig-dialog.c:899 ../plug-ins/gfig/gfig-stock.c:52 msgid "Show all objects" -msgstr "" +msgstr "ਸਭ ਇਕਾਈਆਂ ਵੇਖਾਓ" #: ../plug-ins/gfig/gfig-dialog.c:905 ../plug-ins/gfig/gfig-stock.c:47 msgid "Create line" @@ -8698,24 +8646,23 @@ #: ../plug-ins/gfig/gfig-dialog.c:908 ../plug-ins/gfig/gfig-stock.c:42 msgid "Create circle" -msgstr "" +msgstr "ਚੱਕਰ ਬਣਾਓ" #: ../plug-ins/gfig/gfig-dialog.c:911 ../plug-ins/gfig/gfig-stock.c:46 msgid "Create ellipse" -msgstr "" +msgstr "ਅੰਡਕਾਰ ਬਣਾਓ" #: ../plug-ins/gfig/gfig-dialog.c:914 ../plug-ins/gfig/gfig-stock.c:44 -#, fuzzy msgid "Create arc" -msgstr "ਬਣਾਓ" +msgstr "ਚਾਪ ਬਣਾਓ" #: ../plug-ins/gfig/gfig-dialog.c:917 ../plug-ins/gfig/gfig-stock.c:50 msgid "Create reg polygon" -msgstr "" +msgstr "ਨਿਯਮਤ ਬਹੁਭੁਜ ਬਣਾਓ" #: ../plug-ins/gfig/gfig-dialog.c:920 ../plug-ins/gfig/gfig-stock.c:54 msgid "Create star" -msgstr "" +msgstr "ਤਾਰਾ ਬਣਾਓ" #: ../plug-ins/gfig/gfig-dialog.c:923 ../plug-ins/gfig/gfig-stock.c:53 msgid "Create spiral" @@ -8727,43 +8674,40 @@ #: ../plug-ins/gfig/gfig-dialog.c:930 ../plug-ins/gfig/gfig-stock.c:48 msgid "Move an object" -msgstr "" +msgstr "ਇਕਾਈ ਏਧਰ-ਓਧਰ" #: ../plug-ins/gfig/gfig-dialog.c:933 ../plug-ins/gfig/gfig-stock.c:49 msgid "Move a single point" -msgstr "" +msgstr "ਇੱਕ ਬਿੰਦੂ ਏਧਰ-ਓਧਰ" #: ../plug-ins/gfig/gfig-dialog.c:936 ../plug-ins/gfig/gfig-stock.c:43 msgid "Copy an object" -msgstr "" +msgstr "ਇਕਾਈ ਨਕਲ" #: ../plug-ins/gfig/gfig-dialog.c:939 ../plug-ins/gfig/gfig-stock.c:45 msgid "Delete an object" -msgstr "" +msgstr "ਇਕਾਈ ਹਟਾਓ" #: ../plug-ins/gfig/gfig-dialog.c:942 ../plug-ins/gfig/gfig-stock.c:51 msgid "Select an object" -msgstr "" +msgstr "ਇਕਾਈ ਚੁਣੋ" #: ../plug-ins/gfig/gfig-dialog.c:1023 msgid "This tool has no options" -msgstr "" +msgstr "ਇਹ ਸੰਦ ਲਈ ਕੋਈ ਚੋਣ ਨਹੀਂ" #. Put buttons in #: ../plug-ins/gfig/gfig-dialog.c:1230 -#, fuzzy msgid "Show position" -msgstr "ਸਥਿਤੀ" +msgstr "ਸਥਿਤੀ ਵੇਖਾਓ" #: ../plug-ins/gfig/gfig-dialog.c:1242 -#, fuzzy msgid "Show control points" -msgstr "ਕੋਈ ਰੰਗ ਨਹੀ" +msgstr "ਕੰਟਰੋਲ ਬਿੰਦੂ ਵੇਖਾਓ" #: ../plug-ins/gfig/gfig-dialog.c:1276 -#, fuzzy msgid "Max undo:" -msgstr "ਨੂੰ ਮਾਪੋ:" +msgstr "ਅਧਿਕਤਮ ਵਾਪਸ:" #: ../plug-ins/gfig/gfig-dialog.c:1285 #: ../plug-ins/gimpressionist/general.c:166 @@ -8772,7 +8716,7 @@ #: ../plug-ins/gfig/gfig-dialog.c:1287 msgid "Foreground" -msgstr "" +msgstr "ਮੁੱਖ-ਭੂਮੀ" #: ../plug-ins/gfig/gfig-dialog.c:1289 ../plug-ins/imagemap/imap_cmd_copy.c:54 #: ../plug-ins/imagemap/imap_cmd_copy_object.c:55 @@ -8789,7 +8733,7 @@ #: ../plug-ins/gfig/gfig-dialog.c:1304 msgid "Background:" -msgstr "" +msgstr "ਪਿੱਠਭੂਮੀ:" #: ../plug-ins/gfig/gfig-dialog.c:1307 msgid "Feather" @@ -8797,7 +8741,7 @@ #: ../plug-ins/gfig/gfig-dialog.c:1331 msgid "Radius:" -msgstr "" +msgstr "ਅਰਧ-ਵਿਆਸ:" #: ../plug-ins/gfig/gfig-dialog.c:1386 msgid "Grid spacing:" @@ -8806,7 +8750,7 @@ #: ../plug-ins/gfig/gfig-dialog.c:1402 ../plug-ins/imagemap/imap_menu.c:369 #: ../plug-ins/imagemap/imap_popup.c:137 ../plug-ins/imagemap/imap_tools.c:156 msgid "Rectangle" -msgstr "" +msgstr "ਚਤੁਰਭੁਜ" #: ../plug-ins/gfig/gfig-dialog.c:1404 msgid "Isometric" @@ -8818,7 +8762,7 @@ #: ../plug-ins/gfig/gfig-dialog.c:1420 ../plug-ins/gflare/gflare.c:559 msgid "Normal" -msgstr "" +msgstr "ਸਧਾਰਨ" #: ../plug-ins/gfig/gfig-dialog.c:1423 msgid "Grey" @@ -8826,20 +8770,19 @@ #: ../plug-ins/gfig/gfig-dialog.c:1424 msgid "Darker" -msgstr "" +msgstr "ਗੂੜਾ" #: ../plug-ins/gfig/gfig-dialog.c:1425 msgid "Lighter" -msgstr "" +msgstr "ਹਲਕਾ" #: ../plug-ins/gfig/gfig-dialog.c:1426 msgid "Very dark" msgstr "" #: ../plug-ins/gfig/gfig-dialog.c:1435 -#, fuzzy msgid "Grid color:" -msgstr "ਕੋਈ ਰੰਗ ਨਹੀ" +msgstr "ਗਰਿੱਡ ਰੰਗ:" #: ../plug-ins/gfig/gfig-dialog.c:1638 #, fuzzy @@ -8847,14 +8790,12 @@ msgstr "ਆਕਾਰ:" #: ../plug-ins/gfig/gfig-dialog.c:1648 -#, fuzzy msgid "Right" -msgstr "ਸੱਜਾਃ" +msgstr "ਸੱਜੇ" #: ../plug-ins/gfig/gfig-dialog.c:1649 -#, fuzzy msgid "Left" -msgstr "ਖੱਬਾਃ" +msgstr "ਖੱਬੇ" #: ../plug-ins/gfig/gfig-dialog.c:1659 #: ../plug-ins/gimpressionist/orientation.c:130 @@ -8884,7 +8825,6 @@ #. Position labels #: ../plug-ins/gfig/gfig-preview.c:383 -#, fuzzy msgid "XY position:" msgstr "XY ਸਥਿਤੀ:" @@ -8922,7 +8862,7 @@ #: ../plug-ins/gflare/gflare.c:561 msgid "Overlay" -msgstr "" +msgstr "ਪਰਤ ਫੈਲਾਉ" #: ../plug-ins/gflare/gflare.c:821 msgid "_GFlare..." @@ -9006,7 +8946,7 @@ #: ../plug-ins/gflare/gflare.c:2785 msgid "_Threshold" -msgstr "" +msgstr "ਮੁੱਢਲਾ ਮੁੱਲ(_T)" #: ../plug-ins/gflare/gflare.c:2923 msgid "S_elector" @@ -9067,7 +9007,7 @@ #: ../plug-ins/gflare/gflare.c:3378 ../plug-ins/gflare/gflare.c:3406 #: ../plug-ins/gflare/gflare.c:3434 msgid "Opacity:" -msgstr "" +msgstr "ਧੁੰਦਲਾਪਨ:" #: ../plug-ins/gflare/gflare.c:3391 ../plug-ins/gflare/gflare.c:3419 #: ../plug-ins/gflare/gflare.c:3447 @@ -9086,7 +9026,7 @@ #: ../plug-ins/gflare/gflare.c:3450 ../plug-ins/gimpressionist/general.c:115 msgid "_General" -msgstr "" +msgstr "ਸਧਾਰਨ(_G)" #. #. * Gradient Menus @@ -9094,7 +9034,7 @@ #: ../plug-ins/gflare/gflare.c:3476 ../plug-ins/gflare/gflare.c:3579 #: ../plug-ins/gflare/gflare.c:3718 msgid "Gradients" -msgstr "" +msgstr "ਢਾਲਵਾਂ" #: ../plug-ins/gflare/gflare.c:3487 ../plug-ins/gflare/gflare.c:3592 #: ../plug-ins/gflare/gflare.c:3729 @@ -9204,7 +9144,7 @@ #: ../plug-ins/gimpressionist/brush.c:481 msgid "_Brush" -msgstr "" +msgstr "ਬੁਰਸ਼(_B)" #: ../plug-ins/gimpressionist/brush.c:518 #: ../plug-ins/print/gimp_color_window.c:407 @@ -9217,11 +9157,12 @@ #: ../plug-ins/gimpressionist/brush.c:544 msgid "Select:" -msgstr "ਚੁਣ:" +msgstr "ਚੁਣੋ:" #: ../plug-ins/gimpressionist/brush.c:573 +#, fuzzy msgid "Aspect ratio:" -msgstr "" +msgstr "ਆਕਾਰ ਅਨੁਪਾਤ:" #: ../plug-ins/gimpressionist/brush.c:577 msgid "Specifies the aspect ratio of the brush" @@ -9411,8 +9352,9 @@ #: ../plug-ins/gimpressionist/orientation.c:142 #: ../plug-ins/gimpressionist/size.c:145 +#, fuzzy msgid "Radius" -msgstr "" +msgstr "ਅਰਧ-ਵਿਆਸ" #: ../plug-ins/gimpressionist/orientation.c:143 msgid "" @@ -9426,8 +9368,9 @@ #: ../plug-ins/gimpressionist/orientation.c:150 #: ../plug-ins/gimpressionist/size.c:153 +#, fuzzy msgid "Radial" -msgstr "" +msgstr "ਕਰਣੀ" #: ../plug-ins/gimpressionist/orientation.c:151 msgid "Let the direction from the center determine the direction of the stroke" @@ -9458,8 +9401,9 @@ #: ../plug-ins/gimpressionist/orientation.c:174 #: ../plug-ins/gimpressionist/size.c:178 +#, fuzzy msgid "Manual" -msgstr "" +msgstr "ਦਸਤੀ" #: ../plug-ins/gimpressionist/orientation.c:175 msgid "Manually specify the stroke orientation" @@ -9498,8 +9442,9 @@ #: ../plug-ins/gimpressionist/orientmap.c:595 #: ../plug-ins/gimpressionist/sizemap.c:466 +#, fuzzy msgid "A_dd" -msgstr "" +msgstr "ਜੋੜ੍ਹੋ" #: ../plug-ins/gimpressionist/orientmap.c:599 msgid "Add new vector" @@ -9680,8 +9625,9 @@ msgstr "" #: ../plug-ins/gimpressionist/repaint.c:1160 +#, fuzzy msgid "Update" -msgstr "" +msgstr "ਨਵੀਨੀਕਰਨ" #: ../plug-ins/gimpressionist/size.c:77 msgid "_Size" @@ -9864,8 +9810,9 @@ #. Simple color control section #: ../plug-ins/ifscompose/ifscompose.c:659 +#, fuzzy msgid "Simple" -msgstr "" +msgstr "ਨਮੂਨਾ" #: ../plug-ins/ifscompose/ifscompose.c:668 #, fuzzy @@ -9882,8 +9829,9 @@ #. Full color control section #: ../plug-ins/ifscompose/ifscompose.c:706 +#, fuzzy msgid "Full" -msgstr "" +msgstr "ਪੂਰਾ" #: ../plug-ins/ifscompose/ifscompose.c:713 #, fuzzy @@ -9924,7 +9872,7 @@ #: ../plug-ins/ifscompose/ifscompose.c:1063 #, fuzzy msgid "Select _All" -msgstr "ਚੁਣ" +msgstr "_ਸਭ ਚੁਣੋ" #: ../plug-ins/ifscompose/ifscompose.c:1067 #, fuzzy @@ -9948,8 +9896,9 @@ msgstr "ਭੇਜੋ" #: ../plug-ins/ifscompose/ifscompose.c:1080 +#, fuzzy msgid "Rotate" -msgstr "" +msgstr "ਘੁੰਮਾਉ" #: ../plug-ins/ifscompose/ifscompose.c:1080 msgid "Rotate / Scale" @@ -9995,7 +9944,7 @@ #: ../plug-ins/ifscompose/ifscompose.c:2400 #, fuzzy msgid "Save failed" -msgstr "ਫਾਇਲ ਸੰਭਾਲੋ" +msgstr "ਸੰਭਾਲਣ ਅਸਫਲ" #: ../plug-ins/ifscompose/ifscompose.c:2481 #: ../plug-ins/ifscompose/ifscompose.c:2494 @@ -10047,8 +9996,9 @@ #: ../plug-ins/imagemap/imap_rectangle.c:401 #: ../plug-ins/imagemap/imap_rectangle.c:408 #: ../plug-ins/imagemap/imap_rectangle.c:415 +#, fuzzy msgid "pixels" -msgstr "" +msgstr "ਪਿਕਸਲ" #: ../plug-ins/imagemap/imap_circle.c:271 msgid "Center _y:" @@ -10175,8 +10125,9 @@ msgstr "" #: ../plug-ins/imagemap/imap_cmd_guides.c:273 +#, fuzzy msgid "Guides" -msgstr "" +msgstr "ਗਾਇਡਾਂ" #: ../plug-ins/imagemap/imap_cmd_insert_point.c:62 #: ../plug-ins/imagemap/imap_polygon.c:737 @@ -10187,8 +10138,9 @@ #: ../plug-ins/imagemap/imap_cmd_object_down.c:55 #: ../plug-ins/imagemap/imap_object_popup.c:109 #: ../plug-ins/imagemap/imap_selection.c:163 +#, fuzzy msgid "Move Down" -msgstr "" +msgstr "ਹੇਠਾਂ" #: ../plug-ins/imagemap/imap_cmd_move_sash.c:68 msgid "Move Sash" @@ -10207,13 +10159,15 @@ #: ../plug-ins/imagemap/imap_cmd_object_up.c:55 #: ../plug-ins/imagemap/imap_object_popup.c:107 #: ../plug-ins/imagemap/imap_selection.c:159 +#, fuzzy msgid "Move Up" -msgstr "" +msgstr "ਉੱਪਰ ਜਾਓ" #: ../plug-ins/imagemap/imap_cmd_paste.c:51 #: ../plug-ins/imagemap/imap_toolbar.c:129 +#, fuzzy msgid "Paste" -msgstr "" +msgstr "ਚਿਪਕਾਓ" #: ../plug-ins/imagemap/imap_cmd_select.c:53 #: ../plug-ins/imagemap/imap_tools.c:144 @@ -10221,8 +10175,9 @@ msgstr "ਚੁਣ" #: ../plug-ins/imagemap/imap_cmd_select_all.c:51 +#, fuzzy msgid "Select All" -msgstr "" +msgstr "ਸਭ ਚੁਣੋ" #: ../plug-ins/imagemap/imap_cmd_select_next.c:51 msgid "Select Next" @@ -10242,12 +10197,14 @@ msgstr "" #: ../plug-ins/imagemap/imap_cmd_unselect.c:53 +#, fuzzy msgid "Unselect" -msgstr "" +msgstr "ਨਾ-ਚੁਣੇ" #: ../plug-ins/imagemap/imap_cmd_unselect_all.c:53 +#, fuzzy msgid "Unselect All" -msgstr "" +msgstr "ਸਭ ਨਾ-ਚੁਣੇ" #: ../plug-ins/imagemap/imap_edit_area_info.c:196 msgid "Link Type" @@ -10310,8 +10267,9 @@ msgstr "ਸੰਬੰਧ" #: ../plug-ins/imagemap/imap_edit_area_info.c:310 +#, fuzzy msgid "Dimensions" -msgstr "" +msgstr "ਮਾਪ" #: ../plug-ins/imagemap/imap_edit_area_info.c:314 msgid "Pre_view" @@ -10341,7 +10299,7 @@ #: ../plug-ins/imagemap/imap_file.c:117 #, fuzzy msgid "File already exists" -msgstr "ਫਾਇਲ ਮੌਜੂਦ ਹੈ!" +msgstr "ਫਾਇਲ ਪਹਿਲਾਂ ਹੀ ਮੌਜੂਦ ਹੈ" #: ../plug-ins/imagemap/imap_file.c:118 msgid "Do you really want to overwrite?" @@ -10456,14 +10414,14 @@ msgstr "ਫਾਇਲ ਖੋਲੋ" #: ../plug-ins/imagemap/imap_menu.c:209 -#, c-format +#, fuzzy, c-format msgid "_Undo %s" -msgstr "" +msgstr "ਮੁੜ ਕਰੋ %s" #: ../plug-ins/imagemap/imap_menu.c:225 -#, c-format +#, fuzzy, c-format msgid "_Redo %s" -msgstr "" +msgstr "ਮੁੜ ਪਹਿਲਾਂ ਕਰੋ %s" #: ../plug-ins/imagemap/imap_menu.c:253 msgid "_Edit" @@ -10497,8 +10455,9 @@ #: ../plug-ins/imagemap/imap_menu.c:310 #: ../plug-ins/print/gimp_main_window.c:1410 +#, fuzzy msgid "Grayscale" -msgstr "" +msgstr "ਸਲੇਟੀ ਪੈਮਾਨਾ" #: ../plug-ins/imagemap/imap_menu.c:328 #, fuzzy @@ -10542,7 +10501,7 @@ #: ../plug-ins/imagemap/imap_menu.c:401 #, fuzzy msgid "_Contents" -msgstr "ਤੀਬਰਤਾ" +msgstr "ਸੰਖੇਪ(_C)" #: ../plug-ins/imagemap/imap_menu.c:405 msgid "_About ImageMap" @@ -10597,13 +10556,14 @@ msgstr "" #: ../plug-ins/imagemap/imap_preferences.c:358 +#, fuzzy msgid "Select Color" -msgstr "" +msgstr "ਰੰਗ ਚੁਣੋ" #: ../plug-ins/imagemap/imap_preferences.c:443 #, fuzzy msgid "General" -msgstr "ਆਮ ਚੋਣ" +msgstr "ਸਧਾਰਨ" #: ../plug-ins/imagemap/imap_preferences.c:447 msgid "Default Map Type" @@ -10651,8 +10611,9 @@ msgstr "" #: ../plug-ins/imagemap/imap_preferences.c:524 +#, fuzzy msgid "Selected:" -msgstr "" +msgstr "ਚੁਣਿਆ:" #: ../plug-ins/imagemap/imap_preferences.c:535 msgid "Co_ntiguous Region" @@ -10684,16 +10645,18 @@ msgstr "ਸੋਧ" #: ../plug-ins/imagemap/imap_selection.c:410 +#, fuzzy msgid "#" -msgstr "" +msgstr "#" #: ../plug-ins/imagemap/imap_selection.c:439 msgid "ALT Text" msgstr "" #: ../plug-ins/imagemap/imap_selection.c:449 +#, fuzzy msgid "Target" -msgstr "" +msgstr "ਨਿਯਤ" #: ../plug-ins/imagemap/imap_settings.c:90 msgid "Settings for this Mapfile" @@ -10708,12 +10671,14 @@ msgstr "" #: ../plug-ins/imagemap/imap_settings.c:98 +#, fuzzy msgid "Select Image File" -msgstr "" +msgstr "ਚਿੱਤਰ ਫਾਇਲ ਚੁਣੋ" #: ../plug-ins/imagemap/imap_settings.c:102 +#, fuzzy msgid "_Title:" -msgstr "" +msgstr "ਸਿਰਲੇਖ:" #: ../plug-ins/imagemap/imap_settings.c:104 msgid "Aut_hor:" @@ -10752,12 +10717,14 @@ msgstr "ਮੇਰੀ ਪਸੰਦ" #: ../plug-ins/imagemap/imap_toolbar.c:112 +#, fuzzy msgid "Undo" -msgstr "" +msgstr "ਵਾਪਿਸ" #: ../plug-ins/imagemap/imap_toolbar.c:116 +#, fuzzy msgid "Redo" -msgstr "" +msgstr "ਮੁੜ ਉਹੀ" #: ../plug-ins/imagemap/imap_toolbar.c:137 msgid "Zoom in" @@ -10925,8 +10892,9 @@ msgstr "" #: ../plug-ins/print/gimp_color_window.c:268 +#, fuzzy msgid "Brightness:" -msgstr "" +msgstr "ਚਮਕੀਲਾਪਨ:" #: ../plug-ins/print/gimp_color_window.c:276 msgid "" @@ -10935,8 +10903,9 @@ msgstr "" #: ../plug-ins/print/gimp_color_window.c:288 +#, fuzzy msgid "Contrast:" -msgstr "" +msgstr "ਭਿੰਨਤਾ:" #: ../plug-ins/print/gimp_color_window.c:296 msgid "Set the contrast of the print" @@ -10961,8 +10930,9 @@ msgstr "" #: ../plug-ins/print/gimp_color_window.c:385 +#, fuzzy msgid "Density:" -msgstr "" +msgstr "ਘਣਤਾ:" #: ../plug-ins/print/gimp_color_window.c:393 msgid "" @@ -11031,12 +11001,14 @@ msgstr "ਸਵੈ" #: ../plug-ins/print/gimp_main_window.c:482 +#, fuzzy msgid "Portrait" -msgstr "" +msgstr "ਪੋਰਟਰੇਟ" #: ../plug-ins/print/gimp_main_window.c:483 +#, fuzzy msgid "Landscape" -msgstr "" +msgstr "ਭੂ-ਦਰਿਸ਼" #: ../plug-ins/print/gimp_main_window.c:484 msgid "Upside down" @@ -11259,8 +11231,9 @@ msgstr "" #: ../plug-ins/print/gimp_main_window.c:989 +#, fuzzy msgid "Dimensions:" -msgstr "" +msgstr "ਆਕਾਰ:" #: ../plug-ins/print/gimp_main_window.c:1003 msgid "Width of the paper that you wish to print to" @@ -11318,8 +11291,9 @@ msgstr "" #: ../plug-ins/print/gimp_main_window.c:1162 +#, fuzzy msgid "Percent" -msgstr "" +msgstr "ਪ੍ਰਤੀਸ਼ਤ" #: ../plug-ins/print/gimp_main_window.c:1169 msgid "Scale the print to the size of the page" @@ -11392,18 +11366,16 @@ msgstr "" #: ../plug-ins/print/gimp_main_window.c:1329 -#, fuzzy msgid "Line art" -msgstr "ਰੇਖੀ" +msgstr "ਸਤਰ ਕਲਾਕਾਰੀ" #: ../plug-ins/print/gimp_main_window.c:1336 msgid "Fastest and brightest color for text and line art" msgstr "" #: ../plug-ins/print/gimp_main_window.c:1343 -#, fuzzy msgid "Solid colors" -msgstr "ਕੋਈ ਰੰਗ ਨਹੀ" +msgstr "ਇੱਕ ਰੰਗ" #: ../plug-ins/print/gimp_main_window.c:1350 msgid "Best for images dominated by regions of solid color" @@ -11437,7 +11409,7 @@ #: ../plug-ins/print/gimp_main_window.c:1424 msgid "Black and white" -msgstr "" +msgstr "ਕਾਲਾ ਤੇ ਚਿੱਟਾ" #: ../plug-ins/print/gimp_main_window.c:1431 msgid "Print in black and white (no color, and no shades of gray)" @@ -11461,7 +11433,7 @@ #: ../plug-ins/print/print.c:164 msgid "_Print..." -msgstr "" +msgstr "ਛਾਪੋ(_P)..." #: ../plug-ins/print/print.c:694 ../plug-ins/print/print.c:695 #: ../plug-ins/print/print.c:785 ../plug-ins/print/print.c:1124 @@ -11476,92 +11448,89 @@ msgid "Rotating the colormap..." msgstr "" -#: ../plug-ins/rcm/rcm_dialog.c:114 +#: ../plug-ins/rcm/rcm_dialog.c:119 msgid "Original" msgstr "ਅਸਲੀ" -#: ../plug-ins/rcm/rcm_dialog.c:127 +#: ../plug-ins/rcm/rcm_dialog.c:133 msgid "Rotated" msgstr "" -#: ../plug-ins/rcm/rcm_dialog.c:140 +#: ../plug-ins/rcm/rcm_dialog.c:147 msgid "Continuous update" msgstr "" -#: ../plug-ins/rcm/rcm_dialog.c:153 +#: ../plug-ins/rcm/rcm_dialog.c:160 msgid "Area:" msgstr "ਖੇਤਰ:" -#: ../plug-ins/rcm/rcm_dialog.c:157 +#: ../plug-ins/rcm/rcm_dialog.c:164 msgid "Entire Layer" msgstr "ਸਾਰੀ ਪਰਤ" -#: ../plug-ins/rcm/rcm_dialog.c:159 +#: ../plug-ins/rcm/rcm_dialog.c:166 msgid "Context" -msgstr "" +msgstr "ਪ੍ਰਸੰਗ" #. spinbutton 1 -#: ../plug-ins/rcm/rcm_dialog.c:284 ../plug-ins/rcm/rcm_dialog.c:362 +#: ../plug-ins/rcm/rcm_dialog.c:291 ../plug-ins/rcm/rcm_dialog.c:369 msgid "From" msgstr "ਵੱਲੋਂ" #. spinbutton 2 -#: ../plug-ins/rcm/rcm_dialog.c:310 ../plug-ins/rcm/rcm_dialog.c:363 +#: ../plug-ins/rcm/rcm_dialog.c:317 ../plug-ins/rcm/rcm_dialog.c:370 msgid "To" msgstr "ਵੱਲ" #. * Gray: Operation-Mode * -#: ../plug-ins/rcm/rcm_dialog.c:499 -#, fuzzy +#: ../plug-ins/rcm/rcm_dialog.c:506 msgid "Gray Mode" -msgstr "ਰੰਗ ਮੋਡ" +msgstr "ਸਲੇਟੀ ਮੋਡ" #. Gray: Operation-Mode: two radio buttons -#: ../plug-ins/rcm/rcm_dialog.c:508 +#: ../plug-ins/rcm/rcm_dialog.c:515 msgid "Treat as this" msgstr "" -#: ../plug-ins/rcm/rcm_dialog.c:520 +#: ../plug-ins/rcm/rcm_dialog.c:527 msgid "Change to this" msgstr "ਇਸ ਨੂੰ ਤਬਦੀਲ ਕਰੋ" #. * Gray: What is gray? * -#: ../plug-ins/rcm/rcm_dialog.c:533 -#, fuzzy +#: ../plug-ins/rcm/rcm_dialog.c:540 msgid "Gray Threshold" -msgstr "ਥਰਿੱਸ਼ਹੋਲਡ:" +msgstr "ਸਲੇਟੀ ਥਰਿੱਸ਼ਹੋਲਡ:" #. * Misc: Used unit selection * -#: ../plug-ins/rcm/rcm_dialog.c:572 ../plug-ins/rcm/rcm_dialog.c:676 +#: ../plug-ins/rcm/rcm_dialog.c:579 ../plug-ins/rcm/rcm_dialog.c:683 msgid "Units" msgstr "ਇਕਾਈਆਂ" #. Misc: Used unit selection: 3 radio buttons -#: ../plug-ins/rcm/rcm_dialog.c:581 +#: ../plug-ins/rcm/rcm_dialog.c:588 msgid "Radians" -msgstr "" +msgstr "ਰੇਡੀਅਨ" -#: ../plug-ins/rcm/rcm_dialog.c:593 +#: ../plug-ins/rcm/rcm_dialog.c:600 msgid "Radians/Pi" msgstr "" -#: ../plug-ins/rcm/rcm_dialog.c:605 +#: ../plug-ins/rcm/rcm_dialog.c:612 msgid "Degrees" msgstr "ਡਿਗਰੀਆਂ" #. Create dialog -#: ../plug-ins/rcm/rcm_dialog.c:638 +#: ../plug-ins/rcm/rcm_dialog.c:645 msgid "Colormap Rotation" msgstr "" -#: ../plug-ins/rcm/rcm_dialog.c:670 +#: ../plug-ins/rcm/rcm_dialog.c:677 msgid "Main Options" msgstr "" -#: ../plug-ins/rcm/rcm_dialog.c:673 -#, fuzzy +#: ../plug-ins/rcm/rcm_dialog.c:680 msgid "Gray Options" -msgstr "ਆਮ ਚੋਣ" +msgstr "ਸਲੇਟੀ ਚੋਣ" #: ../plug-ins/rcm/rcm_stock.c:35 msgid "Switch to clockwise" @@ -11577,7 +11546,7 @@ #: ../plug-ins/rcm/rcm_stock.c:41 msgid "Select all" -msgstr "" +msgstr "ਸਭ ਚੁਣੋ" #. printf("width = %d, height = %d\n",BITMAP_WIDTH(marked),BITMAP_HEIGHT(marked)); #: ../plug-ins/sel2path/pxl-outline.c:83 @@ -11610,9 +11579,8 @@ msgstr "" #: ../plug-ins/sgi/sgi.c:635 -#, fuzzy msgid "No compression" -msgstr "ਕੋਈ ਰੰਗ ਨਹੀ" +msgstr "ਕੋਈ ਨਪੀੜਨ ਨਹੀ" #: ../plug-ins/sgi/sgi.c:637 msgid "RLE compression" @@ -11641,37 +11609,36 @@ msgid "Transferring TWAIN data..." msgstr "" -#: ../plug-ins/winicon/icodialog.c:123 +#: ../plug-ins/winicon/icodialog.c:89 msgid "1 bpp, 1-bit alpha, 2-slot palette" msgstr "" -#: ../plug-ins/winicon/icodialog.c:124 +#: ../plug-ins/winicon/icodialog.c:90 msgid "4 bpp, 1-bit alpha, 16-slot palette" msgstr "" -#: ../plug-ins/winicon/icodialog.c:125 +#: ../plug-ins/winicon/icodialog.c:91 msgid "8 bpp, 1-bit alpha, 256-slot palette" msgstr "" -#: ../plug-ins/winicon/icodialog.c:126 +#: ../plug-ins/winicon/icodialog.c:92 msgid "32 bpp, 8-bit alpha, no palette" msgstr "" -#: ../plug-ins/winicon/icodialog.c:151 +#: ../plug-ins/winicon/icodialog.c:117 msgid "GIMP Windows Icon Plugin" msgstr "" -#: ../plug-ins/winicon/icodialog.c:172 -#, fuzzy +#: ../plug-ins/winicon/icodialog.c:138 msgid "Icon details" -msgstr "ਇਕਾਈ ਵੇਰਵਾ" +msgstr "ਆਈਕਾਨ ਵੇਰਵਾ" #: ../plug-ins/winicon/icoload.c:340 #, c-format msgid "Icon #%i" msgstr "" -#: ../plug-ins/winicon/icosave.c:943 +#: ../plug-ins/winicon/icosave.c:969 msgid "Windows icons cannot be higher or wider than 255 pixels." msgstr "" @@ -11692,9 +11659,8 @@ msgstr "ਬਾਅਦ" #: ../plug-ins/winsnap/winsnap.c:919 -#, fuzzy msgid "Seconds delay" -msgstr "ਸਕਿੰਟਾਂ ਦਾ ਅੰਤਰਾਲ" +msgstr "ਸਕਿੰਟ ਅੰਤਰਾਲ" #: ../plug-ins/winsnap/winsnap.c:926 msgid "Include decorations" @@ -11743,9 +11709,8 @@ msgstr "" #: ../plug-ins/xjt/xjt.c:870 -#, fuzzy msgid "Clear transparent" -msgstr "ਪਾਰਦਰਸ਼ੀ" +msgstr "ਪਾਰਦਰਸ਼ੀ ਸਾਫ਼" #: ../plug-ins/xjt/xjt.c:882 msgid "Quality:" @@ -11769,258 +11734,3 @@ #, c-format msgid "Error: XJT property file '%s' is empty." msgstr "" - -#~ msgid "Before and After" -#~ msgstr "ਪਹਿਲਾਂ ਤੇ ਬਾਅਦ" - -#, fuzzy -#~ msgid "TIFF images" -#~ msgstr "TIFF ਚੈਨਲ" - -#~ msgid "Paint" -#~ msgstr "ਚਿੱਤਰ" - -#~ msgid "All" -#~ msgstr "ਸਭ" - -#~ msgid "/Move" -#~ msgstr "/ਭੇਜੋ" - -#~ msgid "/Stretch" -#~ msgstr "/ਖਿੱਚੋਂ" - -#~ msgid "/New" -#~ msgstr "/ਨਵਾਂ" - -#~ msgid "/Delete" -#~ msgstr "/ਹਟਾਓ" - -#~ msgid "/Redo" -#~ msgstr "/ਮੁਡ਼ ਕਰੋ" - -#, fuzzy -#~ msgid "/Filters/Render" -#~ msgstr "/ਫਿਲਟਰ/ਰੱਖੋ/ਆਂਸ਼ਿਕ ਐਕਸਪਲੋਰਰ..." - -#, fuzzy -#~ msgid "/Filters/Light Effects" -#~ msgstr "/ਫਿਲਟਰ/ਘੱਟ ਪ੍ਰਭਾਵ/ਰੌਸ਼ਨੀ ਪ੍ਰਭਾਵ਼" - -#, fuzzy -#~ msgid "/Filters/Map" -#~ msgstr "/ਫਿਲਟਰ/ਨਕਸ਼ਾ/ਨਕਸ਼ਾ ਆਬਜੈਕਟ..." - -#, fuzzy -#~ msgid "/Filters/Colors/Map" -#~ msgstr "/ਫਿਲਟਰ/ਨਕਸ਼ਾ/ਨਕਸ਼ਾ ਆਬਜੈਕਟ..." - -#, fuzzy -#~ msgid "/Filters/Render/Pattern" -#~ msgstr "/ਫਿਲਟਰ/ਰੱਖੋ/ਆਂਸ਼ਿਕ ਐਕਸਪਲੋਰਰ..." - -#, fuzzy -#~ msgid "/Filters/Animation" -#~ msgstr "/ਫਾਇਲ/ਛਾਪੋ..." - -#, fuzzy -#~ msgid "/Filters/Glass Effects" -#~ msgstr "/ਫਿਲਟਰ/ਨਕਸ਼ਾ/ਨਕਸ਼ਾ ਆਬਜੈਕਟ..." - -#, fuzzy -#~ msgid "/Layer/Colors/Auto" -#~ msgstr "/ਪਰਤ/ਰੰਗ/ਸਵੈ/ਰੰਗ ਵਾਧਾ" - -#, fuzzy -#~ msgid "/Filters/Distorts" -#~ msgstr "/ਫਾਇਲ/ਛਾਪੋ..." - -#, fuzzy -#~ msgid "/Filters/Blur" -#~ msgstr "/ਫਾਇਲ/ਛਾਪੋ..." - -#, fuzzy -#~ msgid "/Filters/Colors" -#~ msgstr "/ਫਾਇਲ/ਛਾਪੋ..." - -#, fuzzy -#~ msgid "/Layer/Colors/Info" -#~ msgstr "/ਪਰਤ/ਰੰਗ/ਸਵੈ/ਰੰਗ ਵਾਧਾ" - -#, fuzzy -#~ msgid "/Filters/Generic" -#~ msgstr "/ਫਾਇਲ/ਛਾਪੋ..." - -#, fuzzy -#~ msgid "/Filters/Artistic" -#~ msgstr "/ਫਾਇਲ/ਛਾਪੋ..." - -#, fuzzy -#~ msgid "/Filters/Enhance" -#~ msgstr "/ਫਿਲਟਰ/ਨਕਸ਼ਾ/ਨਕਸ਼ਾ ਆਬਜੈਕਟ..." - -#, fuzzy -#~ msgid "/Filters/Combine" -#~ msgstr "/ਫਾਇਲ/ਛਾਪੋ..." - -#, fuzzy -#~ msgid "/Filters/Edge-Detect" -#~ msgstr "/ਫਿਲਟਰ/ਨਕਸ਼ਾ/ਨਕਸ਼ਾ ਆਬਜੈਕਟ..." - -#, fuzzy -#~ msgid "/Filters/Toys" -#~ msgstr "/ਫਾਇਲ/ਛਾਪੋ..." - -#, fuzzy -#~ msgid "/File/Send" -#~ msgstr "/ਫਾਇਲ/ਛਾਪੋ..." - -#, fuzzy -#~ msgid "_Do preview" -#~ msgstr "ਨਮੂਨਾ" - -#, fuzzy -#~ msgid "/Filters/Noise" -#~ msgstr "/ਫਾਇਲ/ਛਾਪੋ..." - -#, fuzzy -#~ msgid "/Filters/Render/Clouds" -#~ msgstr "/ਫਿਲਟਰ/ਰੱਖੋ/ਆਂਸ਼ਿਕ ਐਕਸਪਲੋਰਰ..." - -#, fuzzy -#~ msgid "/File/Acquire" -#~ msgstr "/ਫਾਇਲ਼/ਪ੍ਰਾਪਤ ਕਰੋ/ਪਰਦਾ ਤਸਵੀਰ..." - -#, fuzzy -#~ msgid "/Filters/Render/Nature" -#~ msgstr "/ਫਿਲਟਰ/ਰੱਖੋ/ਆਂਸ਼ਿਕ ਐਕਸਪਲੋਰਰ..." - -#, fuzzy -#~ msgid "/Filters/Web" -#~ msgstr "/ਫਿਲਟਰ/ਨਕਸ਼ਾ/ਨਕਸ਼ਾ ਆਬਜੈਕਟ..." - -#, fuzzy -#~ msgid "Source" -#~ msgstr "ਸਰੋਤ 1:" - -#, fuzzy -#~ msgid "Do pre_view" -#~ msgstr "ਨਮੂਨਾ" - -#~ msgid "Details <<" -#~ msgstr "ਵੇਰਵਾ <<" - -#~ msgid "Details >>" -#~ msgstr "ਵੇਰਵਾ >>" - -#~ msgid "Name:" -#~ msgstr "ਨਾਂ:" - -#~ msgid "Help:" -#~ msgstr "ਸਹਾਇਤਾ:" - -#~ msgid "Search:" -#~ msgstr "ਖੋਜ:" - -#~ msgid "In:" -#~ msgstr "ਬਾਹਰ:" - -#~ msgid "Out:" -#~ msgstr "ਅੰਦਰ:" - -#, fuzzy -#~ msgid "_Spherical" -#~ msgstr "ਗੋਲਾਕਾਰ" - -#, fuzzy -#~ msgid "S_inusoidal" -#~ msgstr "ਸਾਈਨੋਸਾਇਡਲ" - -#~ msgid "Save: No filename given" -#~ msgstr "ਸੰਭਾਲੋ: ਕੋਈ ਫਾਇਲ-ਨਾਮ ਨਹੀ ਦਿੱਤਾ" - -#~ msgid "Cannot save to a folder." -#~ msgstr "ਫੋਲਡਰ ਵਿੱਚ ਸੰਭਾਲ ਨਹੀ ਸਕਦਾ ।" - -#~ msgid "Lig_ht Color:" -#~ msgstr "ਰੌਸ਼ਨੀ ਰੰਗ:" - -#~ msgid "_Ambient:" -#~ msgstr "ਹਰ-ਪਾਸੇ:" - -#~ msgid "_Diffuse:" -#~ msgstr "ਫੈਲਾਉਣਾ:" - -#~ msgid "D_iffuse:" -#~ msgstr "ਫੈਲਾਉਣਾ:" - -#~ msgid "_Specular:" -#~ msgstr "ਚਮਕੀਲਾ:" - -#~ msgid "_Highlight:" -#~ msgstr "ਉਭਾਰੋ:" - -#~ msgid "NULL" -#~ msgstr "NULL" - -#~ msgid "The Graph" -#~ msgstr "ਗਰਾਫ" - -#~ msgid "S_inusoidal Map" -#~ msgstr "ਸਾਈਨੋਸਾਇਡਲ ਨਕਸ਼ਾ" - -#~ msgid "Results" -#~ msgstr "ਨਤੀਜੇ" - -#~ msgid "Icon Name:" -#~ msgstr "ਆਈਕਾਨ ਨਾਂ:" - -#~ msgid "Brush" -#~ msgstr "ਬੁਰਸ਼" - -#~ msgid "Airbrush" -#~ msgstr "ਹਵਾਈ-ਬੁਰਸ਼" - -#~ msgid "Pencil" -#~ msgstr "ਪੈਨਸਿਲ" - -#~ msgid "New" -#~ msgstr "ਨਵਾਂ" - -#~ msgid "Multiple" -#~ msgstr "ਬਹੁ" - -#~ msgid "Using:" -#~ msgstr "ਵਰਤ ਕੇ:" - -#~ msgid "Add" -#~ msgstr "ਜੋੜ੍ਹੋ" - -#~ msgid "Subtract" -#~ msgstr "ਘਟਾਓ" - -#~ msgid "Intersect" -#~ msgstr "ਸ਼ਾਮਿਲ" - -#~ msgid "About Gfig" -#~ msgstr "Gfig ਬਾਰੇ" - -#~ msgid "Gfig - GIMP plug-in" -#~ msgstr "Gfig - ਜੈਮਪ ਪਲੱਗਇਨ" - -#~ msgid "Release 2.0" -#~ msgstr "ਜਾਰੀ ੨.੦" - -#~ msgid "%s copy" -#~ msgstr "%s ਨਕਲ" - -#~ msgid "(none)" -#~ msgstr "(ਕੋਈ ਨਹੀ)" - -#~ msgid "" -#~ msgstr "<ਕੋਈ ਨਹੀ>" - -#~ msgid "none" -#~ msgstr "ਕੋਈ ਨਹੀ" - -#~ msgid "Misc" -#~ msgstr "ਫੁਟਕਲ" diff -uraN gimp-2.2.4/po-plug-ins/pl.gmo gimp-2.2.5/po-plug-ins/pl.gmo --- gimp-2.2.4/po-plug-ins/pl.gmo 2005-02-22 23:12:44.000000000 +0100 +++ gimp-2.2.5/po-plug-ins/pl.gmo 2005-04-09 23:09:31.000000000 +0200 @@ -460,7 +460,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.gimp-2-2 Report-Msgid-Bugs-To: -POT-Creation-Date: 2005-02-22 23:04+0100 +POT-Creation-Date: 2005-04-09 21:56+0200 PO-Revision-Date: 2005-02-14 23:51+0100 Last-Translator: Bartosz Kosiorek Language-Team: Polish diff -uraN gimp-2.2.4/po-plug-ins/pl.po gimp-2.2.5/po-plug-ins/pl.po --- gimp-2.2.4/po-plug-ins/pl.po 2005-02-22 23:12:35.000000000 +0100 +++ gimp-2.2.5/po-plug-ins/pl.po 2005-04-09 23:09:22.000000000 +0200 @@ -20,7 +20,7 @@ msgstr "" "Project-Id-Version: gimp-plug-ins.gimp-2-2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-02-22 23:04+0100\n" +"POT-Creation-Date: 2005-04-09 21:56+0200\n" "PO-Revision-Date: 2005-02-14 23:51+0100\n" "Last-Translator: Bartosz Kosiorek \n" "Language-Team: Polish \n" @@ -401,7 +401,7 @@ #: ../plug-ins/common/pat.c:433 ../plug-ins/common/pcx.c:585 #: ../plug-ins/common/pix.c:515 ../plug-ins/common/png.c:1178 #: ../plug-ins/common/pnm.c:809 ../plug-ins/common/postscript.c:1123 -#: ../plug-ins/common/psd_save.c:1588 ../plug-ins/common/raw.c:517 +#: ../plug-ins/common/psd_save.c:1336 ../plug-ins/common/raw.c:517 #: ../plug-ins/common/raw.c:544 ../plug-ins/common/spheredesigner.c:2088 #: ../plug-ins/common/sunras.c:513 ../plug-ins/common/tga.c:1030 #: ../plug-ins/common/tiff.c:1810 ../plug-ins/common/xbm.c:996 @@ -1248,35 +1248,36 @@ #: ../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 +#: ../plug-ins/bmp/bmpread.c:207 ../plug-ins/bmp/bmpread.c:307 +#: ../plug-ins/bmp/bmpread.c:348 #, c-format msgid "'%s' is not a valid BMP file" msgstr "\"%s\" nie jest poprawnym plikiem w formacie BMP" #: ../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 +#: ../plug-ins/bmp/bmpread.c:300 ../plug-ins/bmp/bmpread.c:313 +#: ../plug-ins/bmp/bmpread.c:319 #, c-format msgid "Error reading BMP file header from '%s'" msgstr "Błąd przy odczytywaniu nagłówka formatu BMP z pliku \"%s\"" -#: ../plug-ins/bmp/bmpread.c:442 ../plug-ins/bmp/bmpread.c:477 +#: ../plug-ins/bmp/bmpread.c:450 ../plug-ins/bmp/bmpread.c:485 msgid "Unrecognized or invalid BMP compression format." msgstr "Nierospoznany lub nieprawidłowy format kompresji BMP." #. #. * Create the "background" layer to hold the image... #. -#: ../plug-ins/bmp/bmpread.c:482 ../plug-ins/common/CEL.c:357 +#: ../plug-ins/bmp/bmpread.c:490 ../plug-ins/common/CEL.c:357 #: ../plug-ins/common/CEL.c:360 ../plug-ins/common/blinds.c:273 #: ../plug-ins/common/compose.c:625 ../plug-ins/common/decompose.c:595 #: ../plug-ins/common/dicom.c:442 ../plug-ins/common/film.c:946 -#: ../plug-ins/common/gifload.c:865 ../plug-ins/common/jpeg.c:1113 +#: ../plug-ins/common/gifload.c:864 ../plug-ins/common/jpeg.c:1113 #: ../plug-ins/common/jpeg.c:2474 ../plug-ins/common/pcx.c:334 #: ../plug-ins/common/pcx.c:340 ../plug-ins/common/pix.c:374 #: ../plug-ins/common/png.c:808 ../plug-ins/common/pnm.c:517 -#: ../plug-ins/common/psd.c:2173 ../plug-ins/common/raw.c:677 +#: ../plug-ins/common/psd.c:2174 ../plug-ins/common/raw.c:677 #: ../plug-ins/common/smooth_palette.c:257 ../plug-ins/common/sunras.c:925 #: ../plug-ins/common/tga.c:929 ../plug-ins/common/tiff.c:833 #: ../plug-ins/common/tile.c:266 ../plug-ins/common/winclipboard.c:579 @@ -1307,12 +1308,12 @@ #: ../plug-ins/common/jpeg.c:1453 ../plug-ins/common/pat.c:438 #: ../plug-ins/common/pcx.c:545 ../plug-ins/common/pix.c:521 #: ../plug-ins/common/png.c:1185 ../plug-ins/common/pnm.c:814 -#: ../plug-ins/common/postscript.c:1128 ../plug-ins/common/psd_save.c:1593 +#: ../plug-ins/common/postscript.c:1128 ../plug-ins/common/psd_save.c:1341 #: ../plug-ins/common/sunras.c:518 ../plug-ins/common/tga.c:1035 #: ../plug-ins/common/tiff.c:1815 ../plug-ins/common/xbm.c:1001 #: ../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:957 +#: ../plug-ins/sgi/sgi.c:545 ../plug-ins/winicon/icosave.c:977 #: ../plug-ins/xjt/xjt.c:1682 #, c-format msgid "Saving '%s'..." @@ -1649,7 +1650,7 @@ msgstr "Odcień" #: ../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 +#: ../plug-ins/common/decompose.c:144 ../plug-ins/rcm/rcm_dialog.c:548 msgid "Saturation" msgstr "Nasycenie" @@ -2458,24 +2459,24 @@ msgid "Color to _Alpha..." msgstr "Zmiana koloru w _alfę..." -#: ../plug-ins/common/colortoalpha.c:181 +#: ../plug-ins/common/colortoalpha.c:187 msgid "Removing color..." msgstr "Usuwanie koloru..." -#: ../plug-ins/common/colortoalpha.c:377 +#: ../plug-ins/common/colortoalpha.c:380 msgid "Color to Alpha" msgstr "Zmiana koloru w alfę" -#: ../plug-ins/common/colortoalpha.c:402 ../plug-ins/common/mapcolor.c:424 +#: ../plug-ins/common/colortoalpha.c:405 ../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:406 +#: ../plug-ins/common/colortoalpha.c:409 msgid "Color to Alpha Color Picker" msgstr "Wybór koloru" -#: ../plug-ins/common/colortoalpha.c:420 +#: ../plug-ins/common/colortoalpha.c:423 msgid "to alpha" msgstr "do alfy" @@ -2498,13 +2499,13 @@ msgstr "HSV" #. Gray: Circle: Spinbutton 1 -#: ../plug-ins/common/compose.c:148 ../plug-ins/rcm/rcm_dialog.c:452 +#: ../plug-ins/common/compose.c:148 ../plug-ins/rcm/rcm_dialog.c:459 msgid "Hue:" msgstr "Odcień:" #. Gray: Circle: Spinbutton 2 #: ../plug-ins/common/compose.c:149 ../plug-ins/print/gimp_color_window.c:364 -#: ../plug-ins/rcm/rcm_dialog.c:479 +#: ../plug-ins/rcm/rcm_dialog.c:486 msgid "Saturation:" msgstr "Nasycenie:" @@ -3120,15 +3121,15 @@ msgid "Deinterlace..." msgstr "Usuwanie przeplotu..." -#: ../plug-ins/common/deinterlace.c:315 +#: ../plug-ins/common/deinterlace.c:324 msgid "Deinterlace" msgstr "Usunięcie przeplotu" -#: ../plug-ins/common/deinterlace.c:340 +#: ../plug-ins/common/deinterlace.c:349 msgid "Keep o_dd fields" msgstr "Zachowaj _nieparzyste pola" -#: ../plug-ins/common/deinterlace.c:341 +#: ../plug-ins/common/deinterlace.c:350 msgid "Keep _even fields" msgstr "Zachowaj p_arzyste pola" @@ -3527,7 +3528,7 @@ #. Create selection #: ../plug-ins/common/film.c:1166 ../plug-ins/imagemap/imap_selection.c:400 -#: ../plug-ins/rcm/rcm_dialog.c:158 +#: ../plug-ins/rcm/rcm_dialog.c:165 msgid "Selection" msgstr "Zaznaczenie" @@ -4070,23 +4071,23 @@ msgstr "" "Piksele nie mają kształtu prostokątnego. Obraz może wyglądać na zgniecony." -#: ../plug-ins/common/gifload.c:867 +#: ../plug-ins/common/gifload.c:866 #, c-format msgid "Background (%d%s)" msgstr "Tło (%d%s)" -#: ../plug-ins/common/gifload.c:915 ../plug-ins/common/iwarp.c:783 +#: ../plug-ins/common/gifload.c:914 ../plug-ins/common/iwarp.c:783 #: ../plug-ins/common/iwarp.c:817 #, c-format msgid "Frame %d" msgstr "Ramka %d" -#: ../plug-ins/common/gifload.c:917 +#: ../plug-ins/common/gifload.c:916 #, c-format msgid "Frame %d (%d%s)" msgstr "Ramka %d (%d%s)" -#: ../plug-ins/common/gifload.c:947 +#: ../plug-ins/common/gifload.c:946 #, c-format msgid "" "GIF: Undocumented GIF composite type %d is not handled. Animation might not " @@ -5866,7 +5867,7 @@ msgid "B/W" msgstr "Czarno Biały" -#: ../plug-ins/common/postscript.c:3003 ../plug-ins/rcm/rcm_dialog.c:404 +#: ../plug-ins/common/postscript.c:3003 ../plug-ins/rcm/rcm_dialog.c:411 msgid "Gray" msgstr "Szary" @@ -5957,11 +5958,11 @@ msgid "Invalid UTF-8 string in PSD file" msgstr "Niepoprawny napis UTF-8 w pliku PSD" -#: ../plug-ins/common/psd_save.c:181 +#: ../plug-ins/common/psd_save.c:192 msgid "Photoshop image" msgstr "Obraz Photoshop" -#: ../plug-ins/common/psd_save.c:1564 +#: ../plug-ins/common/psd_save.c:1312 #, c-format msgid "" "Unable to save '%s'. The psd file format does not support images that are " @@ -5970,7 +5971,7 @@ "Nie można zapisać '%s'. Format PSD nie obsługuje obrazów większych niż " "30000 wzdłuż lub wszerz." -#: ../plug-ins/common/psd_save.c:1576 +#: ../plug-ins/common/psd_save.c:1324 #, c-format msgid "" "Unable to save '%s'. The psd file format does not support images with " @@ -11453,87 +11454,87 @@ msgid "Rotating the colormap..." msgstr "Obracanie palety kolorów..." -#: ../plug-ins/rcm/rcm_dialog.c:114 +#: ../plug-ins/rcm/rcm_dialog.c:119 msgid "Original" msgstr "Oryginał" -#: ../plug-ins/rcm/rcm_dialog.c:127 +#: ../plug-ins/rcm/rcm_dialog.c:133 msgid "Rotated" msgstr "Obrócone" -#: ../plug-ins/rcm/rcm_dialog.c:140 +#: ../plug-ins/rcm/rcm_dialog.c:147 msgid "Continuous update" msgstr "Automatyczna aktualizacja" -#: ../plug-ins/rcm/rcm_dialog.c:153 +#: ../plug-ins/rcm/rcm_dialog.c:160 msgid "Area:" msgstr "Obszar:" -#: ../plug-ins/rcm/rcm_dialog.c:157 +#: ../plug-ins/rcm/rcm_dialog.c:164 msgid "Entire Layer" msgstr "Cała warstwa" -#: ../plug-ins/rcm/rcm_dialog.c:159 +#: ../plug-ins/rcm/rcm_dialog.c:166 msgid "Context" msgstr "Kontekst" #. spinbutton 1 -#: ../plug-ins/rcm/rcm_dialog.c:284 ../plug-ins/rcm/rcm_dialog.c:362 +#: ../plug-ins/rcm/rcm_dialog.c:291 ../plug-ins/rcm/rcm_dialog.c:369 msgid "From" msgstr "Z" #. spinbutton 2 -#: ../plug-ins/rcm/rcm_dialog.c:310 ../plug-ins/rcm/rcm_dialog.c:363 +#: ../plug-ins/rcm/rcm_dialog.c:317 ../plug-ins/rcm/rcm_dialog.c:370 msgid "To" msgstr "Do" #. * Gray: Operation-Mode * -#: ../plug-ins/rcm/rcm_dialog.c:499 +#: ../plug-ins/rcm/rcm_dialog.c:506 msgid "Gray Mode" msgstr "Tryb szarości" #. Gray: Operation-Mode: two radio buttons -#: ../plug-ins/rcm/rcm_dialog.c:508 +#: ../plug-ins/rcm/rcm_dialog.c:515 msgid "Treat as this" msgstr "Traktowanie jak wybrany" -#: ../plug-ins/rcm/rcm_dialog.c:520 +#: ../plug-ins/rcm/rcm_dialog.c:527 msgid "Change to this" msgstr "Zmiana na wybrany" #. * Gray: What is gray? * -#: ../plug-ins/rcm/rcm_dialog.c:533 +#: ../plug-ins/rcm/rcm_dialog.c:540 msgid "Gray Threshold" msgstr "Próg szarości" #. * Misc: Used unit selection * -#: ../plug-ins/rcm/rcm_dialog.c:572 ../plug-ins/rcm/rcm_dialog.c:676 +#: ../plug-ins/rcm/rcm_dialog.c:579 ../plug-ins/rcm/rcm_dialog.c:683 msgid "Units" msgstr "Jednostki" #. Misc: Used unit selection: 3 radio buttons -#: ../plug-ins/rcm/rcm_dialog.c:581 +#: ../plug-ins/rcm/rcm_dialog.c:588 msgid "Radians" msgstr "Radiany" -#: ../plug-ins/rcm/rcm_dialog.c:593 +#: ../plug-ins/rcm/rcm_dialog.c:600 msgid "Radians/Pi" msgstr "Radiany/Pi" -#: ../plug-ins/rcm/rcm_dialog.c:605 +#: ../plug-ins/rcm/rcm_dialog.c:612 msgid "Degrees" msgstr "Stopnie" #. Create dialog -#: ../plug-ins/rcm/rcm_dialog.c:638 +#: ../plug-ins/rcm/rcm_dialog.c:645 msgid "Colormap Rotation" msgstr "Obrót palety kolorów" -#: ../plug-ins/rcm/rcm_dialog.c:670 +#: ../plug-ins/rcm/rcm_dialog.c:677 msgid "Main Options" msgstr "Główne opcje" -#: ../plug-ins/rcm/rcm_dialog.c:673 +#: ../plug-ins/rcm/rcm_dialog.c:680 msgid "Gray Options" msgstr "Opcje szarości" @@ -11616,27 +11617,27 @@ msgid "Transferring TWAIN data..." msgstr "Pobieranie danych TWAIN..." -#: ../plug-ins/winicon/icodialog.c:123 +#: ../plug-ins/winicon/icodialog.c:89 msgid "1 bpp, 1-bit alpha, 2-slot palette" msgstr "1 bpp, 1-bitowe alpha, 2-kolorowa paleta" -#: ../plug-ins/winicon/icodialog.c:124 +#: ../plug-ins/winicon/icodialog.c:90 msgid "4 bpp, 1-bit alpha, 16-slot palette" msgstr "4 bpp, 1-bitowy alfa, 16-kolorowa paleta" -#: ../plug-ins/winicon/icodialog.c:125 +#: ../plug-ins/winicon/icodialog.c:91 msgid "8 bpp, 1-bit alpha, 256-slot palette" msgstr "8 bpp, 1-bitowe alfa, 256-kolorowa paleta" -#: ../plug-ins/winicon/icodialog.c:126 +#: ../plug-ins/winicon/icodialog.c:92 msgid "32 bpp, 8-bit alpha, no palette" msgstr "32 bpp, 8-bitowy alpha, brak palety" -#: ../plug-ins/winicon/icodialog.c:151 +#: ../plug-ins/winicon/icodialog.c:117 msgid "GIMP Windows Icon Plugin" msgstr "Wtyczka do ikon Windows" -#: ../plug-ins/winicon/icodialog.c:172 +#: ../plug-ins/winicon/icodialog.c:138 msgid "Icon details" msgstr "Szczegóły ikony" @@ -11645,7 +11646,7 @@ msgid "Icon #%i" msgstr "Ikona #%i" -#: ../plug-ins/winicon/icosave.c:943 +#: ../plug-ins/winicon/icosave.c:969 msgid "Windows icons cannot be higher or wider than 255 pixels." msgstr "Ikona Windows nie może być wyższa ani szersza od 255 pikselów." diff -uraN gimp-2.2.4/po-plug-ins/pt_BR.gmo gimp-2.2.5/po-plug-ins/pt_BR.gmo --- gimp-2.2.4/po-plug-ins/pt_BR.gmo 2005-02-22 23:12:44.000000000 +0100 +++ gimp-2.2.5/po-plug-ins/pt_BR.gmo 2005-04-09 23:09:31.000000000 +0200 @@ -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: 2005-02-22 23:04+0100 +POT-Creation-Date: 2005-04-09 21:56+0200 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.4/po-plug-ins/pt_BR.po gimp-2.2.5/po-plug-ins/pt_BR.po --- gimp-2.2.4/po-plug-ins/pt_BR.po 2005-02-22 23:12:36.000000000 +0100 +++ gimp-2.2.5/po-plug-ins/pt_BR.po 2005-04-09 23:09:22.000000000 +0200 @@ -12,7 +12,7 @@ msgstr "" "Project-Id-Version: gimp-plug-ins.HEAD\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-02-22 23:04+0100\n" +"POT-Creation-Date: 2005-04-09 21:56+0200\n" "PO-Revision-Date: 2004-12-14 03:49-0200\n" "Last-Translator: Joao S. O. Bueno Calligaris \n" "Language-Team: Brazilian Portuguese <>\n" @@ -393,7 +393,7 @@ #: ../plug-ins/common/pat.c:433 ../plug-ins/common/pcx.c:585 #: ../plug-ins/common/pix.c:515 ../plug-ins/common/png.c:1178 #: ../plug-ins/common/pnm.c:809 ../plug-ins/common/postscript.c:1123 -#: ../plug-ins/common/psd_save.c:1588 ../plug-ins/common/raw.c:517 +#: ../plug-ins/common/psd_save.c:1336 ../plug-ins/common/raw.c:517 #: ../plug-ins/common/raw.c:544 ../plug-ins/common/spheredesigner.c:2088 #: ../plug-ins/common/sunras.c:513 ../plug-ins/common/tga.c:1030 #: ../plug-ins/common/tiff.c:1810 ../plug-ins/common/xbm.c:996 @@ -1233,35 +1233,36 @@ #: ../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 +#: ../plug-ins/bmp/bmpread.c:207 ../plug-ins/bmp/bmpread.c:307 +#: ../plug-ins/bmp/bmpread.c:348 #, c-format msgid "'%s' is not a valid BMP file" msgstr "%s não é um arquivo BMP válido" #: ../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 +#: ../plug-ins/bmp/bmpread.c:300 ../plug-ins/bmp/bmpread.c:313 +#: ../plug-ins/bmp/bmpread.c:319 #, c-format msgid "Error reading BMP file header from '%s'" msgstr "Erro ao ler cabeçalho do arquivo BMP de '%s'" -#: ../plug-ins/bmp/bmpread.c:442 ../plug-ins/bmp/bmpread.c:477 +#: ../plug-ins/bmp/bmpread.c:450 ../plug-ins/bmp/bmpread.c:485 msgid "Unrecognized or invalid BMP compression format." msgstr "Formato de compressão do BMP não reconhecido ou inválido" #. #. * Create the "background" layer to hold the image... #. -#: ../plug-ins/bmp/bmpread.c:482 ../plug-ins/common/CEL.c:357 +#: ../plug-ins/bmp/bmpread.c:490 ../plug-ins/common/CEL.c:357 #: ../plug-ins/common/CEL.c:360 ../plug-ins/common/blinds.c:273 #: ../plug-ins/common/compose.c:625 ../plug-ins/common/decompose.c:595 #: ../plug-ins/common/dicom.c:442 ../plug-ins/common/film.c:946 -#: ../plug-ins/common/gifload.c:865 ../plug-ins/common/jpeg.c:1113 +#: ../plug-ins/common/gifload.c:864 ../plug-ins/common/jpeg.c:1113 #: ../plug-ins/common/jpeg.c:2474 ../plug-ins/common/pcx.c:334 #: ../plug-ins/common/pcx.c:340 ../plug-ins/common/pix.c:374 #: ../plug-ins/common/png.c:808 ../plug-ins/common/pnm.c:517 -#: ../plug-ins/common/psd.c:2173 ../plug-ins/common/raw.c:677 +#: ../plug-ins/common/psd.c:2174 ../plug-ins/common/raw.c:677 #: ../plug-ins/common/smooth_palette.c:257 ../plug-ins/common/sunras.c:925 #: ../plug-ins/common/tga.c:929 ../plug-ins/common/tiff.c:833 #: ../plug-ins/common/tile.c:266 ../plug-ins/common/winclipboard.c:579 @@ -1293,12 +1294,12 @@ #: ../plug-ins/common/jpeg.c:1453 ../plug-ins/common/pat.c:438 #: ../plug-ins/common/pcx.c:545 ../plug-ins/common/pix.c:521 #: ../plug-ins/common/png.c:1185 ../plug-ins/common/pnm.c:814 -#: ../plug-ins/common/postscript.c:1128 ../plug-ins/common/psd_save.c:1593 +#: ../plug-ins/common/postscript.c:1128 ../plug-ins/common/psd_save.c:1341 #: ../plug-ins/common/sunras.c:518 ../plug-ins/common/tga.c:1035 #: ../plug-ins/common/tiff.c:1815 ../plug-ins/common/xbm.c:1001 #: ../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:957 +#: ../plug-ins/sgi/sgi.c:545 ../plug-ins/winicon/icosave.c:977 #: ../plug-ins/xjt/xjt.c:1682 #, c-format msgid "Saving '%s'..." @@ -1634,7 +1635,7 @@ msgstr "Matiz" #: ../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 +#: ../plug-ins/common/decompose.c:144 ../plug-ins/rcm/rcm_dialog.c:548 msgid "Saturation" msgstr "Saturação" @@ -2443,24 +2444,24 @@ msgid "Color to _Alpha..." msgstr "Cor para _Alfa..." -#: ../plug-ins/common/colortoalpha.c:181 +#: ../plug-ins/common/colortoalpha.c:187 msgid "Removing color..." msgstr "Removendo cor..." -#: ../plug-ins/common/colortoalpha.c:377 +#: ../plug-ins/common/colortoalpha.c:380 msgid "Color to Alpha" msgstr "Cor para Alfa" -#: ../plug-ins/common/colortoalpha.c:402 ../plug-ins/common/mapcolor.c:424 +#: ../plug-ins/common/colortoalpha.c:405 ../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:406 +#: ../plug-ins/common/colortoalpha.c:409 msgid "Color to Alpha Color Picker" msgstr "Seletor de Cores do Cor para Alfa" -#: ../plug-ins/common/colortoalpha.c:420 +#: ../plug-ins/common/colortoalpha.c:423 msgid "to alpha" msgstr "para alfa" @@ -2483,13 +2484,13 @@ msgstr "HSV" #. Gray: Circle: Spinbutton 1 -#: ../plug-ins/common/compose.c:148 ../plug-ins/rcm/rcm_dialog.c:452 +#: ../plug-ins/common/compose.c:148 ../plug-ins/rcm/rcm_dialog.c:459 msgid "Hue:" msgstr "Matiz:" #. Gray: Circle: Spinbutton 2 #: ../plug-ins/common/compose.c:149 ../plug-ins/print/gimp_color_window.c:364 -#: ../plug-ins/rcm/rcm_dialog.c:479 +#: ../plug-ins/rcm/rcm_dialog.c:486 msgid "Saturation:" msgstr "Saturação:" @@ -3107,15 +3108,15 @@ msgid "Deinterlace..." msgstr "Desentrelaçar..." -#: ../plug-ins/common/deinterlace.c:315 +#: ../plug-ins/common/deinterlace.c:324 msgid "Deinterlace" msgstr "Desentrelaçar" -#: ../plug-ins/common/deinterlace.c:340 +#: ../plug-ins/common/deinterlace.c:349 msgid "Keep o_dd fields" msgstr "Manter c_ampos ímpares" -#: ../plug-ins/common/deinterlace.c:341 +#: ../plug-ins/common/deinterlace.c:350 msgid "Keep _even fields" msgstr "Manter campos _pares" @@ -3515,7 +3516,7 @@ #. Create selection #: ../plug-ins/common/film.c:1166 ../plug-ins/imagemap/imap_selection.c:400 -#: ../plug-ins/rcm/rcm_dialog.c:158 +#: ../plug-ins/rcm/rcm_dialog.c:165 msgid "Selection" msgstr "Seleção" @@ -4056,23 +4057,23 @@ msgid "Non-square pixels. Image might look squashed." msgstr "Pixels não quadrados: Imagem pode parecer amassada." -#: ../plug-ins/common/gifload.c:867 +#: ../plug-ins/common/gifload.c:866 #, c-format msgid "Background (%d%s)" msgstr "Fundo (%d%s)" -#: ../plug-ins/common/gifload.c:915 ../plug-ins/common/iwarp.c:783 +#: ../plug-ins/common/gifload.c:914 ../plug-ins/common/iwarp.c:783 #: ../plug-ins/common/iwarp.c:817 #, c-format msgid "Frame %d" msgstr "Quadro %d" -#: ../plug-ins/common/gifload.c:917 +#: ../plug-ins/common/gifload.c:916 #, c-format msgid "Frame %d (%d%s)" msgstr "Quadro %d (%d%s)" -#: ../plug-ins/common/gifload.c:947 +#: ../plug-ins/common/gifload.c:946 #, c-format msgid "" "GIF: Undocumented GIF composite type %d is not handled. Animation might not " @@ -5863,7 +5864,7 @@ msgid "B/W" msgstr "Preto & Branco" -#: ../plug-ins/common/postscript.c:3003 ../plug-ins/rcm/rcm_dialog.c:404 +#: ../plug-ins/common/postscript.c:3003 ../plug-ins/rcm/rcm_dialog.c:411 msgid "Gray" msgstr "Cinza" @@ -5954,11 +5955,11 @@ msgid "Invalid UTF-8 string in PSD file" msgstr "String UTF-8 inválida em arquivo PSD" -#: ../plug-ins/common/psd_save.c:181 +#: ../plug-ins/common/psd_save.c:192 msgid "Photoshop image" msgstr "Imagem do Photoshop" -#: ../plug-ins/common/psd_save.c:1564 +#: ../plug-ins/common/psd_save.c:1312 #, c-format msgid "" "Unable to save '%s'. The psd file format does not support images that are " @@ -5967,7 +5968,7 @@ "Não é possível salvar '%s'. O formato de arquivo PSD não suporta imagens que " "tenham mais de 30000 pixels de largura ou de altura." -#: ../plug-ins/common/psd_save.c:1576 +#: ../plug-ins/common/psd_save.c:1324 #, c-format msgid "" "Unable to save '%s'. The psd file format does not support images with " @@ -11464,87 +11465,87 @@ msgid "Rotating the colormap..." msgstr "Rotacionando o mapa de cores..." -#: ../plug-ins/rcm/rcm_dialog.c:114 +#: ../plug-ins/rcm/rcm_dialog.c:119 msgid "Original" msgstr "Original" -#: ../plug-ins/rcm/rcm_dialog.c:127 +#: ../plug-ins/rcm/rcm_dialog.c:133 msgid "Rotated" msgstr "Rotacionado" -#: ../plug-ins/rcm/rcm_dialog.c:140 +#: ../plug-ins/rcm/rcm_dialog.c:147 msgid "Continuous update" msgstr "Atualização contínua" -#: ../plug-ins/rcm/rcm_dialog.c:153 +#: ../plug-ins/rcm/rcm_dialog.c:160 msgid "Area:" msgstr "Área" -#: ../plug-ins/rcm/rcm_dialog.c:157 +#: ../plug-ins/rcm/rcm_dialog.c:164 msgid "Entire Layer" msgstr "Camada Inteira" -#: ../plug-ins/rcm/rcm_dialog.c:159 +#: ../plug-ins/rcm/rcm_dialog.c:166 msgid "Context" msgstr "Contexto" #. spinbutton 1 -#: ../plug-ins/rcm/rcm_dialog.c:284 ../plug-ins/rcm/rcm_dialog.c:362 +#: ../plug-ins/rcm/rcm_dialog.c:291 ../plug-ins/rcm/rcm_dialog.c:369 msgid "From" msgstr "A partir de" #. spinbutton 2 -#: ../plug-ins/rcm/rcm_dialog.c:310 ../plug-ins/rcm/rcm_dialog.c:363 +#: ../plug-ins/rcm/rcm_dialog.c:317 ../plug-ins/rcm/rcm_dialog.c:370 msgid "To" msgstr "Para" #. * Gray: Operation-Mode * -#: ../plug-ins/rcm/rcm_dialog.c:499 +#: ../plug-ins/rcm/rcm_dialog.c:506 msgid "Gray Mode" msgstr "Modo Cinza" #. Gray: Operation-Mode: two radio buttons -#: ../plug-ins/rcm/rcm_dialog.c:508 +#: ../plug-ins/rcm/rcm_dialog.c:515 msgid "Treat as this" msgstr "Tratar como este" -#: ../plug-ins/rcm/rcm_dialog.c:520 +#: ../plug-ins/rcm/rcm_dialog.c:527 msgid "Change to this" msgstr "Mudar para este" #. * Gray: What is gray? * -#: ../plug-ins/rcm/rcm_dialog.c:533 +#: ../plug-ins/rcm/rcm_dialog.c:540 msgid "Gray Threshold" msgstr "Limite de Cinza" #. * Misc: Used unit selection * -#: ../plug-ins/rcm/rcm_dialog.c:572 ../plug-ins/rcm/rcm_dialog.c:676 +#: ../plug-ins/rcm/rcm_dialog.c:579 ../plug-ins/rcm/rcm_dialog.c:683 msgid "Units" msgstr "Unidades" #. Misc: Used unit selection: 3 radio buttons -#: ../plug-ins/rcm/rcm_dialog.c:581 +#: ../plug-ins/rcm/rcm_dialog.c:588 msgid "Radians" msgstr "Radianos" -#: ../plug-ins/rcm/rcm_dialog.c:593 +#: ../plug-ins/rcm/rcm_dialog.c:600 msgid "Radians/Pi" msgstr "Radianos/Pi" -#: ../plug-ins/rcm/rcm_dialog.c:605 +#: ../plug-ins/rcm/rcm_dialog.c:612 msgid "Degrees" msgstr "Graus" #. Create dialog -#: ../plug-ins/rcm/rcm_dialog.c:638 +#: ../plug-ins/rcm/rcm_dialog.c:645 msgid "Colormap Rotation" msgstr "Rotação do Mapa de Cores" -#: ../plug-ins/rcm/rcm_dialog.c:670 +#: ../plug-ins/rcm/rcm_dialog.c:677 msgid "Main Options" msgstr "Opções Principais" -#: ../plug-ins/rcm/rcm_dialog.c:673 +#: ../plug-ins/rcm/rcm_dialog.c:680 msgid "Gray Options" msgstr "Opções de Cinza" @@ -11627,27 +11628,27 @@ msgid "Transferring TWAIN data..." msgstr "Transferindo dados do TWAIN" -#: ../plug-ins/winicon/icodialog.c:123 +#: ../plug-ins/winicon/icodialog.c:89 msgid "1 bpp, 1-bit alpha, 2-slot palette" msgstr "1 bpp, 1-bit alfa, paleta de 2 slots" -#: ../plug-ins/winicon/icodialog.c:124 +#: ../plug-ins/winicon/icodialog.c:90 msgid "4 bpp, 1-bit alpha, 16-slot palette" msgstr "4 bpp, 1-bit alfa, paleta de 16 slots." -#: ../plug-ins/winicon/icodialog.c:125 +#: ../plug-ins/winicon/icodialog.c:91 msgid "8 bpp, 1-bit alpha, 256-slot palette" msgstr "8 bpp, 1-bit alfa, paleta de 256 slots." -#: ../plug-ins/winicon/icodialog.c:126 +#: ../plug-ins/winicon/icodialog.c:92 msgid "32 bpp, 8-bit alpha, no palette" msgstr "32 bpp, 8-bit alfa, sem paleta " -#: ../plug-ins/winicon/icodialog.c:151 +#: ../plug-ins/winicon/icodialog.c:117 msgid "GIMP Windows Icon Plugin" msgstr "Plug-in de Ícone de Windows do GIMP" -#: ../plug-ins/winicon/icodialog.c:172 +#: ../plug-ins/winicon/icodialog.c:138 msgid "Icon details" msgstr "Detalhes do Ícone" @@ -11656,7 +11657,7 @@ msgid "Icon #%i" msgstr "Ícone nº %i" -#: ../plug-ins/winicon/icosave.c:943 +#: ../plug-ins/winicon/icosave.c:969 msgid "Windows icons cannot be higher or wider than 255 pixels." msgstr "" "Ícones do Windows não podem ser mais altos ou mais largos do que 255 pixels." diff -uraN gimp-2.2.4/po-plug-ins/pt.gmo gimp-2.2.5/po-plug-ins/pt.gmo --- gimp-2.2.4/po-plug-ins/pt.gmo 2005-02-22 23:12:44.000000000 +0100 +++ gimp-2.2.5/po-plug-ins/pt.gmo 2005-04-09 23:09:31.000000000 +0200 @@ -294,7 +294,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: 2005-02-22 23:04+0100 +POT-Creation-Date: 2005-04-09 21:56+0200 PO-Revision-Date: 2004-03-21 20:30+0000 Last-Translator: Duarte Loreto Language-Team: Portuguese diff -uraN gimp-2.2.4/po-plug-ins/pt.po gimp-2.2.5/po-plug-ins/pt.po --- gimp-2.2.4/po-plug-ins/pt.po 2005-02-22 23:12:36.000000000 +0100 +++ gimp-2.2.5/po-plug-ins/pt.po 2005-04-09 23:09:22.000000000 +0200 @@ -12,7 +12,7 @@ msgstr "" "Project-Id-Version: 2.6\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-02-22 23:04+0100\n" +"POT-Creation-Date: 2005-04-09 21:56+0200\n" "PO-Revision-Date: 2004-03-21 20:30+0000\n" "Last-Translator: Duarte Loreto \n" "Language-Team: Portuguese \n" @@ -391,7 +391,7 @@ #: ../plug-ins/common/pat.c:433 ../plug-ins/common/pcx.c:585 #: ../plug-ins/common/pix.c:515 ../plug-ins/common/png.c:1178 #: ../plug-ins/common/pnm.c:809 ../plug-ins/common/postscript.c:1123 -#: ../plug-ins/common/psd_save.c:1588 ../plug-ins/common/raw.c:517 +#: ../plug-ins/common/psd_save.c:1336 ../plug-ins/common/raw.c:517 #: ../plug-ins/common/raw.c:544 ../plug-ins/common/spheredesigner.c:2088 #: ../plug-ins/common/sunras.c:513 ../plug-ins/common/tga.c:1030 #: ../plug-ins/common/tiff.c:1810 ../plug-ins/common/xbm.c:996 @@ -1273,35 +1273,36 @@ #: ../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 +#: ../plug-ins/bmp/bmpread.c:207 ../plug-ins/bmp/bmpread.c:307 +#: ../plug-ins/bmp/bmpread.c:348 #, c-format msgid "'%s' is not a valid BMP file" msgstr "'%s' não é um ficheiro BMP válido" #: ../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 +#: ../plug-ins/bmp/bmpread.c:300 ../plug-ins/bmp/bmpread.c:313 +#: ../plug-ins/bmp/bmpread.c:319 #, c-format msgid "Error reading BMP file header from '%s'" msgstr "Erro ao ler cabeçalho do ficheiro BMP de '%s'" -#: ../plug-ins/bmp/bmpread.c:442 ../plug-ins/bmp/bmpread.c:477 +#: ../plug-ins/bmp/bmpread.c:450 ../plug-ins/bmp/bmpread.c:485 msgid "Unrecognized or invalid BMP compression format." msgstr "" #. #. * Create the "background" layer to hold the image... #. -#: ../plug-ins/bmp/bmpread.c:482 ../plug-ins/common/CEL.c:357 +#: ../plug-ins/bmp/bmpread.c:490 ../plug-ins/common/CEL.c:357 #: ../plug-ins/common/CEL.c:360 ../plug-ins/common/blinds.c:273 #: ../plug-ins/common/compose.c:625 ../plug-ins/common/decompose.c:595 #: ../plug-ins/common/dicom.c:442 ../plug-ins/common/film.c:946 -#: ../plug-ins/common/gifload.c:865 ../plug-ins/common/jpeg.c:1113 +#: ../plug-ins/common/gifload.c:864 ../plug-ins/common/jpeg.c:1113 #: ../plug-ins/common/jpeg.c:2474 ../plug-ins/common/pcx.c:334 #: ../plug-ins/common/pcx.c:340 ../plug-ins/common/pix.c:374 #: ../plug-ins/common/png.c:808 ../plug-ins/common/pnm.c:517 -#: ../plug-ins/common/psd.c:2173 ../plug-ins/common/raw.c:677 +#: ../plug-ins/common/psd.c:2174 ../plug-ins/common/raw.c:677 #: ../plug-ins/common/smooth_palette.c:257 ../plug-ins/common/sunras.c:925 #: ../plug-ins/common/tga.c:929 ../plug-ins/common/tiff.c:833 #: ../plug-ins/common/tile.c:266 ../plug-ins/common/winclipboard.c:579 @@ -1332,12 +1333,12 @@ #: ../plug-ins/common/jpeg.c:1453 ../plug-ins/common/pat.c:438 #: ../plug-ins/common/pcx.c:545 ../plug-ins/common/pix.c:521 #: ../plug-ins/common/png.c:1185 ../plug-ins/common/pnm.c:814 -#: ../plug-ins/common/postscript.c:1128 ../plug-ins/common/psd_save.c:1593 +#: ../plug-ins/common/postscript.c:1128 ../plug-ins/common/psd_save.c:1341 #: ../plug-ins/common/sunras.c:518 ../plug-ins/common/tga.c:1035 #: ../plug-ins/common/tiff.c:1815 ../plug-ins/common/xbm.c:1001 #: ../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:957 +#: ../plug-ins/sgi/sgi.c:545 ../plug-ins/winicon/icosave.c:977 #: ../plug-ins/xjt/xjt.c:1682 #, c-format msgid "Saving '%s'..." @@ -1694,7 +1695,7 @@ msgstr "Matiz" #: ../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 +#: ../plug-ins/common/decompose.c:144 ../plug-ins/rcm/rcm_dialog.c:548 msgid "Saturation" msgstr "Saturação" @@ -2581,24 +2582,24 @@ msgid "Color to _Alpha..." msgstr "Cor para Alfa" -#: ../plug-ins/common/colortoalpha.c:181 +#: ../plug-ins/common/colortoalpha.c:187 msgid "Removing color..." msgstr "A remover cores..." -#: ../plug-ins/common/colortoalpha.c:377 +#: ../plug-ins/common/colortoalpha.c:380 msgid "Color to Alpha" msgstr "Cor para Alfa" -#: ../plug-ins/common/colortoalpha.c:402 ../plug-ins/common/mapcolor.c:424 +#: ../plug-ins/common/colortoalpha.c:405 ../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:406 +#: ../plug-ins/common/colortoalpha.c:409 msgid "Color to Alpha Color Picker" msgstr "Cor para Selector de Cor Alfa" -#: ../plug-ins/common/colortoalpha.c:420 +#: ../plug-ins/common/colortoalpha.c:423 #, fuzzy msgid "to alpha" msgstr "para Alfa" @@ -2622,13 +2623,13 @@ msgstr "HSV" #. Gray: Circle: Spinbutton 1 -#: ../plug-ins/common/compose.c:148 ../plug-ins/rcm/rcm_dialog.c:452 +#: ../plug-ins/common/compose.c:148 ../plug-ins/rcm/rcm_dialog.c:459 msgid "Hue:" msgstr "Matiz:" #. Gray: Circle: Spinbutton 2 #: ../plug-ins/common/compose.c:149 ../plug-ins/print/gimp_color_window.c:364 -#: ../plug-ins/rcm/rcm_dialog.c:479 +#: ../plug-ins/rcm/rcm_dialog.c:486 msgid "Saturation:" msgstr "Saturação:" @@ -3265,16 +3266,16 @@ msgid "Deinterlace..." msgstr "Desentrelaçar..." -#: ../plug-ins/common/deinterlace.c:315 +#: ../plug-ins/common/deinterlace.c:324 msgid "Deinterlace" msgstr "Desentrelace" -#: ../plug-ins/common/deinterlace.c:340 +#: ../plug-ins/common/deinterlace.c:349 #, fuzzy msgid "Keep o_dd fields" msgstr "Man_ter Campos Ímpares" -#: ../plug-ins/common/deinterlace.c:341 +#: ../plug-ins/common/deinterlace.c:350 #, fuzzy msgid "Keep _even fields" msgstr "Manter Campos _Pares" @@ -3717,7 +3718,7 @@ #. Create selection #: ../plug-ins/common/film.c:1166 ../plug-ins/imagemap/imap_selection.c:400 -#: ../plug-ins/rcm/rcm_dialog.c:158 +#: ../plug-ins/rcm/rcm_dialog.c:165 msgid "Selection" msgstr "Selecção" @@ -4287,23 +4288,23 @@ msgid "Non-square pixels. Image might look squashed." msgstr "Pixels não-quadrados. Imagem poderá ficar deformada." -#: ../plug-ins/common/gifload.c:867 +#: ../plug-ins/common/gifload.c:866 #, c-format msgid "Background (%d%s)" msgstr "Fundo (%d%s)" -#: ../plug-ins/common/gifload.c:915 ../plug-ins/common/iwarp.c:783 +#: ../plug-ins/common/gifload.c:914 ../plug-ins/common/iwarp.c:783 #: ../plug-ins/common/iwarp.c:817 #, c-format msgid "Frame %d" msgstr "Frame %d" -#: ../plug-ins/common/gifload.c:917 +#: ../plug-ins/common/gifload.c:916 #, c-format msgid "Frame %d (%d%s)" msgstr "Frame %d (%d%s)" -#: ../plug-ins/common/gifload.c:947 +#: ../plug-ins/common/gifload.c:946 #, c-format msgid "" "GIF: Undocumented GIF composite type %d is not handled. Animation might not " @@ -6228,7 +6229,7 @@ msgid "B/W" msgstr "P/B" -#: ../plug-ins/common/postscript.c:3003 ../plug-ins/rcm/rcm_dialog.c:404 +#: ../plug-ins/common/postscript.c:3003 ../plug-ins/rcm/rcm_dialog.c:411 msgid "Gray" msgstr "Cinza" @@ -6324,18 +6325,18 @@ msgid "Invalid UTF-8 string in PSD file" msgstr "Expressão UTF-8 inválida em ficheiro PSD" -#: ../plug-ins/common/psd_save.c:181 +#: ../plug-ins/common/psd_save.c:192 msgid "Photoshop image" msgstr "" -#: ../plug-ins/common/psd_save.c:1564 +#: ../plug-ins/common/psd_save.c:1312 #, c-format msgid "" "Unable to save '%s'. The psd file format does not support images that are " "more than 30000 pixels wide or tall." msgstr "" -#: ../plug-ins/common/psd_save.c:1576 +#: ../plug-ins/common/psd_save.c:1324 #, c-format msgid "" "Unable to save '%s'. The psd file format does not support images with " @@ -12121,89 +12122,89 @@ msgid "Rotating the colormap..." msgstr "A rodar o mapa de cores..." -#: ../plug-ins/rcm/rcm_dialog.c:114 +#: ../plug-ins/rcm/rcm_dialog.c:119 msgid "Original" msgstr "Original" -#: ../plug-ins/rcm/rcm_dialog.c:127 +#: ../plug-ins/rcm/rcm_dialog.c:133 msgid "Rotated" msgstr "Rodado" -#: ../plug-ins/rcm/rcm_dialog.c:140 +#: ../plug-ins/rcm/rcm_dialog.c:147 msgid "Continuous update" msgstr "Actualização contínua" -#: ../plug-ins/rcm/rcm_dialog.c:153 +#: ../plug-ins/rcm/rcm_dialog.c:160 msgid "Area:" msgstr "Área:" -#: ../plug-ins/rcm/rcm_dialog.c:157 +#: ../plug-ins/rcm/rcm_dialog.c:164 msgid "Entire Layer" msgstr "Camada Inteira" -#: ../plug-ins/rcm/rcm_dialog.c:159 +#: ../plug-ins/rcm/rcm_dialog.c:166 msgid "Context" msgstr "Conteúdo" #. spinbutton 1 -#: ../plug-ins/rcm/rcm_dialog.c:284 ../plug-ins/rcm/rcm_dialog.c:362 +#: ../plug-ins/rcm/rcm_dialog.c:291 ../plug-ins/rcm/rcm_dialog.c:369 msgid "From" msgstr "A partir de:" #. spinbutton 2 -#: ../plug-ins/rcm/rcm_dialog.c:310 ../plug-ins/rcm/rcm_dialog.c:363 +#: ../plug-ins/rcm/rcm_dialog.c:317 ../plug-ins/rcm/rcm_dialog.c:370 msgid "To" msgstr "Para:" #. * Gray: Operation-Mode * -#: ../plug-ins/rcm/rcm_dialog.c:499 +#: ../plug-ins/rcm/rcm_dialog.c:506 #, fuzzy msgid "Gray Mode" msgstr "Modo Cores" #. Gray: Operation-Mode: two radio buttons -#: ../plug-ins/rcm/rcm_dialog.c:508 +#: ../plug-ins/rcm/rcm_dialog.c:515 msgid "Treat as this" msgstr "Tratar como este" -#: ../plug-ins/rcm/rcm_dialog.c:520 +#: ../plug-ins/rcm/rcm_dialog.c:527 msgid "Change to this" msgstr "Mudar para este" #. * Gray: What is gray? * -#: ../plug-ins/rcm/rcm_dialog.c:533 +#: ../plug-ins/rcm/rcm_dialog.c:540 #, fuzzy msgid "Gray Threshold" msgstr "Limite Ve_rde:" #. * Misc: Used unit selection * -#: ../plug-ins/rcm/rcm_dialog.c:572 ../plug-ins/rcm/rcm_dialog.c:676 +#: ../plug-ins/rcm/rcm_dialog.c:579 ../plug-ins/rcm/rcm_dialog.c:683 msgid "Units" msgstr "Unidades" #. Misc: Used unit selection: 3 radio buttons -#: ../plug-ins/rcm/rcm_dialog.c:581 +#: ../plug-ins/rcm/rcm_dialog.c:588 msgid "Radians" msgstr "Radianos" -#: ../plug-ins/rcm/rcm_dialog.c:593 +#: ../plug-ins/rcm/rcm_dialog.c:600 msgid "Radians/Pi" msgstr "Radianos/PI" -#: ../plug-ins/rcm/rcm_dialog.c:605 +#: ../plug-ins/rcm/rcm_dialog.c:612 msgid "Degrees" msgstr "Graus" #. Create dialog -#: ../plug-ins/rcm/rcm_dialog.c:638 +#: ../plug-ins/rcm/rcm_dialog.c:645 msgid "Colormap Rotation" msgstr "Rotação do Mapa Cores" -#: ../plug-ins/rcm/rcm_dialog.c:670 +#: ../plug-ins/rcm/rcm_dialog.c:677 msgid "Main Options" msgstr "Opções Principais" -#: ../plug-ins/rcm/rcm_dialog.c:673 +#: ../plug-ins/rcm/rcm_dialog.c:680 #, fuzzy msgid "Gray Options" msgstr "Opções Gerais" @@ -12291,27 +12292,27 @@ msgid "Transferring TWAIN data..." msgstr "A transferir dados TWAIN..." -#: ../plug-ins/winicon/icodialog.c:123 +#: ../plug-ins/winicon/icodialog.c:89 msgid "1 bpp, 1-bit alpha, 2-slot palette" msgstr "" -#: ../plug-ins/winicon/icodialog.c:124 +#: ../plug-ins/winicon/icodialog.c:90 msgid "4 bpp, 1-bit alpha, 16-slot palette" msgstr "" -#: ../plug-ins/winicon/icodialog.c:125 +#: ../plug-ins/winicon/icodialog.c:91 msgid "8 bpp, 1-bit alpha, 256-slot palette" msgstr "" -#: ../plug-ins/winicon/icodialog.c:126 +#: ../plug-ins/winicon/icodialog.c:92 msgid "32 bpp, 8-bit alpha, no palette" msgstr "" -#: ../plug-ins/winicon/icodialog.c:151 +#: ../plug-ins/winicon/icodialog.c:117 msgid "GIMP Windows Icon Plugin" msgstr "" -#: ../plug-ins/winicon/icodialog.c:172 +#: ../plug-ins/winicon/icodialog.c:138 #, fuzzy msgid "Icon details" msgstr "Detalhes Colecção" @@ -12321,7 +12322,7 @@ msgid "Icon #%i" msgstr "" -#: ../plug-ins/winicon/icosave.c:943 +#: ../plug-ins/winicon/icosave.c:969 msgid "Windows icons cannot be higher or wider than 255 pixels." msgstr "" diff -uraN gimp-2.2.4/po-plug-ins/ro.gmo gimp-2.2.5/po-plug-ins/ro.gmo --- gimp-2.2.4/po-plug-ins/ro.gmo 2005-02-22 23:12:45.000000000 +0100 +++ gimp-2.2.5/po-plug-ins/ro.gmo 2005-04-09 23:09:32.000000000 +0200 @@ -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: 2005-02-22 23:04+0100 +POT-Creation-Date: 2005-04-09 21:56+0200 PO-Revision-Date: 2000-11-24 15:46+0100 Last-Translator: Robert Claudiu Gheorghe Language-Team: Română diff -uraN gimp-2.2.4/po-plug-ins/ro.po gimp-2.2.5/po-plug-ins/ro.po --- gimp-2.2.4/po-plug-ins/ro.po 2005-02-22 23:12:37.000000000 +0100 +++ gimp-2.2.5/po-plug-ins/ro.po 2005-04-09 23:09:23.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: gimp-plugins\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-02-22 23:04+0100\n" +"POT-Creation-Date: 2005-04-09 21:56+0200\n" "PO-Revision-Date: 2000-11-24 15:46+0100\n" "Last-Translator: Robert Claudiu Gheorghe \n" "Language-Team: Română \n" @@ -396,7 +396,7 @@ #: ../plug-ins/common/pat.c:433 ../plug-ins/common/pcx.c:585 #: ../plug-ins/common/pix.c:515 ../plug-ins/common/png.c:1178 #: ../plug-ins/common/pnm.c:809 ../plug-ins/common/postscript.c:1123 -#: ../plug-ins/common/psd_save.c:1588 ../plug-ins/common/raw.c:517 +#: ../plug-ins/common/psd_save.c:1336 ../plug-ins/common/raw.c:517 #: ../plug-ins/common/raw.c:544 ../plug-ins/common/spheredesigner.c:2088 #: ../plug-ins/common/sunras.c:513 ../plug-ins/common/tga.c:1030 #: ../plug-ins/common/tiff.c:1810 ../plug-ins/common/xbm.c:996 @@ -1324,7 +1324,8 @@ #: ../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 +#: ../plug-ins/bmp/bmpread.c:207 ../plug-ins/bmp/bmpread.c:307 +#: ../plug-ins/bmp/bmpread.c:348 #, fuzzy, c-format msgid "'%s' is not a valid BMP file" msgstr "" @@ -1333,28 +1334,28 @@ #: ../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 +#: ../plug-ins/bmp/bmpread.c:300 ../plug-ins/bmp/bmpread.c:313 +#: ../plug-ins/bmp/bmpread.c:319 #, fuzzy, c-format msgid "Error reading BMP file header from '%s'" msgstr "Eroare la deschiderea fişierului: %s\n" -#: ../plug-ins/bmp/bmpread.c:442 ../plug-ins/bmp/bmpread.c:477 +#: ../plug-ins/bmp/bmpread.c:450 ../plug-ins/bmp/bmpread.c:485 msgid "Unrecognized or invalid BMP compression format." msgstr "" #. #. * Create the "background" layer to hold the image... #. -#: ../plug-ins/bmp/bmpread.c:482 ../plug-ins/common/CEL.c:357 +#: ../plug-ins/bmp/bmpread.c:490 ../plug-ins/common/CEL.c:357 #: ../plug-ins/common/CEL.c:360 ../plug-ins/common/blinds.c:273 #: ../plug-ins/common/compose.c:625 ../plug-ins/common/decompose.c:595 #: ../plug-ins/common/dicom.c:442 ../plug-ins/common/film.c:946 -#: ../plug-ins/common/gifload.c:865 ../plug-ins/common/jpeg.c:1113 +#: ../plug-ins/common/gifload.c:864 ../plug-ins/common/jpeg.c:1113 #: ../plug-ins/common/jpeg.c:2474 ../plug-ins/common/pcx.c:334 #: ../plug-ins/common/pcx.c:340 ../plug-ins/common/pix.c:374 #: ../plug-ins/common/png.c:808 ../plug-ins/common/pnm.c:517 -#: ../plug-ins/common/psd.c:2173 ../plug-ins/common/raw.c:677 +#: ../plug-ins/common/psd.c:2174 ../plug-ins/common/raw.c:677 #: ../plug-ins/common/smooth_palette.c:257 ../plug-ins/common/sunras.c:925 #: ../plug-ins/common/tga.c:929 ../plug-ins/common/tiff.c:833 #: ../plug-ins/common/tile.c:266 ../plug-ins/common/winclipboard.c:579 @@ -1389,12 +1390,12 @@ #: ../plug-ins/common/jpeg.c:1453 ../plug-ins/common/pat.c:438 #: ../plug-ins/common/pcx.c:545 ../plug-ins/common/pix.c:521 #: ../plug-ins/common/png.c:1185 ../plug-ins/common/pnm.c:814 -#: ../plug-ins/common/postscript.c:1128 ../plug-ins/common/psd_save.c:1593 +#: ../plug-ins/common/postscript.c:1128 ../plug-ins/common/psd_save.c:1341 #: ../plug-ins/common/sunras.c:518 ../plug-ins/common/tga.c:1035 #: ../plug-ins/common/tiff.c:1815 ../plug-ins/common/xbm.c:1001 #: ../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:957 +#: ../plug-ins/sgi/sgi.c:545 ../plug-ins/winicon/icosave.c:977 #: ../plug-ins/xjt/xjt.c:1682 #, fuzzy, c-format msgid "Saving '%s'..." @@ -1759,7 +1760,7 @@ msgstr "Nuanţă" #: ../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 +#: ../plug-ins/common/decompose.c:144 ../plug-ins/rcm/rcm_dialog.c:548 msgid "Saturation" msgstr "Saturare" @@ -2669,25 +2670,25 @@ msgid "Color to _Alpha..." msgstr "Balanţa de culori" -#: ../plug-ins/common/colortoalpha.c:181 +#: ../plug-ins/common/colortoalpha.c:187 msgid "Removing color..." msgstr "" -#: ../plug-ins/common/colortoalpha.c:377 +#: ../plug-ins/common/colortoalpha.c:380 msgid "Color to Alpha" msgstr "" -#: ../plug-ins/common/colortoalpha.c:402 ../plug-ins/common/mapcolor.c:424 +#: ../plug-ins/common/colortoalpha.c:405 ../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:406 +#: ../plug-ins/common/colortoalpha.c:409 #, fuzzy msgid "Color to Alpha Color Picker" msgstr "/Unelte/Selector de culori" -#: ../plug-ins/common/colortoalpha.c:420 +#: ../plug-ins/common/colortoalpha.c:423 #, fuzzy msgid "to alpha" msgstr "Alfa" @@ -2712,13 +2713,13 @@ msgstr "" #. Gray: Circle: Spinbutton 1 -#: ../plug-ins/common/compose.c:148 ../plug-ins/rcm/rcm_dialog.c:452 +#: ../plug-ins/common/compose.c:148 ../plug-ins/rcm/rcm_dialog.c:459 msgid "Hue:" msgstr "Noanţă:" #. Gray: Circle: Spinbutton 2 #: ../plug-ins/common/compose.c:149 ../plug-ins/print/gimp_color_window.c:364 -#: ../plug-ins/rcm/rcm_dialog.c:479 +#: ../plug-ins/rcm/rcm_dialog.c:486 msgid "Saturation:" msgstr "Saturare:" @@ -3412,16 +3413,16 @@ msgid "Deinterlace..." msgstr "Interfaţă" -#: ../plug-ins/common/deinterlace.c:315 +#: ../plug-ins/common/deinterlace.c:324 #, fuzzy msgid "Deinterlace" msgstr "Interfaţă" -#: ../plug-ins/common/deinterlace.c:340 +#: ../plug-ins/common/deinterlace.c:349 msgid "Keep o_dd fields" msgstr "" -#: ../plug-ins/common/deinterlace.c:341 +#: ../plug-ins/common/deinterlace.c:350 msgid "Keep _even fields" msgstr "" @@ -3894,7 +3895,7 @@ #. Create selection #: ../plug-ins/common/film.c:1166 ../plug-ins/imagemap/imap_selection.c:400 -#: ../plug-ins/rcm/rcm_dialog.c:158 +#: ../plug-ins/rcm/rcm_dialog.c:165 msgid "Selection" msgstr "Selecţie" @@ -4491,23 +4492,23 @@ msgid "Non-square pixels. Image might look squashed." msgstr "" -#: ../plug-ins/common/gifload.c:867 +#: ../plug-ins/common/gifload.c:866 #, fuzzy, c-format msgid "Background (%d%s)" msgstr "Fundal" -#: ../plug-ins/common/gifload.c:915 ../plug-ins/common/iwarp.c:783 +#: ../plug-ins/common/gifload.c:914 ../plug-ins/common/iwarp.c:783 #: ../plug-ins/common/iwarp.c:817 #, c-format msgid "Frame %d" msgstr "" -#: ../plug-ins/common/gifload.c:917 +#: ../plug-ins/common/gifload.c:916 #, c-format msgid "Frame %d (%d%s)" msgstr "" -#: ../plug-ins/common/gifload.c:947 +#: ../plug-ins/common/gifload.c:946 #, c-format msgid "" "GIF: Undocumented GIF composite type %d is not handled. Animation might not " @@ -6540,7 +6541,7 @@ msgid "B/W" msgstr "" -#: ../plug-ins/common/postscript.c:3003 ../plug-ins/rcm/rcm_dialog.c:404 +#: ../plug-ins/common/postscript.c:3003 ../plug-ins/rcm/rcm_dialog.c:411 msgid "Gray" msgstr "Gri" @@ -6641,18 +6642,18 @@ msgid "Invalid UTF-8 string in PSD file" msgstr "" -#: ../plug-ins/common/psd_save.c:181 +#: ../plug-ins/common/psd_save.c:192 msgid "Photoshop image" msgstr "" -#: ../plug-ins/common/psd_save.c:1564 +#: ../plug-ins/common/psd_save.c:1312 #, c-format msgid "" "Unable to save '%s'. The psd file format does not support images that are " "more than 30000 pixels wide or tall." msgstr "" -#: ../plug-ins/common/psd_save.c:1576 +#: ../plug-ins/common/psd_save.c:1324 #, c-format msgid "" "Unable to save '%s'. The psd file format does not support images with " @@ -12714,101 +12715,101 @@ msgid "Rotating the colormap..." msgstr "Rotesc..." -#: ../plug-ins/rcm/rcm_dialog.c:114 +#: ../plug-ins/rcm/rcm_dialog.c:119 #, fuzzy msgid "Original" msgstr "Originea pe X:" -#: ../plug-ins/rcm/rcm_dialog.c:127 +#: ../plug-ins/rcm/rcm_dialog.c:133 #, fuzzy msgid "Rotated" msgstr "Rotire" -#: ../plug-ins/rcm/rcm_dialog.c:140 +#: ../plug-ins/rcm/rcm_dialog.c:147 #, fuzzy msgid "Continuous update" msgstr "Actualizare instantanee" -#: ../plug-ins/rcm/rcm_dialog.c:153 +#: ../plug-ins/rcm/rcm_dialog.c:160 #, fuzzy msgid "Area:" msgstr "Medie:" -#: ../plug-ins/rcm/rcm_dialog.c:157 +#: ../plug-ins/rcm/rcm_dialog.c:164 #, fuzzy msgid "Entire Layer" msgstr "Imagine nouă" -#: ../plug-ins/rcm/rcm_dialog.c:159 +#: ../plug-ins/rcm/rcm_dialog.c:166 #, fuzzy msgid "Context" msgstr "text" #. spinbutton 1 -#: ../plug-ins/rcm/rcm_dialog.c:284 ../plug-ins/rcm/rcm_dialog.c:362 +#: ../plug-ins/rcm/rcm_dialog.c:291 ../plug-ins/rcm/rcm_dialog.c:369 msgid "From" msgstr "" #. spinbutton 2 -#: ../plug-ins/rcm/rcm_dialog.c:310 ../plug-ins/rcm/rcm_dialog.c:363 +#: ../plug-ins/rcm/rcm_dialog.c:317 ../plug-ins/rcm/rcm_dialog.c:370 msgid "To" msgstr "" #. * Gray: Operation-Mode * -#: ../plug-ins/rcm/rcm_dialog.c:499 +#: ../plug-ins/rcm/rcm_dialog.c:506 #, fuzzy msgid "Gray Mode" msgstr "Tip cursor:" #. Gray: Operation-Mode: two radio buttons -#: ../plug-ins/rcm/rcm_dialog.c:508 +#: ../plug-ins/rcm/rcm_dialog.c:515 msgid "Treat as this" msgstr "" -#: ../plug-ins/rcm/rcm_dialog.c:520 +#: ../plug-ins/rcm/rcm_dialog.c:527 #, fuzzy msgid "Change to this" msgstr "/Canal -> Selecţie" #. * Gray: What is gray? * -#: ../plug-ins/rcm/rcm_dialog.c:533 +#: ../plug-ins/rcm/rcm_dialog.c:540 #, fuzzy msgid "Gray Threshold" msgstr "Prag:" #. * Misc: Used unit selection * -#: ../plug-ins/rcm/rcm_dialog.c:572 ../plug-ins/rcm/rcm_dialog.c:676 +#: ../plug-ins/rcm/rcm_dialog.c:579 ../plug-ins/rcm/rcm_dialog.c:683 msgid "Units" msgstr "Unităţi de măsură" #. Misc: Used unit selection: 3 radio buttons -#: ../plug-ins/rcm/rcm_dialog.c:581 +#: ../plug-ins/rcm/rcm_dialog.c:588 #, fuzzy msgid "Radians" msgstr "Radial" -#: ../plug-ins/rcm/rcm_dialog.c:593 +#: ../plug-ins/rcm/rcm_dialog.c:600 #, fuzzy msgid "Radians/Pi" msgstr "Radial" -#: ../plug-ins/rcm/rcm_dialog.c:605 +#: ../plug-ins/rcm/rcm_dialog.c:612 #, fuzzy msgid "Degrees" msgstr "grade" #. Create dialog -#: ../plug-ins/rcm/rcm_dialog.c:638 +#: ../plug-ins/rcm/rcm_dialog.c:645 #, fuzzy msgid "Colormap Rotation" msgstr "Rotire" -#: ../plug-ins/rcm/rcm_dialog.c:670 +#: ../plug-ins/rcm/rcm_dialog.c:677 #, fuzzy msgid "Main Options" msgstr "Opţiuni de desenare" -#: ../plug-ins/rcm/rcm_dialog.c:673 +#: ../plug-ins/rcm/rcm_dialog.c:680 #, fuzzy msgid "Gray Options" msgstr "Opţiuni generale paletă culori" @@ -12900,27 +12901,27 @@ msgid "Transferring TWAIN data..." msgstr "" -#: ../plug-ins/winicon/icodialog.c:123 +#: ../plug-ins/winicon/icodialog.c:89 msgid "1 bpp, 1-bit alpha, 2-slot palette" msgstr "" -#: ../plug-ins/winicon/icodialog.c:124 +#: ../plug-ins/winicon/icodialog.c:90 msgid "4 bpp, 1-bit alpha, 16-slot palette" msgstr "" -#: ../plug-ins/winicon/icodialog.c:125 +#: ../plug-ins/winicon/icodialog.c:91 msgid "8 bpp, 1-bit alpha, 256-slot palette" msgstr "" -#: ../plug-ins/winicon/icodialog.c:126 +#: ../plug-ins/winicon/icodialog.c:92 msgid "32 bpp, 8-bit alpha, no palette" msgstr "" -#: ../plug-ins/winicon/icodialog.c:151 +#: ../plug-ins/winicon/icodialog.c:117 msgid "GIMP Windows Icon Plugin" msgstr "" -#: ../plug-ins/winicon/icodialog.c:172 +#: ../plug-ins/winicon/icodialog.c:138 #, fuzzy msgid "Icon details" msgstr "Operaţie de selecţie" @@ -12930,7 +12931,7 @@ msgid "Icon #%i" msgstr "" -#: ../plug-ins/winicon/icosave.c:943 +#: ../plug-ins/winicon/icosave.c:969 msgid "Windows icons cannot be higher or wider than 255 pixels." msgstr "" diff -uraN gimp-2.2.4/po-plug-ins/ru.gmo gimp-2.2.5/po-plug-ins/ru.gmo --- gimp-2.2.4/po-plug-ins/ru.gmo 2005-02-22 23:12:45.000000000 +0100 +++ gimp-2.2.5/po-plug-ins/ru.gmo 2005-04-09 23:09:32.000000000 +0200 @@ -259,7 +259,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: 2005-02-22 23:04+0100 +POT-Creation-Date: 2005-04-09 21:56+0200 PO-Revision-Date: 2004-07-15 00:09+0400 Last-Translator: AnatolyA. Yakushin Language-Team: russian diff -uraN gimp-2.2.4/po-plug-ins/ru.po gimp-2.2.5/po-plug-ins/ru.po --- gimp-2.2.4/po-plug-ins/ru.po 2005-02-22 23:12:37.000000000 +0100 +++ gimp-2.2.5/po-plug-ins/ru.po 2005-04-09 23:09:23.000000000 +0200 @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: gimp.PLUGINS.ru\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-02-22 23:04+0100\n" +"POT-Creation-Date: 2005-04-09 21:56+0200\n" "PO-Revision-Date: 2004-07-15 00:09+0400\n" "Last-Translator: AnatolyA. Yakushin \n" "Language-Team: russian \n" @@ -392,7 +392,7 @@ #: ../plug-ins/common/pat.c:433 ../plug-ins/common/pcx.c:585 #: ../plug-ins/common/pix.c:515 ../plug-ins/common/png.c:1178 #: ../plug-ins/common/pnm.c:809 ../plug-ins/common/postscript.c:1123 -#: ../plug-ins/common/psd_save.c:1588 ../plug-ins/common/raw.c:517 +#: ../plug-ins/common/psd_save.c:1336 ../plug-ins/common/raw.c:517 #: ../plug-ins/common/raw.c:544 ../plug-ins/common/spheredesigner.c:2088 #: ../plug-ins/common/sunras.c:513 ../plug-ins/common/tga.c:1030 #: ../plug-ins/common/tiff.c:1810 ../plug-ins/common/xbm.c:996 @@ -1280,37 +1280,38 @@ #: ../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 +#: ../plug-ins/bmp/bmpread.c:207 ../plug-ins/bmp/bmpread.c:307 +#: ../plug-ins/bmp/bmpread.c:348 #, c-format msgid "'%s' is not a valid BMP file" msgstr "\"%s\" не пригодный BMP-файл" #: ../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 +#: ../plug-ins/bmp/bmpread.c:300 ../plug-ins/bmp/bmpread.c:313 +#: ../plug-ins/bmp/bmpread.c:319 #, c-format msgid "Error reading BMP file header from '%s'" msgstr "" "Ошибка считывания заголовка BMP-файла\n" "из \"%s\"" -#: ../plug-ins/bmp/bmpread.c:442 ../plug-ins/bmp/bmpread.c:477 +#: ../plug-ins/bmp/bmpread.c:450 ../plug-ins/bmp/bmpread.c:485 msgid "Unrecognized or invalid BMP compression format." msgstr "" #. #. * Create the "background" layer to hold the image... #. -#: ../plug-ins/bmp/bmpread.c:482 ../plug-ins/common/CEL.c:357 +#: ../plug-ins/bmp/bmpread.c:490 ../plug-ins/common/CEL.c:357 #: ../plug-ins/common/CEL.c:360 ../plug-ins/common/blinds.c:273 #: ../plug-ins/common/compose.c:625 ../plug-ins/common/decompose.c:595 #: ../plug-ins/common/dicom.c:442 ../plug-ins/common/film.c:946 -#: ../plug-ins/common/gifload.c:865 ../plug-ins/common/jpeg.c:1113 +#: ../plug-ins/common/gifload.c:864 ../plug-ins/common/jpeg.c:1113 #: ../plug-ins/common/jpeg.c:2474 ../plug-ins/common/pcx.c:334 #: ../plug-ins/common/pcx.c:340 ../plug-ins/common/pix.c:374 #: ../plug-ins/common/png.c:808 ../plug-ins/common/pnm.c:517 -#: ../plug-ins/common/psd.c:2173 ../plug-ins/common/raw.c:677 +#: ../plug-ins/common/psd.c:2174 ../plug-ins/common/raw.c:677 #: ../plug-ins/common/smooth_palette.c:257 ../plug-ins/common/sunras.c:925 #: ../plug-ins/common/tga.c:929 ../plug-ins/common/tiff.c:833 #: ../plug-ins/common/tile.c:266 ../plug-ins/common/winclipboard.c:579 @@ -1341,12 +1342,12 @@ #: ../plug-ins/common/jpeg.c:1453 ../plug-ins/common/pat.c:438 #: ../plug-ins/common/pcx.c:545 ../plug-ins/common/pix.c:521 #: ../plug-ins/common/png.c:1185 ../plug-ins/common/pnm.c:814 -#: ../plug-ins/common/postscript.c:1128 ../plug-ins/common/psd_save.c:1593 +#: ../plug-ins/common/postscript.c:1128 ../plug-ins/common/psd_save.c:1341 #: ../plug-ins/common/sunras.c:518 ../plug-ins/common/tga.c:1035 #: ../plug-ins/common/tiff.c:1815 ../plug-ins/common/xbm.c:1001 #: ../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:957 +#: ../plug-ins/sgi/sgi.c:545 ../plug-ins/winicon/icosave.c:977 #: ../plug-ins/xjt/xjt.c:1682 #, c-format msgid "Saving '%s'..." @@ -1703,7 +1704,7 @@ msgstr "Тон" #: ../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 +#: ../plug-ins/common/decompose.c:144 ../plug-ins/rcm/rcm_dialog.c:548 msgid "Saturation" msgstr "Насыщенность" @@ -2594,24 +2595,24 @@ msgid "Color to _Alpha..." msgstr "Цвет -> Альфа-канал" -#: ../plug-ins/common/colortoalpha.c:181 +#: ../plug-ins/common/colortoalpha.c:187 msgid "Removing color..." msgstr "Удаление цвета..." -#: ../plug-ins/common/colortoalpha.c:377 +#: ../plug-ins/common/colortoalpha.c:380 msgid "Color to Alpha" msgstr "Цвет -> Альфа-канал" -#: ../plug-ins/common/colortoalpha.c:402 ../plug-ins/common/mapcolor.c:424 +#: ../plug-ins/common/colortoalpha.c:405 ../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:406 +#: ../plug-ins/common/colortoalpha.c:409 msgid "Color to Alpha Color Picker" msgstr "Выбор цвета в альфа-канале" -#: ../plug-ins/common/colortoalpha.c:420 +#: ../plug-ins/common/colortoalpha.c:423 #, fuzzy msgid "to alpha" msgstr "в альфа-канал" @@ -2635,13 +2636,13 @@ msgstr "HSV" #. Gray: Circle: Spinbutton 1 -#: ../plug-ins/common/compose.c:148 ../plug-ins/rcm/rcm_dialog.c:452 +#: ../plug-ins/common/compose.c:148 ../plug-ins/rcm/rcm_dialog.c:459 msgid "Hue:" msgstr "Тон:" #. Gray: Circle: Spinbutton 2 #: ../plug-ins/common/compose.c:149 ../plug-ins/print/gimp_color_window.c:364 -#: ../plug-ins/rcm/rcm_dialog.c:479 +#: ../plug-ins/rcm/rcm_dialog.c:486 msgid "Saturation:" msgstr "Насыщенность:" @@ -3280,16 +3281,16 @@ msgid "Deinterlace..." msgstr "Убрать черезстрочность..." -#: ../plug-ins/common/deinterlace.c:315 +#: ../plug-ins/common/deinterlace.c:324 msgid "Deinterlace" msgstr "Убрать черезстрочность" -#: ../plug-ins/common/deinterlace.c:340 +#: ../plug-ins/common/deinterlace.c:349 #, fuzzy msgid "Keep o_dd fields" msgstr "Сохранить нечетные поля" -#: ../plug-ins/common/deinterlace.c:341 +#: ../plug-ins/common/deinterlace.c:350 #, fuzzy msgid "Keep _even fields" msgstr "Сохранить четные поля" @@ -3732,7 +3733,7 @@ #. Create selection #: ../plug-ins/common/film.c:1166 ../plug-ins/imagemap/imap_selection.c:400 -#: ../plug-ins/rcm/rcm_dialog.c:158 +#: ../plug-ins/rcm/rcm_dialog.c:165 msgid "Selection" msgstr "Выделение" @@ -4307,23 +4308,23 @@ msgid "Non-square pixels. Image might look squashed." msgstr "Неквадратные пикселы. Изображение, вероятно, искажено." -#: ../plug-ins/common/gifload.c:867 +#: ../plug-ins/common/gifload.c:866 #, c-format msgid "Background (%d%s)" msgstr "Фон (%d%s)" -#: ../plug-ins/common/gifload.c:915 ../plug-ins/common/iwarp.c:783 +#: ../plug-ins/common/gifload.c:914 ../plug-ins/common/iwarp.c:783 #: ../plug-ins/common/iwarp.c:817 #, c-format msgid "Frame %d" msgstr "Кадр %d" -#: ../plug-ins/common/gifload.c:917 +#: ../plug-ins/common/gifload.c:916 #, c-format msgid "Frame %d (%d%s)" msgstr "Кадр %d (%d%s)" -#: ../plug-ins/common/gifload.c:947 +#: ../plug-ins/common/gifload.c:946 #, c-format msgid "" "GIF: Undocumented GIF composite type %d is not handled. Animation might not " @@ -6254,7 +6255,7 @@ msgid "B/W" msgstr "Ч/Б" -#: ../plug-ins/common/postscript.c:3003 ../plug-ins/rcm/rcm_dialog.c:404 +#: ../plug-ins/common/postscript.c:3003 ../plug-ins/rcm/rcm_dialog.c:411 msgid "Gray" msgstr "Серый" @@ -6350,18 +6351,18 @@ msgid "Invalid UTF-8 string in PSD file" msgstr "Ошибочная строка UTF-8 в файле PSD" -#: ../plug-ins/common/psd_save.c:181 +#: ../plug-ins/common/psd_save.c:192 msgid "Photoshop image" msgstr "" -#: ../plug-ins/common/psd_save.c:1564 +#: ../plug-ins/common/psd_save.c:1312 #, c-format msgid "" "Unable to save '%s'. The psd file format does not support images that are " "more than 30000 pixels wide or tall." msgstr "" -#: ../plug-ins/common/psd_save.c:1576 +#: ../plug-ins/common/psd_save.c:1324 #, c-format msgid "" "Unable to save '%s'. The psd file format does not support images with " @@ -12140,89 +12141,89 @@ msgid "Rotating the colormap..." msgstr "Вращение цветовой карты..." -#: ../plug-ins/rcm/rcm_dialog.c:114 +#: ../plug-ins/rcm/rcm_dialog.c:119 msgid "Original" msgstr "Исходная" -#: ../plug-ins/rcm/rcm_dialog.c:127 +#: ../plug-ins/rcm/rcm_dialog.c:133 msgid "Rotated" msgstr "Повернутая" -#: ../plug-ins/rcm/rcm_dialog.c:140 +#: ../plug-ins/rcm/rcm_dialog.c:147 msgid "Continuous update" msgstr "Непрерывное обновление" -#: ../plug-ins/rcm/rcm_dialog.c:153 +#: ../plug-ins/rcm/rcm_dialog.c:160 msgid "Area:" msgstr "Область:" -#: ../plug-ins/rcm/rcm_dialog.c:157 +#: ../plug-ins/rcm/rcm_dialog.c:164 msgid "Entire Layer" msgstr "Весь слой" -#: ../plug-ins/rcm/rcm_dialog.c:159 +#: ../plug-ins/rcm/rcm_dialog.c:166 msgid "Context" msgstr "Содержание" #. spinbutton 1 -#: ../plug-ins/rcm/rcm_dialog.c:284 ../plug-ins/rcm/rcm_dialog.c:362 +#: ../plug-ins/rcm/rcm_dialog.c:291 ../plug-ins/rcm/rcm_dialog.c:369 msgid "From" msgstr "Из" #. spinbutton 2 -#: ../plug-ins/rcm/rcm_dialog.c:310 ../plug-ins/rcm/rcm_dialog.c:363 +#: ../plug-ins/rcm/rcm_dialog.c:317 ../plug-ins/rcm/rcm_dialog.c:370 msgid "To" msgstr "В" #. * Gray: Operation-Mode * -#: ../plug-ins/rcm/rcm_dialog.c:499 +#: ../plug-ins/rcm/rcm_dialog.c:506 #, fuzzy msgid "Gray Mode" msgstr "Цветовой режим" #. Gray: Operation-Mode: two radio buttons -#: ../plug-ins/rcm/rcm_dialog.c:508 +#: ../plug-ins/rcm/rcm_dialog.c:515 msgid "Treat as this" msgstr "Обрабатывать как это" -#: ../plug-ins/rcm/rcm_dialog.c:520 +#: ../plug-ins/rcm/rcm_dialog.c:527 msgid "Change to this" msgstr "Изменить до этого" #. * Gray: What is gray? * -#: ../plug-ins/rcm/rcm_dialog.c:533 +#: ../plug-ins/rcm/rcm_dialog.c:540 #, fuzzy msgid "Gray Threshold" msgstr "Порог зеленого:" #. * Misc: Used unit selection * -#: ../plug-ins/rcm/rcm_dialog.c:572 ../plug-ins/rcm/rcm_dialog.c:676 +#: ../plug-ins/rcm/rcm_dialog.c:579 ../plug-ins/rcm/rcm_dialog.c:683 msgid "Units" msgstr "Единицы" #. Misc: Used unit selection: 3 radio buttons -#: ../plug-ins/rcm/rcm_dialog.c:581 +#: ../plug-ins/rcm/rcm_dialog.c:588 msgid "Radians" msgstr "Радианы" -#: ../plug-ins/rcm/rcm_dialog.c:593 +#: ../plug-ins/rcm/rcm_dialog.c:600 msgid "Radians/Pi" msgstr "Радианы/Пи" -#: ../plug-ins/rcm/rcm_dialog.c:605 +#: ../plug-ins/rcm/rcm_dialog.c:612 msgid "Degrees" msgstr "Градусы" #. Create dialog -#: ../plug-ins/rcm/rcm_dialog.c:638 +#: ../plug-ins/rcm/rcm_dialog.c:645 msgid "Colormap Rotation" msgstr "Вращение цветовой карты" -#: ../plug-ins/rcm/rcm_dialog.c:670 +#: ../plug-ins/rcm/rcm_dialog.c:677 msgid "Main Options" msgstr "Основные параметры" -#: ../plug-ins/rcm/rcm_dialog.c:673 +#: ../plug-ins/rcm/rcm_dialog.c:680 #, fuzzy msgid "Gray Options" msgstr "Общие параметры" @@ -12310,27 +12311,27 @@ msgid "Transferring TWAIN data..." msgstr "Передача TWAIN-данных..." -#: ../plug-ins/winicon/icodialog.c:123 +#: ../plug-ins/winicon/icodialog.c:89 msgid "1 bpp, 1-bit alpha, 2-slot palette" msgstr "" -#: ../plug-ins/winicon/icodialog.c:124 +#: ../plug-ins/winicon/icodialog.c:90 msgid "4 bpp, 1-bit alpha, 16-slot palette" msgstr "" -#: ../plug-ins/winicon/icodialog.c:125 +#: ../plug-ins/winicon/icodialog.c:91 msgid "8 bpp, 1-bit alpha, 256-slot palette" msgstr "" -#: ../plug-ins/winicon/icodialog.c:126 +#: ../plug-ins/winicon/icodialog.c:92 msgid "32 bpp, 8-bit alpha, no palette" msgstr "" -#: ../plug-ins/winicon/icodialog.c:151 +#: ../plug-ins/winicon/icodialog.c:117 msgid "GIMP Windows Icon Plugin" msgstr "" -#: ../plug-ins/winicon/icodialog.c:172 +#: ../plug-ins/winicon/icodialog.c:138 #, fuzzy msgid "Icon details" msgstr "Детали набора" @@ -12340,7 +12341,7 @@ msgid "Icon #%i" msgstr "" -#: ../plug-ins/winicon/icosave.c:943 +#: ../plug-ins/winicon/icosave.c:969 msgid "Windows icons cannot be higher or wider than 255 pixels." msgstr "" diff -uraN gimp-2.2.4/po-plug-ins/sk.gmo gimp-2.2.5/po-plug-ins/sk.gmo --- gimp-2.2.4/po-plug-ins/sk.gmo 2005-02-22 23:12:45.000000000 +0100 +++ gimp-2.2.5/po-plug-ins/sk.gmo 2005-04-09 23:09:32.000000000 +0200 @@ -1,386 +1,390 @@ -9 -Q 8P9   1B"\ *"=]| "#$ - -/':VbQ  *4;S X dn -s~   - ) 0:CYo)* ILW :-h<C$?'}&"% -9DUo + %! GQgm|<R$ 3?FXo 21 %2$AfyA  '-3F LZ -o -z  48Thy - - - - - "3' [ gq # /; K W amt   !) <J_}  -  *<EM S]"r?$!F2_#/'$&3ZzJ&' 1 -9DSb -i -t*( $.?hVh)('R#z44()1'[l*55Q,*4 #0O a$o4 '3$ 7.Uf -!(9A IS mz - 'B[ -ju  -@ %2A]p -w !(0 8BKS\du   $+4<qy + A3u~  )6/ -O&Z -(+! -#&? f# #1#"&Fm/>)=8Z <|8'? -= 9H           -( -H - N -Z -b -i - - - - - - - - - -   - $  5 C S W \ b i r             -  ) 8 @  Q _ t      y  p $|    0     %2!Cez   - ) D R _ l z   /84I~ - -    -   2,0_=1=/>n  + (;YjzB  ,A]dl   - - '9 KY:q )/1#a2+  ("5X'x44 iv'"@_z'9;Nu).-8'f # %2;n t# $ 1DLQ1b6''G] p z9Ja -y )" ' , ; K S 6e   -      !!/!A!J!Z! -i!"t! !!!! -! ! -!!" """" -":" B" O"Y"b"}""" ?# M# Y# e#go### #$$ -/$:$(P$)y$$ $$$$ $$ -% %%%%5%I%Y%k%p%% -% %%%% %%%& -&& ,&:&V& f&p&&& & && &&&&' -''' %' 1'?'P' i'u' ' -''' ( ((( -( ( ((( ) -)-)I)Q)f))2)/)B)=B* -* ** ** *** -*+ + &+0+ 4+ A+N+U+$u+3+ ++ +,, ,1, 6,C, F,R,m,,,,,,, -, ,,,-- -n---Y$.v~..\y/C/0 #0/060<0T0d0 -t0 0 000"0 001 1$191R1 m1K{11111122 )2 32 A2N2]2 e2o262 22 22 2(3*C3 n3x3 3]3 34 44 -54 @4M4d4{4 444444 44445 -55 5(5 /595 -A5 -L5/W5`55 55 5 6G6B[6N6I677=7C7K7S7[7c7k7s777%7$7%7$8%:8$`88888888888 9 99!9 19?9[9w9 -999 9999: :-:F:b:y: :: -: :::: -: ; -; ;(;?;V; n; z;; ;;;;; ;; ;<;%2< X< -b<m<<'< <<<< -= = (=6= I=W=g=x=== === === -= >>+>C> -K> V> `>m> >> > > >>> >>> ->??0.? _? i?v?? -? ??? ?+? (@6@L@ -g@r@@@@@ @ @@ @@ A)A;A BANAaA fA pAzA AAAAAAAAB/B?BNB _B iBvB{BB B -BBBB B B BIB 9CCCRCcCkC -tCC:C0C -DD.DCDHDODWDfDwD DDDD DEE*#ENElEEE EEE EE EF FF .F8F AFNF]F|FFFF FF%FG G -0G;G BGLG UG_G}GG GGGGG GG G HH!H#?HcHHH7HHH HI I%I T -RT]TbTrT{TTTT -TTTTTTU UU ,U9U IU WU cUqUUUU U -UUUUUVV #V-V%2VXViVzV VVVVVVVVVW WWW.W@W SW`W{WWW-WWW X X2XDXTXtXX X X XXXXYY%Y\ H\R\X\j\4\!\\\\ -] ] "]/]7]=] -M]X] a]k] -q]|]]]]]];] ^ #^ -/^:^P^g^ ^^ ^#^ -^^ ^^_ _ -)_4_L_ ^_l___*_ ___ ` `)`<` M`Y` r` ` ` ` ``` `` ` ` a a a +a7a*Ma xaaaa a -aaa/a'bAbPbVb eb ob yb bb bbbbb b.b'c=cDc Mc Ycecwc ~ccccc ccdd6dRd fd sd d+dddd -d ddee +e7eKegexe e e e -eeeee#f6fOfdfwff0ff]f]Ugfgh4h lGl ^ljl rllllll l!l#lmm)mGmXmkm -~mm m -mm mmmm n -)n4n -;nFnbn inunznnn -nn nnn'no oYoloro -ooooooo -op p 'p4p:pRpgp{ppp ppp pp/p-)q/Wq q qqqq qq -qqr"r+r 3r@rWrorDr'r@r 8sBsIsYs mswssssss sss s t tt&t7t Mt [t htvtt -t7tt tZt?uPuWu ]u -ku vu u uu uuu(uuv%v ,v -9vDvTvdvmv vv v -vv v vvv vww+w3wFw^wgwpwRw&wxxZ5xSxxx5y+PyF|yy0yMzEbzPzKzE{>`{<{7{|}}!}} ~.(~)W~%~Q~)~&#Jg/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    Ƙ И -ݘ $ 1;R -Xc r(ҙ   &/ 7D -S ^j pz  -ɚ  -+4F -LW`p  ›ɛ؛!6 HR X -b m{Μל    %,4 :FO Uarz -  Нܝ  (16F KU\p(x   Ҟޞ  -  -,7Ob)~͟ӟ)18>M \jov| -ȠӠܠ      , 8E NX o y - С -ܡ   #0BH -P[k  - Ȣ ע  -*5 F -S ^k| -ңۣ    # 6 C MW\mr  -   -ǤҤ ؤ -  - -#.C Vb i -w  Υݥ%.= Yg%p  Ϧ ۦ   &6 =I _ iv §ʧ -ӧ -ާ 8 O -[f z   -ǨҨ ب6 (1 :GX` gu ũ- +5 <J^f y  -ʪЪ ٪      *8?GM_ er  - «ի ٫ -   "06=Sdj-pȬ׬ ( %,4 :G"Knw    -ĭ ϭ -٭   '8 JT Xf u -: - -(3:Ca. -ش޵ &.>>}"Ѷ#93%m&& ( "2)U*'Ug8 ¹ ֹ̹ 2BIR Zg -ny ĺ̺ պ  -6Vkǻϻ#'KBüۼE Sm<=Ľ4751#4#Gkz( $. S _(k0   &K.zO  9U j<x*.AVo<'$/T Zh - $  4H`e!    - -' -2=Nd>l /DL\m}!07 @ N [iov {  $)Nb    ! 0 -=HO(dH'+(J)s9.U?\/5.'1Y11  >J\m  * ' 7 -DOa[w["/Rr33!"$4nY 43&Ry &   -2Ld6l  n>(a  ?KT i    - -1< N -Xci| (AYi~?  %5Qi - -  -   -) 4>S l x $ 2E(nv  -!?' -g r~+10%Io& -64+&"R5u1+. (8+a@,3+/![?}N" /'NPv% +C@X-+ YGzU)=Ndu#  ,6ENWu -  -- -8CTd u  -     - "5H P^x %'M%j"S*fK.? P\#k # 6 CPf 5EM`o7 +1 7CWh2w2B2 BS2&!5Wj%  Gc r - # 4Ugv!(B'^B -8/-h+A5 : [i~(!0@  '3$[>!$!%( N%o!7 0(1YJX0/>`*>/ )9-c.8L Tbu/|*0? _ip.$C)!K&_.D\ah -  *I$Q v - -*09Rf ~ - * -*5J MZ -b mw   *(FO # 1>&0 Wd3~4  --3H -` -k v  0 L  -T  _ m         - -1 -G - N -\ - n -z - - - - - - - - - - " ? O f  y        -      % *6 a j   " , K=[ -*5 FP_gx -"2';J`w  "-3 -KVe - ~>Jd#q`K[ -  &5DW,p $ 6VVi  3B Ta r @ ! &"1I/{ a -:EIY q -6Jbf -k v  - - - .fa iv~ %',.FOV_hqz )+)+=)i+  .FM _ -it - &!#Bb{  )1 [  m {    #   -   -! !!)!;!S! b!p!!! ! -! ! !!!I")N" x" -"""#"""# #0#D#Y#j##### ### #$$ %$2$J$ -b$ m$z$$$ -$ $ $#$$%% -% ;%G%O%V%f%|% %%%7%& &+&C& -[& f&s&&&)&&&' +'7'O'j' q' {'' '' ''!'( (((<(S(Z(n(~(((((((($)$?)d){)) ) )))))))* *&*:*J*W]* -* ** * -* +#+T5+:+ ++:+, , -%,0,@, W,e,,,,(,,,0-1-P-k-- -- -- -- - --.. -&.1.B. S. t. ... -. .&.// 5/ B/ N/[/ d/#q/ //// -////0!040F0 X0y0000701 51 ?1L1 c1o1 1 11 -11111 1 -2 22 )262:2J2 b2 o2 |252!2223!53 W3 x33 -3 333 3 3344*4.C4r4z444 44444 5 5 5?5^5g5 }5 55 55555 6 -6 -6'6:6 @6J6Y6h6 }666 6"6 66 67 7 77 -7;7[7r777777 77 7 -78 8 8 %8&18X:<l: : -::'::;;.;D;L;^;~;>;8;<)<=<O<$e<<< <<<< = ==;= W=a=j=~===(== = = ===> -> -:>E> V>c> l>v>> >>>>!>> ? ?"?7?T?n??????'?$@3@ -B@M@V@e@{@@@ -@%@@@A -&A 1A;ARA -jAuAAAAA$A AAB$B8B>B*^BBB1BBB C!C=CSC#iCCCCC CCDD1DBDZDsDD D+DDDDE5E PE]E {EEE>E F/F -LFWFpFF FF F FFF -F FFG - GGG 6G CG PG ]GgG G GGGGG GHHH-H7EH}HHHH H HH HIII&I -I -7IBI _IIIIII&I I IIJJ-J DJNJWJ1kJJ$JJJKK*K;KXKmKKKK+KKL$%LJL[LpLLLLLLLMM)M=MUMfMzMMMMMMM.M(NO PO ZOhO yOOOOOOOO5 P/CPsP {PPPP PP PPQQ*;Q*fQ -QQ"QQ QQR:+RfRoRRR RRRRRR(Sbb?b -'c2c8cHc\cecccc cc cc ccdd #d0dBdWdmddd ddAd eeZ'eeee e ee e eeef'f6,f-cf(ff f fffgg)g?g Tg bgpggggg ggggg -h "h,h"5h^Xh0hh'h[ ia|iii'j)6jJ`jj2j;jE5k1{k3kkHk!@l#blllm %nFnenn(n n&n[o!lo+ooo0gp+p"ppq1q-JqxqqlqrHr"r(sEs)s(t`@ttt t(ttu u u4uJu^uB{uu uuu v v/v4v=vCvRv[vavjvnv v v vv vvv vvww$-w Rw^w%bww"w#w w xxxx%9xz_xx_y}yyyyyy y+y%z 5z/Czszzz#zz3z ${"2{ U{c{ {{{ { { {{|%|*A|Cl||4|}[}Mw}}}"}"~2>~q~~~~~~~~ ,5DVew      GKdĀʀ  ;E~?n/-ނ; 7H;ă  Vee˄ބ - *GPW]<rʅ -4?Qcu &)Ά-&,2cL ‡LJه܇U -G`;M2DGZs x% !։    -+ 6C [h nz  -ϊ+4=L] p}  ‹ʋ Ӌ  &.49?HZl ʌ ݌ -  $2 DPf+Í ̍؍  ( 7 CM Ta t ~  ؎ -8AZbs|" ӏߏ /? V`| -  ĐԐ !7@X lx  ԑ -   - '4=F dq -  Òϒؒ   #- H2T  ̓ ֓   "$1Vn/ ǔ -̔ה &.C -^iqxÕ˕ѕ# -7 -BMfw -    ˖ؖ - -0;Mg  ͗   - /BU^|  -ʘ՘ -  -*5F -Wbs ʙߙ   - - $ .!;] r   -њ ܚ  $1 9 E Q ] k w    - / -9Dcx -Мۜ$,";^ {  - Ɲ͝ -ߝ - %.$> cm  ž ؞    )G3 { ӟ -  9+e -  ʠ Ҡ  $6>u7 ̡֡ߡ  *6IQ b -lw  ¢΢ޢ  # 4>"M -p{   ƣ -ʣգ    -3: T`c.hŤԤ (  '3; CP'X  ե -ߥ  -  !A F R_ hrŦצ>2CKOXah _VE' -f=)r< WN D(G c -?"X ^H}@O5Q ]% xD V#, \F -> $' d -9 g}nsBM AmKE*m   R8vt v$( -?==/9{  - t 4 -mOM, x;m u -Uy#Q4;3 -g 6 + u <&6 -klN lBm- Y  2%NGtJUGE( 7&[HC/;mY> & -+ 1H Z -qS]='~Y -1it  f$~[3dJ:iC -w,k6p2POdl~K -5)nlt"Diu> .' x -8*8e)E7 -R?  $ r_RX O7 -6U{|EoLsrg\F`%40Ev J& O| beS ^5P ~lo )sZ6 \? e"730 C.vtb- .B Ibx< -*  -z| a ,= i@ &bKP`9 - >_X  {Q%> C90j5R $%3 - ! q - k 8w FG V  W  ! g! - GA 6eM Oqh:LW8j%Na  f C -" w,Q \[ K=#NI -} a_L~ . v -~ -/ -4xc:HM#2zi|b y2+k1 e,e "!XZok u?  G3!$ -)LM]5 ZX t3=A5 -*IM Bh z(&+@7 w - Q wrB -a+]cz T4BsfS - E4V>[F"wuqEnPf_#^ |( 5 - z:B P 8JOd#O f WDi -  RF.  ;th  1 -q {UMw )b  -+K D6 -@i: N , - ^2 -"q  Oqy;  G:` -Ta( zq3# 6  p& -(_% -lA5 -ojwV'W] ( i34;,W{>5n L  ilc!  -H:01O K Nb0J@I )T@g CR'2Q1c o4Z #T, a ?j fK6Yxj^`YujC d )H\ VM * -F  KA<  I.u gm  R4  p  - -\ }su00   ~l   -Tmz IS 1yA"??<<U =%Uh    / b -ASDvCJy :L'o^ Acn3s`aT $ D2 -23 9;dh,V ;F7 [G_ < TL9  -W=qYf {<9%7tv *hX] -[: Hz|  H  ? -s $D>]\0^ -   'QE Gy^tYSg R XF9Gu sa[Dr 0@*jdN 'vBAkRsp] i /S`I Le~'fyz /*'b J+ h9f kP(+ - {JW%W-l !&p.{S d 8}c -TYBu  7]E n2- - X J|U8dIQ$# Hak  /_ _ n&  >8 /mYpZ/[ + }9TPo@& -  Q9 j Q5A@p ^ V~Y\&oNPa np} L{*) kF4 - l@-` -r1?y8 -) - 5.!=4F gqw \B -. I:x 8rrdp" R Z(1.U!}Ck}M br%c2cvZj0y - |s D7o/ -3 1e[ `$no hMh  TN`v C n/ "V<>+H 6 xe p W  *;S" - -|zUX[ 7h g6 L$+. -  Z 2 cVe!J * ;| <- -I -!wK` _m\r] PX y(~ # -# ^xU } Z0 -17P{Sj,Kg) x +@ +R P/C ZdE GTd z1"&A ^*"  '"3V#v$ +'VQI   + '1 :FNW_ +t  )8I`py) L4E` :<)Cf$w'V~}&"Cf% + 4Ibj+r %  <YRa ) =2J1} $ /AK   + + +&.3Of ~  +!,>O _ k +x + + + 3 &-<CHYkq    "06; J Vdl p|  9=BFJPXa p| +   "1?J$2#./R'$&J3&~' + + +2*Fq( hh[)'#4:4o()'l*55,#*P{4  $ 0H4Q '9a3q$7UX_ +y  (< +OZlu}  +)@ Uc +u@   +5H^g}  % 2? S$_+4 .BT ]g+pA  +9H)X6 +& +((/+X!& ## G#h1#& )/B>r8/L^ es<|'Q y ?  +  9  2 +@ +O + ` +l +} + + + + + + + + +   4  +P  [ i z    +   +         " 2  B  N Z  j t {             $ 9 Q i |  y  $,Q Ye0t   !*CZv   +     *4I an w 4. +5 +@ K Wa r~ +   20=@1~=/ 0= F+R ~( *:BK   8 Vds  +   :!\k{ )/#25+h "'(P4 &8Q'p*FY'q9N%)t.-' >#_%2 $2D#K o$ 11D6d'   *7<Qf{  +) 4  G S )\  "       !6!L! +`!k!! ! ! !!!!! +" +""$" G"S"e"j" +y" " +""""""" "" " " ##-#H#O# # # $ $g$$$ $$$ +$$(%))%S% m%z%%% %% +% %%%%% && &4& +C& N&\&o&u& z&&&&&& &&' ' '>'S' X' b'o' ~'''''''' ' ''( (%( 6( +D(O(V( T) ^)l)p) +) ) ))) ))-))**6*2L*/*B*=* +0+ ;+G+ b+o+ +++ +++ + ++ + ++,$%,3J, ~,, ,,,,, ,, ,--0-B-U-f-z-- +- ----- -n-L.Y.v.//\)0C00 000011 +$1 /1 ;1H1W1"q1 111 1112 2K+2w2222222 2 2 22 3 33603 g3q3 33 3(3*3 4(4 C4]M4 4444 +4 445+5 25?5E5N5`5t5 55555 5555 55 +5 +5/6`766 66 6 6G6B 7NN7I777778 888#828D8%T8$z8%8$8%8$959=9F9W9k9|99999 9 999 99 :': +6:A:Y: u::::: :::;); :;F; +K; V;b;x;; +; ; +; ;;;< < *<8< H<T<e<n<v< << <<<%< = +==3=':= b===== = == =>>(>0>B> I>S>g> n>{>> +> >>>> +> ? ?? 6?D? I? U? c?o?v? {??? +???0? @ @&@>@ +V@ a@n@@ @+@ @@@ +A"A7ARAWA_A gA uAA AAAAA AAB B B*B @BNBVBjByBBBBBBBB C C&C+C:C BC +NCYCbCqC zC C CIC CCDDD +$D/D:GD0D +DD.DDDDEE'E 8EYElE|E EEE*EEF8FXF tF~FF FF FF FF FF FF G,GKGjG~G GG%GGG +GG GG HH-H>H TH^HrH{HH HH H HHH#HI0I9I7MIII II II IIJ JJ &J4J;J JJ WJdJlJ |J JJJJ J J J2JK(KCK^KqKK KK K +KKKKKL L +L'L?L$OLtL {LL L LLL +L L L +LLM2M8MMM +TM _MlMtMM#MMM M +MMM NN N+N?N HNVN +]N'hN NN +NNN N N NNO"O2O9OHO NOZO`O iOwOOO O O OOQ8QR "R.R+CRoR wRRRRRRR:R'&S NS\SpSSSS S SSST T T*TDT _TiTrTT TT$TTT +TT T TU +U!U&U6U?UHUOU`U +hUsUzUUUUUUU UU V V 'V5VMVVVhV V +VVVVVVV VV%VW-W>W VW`WdWtWWWWWWWWWWWX X$X?X_XnX-XXXX XXYY8YPY _Y lY yYYYYYYYZZ%Z-ZJZ[Z"oZZZ +Z#Z Z1Z,%[R[l[ +[[ [[[[ [ +[[[ \ +\\#\+\4\;\ J\ T\ ^\h\p\ \\\\\\ ] ]]].]4C]!x]]]] ] ] ]]]^ +^^ %^/^ +5^@^_^d^v^^^;^ ^ ^ +^^_+_ C_O_ T_#b_ +__ ___ _ +__` "`0`E`X`*o` ``` ` ``a aa 6a Ca Oa [a gasaa aa a a a a a aa*b oGoMo +aolo qo{oo'oooYo0p6p +IpTp\pkpzppp +pp p pppq+q?qQqZq `qlq{q qq/q-q/r Kr Ur_rwrr rr +rrrrr rss3sDNs's@s st tt 1t;tVt]tmt~tt ttt t ttttt u u ,u:uKu +Pu7[uu uZuvvv !v +/v :v Gv Qv[v rv|vv(vvvv v +vww(w1w CwOw gw +tww w www wwwww +x"x+x4xRPx&xxxZxSTyyy5y+zF@zz0zMzE&{Pl{K{ |>$|<c|7||}p~!~~~.~)%EQk)&+/3&;[0z4p~=%@,f!aJ  +) +DO^ cq -΅߅ + +  + 5?GP Tag pz  † ن  2M k чo{bވ 4:%Agv/~  ĉщ&-6U\ +lw  ˊފF&m,Q:J_q* ŒЌ$*:J_pw Íˍۍ +    & 3R?P!%9LckjA$Ɛ=.)-X- +ё ܑ UnQВ,5<AI8[Ɠޓ  +$3B Q_ b&n%%[ ZglqSC:IF˖ږݖ -6 T`hm|    ȗϗ  #1BRb y  +  Ę ˘٘ + / 8ENS \ hu |   +ƙ͙ܙ   +#. =KTd(t  Ϛؚ  + )5 ;EW`f u + ̛ +ۛ +"+;KZ p zΜ  # +- 8FYas|  ɝ ѝ ۝   &2CKTZ_gm +   ͞ݞ &-A(I r    +ßΟ  + 3)Oy̠Ӡ  -;@GM\k + á ѡ ݡ     ) @ JVf +ny  +Ȣ ΢ܢ  +!,< Q[ +r } ģͣ գ +  +$ /<M +Vaj~  äͤ Ԥޤ   (->C Ta +it }  +  +ƥ ϥۥ + '3 : +HS\ p |Ǧצ *8%Ag    § ʧ ק  0 :G Wckz + +̨Ԩ ݨ8  +,7 K W eqz + 6  /7 >L^x -Ԫ   !5= P\ lv +   ʫ ԫ ޫ  $6 <I `j +{   +ˬ ֬  *;A-Gu{ (˭  ""EN_ d q}  +  + î ͮڮ !+ /= LZ +it:ӯ + + +Ca^״ +3 HV^>n"Ƕ#?9c%&÷& ,(9"b)*ڸ'Ughйٹ  !* 9FObry  + к޺   +&1LfȻ#8WKr׼ $E=<=42g551 +#)Md#w( =$^  (0 "> CPVK^O $5Pi <*+.Bq<+>NW$_  + $ ( @Mdx!   *3 +L +W +bm~>  !*>DK_t| +1@Q`g p ~   (9$Y~   # )7Q ` +mx(H'6+^()9.UF?/5 .B'q11L ~  * .'O w +[["o33!/"Q$tn 4)3^& &  :J2Y6  >(HaY ^      #1J_ +q|  +*;Kh? .L^eu + +28 ? +KV _ +i t~   $ 25Eh  + !1S?g + +1>p%& +641+f"51+.I(x+@,3;+o!?N"Lo'P%- GQk@-k GU0##5Mi 5G +fq + +   +    "/> +R] fp *C c%%"*K's{ #6 P^w    $0B\cy7 7AIQZ_ox 22B:2}B2&;OW&k!% '>U jGx 6 +U `#m #4S!c'B&7K +S^t8-+A5a  (!!0Ct@/ p}'$>!$>!c% %!71i01JX30>*>'/f)- 2.A8p /* 04e?| .$C:)~&%8AWq ' +=H ^j*{$  +  +.9*It  +"-? O*\ +  +  #+ ; E*O(z`p   ;Wu& 34D d +p{ + +  $ ; @ R b v    +      + +' +; +X +i +r + + + + + + + + +  " ) 2 E T h           & *  +C N W _  h r  *     ",?Kl=$6N`t +  +" 2/b|  "3H^v + +  ~J5dq`WK +  ! *K`p, * ?$M rV 2<B Vby   @ :!Fhp&1/  (a5 +  +'9?H^{ +   + + + .(fW  %',G.t  )+D)p+)+  (5FZq  + + & !4Vm  ' > T q )       #! 9! +G! R! +^! i!u!!!! !!!! " +" "" .";"N"Ia")" " +""## #-#L##i#######$$ 0$=$Q$ X$e${$ $$$ +$ $$$% +% % '%#5%Y%o%x% % %%%%%% %&&73&k& {&&& +& &&&')'@'U'n' '''' ' '' '' ()(!I(k(}(((((((( +))3)E)K)[)$w)$)))) ) *****3*B*Q*`* u****W* ++ +++ K+ +W+ b+#n+T+:+ ",0,:5,p, x, +,,, ,,,,-(-?-N-0]----- .. .%. +.. 9. F.P.`.t. +... . . ./-/ +5/ @/&M/t/{/ / / // /#/ //0$0 +60A0I0R0b0~000 0001#17=1u1 1 11 11 1 11 +22 242<2 P2 +^2 i2s2 2 2222 2 2 252!)3K3i33!3 3 33 3 +3 +4+434 K4 U4_4w444.44455 +575J5Q5f5 ~5 5 5555 5 5 +6 6&6:6L6i66 +6 +666 6666 677 7"$7 G7S7 k7y77 77 7777788%848 D8Q8 b8 +p8{8 8 8 8&8:<: ; +*;5;'J;r;{;;;;;;;><8S<<<<<$<== &=2=L=b= y= === ===== >(>9> => K> W>a>u>> > +>> >> >>> ???&?!A?c? x??????@@3@N@W@'s@@@ +@@@@@AA +/A%:A`ArAA +A AAA +AAAB&B:B$@B eBqBBBBB*BCC1/CaCjC C!CCC#CD D7DGD WDcDxDDDDDDE E+EKEcEuEEE EE EEF>FF FF +FFFF G'G /G =GJGRG +ZG eGqGzG +GGG G G G GG G HH+HFHaH qH}HHHH7HHI)I8I II VI`I rI~IIII I +II IIJJ$J5J&;J bJ lJvJJJJ JJJ1JK$%KJK]K}KKKKKKKL2L+JLvLL$LLLLMM*MJM\MmM~MMMMMMMNN&N7NHNYN.pNNNNNN OO3O2IO|OO OO O OO OOP(P8PKP^PqP5P/PP PQQ"Q 6Q@Q YQeQ}QQ*Q*Q +RR"*RMR dRqRR:RRRRS SS1SES`SuS(SSSSSTT+T:TUTpT)TTTTU-U,MU zUXUQUzFVVV VV(VN#WrWW"W!WW%X+XAJXDXXXX YY#/Y3SY.YFYYZ10Z+bZZ(Z +Z ZZ[+[2[G[Y[h[o[ [ +[[ [[[[[ [[\4\=\#W\{\\\\\\ ]]>]&Q]!x]],]]] +]] ^ *^8^?^Q^X^ m^ z^ ^^^,^ +^ +^a_h_p__ ______`` +/`:`Q`W`r`` ` ` ` ````aA&a6ha3aaaaab+b4bDbVbtb bb bbbb>cCc?^c +cccccccdd !d+d FdSd Ydfdydd dddddd e "e,eA=e eeZee +ff f &f2f Af KfUfpfff6f-f(g1g 8g DgRgbgwgggg g gghh%h+h 3h=hQhehnhh hh"h^h0.i_i'oi[iaiUjmj'j)jJj"k2=k;pkEk1k3$lXlHnl!l#llm nnnn(o ?o&`o[o!o+p1pPp0p+q";q^qxq1q-qq +rl&rrH's"ps(ss)utt`tu8u ?u(Iuruxu uuuuuBu5v Ov]vpvvvvvvvvvvvv v w ww %w1wLw ^wjw~ww$w ww%ww"x#;x _xxxxx%xzxQyyyz$z-z>z]z fz+pzz z/zzz {#${H{3g{ {"{ {{ {|| '| 4| @|a|{|%|*|C|'}4C}x}[}M}<~Z~"v~~2~~~)AJNg|    ( 6 B PZ ` mzGKۀ'-4;Aax  ~f?/%-U;7;3; Wdm r~Ve܄BUr +x*Dž΅ԅ<&AXs +Ȇچ  &)E-ocÇ '49>PSY_dipxUG׈;M[щ % !!+Mds x  +  Ҋߊ   % +,7F[rËԋ  & /9A JWm ь   *4K ^js    ōэ+/D MYaj    ĎΎ Վ    , 5AYiz +ۏ"1 T`r { א +$ - 9EUip !ّ  +% .8 @J _l +u  + Ȓђ  +  +8 NZc x   ӓ2ߓ 07H W a my  $/ ER +WbvΕ +.FNV\z +– +͖ؖ + ) = I Vcl + +Ɨؗ  *B JX ku +͘ /< +U` +u  +љ + &2AUj   +  !ƚ   $8=L +\ g s}  ě Л ܛ    $1L kw  +  +ĜϜ2H +[f$u"Ɲ  * +8 CQX +j +u $ɞ  +  &3DM c p z G  %,H^m +v  9  + (5G \f n |6ڡ70 hr{  ƢҢ  + %1CU ^jz   Уڣ" +  ' 1 ;Ib +fq   ɤϤ֤ .3;BQap (  åϥץ ߥ'%9> NZ q +{  +  ݦ    3EXas>Χߧ + %dD  $ N|5d," 9_n s c94G @ZI 5v1 )abeQ  QZ:5Nz<7( ^RJc> V9jozg,* +<; l$9* +@) |6 Zn8w ~Tcd ]W  T z]n"u B ! ?<'0 7=\c|F1o898V/ ++O&Q;cb x* }lyi 6Cm XvZ/Jg% xl=` n; ^j o\  fv8zSd +!M V) +  ]` B 9fQGwFLdis r 't exMcMf@ 9 y + ah nm> + q#)Cw[t +Z`Isc A*A%  YrC% ;7A/ E-` +C &R D3B\i9 + C  . L[SUONB] ]RUHtK(s8L4zU  +  F +  +{G + \1 + \ 4i' slT e& +Jt FX +Y [A"%CqupE1 U-}@ +B'{k {ma "u Gzn K 16Z '_|akv_4P# i !- wo% +Qgx)' + 6 u;e  [ Jf$ +cK} 4"*IO 0 p@Y&=JW/h ?] l( q $ &a g2 +/v!5 &4? hM?}j=r3y c_ %V+Dz>  +2Fg^-: JT~ G! U  )  += o; E*v &7fW yW sd*3X PA  #`l  At5# + g {&SQ.(Ut8 +B5 +mh . 7 ;, & wYq!0yb q +/  :O ^h[@$ NR _ bp +Im ;S4rT \H AK 7 :OV f`|j   O J +36$ Y kD_+9 +ES [e11 _jwl + + ++. +P/ k j +5=G! +) !2 " * 'V Ik!>M YX +,YVN OSTR*' e n'37$i3Px= }, +,H>[-L,(t  us ]r p- (q < ${HsSi/aSPBK4 +3 )J A#06Wi.VFt\KXKua4 |1?9 +R| E jF +}L6 *0 %QZ 15 +? g < +N >g o! h5N` +   +wMoL5R"p y.Z "TTzru I  3u j Py ?H}>d-: +<: :{ /`m +:[:kxv +#  $).  F:}/g )4 +^>#~x] +n(pqmmG+ +hLk<|b>GX60avp~? +vT +   a |' -   +p l N {< =F+a#i= +U 0 N$ gW +l0rJY*Y=" +H k) +~Tm 88Uq e +8 +p.En  8 rM^ O !~ D{73;uE7x +h | D ?Ebc6 @#D  +Oe@%Xv @( + H +4I^ .G o bD2bbL Bxt2:nM\qf I&1 +`  W 0 (}uZ\jdGA1z @/IR #,tLMQ~l2;  ; +Mo] 8P rJ6 + +$5_?p( os_3 +dj - + BPf{<> +-~~ qE<Pd L  +Py Oy#UHD S k  +  ?K2. ~%6K ^ZhWz[ R % Vk _UsC  + B>I^7WK"iEN C D0mHhr ^Q 'AR+we @f ( }eV7 + ,2wX X,&= 0 +wf] YHQ- +2C " \ +2 , XW[ySx 3`2 .Cb<F{9 Copyright (C) 1997-2001 Michael Sweet, Robert Krawitz, and the rest of the Gimp-Print Development Team. @@ -407,13 +411,13 @@ 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 OptionsBentBest 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 OptionsBentBest 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. 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 Selection DialogColor TransformationColor _noise:Color _variation:Color fillColor is computed from the average of all pixels under the brushColor outputColor to AlphaColor to Alpha Color PickerColor to _Alpha...Color:Color_map:Colorcube A_nalysis...Colorcube AnalysisColorcube Analysis...ColorifyColorify Custom ColorColorifying...ColoringColormap RotationColormap _Rotation...ColorsColors:CombineComm_ent:Command:CommentComment:ComposeCompose ChannelsComposing 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: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 parametersCopy the active curve to the other borderCopy the texture of the selected paper as a backgroundCopy 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' 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 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 failedCreated with The GIMPCreating diffraction pattern...Cro_pCropping...Cu_rve:CubismCubistic Transformation...Cumulative layers (combine)Curl LayerCurl LocationCurl OrientationCurrent gradientCurrent gradient (reversed)Current:Curve BendCurve Bend...Curve TypeCurve for BorderCustom Color:Custom gradientCutCyanCyan:Cyan_KCylinderCylinder lengthCylinder radiusDCT method:DICOM imageD_eform amount:D_ivisor:DarkerDarker:Data CompressionData FormattingData formattingDate:DecomposeDecompose to _layersDecomposing...DefaultDefault 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 ModeDegree of slope of each piece's edgeDegreesDeinterlaceDeinterlace...Delay inserted to prevent evil CPU-sucking anim.DeleteDelete AreaDelete FractalDelete GFlareDelete PointDelete an objectDelete currently selected fractalDelete selected areaDelete selected smvectorDelete selected vectorDeletes the selected PresetDelta functionDelta function steppedDensity:Depth MergeDepth firstDepth map:Depth-merging...Deriving Smooth Palette...Des_peckle...Des_tripe...Description:Deselect _allDespeckleDestination channel:Destination color rangeDestination:DestripeDestriping...Deviation threshold:DiamondDifference of Gaussians...DifferentialDiffraction PatternsDiffuse:Diffusion dist.:Digital Imaging and Communications in Medicine imageDigitsDimension:DimensionsDimensions:DirectionDirection VectorDirectionalDirectional lightDirectionsDirections:DisplaceDisplacement map:Displacing...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:Dither size:DivisionDo _PreviewDo you really want to discard your changes?Do you really want to overwrite?DoG Edge DetectDocument not foundDraw 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 readingEXIF data will be ignored.E_levation:E_nable bump mappingE_nable environment mappingE_rodeE_xtendEach piece has curved sidesEach piece has straight sidesEdge AffectedEdge DetectionEdge Detection...Edge darken:EdgesEditEdit Area Info...Edit FlameEdit Map Info...Edit ObjectEdit area info...Edit fractal nameEdit map infoEdit selected area infoEditing read-only object - you will not be able to save itEffect ChannelEffect OperatorEmbossEn_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:EndPage failedEngraveEngraving...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 during open of FITS fileError during writing indexed/gray imageError 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 starting ghostscript: %sError trying to open temp file '%s'for parasite loading. +%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 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 curveCreate bezier curve. Shift + Button ends object creation.Create circleCreate ellipseCreate guides...Create lineCreate new imageCreate reg polygonCreate spiralCreate starCreateDIBSection failedCreated with The GIMPCreating diffraction pattern...Cro_pCropping...Cu_rve:CubismCubistic Transformation...Cumulative layers (combine)Curl LayerCurl LocationCurl OrientationCurrent gradientCurrent gradient (reversed)Current:Curve BendCurve Bend...Curve TypeCurve for BorderCustom Color:Custom gradientCutCyanCyan:Cyan_KCylinderCylinder lengthCylinder radiusDCT method:DICOM imageD_eform amount:D_ivisor:DarkerDarker:Data CompressionData FormattingData formattingDate:DecomposeDecompose to _layersDecomposing...DefaultDefault 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 ModeDegree of slope of each piece's edgeDegreesDeinterlaceDeinterlace...Delay inserted to prevent evil CPU-sucking anim.DeleteDelete AreaDelete FractalDelete GFlareDelete PointDelete an objectDelete currently selected fractalDelete selected areaDelete selected smvectorDelete selected vectorDeletes the selected PresetDelta functionDelta function steppedDensity:Depth MergeDepth firstDepth map:Depth-merging...Deriving Smooth Palette...Des_peckle...Des_tripe...Description:Deselect _allDespeckleDestination channel:Destination color rangeDestination:DestripeDestriping...Deviation threshold:DiamondDifference of Gaussians...DifferentialDiffraction PatternsDiffuse:Diffusion dist.:Digital Imaging and Communications in Medicine imageDigitsDimension:DimensionsDimensions:DirectionDirection VectorDirectionalDirectional lightDirectionsDirections:DisplaceDisplacement map:Displacing...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:Dither size:DivisionDo _PreviewDo you really want to discard your changes?Do you really want to overwrite?DoG Edge DetectDocument not foundDraw 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 readingEXIF data will be ignored.E_levation:E_nable bump mappingE_nable environment mappingE_rodeE_xtendEach piece has curved sidesEach piece has straight sidesEdge AffectedEdge DetectionEdge Detection...Edge darken:EdgesEditEdit Area Info...Edit FlameEdit Map Info...Edit ObjectEdit area info...Edit fractal nameEdit map infoEdit selected area infoEditing read-only object - you will not be able to save itEffect ChannelEffect OperatorEmbossEn_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:EndPage failedEngraveEngraving...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 during open of FITS fileError during writing indexed/gray imageError 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 starting ghostscript: %sError trying to open temp file '%s'for parasite loading. Error trying to save figure as a parasite: can't attach parasite to drawable. 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 distributedExp.:Export PreviewExtract ChannelsFG colorFITS file keeps no displayable imagesFITS save cannot handle images with alpha channelsF_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 artFeatherFileFile "%s" saved.File '%s' doesn't seem to be an IFS Fractal file.File '%s' exists. Overwrite it?File '%s' is corrupt. @@ -424,7 +428,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") @@ -455,20 +459,18 @@ Currently this is not supported.XY position:X_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:ZSoft PCX imageZealousCropping(tm)...ZoomZoom inZoom in (make image bigger)Zoom outZoom out (make image smaller)Zoom scale:Zoom to_3x3_Abbreviation:_About ImageMap_Adaptive_Additive_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_Blinds..._Blue_Blue:_Blur_Blur radius:_Border Average..._Border:_Bottom-left_Bottom:_Box_Bright:_Brightness_Brightness:_Brush_Bucket size:_Bump Map_Bump Map..._Bump map:_Bumpmap_Checkerboard..._Color Enhance_Color Exchange..._Colorify..._Contents_Convolution Matrix..._Copy_Cubism..._Curve Bend..._Decompose..._Deflate_Deform radius:_Deinterlace..._Delay between frames where unspecified:_Depth Merge..._Depth:_Derivative_Description:_Detail:_Diffraction Patterns..._Digits:_Dilate_Displace..._Displacement:_Distorted_Divisions:_Dots_Dynamic:_Edge enhancement_Edge..._Edit_Effect Image:_Elevation:_Emboss_Emboss..._Encapsulated PostScript_Entire Image_Environment Map_Explicit tile_Exponent:_FG/BG lighting_Factor:_Factory defaults_File_Filename:_Film..._Filter Pack..._Filter length:_Find Backdrop_Fit height to images_Flame..._FlareFX..._Font:_Force_Force tiling?_Foreground & background_Foreground color_Foreground to peaks_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 size:_Grid..._Grow_Guillotine_HSL color model_Height_Height:_Help_Hex_Hidden_High_Hold the maximal channels_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_Input SPI:_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)_Kill_LZW_Laplace_Large staggered_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 Seamless_Make surroundings transparent_Map backwards_Map type:_Mapping_Mask file extension:_Mask radius:_Mask size:_Material_Max (%):_Max Depth:_Max RGB..._Max. delta:_Maze..._Metallic_Middle value to peaks_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_Normal_Normalize_Number height:_Number of segments:_Opacity:_Optimize (Difference)_Pack Bits_Pagecurl..._Palette Type:_Paper Tile..._Parameters_Percent black:_Period:_Phase:_Photocopy..._Pick..._Pinch amount:_Ping Pong_Pitted surfaces_Pixelize..._Plasma..._Playback..._Plug-In Browser_Plural:_Polished:_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_Remove Backdrop_Rendering_Require default URL_Retain tilability_Retinex..._Right_Right Border_Ripple..._Rotated_Sample Colorize..._Saturation_Saturation:_Save comment to file_Save defaults_Scale division:_Scale:_Scatter RGB..._Screen Shot..._Search depth:_Search:_Second Flares_Selective Gaussian Blur..._Semi-Flatten_Sender:_Set surroundings to background color_Set surroundings to index 0_Settings_Shade under curl_Sharpen..._Sharpness:_Shift..._Shiny:_Show cursor_Sinus..._Size_Size:_Slur..._Small Tiles..._Smear_Smoothing:_Snap-To Grid Enabled_Sobel..._Softglow..._Solid Noise..._Sparkle..._Speed:_Spike length:_Spokes:_Spot function:_Square_Squares_Staggered_Strength:_Stretch Contrast_Stroke_Symbol:_TWAIN..._Target frame name/ID: (optional - used for FRAMES only)_Thickness:_Threshold_Threshold Alpha..._Threshold:_Tile bumpmap_Tile size:_Tile..._Title:_Tools_Top Start at:_Top-right_Top:_Transparent_URL to activate when this area is clicked: (required)_UnOptimize_Undo %s_Uniform_Unit Editor_Unsharp Mask..._Update_Upper_Upper Border_Upper threshold:_Use GLib types (guint8*)_Use background color_Use cellspan_Use double-sized grab handles_Use intensity algorithm_Use the (invisible) bottom layer as the base_Uuencode_Value_Value Invert_Value Propagate..._Value:_Van Gogh (LIC)..._Variation:_Vert. Spacing:_Vertical_Vertical style:_Vertical:_View_Voronoi_Warp_Warp..._Waterlevel:_Wavelength:_Waves..._Web Site_Whirl angle:_White_White level:_Wide-striped_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:_Zealous Crop_Zoom_Zoom:`Default' is created.a _Single Windowafteralphaautostretch_hsv: cmap was NULL! Quitting... +which has no alpha channel.Z scale (size)Z:ZSoft PCX imageZealousCropping(tm)...ZoomZoom inZoom in (make image bigger)Zoom outZoom out (make image smaller)Zoom scale:Zoom to_3x3_Abbreviation:_About ImageMap_Adaptive_Additive_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_Blinds..._Blue_Blue:_Blur_Blur radius:_Border Average..._Border:_Bottom-left_Bottom:_Box_Bright:_Brightness_Brightness:_Brush_Bucket size:_Bump Map_Bump Map..._Bump map:_Bumpmap_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 Merge..._Depth:_Derivative_Description:_Detail:_Diffraction Patterns..._Digits:_Dilate_Displace..._Displacement:_Distorted_Divisions:_Dots_Dynamic:_Edge enhancement_Edge..._Edit_Effect Image:_Elevation:_Emboss_Emboss..._Encapsulated PostScript_Entire Image_Environment Map_Explicit tile_Exponent:_FG/BG lighting_Factor:_Factory defaults_File_Filename:_Film..._Filter Pack..._Filter length:_Find Backdrop_Fit height to images_Flame..._FlareFX..._Font:_Force_Force tiling?_Foreground & background_Foreground color_Foreground to peaks_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_Hex_Hidden_High_Hold the maximal channels_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_Input SPI:_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)_Kill_LZW_Laplace_Large staggered_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 Seamless_Make surroundings transparent_Map backwards_Map type:_Mapping_Mask file extension:_Mask radius:_Mask size:_Material_Max (%):_Max Depth:_Max RGB..._Max. delta:_Maze..._Metallic_Middle value to peaks_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_Normal_Normalize_Number height:_Number of segments:_Opacity:_Optimize (Difference)_Pack Bits_Pagecurl..._Palette Type:_Paper Tile..._Parameters_Percent black:_Period:_Phase:_Photocopy..._Pick..._Pinch amount:_Ping Pong_Pitted surfaces_Pixelize..._Plasma..._Playback..._Plug-In Browser_Plural:_Polished:_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_Remove Backdrop_Rendering_Require default URL_Retain tilability_Retinex..._Right_Right Border_Ripple..._Rotated_Sample Colorize..._Saturation_Saturation:_Save comment to file_Save defaults_Scale division:_Scale:_Scatter RGB..._Screen Shot..._Search depth:_Search:_Second Flares_Selective Gaussian Blur..._Semi-Flatten_Sender:_Set surroundings to background color_Set surroundings to index 0_Settings_Shade under curl_Sharpen..._Sharpness:_Shift..._Shiny:_Show cursor_Sinus..._Size_Size:_Slur..._Small Tiles..._Smear_Smoothing:_Snap-To Grid Enabled_Sobel..._Softglow..._Solid Noise..._Sparkle..._Speed:_Spike length:_Spokes:_Spot function:_Square_Squares_Staggered_Strength:_Stretch Contrast_Stroke_Symbol:_TWAIN..._Target frame name/ID: (optional - used for FRAMES only)_Thickness:_Threshold_Threshold Alpha..._Threshold:_Tile bumpmap_Tile size:_Tile..._Title:_Tools_Top Start at:_Top-right_Top:_Transparent_URL to activate when this area is clicked: (required)_UnOptimize_Undo_Undo %s_Uniform_Unit Editor_Unsharp Mask..._Update_Upper_Upper Border_Upper threshold:_Use GLib types (guint8*)_Use background color_Use cellspan_Use double-sized grab handles_Use intensity algorithm_Use the (invisible) bottom layer as the base_Uuencode_Value_Value Invert_Value Propagate..._Value:_Van Gogh (LIC)..._Variation:_Vert. Spacing:_Vertical_Vertical style:_Vertical:_View_Voronoi_Warp_Warp..._Waterlevel:_Wavelength:_Waves..._Web Site_Whirl angle:_White_White level:_Wide-striped_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:_Zealous Crop_Zoom_Zoom:`Default' is created.a _Single Windowafteralphaautostretch_hsv: cmap was NULL! Quitting... blackblueblueness_cb470blueness_cb470fblueness_cb709blueness_cb709fbzip archivec_astretch: cmap was NULL! Quitting... 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 +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: 2005-02-22 23:04+0100 -PO-Revision-Date: 2004-11-27 10:28Stedn Evropa (bn as) -Last-Translator: Zdenko Podobný -Language-Team: Slovak <> +POT-Creation-Date: 2005-04-09 21:56+0200 +PO-Revision-Date: 2004-11-27 10:28+0100 +Last-Translator: Marcel Telka +Language-Team: Slovak MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 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); Copyright (C) 1997-2001 Michael Sweet, Robert Krawitz, @@ -497,13 +499,13 @@ Nebola určená výška obrázka'%s': Nebola určená šírka obrázka(Nič)1 rozhranie modulov1 procedúra1 bpp, 1-bitová alfa, 2-prvková paleta32 bpp, 8-bitová alfa, bez palety4 bpp, 1-bitová alfa, 16-prvková paleta8 bpp, 1-bitová alfa, 256-prvková paletaPomocná hodnota pre adaptívne výberyMenej zastaralý výtvor Adama D. Mossa / adam@gimp.org / adam@foxbox.org / 1998-2000Definícia jednotky bude zapísaná pred skončením programu GIMP iba pri zaškrtnutí tohoto stĺpca.ALT TextALT te_xt: (voliteľné)ASCII art_O moduleA_daptívne prevzorkovanie_PridaťPri_dať okraj_Pokročilé_VšetkoVšetky d_laždiceVážená a_lfaA_lfa:_Okolie:_Miera:A_mplitúda:_Uhol:A_nimovať_PridaťA_uto aktualizácia náhľaduA_utomatickéPrie_mer pod štetcomSkratkaO moduleO Gimp-Print Akcia_PokročiléAdaptívneAdaptívne prevzorko_vaniePridať ďalšie vodítkaPridá cestu do FractalExplorerPridať nový vektorPridať nový vektorPridávajú sa pruhy...Pridávanie šachovnice...Pridáva sa šum...SúčetĎalšie informáciePridá efekt tieňa každému ťahuPridá náhodný šum do farbyUp_raviť popredie-pozadieNastavenie farebného vyváženia, kontrastu, sýtosti a algoritmu rozptyluPrispôsobiť výstup...Nastavenie intenzity žiaryÚprava prahu svetlostiNastavenie počtu hrotovNastavenie krytia hrotovNastavenie uhlu hrotu (-1 znamená, že bude zvolený náhodný uhol)Nastavenie hustoty hrotovNastavenie dĺžky hrotovÚprava hodnoty, o ktorú sa môže odtieň náhodne zmeniťÚprava hodnoty, o ktorú sa môže sýtosť náhodne zmeniťPrispôsobenie vyváženie azúrovej farby pre tlačNastavte hustotu (množstvo atramentu) pre tlač. Hustotu znížte, ak atrament tečie po papiery, alebo sa rozmazáva; zvýšte hustotu, ak čierne oblasti sú jednoliate.Nastavenie gamy pre tlač. Vyššie hodnoty vyprodukujú všeobecne jasnejšiu tlač, kým nižšie hodnoty vyprodukujú tmavšiu tlač. Čierna a biela zostanú také isté na rozdiel od nastavovania jasu.Prispôsobenie vyváženie purpurovej farby pre tlačPrispôsobiť jas náhľaduPrispôsobenie sýtosti (farebného vyváženia) tlače Použite nulu na vyprodukovanie výstupu v odtieňoch šedej s použitím farebného a čierneho atramentuPrispôsobenie vyváženie žltej farby pre tlačPrispôsobnie popredia/pozadiaPokročilé nastavenie sady filtrovPokročilé nastaveniaOvplyvnený rozsahAgresívne RLE -(nepodporované SGI)Al_ternatívneAl_ternatívne dlaždiceAlias|Wavefront PIX obrázokMimozemské mapovanie _2...Mimozemské mapovanie 2Mimozemské mapovanie 2: Transformuje...Zarovnanie viditeľných vrstievZarovnanie _viditeľných vrstiev...Všetky JNGVšetky PNGVšetky hodnoty sú zlomky výšky filmuVšetko čiarneVšetko šedéVšetky textové polia musia obsahovať hodnotu.Všetko bielePo_voliť delenie dláždicAlfaAlfa kanályAlfa:Okolie:Množstvo pôvodnej farby na zobrazenie miesta, kam nedopadá priame svetloMiera:Zastaralý výtvor Adama D. Mossa / adam@gimp.org / adam@foxbox.org / 1998-2000Posun uh_la:Rozpätie uhla:Uhol:Uhlový prechod:Prechod uhlovej veľkosti:Nastavenia GIF animácieNastavenia animovaného MNGPrehratie animácie:VyhladzovanieKvalita vyhladzovania. Vyššia je lepšia, ale je pomalšiaPoužije papier tak, ako je (bez reliéfu)PoužiťPoužitie plátnaPoužiť _šošovky...Použiť aktívny prechod na finálny obrázokPoužitie plátna...Vykonáva sa konvolúciaAplikujú sa šošovky...Používam sadu filtrov...Ste si istý, že chcete odstrániť "%s" zo zoznamu disku?Nastavenie oblasti č. %dNastavenie oblastiZoznam oblastíOblasť:ŠípkaTak, ako je špecifikovaný vyššieASCIIPomer strán:Tvorí sa skladačka...Asymetria:_Dole_HoreAu_tor:Autor:AutomatickyAutomatické rozťahovanie kontrastuAutomatické roztiahnutie HSV...AutoDesk FLIC animáciaAutomatickéAutoma_tický náhľadDostupné obrázky:B, G, R, X (bmp štýl)Č/BNáhrada PRÁZDNYCH/NaN bodov_Stiahnutie úrovne čiernej (%):Prah m_odrej:Farba _pozadiaVzadu:PozadiePozadie (%d%s)Farba pozadiaTyp pozadiaPozadie:Nesprávna farebná mapaBarnsley 1Barnsley 2Barnsley 3Základné _URL:Základné nastaveniaOhnutáNajlepšie pre obrázky s dominatnými oblasťami jednej farbySkúsenie hránBili_neárnyČierna a bie_laČiernaČierna a bielaČierna:Nastavenie prechoduPruhyModráFre_kvencia modrej:Po_sun modrej fázy:Modrá:Modrosť_cb470:Modrosť_cb470f:Modrosť_cb709:Modrosť_cb709f:Stred rozmazaniaMetoda rozostreniaParametre rozostreniaPolomer rozostreniaTyp rozostreniaRozmazávam...OkrajPriemer okrajaVeľkosť okrajaPriemer okraja_ObojeObidvojeDolný okraj:Dolná hranaDole dop_ravaDole:HranolJas:PrechádzaťVyvýšenieMapa vyvýšeniaMapuje sa vyvýšenie...O_brázok vyvýšenia:Mapa vyvýšeniaZ DATAMIN/DATAMAXZdrojový kód CHlavička zdrojového kódu v CCML prieskumník: Prepísať súbor?CML _prieskumní...CML_prieskumník: vyvíja sa...CMYCMYKCX:CY:C_MYKK_amera_Titulok_Obsah bunky:V_eľkosť bunky:Str_ed štetcaC_entrovanieZvoľte _tu:K_ruhS_kladanie...Vytvo_riť nový obrázokP_riesečníkyV _krivkách_Azúrová_ValecNastavenie výpočtuPracovať je možné len s RGB kresbami.Uložiť je možné len kresby!Može pracovať iba s vrstvami (ale bolo volané na kanál alebo masku).Nie je možné vytvoriť nový obrázokNie je možné získať údaje zo schránkyNevie spracovať neznáme typy obrázkovNie je možné čítať farebné položkyNemôžem zmazať!! Musí tam byť aspoň jedna G-žiara.Nie je možné pracovať s prázdnym výberom.Nie je možné spracovať obrázky v odtieňoch šedej alebo s indexovanými farbami.Nie je možné pracovať na obrázkoch s indexovanými farbami.Nie je možné pracovať na vrstvách s maskou.Nie je možné pracovať s neznámymi typmi obrázkovNie je možné prečítať rozšírenie z '%s'Nie je možné prečítať pätu z '%s'Nie je možné uložiťobrázky v RGB farebnom režime. Skonvertujte ho najskôr na indexované farby alebo do odtieňov šedej.Nie je možné uložiť obrázky s alfa kanálom.Nie je možné uložiť obrázky s alfa kanálmi.KraikatúraVeľkosť buniek:_Výplň buniek:_Rozostup buniek:V stredeStred _x:Stred _y:Stred efektu odleskuCentrum SuperNovyVycentrovať vodorovne obrázok na papieryVycentrovať obrázok na papieryVycentrovať obrázok zvisle na papieryCentrovanie:CentrovaťZmena citlivosti:Zmeniť smer šípiekZmena CX hodnoty (zmení vzhľad všetkých fraktálov okrem Mandelbrotovho a Sierpinskeho)Zmena CY hodnoty (zmení vzhľad všetkých fraktálov okrem Mandelbrotovho a Sierpinskeho)Zmeniť uhol zvoleného vektora mvZmeniť uhol zvoleného vektoraZmena exponenta silyZmena ohraničenia prvej (minimálnej) x súradniceZmena ohraničenia prvej (minimálnej) y súradniceZmení intenzitu modrého kanálaZmení intenzitu zeleného kanálaZmení intenzitu červeného kanálaZmena počtu iterácií. Čím je ich viac, tým viac detailov, ktoré zaberú viac času, bude počítaných.Zmení počet farieb v mapovaníZmena ohraničenia druhej (maximálnej) x súradniceZmena ohraničenia prvej (maximálnej) y súradniceZmeniť pevnosť zvoleného vektora mvZmeniť silu zvoleného vektoraZmeniť totoZmeniť gamma (jas) zvoleného štetcaKanál #%d:Parametre nezávislé od kanáluMi_xer kanálovMixer kanálovVarovanie súborových operácií Mixéra kanálovReprezentácia kanálovKanályZašktnite, keď chcete, aby tabuľka mala označenie.ŠachovnicaŠachovnicaZaštrnutie tejto značky spôsobí, že v GTM nebude vynechaný biely priestor medzi značkami TD a obsahom bunky. Toto je nevyhnutné pre ovládanie bodovej úrovne pozícií.Dvojklikom si zvoľte fraktálVybrať PPD súborZvoľte vysokú úroveň kompresie pre malú veľkosť súboruZvoľte PPD súbor pre vašu tlačiareňZvoľte algoritmus rozptylu, ktorý sa použije pri tlači. +(nepodporované SGI)Al_ternatívneAl_ternatívne dlaždiceAlias|Wavefront PIX obrázokMimozemské mapovanie _2...Mimozemské mapovanie 2Mimozemské mapovanie 2: Transformuje...Zarovnanie viditeľných vrstievZarovnanie _viditeľných vrstiev...Všetky JNGVšetky PNGVšetky hodnoty sú zlomky výšky filmuVšetko čiarneVšetko šedéVšetky textové polia musia obsahovať hodnotu.Všetko bielePo_voliť delenie dláždicAlfaAlfa kanályAlfa:Okolie:Množstvo pôvodnej farby na zobrazenie miesta, kam nedopadá priame svetloMiera:Zastaralý výtvor Adama D. Mossa / adam@gimp.org / adam@foxbox.org / 1998-2000Posun uh_la:Rozpätie uhla:Uhol:Uhlový prechod:Prechod uhlovej veľkosti:Nastavenia GIF animácieNastavenia animovaného MNGPrehratie animácie:VyhladzovanieKvalita vyhladzovania. Vyššia je lepšia, ale je pomalšiaPoužije papier tak, ako je (bez reliéfu)PoužiťPoužitie plátnaPoužiť _šošovky...Použiť aktívny prechod na finálny obrázokPoužitie plátna...Vykonáva sa konvolúciaAplikujú sa šošovky...Používam sadu filtrov...Ste si istý, že chcete odstrániť "%s" zo zoznamu disku?Nastavenie oblasti č. %dNastavenie oblastiZoznam oblastíOblasť:ŠípkaTak, ako je špecifikovaný vyššieASCIIPomer strán:Tvorí sa skladačka...Asymetria:_Dole_HoreAu_tor:Autor:AutomatickyAutomatické rozťahovanie kontrastuAutomatické roztiahnutie HSV...AutoDesk FLIC animáciaAutomatickéAutoma_tický náhľadDostupné obrázky:B, G, R, X (bmp štýl)Č/BNáhrada PRÁZDNYCH/NaN bodov_Stiahnutie úrovne čiernej (%):Prah m_odrej:Farba _pozadiaVzadu:PozadiePozadie (%d%s)Farba pozadiaTyp pozadiaPozadie:Nesprávna farebná mapaBarnsley 1Barnsley 2Barnsley 3Základné _URL:Základné nastaveniaOhnutáNajlepšie pre obrázky s dominatnými oblasťami jednej farbySkúsenie hránBili_neárnyČierna a bie_laČiernaČierna a bielaČierna:Nastavenie prechoduPruhyModráFre_kvencia modrej:Po_sun modrej fázy:Modrá:Modrosť_cb470:Modrosť_cb470f:Modrosť_cb709:Modrosť_cb709f:Stred rozmazaniaMetoda rozostreniaParametre rozostreniaPolomer rozostreniaTyp rozostreniaRozmazávam...OkrajPriemer okrajaVeľkosť okrajaPriemer okraja_ObojeObidvojeDolný okraj:Dolná hranaDole dop_ravaDole:HranolJas:PrechádzaťVyvýšenieMapa vyvýšeniaMapuje sa vyvýšenie...O_brázok vyvýšenia:Mapa vyvýšeniaZ DATAMIN/DATAMAXZdrojový kód CHlavička zdrojového kódu v CCML prieskumník: Prepísať súbor?CML _prieskumní...CML_prieskumník: vyvíja sa...CMYCMYKCX:CY:C_MYKK_amera_Titulok_Obsah bunky:V_eľkosť bunky:Str_ed štetcaC_entrovanieZvoľte _tu:K_ruhS_kladanie...Vytvo_riť nový obrázokP_riesečníkyV _krivkách_Azúrová_ValecKa_rikatúra...Nastavenie výpočtuPracovať je možné len s RGB kresbami.Uložiť je možné len kresby!Može pracovať iba s vrstvami (ale bolo volané na kanál alebo masku).Nie je možné vytvoriť nový obrázokNie je možné získať údaje zo schránkyNevie spracovať neznáme typy obrázkovNie je možné čítať farebné položkyNemôžem zmazať!! Musí tam byť aspoň jedna G-žiara.Nie je možné pracovať s prázdnym výberom.Nie je možné spracovať obrázky v odtieňoch šedej alebo s indexovanými farbami.Nie je možné pracovať na obrázkoch s indexovanými farbami.Nie je možné pracovať na vrstvách s maskou.Nie je možné pracovať s neznámymi typmi obrázkovNie je možné prečítať rozšírenie z '%s'Nie je možné prečítať pätu z '%s'Nie je možné uložiťobrázky v RGB farebnom režime. Skonvertujte ho najskôr na indexované farby alebo do odtieňov šedej.Nie je možné uložiť obrázky s alfa kanálom.Nie je možné uložiť obrázky s alfa kanálmi.KarikatúraVeľkosť buniek:_Výplň buniek:_Rozostup buniek:V stredeStred _x:Stred _y:Stred efektu odleskuCentrum SuperNovyVycentrovať vodorovne obrázok na papieryVycentrovať obrázok na papieryVycentrovať obrázok zvisle na papieryCentrovanie:CentrovaťZmena citlivosti:Zmeniť smer šípiekZmena CX hodnoty (zmení vzhľad všetkých fraktálov okrem Mandelbrotovho a Sierpinskeho)Zmena CY hodnoty (zmení vzhľad všetkých fraktálov okrem Mandelbrotovho a Sierpinskeho)Zmeniť uhol zvoleného vektora mvZmeniť uhol zvoleného vektoraZmena exponenta silyZmena ohraničenia prvej (minimálnej) x súradniceZmena ohraničenia prvej (minimálnej) y súradniceZmení intenzitu modrého kanálaZmení intenzitu zeleného kanálaZmení intenzitu červeného kanálaZmena počtu iterácií. Čím je ich viac, tým viac detailov, ktoré zaberú viac času, bude počítaných.Zmení počet farieb v mapovaníZmena ohraničenia druhej (maximálnej) x súradniceZmena ohraničenia prvej (maximálnej) y súradniceZmeniť pevnosť zvoleného vektora mvZmeniť silu zvoleného vektoraZmeniť totoZmeniť gamma (jas) zvoleného štetcaKanál #%d:Parametre nezávislé od kanáluMi_xer kanálovMixer kanálovVarovanie súborových operácií Mixéra kanálovReprezentácia kanálovKanályZašktnite, keď chcete, aby tabuľka mala označenie.ŠachovnicaŠachovnicaZaštrnutie tejto značky spôsobí, že v GTM nebude vynechaný biely priestor medzi značkami TD a obsahom bunky. Toto je nevyhnutné pre ovládanie bodovej úrovne pozícií.Dvojklikom si zvoľte fraktálVybrať PPD súborZvoľte vysokú úroveň kompresie pre malú veľkosť súboruZvoľte PPD súbor pre vašu tlačiareňZvoľte algoritmus rozptylu, ktorý sa použije pri tlači. Prispôsobiteľné miešanie roztylu všobecne poskytuje najlepší výsledok. Postupný rozptyl je rýchlejší a výsledná kvalita je podobná ako je na fotografiách. Rýchly a veľmi rýchly roztyl je podstatne rýchlejšší a dobré výsledky poskytuje pre text a čiarovú grafiku. Miešaný Floyd-Steinbergov roztyl všeobecne poskytuje menej kvalitný výstup.Voľba model tlačiarne, PPD súboru a príkaz, ktorý sa používa pre tlač na tejto tlačiarniKruhHĺbka _kružnice v percentách:Upratať...VymazaťVymazať priesvitnéUzavrenie krivky pri dokončeníUzavreté_FarbaPriemerované _farby_Farba:_FarbyKo_mentár:Ko_mpenzovať tmavnutieKo_mplexnosť_Komprimovať TD značkyÚroveň ko_mpresie:_Spojitá oblasťKo_ntrast:Ko_relačný šum_Stĺpec:ZozbieraťFarbaFarebná intenzitaVylepšenie farieb...Zámena fariebZamieňajú sa farby...Zámena farieb: z farbyZámena farieb: na farbuFarebné funkcieFarebný režim_Mapovenie rozsahu farieb...Dialóg pre výber farbyFarebná transformácia_Farebný šum:Farebná _variácia:Vyplnenie farbouFarba je vypočítaná z priemeru všetkých bodov pod štetcomFarebný výstupFarby do alfyFarebná pipeta farby do alfyFarba do _alfy...Farba:Farebná _mapa:A_nalýza farebnej kocky...Analýza farebnej kockyAnalýza farebnej kocky...ZafarbenieZafarbenie vlastnou farbouFarbím...FarbenieOtočenie farebnej mapyOtočenie fa_rebnej mapy...FarbyFarby:KombinovaťKom_entárPríkaz:KomentárKomentár:SkladanieKompozícia kanálovSpájajú sa obrázky...Skladám...Kompozícia:Komprimovaná veľkosť: %sKompresiaPomer kompresie (približne): %d k 1Typ kompresieVynútiť pomer stránVytváram bludisko s pomocou Primovho algoritmu...Vytváram dlaždicoviteľné bludisko s pomocou Primovho algoritmu...KontextPlynulý prechod bez medzierPlynulý prechodPlynulá aktualizáciaObrysyKontrast:OvládanieOvláda intenzitu odleskuNajskôr urobte konverziu do RGB!Konvolučná maticaKonvolučná Matrica nepracuje s vrstvami menšími ako 3 body.ZaostrenieKopírovaťKopírovať G-žiaruKopírovať nastaveniaKopírovať objektKopírovať parameteKopírovať aktívnu krivku na druhý okrajKopíruje textúru zvoleného papiera ako pozadieKopírovať do schránkyKopírujem IFS do obrázka (%d/%d)...Kopírovanie...Copyright(c) 1999-2004 by Maurits RijkCopyright:KosínusNie je možné vytvoriť pracovný priečinok '%s': %sNie je možné spustiť určený web prehliadač: %sPre obrázok %d nie možné získať vrstvyNie je možné interpretovať '%s'Nie je možné načítať štandardné nastavenie PNGNie je možné otvoriť '%s' ako SUN-raster-fileNie je možné otvoriť '%s' pre čítanie.Nie je možné otvoriť '%s' pre čítanie: %sNie je možné otvoriť '%s' pre zápis.Nie je možné otvoriť '%s' pre zápis: %sNie je možné spracovať určený príkaz web prehliadača: -%sNie je možné čítať XWD hlavičku z '%s'Nie je možné prečítať farebné položky z '%s'Nie je možné prečítať hlavičku z '%s'Nie je možné zapísať '%s': %sNie je možné načítať jeden štetec z kolóny, vzdávam to.Nie je možné bezstratovo uložiť priesvitnosť, ukladám ako nepriesvitné.Nie je možné prečítať súbor:Nie je možné uložiť súborNie je možné uložiť súbor zdrojov:Nie je možné jednoducho ďalej zredukovať farby. Ukladám ako nepriehľadné.Prieskumník párovanej mapy mriežky_Vytvoriť nový obrázokVytvoriťVytvoriť riadiace čiaryVytvoriť _novú vrstvuVytvoriť _histogramVytvorí farebnú mapu s použitím prechodu z editora prechodovVytvorí farebnú mapu s vyššie špecifikovanými vlastnosťami (farebná intenzita/funkcia). Výsledok je viditeľný na obrázku v náhľade.Pri použití filtra vytvoriť nový obrázokVytvoriť úplne novú jednotku.Vytvoriť novú jednotku s aktuálne zvolenou jednotkou ako šablónou.Vytvoriť výsekVytvorenie Bézierovej krivky. Shift + tlačítko myši ukončí vytváranie objektu.Vytvoriť kružnicuVytvoriť elipsuVytvoriť vodítka...Vytvoriť čiaruVytvoriť nový obrázokVytvoriť pravidelný mnohouholníkVytvoriť špiráluVytvoriť hviezduCreateDIBSection zlyhalVytvorené s programom GIMPVytváram difrakčné vzorky..._OrezanieOrezáva sa...K_rivka:KubizmusKubistická transformácia...Súhrné vrsty (kombinácia)Rozčerenie vrstvy...Umiestnenie rozčereniaOrientácia rozčereniaAktuálny prechodAktuálny prechod (obrátený)Aktuálne:Ohýbanie pomocou krivkyOhýbam...Typ krivkyKrivka pre okrajVlastná farba:Vlastný prechodVystrihnúťAzúrováAzúrová:Azúrová_KValecDĺžka valcaPolomer valcaDCT metóda:DICOM ObrázokMiera d_eformácie:Del_iteľ:TmavšiaTmavšie:Kompresia dátFormátovanie dátFormátovanie dátDátum:DekompozíciaDekomponovať do _vrstievVykonáva sa dekompozícia...PrednastavenéŠtandardný typ mapyImplicitné _URL:Štandardný typ úseku:Štandardné omeškanie rámca:Štandardná dispozícia rámca:Definovanie kruhovej/oválnej oblastiDefinovanie novej tlačiarneDefinovanie mnohouholníkovej oblastiDefinovanie obdĺžnikovej oblastiDefinovanie novej logickej tlačiarne. Toto môže byť použité na pomenovanie zbierky nastavení, ktoré si prajete zapamätať a v budúcnosti používať.Režim deformácieStupeň naklonenia na hrane každého kusuStupneOdstránenie prekladaniaOdstraňujem prekladanieAby sa zabránilo škaredej animácii žerúcej CPU, vloží sa omeškanie.ZmazaťZmazať oblasťZmazať fraktálZmazať G-žiaruZmazať bodZmazať objektZmaže aktuálne zvolené fraktályZmazať vybranú oblasťZmazať zvolený vektor.Zmazať zvolený vektorZmaže zvolené prevoľbyDelta funkciaDelta funkcia po krokochHustota:Zlučovanie hĺbkyPrvá hĺbkaHĺbka mapy:Zlučuje sa hĺbka...Odvodzuje sa plynulá paleta...Vy_čistiť...Ods_trániť pruhy...Popis:Od_značiť všetkoVyčistenieCieľový kanál:Cieľový farebný rozsahCieľ:Odstraňovanie pruhovOdstraňujú sa pruhy...Prah odchýlky:DiamantGaussov rozdiel...DiferenciálnyDifrakčné vzorkyRozptyl:Vzdialenosť rozptylu:Obrázok Digital Imaging and Communications in MedicineČísliceRozmer:RozmeryRozmery:SmerSmerový vektorSmerovéSmerové svetloSmerySmer:VytlačenieMapa vytlačovania:Vytláča sa....Zobraziť ako:Vzdialenosť od dolného okraja papiera k obrázkuVzdialenosť od ľavého okraja papiera k obrázkuVzdialenosť od ľavého okraja papiera k pravému okraju obrázkaVzdialenosť od pravého okraja papiera k obrázkuVzdialenosť od horného okraja papiera k dolnému okraju obrázkaVzdialenosť od horného okraja papiera k obrázkuAlgoritmus rozptylu:Veľkosť rozptylu:DelenieVytvoriť _náhľadSkutočne chcete zahodiť tieto zmeny?Skutočne ho chcete prepísať? DoG detekcia hránDokument nebol nájdenýKresliť okolo obrázka okraje hrotovObrazovky majú rôznu veľkosťKreslenie plameňom...Kreslí sa mriežka...Kreslím bludisko...Voľby kresbyKreslenie čiar medzi ovládacími bodmi. Iba počas vytvárania krivkyVrhanie tieňaPočas čítania súbor skončilEXIF dáta budú ignorované._Zdvih:Povoliť mapova_nie vyvýšenia_Povoliť mapovanie prostrediaE_rodovaťRozšír_iťVšetky kusy majú zaoblené stranyVšetky kusy majú rovné stranyOvplyvnenie hránDetekcia hránDetekcia hrán...Stmavenie hrany:HranyÚpravyUpraviť informáciu o oblastiUpraviť plameňUpraviť informáciu o mape...Upraviť objektUpraviť informáciu o oblasti...Upraviť názov fraktáluUpraviť informáciu o mapeUpraviť informáciu o vybranej oblastiUpravujete objekty iba na čítanie - nebudete môcť ich uložiťEfektový kanálEfektový operátorReliéfVy_ryť..._Obrázok prostredia:Povoliť vyhl_adzovaniePovolí/zakáže mapovanie vyvýšenia (hĺbka obrázka)Povolí/zakáže mapovanie prostredia (odraz)Povoliť/zakázať náhľad vysokej kvalityPovoliť/zakázať odstraňovanie zubatých hrán (vyhladzovanie)Povoliť/zakázať náhľad na zmeny v reálnom časeEncapsulated PostScript obrázokZapúzdrenie:Koniec strany zlyhalRytinaVytvára sa rytina...Vložte názov pre kopírovanú G-žiaruVložte názov pre novú G-žiaruVložte PPD názov súboru pre vašu tlačiareňVložte správny príkaz pre tlač na vašej tlačiarni. Poznámka: Neodstráňte prosím z reťazca pre tlač prepínače `-l' alebo `-oraw', lebo tlač pravdepodobne nebude úspešná!Vložte označenie, ktoré chcete dať tejto logickej tlačiarniCelú vrstvuCitlivosť prost.:Obrázok prostredia, ktorý sa použijeChyba počas otvárania súboru FITSChyba počas zápisu obrázka indexovaného/v odtieňoch šediChyba počas zápisu rgb obrázkaChyba pri zachytávaní ukazovateľaChyba v súbore GIMP štetca '%s'Chyba v súbore GIMP kolóny štetcovChyba pri získavaní ID vrstievChyba pri získaní snímku obrazovkyChyba pri otváraní súboruChyba pri otváraní súboru '%s'Chyba počas načítavania hlavičky BMP súboru z '%s'Chyba pri čítaní súboruChyba pri spúšťaní programu ghostscript (%s)Chyba pri spúšťaní programu ghostscript: (%s)Chyba pri pokuse otvoriť dočasný súbor '%s' pre načítanie parazita. +%sNie je možné čítať XWD hlavičku z '%s'Nie je možné prečítať farebné položky z '%s'Nie je možné prečítať hlavičku z '%s'Nie je možné zapísať '%s': %sNie je možné načítať jeden štetec z kolóny, vzdávam to.Nie je možné bezstratovo uložiť priesvitnosť, ukladám ako nepriesvitné.Nie je možné prečítať súbor:Nie je možné uložiť súborNie je možné uložiť súbor zdrojov:Nie je možné jednoducho ďalej zredukovať farby. Ukladám ako nepriehľadné.Prieskumník párovanej mapy mriežky_Vytvoriť nový obrázokVytvoriťVytvoriť riadiace čiaryVytvoriť _novú vrstvuVytvoriť _histogramVytvorí farebnú mapu s použitím prechodu z editora prechodovVytvorí farebnú mapu s vyššie špecifikovanými vlastnosťami (farebná intenzita/funkcia). Výsledok je viditeľný na obrázku v náhľade.Pri použití filtra vytvoriť nový obrázokVytvoriť úplne novú jednotku.Vytvoriť novú jednotku s aktuálne zvolenou jednotkou ako šablónou.Vytvoriť výsekVytvoriť beziérovú krivkuVytvorenie Bézierovej krivky. Shift + tlačítko myši ukončí vytváranie objektu.Vytvoriť kružnicuVytvoriť elipsuVytvoriť vodítka...Vytvoriť čiaruVytvoriť nový obrázokVytvoriť pravidelný mnohouholníkVytvoriť špiráluVytvoriť hviezduCreateDIBSection zlyhalVytvorené s programom GIMPVytváram difrakčné vzorky..._OrezanieOrezáva sa...K_rivka:KubizmusKubistická transformácia...Súhrné vrsty (kombinácia)Rozčerenie vrstvy...Umiestnenie rozčereniaOrientácia rozčereniaAktuálny prechodAktuálny prechod (obrátený)Aktuálne:Ohýbanie pomocou krivkyOhýbam...Typ krivkyKrivka pre okrajVlastná farba:Vlastný prechodVystrihnúťAzúrováAzúrová:Azúrová_KValecDĺžka valcaPolomer valcaDCT metóda:DICOM ObrázokMiera d_eformácie:Del_iteľ:TmavšiaTmavšie:Kompresia dátFormátovanie dátFormátovanie dátDátum:DekompozíciaDekomponovať do _vrstievVykonáva sa dekompozícia...PrednastavenéŠtandardný typ mapyImplicitné _URL:Štandardný typ úseku:Štandardné omeškanie rámca:Štandardná dispozícia rámca:Definovanie kruhovej/oválnej oblastiDefinovanie novej tlačiarneDefinovanie mnohouholníkovej oblastiDefinovanie obdĺžnikovej oblastiDefinovanie novej logickej tlačiarne. Toto môže byť použité na pomenovanie zbierky nastavení, ktoré si prajete zapamätať a v budúcnosti používať.Režim deformácieStupeň naklonenia na hrane každého kusuStupneOdstránenie prekladaniaOdstraňujem prekladanieAby sa zabránilo škaredej animácii žerúcej CPU, vloží sa omeškanie.ZmazaťZmazať oblasťZmazať fraktálZmazať G-žiaruZmazať bodZmazať objektZmaže aktuálne zvolené fraktályZmazať vybranú oblasťZmazať zvolený vektor.Zmazať zvolený vektorZmaže zvolené prevoľbyDelta funkciaDelta funkcia po krokochHustota:Zlučovanie hĺbkyPrvá hĺbkaHĺbka mapy:Zlučuje sa hĺbka...Odvodzuje sa plynulá paleta...Vy_čistiť...Ods_trániť pruhy...Popis:Od_značiť všetkoVyčistenieCieľový kanál:Cieľový farebný rozsahCieľ:Odstraňovanie pruhovOdstraňujú sa pruhy...Prah odchýlky:DiamantGaussov rozdiel...DiferenciálnyDifrakčné vzorkyRozptyl:Vzdialenosť rozptylu:Obrázok Digital Imaging and Communications in MedicineČísliceRozmer:RozmeryRozmery:SmerSmerový vektorSmerovéSmerové svetloSmerySmer:VytlačenieMapa vytlačovania:Vytláča sa....Zobraziť ako:Vzdialenosť od dolného okraja papiera k obrázkuVzdialenosť od ľavého okraja papiera k obrázkuVzdialenosť od ľavého okraja papiera k pravému okraju obrázkaVzdialenosť od pravého okraja papiera k obrázkuVzdialenosť od horného okraja papiera k dolnému okraju obrázkaVzdialenosť od horného okraja papiera k obrázkuAlgoritmus rozptylu:Veľkosť rozptylu:DelenieVytvoriť _náhľadSkutočne chcete zahodiť tieto zmeny?Skutočne ho chcete prepísať? DoG detekcia hránDokument nebol nájdenýKresliť okolo obrázka okraje hrotovObrazovky majú rôznu veľkosťKreslenie plameňom...Kreslí sa mriežka...Kreslím bludisko...Voľby kresbyKreslenie čiar medzi ovládacími bodmi. Iba počas vytvárania krivkyVrhanie tieňaPočas čítania súbor skončilEXIF dáta budú ignorované._Zdvih:Povoliť mapova_nie vyvýšenia_Povoliť mapovanie prostrediaE_rodovaťRozšír_iťVšetky kusy majú zaoblené stranyVšetky kusy majú rovné stranyOvplyvnenie hránDetekcia hránDetekcia hrán...Stmavenie hrany:HranyÚpravyUpraviť informáciu o oblastiUpraviť plameňUpraviť informáciu o mape...Upraviť objektUpraviť informáciu o oblasti...Upraviť názov fraktáluUpraviť informáciu o mapeUpraviť informáciu o vybranej oblastiUpravujete objekty iba na čítanie - nebudete môcť ich uložiťEfektový kanálEfektový operátorReliéfVy_ryť..._Obrázok prostredia:Povoliť vyhl_adzovaniePovolí/zakáže mapovanie vyvýšenia (hĺbka obrázka)Povolí/zakáže mapovanie prostredia (odraz)Povoliť/zakázať náhľad vysokej kvalityPovoliť/zakázať odstraňovanie zubatých hrán (vyhladzovanie)Povoliť/zakázať náhľad na zmeny v reálnom časeEncapsulated PostScript obrázokZapúzdrenie:Koniec strany zlyhalRytinaVytvára sa rytina...Vložte názov pre kopírovanú G-žiaruVložte názov pre novú G-žiaruVložte PPD názov súboru pre vašu tlačiareňVložte správny príkaz pre tlač na vašej tlačiarni. Poznámka: Neodstráňte prosím z reťazca pre tlač prepínače `-l' alebo `-oraw', lebo tlač pravdepodobne nebude úspešná!Vložte označenie, ktoré chcete dať tejto logickej tlačiarniCelú vrstvuCitlivosť prost.:Obrázok prostredia, ktorý sa použijeChyba počas otvárania súboru FITSChyba počas zápisu obrázka indexovaného/v odtieňoch šediChyba počas zápisu rgb obrázkaChyba pri zachytávaní ukazovateľaChyba v súbore GIMP štetca '%s'Chyba v súbore GIMP kolóny štetcovChyba pri získavaní ID vrstievChyba pri získaní snímku obrazovkyChyba pri otváraní súboruChyba pri otváraní súboru '%s'Chyba počas načítavania hlavičky BMP súboru z '%s'Chyba pri čítaní súboruChyba pri spúšťaní programu ghostscript (%s)Chyba pri spúšťaní programu ghostscript: (%s)Chyba pri pokuse otvoriť dočasný súbor '%s' pre načítanie parazita. Chyba pri pokuse o uloženie obrázka ako parazita: nie je pripojiť parazta ku kresbe. Chyba pri čítaní '%s'. Je súbor poškodený?Chyba počas ukladania '%s'. Nie je možné uložiť obrázok.Chyba pri zápise do výstupného súboru.Chyba: Nie je možné prečítať súbor XJT vlastností '%s'.Chyba: Súbor XJT vlastností '%s' je prázdny.Chyba: nepodarilo sa načítať parametreChyba: nejedná sa o CML súbor s parametramiRovnomerné rozloženieExp:Náhľad na exportExtrahovať kanályFarba poprediaSúbor FITS neobsahuje zobraziteľné obrázkyFITS zápis nevie pracovať s obrázkami s alfa kanálmi_Súbor_Prvá farba:_Intenzita žiary:FaktorNepodarilo sa otvoriť súbor G-žiara '%s': %sNepodarilo sa uložiť PPM súbor '%s': %sNepodarilo sa zapísať súbor G-žiara '%s': %sRýchle celočíselnéNajrýchlejšie a jasnejšie farby pre text a čiarovú grafikuZjemnenieSúborSúbor "%s" je uloženýSúbor '%s' zrejme nie je súbor IFS Fraktál.Súbor '%s' existuje. Prepísať ho?Súbor '%s' je poškodený. @@ -514,7 +516,7 @@ (alebo podobné) do vášho súboru gimprc.Iterácie:JNGJNG + Delta PNGKvalita JPEG kompresie:JPEG obrázokNáhľad na JPEGParametre kvality JPEGFaktor JPEG vyhladenia:SkladačkaŠtýl skladačkyJuliaKISS CELNechať párn_e poliaZachovať hodnoty z obrázkaNechať nepárne po_liaZachovať pôvodnéZachovať prvú hodnotuLABLZ77Počiat_okĽ_avý okrajD_ĺžka:L_ineárnyLambdaNa šírkuLaplaceLaplace...V_eľké 3x3Vrstva %s nemá alfa kanál, bude preskočenáTyp vrstvy pozadia. Kópia spôsobí, skopírovanie predchádzajúcej vrstvy pred spustením kresleniaDoľavaĽavá hranaVľavo:Efekt šošoviekMenej sýte:Nech smer od stredu určí smer ťahuNech smer od stredu určí rozmer ťahuNech hodnota (jas) oblasti určí smer ťahuNech hodnota (jas) oblasti určí rozmer ťahuÚroveňSvetloSvetlo 1Svetlo 2Svetlo 3Svetlo 4Svetlo 5Svetlo 6Nastavenie svetlaSmer svet_la:Intenzita svetlaSmer X svetelného zdroja v XYZ priestorePoloha X svetelného zdroja v XYZ priestoreSmer Y svetelného zdroja v XYZ priestorePoloha Y svetelného zdroja v XYZ priestoreSmer Z svetelného zdroja v XYZ priestorePoloha Z svetelného zdroja v XYZ priestoreSvetlejšiaSvetlejšie:Svetelné efektySvetelné efekty...Prednastavenie svetla:Farba svetelného zdroja:Typ svetelného zdroja:ČiaraČiarová grafikaLineárnyTyp odkazuZobraziť zoznamJaštericaDlhé kolísa_nie_Dolný okrajNačítať nastavenia mixéra kanálovNačítať body krivky zo súboruNačítať FITS súborNačítať plameňNačítať parametre fraktáluNačítať súhrn Gfig objektovNačítať mapu obrázkaNačítať KISS paletuNačítať nastavenia osvetleniaNačítať parametre zNačítavam PostScriptNačítať QBE súborNačíta fraktál zo súboruNačítať krivky zo súboruNačítavanie snímky pracovnej plochy..._Uzamknúť prahyLogaritmickáSlučkaZľava zdolaZprava zdolaZnížiť vybrané objektyPresunúť zvolený objekt naspodok_Dolný prah:Luma_y470:Luma_y470f:Luma_y709:Luma_y709f:Pra_h svetlosti:Fre_kvencia jasu:Po_sun fázy svetlosti:MNG nastaveniaMNG animáciaM_aximálna hodnota:Ma_ximálna hĺbka:Ma_ximálna výška:P_urpurováPurpurováPurpurová:Purpurová_KMapa zväčšenia:Hlavné nastaveniaVytvorenie priesvitného obrázka na miestach, kde je vyvýšenie nulovéMimo objektu nech je obrázok priesvitnýMan'o'warMandelbrotMandelbrotove parametreRučneRučné určenie orientácie ťahovRučné určenie rozmeru ťahuMapovanie farebného rozsahuMapovať obrázok na plochy hranolaMapovať _objekt...Formát súboru mapyMapovanie _zhoraMapovať na kváder...Mapovať na valec...Mapovať a objektMapovať na rovinu...Mapovať na guľu...Mapovať na:Mapovanie farieb...MramorSúbor maskyVlastnosti materiáluMaticaMax (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. späť:Max. pamäť:Maxilmálna výška pre vyvýšenieMaximálna veľkosť:BludiskoVeľkosť média:Zdroj média:Typ média:MediánPonukaCesta k ponuke:Cesta k ponuke/NázovSplynutie importovaných ciestSpojuje sa...Microsoft WMF súborMicrosoft Windows ikonaVyberiete "Z farby" kliknutím prostredného tlačítkaStredné 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)Minimálna veľkosť:Zrkadliť aktívnu krivku na druhý okrajRôzne usporiadanie:Up_raviť zelený kanálUp_raviť kanál sýtostiMiera mod.:Upra_viť modrý kanálUpra_viť kanál svetlostiRežimRežim _1Režim _2Upraviť krivkyViac _krytiaViac pokročilých nastaveníSýtejšie:Viac _bielej (vyššia hodnota)Viac _čiernej (nižšia hodnota)Viac p_riesvitnéMozaikaRozostrenie pohybomRozostrenie pohybom...PresunPresunúť nižšiePresunúť rámPresunúť vybrané objektyPresunúť dopreduPresunúť vyššiePresunúť jeden bodPresunúť objektPohybNásobenie (57)Násobenie gradientom (0,1)Násobiť s náhodnou hodnotou (0,1)Násobiť s náhodnou hodnotou (0,2)Vzdialenosť mutácie:Miera mutácie:Môj prvý fraktálNL FilterNL Filter...NázovDetekcia neónuNeón...Nový fraktálNová G-žiaraNová jednotkaNová tlačiareň...Nové hniezdoNovinová _tlač...Novinová tlačNovinová tlač...V gimprc nie je %s: Musíte pridať položku ako napr. (%s "%s") -do vášho %s súboru.Bez fariebBez kompresieNeboli zachytené žiadne dátaBez výplneBez svetlaNenájdenéNie je žiadny výber pre konverziuŽiadna rozumná prípona, pokus o načítanie pomocou súborov magických čísiel.Žiadna rozumná prípona, ukladám ako komprimovaný XCF.Počet _dole:ŠumNeštvorcové body. Obrázok môže vyzerať rozmačkaný.ŽiadnaNormálneNormálne:Normalizujem...Nie je čo orezávať.Počet fariebPočet M_RU položiek (1 - 16):Počet segmentov:Počet dlaždícPočet s_nímok:Počet _úrovní krokov späť (1 - 99):Počet buniek:Počet farieb:Počet cyklov pokrývajúci celý rozsah hodnôtPočet kusov idúcich napriečPočet kusov idúcich dolePočet aplikovania filtraPočet jedinečných farieb: %dČíslovanie_Posun:Iba pop_redie_Krytie:M_ožnostiO_rientáciaOs_tatnéVýst_upné LPIVýst_upný kanál:Presah_ovanie:Pre_krytiePre_vzorkovanie:Detaily objektovPoloha X objektu v priestore XYZPoloha Y objektu v priestore XYZPoloha Z objektu v priestore XYZOsemuholníky a š_tvorcePo_sun:Posun (1):P_osun uhla:Posun všetkých vektorov o daný uholPosun:Kreslenie olejomaľbou_OlejomaľbaOlejomaľbaNa hranách:Na film:Na hranách:Jedna snímka na vrstvu (nahradiť)Iba p_ozadieIba jedna jedinečná farba_Krytie:Op_timálny odhad_MožnostiKrytie:OtvoriťOtvoriť súborOtvoriť IFS Fractal súborOtváranie zlyhaloOtvoriť nedávneOtváranie %s'...Otváranie miniatúry pre %s'...Otvorí editor máp orientácieOtvára editor mapy veľkostiOptimalizovaťOptimalizovať (pre _GIF)Optimalizovať výstup podľa typu tlačeného obrázkaAnimácia sa optimalizuje...MožnostiOr_ientáciaZačiatok vľavo dol_eOrientáciaEditor máp orientácieOrientácia:PôvodnýPôvodná intenzitaPôvodný:_InéOstatné nastaveniaVýstupVýstupné úrovne:Typ výstupu:Typ okoliaPrekrytieP (faktor mocniny)PDF dokumentPNGPNG + Delta PNGÚroveň PNG kompresie:PNG obrázokPNM obrázokPNM obrázokPNM zápis nevie spracovať obrázky s alfa kanálmi.PNM: Chyba pri čítaní súboru.PNM: Neplatné X rozlíšeniePNM: Neplatné Y rozlíšenie.PNM: Neplatný súbor.PNM: Neplatná maximálna hodnotaPNM: Predčasný koniec súboru.PPD súbor:PPIPS diamantPS štvorec (euklidovské bodka)P_apierP_olárne súradnice..._NáhľadStrana %dRozčerenie stránky...Nastavenie stranyPageSetupDlg zlyhal: %dEfekt rozčerenia stranyStrany pre načítanie (napr.: 1-4 or 1,3,5-7)Strany:Režim kreslenia:Paint Shop Pro obrázokKreslenie hránKreslím...Súbor s pal_etou:PaletaPapierová dlaždicaPapierová dlaždica...Parameter k:ParametreParametre boli uložené do '%s'Chyba pri spracovaní '%s': +do vášho %s súboru.Bez fariebBez kompresieNeboli zachytené žiadne dátaBez výplneBez svetlaNenájdenéNie je žiadny výber pre konverziuŽiadna rozumná prípona, pokus o načítanie pomocou súborov magických čísiel.Žiadna rozumná prípona, ukladám ako komprimovaný XCF.Počet _dole:ŠumNeštvorcové body. Obrázok môže vyzerať rozmačkaný.ŽiadnaNormálneNormálne:Normalizujem...Nie je čo orezávať.Počet fariebPočet M_RU položiek (1 - 16):Počet segmentov:Počet dlaždícPočet s_nímok:Počet _úrovní krokov späť (1 - 99):Počet buniek:Počet farieb:Počet cyklov pokrývajúci celý rozsah hodnôtPočet kusov idúcich napriečPočet kusov idúcich dolePočet aplikovania filtraPočet jedinečných farieb: %dČíslovanie_Posun:Iba pop_redie_Krytie:M_ožnostiO_rientáciaOs_tatnéVýst_upné LPIVýst_upný kanál:Presah_ovanie:Pre_krytiePre_vzorkovanie:Detaily objektovPoloha X objektu v priestore XYZPoloha Y objektu v priestore XYZPoloha Z objektu v priestore XYZOsemuholníky a š_tvorcePo_sun:Posun (1):P_osun uhla:Posun všetkých vektorov o daný uholPosun:Kreslenie olejomaľbou_OlejomaľbaOlejomaľbaNa hranách:Na film:Na hranách:Jedna snímka na vrstvu (nahradiť)Iba p_ozadieIba jedna jedinečná farba_Krytie:Op_timálny odhad_MožnostiKrytie:OtvoriťOtvoriť súborOtvoriť IFS Fractal súborOtváranie zlyhaloOtvoriť nedávneOtváranie %s'...Otváranie miniatúry pre %s'...Otvorí editor máp orientácieOtvára editor mapy veľkostiOptimalizovaťOptimalizovať (pre _GIF)Optimalizovať výstup podľa typu tlačeného obrázkaAnimácia sa optimalizuje...MožnostiOr_ientáciaZačiatok vľavo dol_eOrientáciaEditor máp orientácieOrientácia:PôvodnýPôvodná intenzitaPôvodný:_InéOstatné nastaveniaVýstupVýstupné úrovne:Typ výstupu:Typ okoliaPrekrytieP (faktor mocniny)PDF dokumentPGM obrázokPNGPNG + Delta PNGÚroveň PNG kompresie:PNG obrázokPNM obrázokPNM obrázokPNM zápis nevie spracovať obrázky s alfa kanálmi.PNM: Chyba pri čítaní súboru.PNM: Neplatné X rozlíšeniePNM: Neplatné Y rozlíšenie.PNM: Neplatný súbor.PNM: Neplatná maximálna hodnotaPNM: Predčasný koniec súboru.PPD súbor:PPIPPM obrázokPS diamantPS štvorec (euklidovské bodka)P_apierP_olárne súradnice..._NáhľadStrana %dRozčerenie stránky...Nastavenie stranyPageSetupDlg zlyhal: %dEfekt rozčerenia stranyStrany pre načítanie (napr.: 1-4 or 1,3,5-7)Strany:Režim kreslenia:Paint Shop Pro obrázokKreslenie hránKreslím...Súbor s pal_etou:PaletaPapierová dlaždicaPapierová dlaždica...Parameter k:ParametreParametre boli uložené do '%s'Chyba pri spracovaní '%s': %sVložiťVložiť zo schránkyVloženéVkladám...Vyplnenie vzorkouPercentáPercento _čiernej:Percento _bielej:Percento filtrovaných bodovFára uhla, rozsah 0-360PhongFotokópiaFotografiaPhotoshop obrázokKusy:Ping Pong_Výška bodu:Ší_rka bodu:Rozsah hodnôt bodovPixelizovaťPixelizuje sa...Body_UmiestnenieNáhodne umiestni ťahy v obrázkuUmiestneniePlanárne (RRR,GGG,BBB)Planárne RGBRovinuPlazmaPlazma...Spustiť/ZastaviťPrehrávanie:Prekontrolujte si inštaláciu.Rysuje graf nastaveníPrehliadač modulovMnožné čísloPo_larizácia:BodovéBodové svetloPolárna žiaraPolarizáciaPolarizuje sa...MnohouholníkNa výškuPozíciaPozícia X:Pozícia Y:Pozícia Z:Pozícia obrázka na strane. Kliknite a potiahnite primárne tlačítko na pozíciu obrázka. Kliknite a potiahnite sekundárne tlačítko pohybu obrázka s jemnejšou presnosťou; každá jednotka pohybu posunie obrázok o jeden bod (1/72") @@ -544,7 +546,7 @@ V súčasnosti toto nie je podporované.XY pozícia:X_1:X_2:Zmena veľkosti YY:YMAX:YMIN:Y_1:Y_2:ŽltáŽltá:Žltá_KChystáte sa vytvoriť obrovský HTML súbor, ktorý zrejme zhodí váš prehliadač.Nie je možné otočiť celý obrázok, ak existuje plávajúci výber.Nie je možné otočiť celý obrázok, ak existuje výber.Nie je možné uložiť masku kurzora pre obrázok, -ktorý nemá alfa kanál.Zmena veľkosti ZZ:ZSoft PCX obrázokHorlivé Orezávanie(tm)LupaZväčšiťZväčšiť (obrázok bude väčší)ZmenšiťZmenšiť (obrázok bude menší)Miera zmeny veľkosti:Zväčšiť na_3x3Skr_atka:_O mape obrázka..._Adaptívne_Aditívne_PokročiléPokročilé n_astavenia_Algoritmus:_AlfaPrah _alfy:_Alfou riadený význam_Alfa:Mier_a:_Amplitúda:U_hol:_Animovať_VyhladzovanieP_oužiť plátno..._Autoorezanie obrázka_Autoorezanie vrstiev_Automaticky konvertovať_Azimut:_PozadieFarba po_zadia_Základné URL:Šírka _skosenia:_BilineárnyČi_ernaÚro_veň čiernej:_StmavnutieVý_buch_Prechod_Pruhy..._Modrá_Modrá:_RozostreniePolomer ro_zostrenia:_Priemer okraja..._Okraj:Do_le doľava_Dole:_Hranol_Jas:_Jas_Jas:Š_tetecVeľkosť _bloku:_Mapa vyvýšenia_Mapa vyvýšenia..._Mapa vyvýšenia:Mapa _vyvýšenia_ŠachovnicaVylepšenie _farieb...Výmena _farieb..._Farbiť..._Kontext_Konvolučná matica..._Kopírovať_Kubizmus..._Zakriviť..._Dekompozícia...Re_dukovaťPolomer _deformácie:O_dstranenie prekladania..._Pauza medzi snímkami, ak nie je určená:_Zlúčiť hĺbku..._Hĺbka:_Derivovať_Popis:_Detail:_Difrakčné vzorky...Čísli_ce:_Deliatovať_Vytlačiť...Vy_tláčanie:_Skreslený_Delenie:_Bodky_Dynamický:Vyl_epšenie hrán_Hrany..._Upraviť_Efektový obrázok:_Vyvýšenie:R_eliéfR_eliéf..._Zapuzdrený PostscriptC_elý obrázokMapa prostr_edia_Explicitné dlaždice_Exponent:Osvetlenie p_opredia/pozadia_Faktor:_Továrenské štandardy_SúborNázov _súboru:_Film..._Sadu filtrov...Dĺžka _filtra:_Hľadať pozadie_Upraviť výšku podľa obrázkov_Plameň...E_fekt odlesku..._Písmo:_Vnútiť_Vnútiť dláždenie?P_opredie a pozadie_Farba popredia_Popredie do špičiek_Formát:Prieskumník _fraktálov..._Fraktálové trasovanie..._Fraktály_Voľná_Ftp server_Gžiara..._GIF komentár:_GIMPressionista..._Gama:_Gaussovo rozostrenie..._Všeobecné_Generovať úplný HTML dokument_Gfig..._Sklenená dlaždica...Polomer _žiarenia:Žia_renie:_Gopher_Prechod_Mapovať prechodŠe_dá:_Zelená_Zelená:Š_edáV_eľkosť mriežky:_Mriežka...Ná_rast_Gilotína_HSL farebný model_Výška_Výška:_PomocníkŠesť_hrany_Skryté_Vysoká_Podržať maximálne kanály_Zadržanie:Posun _otvorov:_Vodorovne_Vodorovný štýl:_Vodorovné:Vo_dorovný rozostup:_Horúci..._OdtieňOtočenie od_tieňa:_Výpadky..._ID:_IFS Fraktál..._IIR_IZvlnenie..._IdeálnePredpona _identifikátora:_Ignorovať_Ignorovať spodnú vrstvu, aj keď je viditeľná_Ilúzia..._Mapa obrázka..._PalecNezáv_islé RGBVstupné SP_I:_Vložiť_Intenzita:_Prekladať_Prekladanie (Adam7)_Invertovať_JPEG_JavaScript_Skladačka...Zachovať nastavené NCSA _kružnice_Zachovať pomer strán_Ponechať pôvodné okolieZachovať znamien_ko výsledku (iba jeden smer)_Odstrániť_LZW_Laplaceov_Veľké kolísanieDoľa_vaV_ľavo začína na:Index re_frakcie šošoviek:_Svetlo_Svetelné efekty..._Obmedzenie šírky riadku_Lineárny_RiadkyOd_kaz_Načítať štandardyUzamknúť kaná_ly_Opakovať donekonečna_Dolná_Dolný_MIMEPoslať obrázok e-_mailom..._Odstrániť prechody_Vytvoriť priesvitné okolieSpätné _mapovanieTyp _mapy:_MapovaniePrípona súboru _masky:_Maska polomeru:Veľkosť _masky:_Materiál_Max (%):_Maximálna hĺbka:_Max RGB..._Max. Delta:_Bludisko..._Kovový_Stredná hodnota do špičiekStre_dné tóny_Milimeter_Minimálna hodnota:_ZrkadliťRôz_ne operácie_Upraviť kanál odtieňu_Upraviť červený kanál_Monochromaticky_Mozaika..._Rozostrenie pohybom..._Presun_NL Filter...Prirodze_ná farba_Neón...Počet _naprieč:St_upeň šumu:Žiad_ne_Normálny_NormalizovaťVýška _číslic:Počet segme_ntov:_Krytie:_Optimalizovať (odlišnosti)_Balenie bitov_Rozčerenie stránky...Ty_p palety:_Papierová dlaždica..._Parametre_Percentá čiernej:_Perióda:_Fáza:_Forokópia...Vy_brať..._Miera škrtenia:_Ping PongNerovný _povrch_Pixelizovať..._Plazma..._Prehrávanie..._Prehliadač modulov_Množné číslo:_Leštený:_Mnohouholník_PostScript Level 2Názov s p_redponou:Zachovať svet_losť_Predvoľby_Náhľad_Zobraziť raz_Náhľad!_TlačiťT_lačiť..._Výzva pre informácie o oblastiMiera _rozšírenia:_Psychoplocha_Qbist..._Kvalita:_RGB_RGB farebný model_RLE_RLE kompresia_RLE kódovanie_RadiálnyPolome_r 1:Polome_r:Náh_odný odtieň:Hnie_zdo náhodných čísel:_Náhodnosť_Lúče_Príjemca:O_bdĺžnikČe_rvená:_Opakovať %sZ_rkadliace_Odstrániť_Odstrániť pozadie_Generovanie_Vyžaduje implicitnú URL_Uchovať dlaždicoviteľnosť_Retinex...Dop_rava_Pravý okraj:_Vlnenie..._Otočené_Vzor vyfarbenia..._Sýtosť_Sýtosť:_Uložiť komentár do súboru_Uložiť štandardy_Delenie mierky:_Mierka:Ro_zptýlenie RGB..._Snímka obrazovky..._Hĺbka hľadania:_Hľadať:_Druhá žiara_Selektívne Gaussove rozostrenie...Čia_stočné sploštenie...Odo_sielateľ:Nas_taviť okolie na farbu pozadia_Nastaviť index okolia na 0Nas_taveniaTieň pod roz_čerenímDoo_striť...O_strosť:Po_sunúť..._Lesk:_Zobraziť kurzor_Sínus...Veľko_sť_Veľkosť:_Roztrepanie..._Malé dlaždice...Š_kvrna_Vyhladzovanie:Pri_chytávanie k mriežke povolené_Sobel..._Jemná žiara...Pevný _šum..._Iskriť..._Rýchlosť:Dĺžka _hrotov:_Lúče:Ra_strovacia funkcia:Štvor_covýŠ_tvorceKolí_sanie_Sila:Ro_zťahnutie kontrastuŤ_ah_Symbol:_TWAIN...Názov/ID cieľovej snímky: (voli_teľné - použité iba pre SNÍMKY)_Hrúbka:_Prah:_Prah alfy...Pra_h:_Opakovať mapu vyvýšeniaVeľkos_ť dlaždice:_Dláždiť..._Názov:_Nástroje_Hore začína na:Hor_e doprava_Hore:_Priesvitné_URL sa aktivuje po kliknutí do tejto oblasti (povinné)O_dstrániť optimalizáciu_Späť %s_RovnomernáEditor j_ednotiek_Rozostriť masku..._Obnoviť_Horný_Horný okraj_Horný prah:_Použiť typy GLib (guint8*)_Použiť farbu pozadia_Použiť spojenie buniekPo_užiť dvojitú veľkosť obsluhy pre zosnímavaniePo_užiť algoritmus intenzityPo_užiť (neviditeľnú) spodnú vrstvu ako základňu_Uuencode_HodnotaIn_vertovanie hodnôt_Rozšíriť hodnotu..._Hodnota:_Van Gogh (LIC)..._Variácia:Z_vislý rozostup:_ZvisloZ_vislý štýl:_Zvislé:_Zobraziť_Voronoi_Ohnutie_Ohnúť..._Výška hladiny:_Vlnová dĺžka:_Vlny..._Web serverUhol _vírenia:_BielaÚroveň _bielej:Ši_roké pruhy_Šírka:Ší_rka:_VietorS biely_m šumom_ZalomiťO_baliť okolo_Zapísať hodnoty riadiaceho boduMierka _X:_X vytlačenie:_X posun:_X pomer:_X veľkosť:Bitmapa vo formáte _X10_X:Mierka _Y:_Y vytlačenie:_Y posun:_Y pomer:_Y veľkosť:_Y:Žl_tá_Z:Horlivé ore_závanie_Lupa_Lupa:`Štandard' je vytvorený_Jedno oknopoalfaautostretch_hsv: cmap bolo NULL! Končím... +ktorý nemá alfa kanál.Zmena veľkosti ZZ:ZSoft PCX obrázokHorlivé Orezávanie(tm)LupaZväčšiťZväčšiť (obrázok bude väčší)ZmenšiťZmenšiť (obrázok bude menší)Miera zmeny veľkosti:Zväčšiť na_3x3Skr_atka:_O mape obrázka..._Adaptívne_Aditívne_PokročiléPokročilé n_astavenia_Algoritmus:_AlfaPrah _alfy:_Alfou riadený význam_Alfa:Mier_a:_Amplitúda:U_hol:_Animovať_VyhladzovanieP_oužiť plátno..._Autoorezanie obrázka_Autoorezanie vrstiev_Automaticky konvertovať_Azimut:_PozadieFarba po_zadia_Základné URL:Šírka _skosenia:_BilineárnyČi_ernaÚro_veň čiernej:_StmavnutieVý_buch_Prechod_Pruhy..._Modrá_Modrá:_RozostreniePolomer ro_zostrenia:_Priemer okraja..._Okraj:Do_le doľava_Dole:_Hranol_Jas:_Jas_Jas:Š_tetecVeľkosť _bloku:_Mapa vyvýšenia_Mapa vyvýšenia..._Mapa vyvýšenia:Mapa _vyvýšenia_Šachovnica_VymazaťVylepšenie _farieb...Výmena _farieb..._Farbiť..._Kontext_Konvolučná matica..._Kopírovať_Kubizmus..._Zakriviť..._Dekompozícia...Re_dukovaťPolomer _deformácie:O_dstranenie prekladania..._Pauza medzi snímkami, ak nie je určená:_Zlúčiť hĺbku..._Hĺbka:_Derivovať_Popis:_Detail:_Difrakčné vzorky...Čísli_ce:_Deliatovať_Vytlačiť...Vy_tláčanie:_Skreslený_Delenie:_Bodky_Dynamický:Vyl_epšenie hrán_Hrany..._Upraviť_Efektový obrázok:_Vyvýšenie:R_eliéfR_eliéf..._Zapuzdrený PostscriptC_elý obrázokMapa prostr_edia_Explicitné dlaždice_Exponent:Osvetlenie p_opredia/pozadia_Faktor:_Továrenské štandardy_SúborNázov _súboru:_Film..._Sadu filtrov...Dĺžka _filtra:_Hľadať pozadie_Upraviť výšku podľa obrázkov_Plameň...E_fekt odlesku..._Písmo:_Vnútiť_Vnútiť dláždenie?P_opredie a pozadie_Farba popredia_Popredie do špičiek_Formát:Prieskumník _fraktálov..._Fraktálové trasovanie..._Fraktály_Voľná_Ftp server_Gžiara..._GIF komentár:_GIMPressionista..._Gama:_Gaussovo rozostrenie..._Všeobecné_Generovať úplný HTML dokument_Gfig..._Sklenená dlaždica...Polomer _žiarenia:Žia_renie:_Gopher_Prechod_Mapovať prechodŠe_dá:_Zelená_Zelená:Š_edá_MriežkaV_eľkosť mriežky:_Mriežka...Ná_rast_Gilotína_HSL farebný model_Výška_Výška:_PomocníkŠesť_hrany_Skryté_Vysoká_Podržať maximálne kanály_Zadržanie:Posun _otvorov:_Vodorovne_Vodorovný štýl:_Vodorovné:Vo_dorovný rozostup:_Horúci..._OdtieňOtočenie od_tieňa:_Výpadky..._ID:_IFS Fraktál..._IIR_IZvlnenie..._IdeálnePredpona _identifikátora:_Ignorovať_Ignorovať spodnú vrstvu, aj keď je viditeľná_Ilúzia..._Mapa obrázka..._PalecNezáv_islé RGBVstupné SP_I:_Vložiť_Intenzita:_Prekladať_Prekladanie (Adam7)_Invertovať_JPEG_JavaScript_Skladačka...Zachovať nastavené NCSA _kružnice_Zachovať pomer strán_Ponechať pôvodné okolieZachovať znamien_ko výsledku (iba jeden smer)_Odstrániť_LZW_Laplaceov_Veľké kolísanieDoľa_vaV_ľavo začína na:Index re_frakcie šošoviek:_Svetlo_Svetelné efekty..._Obmedzenie šírky riadku_Lineárny_RiadkyOd_kaz_Načítať štandardyUzamknúť kaná_ly_Opakovať donekonečna_Dolná_Dolný_MIMEPoslať obrázok e-_mailom..._Odstrániť prechody_Vytvoriť priesvitné okolieSpätné _mapovanieTyp _mapy:_MapovaniePrípona súboru _masky:_Maska polomeru:Veľkosť _masky:_Materiál_Max (%):_Maximálna hĺbka:_Max RGB..._Max. Delta:_Bludisko..._Kovový_Stredná hodnota do špičiekStre_dné tóny_Milimeter_Minimálna hodnota:_ZrkadliťRôz_ne operácie_Upraviť kanál odtieňu_Upraviť červený kanál_Monochromaticky_Mozaika..._Rozostrenie pohybom..._Presun_NL Filter...Prirodze_ná farba_Neón...Počet _naprieč:St_upeň šumu:Žiad_ne_Normálny_NormalizovaťVýška _číslic:Počet segme_ntov:_Krytie:_Optimalizovať (odlišnosti)_Balenie bitov_Rozčerenie stránky...Ty_p palety:_Papierová dlaždica..._Parametre_Percentá čiernej:_Perióda:_Fáza:_Forokópia...Vy_brať..._Miera škrtenia:_Ping PongNerovný _povrch_Pixelizovať..._Plazma..._Prehrávanie..._Prehliadač modulov_Množné číslo:_Leštený:_Mnohouholník_PostScript Level 2Názov s p_redponou:Zachovať svet_losť_Predvoľby_Náhľad_Zobraziť raz_Náhľad!_TlačiťT_lačiť..._Výzva pre informácie o oblastiMiera _rozšírenia:_Psychoplocha_Qbist..._Kvalita:_RGB_RGB farebný model_RLE_RLE kompresia_RLE kódovanie_RadiálnyPolome_r 1:Polome_r:Náh_odný odtieň:Hnie_zdo náhodných čísel:_Náhodnosť_Lúče_Príjemca:O_bdĺžnikČe_rvená:_Opakovať %sZ_rkadliace_Odstrániť_Odstrániť pozadie_Generovanie_Vyžaduje implicitnú URL_Uchovať dlaždicoviteľnosť_Retinex...Dop_rava_Pravý okraj:_Vlnenie..._Otočené_Vzor vyfarbenia..._Sýtosť_Sýtosť:_Uložiť komentár do súboru_Uložiť štandardy_Delenie mierky:_Mierka:Ro_zptýlenie RGB..._Snímka obrazovky..._Hĺbka hľadania:_Hľadať:_Druhá žiara_Selektívne Gaussove rozostrenie...Čia_stočné sploštenie...Odo_sielateľ:Nas_taviť okolie na farbu pozadia_Nastaviť index okolia na 0Nas_taveniaTieň pod roz_čerenímDoo_striť...O_strosť:Po_sunúť..._Lesk:_Zobraziť kurzor_Sínus...Veľko_sť_Veľkosť:_Roztrepanie..._Malé dlaždice...Š_kvrna_Vyhladzovanie:Pri_chytávanie k mriežke povolené_Sobel..._Jemná žiara...Pevný _šum..._Iskriť..._Rýchlosť:Dĺžka _hrotov:_Lúče:Ra_strovacia funkcia:Štvor_covýŠ_tvorceKolí_sanie_Sila:Ro_zťahnutie kontrastuŤ_ah_Symbol:_TWAIN...Názov/ID cieľovej snímky: (voli_teľné - použité iba pre SNÍMKY)_Hrúbka:_Prah:_Prah alfy...Pra_h:_Opakovať mapu vyvýšeniaVeľkos_ť dlaždice:_Dláždiť..._Názov:_Nástroje_Hore začína na:Hor_e doprava_Hore:_Priesvitné_URL sa aktivuje po kliknutí do tejto oblasti (povinné)O_dstrániť optimalizáciu_Vrátiť späť_Späť %s_RovnomernáEditor j_ednotiek_Rozostriť masku..._Obnoviť_Horný_Horný okraj_Horný prah:_Použiť typy GLib (guint8*)_Použiť farbu pozadia_Použiť spojenie buniekPo_užiť dvojitú veľkosť obsluhy pre zosnímavaniePo_užiť algoritmus intenzityPo_užiť (neviditeľnú) spodnú vrstvu ako základňu_Uuencode_HodnotaIn_vertovanie hodnôt_Rozšíriť hodnotu..._Hodnota:_Van Gogh (LIC)..._Variácia:Z_vislý rozostup:_ZvisloZ_vislý štýl:_Zvislé:_Zobraziť_Voronoi_Ohnutie_Ohnúť..._Výška hladiny:_Vlnová dĺžka:_Vlny..._Web serverUhol _vírenia:_BielaÚroveň _bielej:Ši_roké pruhy_Šírka:Ší_rka:_VietorS biely_m šumom_ZalomiťO_baliť okolo_Zapísať hodnoty riadiaceho boduMierka _X:_X vytlačenie:_X posun:_X pomer:_X veľkosť:Bitmapa vo formáte _X10_X:Mierka _Y:_Y vytlačenie:_Y posun:_Y pomer:_Y veľkosť:_Y:Žl_tá_Z:Horlivé ore_závanie_Lupa_Lupa:`Štandard' je vytvorený_Jedno oknopoalfaautostretch_hsv: cmap bolo NULL! Končím... čiernamodrámodrosť_cb470modrosť_cb470fmodrosť_cb709modrosť_cb709fbzip archívc_astretch: cmap bol NULL! Končím... cmazúrováazúrová_ke-_mailzelenágzip archívodtieňneplatný formát súboru G-žiara: %s k(1-x^p)k(1-x^p) po krokochkx^pkx^p po krokochk{x(1-x)}^pk{x(1-x)}^p po krokochluma_y470luma_y470fluma_y709luma_y709ffialovápurpurová_kmilisekúndnenašiel som %s v gflares_listpix.bo_dy zhorabody _zľavabodov/%ačervenáčervenosť_cr470červenosť_cr470fčervenosť_cr709červenosť_cr709fsýtosťsin^p, po krokochFunkcia založená na sin^pnejaký typ chyby s príponou súboru alebo jej neprítomnosť_Celú obrazovkudo alfyjasx (body)y (body)žltážltá_k \ No newline at end of file diff -uraN gimp-2.2.4/po-plug-ins/sk.po gimp-2.2.5/po-plug-ins/sk.po --- gimp-2.2.4/po-plug-ins/sk.po 2005-02-22 23:12:37.000000000 +0100 +++ gimp-2.2.5/po-plug-ins/sk.po 2005-04-09 23:09:24.000000000 +0200 @@ -1,21 +1,21 @@ # translation of gimp-plug-ins.HEAD.po to Slovak -# Copyright (C) 2001,2004 Free Software Foundation, Inc. +# Copyright (C) 2001, 2004, 2005 Free Software Foundation, Inc. # Zdenko Podobný , 2004. +# Marcel Telka , 2005. +# +# $Id: sk.po,v 1.80.2.4 2005/03/20 19:23:52 marcel Exp $ # msgid "" msgstr "" -"Project-Id-Version: gimp-plug-ins.HEAD\n" +"Project-Id-Version: gimp-plug-ins\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-02-22 23:04+0100\n" -"PO-Revision-Date: 2004-11-27 10:28Stedn Evropa (bn as)\n" -"Last-Translator: Zdenko Podobný \n" -"Language-Team: Slovak <>\n" +"POT-Creation-Date: 2005-04-09 21:56+0200\n" +"PO-Revision-Date: 2004-11-27 10:28+0100\n" +"Last-Translator: Marcel Telka \n" +"Language-Team: Slovak \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: KBabel 1.3\n" -"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);\n" #: ../plug-ins/FractalExplorer/Dialogs.c:523 #: ../plug-ins/gfig/gfig-dialog.c:283 ../plug-ins/gflare/gflare.c:891 @@ -388,7 +388,7 @@ #: ../plug-ins/common/pat.c:433 ../plug-ins/common/pcx.c:585 #: ../plug-ins/common/pix.c:515 ../plug-ins/common/png.c:1178 #: ../plug-ins/common/pnm.c:809 ../plug-ins/common/postscript.c:1123 -#: ../plug-ins/common/psd_save.c:1588 ../plug-ins/common/raw.c:517 +#: ../plug-ins/common/psd_save.c:1336 ../plug-ins/common/raw.c:517 #: ../plug-ins/common/raw.c:544 ../plug-ins/common/spheredesigner.c:2088 #: ../plug-ins/common/sunras.c:513 ../plug-ins/common/tga.c:1030 #: ../plug-ins/common/tiff.c:1810 ../plug-ins/common/xbm.c:996 @@ -1227,35 +1227,36 @@ #: ../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 +#: ../plug-ins/bmp/bmpread.c:207 ../plug-ins/bmp/bmpread.c:307 +#: ../plug-ins/bmp/bmpread.c:348 #, c-format msgid "'%s' is not a valid BMP file" msgstr "'%s' nie je správny BMP súbor" #: ../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 +#: ../plug-ins/bmp/bmpread.c:300 ../plug-ins/bmp/bmpread.c:313 +#: ../plug-ins/bmp/bmpread.c:319 #, c-format msgid "Error reading BMP file header from '%s'" msgstr "Chyba počas načítavania hlavičky BMP súboru z '%s'" -#: ../plug-ins/bmp/bmpread.c:442 ../plug-ins/bmp/bmpread.c:477 +#: ../plug-ins/bmp/bmpread.c:450 ../plug-ins/bmp/bmpread.c:485 msgid "Unrecognized or invalid BMP compression format." msgstr "Neznámy alebo neplatný formát BMP kompresie." #. #. * Create the "background" layer to hold the image... #. -#: ../plug-ins/bmp/bmpread.c:482 ../plug-ins/common/CEL.c:357 +#: ../plug-ins/bmp/bmpread.c:490 ../plug-ins/common/CEL.c:357 #: ../plug-ins/common/CEL.c:360 ../plug-ins/common/blinds.c:273 #: ../plug-ins/common/compose.c:625 ../plug-ins/common/decompose.c:595 #: ../plug-ins/common/dicom.c:442 ../plug-ins/common/film.c:946 -#: ../plug-ins/common/gifload.c:865 ../plug-ins/common/jpeg.c:1113 +#: ../plug-ins/common/gifload.c:864 ../plug-ins/common/jpeg.c:1113 #: ../plug-ins/common/jpeg.c:2474 ../plug-ins/common/pcx.c:334 #: ../plug-ins/common/pcx.c:340 ../plug-ins/common/pix.c:374 #: ../plug-ins/common/png.c:808 ../plug-ins/common/pnm.c:517 -#: ../plug-ins/common/psd.c:2173 ../plug-ins/common/raw.c:677 +#: ../plug-ins/common/psd.c:2174 ../plug-ins/common/raw.c:677 #: ../plug-ins/common/smooth_palette.c:257 ../plug-ins/common/sunras.c:925 #: ../plug-ins/common/tga.c:929 ../plug-ins/common/tiff.c:833 #: ../plug-ins/common/tile.c:266 ../plug-ins/common/winclipboard.c:579 @@ -1286,12 +1287,12 @@ #: ../plug-ins/common/jpeg.c:1453 ../plug-ins/common/pat.c:438 #: ../plug-ins/common/pcx.c:545 ../plug-ins/common/pix.c:521 #: ../plug-ins/common/png.c:1185 ../plug-ins/common/pnm.c:814 -#: ../plug-ins/common/postscript.c:1128 ../plug-ins/common/psd_save.c:1593 +#: ../plug-ins/common/postscript.c:1128 ../plug-ins/common/psd_save.c:1341 #: ../plug-ins/common/sunras.c:518 ../plug-ins/common/tga.c:1035 #: ../plug-ins/common/tiff.c:1815 ../plug-ins/common/xbm.c:1001 #: ../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:957 +#: ../plug-ins/sgi/sgi.c:545 ../plug-ins/winicon/icosave.c:977 #: ../plug-ins/xjt/xjt.c:1682 #, c-format msgid "Saving '%s'..." @@ -1627,7 +1628,7 @@ msgstr "Odtieň" #: ../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 +#: ../plug-ins/common/decompose.c:144 ../plug-ins/rcm/rcm_dialog.c:548 msgid "Saturation" msgstr "Sýtosť" @@ -2251,9 +2252,8 @@ msgstr "c_astretch: cmap bol NULL! Končím...\n" #: ../plug-ins/common/cartoon.c:147 -#, fuzzy msgid "Ca_rtoon..." -msgstr "Kraikatúra" +msgstr "Ka_rikatúra..." #: ../plug-ins/common/cartoon.c:229 ../plug-ins/common/dog.c:247 #: ../plug-ins/common/gauss.c:431 ../plug-ins/common/neon.c:221 @@ -2265,7 +2265,7 @@ #: ../plug-ins/common/cartoon.c:808 msgid "Cartoon" -msgstr "Kraikatúra" +msgstr "Karikatúra" #: ../plug-ins/common/cartoon.c:838 ../plug-ins/common/photocopy.c:867 msgid "_Mask radius:" @@ -2434,24 +2434,24 @@ msgid "Color to _Alpha..." msgstr "Farba do _alfy..." -#: ../plug-ins/common/colortoalpha.c:181 +#: ../plug-ins/common/colortoalpha.c:187 msgid "Removing color..." msgstr "Odstraňujem farbu..." -#: ../plug-ins/common/colortoalpha.c:377 +#: ../plug-ins/common/colortoalpha.c:380 msgid "Color to Alpha" msgstr "Farby do alfy" -#: ../plug-ins/common/colortoalpha.c:402 ../plug-ins/common/mapcolor.c:424 +#: ../plug-ins/common/colortoalpha.c:405 ../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:406 +#: ../plug-ins/common/colortoalpha.c:409 msgid "Color to Alpha Color Picker" msgstr "Farebná pipeta farby do alfy" -#: ../plug-ins/common/colortoalpha.c:420 +#: ../plug-ins/common/colortoalpha.c:423 msgid "to alpha" msgstr "do alfy" @@ -2474,13 +2474,13 @@ msgstr "HSV" #. Gray: Circle: Spinbutton 1 -#: ../plug-ins/common/compose.c:148 ../plug-ins/rcm/rcm_dialog.c:452 +#: ../plug-ins/common/compose.c:148 ../plug-ins/rcm/rcm_dialog.c:459 msgid "Hue:" msgstr "Odtieň:" #. Gray: Circle: Spinbutton 2 #: ../plug-ins/common/compose.c:149 ../plug-ins/print/gimp_color_window.c:364 -#: ../plug-ins/rcm/rcm_dialog.c:479 +#: ../plug-ins/rcm/rcm_dialog.c:486 msgid "Saturation:" msgstr "Sýtosť:" @@ -3095,15 +3095,15 @@ msgid "Deinterlace..." msgstr "Odstraňujem prekladanie" -#: ../plug-ins/common/deinterlace.c:315 +#: ../plug-ins/common/deinterlace.c:324 msgid "Deinterlace" msgstr "Odstránenie prekladania" -#: ../plug-ins/common/deinterlace.c:340 +#: ../plug-ins/common/deinterlace.c:349 msgid "Keep o_dd fields" msgstr "Nechať nepárne po_lia" -#: ../plug-ins/common/deinterlace.c:341 +#: ../plug-ins/common/deinterlace.c:350 msgid "Keep _even fields" msgstr "Nechať párn_e polia" @@ -3500,7 +3500,7 @@ #. Create selection #: ../plug-ins/common/film.c:1166 ../plug-ins/imagemap/imap_selection.c:400 -#: ../plug-ins/rcm/rcm_dialog.c:158 +#: ../plug-ins/rcm/rcm_dialog.c:165 msgid "Selection" msgstr "Výber" @@ -4038,23 +4038,23 @@ msgid "Non-square pixels. Image might look squashed." msgstr "Neštvorcové body. Obrázok môže vyzerať rozmačkaný." -#: ../plug-ins/common/gifload.c:867 +#: ../plug-ins/common/gifload.c:866 #, c-format msgid "Background (%d%s)" msgstr "Pozadie (%d%s)" -#: ../plug-ins/common/gifload.c:915 ../plug-ins/common/iwarp.c:783 +#: ../plug-ins/common/gifload.c:914 ../plug-ins/common/iwarp.c:783 #: ../plug-ins/common/iwarp.c:817 #, c-format msgid "Frame %d" msgstr "Snímka %d" -#: ../plug-ins/common/gifload.c:917 +#: ../plug-ins/common/gifload.c:916 #, c-format msgid "Frame %d (%d%s)" msgstr "Snímka %d (%d%s)" -#: ../plug-ins/common/gifload.c:947 +#: ../plug-ins/common/gifload.c:946 #, c-format msgid "" "GIF: Undocumented GIF composite type %d is not handled. Animation might not " @@ -5651,14 +5651,12 @@ msgstr "PNM obrázok" #: ../plug-ins/common/pnm.c:260 -#, fuzzy msgid "PGM image" -msgstr "PNM obrázok" +msgstr "PGM obrázok" #: ../plug-ins/common/pnm.c:272 -#, fuzzy msgid "PPM image" -msgstr "PNM obrázok" +msgstr "PPM obrázok" #: ../plug-ins/common/pnm.c:465 ../plug-ins/common/pnm.c:486 #: ../plug-ins/common/pnm.c:493 ../plug-ins/common/pnm.c:502 @@ -5839,7 +5837,7 @@ msgid "B/W" msgstr "Č/B" -#: ../plug-ins/common/postscript.c:3003 ../plug-ins/rcm/rcm_dialog.c:404 +#: ../plug-ins/common/postscript.c:3003 ../plug-ins/rcm/rcm_dialog.c:411 msgid "Gray" msgstr "Šedá" @@ -5930,11 +5928,11 @@ msgid "Invalid UTF-8 string in PSD file" msgstr "Neplatný reťazec UTF-8 v súbore PSD" -#: ../plug-ins/common/psd_save.c:181 +#: ../plug-ins/common/psd_save.c:192 msgid "Photoshop image" msgstr "Photoshop obrázok" -#: ../plug-ins/common/psd_save.c:1564 +#: ../plug-ins/common/psd_save.c:1312 #, c-format msgid "" "Unable to save '%s'. The psd file format does not support images that are " @@ -5943,7 +5941,7 @@ "Nie je možné uložiť '%s'. Formát súbor psd nepodporuje obrázky, ktoré sú " "širšie alebo vyššie ako 30000 bodov." -#: ../plug-ins/common/psd_save.c:1576 +#: ../plug-ins/common/psd_save.c:1324 #, c-format msgid "" "Unable to save '%s'. The psd file format does not support images with " @@ -8536,19 +8534,16 @@ msgstr "Prvý Gfig" #: ../plug-ins/gfig/gfig-dialog.c:859 -#, fuzzy msgid "_Undo" -msgstr "Vrátiť späť" +msgstr "_Vrátiť späť" #: ../plug-ins/gfig/gfig-dialog.c:863 -#, fuzzy msgid "_Clear" -msgstr "Vymazať" +msgstr "_Vymazať" #: ../plug-ins/gfig/gfig-dialog.c:867 -#, fuzzy msgid "_Grid" -msgstr "Mriežka" +msgstr "_Mriežka" #: ../plug-ins/gfig/gfig-dialog.c:875 msgid "Raise selected object" @@ -8778,9 +8773,8 @@ msgstr "Počet bodov hviezdy" #: ../plug-ins/gfig/gfig-stock.c:41 -#, fuzzy msgid "Create bezier curve" -msgstr "Vytvoriť kružnicu" +msgstr "Vytvoriť beziérovú krivku" #: ../plug-ins/gfig/gfig.c:132 msgid "_Gfig..." @@ -11414,87 +11408,87 @@ msgid "Rotating the colormap..." msgstr "Otáčam farebnú mapu..." -#: ../plug-ins/rcm/rcm_dialog.c:114 +#: ../plug-ins/rcm/rcm_dialog.c:119 msgid "Original" msgstr "Pôvodný" -#: ../plug-ins/rcm/rcm_dialog.c:127 +#: ../plug-ins/rcm/rcm_dialog.c:133 msgid "Rotated" msgstr "Otočené" -#: ../plug-ins/rcm/rcm_dialog.c:140 +#: ../plug-ins/rcm/rcm_dialog.c:147 msgid "Continuous update" msgstr "Plynulá aktualizácia" -#: ../plug-ins/rcm/rcm_dialog.c:153 +#: ../plug-ins/rcm/rcm_dialog.c:160 msgid "Area:" msgstr "Oblasť:" -#: ../plug-ins/rcm/rcm_dialog.c:157 +#: ../plug-ins/rcm/rcm_dialog.c:164 msgid "Entire Layer" msgstr "Celú vrstvu" -#: ../plug-ins/rcm/rcm_dialog.c:159 +#: ../plug-ins/rcm/rcm_dialog.c:166 msgid "Context" msgstr "Kontext" #. spinbutton 1 -#: ../plug-ins/rcm/rcm_dialog.c:284 ../plug-ins/rcm/rcm_dialog.c:362 +#: ../plug-ins/rcm/rcm_dialog.c:291 ../plug-ins/rcm/rcm_dialog.c:369 msgid "From" msgstr "Od" #. spinbutton 2 -#: ../plug-ins/rcm/rcm_dialog.c:310 ../plug-ins/rcm/rcm_dialog.c:363 +#: ../plug-ins/rcm/rcm_dialog.c:317 ../plug-ins/rcm/rcm_dialog.c:370 msgid "To" msgstr "Komu" #. * Gray: Operation-Mode * -#: ../plug-ins/rcm/rcm_dialog.c:499 +#: ../plug-ins/rcm/rcm_dialog.c:506 msgid "Gray Mode" msgstr "Šedý režim" #. Gray: Operation-Mode: two radio buttons -#: ../plug-ins/rcm/rcm_dialog.c:508 +#: ../plug-ins/rcm/rcm_dialog.c:515 msgid "Treat as this" msgstr "Spracovať ako toto" -#: ../plug-ins/rcm/rcm_dialog.c:520 +#: ../plug-ins/rcm/rcm_dialog.c:527 msgid "Change to this" msgstr "Zmeniť toto" #. * Gray: What is gray? * -#: ../plug-ins/rcm/rcm_dialog.c:533 +#: ../plug-ins/rcm/rcm_dialog.c:540 msgid "Gray Threshold" msgstr "Prah šedej" #. * Misc: Used unit selection * -#: ../plug-ins/rcm/rcm_dialog.c:572 ../plug-ins/rcm/rcm_dialog.c:676 +#: ../plug-ins/rcm/rcm_dialog.c:579 ../plug-ins/rcm/rcm_dialog.c:683 msgid "Units" msgstr "Jednotky" #. Misc: Used unit selection: 3 radio buttons -#: ../plug-ins/rcm/rcm_dialog.c:581 +#: ../plug-ins/rcm/rcm_dialog.c:588 msgid "Radians" msgstr "Radiány" -#: ../plug-ins/rcm/rcm_dialog.c:593 +#: ../plug-ins/rcm/rcm_dialog.c:600 msgid "Radians/Pi" msgstr "Radiány/pí" -#: ../plug-ins/rcm/rcm_dialog.c:605 +#: ../plug-ins/rcm/rcm_dialog.c:612 msgid "Degrees" msgstr "Stupne" #. Create dialog -#: ../plug-ins/rcm/rcm_dialog.c:638 +#: ../plug-ins/rcm/rcm_dialog.c:645 msgid "Colormap Rotation" msgstr "Otočenie farebnej mapy" -#: ../plug-ins/rcm/rcm_dialog.c:670 +#: ../plug-ins/rcm/rcm_dialog.c:677 msgid "Main Options" msgstr "Hlavné nastavenia" -#: ../plug-ins/rcm/rcm_dialog.c:673 +#: ../plug-ins/rcm/rcm_dialog.c:680 msgid "Gray Options" msgstr "Nastavenie šedej" @@ -11577,27 +11571,27 @@ msgid "Transferring TWAIN data..." msgstr "Prenášanie TWAIN dát..." -#: ../plug-ins/winicon/icodialog.c:123 +#: ../plug-ins/winicon/icodialog.c:89 msgid "1 bpp, 1-bit alpha, 2-slot palette" msgstr "1 bpp, 1-bitová alfa, 2-prvková paleta" -#: ../plug-ins/winicon/icodialog.c:124 +#: ../plug-ins/winicon/icodialog.c:90 msgid "4 bpp, 1-bit alpha, 16-slot palette" msgstr "4 bpp, 1-bitová alfa, 16-prvková paleta" -#: ../plug-ins/winicon/icodialog.c:125 +#: ../plug-ins/winicon/icodialog.c:91 msgid "8 bpp, 1-bit alpha, 256-slot palette" msgstr "8 bpp, 1-bitová alfa, 256-prvková paleta" -#: ../plug-ins/winicon/icodialog.c:126 +#: ../plug-ins/winicon/icodialog.c:92 msgid "32 bpp, 8-bit alpha, no palette" msgstr "32 bpp, 8-bitová alfa, bez palety" -#: ../plug-ins/winicon/icodialog.c:151 +#: ../plug-ins/winicon/icodialog.c:117 msgid "GIMP Windows Icon Plugin" msgstr "Zásuvný modul GIMP pre Windows ikony" -#: ../plug-ins/winicon/icodialog.c:172 +#: ../plug-ins/winicon/icodialog.c:138 msgid "Icon details" msgstr "Detaily o ikone" @@ -11606,7 +11600,7 @@ msgid "Icon #%i" msgstr "Ikona #%i" -#: ../plug-ins/winicon/icosave.c:943 +#: ../plug-ins/winicon/icosave.c:969 msgid "Windows icons cannot be higher or wider than 255 pixels." msgstr "Windows ikony nemôžu byť vyššie alebo širšie ako 255." @@ -11702,9 +11696,3 @@ #, c-format msgid "Error: XJT property file '%s' is empty." msgstr "Chyba: Súbor XJT vlastností '%s' je prázdny." - -#~ msgid "Before and After" -#~ msgstr "Predtým a potom" - -#~ msgid "Gfig layer %d" -#~ msgstr "Vrstva Gfig %d" diff -uraN gimp-2.2.4/po-plug-ins/sr.gmo gimp-2.2.5/po-plug-ins/sr.gmo --- gimp-2.2.4/po-plug-ins/sr.gmo 2005-02-22 23:12:45.000000000 +0100 +++ gimp-2.2.5/po-plug-ins/sr.gmo 2005-04-09 23:09:32.000000000 +0200 @@ -419,7 +419,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: 2005-02-22 23:04+0100 +POT-Creation-Date: 2005-04-09 21:56+0200 PO-Revision-Date: 2005-01-28 13:05+0100 Last-Translator: Бранко Ивановић Language-Team: Serbian (sr) diff -uraN gimp-2.2.4/po-plug-ins/sr@Latn.gmo gimp-2.2.5/po-plug-ins/sr@Latn.gmo --- gimp-2.2.4/po-plug-ins/sr@Latn.gmo 2005-02-22 23:12:45.000000000 +0100 +++ gimp-2.2.5/po-plug-ins/sr@Latn.gmo 2005-04-09 23:09:32.000000000 +0200 @@ -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: gimp 2.2 Report-Msgid-Bugs-To: -POT-Creation-Date: 2005-02-22 23:04+0100 +POT-Creation-Date: 2005-04-09 21:56+0200 PO-Revision-Date: 2005-01-28 13:05+0100 Last-Translator: Branko Ivanović Language-Team: Serbian (sr) diff -uraN gimp-2.2.4/po-plug-ins/sr@Latn.po gimp-2.2.5/po-plug-ins/sr@Latn.po --- gimp-2.2.4/po-plug-ins/sr@Latn.po 2005-02-22 23:12:38.000000000 +0100 +++ gimp-2.2.5/po-plug-ins/sr@Latn.po 2005-04-09 23:09:25.000000000 +0200 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: gimp 2.2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-02-22 23:04+0100\n" +"POT-Creation-Date: 2005-04-09 21:56+0200\n" "PO-Revision-Date: 2005-01-28 13:05+0100\n" "Last-Translator: Branko Ivanović \n" "Language-Team: Serbian (sr) \n" @@ -416,7 +416,7 @@ #: ../plug-ins/common/pat.c:433 ../plug-ins/common/pcx.c:585 #: ../plug-ins/common/pix.c:515 ../plug-ins/common/png.c:1178 #: ../plug-ins/common/pnm.c:809 ../plug-ins/common/postscript.c:1123 -#: ../plug-ins/common/psd_save.c:1588 ../plug-ins/common/raw.c:517 +#: ../plug-ins/common/psd_save.c:1336 ../plug-ins/common/raw.c:517 #: ../plug-ins/common/raw.c:544 ../plug-ins/common/spheredesigner.c:2088 #: ../plug-ins/common/sunras.c:513 ../plug-ins/common/tga.c:1030 #: ../plug-ins/common/tiff.c:1810 ../plug-ins/common/xbm.c:996 @@ -1332,35 +1332,36 @@ #: ../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 +#: ../plug-ins/bmp/bmpread.c:207 ../plug-ins/bmp/bmpread.c:307 +#: ../plug-ins/bmp/bmpread.c:348 #, c-format msgid "'%s' is not a valid BMP file" msgstr "„%s“ nije valjana BMP datoteka" #: ../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 +#: ../plug-ins/bmp/bmpread.c:300 ../plug-ins/bmp/bmpread.c:313 +#: ../plug-ins/bmp/bmpread.c:319 #, c-format msgid "Error reading BMP file header from '%s'" msgstr "Greška kod čitanja BMP zaglavlja iz „%s“" -#: ../plug-ins/bmp/bmpread.c:442 ../plug-ins/bmp/bmpread.c:477 +#: ../plug-ins/bmp/bmpread.c:450 ../plug-ins/bmp/bmpread.c:485 msgid "Unrecognized or invalid BMP compression format." msgstr "Neprepoznat ili neispravan oblik kompresije BMP-a." #. #. * Create the "background" layer to hold the image... #. -#: ../plug-ins/bmp/bmpread.c:482 ../plug-ins/common/CEL.c:357 +#: ../plug-ins/bmp/bmpread.c:490 ../plug-ins/common/CEL.c:357 #: ../plug-ins/common/CEL.c:360 ../plug-ins/common/blinds.c:273 #: ../plug-ins/common/compose.c:625 ../plug-ins/common/decompose.c:595 #: ../plug-ins/common/dicom.c:442 ../plug-ins/common/film.c:946 -#: ../plug-ins/common/gifload.c:865 ../plug-ins/common/jpeg.c:1113 +#: ../plug-ins/common/gifload.c:864 ../plug-ins/common/jpeg.c:1113 #: ../plug-ins/common/jpeg.c:2474 ../plug-ins/common/pcx.c:334 #: ../plug-ins/common/pcx.c:340 ../plug-ins/common/pix.c:374 #: ../plug-ins/common/png.c:808 ../plug-ins/common/pnm.c:517 -#: ../plug-ins/common/psd.c:2173 ../plug-ins/common/raw.c:677 +#: ../plug-ins/common/psd.c:2174 ../plug-ins/common/raw.c:677 #: ../plug-ins/common/smooth_palette.c:257 ../plug-ins/common/sunras.c:925 #: ../plug-ins/common/tga.c:929 ../plug-ins/common/tiff.c:833 #: ../plug-ins/common/tile.c:266 ../plug-ins/common/winclipboard.c:579 @@ -1392,12 +1393,12 @@ #: ../plug-ins/common/jpeg.c:1453 ../plug-ins/common/pat.c:438 #: ../plug-ins/common/pcx.c:545 ../plug-ins/common/pix.c:521 #: ../plug-ins/common/png.c:1185 ../plug-ins/common/pnm.c:814 -#: ../plug-ins/common/postscript.c:1128 ../plug-ins/common/psd_save.c:1593 +#: ../plug-ins/common/postscript.c:1128 ../plug-ins/common/psd_save.c:1341 #: ../plug-ins/common/sunras.c:518 ../plug-ins/common/tga.c:1035 #: ../plug-ins/common/tiff.c:1815 ../plug-ins/common/xbm.c:1001 #: ../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:957 +#: ../plug-ins/sgi/sgi.c:545 ../plug-ins/winicon/icosave.c:977 #: ../plug-ins/xjt/xjt.c:1682 #, c-format msgid "Saving '%s'..." @@ -1746,7 +1747,7 @@ msgstr "Nijansa" #: ../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 +#: ../plug-ins/common/decompose.c:144 ../plug-ins/rcm/rcm_dialog.c:548 msgid "Saturation" msgstr "Zasićenje" @@ -2591,24 +2592,24 @@ msgid "Color to _Alpha..." msgstr "Boja u _Alfu..." -#: ../plug-ins/common/colortoalpha.c:181 +#: ../plug-ins/common/colortoalpha.c:187 msgid "Removing color..." msgstr "Uklanjam boju..." -#: ../plug-ins/common/colortoalpha.c:377 +#: ../plug-ins/common/colortoalpha.c:380 msgid "Color to Alpha" msgstr "Boja u Alfu" -#: ../plug-ins/common/colortoalpha.c:402 ../plug-ins/common/mapcolor.c:424 +#: ../plug-ins/common/colortoalpha.c:405 ../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:406 +#: ../plug-ins/common/colortoalpha.c:409 msgid "Color to Alpha Color Picker" msgstr "Boja u Kapaljku Alfa Boje" -#: ../plug-ins/common/colortoalpha.c:420 +#: ../plug-ins/common/colortoalpha.c:423 msgid "to alpha" msgstr "u Alfu" @@ -2631,13 +2632,13 @@ msgstr "HSV" #. Gray: Circle: Spinbutton 1 -#: ../plug-ins/common/compose.c:148 ../plug-ins/rcm/rcm_dialog.c:452 +#: ../plug-ins/common/compose.c:148 ../plug-ins/rcm/rcm_dialog.c:459 msgid "Hue:" msgstr "Nijansa:" #. Gray: Circle: Spinbutton 2 #: ../plug-ins/common/compose.c:149 ../plug-ins/print/gimp_color_window.c:364 -#: ../plug-ins/rcm/rcm_dialog.c:479 +#: ../plug-ins/rcm/rcm_dialog.c:486 msgid "Saturation:" msgstr "Zasićenje:" @@ -3285,15 +3286,15 @@ msgstr "Raspleti..." # -#: ../plug-ins/common/deinterlace.c:315 +#: ../plug-ins/common/deinterlace.c:324 msgid "Deinterlace" msgstr "Raspleti" -#: ../plug-ins/common/deinterlace.c:340 +#: ../plug-ins/common/deinterlace.c:349 msgid "Keep o_dd fields" msgstr "Zadrži _parna polja" -#: ../plug-ins/common/deinterlace.c:341 +#: ../plug-ins/common/deinterlace.c:350 msgid "Keep _even fields" msgstr "Zadrži _neparna polja" @@ -3742,7 +3743,7 @@ #. Create selection #: ../plug-ins/common/film.c:1166 ../plug-ins/imagemap/imap_selection.c:400 -#: ../plug-ins/rcm/rcm_dialog.c:158 +#: ../plug-ins/rcm/rcm_dialog.c:165 msgid "Selection" msgstr "Selekcija" @@ -4329,23 +4330,23 @@ msgid "Non-square pixels. Image might look squashed." msgstr "Ne-kvadratne tačke. Slika može izgledati stešnjeno." -#: ../plug-ins/common/gifload.c:867 +#: ../plug-ins/common/gifload.c:866 #, c-format msgid "Background (%d%s)" msgstr "Pozadina (%d%s)" -#: ../plug-ins/common/gifload.c:915 ../plug-ins/common/iwarp.c:783 +#: ../plug-ins/common/gifload.c:914 ../plug-ins/common/iwarp.c:783 #: ../plug-ins/common/iwarp.c:817 #, c-format msgid "Frame %d" msgstr "Kadar %d" -#: ../plug-ins/common/gifload.c:917 +#: ../plug-ins/common/gifload.c:916 #, c-format msgid "Frame %d (%d%s)" msgstr "Kadar %d (%d%s)" -#: ../plug-ins/common/gifload.c:947 +#: ../plug-ins/common/gifload.c:946 #, c-format msgid "" "GIF: Undocumented GIF composite type %d is not handled. Animation might not " @@ -6311,7 +6312,7 @@ msgstr "B/W" # -#: ../plug-ins/common/postscript.c:3003 ../plug-ins/rcm/rcm_dialog.c:404 +#: ../plug-ins/common/postscript.c:3003 ../plug-ins/rcm/rcm_dialog.c:411 msgid "Gray" msgstr "Siva" @@ -6409,11 +6410,11 @@ msgid "Invalid UTF-8 string in PSD file" msgstr "Neispravna UTF-8 niska u PSD datoteci" -#: ../plug-ins/common/psd_save.c:181 +#: ../plug-ins/common/psd_save.c:192 msgid "Photoshop image" msgstr "Photoshop slika" -#: ../plug-ins/common/psd_save.c:1564 +#: ../plug-ins/common/psd_save.c:1312 #, c-format msgid "" "Unable to save '%s'. The psd file format does not support images that are " @@ -6422,7 +6423,7 @@ "Ne mogu da sačuvam „%s“. PSD format zapisa ne podržava slike koje imaju više " "od 30000 tačaka po širini ili visini." -#: ../plug-ins/common/psd_save.c:1576 +#: ../plug-ins/common/psd_save.c:1324 #, c-format msgid "" "Unable to save '%s'. The psd file format does not support images with " @@ -12088,90 +12089,90 @@ msgid "Rotating the colormap..." msgstr "Rotiram mapu boja..." -#: ../plug-ins/rcm/rcm_dialog.c:114 +#: ../plug-ins/rcm/rcm_dialog.c:119 msgid "Original" msgstr "Original" -#: ../plug-ins/rcm/rcm_dialog.c:127 +#: ../plug-ins/rcm/rcm_dialog.c:133 msgid "Rotated" msgstr "Rotirano" -#: ../plug-ins/rcm/rcm_dialog.c:140 +#: ../plug-ins/rcm/rcm_dialog.c:147 msgid "Continuous update" msgstr "Kontinuirana nadogradnja" -#: ../plug-ins/rcm/rcm_dialog.c:153 +#: ../plug-ins/rcm/rcm_dialog.c:160 msgid "Area:" msgstr "Prostor:" -#: ../plug-ins/rcm/rcm_dialog.c:157 +#: ../plug-ins/rcm/rcm_dialog.c:164 msgid "Entire Layer" msgstr "Cela Slika" -#: ../plug-ins/rcm/rcm_dialog.c:159 +#: ../plug-ins/rcm/rcm_dialog.c:166 msgid "Context" msgstr "Sadržaj" #. spinbutton 1 -#: ../plug-ins/rcm/rcm_dialog.c:284 ../plug-ins/rcm/rcm_dialog.c:362 +#: ../plug-ins/rcm/rcm_dialog.c:291 ../plug-ins/rcm/rcm_dialog.c:369 msgid "From" msgstr "Od" #. spinbutton 2 -#: ../plug-ins/rcm/rcm_dialog.c:310 ../plug-ins/rcm/rcm_dialog.c:363 +#: ../plug-ins/rcm/rcm_dialog.c:317 ../plug-ins/rcm/rcm_dialog.c:370 msgid "To" msgstr "Do" # #. * Gray: Operation-Mode * -#: ../plug-ins/rcm/rcm_dialog.c:499 +#: ../plug-ins/rcm/rcm_dialog.c:506 msgid "Gray Mode" msgstr "Sivi režim" #. Gray: Operation-Mode: two radio buttons -#: ../plug-ins/rcm/rcm_dialog.c:508 +#: ../plug-ins/rcm/rcm_dialog.c:515 msgid "Treat as this" msgstr "Gledaj kao ovo" -#: ../plug-ins/rcm/rcm_dialog.c:520 +#: ../plug-ins/rcm/rcm_dialog.c:527 msgid "Change to this" msgstr "Promeni u ovo" # #. * Gray: What is gray? * -#: ../plug-ins/rcm/rcm_dialog.c:533 +#: ../plug-ins/rcm/rcm_dialog.c:540 msgid "Gray Threshold" msgstr "Prag sive:" #. * Misc: Used unit selection * -#: ../plug-ins/rcm/rcm_dialog.c:572 ../plug-ins/rcm/rcm_dialog.c:676 +#: ../plug-ins/rcm/rcm_dialog.c:579 ../plug-ins/rcm/rcm_dialog.c:683 msgid "Units" msgstr "Mjere" #. Misc: Used unit selection: 3 radio buttons -#: ../plug-ins/rcm/rcm_dialog.c:581 +#: ../plug-ins/rcm/rcm_dialog.c:588 msgid "Radians" msgstr "Polumjer" -#: ../plug-ins/rcm/rcm_dialog.c:593 +#: ../plug-ins/rcm/rcm_dialog.c:600 msgid "Radians/Pi" msgstr "Polumjer/Pi" -#: ../plug-ins/rcm/rcm_dialog.c:605 +#: ../plug-ins/rcm/rcm_dialog.c:612 msgid "Degrees" msgstr "Stupnjeva" #. Create dialog -#: ../plug-ins/rcm/rcm_dialog.c:638 +#: ../plug-ins/rcm/rcm_dialog.c:645 msgid "Colormap Rotation" msgstr "Rotacija mape boja" -#: ../plug-ins/rcm/rcm_dialog.c:670 +#: ../plug-ins/rcm/rcm_dialog.c:677 msgid "Main Options" msgstr "Glavne opcije" # -#: ../plug-ins/rcm/rcm_dialog.c:673 +#: ../plug-ins/rcm/rcm_dialog.c:680 msgid "Gray Options" msgstr "Opcije sive boje" @@ -12254,27 +12255,27 @@ msgid "Transferring TWAIN data..." msgstr "Prenosim TWAIN podatke..." -#: ../plug-ins/winicon/icodialog.c:123 +#: ../plug-ins/winicon/icodialog.c:89 msgid "1 bpp, 1-bit alpha, 2-slot palette" msgstr "1 bpp, 1-bit alpha, 2-slot paleta" -#: ../plug-ins/winicon/icodialog.c:124 +#: ../plug-ins/winicon/icodialog.c:90 msgid "4 bpp, 1-bit alpha, 16-slot palette" msgstr "4 bpp, 1-bit alpha, 16-slot paleta" -#: ../plug-ins/winicon/icodialog.c:125 +#: ../plug-ins/winicon/icodialog.c:91 msgid "8 bpp, 1-bit alpha, 256-slot palette" msgstr "8 bpp, 1-bit alpha, 256-slot paleta" -#: ../plug-ins/winicon/icodialog.c:126 +#: ../plug-ins/winicon/icodialog.c:92 msgid "32 bpp, 8-bit alpha, no palette" msgstr "32 bpp, 8-bit alpha, bez palete" -#: ../plug-ins/winicon/icodialog.c:151 +#: ../plug-ins/winicon/icodialog.c:117 msgid "GIMP Windows Icon Plugin" msgstr "GIMP Windows dodatak za ikonice" -#: ../plug-ins/winicon/icodialog.c:172 +#: ../plug-ins/winicon/icodialog.c:138 msgid "Icon details" msgstr "Detalji ikonice" @@ -12283,7 +12284,7 @@ msgid "Icon #%i" msgstr "Ikonica #%i" -#: ../plug-ins/winicon/icosave.c:943 +#: ../plug-ins/winicon/icosave.c:969 msgid "Windows icons cannot be higher or wider than 255 pixels." msgstr "Windows ikonice ne mogu biti više ili šire od 255 tačaka." diff -uraN gimp-2.2.4/po-plug-ins/sr.po gimp-2.2.5/po-plug-ins/sr.po --- gimp-2.2.4/po-plug-ins/sr.po 2005-02-22 23:12:38.000000000 +0100 +++ gimp-2.2.5/po-plug-ins/sr.po 2005-04-09 23:09:24.000000000 +0200 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: gimp 2.2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-02-22 23:04+0100\n" +"POT-Creation-Date: 2005-04-09 21:56+0200\n" "PO-Revision-Date: 2005-01-28 13:05+0100\n" "Last-Translator: Бранко Ивановић \n" "Language-Team: Serbian (sr) \n" @@ -414,7 +414,7 @@ #: ../plug-ins/common/pat.c:433 ../plug-ins/common/pcx.c:585 #: ../plug-ins/common/pix.c:515 ../plug-ins/common/png.c:1178 #: ../plug-ins/common/pnm.c:809 ../plug-ins/common/postscript.c:1123 -#: ../plug-ins/common/psd_save.c:1588 ../plug-ins/common/raw.c:517 +#: ../plug-ins/common/psd_save.c:1336 ../plug-ins/common/raw.c:517 #: ../plug-ins/common/raw.c:544 ../plug-ins/common/spheredesigner.c:2088 #: ../plug-ins/common/sunras.c:513 ../plug-ins/common/tga.c:1030 #: ../plug-ins/common/tiff.c:1810 ../plug-ins/common/xbm.c:996 @@ -1330,35 +1330,36 @@ #: ../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 +#: ../plug-ins/bmp/bmpread.c:207 ../plug-ins/bmp/bmpread.c:307 +#: ../plug-ins/bmp/bmpread.c:348 #, c-format msgid "'%s' is not a valid BMP file" msgstr "„%s“ није ваљана BMP датотека" #: ../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 +#: ../plug-ins/bmp/bmpread.c:300 ../plug-ins/bmp/bmpread.c:313 +#: ../plug-ins/bmp/bmpread.c:319 #, c-format msgid "Error reading BMP file header from '%s'" msgstr "Грешка код читања БМП заглавља из „%s“" -#: ../plug-ins/bmp/bmpread.c:442 ../plug-ins/bmp/bmpread.c:477 +#: ../plug-ins/bmp/bmpread.c:450 ../plug-ins/bmp/bmpread.c:485 msgid "Unrecognized or invalid BMP compression format." msgstr "Непрепознат или неисправан облик компресије БМП-а." #. #. * Create the "background" layer to hold the image... #. -#: ../plug-ins/bmp/bmpread.c:482 ../plug-ins/common/CEL.c:357 +#: ../plug-ins/bmp/bmpread.c:490 ../plug-ins/common/CEL.c:357 #: ../plug-ins/common/CEL.c:360 ../plug-ins/common/blinds.c:273 #: ../plug-ins/common/compose.c:625 ../plug-ins/common/decompose.c:595 #: ../plug-ins/common/dicom.c:442 ../plug-ins/common/film.c:946 -#: ../plug-ins/common/gifload.c:865 ../plug-ins/common/jpeg.c:1113 +#: ../plug-ins/common/gifload.c:864 ../plug-ins/common/jpeg.c:1113 #: ../plug-ins/common/jpeg.c:2474 ../plug-ins/common/pcx.c:334 #: ../plug-ins/common/pcx.c:340 ../plug-ins/common/pix.c:374 #: ../plug-ins/common/png.c:808 ../plug-ins/common/pnm.c:517 -#: ../plug-ins/common/psd.c:2173 ../plug-ins/common/raw.c:677 +#: ../plug-ins/common/psd.c:2174 ../plug-ins/common/raw.c:677 #: ../plug-ins/common/smooth_palette.c:257 ../plug-ins/common/sunras.c:925 #: ../plug-ins/common/tga.c:929 ../plug-ins/common/tiff.c:833 #: ../plug-ins/common/tile.c:266 ../plug-ins/common/winclipboard.c:579 @@ -1390,12 +1391,12 @@ #: ../plug-ins/common/jpeg.c:1453 ../plug-ins/common/pat.c:438 #: ../plug-ins/common/pcx.c:545 ../plug-ins/common/pix.c:521 #: ../plug-ins/common/png.c:1185 ../plug-ins/common/pnm.c:814 -#: ../plug-ins/common/postscript.c:1128 ../plug-ins/common/psd_save.c:1593 +#: ../plug-ins/common/postscript.c:1128 ../plug-ins/common/psd_save.c:1341 #: ../plug-ins/common/sunras.c:518 ../plug-ins/common/tga.c:1035 #: ../plug-ins/common/tiff.c:1815 ../plug-ins/common/xbm.c:1001 #: ../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:957 +#: ../plug-ins/sgi/sgi.c:545 ../plug-ins/winicon/icosave.c:977 #: ../plug-ins/xjt/xjt.c:1682 #, c-format msgid "Saving '%s'..." @@ -1744,7 +1745,7 @@ msgstr "Нијанса" #: ../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 +#: ../plug-ins/common/decompose.c:144 ../plug-ins/rcm/rcm_dialog.c:548 msgid "Saturation" msgstr "Засићење" @@ -2589,24 +2590,24 @@ msgid "Color to _Alpha..." msgstr "Боја у _Алфу..." -#: ../plug-ins/common/colortoalpha.c:181 +#: ../plug-ins/common/colortoalpha.c:187 msgid "Removing color..." msgstr "Уклањам боју..." -#: ../plug-ins/common/colortoalpha.c:377 +#: ../plug-ins/common/colortoalpha.c:380 msgid "Color to Alpha" msgstr "Боја у Алфу" -#: ../plug-ins/common/colortoalpha.c:402 ../plug-ins/common/mapcolor.c:424 +#: ../plug-ins/common/colortoalpha.c:405 ../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:406 +#: ../plug-ins/common/colortoalpha.c:409 msgid "Color to Alpha Color Picker" msgstr "Боја у Капаљку Алфа Боје" -#: ../plug-ins/common/colortoalpha.c:420 +#: ../plug-ins/common/colortoalpha.c:423 msgid "to alpha" msgstr "у Алфу" @@ -2629,13 +2630,13 @@ msgstr "HSV" #. Gray: Circle: Spinbutton 1 -#: ../plug-ins/common/compose.c:148 ../plug-ins/rcm/rcm_dialog.c:452 +#: ../plug-ins/common/compose.c:148 ../plug-ins/rcm/rcm_dialog.c:459 msgid "Hue:" msgstr "Нијанса:" #. Gray: Circle: Spinbutton 2 #: ../plug-ins/common/compose.c:149 ../plug-ins/print/gimp_color_window.c:364 -#: ../plug-ins/rcm/rcm_dialog.c:479 +#: ../plug-ins/rcm/rcm_dialog.c:486 msgid "Saturation:" msgstr "Засићење:" @@ -3283,15 +3284,15 @@ msgstr "Расплети..." # -#: ../plug-ins/common/deinterlace.c:315 +#: ../plug-ins/common/deinterlace.c:324 msgid "Deinterlace" msgstr "Расплети" -#: ../plug-ins/common/deinterlace.c:340 +#: ../plug-ins/common/deinterlace.c:349 msgid "Keep o_dd fields" msgstr "Задржи _парна поља" -#: ../plug-ins/common/deinterlace.c:341 +#: ../plug-ins/common/deinterlace.c:350 msgid "Keep _even fields" msgstr "Задржи _непарна поља" @@ -3740,7 +3741,7 @@ #. Create selection #: ../plug-ins/common/film.c:1166 ../plug-ins/imagemap/imap_selection.c:400 -#: ../plug-ins/rcm/rcm_dialog.c:158 +#: ../plug-ins/rcm/rcm_dialog.c:165 msgid "Selection" msgstr "Селекција" @@ -4327,23 +4328,23 @@ msgid "Non-square pixels. Image might look squashed." msgstr "Не-квадратне тачке. Слика може изгледати стешњено." -#: ../plug-ins/common/gifload.c:867 +#: ../plug-ins/common/gifload.c:866 #, c-format msgid "Background (%d%s)" msgstr "Позадина (%d%s)" -#: ../plug-ins/common/gifload.c:915 ../plug-ins/common/iwarp.c:783 +#: ../plug-ins/common/gifload.c:914 ../plug-ins/common/iwarp.c:783 #: ../plug-ins/common/iwarp.c:817 #, c-format msgid "Frame %d" msgstr "Кадар %d" -#: ../plug-ins/common/gifload.c:917 +#: ../plug-ins/common/gifload.c:916 #, c-format msgid "Frame %d (%d%s)" msgstr "Кадар %d (%d%s)" -#: ../plug-ins/common/gifload.c:947 +#: ../plug-ins/common/gifload.c:946 #, c-format msgid "" "GIF: Undocumented GIF composite type %d is not handled. Animation might not " @@ -6309,7 +6310,7 @@ msgstr "Б/W" # -#: ../plug-ins/common/postscript.c:3003 ../plug-ins/rcm/rcm_dialog.c:404 +#: ../plug-ins/common/postscript.c:3003 ../plug-ins/rcm/rcm_dialog.c:411 msgid "Gray" msgstr "Сива" @@ -6407,11 +6408,11 @@ msgid "Invalid UTF-8 string in PSD file" msgstr "Неисправна УТФ-8 ниска у PSD датотеци" -#: ../plug-ins/common/psd_save.c:181 +#: ../plug-ins/common/psd_save.c:192 msgid "Photoshop image" msgstr "Photoshop слика" -#: ../plug-ins/common/psd_save.c:1564 +#: ../plug-ins/common/psd_save.c:1312 #, c-format msgid "" "Unable to save '%s'. The psd file format does not support images that are " @@ -6420,7 +6421,7 @@ "Не могу да сачувам „%s“. PSD формат записа не подржава слике које имају више " "од 30000 тачака по ширини или висини." -#: ../plug-ins/common/psd_save.c:1576 +#: ../plug-ins/common/psd_save.c:1324 #, c-format msgid "" "Unable to save '%s'. The psd file format does not support images with " @@ -12083,90 +12084,90 @@ msgid "Rotating the colormap..." msgstr "Ротирам мапу боја..." -#: ../plug-ins/rcm/rcm_dialog.c:114 +#: ../plug-ins/rcm/rcm_dialog.c:119 msgid "Original" msgstr "Оригинал" -#: ../plug-ins/rcm/rcm_dialog.c:127 +#: ../plug-ins/rcm/rcm_dialog.c:133 msgid "Rotated" msgstr "Ротирано" -#: ../plug-ins/rcm/rcm_dialog.c:140 +#: ../plug-ins/rcm/rcm_dialog.c:147 msgid "Continuous update" msgstr "Континуирана надоградња" -#: ../plug-ins/rcm/rcm_dialog.c:153 +#: ../plug-ins/rcm/rcm_dialog.c:160 msgid "Area:" msgstr "Простор:" -#: ../plug-ins/rcm/rcm_dialog.c:157 +#: ../plug-ins/rcm/rcm_dialog.c:164 msgid "Entire Layer" msgstr "Цела Слика" -#: ../plug-ins/rcm/rcm_dialog.c:159 +#: ../plug-ins/rcm/rcm_dialog.c:166 msgid "Context" msgstr "Садржај" #. spinbutton 1 -#: ../plug-ins/rcm/rcm_dialog.c:284 ../plug-ins/rcm/rcm_dialog.c:362 +#: ../plug-ins/rcm/rcm_dialog.c:291 ../plug-ins/rcm/rcm_dialog.c:369 msgid "From" msgstr "Од" #. spinbutton 2 -#: ../plug-ins/rcm/rcm_dialog.c:310 ../plug-ins/rcm/rcm_dialog.c:363 +#: ../plug-ins/rcm/rcm_dialog.c:317 ../plug-ins/rcm/rcm_dialog.c:370 msgid "To" msgstr "До" # #. * Gray: Operation-Mode * -#: ../plug-ins/rcm/rcm_dialog.c:499 +#: ../plug-ins/rcm/rcm_dialog.c:506 msgid "Gray Mode" msgstr "Сиви режим" #. Gray: Operation-Mode: two radio buttons -#: ../plug-ins/rcm/rcm_dialog.c:508 +#: ../plug-ins/rcm/rcm_dialog.c:515 msgid "Treat as this" msgstr "Гледај као ово" -#: ../plug-ins/rcm/rcm_dialog.c:520 +#: ../plug-ins/rcm/rcm_dialog.c:527 msgid "Change to this" msgstr "Промени у ово" # #. * Gray: What is gray? * -#: ../plug-ins/rcm/rcm_dialog.c:533 +#: ../plug-ins/rcm/rcm_dialog.c:540 msgid "Gray Threshold" msgstr "Праг сиве:" #. * Misc: Used unit selection * -#: ../plug-ins/rcm/rcm_dialog.c:572 ../plug-ins/rcm/rcm_dialog.c:676 +#: ../plug-ins/rcm/rcm_dialog.c:579 ../plug-ins/rcm/rcm_dialog.c:683 msgid "Units" msgstr "Мјере" #. Misc: Used unit selection: 3 radio buttons -#: ../plug-ins/rcm/rcm_dialog.c:581 +#: ../plug-ins/rcm/rcm_dialog.c:588 msgid "Radians" msgstr "Полумјер" -#: ../plug-ins/rcm/rcm_dialog.c:593 +#: ../plug-ins/rcm/rcm_dialog.c:600 msgid "Radians/Pi" msgstr "Полумјер/Пи" -#: ../plug-ins/rcm/rcm_dialog.c:605 +#: ../plug-ins/rcm/rcm_dialog.c:612 msgid "Degrees" msgstr "Ступњева" #. Create dialog -#: ../plug-ins/rcm/rcm_dialog.c:638 +#: ../plug-ins/rcm/rcm_dialog.c:645 msgid "Colormap Rotation" msgstr "Ротација мапе боја" -#: ../plug-ins/rcm/rcm_dialog.c:670 +#: ../plug-ins/rcm/rcm_dialog.c:677 msgid "Main Options" msgstr "Главне опције" # -#: ../plug-ins/rcm/rcm_dialog.c:673 +#: ../plug-ins/rcm/rcm_dialog.c:680 msgid "Gray Options" msgstr "Опције сиве боје" @@ -12249,27 +12250,27 @@ msgid "Transferring TWAIN data..." msgstr "Преносим TWAIN податке..." -#: ../plug-ins/winicon/icodialog.c:123 +#: ../plug-ins/winicon/icodialog.c:89 msgid "1 bpp, 1-bit alpha, 2-slot palette" msgstr "1 bpp, 1-bit alpha, 2-slot палета" -#: ../plug-ins/winicon/icodialog.c:124 +#: ../plug-ins/winicon/icodialog.c:90 msgid "4 bpp, 1-bit alpha, 16-slot palette" msgstr "4 bpp, 1-bit alpha, 16-slot палета" -#: ../plug-ins/winicon/icodialog.c:125 +#: ../plug-ins/winicon/icodialog.c:91 msgid "8 bpp, 1-bit alpha, 256-slot palette" msgstr "8 bpp, 1-bit alpha, 256-slot палета" -#: ../plug-ins/winicon/icodialog.c:126 +#: ../plug-ins/winicon/icodialog.c:92 msgid "32 bpp, 8-bit alpha, no palette" msgstr "32 bpp, 8-bit alpha, без палете" -#: ../plug-ins/winicon/icodialog.c:151 +#: ../plug-ins/winicon/icodialog.c:117 msgid "GIMP Windows Icon Plugin" msgstr "GIMP Windows додатак за иконице" -#: ../plug-ins/winicon/icodialog.c:172 +#: ../plug-ins/winicon/icodialog.c:138 msgid "Icon details" msgstr "Детаљи иконице" @@ -12278,7 +12279,7 @@ msgid "Icon #%i" msgstr "Иконица #%i" -#: ../plug-ins/winicon/icosave.c:943 +#: ../plug-ins/winicon/icosave.c:969 msgid "Windows icons cannot be higher or wider than 255 pixels." msgstr "Windows иконице не могу бити више или шире од 255 тачака." diff -uraN gimp-2.2.4/po-plug-ins/sv.gmo gimp-2.2.5/po-plug-ins/sv.gmo --- gimp-2.2.4/po-plug-ins/sv.gmo 2005-02-22 23:12:45.000000000 +0100 +++ gimp-2.2.5/po-plug-ins/sv.gmo 2005-04-09 23:09:32.000000000 +0200 @@ -480,7 +480,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: 2005-02-22 23:04+0100 +POT-Creation-Date: 2005-04-09 21:56+0200 PO-Revision-Date: 2004-11-29 12:03+0900 Last-Translator: Jan Morén Language-Team: Swedish diff -uraN gimp-2.2.4/po-plug-ins/sv.po gimp-2.2.5/po-plug-ins/sv.po --- gimp-2.2.4/po-plug-ins/sv.po 2005-02-22 23:12:39.000000000 +0100 +++ gimp-2.2.5/po-plug-ins/sv.po 2005-04-09 23:09:25.000000000 +0200 @@ -4,13 +4,13 @@ # Christian Rose , 2000, 2001, 2002. # Jan Morén , 2002, 2003. # -# $Id: sv.po,v 1.139.2.2 2005/01/22 17:16:55 neo Exp $ +# $Id: sv.po,v 1.139.2.3 2005/02/22 22:36:14 neo Exp $ # msgid "" msgstr "" "Project-Id-Version: gimp\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-02-22 23:04+0100\n" +"POT-Creation-Date: 2005-04-09 21:56+0200\n" "PO-Revision-Date: 2004-11-29 12:03+0900\n" "Last-Translator: Jan Morén \n" "Language-Team: Swedish \n" @@ -392,7 +392,7 @@ #: ../plug-ins/common/pat.c:433 ../plug-ins/common/pcx.c:585 #: ../plug-ins/common/pix.c:515 ../plug-ins/common/png.c:1178 #: ../plug-ins/common/pnm.c:809 ../plug-ins/common/postscript.c:1123 -#: ../plug-ins/common/psd_save.c:1588 ../plug-ins/common/raw.c:517 +#: ../plug-ins/common/psd_save.c:1336 ../plug-ins/common/raw.c:517 #: ../plug-ins/common/raw.c:544 ../plug-ins/common/spheredesigner.c:2088 #: ../plug-ins/common/sunras.c:513 ../plug-ins/common/tga.c:1030 #: ../plug-ins/common/tiff.c:1810 ../plug-ins/common/xbm.c:996 @@ -1233,35 +1233,36 @@ #: ../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 +#: ../plug-ins/bmp/bmpread.c:207 ../plug-ins/bmp/bmpread.c:307 +#: ../plug-ins/bmp/bmpread.c:348 #, c-format msgid "'%s' is not a valid BMP file" msgstr "\"%s\" är inte en giltig BMP-fil" #: ../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 +#: ../plug-ins/bmp/bmpread.c:300 ../plug-ins/bmp/bmpread.c:313 +#: ../plug-ins/bmp/bmpread.c:319 #, c-format msgid "Error reading BMP file header from '%s'" msgstr "Fel vid läsning av BMP-filhuvud från \"%s\"" -#: ../plug-ins/bmp/bmpread.c:442 ../plug-ins/bmp/bmpread.c:477 +#: ../plug-ins/bmp/bmpread.c:450 ../plug-ins/bmp/bmpread.c:485 msgid "Unrecognized or invalid BMP compression format." msgstr "Oigenkänt eller felaktigt BMP-packningsformat." #. #. * Create the "background" layer to hold the image... #. -#: ../plug-ins/bmp/bmpread.c:482 ../plug-ins/common/CEL.c:357 +#: ../plug-ins/bmp/bmpread.c:490 ../plug-ins/common/CEL.c:357 #: ../plug-ins/common/CEL.c:360 ../plug-ins/common/blinds.c:273 #: ../plug-ins/common/compose.c:625 ../plug-ins/common/decompose.c:595 #: ../plug-ins/common/dicom.c:442 ../plug-ins/common/film.c:946 -#: ../plug-ins/common/gifload.c:865 ../plug-ins/common/jpeg.c:1113 +#: ../plug-ins/common/gifload.c:864 ../plug-ins/common/jpeg.c:1113 #: ../plug-ins/common/jpeg.c:2474 ../plug-ins/common/pcx.c:334 #: ../plug-ins/common/pcx.c:340 ../plug-ins/common/pix.c:374 #: ../plug-ins/common/png.c:808 ../plug-ins/common/pnm.c:517 -#: ../plug-ins/common/psd.c:2173 ../plug-ins/common/raw.c:677 +#: ../plug-ins/common/psd.c:2174 ../plug-ins/common/raw.c:677 #: ../plug-ins/common/smooth_palette.c:257 ../plug-ins/common/sunras.c:925 #: ../plug-ins/common/tga.c:929 ../plug-ins/common/tiff.c:833 #: ../plug-ins/common/tile.c:266 ../plug-ins/common/winclipboard.c:579 @@ -1292,12 +1293,12 @@ #: ../plug-ins/common/jpeg.c:1453 ../plug-ins/common/pat.c:438 #: ../plug-ins/common/pcx.c:545 ../plug-ins/common/pix.c:521 #: ../plug-ins/common/png.c:1185 ../plug-ins/common/pnm.c:814 -#: ../plug-ins/common/postscript.c:1128 ../plug-ins/common/psd_save.c:1593 +#: ../plug-ins/common/postscript.c:1128 ../plug-ins/common/psd_save.c:1341 #: ../plug-ins/common/sunras.c:518 ../plug-ins/common/tga.c:1035 #: ../plug-ins/common/tiff.c:1815 ../plug-ins/common/xbm.c:1001 #: ../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:957 +#: ../plug-ins/sgi/sgi.c:545 ../plug-ins/winicon/icosave.c:977 #: ../plug-ins/xjt/xjt.c:1682 #, c-format msgid "Saving '%s'..." @@ -1633,7 +1634,7 @@ msgstr "Nyans" #: ../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 +#: ../plug-ins/common/decompose.c:144 ../plug-ins/rcm/rcm_dialog.c:548 msgid "Saturation" msgstr "Mättnad" @@ -2441,24 +2442,24 @@ msgid "Color to _Alpha..." msgstr "Färg till _Alfa..." -#: ../plug-ins/common/colortoalpha.c:181 +#: ../plug-ins/common/colortoalpha.c:187 msgid "Removing color..." msgstr "Tar bort färg..." -#: ../plug-ins/common/colortoalpha.c:377 +#: ../plug-ins/common/colortoalpha.c:380 msgid "Color to Alpha" msgstr "Färg till Alfa" -#: ../plug-ins/common/colortoalpha.c:402 ../plug-ins/common/mapcolor.c:424 +#: ../plug-ins/common/colortoalpha.c:405 ../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:406 +#: ../plug-ins/common/colortoalpha.c:409 msgid "Color to Alpha Color Picker" msgstr "Färg till Alfa färghämtare" -#: ../plug-ins/common/colortoalpha.c:420 +#: ../plug-ins/common/colortoalpha.c:423 msgid "to alpha" msgstr "till Alfa" @@ -2481,13 +2482,13 @@ msgstr "HSV" #. Gray: Circle: Spinbutton 1 -#: ../plug-ins/common/compose.c:148 ../plug-ins/rcm/rcm_dialog.c:452 +#: ../plug-ins/common/compose.c:148 ../plug-ins/rcm/rcm_dialog.c:459 msgid "Hue:" msgstr "Nyans:" #. Gray: Circle: Spinbutton 2 #: ../plug-ins/common/compose.c:149 ../plug-ins/print/gimp_color_window.c:364 -#: ../plug-ins/rcm/rcm_dialog.c:479 +#: ../plug-ins/rcm/rcm_dialog.c:486 msgid "Saturation:" msgstr "Mättnad:" @@ -3105,15 +3106,15 @@ msgid "Deinterlace..." msgstr "Ej sammanflätning..." -#: ../plug-ins/common/deinterlace.c:315 +#: ../plug-ins/common/deinterlace.c:324 msgid "Deinterlace" msgstr "Ej sammanflätning" -#: ../plug-ins/common/deinterlace.c:340 +#: ../plug-ins/common/deinterlace.c:349 msgid "Keep o_dd fields" msgstr "Behåll _udda fält" -#: ../plug-ins/common/deinterlace.c:341 +#: ../plug-ins/common/deinterlace.c:350 msgid "Keep _even fields" msgstr "Behåll _jämna fält" @@ -3511,7 +3512,7 @@ #. Create selection #: ../plug-ins/common/film.c:1166 ../plug-ins/imagemap/imap_selection.c:400 -#: ../plug-ins/rcm/rcm_dialog.c:158 +#: ../plug-ins/rcm/rcm_dialog.c:165 msgid "Selection" msgstr "Markering" @@ -4048,23 +4049,23 @@ msgid "Non-square pixels. Image might look squashed." msgstr "Ickekvadratiska bildpunkter. Bilden kan se ihoptryckt ut." -#: ../plug-ins/common/gifload.c:867 +#: ../plug-ins/common/gifload.c:866 #, c-format msgid "Background (%d%s)" msgstr "Bakgrund (%d%s)" -#: ../plug-ins/common/gifload.c:915 ../plug-ins/common/iwarp.c:783 +#: ../plug-ins/common/gifload.c:914 ../plug-ins/common/iwarp.c:783 #: ../plug-ins/common/iwarp.c:817 #, c-format msgid "Frame %d" msgstr "Bildruta %d" -#: ../plug-ins/common/gifload.c:917 +#: ../plug-ins/common/gifload.c:916 #, c-format msgid "Frame %d (%d%s)" msgstr "Bildruta %d (%d%s)" -#: ../plug-ins/common/gifload.c:947 +#: ../plug-ins/common/gifload.c:946 #, c-format msgid "" "GIF: Undocumented GIF composite type %d is not handled. Animation might not " @@ -5852,7 +5853,7 @@ msgid "B/W" msgstr "S/V" -#: ../plug-ins/common/postscript.c:3003 ../plug-ins/rcm/rcm_dialog.c:404 +#: ../plug-ins/common/postscript.c:3003 ../plug-ins/rcm/rcm_dialog.c:411 msgid "Gray" msgstr "Grått" @@ -5943,11 +5944,11 @@ msgid "Invalid UTF-8 string in PSD file" msgstr "Ogiltig UTF-8-sträng i PSD-fil" -#: ../plug-ins/common/psd_save.c:181 +#: ../plug-ins/common/psd_save.c:192 msgid "Photoshop image" msgstr "Photoshop-bild" -#: ../plug-ins/common/psd_save.c:1564 +#: ../plug-ins/common/psd_save.c:1312 #, c-format msgid "" "Unable to save '%s'. The psd file format does not support images that are " @@ -5956,7 +5957,7 @@ "Kunde inte spara \"%s\". Filformatet psd stödjer inte bilder som är högre " "eller bredare än 30000 bildpunkter." -#: ../plug-ins/common/psd_save.c:1576 +#: ../plug-ins/common/psd_save.c:1324 #, c-format msgid "" "Unable to save '%s'. The psd file format does not support images with " @@ -11437,87 +11438,87 @@ msgid "Rotating the colormap..." msgstr "Roterar färgkartan..." -#: ../plug-ins/rcm/rcm_dialog.c:114 +#: ../plug-ins/rcm/rcm_dialog.c:119 msgid "Original" msgstr "Original" -#: ../plug-ins/rcm/rcm_dialog.c:127 +#: ../plug-ins/rcm/rcm_dialog.c:133 msgid "Rotated" msgstr "Roterad" -#: ../plug-ins/rcm/rcm_dialog.c:140 +#: ../plug-ins/rcm/rcm_dialog.c:147 msgid "Continuous update" msgstr "Ständig uppdatering" -#: ../plug-ins/rcm/rcm_dialog.c:153 +#: ../plug-ins/rcm/rcm_dialog.c:160 msgid "Area:" msgstr "Område:" -#: ../plug-ins/rcm/rcm_dialog.c:157 +#: ../plug-ins/rcm/rcm_dialog.c:164 msgid "Entire Layer" msgstr "Hela lagret" -#: ../plug-ins/rcm/rcm_dialog.c:159 +#: ../plug-ins/rcm/rcm_dialog.c:166 msgid "Context" msgstr "Kontext" #. spinbutton 1 -#: ../plug-ins/rcm/rcm_dialog.c:284 ../plug-ins/rcm/rcm_dialog.c:362 +#: ../plug-ins/rcm/rcm_dialog.c:291 ../plug-ins/rcm/rcm_dialog.c:369 msgid "From" msgstr "Från" #. spinbutton 2 -#: ../plug-ins/rcm/rcm_dialog.c:310 ../plug-ins/rcm/rcm_dialog.c:363 +#: ../plug-ins/rcm/rcm_dialog.c:317 ../plug-ins/rcm/rcm_dialog.c:370 msgid "To" msgstr "Till" #. * Gray: Operation-Mode * -#: ../plug-ins/rcm/rcm_dialog.c:499 +#: ../plug-ins/rcm/rcm_dialog.c:506 msgid "Gray Mode" msgstr "Gråskaleläge" #. Gray: Operation-Mode: two radio buttons -#: ../plug-ins/rcm/rcm_dialog.c:508 +#: ../plug-ins/rcm/rcm_dialog.c:515 msgid "Treat as this" msgstr "Behandla som detta" -#: ../plug-ins/rcm/rcm_dialog.c:520 +#: ../plug-ins/rcm/rcm_dialog.c:527 msgid "Change to this" msgstr "Ändra till detta" #. * Gray: What is gray? * -#: ../plug-ins/rcm/rcm_dialog.c:533 +#: ../plug-ins/rcm/rcm_dialog.c:540 msgid "Gray Threshold" msgstr "_Grått tröskelvärde:" #. * Misc: Used unit selection * -#: ../plug-ins/rcm/rcm_dialog.c:572 ../plug-ins/rcm/rcm_dialog.c:676 +#: ../plug-ins/rcm/rcm_dialog.c:579 ../plug-ins/rcm/rcm_dialog.c:683 msgid "Units" msgstr "Enheter" #. Misc: Used unit selection: 3 radio buttons -#: ../plug-ins/rcm/rcm_dialog.c:581 +#: ../plug-ins/rcm/rcm_dialog.c:588 msgid "Radians" msgstr "Radianer" -#: ../plug-ins/rcm/rcm_dialog.c:593 +#: ../plug-ins/rcm/rcm_dialog.c:600 msgid "Radians/Pi" msgstr "Radianer/pi" -#: ../plug-ins/rcm/rcm_dialog.c:605 +#: ../plug-ins/rcm/rcm_dialog.c:612 msgid "Degrees" msgstr "Grader" #. Create dialog -#: ../plug-ins/rcm/rcm_dialog.c:638 +#: ../plug-ins/rcm/rcm_dialog.c:645 msgid "Colormap Rotation" msgstr "Rotera färgkarta" -#: ../plug-ins/rcm/rcm_dialog.c:670 +#: ../plug-ins/rcm/rcm_dialog.c:677 msgid "Main Options" msgstr "Huvudalternativ" -#: ../plug-ins/rcm/rcm_dialog.c:673 +#: ../plug-ins/rcm/rcm_dialog.c:680 msgid "Gray Options" msgstr "Grå alternativ" @@ -11600,27 +11601,27 @@ msgid "Transferring TWAIN data..." msgstr "Överför TWAIN-data..." -#: ../plug-ins/winicon/icodialog.c:123 +#: ../plug-ins/winicon/icodialog.c:89 msgid "1 bpp, 1-bit alpha, 2-slot palette" msgstr "1 bpp, 1-bit alfa, 2-platspalett" -#: ../plug-ins/winicon/icodialog.c:124 +#: ../plug-ins/winicon/icodialog.c:90 msgid "4 bpp, 1-bit alpha, 16-slot palette" msgstr "4 bpp, 1-bit alfa, 16-platspalett" -#: ../plug-ins/winicon/icodialog.c:125 +#: ../plug-ins/winicon/icodialog.c:91 msgid "8 bpp, 1-bit alpha, 256-slot palette" msgstr "8 bpp, 1-bit alfa, 256-platspalett" -#: ../plug-ins/winicon/icodialog.c:126 +#: ../plug-ins/winicon/icodialog.c:92 msgid "32 bpp, 8-bit alpha, no palette" msgstr "32 bpp, 8-bit alfa, ingen palett" -#: ../plug-ins/winicon/icodialog.c:151 +#: ../plug-ins/winicon/icodialog.c:117 msgid "GIMP Windows Icon Plugin" msgstr "GIMP Windows-ikon insticksmodul" -#: ../plug-ins/winicon/icodialog.c:172 +#: ../plug-ins/winicon/icodialog.c:138 msgid "Icon details" msgstr "Ikondetaljer" @@ -11629,7 +11630,7 @@ msgid "Icon #%i" msgstr "Ikon #%i" -#: ../plug-ins/winicon/icosave.c:943 +#: ../plug-ins/winicon/icosave.c:969 msgid "Windows icons cannot be higher or wider than 255 pixels." msgstr "Windows-ikoner kan inte vara högre eööer bredare än 256 bildpunkter." diff -uraN gimp-2.2.4/po-plug-ins/tr.gmo gimp-2.2.5/po-plug-ins/tr.gmo --- gimp-2.2.4/po-plug-ins/tr.gmo 2005-02-22 23:12:45.000000000 +0100 +++ gimp-2.2.5/po-plug-ins/tr.gmo 2005-04-09 23:09:32.000000000 +0200 @@ -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: 2005-02-22 23:04+0100 +POT-Creation-Date: 2005-04-09 21:56+0200 PO-Revision-Date: 2003-12-31 17:49+0000 Last-Translator: Fatih Demir Language-Team: Turkish diff -uraN gimp-2.2.4/po-plug-ins/tr.po gimp-2.2.5/po-plug-ins/tr.po --- gimp-2.2.4/po-plug-ins/tr.po 2005-02-22 23:12:39.000000000 +0100 +++ gimp-2.2.5/po-plug-ins/tr.po 2005-04-09 23:09:26.000000000 +0200 @@ -5,7 +5,7 @@ msgstr "" "Project-Id-Version: GIMP 1.2.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-02-22 23:04+0100\n" +"POT-Creation-Date: 2005-04-09 21:56+0200\n" "PO-Revision-Date: 2003-12-31 17:49+0000\n" "Last-Translator: Fatih Demir \n" "Language-Team: Turkish \n" @@ -367,7 +367,7 @@ #: ../plug-ins/common/pat.c:433 ../plug-ins/common/pcx.c:585 #: ../plug-ins/common/pix.c:515 ../plug-ins/common/png.c:1178 #: ../plug-ins/common/pnm.c:809 ../plug-ins/common/postscript.c:1123 -#: ../plug-ins/common/psd_save.c:1588 ../plug-ins/common/raw.c:517 +#: ../plug-ins/common/psd_save.c:1336 ../plug-ins/common/raw.c:517 #: ../plug-ins/common/raw.c:544 ../plug-ins/common/spheredesigner.c:2088 #: ../plug-ins/common/sunras.c:513 ../plug-ins/common/tga.c:1030 #: ../plug-ins/common/tiff.c:1810 ../plug-ins/common/xbm.c:996 @@ -1235,35 +1235,36 @@ #: ../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 +#: ../plug-ins/bmp/bmpread.c:207 ../plug-ins/bmp/bmpread.c:307 +#: ../plug-ins/bmp/bmpread.c:348 #, c-format msgid "'%s' is not a valid BMP file" msgstr "" #: ../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 +#: ../plug-ins/bmp/bmpread.c:300 ../plug-ins/bmp/bmpread.c:313 +#: ../plug-ins/bmp/bmpread.c:319 #, c-format msgid "Error reading BMP file header from '%s'" msgstr "" -#: ../plug-ins/bmp/bmpread.c:442 ../plug-ins/bmp/bmpread.c:477 +#: ../plug-ins/bmp/bmpread.c:450 ../plug-ins/bmp/bmpread.c:485 msgid "Unrecognized or invalid BMP compression format." msgstr "" #. #. * Create the "background" layer to hold the image... #. -#: ../plug-ins/bmp/bmpread.c:482 ../plug-ins/common/CEL.c:357 +#: ../plug-ins/bmp/bmpread.c:490 ../plug-ins/common/CEL.c:357 #: ../plug-ins/common/CEL.c:360 ../plug-ins/common/blinds.c:273 #: ../plug-ins/common/compose.c:625 ../plug-ins/common/decompose.c:595 #: ../plug-ins/common/dicom.c:442 ../plug-ins/common/film.c:946 -#: ../plug-ins/common/gifload.c:865 ../plug-ins/common/jpeg.c:1113 +#: ../plug-ins/common/gifload.c:864 ../plug-ins/common/jpeg.c:1113 #: ../plug-ins/common/jpeg.c:2474 ../plug-ins/common/pcx.c:334 #: ../plug-ins/common/pcx.c:340 ../plug-ins/common/pix.c:374 #: ../plug-ins/common/png.c:808 ../plug-ins/common/pnm.c:517 -#: ../plug-ins/common/psd.c:2173 ../plug-ins/common/raw.c:677 +#: ../plug-ins/common/psd.c:2174 ../plug-ins/common/raw.c:677 #: ../plug-ins/common/smooth_palette.c:257 ../plug-ins/common/sunras.c:925 #: ../plug-ins/common/tga.c:929 ../plug-ins/common/tiff.c:833 #: ../plug-ins/common/tile.c:266 ../plug-ins/common/winclipboard.c:579 @@ -1294,12 +1295,12 @@ #: ../plug-ins/common/jpeg.c:1453 ../plug-ins/common/pat.c:438 #: ../plug-ins/common/pcx.c:545 ../plug-ins/common/pix.c:521 #: ../plug-ins/common/png.c:1185 ../plug-ins/common/pnm.c:814 -#: ../plug-ins/common/postscript.c:1128 ../plug-ins/common/psd_save.c:1593 +#: ../plug-ins/common/postscript.c:1128 ../plug-ins/common/psd_save.c:1341 #: ../plug-ins/common/sunras.c:518 ../plug-ins/common/tga.c:1035 #: ../plug-ins/common/tiff.c:1815 ../plug-ins/common/xbm.c:1001 #: ../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:957 +#: ../plug-ins/sgi/sgi.c:545 ../plug-ins/winicon/icosave.c:977 #: ../plug-ins/xjt/xjt.c:1682 #, c-format msgid "Saving '%s'..." @@ -1652,7 +1653,7 @@ msgstr "" #: ../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 +#: ../plug-ins/common/decompose.c:144 ../plug-ins/rcm/rcm_dialog.c:548 msgid "Saturation" msgstr "" @@ -2489,24 +2490,24 @@ msgid "Color to _Alpha..." msgstr "" -#: ../plug-ins/common/colortoalpha.c:181 +#: ../plug-ins/common/colortoalpha.c:187 msgid "Removing color..." msgstr "" -#: ../plug-ins/common/colortoalpha.c:377 +#: ../plug-ins/common/colortoalpha.c:380 msgid "Color to Alpha" msgstr "" -#: ../plug-ins/common/colortoalpha.c:402 ../plug-ins/common/mapcolor.c:424 +#: ../plug-ins/common/colortoalpha.c:405 ../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:406 +#: ../plug-ins/common/colortoalpha.c:409 msgid "Color to Alpha Color Picker" msgstr "" -#: ../plug-ins/common/colortoalpha.c:420 +#: ../plug-ins/common/colortoalpha.c:423 msgid "to alpha" msgstr "" @@ -2529,13 +2530,13 @@ msgstr "" #. Gray: Circle: Spinbutton 1 -#: ../plug-ins/common/compose.c:148 ../plug-ins/rcm/rcm_dialog.c:452 +#: ../plug-ins/common/compose.c:148 ../plug-ins/rcm/rcm_dialog.c:459 msgid "Hue:" msgstr "" #. Gray: Circle: Spinbutton 2 #: ../plug-ins/common/compose.c:149 ../plug-ins/print/gimp_color_window.c:364 -#: ../plug-ins/rcm/rcm_dialog.c:479 +#: ../plug-ins/rcm/rcm_dialog.c:486 msgid "Saturation:" msgstr "" @@ -3159,15 +3160,15 @@ msgid "Deinterlace..." msgstr "" -#: ../plug-ins/common/deinterlace.c:315 +#: ../plug-ins/common/deinterlace.c:324 msgid "Deinterlace" msgstr "" -#: ../plug-ins/common/deinterlace.c:340 +#: ../plug-ins/common/deinterlace.c:349 msgid "Keep o_dd fields" msgstr "" -#: ../plug-ins/common/deinterlace.c:341 +#: ../plug-ins/common/deinterlace.c:350 msgid "Keep _even fields" msgstr "" @@ -3589,7 +3590,7 @@ #. Create selection #: ../plug-ins/common/film.c:1166 ../plug-ins/imagemap/imap_selection.c:400 -#: ../plug-ins/rcm/rcm_dialog.c:158 +#: ../plug-ins/rcm/rcm_dialog.c:165 msgid "Selection" msgstr "" @@ -4134,23 +4135,23 @@ msgid "Non-square pixels. Image might look squashed." msgstr "" -#: ../plug-ins/common/gifload.c:867 +#: ../plug-ins/common/gifload.c:866 #, fuzzy, c-format msgid "Background (%d%s)" msgstr "Arkaplan" -#: ../plug-ins/common/gifload.c:915 ../plug-ins/common/iwarp.c:783 +#: ../plug-ins/common/gifload.c:914 ../plug-ins/common/iwarp.c:783 #: ../plug-ins/common/iwarp.c:817 #, c-format msgid "Frame %d" msgstr "Çerçeve %d" -#: ../plug-ins/common/gifload.c:917 +#: ../plug-ins/common/gifload.c:916 #, fuzzy, c-format msgid "Frame %d (%d%s)" msgstr "Çerçeve %d" -#: ../plug-ins/common/gifload.c:947 +#: ../plug-ins/common/gifload.c:946 #, c-format msgid "" "GIF: Undocumented GIF composite type %d is not handled. Animation might not " @@ -6012,7 +6013,7 @@ msgid "B/W" msgstr "" -#: ../plug-ins/common/postscript.c:3003 ../plug-ins/rcm/rcm_dialog.c:404 +#: ../plug-ins/common/postscript.c:3003 ../plug-ins/rcm/rcm_dialog.c:411 msgid "Gray" msgstr "Gri" @@ -6105,18 +6106,18 @@ msgid "Invalid UTF-8 string in PSD file" msgstr "" -#: ../plug-ins/common/psd_save.c:181 +#: ../plug-ins/common/psd_save.c:192 msgid "Photoshop image" msgstr "" -#: ../plug-ins/common/psd_save.c:1564 +#: ../plug-ins/common/psd_save.c:1312 #, c-format msgid "" "Unable to save '%s'. The psd file format does not support images that are " "more than 30000 pixels wide or tall." msgstr "" -#: ../plug-ins/common/psd_save.c:1576 +#: ../plug-ins/common/psd_save.c:1324 #, c-format msgid "" "Unable to save '%s'. The psd file format does not support images with " @@ -11714,89 +11715,89 @@ msgid "Rotating the colormap..." msgstr "" -#: ../plug-ins/rcm/rcm_dialog.c:114 +#: ../plug-ins/rcm/rcm_dialog.c:119 msgid "Original" msgstr "" -#: ../plug-ins/rcm/rcm_dialog.c:127 +#: ../plug-ins/rcm/rcm_dialog.c:133 msgid "Rotated" msgstr "" -#: ../plug-ins/rcm/rcm_dialog.c:140 +#: ../plug-ins/rcm/rcm_dialog.c:147 msgid "Continuous update" msgstr "" -#: ../plug-ins/rcm/rcm_dialog.c:153 +#: ../plug-ins/rcm/rcm_dialog.c:160 msgid "Area:" msgstr "" -#: ../plug-ins/rcm/rcm_dialog.c:157 +#: ../plug-ins/rcm/rcm_dialog.c:164 msgid "Entire Layer" msgstr "" -#: ../plug-ins/rcm/rcm_dialog.c:159 +#: ../plug-ins/rcm/rcm_dialog.c:166 msgid "Context" msgstr "" #. spinbutton 1 -#: ../plug-ins/rcm/rcm_dialog.c:284 ../plug-ins/rcm/rcm_dialog.c:362 +#: ../plug-ins/rcm/rcm_dialog.c:291 ../plug-ins/rcm/rcm_dialog.c:369 msgid "From" msgstr "Kimden" #. spinbutton 2 -#: ../plug-ins/rcm/rcm_dialog.c:310 ../plug-ins/rcm/rcm_dialog.c:363 +#: ../plug-ins/rcm/rcm_dialog.c:317 ../plug-ins/rcm/rcm_dialog.c:370 msgid "To" msgstr "Kime" #. * Gray: Operation-Mode * -#: ../plug-ins/rcm/rcm_dialog.c:499 +#: ../plug-ins/rcm/rcm_dialog.c:506 #, fuzzy msgid "Gray Mode" msgstr "Gri" #. Gray: Operation-Mode: two radio buttons -#: ../plug-ins/rcm/rcm_dialog.c:508 +#: ../plug-ins/rcm/rcm_dialog.c:515 msgid "Treat as this" msgstr "" -#: ../plug-ins/rcm/rcm_dialog.c:520 +#: ../plug-ins/rcm/rcm_dialog.c:527 msgid "Change to this" msgstr "" #. * Gray: What is gray? * -#: ../plug-ins/rcm/rcm_dialog.c:533 +#: ../plug-ins/rcm/rcm_dialog.c:540 #, fuzzy msgid "Gray Threshold" msgstr "Kanallar" #. * Misc: Used unit selection * -#: ../plug-ins/rcm/rcm_dialog.c:572 ../plug-ins/rcm/rcm_dialog.c:676 +#: ../plug-ins/rcm/rcm_dialog.c:579 ../plug-ins/rcm/rcm_dialog.c:683 msgid "Units" msgstr "" #. Misc: Used unit selection: 3 radio buttons -#: ../plug-ins/rcm/rcm_dialog.c:581 +#: ../plug-ins/rcm/rcm_dialog.c:588 msgid "Radians" msgstr "" -#: ../plug-ins/rcm/rcm_dialog.c:593 +#: ../plug-ins/rcm/rcm_dialog.c:600 msgid "Radians/Pi" msgstr "" -#: ../plug-ins/rcm/rcm_dialog.c:605 +#: ../plug-ins/rcm/rcm_dialog.c:612 msgid "Degrees" msgstr "" #. Create dialog -#: ../plug-ins/rcm/rcm_dialog.c:638 +#: ../plug-ins/rcm/rcm_dialog.c:645 msgid "Colormap Rotation" msgstr "" -#: ../plug-ins/rcm/rcm_dialog.c:670 +#: ../plug-ins/rcm/rcm_dialog.c:677 msgid "Main Options" msgstr "" -#: ../plug-ins/rcm/rcm_dialog.c:673 +#: ../plug-ins/rcm/rcm_dialog.c:680 #, fuzzy msgid "Gray Options" msgstr "GIF Seçenekleri" @@ -11881,27 +11882,27 @@ msgid "Transferring TWAIN data..." msgstr "" -#: ../plug-ins/winicon/icodialog.c:123 +#: ../plug-ins/winicon/icodialog.c:89 msgid "1 bpp, 1-bit alpha, 2-slot palette" msgstr "" -#: ../plug-ins/winicon/icodialog.c:124 +#: ../plug-ins/winicon/icodialog.c:90 msgid "4 bpp, 1-bit alpha, 16-slot palette" msgstr "" -#: ../plug-ins/winicon/icodialog.c:125 +#: ../plug-ins/winicon/icodialog.c:91 msgid "8 bpp, 1-bit alpha, 256-slot palette" msgstr "" -#: ../plug-ins/winicon/icodialog.c:126 +#: ../plug-ins/winicon/icodialog.c:92 msgid "32 bpp, 8-bit alpha, no palette" msgstr "" -#: ../plug-ins/winicon/icodialog.c:151 +#: ../plug-ins/winicon/icodialog.c:117 msgid "GIMP Windows Icon Plugin" msgstr "" -#: ../plug-ins/winicon/icodialog.c:172 +#: ../plug-ins/winicon/icodialog.c:138 msgid "Icon details" msgstr "" @@ -11910,7 +11911,7 @@ msgid "Icon #%i" msgstr "" -#: ../plug-ins/winicon/icosave.c:943 +#: ../plug-ins/winicon/icosave.c:969 msgid "Windows icons cannot be higher or wider than 255 pixels." msgstr "" diff -uraN gimp-2.2.4/po-plug-ins/uk.gmo gimp-2.2.5/po-plug-ins/uk.gmo --- gimp-2.2.4/po-plug-ins/uk.gmo 2005-02-22 23:12:45.000000000 +0100 +++ gimp-2.2.5/po-plug-ins/uk.gmo 2005-04-09 23:09:32.000000000 +0200 @@ -1,191 +1,331 @@ -,|9 rHPI Ü͜ Ý1ӝ"BYt *"ݞ ?"Fi#$ -ҟ'ݟVQ\Ġˠ Рڠߠ  -'2 GTZl s}ơա )@L_Ǣ $=<UC$֣'}ʥ&H"o - ɦӦ + ?I%R x<R? NZas 21ߨ $$I\qA   %3 -HS\di ت -ު  ( -5 -@ -K -Va3f ̫ӫثޫ 0 < FRY k w ì̬ܬ#)1: -K Vdl~ "׭?0I$c2#/߮'&7^~J&' 5 -< -GR*f(ذ hhj)ӱ'#%4I4~()ܲ'l.*5Ƴ5,2*_4 δ ۴$&4/d ly'3?7sU -3:AI Q [hz - θݸ -# -2=T i@w ŹԹ -$-CR[mt|  պ  $4+K4wͻ +2RAe ϼ)޼6? -_ -ju(|+!ѽ &( O#p #1پ# &/Vv/>&8C| <|'h9   & 4@Xn  -  - - %).4;DT dnu}  #y9 $ 08 ?K Z hu! / 8DU p }   - -  '1 B -N Ye n |20=1*=\/ +(FduB  $@ ^l{  - : DSc)j/#2+GVe m"z4 7Vq'8K)k.-' 5#Vz%2  # 4$U z16'.V v :Kb -z)"6 -Va t  - - - #( 1> FPk - ; GgS ()*TZaq -  $6F bl     $26 H T`e k-u2/BC= - - $93^   -  nY vg\bC 7G -Wb"| KCLQ er z6   (/*X  ]  - 4AG [i~  - -/ G!BiNIEK%Z$%$%$;CL]qv }   - <J\q  - -  #/8@ I S<`% -' >Nf v   -  #; -C N[ t -  -  +*V[c k y   )A\w  - I %/ -@K:c0 -.#2C Tu *0P lv     6%Bhp   #87Ay     *226i  -6=F N[s - - -#;T -Zem |  -'  &-39 BPXaj8 + $7:O'  (4N is|$ - - '.> N[ ky%! 9CGL[kz !08K St ,@Wj|" -# >1J,|  -   #-5 NZc 4!:I ^ lv~ -  -; . : -FQ gs x -  - "0*Cn        ! 4@ O [ h u  /   -=FO.X'  ! 9Zz + " -) 4ASd v   -# /DWp0]]5f  &#0?T)%2<XE    /2 *b C   + -!7 -Y -'t - - - - - - - -    ( 6 =  C !O #q          -#  -. 9  @ L Q Z `  -t     '   Y C  -I T \ k   -       ,;T/p-/   %/8 @MdD'@ -7> NX_p w   76Z> -    4H O\ e -r}  R&OvZS8S5nF0 M<EPK!m><7<7!1.P)%)3&054fp~>=%,!N!>JU ) --$5<EN `jmvz     2  P q         ! !!-!3!%:!`!o!w! ! !!!&!!!"%"4" C"O"_"Fw"","Q":O###*##### $$/$6$E$W$f$v$~$$ -$$ $ $R$P%d%l%u%~%%%j:&A&$&= '.J'-y'-''' -' '( ((U(nr((( -),)=)D)I)8Q))))))))* *&*%<*%b***************S*CC+:+F+ ,,,2,7,?,[,d,,, , , ,,,, ,,, ,, - - -$- /-9-@-I-P-W-]-d-m-v- {- -- ----- - ---- -. ... &.2.:. S.a. -r.}.. -... .. .... ....../ /// / -(/ 3/ ?/L/\/a/f/m/u/ {///// ///////000 0'0-040:0 C0 M0 W0 c0 m0y0 -0 00 000 -0 000 -00001 11 01=1B1 S1`1h1 -q1|1 1 -111 11 -111 11 1 222+2 42 >2J2P2W2^2t2|222 -2 -2282 2 -2 333 3/3 536B3y333 33 333 33 3 -3444 4 *4 74A4 H4V4]4e4k4 q4{4 4444444444444455"5%5*51595?5"C5f5o55 5 55 5 -5 5 -55 5 556606 B6L6 P6^6 m6{6 -666:667 - 7 -7"7)7G27{z8$;$< @<N<=> >p(>>A>>,?2E?Bx?P?@ @;M@;@ @T@K'AWsAVA"BP7BpBB,CC CCD$ D 1D>DSDhDqD DD%DDDDEE,E0AEArE'E$E"F($FMFlFRF:Fx G6G.G0G4H.RH,HzH)IFIbI)TKF~L@L8M@?N7NCN)N&O#PPNPP -PP PPP~QgQQ R)R 1R/RR/R)RpRaMSS'SeS*TT+T*T9T_U%pU!UUUUUU,V;V OV \VhV2qV'VV&V -W!W2WMW TWbW tWW0WWWWWXXXX X X'X Y -Y &Y2YBYSYcY'tY!YYY -YBY@Z,XZ ZZZZZZ[ [ [$+[ P[3][-[[[[[[ [ [[ \#\ 3\/=\m\\\\'\I\>3]r]D]M>^g^^Xv_J_c`h~`E`R-aaW!b[yb -bb bbZc?tcVc dd,,dYde:e5f(>f^gf^fA%gCggEggNh`i`yiBi;jYjNxjjj6j')k Qk"^kkkkUlm3motp}pp7pp p pqq%qx!yl@yyy<y'z8zFWzTz;z/{G{f{Mu{W{G|@c|P|;|B1}Nt}E}V ~l`~G~J?`;c@.ƀ0B&zi& !>҂_̓(-wV΄> _}"CՅ+ C P]!q!ņ)FWj~‡#. R\s=Ј28A6zI<i36 ̋#:Kg,01.2Cv. Ս#0 KU2s#& ()1[ -k vԏ 1VHRjT]rX%&~&HےW$3|# ԓ(!@Jݔ(?DW:!ו0E N:[4(F*~q&s5hdkwhL6k$A֚N=g)<ߛ97V4/ÜGB;0~5M.3.bKmݞ5KcLO2<'3^lz  U8pPn!:dJS<ۤ, .9.h,,ĥ  4 %@f#(̦(ަ^ f<t§ߧP/#ި8L fr ʩΩ 0  :F=W9#Ϫ8G^{@Z t08ƭG G S#]#®߮0 G -S&^$ɯ&گ 5"X0k -Ű԰ - -!8 V)wϱ((=Qdw+ =˲, ?6jvtq#)Mh w=3[-q$!ն  $/.^zŷN Wn "48'm!,׼E J1k?9ݽƾؾ%#,%Gzm*2A<_JL44Ez"&<!S u6#, -%8I [hyA" Q/^P`1 KI KUIKI7  - 9FeGz<7&7>^:6,0<!m3/+ -4 ? -K V!b!} T < A?N3<Z Z%{,   (@ -X cp2&@P `m - $M - -X c q$"'?3W#!"%,7R7"!$ -,7.Q R",'OBwkH5k -]h{##.% !F?h$cA1=s=' -*5Pd z ;;%;a ?  .?Ur!& =6;t`**Uh)~, ) -3>^v\4H%Hn'D:$ _ m y1 "G ,T-8@y:>@I^p -XSh w(5N_Nnd"4DG9,;$x`^/8h#L */>F5  >#2Qgy&  -#1#U"y!%>#6/U 6A/J@z#3=F)&(,*QW$ +-$H(m)3,;'h&*.&1X8k'+H(A+j%B&P&KwC"7 -R"] /8N1a11  )`H3$;R fr - -% -(' PF^!&#7![A}%6;"[:~(2&O<<(C /P(-"Vy  4N"lS)  =U/n36d? -  .#OsD> 5(BCk( H . '8  -` k  &    -($ -M -!l - - - -4 -. BA 1 . 3 0 FJ $ N   (A jva]%[69>.1W`Jhil!/5Hi~_xH6,U%A{,>)6<#s  (%+(Q zA>$(5%^<53/+B[  -  -' 4 KX5j*+  -.00?p/&$;7T3.'%aMKMI[6m - -/"R&o q  -        -!!'5!]!w!!(!!:!)"a2""e" # 0# -=#H#b#x##*##(# -##$+$ I$V$f$|$$4$!$ -%%%%.%T%'e%%%%;7&s&&~7'1':'O#(s((W)jk))bV*b*,+cI+L+Y+jT,-@.1/8L/8/A/;02<0?o0>00V2N[2)2?2I3_^3!3344c5B16Ft6\6N8g88 '9"49PW9 99q9(7:`:q:::":: ::: ; ;$";G;c;t;!;;;@;'<"A<Hd<-<<<<.<B=4a======7>N>]>Fm>>>>/?4?FN?6?K?@2*@]@$l@$@@4@UAtVA>Ay -BBfJCAC@Cu4DDD$D+D.&EUEoEEEEEEEF.F -EFPFbFF|G G G GGGoG4IIMJRJ[=K]KoKgL-|LLL -L L MMMwN4N -N+N N - O -OR"O,uOBO.O/P DPQPdPPPEPGPK,Q -xQQ%QQQQQ -QQQQ Q -RR'R~RzLSSOToT,rTTTTTTTTU&U>U RU ^UkU~UUU(U2U VV#V:V PV ^VlVV V V VVVVVW!W yuf&g*./.rX6WPtE-$ R;&rlEq!390oFi'kv0 l0)W#vg%Gk=A3M|P)7# O,9v_ -6LPviS:>t6bwS ^$!nc!s(l7jQfgxz+W:X)OX,xHFYe J s,iV4ES!Ka;q RH)|I -!]=e61Npo =p/1Yw% Ug0K}NP~x4s5,y:[X\gAC`cYwMl\Cv +t{ZD"BCy^h*H^au"tR ->&9DUV zT ^RP;eZ<k>)n. -4R[,r}]:Lc#!('VM @>>l<TP\#+fCijmzzR?+I(7332}'I$%wYK_to1s"w}rZe 2^-!9}FAN'8N:qU5C`h\/Hmg1 Fc)JjVm_13t  Asrb)P -2& HM=|#s(" Ej$p]#; 58  -=nCAu&A~u8\L5 "0#'2T*Q `3z1(QaLAJO4"<7]u~B9oiD/Id0m6Sw@INB*[F?\1J|-ZXd)VvY+/x4;,2D\{ %W 9lE> VZk<24`Jo +@ +R P/C ZdE GTd z1"&A ^*"  '"3V#v$ +'VQI   + '1 :FNW_ +t  )8I`py) L4E` :<)Cf$w'V~}&"Cf% + 4Ibj+r %  <YRa ) =2J1} $ /AK   + + +&.3Of ~  +!,>O _ k +x + + + 3 &-<CHYkq    "06; J Vdl p|  9=BFJPXa p| +   "1?J$2#./R'$&J3&~' + + +2*Fq( hh[)'#4:4o()'l*55,#*P{4  $ 0H4Q '9a3q$7UX_ +y  (< +OZlu}  +)@ Uc +u@   +5H^g}  % 2? S$_+4 .BT ]g+pA  +9H)X6 +& +((/+X!& ## G#h1#& )/B>r8/L^ es<|'Q y ?  +  9  2 +@ +O + ` +l +} + + + + + + + + +   4  +P  [ i z    +   +         " 2  B  N Z  j t {             $ 9 Q i |  y  $,Q Ye0t   !*CZv   +     *4I an w 4. +5 +@ K Wa r~ +   20=@1~=/ 0= F+R ~( *:BK   8 Vds  +   :!\k{ )/#25+h "'(P4 &8Q'p*FY'q9N%)t.-' >#_%2 $2D#K o$ 11D6d'   *7<Qf{  +) 4  G S )\  "       !6!L! +`!k!! ! ! !!!!! +" +""$" G"S"e"j" +y" " +""""""" "" " " ##-#H#O# # # $ $g$$$ $$$ +$$(%))%S% m%z%%% %% +% %%%%% && &4& +C& N&\&o&u& z&&&&&& &&' ' '>'S' X' b'o' ~'''''''' ' ''( (%( 6( +D(O(V( T) ^)l)p) +) ) ))) ))-))**6*2L*/*B*=* +0+ ;+G+ b+o+ +++ +++ + ++ + ++,$%,3J, ~,, ,,,,, ,, ,--0-B-U-f-z-- +- ----- -n-L.Y.v.//\)0C00 000011 +$1 /1 ;1H1W1"q1 111 1112 2K+2w2222222 2 2 22 3 33603 g3q3 33 3(3*3 4(4 C4]M4 4444 +4 445+5 25?5E5N5`5t5 55555 5555 55 +5 +5/6`766 66 6 6G6B 7NN7I777778 888#828D8%T8$z8%8$8%8$959=9F9W9k9|99999 9 999 99 :': +6:A:Y: u::::: :::;); :;F; +K; V;b;x;; +; ; +; ;;;< < *<8< H<T<e<n<v< << <<<%< = +==3=':= b===== = == =>>(>0>B> I>S>g> n>{>> +> >>>> +> ? ?? 6?D? I? U? c?o?v? {??? +???0? @ @&@>@ +V@ a@n@@ @+@ @@@ +A"A7ARAWA_A gA uAA AAAAA AAB B B*B @BNBVBjByBBBBBBBB C C&C+C:C BC +NCYCbCqC zC C CIC CCDDD +$D/D:GD0D +DD.DDDDEE'E 8EYElE|E EEE*EEF8FXF tF~FF FF FF FF FF FF G,GKGjG~G GG%GGG +GG GG HH-H>H TH^HrH{HH HH H HHH#HI0I9I7MIII II II IIJ JJ &J4J;J JJ WJdJlJ |J JJJJ J J J2JK(KCK^KqKK KK K +KKKKKL L +L'L?L$OLtL {LL L LLL +L L L +LLM2M8MMM +TM _MlMtMM#MMM M +MMM NN N+N?N HNVN +]N'hN NN +NNN N N NNO"O2O9OHO NOZO`O iOwOOO O O OOQ8QR "R.R+CRoR wRRRRRRR:R'&S NS\SpSSSS S SSST T T*TDT _TiTrTT TT$TTT +TT T TU +U!U&U6U?UHUOU`U +hUsUzUUUUUUU UU V V 'V5VMVVVhV V +VVVVVVV VV%VW-W>W VW`WdWtWWWWWWWWWWWX X$X?X_XnX-XXXX XXYY8YPY _Y lY yYYYYYYYZZ%Z-ZJZ[Z"oZZZ +Z#Z Z1Z,%[R[l[ +[[ [[[[ [ +[[[ \ +\\#\+\4\;\ J\ T\ ^\h\p\ \\\\\\ ] ]]].]4C]!x]]]] ] ] ]]]^ +^^ %^/^ +5^@^_^d^v^^^;^ ^ ^ +^^_+_ C_O_ T_#b_ +__ ___ _ +__` "`0`E`X`*o` ``` ` ``a aa 6a Ca Oa [a gasaa aa a a a a a aa*b oGoMo +aolo qo{oo'oooYo0p6p +IpTp\pkpzppp +pp p pppq+q?qQqZq `qlq{q qq/q-q/r Kr Ur_rwrr rr +rrrrr rss3sDNs's@s st tt 1t;tVt]tmt~tt ttt t ttttt u u ,u:uKu +Pu7[uu uZuvvv !v +/v :v Gv Qv[v rv|vv(vvvv v +vww(w1w CwOw gw +tww w www wwwww +x"x+x4xRPx&xxxZxSTyyy5y+zF@zz0zMzE&{Pl{K{ |>$|<c|7||}p~!~~~.~)%EQk)&+/3&;[0z4p~=%@,f!aJ  +) +DO^ cq -΅߅ + +  + 5?GP Tag pz  † ن  2M k чo{bވ 4:%Agv/~  ĉщ&-6U\ +lw  ˊފF&m,Q:J_q* ŒЌ$*:J_pw Íˍۍ +    & 3R?P!%9LckjA$Ɛ=.)-X- +ё ܑ UnQВ,5<AI8[Ɠޓ  +$3B Q_ b&n%%[ ZglqSC:IF˖ږݖ -6 T`hm|    ȗϗ  #1BRb y  +  Ę ˘٘ + / 8ENS \ hu |   +ƙ͙ܙ   +#. =KTd(t  Ϛؚ  + )5 ;EW`f u + ̛ +ۛ +"+;KZ p zΜ  # +- 8FYas|  ɝ ѝ ۝   &2CKTZ_gm +   ͞ݞ &-A(I r    +ßΟ  + 3)Oy̠Ӡ  -;@GM\k + á ѡ ݡ     ) @ JVf +ny  +Ȣ ΢ܢ  +!,< Q[ +r } ģͣ գ +  +$ /<M +Vaj~  äͤ Ԥޤ   (->C Ta +it }  +  +ƥ ϥۥ + '3 : +HS\ p |Ǧצ *8%Ag    § ʧ ק  0 :G Wckz + +̨Ԩ ݨ8  +,7 K W eqz + 6  /7 >L^x -Ԫ   !5= P\ lv +   ʫ ԫ ޫ  $6 <I `j +{   +ˬ ֬  *;A-Gu{ (˭  ""EN_ d q}  +  + î ͮڮ !+ /= LZ +it:ӯ + + +G{b$޴$0( Yg.BMp˷<AZ,2BP^@;;, hAuT̺K!WmVŻP1s, ս߽, %3L`h$ ʾݾ .L%dʿѿ,0'AX'$"( +3R'eR:x9&6.0?4pc. ,8zeFab) F5D|8@7;Cs%)<D-Z5'#@ +2K3~ + +A +P,}7 +  +g"? G/h//()!pKa'5%]e*+*@9k_%!+Miy,    '32<'o*&>!D!f  0@Qbs!>\r  '  +(! JVfw'!: +RB], '=V^y  $% 3F+^:- % 3A]{ /.DXh'yI>*DMgDBXqKcczhEGRW[ 5C%`, +*Z#?~V !"6,Y@:55(k^^ARCEN`E`B;JN9=]6y' ".UA@<3}Z/c7 &+ R_o.! ) <]p +!&.*=h(&)#8 +\_g#3 '= eq:6996N,0/ATdu&0 ::T[}A))=M_]r>!l1<')'HFpT- ;:v7MWBG@P#;tBNEBVlGLJ?;c[.E0tBz&c/!#&8_ (' +gP + +% +w +p  $  . > U s "  C  !  9  F -S 5  ! ! !61hx0CWl{% +*:#X#| ! +)@)j1=2876p?<_36#:A],z01. +29l. $#(0L!}' 2+^#v&9#)>h"xM + !2R!gVR\jTroX&;"b&H?D&bW3# 9(Z!& JB %  = A! J!X!Dp!:!!!","I"^" g":t""4"":#(U#1~#F#~#v$$$$+$,$s'%h%d&ki&h&,>'k'6''$'A'N7(G((=) ***)H*<r*]*9 +7G+4+/+G+B,,0o,5,M,.$-.S-.-~-0.K.m /5w/c/L0O^0<0'0 +131R1*l1^1l1 c2m2+22U283PQ33n3'404!948[4:4d4J455<5%5)5(6?6Y6,n6.6.6,6,&7 S7 `74m7%77#7(8.8(@8i88^8 8< +9G9LX99999+:P>: ::::#;);I;a;8~;; ;;; <9<J<Y<v<y<<<<*<<< ==+=0B= s======9=#8>\>8w?????@$@A A0j:Fj6j,j4j0k!Kk#mk3k/kk$l7lRl[lul-l:ll +m m ++m 6m!Bm%dm!mmm)m'n%*nPndnwnnn!n}nTYo oo<o p?p3\p<pZp)(q Rq$sq)qq%qr$r>r,[r rr'rr rrs +s (s5sMseszs0ss2s&t6tGtbtrttttt7tuu+u_Juu uuu +u vv'v$?vMdv&v+v1w7w)Tw/~w +w w www0 +x$;x1`x-xxxx" y/yFy^y3vy#yy!y" +z-z4z%Kz7qz7z"z"{"'{!J{$l{ +{{ {{.{|'|D|V| s||R||}"!}D}`}'}B}}ky~5~l" +##.#%R%x!?"$#cHA==,'j +4 *4Gax ;ʃ;;B/~ + DŽ? ! +Le},"+Nb|!6&  -<N=;ɇ$`C*ψ)",7dz- щۉ +"7O h$ˊ "\;4H͋H'_D:̌  ! :1F x$"ύ#G,^V#7QgǏۏ-8U-fҐ!:%>`ґ-4G| +XҒ+@_v (̓6#,P_xє$;RNidԙ9K(^D̚ݚ!9Ys,;x^kʜ/ߜ#.LR ۝*%"8[r>5Ξ   =Aa>fџ'#,Kas&͠  $+28^+á#ܡ#"$!G#i%>Ϣ!/@ p ѣ?X*V6ڤ/AA/%@٥1#B,fĦӦ=4)M&w(ǧ,ڧQ$Y*~E +)-;$i()8+F]t3,'&6*].&ޫ8'*+RH~(Ǭ+%BB&PK"I1l +$'ήC: Ubw +"֯ ##4Xj/۰1161hɱޱ#`*3޲%>Ut  + +ӳ޳2%9_(|! ǴFմ4L!c'0޵#O+!{A%߶6<["{:(ٷ2.5&d#O7<R(Cҹ/F7dٺ (+"Tw Ի 2L"jO"ݼ+,,"Y#|#6޽S)i#ʾ+)>/h3̿޿6!dX +=H b#D>* i(vC(  $ 1H> ' +& <](}D! +,Jc|44.BJ51.3$0XF$ND( a]<%69>1.pWJhBi!3"Ux5i_Jx6#,ZUA,>L6#& *Ih (%( $-&K"rA>*(;Id%<5G0c%3 +1*/\!B *% P] +u  +' 5*,+W  +*5,U200+My/$ ++)1@[<3".V'aK/M{*65l%~+$ +" --N6|/&ko +#!Ac4v#,3 +LW'n(!'If:aDYes!  +&@Vh*w( +N#4X v);Rq4!%!%Gm'~)9-;< J~1p:O7-eWj]bHb,c;LYjF@1 8>8wA;2.a?A9>{7VN_)?I_b!cB5Fx\Nk6+ b"oP ./#Ko:q(8ar"   !1)7ax $ +1N!n@'"HA-0B@4 +=[j7F(HJZ/F 6TK2.+Z$t$N2@ 4s U 4 t3 +> +y +Ba  fj A 6 )J @t u 3+0_>I/$D+i.7Wv% +)GYy| v  30:&aozMRR[]Oo-2`z +  h-4H +}+  + + R(,{B./ J#W{,),ECGK +(%1W! +$/8= B O]l~ z !!!!,! ""E+"q"A"""""?"?#S#k#&## #$#+# $#$6$K$T$$h$+$2$$$2%D%S%[%n%%% %% %%&& -& 9&F&#\&C& &&&& '$':'Q'%a'''' ''($(8(X( q(%}((((()#)7;)ds)!)) * +*&*-;* i*v***** ** + #+ 0+#>+b+y++++ +"+,<-,j,&{, ,,,,,->+-j-|- --*-&-+ +.D6.{.'. .. . . +/ / #/ +D/-O/}/4///#/0$0,0>0 ]0j0z0 0 000 00$0 1"111A1Y1m17}1111)1(2/E2u22%2222333I3-[33U33!4 (424L4b4t44'444 45!5&@59g5V55 +66 6 @6$L66q6 6!6+67 7"7=67 t7"7777+7 8/,8"\888,888 99'59]9v999 999':):E:+d:-:::#: +;%";H; g;5t;; ;;;<'<D<(_<<#<<<<!=5= +D=O=h=w=='====$>>>O>d>~>>(>>&>(?;? M? +W?Rb?1??? @@$ @E@J@b@x@@@'@#@@A A5AMA`AwAAAA$A(A &B 2B@BUBdB,zBBB0B7 CAC]CnCCCC$C:C8DWD;nD8DDD)EAE TEaEzEE EEE!EE +F"%FHFWFkFFF!F F#FGG&G +:G)EG oG{G GjGG H&H DH$QHvHHH H(HH +IIq-IIIII IJ7JGJ[JrJ7J1JBJV;KEKZK 3L=L%TL/zLLLL+LM%0MVM oM}MMMMMMMN .N:N#VN zNN NNN&N>N9OLOfOxOO+OOOO PP9POP SPaP-ePPP"PP +P +P4Q 7Q +DQOQ^QnQ}QQ/QQQQQ RR,Rc=RRRRR RR S +S #S +-S8SKS`S5uS +SSS SS TT "T0T?TVT*oT<TTTUU.U BUOU + %dD  $ N|5d," 9_n s c94G @ZI 5v1 )abeQ  QZ:5Nz<7( ^RJc> V9jozg,* +<; l$9* +@) |6 Zn8w ~Tcd ]W  T z]n"u B ! ?<'0 7=\c|F1o898V/ ++O&Q;cb x* }lyi 6Cm XvZ/Jg% xl=` n; ^j o\  fv8zSd +!M V) +  ]` B 9fQGwFLdis r 't exMcMf@ 9 y + ah nm> + q#)Cw[t +Z`Isc A*A%  YrC% ;7A/ E-` +C &R D3B\i9 + C  . L[SUONB] ]RUHtK(s8L4zU  +  F +  +{G + \1 + \ 4i' slT e& +Jt FX +Y [A"%CqupE1 U-}@ +B'{k {ma "u Gzn K 16Z '_|akv_4P# i !- wo% +Qgx)' + 6 u;e  [ Jf$ +cK} 4"*IO 0 p@Y&=JW/h ?] l( q $ &a g2 +/v!5 &4? hM?}j=r3y c_ %V+Dz>  +2Fg^-: JT~ G! U  )  += o; E*v &7fW yW sd*3X PA  #`l  At5# + g {&SQ.(Ut8 +B5 +mh . 7 ;, & wYq!0yb q +/  :O ^h[@$ NR _ bp +Im ;S4rT \H AK 7 :OV f`|j   O J +36$ Y kD_+9 +ES [e11 _jwl + + ++. +P/ k j +5=G! +) !2 " * 'V Ik!>M YX +,YVN OSTR*' e n'37$i3Px= }, +,H>[-L,(t  us ]r p- (q < ${HsSi/aSPBK4 +3 )J A#06Wi.VFt\KXKua4 |1?9 +R| E jF +}L6 *0 %QZ 15 +? g < +N >g o! h5N` +   +wMoL5R"p y.Z "TTzru I  3u j Py ?H}>d-: +<: :{ /`m +:[:kxv +#  $).  F:}/g )4 +^>#~x] +n(pqmmG+ +hLk<|b>GX60avp~? +vT +   a |' -   +p l N {< =F+a#i= +U 0 N$ gW +l0rJY*Y=" +H k) +~Tm 88Uq e +8 +p.En  8 rM^ O !~ D{73;uE7x +h | D ?Ebc6 @#D  +Oe@%Xv @( + H +4I^ .G o bD2bbL Bxt2:nM\qf I&1 +`  W 0 (}uZ\jdGA1z @/IR #,tLMQ~l2;  ; +Mo] 8P rJ6 + +$5_?p( os_3 +dj - + BPf{<> +-~~ qE<Pd L  +Py Oy#UHD S k  +  ?K2. ~%6K ^ZhWz[ R % Vk _UsC  + B>I^7WK"iEN C D0mHhr ^Q 'AR+we @f ( }eV7 + ,2wX X,&= 0 +wf] YHQ- +2C " \ +2 , XW[ySx 3`2 .Cb<F{9 Copyright (C) 1997-2001 Michael Sweet, Robert Krawitz, and the rest of the Gimp-Print Development Team. @@ -205,40 +345,43 @@ 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': + (Height Mismatch!) (Width Mismatch!) Columns on each layer 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:# 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.'%s': Could not read header (ftell == %ld)'%s': No image data type specified'%s': No image height specified'%s': -No image width specified(None)1 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 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 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 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:BentBest 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. +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 OptionsBentBest 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. -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: +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 Selection DialogColor TransformationColor _noise:Color _variation:Color fillColor is computed from the average of all pixels under the brushColor outputColor to AlphaColor to Alpha Color PickerColor to _Alpha...Color:Color_map:Colorcube A_nalysis...Colorcube AnalysisColorcube Analysis...ColorifyColorify Custom ColorColorifying...ColoringColormap RotationColormap _Rotation...ColorsColors:CombineComm_ent:Command:CommentComment:ComposeCompose ChannelsComposing 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: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 parametersCopy the active curve to the other borderCopy the texture of the selected paper as a backgroundCopy 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' 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...Delay inserted to prevent evil CPU-sucking anim.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. +%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 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 curveCreate bezier curve. Shift + Button ends object creation.Create circleCreate ellipseCreate guides...Create lineCreate new imageCreate reg polygonCreate spiralCreate starCreateDIBSection failedCreated with The GIMPCreating diffraction pattern...Cro_pCropping...Cu_rve:CubismCubistic Transformation...Cumulative layers (combine)Curl LayerCurl LocationCurl OrientationCurrent gradientCurrent gradient (reversed)Current:Curve BendCurve Bend...Curve TypeCurve for BorderCustom Color:Custom gradientCutCyanCyan:Cyan_KCylinderCylinder lengthCylinder radiusDCT method:DICOM imageD_eform amount:D_ivisor:DarkerDarker:Data CompressionData FormattingData formattingDate:DecomposeDecompose to _layersDecomposing...DefaultDefault 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 ModeDegree of slope of each piece's edgeDegreesDeinterlaceDeinterlace...Delay inserted to prevent evil CPU-sucking anim.DeleteDelete AreaDelete FractalDelete GFlareDelete PointDelete an objectDelete currently selected fractalDelete selected areaDelete selected smvectorDelete selected vectorDeletes the selected PresetDelta functionDelta function steppedDensity:Depth MergeDepth firstDepth map:Depth-merging...Deriving Smooth Palette...Des_peckle...Des_tripe...Description:Deselect _allDespeckleDestination channel:Destination color rangeDestination:DestripeDestriping...Deviation threshold:DiamondDifference of Gaussians...DifferentialDiffraction PatternsDiffuse:Diffusion dist.:Digital Imaging and Communications in Medicine imageDigitsDimension:DimensionsDimensions:DirectionDirection VectorDirectionalDirectional lightDirectionsDirections:DisplaceDisplacement map:Displacing...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:Dither size:DivisionDo _PreviewDo you really want to discard your changes?Do you really want to overwrite?DoG Edge DetectDocument not foundDraw 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 readingEXIF data will be ignored.E_levation:E_nable bump mappingE_nable environment mappingE_rodeE_xtendEach piece has curved sidesEach piece has straight sidesEdge AffectedEdge DetectionEdge Detection...Edge darken:EdgesEditEdit Area Info...Edit FlameEdit Map Info...Edit ObjectEdit area info...Edit fractal nameEdit map infoEdit selected area infoEditing read-only object - you will not be able to save itEffect ChannelEffect OperatorEmbossEn_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:EndPage failedEngraveEngraving...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 during open of FITS fileError during writing indexed/gray imageError 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 starting ghostscript: %sError trying to open temp file '%s'for parasite loading. +Error trying to save figure as a parasite: can't attach parasite to drawable. +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 distributedExp.:Export PreviewExtract ChannelsFG colorFITS file keeps no displayable imagesFITS save cannot handle images with alpha channelsF_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 artFeatherFileFile "%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 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: +Line %d Option section incorrectFile '%s' is not a FractalExplorer fileFile already existsFile not in a supported format.File 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 kFilmFilterFilter Pack SimulationFinding Animation Background...Finding Edges...Finding XY gradient...First Destination ColorFirst GfigFirst Source ColorFirst colorFix seedFixed-direction-vector map selection menuFlameFlame works only on RGB drawables.FlareFXFlexible Image Transport SystemFlipFloating-PointFlow Step %d...FlowingFo_reground colorFocus the brush strokes around the center of the imageForce baseline JPEGForegroundForeground / background colorsFractal ParametersFractal TraceFractal TypeFractal name:FractalExplorer GradientFractional PixelsFrame %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-SLIMEGEE-ZOOMGFLI 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 Windows Icon PluginGIMP 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_nteractiveIcon #%iIcon detailsIf 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 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 +and make a folder '%s', then you can save your own GFlares into that folder.GFlare EditorGIF OptionsGIF WarningGIF imageGIF: Undocumented GIF composite type %d is not handled. Animation might not play or re-save perfectly.GIMP ExtensionGIMP Help browserGIMP Plug-InGIMP Table MagicGIMP Windows Icon PluginGIMP brushGIMP brush (animated)GIMP brush file appears to be corrupted.GIMP brushes are either GRAYSCALE or RGBAGIMP compressed XJT imageGIMP patternG_lowG_reen threshold:Gamma:Gaussian BlurGaussian Blur...Gee-_SlimeGee-_ZoomGeneralGeneral OptionsGeneral PreferencesGeneral optionsGet sample colorsGfigGimp-Print Version GimpressionistGlass TileGlass Tile...Glow Paint OptionsGr_eyGrabGrab _AfterGrab a single windowGrab the whole screenGradientGradient Flare...Gradient Map...Gradient fillGradient map selection menuGradient 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 are pre-defined rectangles covering the image. You define them by their width, height, and spacing from each other. This allows you to rapidly create the most common image map type - image collection of "thumbnails", suitable for navigation bars.Guides...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' unknownHey where has the object gone ?High _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_ld the minimal channelsHo_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.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 _frequency:Hue _phaseshift:Hue:I don't careIDIFS FractalIFS Fractal Render OptionsIFS Fractal: BlackIFS Fractal: BlueIFS Fractal: GreenIFS Fractal: RedIFS Fractal: TargetITER:IWarpI_ntensityI_nteractiveI_nvert bumpmapI_nverted imageI_solateIcon #%iIcon detailsIf 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_ageImageImage / Output SettingsImage ComposingImage SelectionImage SizeImage TypesImage _Type:Image _height:Image dimensions: %d x %dImage is not a gray image (bpp=%d)Image 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 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:Merging...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: +(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 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 cycles covering full value rangeNumber 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 filteredPhase angle, range 0-360PhongPhotographPieces:Pixel _Height:Pixel _Width:PixelizePixelizing...PixelsPl_acementPlace strokes randomly around the imagePlacementPlanePlasmaPlasma...Play/StopPlease check your installation.PluralPointPolarPolarizePolarizing...PolygonPortraitPositionPosition the image on the page. +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") 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 objectShow/hide preview wireframeSi_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 +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 _luminosityPreserve the original image as a backgroundPreviewPreview SizePreview _size:Preview as You DragPrewittPrim'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...Probability Gradient:Procedure BrowserProcedure _BrowserProgressivePropagatePropagating Value ChannelPropagating _Alpha ChannelQbist ...Quality:R, G, B (normal)RGBRGB Save TypeRGBARGBA/GRAYA drawable is not selected.RLERLE compressionR_adius 2:R_adius:R_andom hue:R_andom seed:R_andomization (%):R_ecursiveR_edR_ed threshold:R_epeat:R_everseRadialRadial Gradient:RadiansRadians/PiRadiusRadius:Raise selected objectRaise selected object to topRando_m saturation:RandomRandom Hurl 1.7Random Pick 1.7Random Seed:Random Slur 1.7Random _seed:Random seedRandom sharedRandom, ch. independentRandomlyRandoms from seedRandoms from seed (shared)Range high:Range low:Ranks:RawRaw Image DataRaw Image LoaderRaw Image SaveRays Paint OptionsRe_centerRe_dReads the selected Preset into memoryRealtime PreviewRecompute CenterRecompute preview imageRectangleRedRed _frequency:Red _phaseshift:Red:Redness_cr470:Redness_cr470f:Redness_cr709:Redness_cr709f:RedoRedo last zoomRedrawRedraw previewReduce _LuminanceReduce _SaturationReflectivityRefresh the Preview windowRegular Polygon Number of SidesRelati_ve linkRelative probability:Released under the GNU General Public LicenseRelief:Remap Colorized...Remo_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...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)Retinex (4/4): updated...Retinex Image EnhancementRetinex...Retinex: Filtering...Return ValuesRevert to the original imageRewindRightRight 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:RoughnessRoundRunLength EncodedSUN Rasterfile imageSUNRAS save cannot handle images with alpha channelsSVG 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_tripedS_ubject:S_wapS_wirl CCWSa_ve alpha channel (RGBA/RGB)SameSample Analyze...Sample ColorizeSample _density:Sample:Samples the color from the pixel in the center of the brushSat_urationSatu_rationSaturationSaturation VariationsSaturation 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 Brush PipeSave 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 current settings to the specified fileSave 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 Flares Paint OptionsSecond Source ColorSecond colorSeconds DelaySeconds delaySeed of Random (only for "From Seed" Modes)Seed:Selec_tion In ContextSelectSelect AllSelect ColorSelect Film ColorSelect HTML fileSelect Image FileSelect NextSelect Number ColorSelect Palette File to LoadSelect Pixels bySelect PreviousSelect RegionSelect _AllSelect _allSelect allSelect an objectSelect contiguous regionSelect contiguous regionsSelect existing areaSelect folder and rescan collectionSelect lightsource colorSelect 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 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:Shape of Second FlaresSharp edgesSharpenSharpening...Shear:ShiftShift _amount:Shift _horizontallyShift _verticallyShifting...Should an Inverse Effect be done?Should the Luminosity be preserved?ShowShow Line FrameShow _Preview in image windowShow all objectsShow area URL _tipShow area _handlesShow colorShow control pointsShow gridShow imageShow next objectShow positionShow preview _wireframeShow previous objectShow selectionShow/hide preview wireframeSi_ngular:Sides:SierpinskiSilicon Graphics IRIS imageSimpleSin_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_th Palette...Smoo_thingSmoot_hSmooth PaletteSmooth samplesSmoothing X gradient...Smoothing Y gradient...Smoothing parametersSmoothing:Smoothness of AliasingSmvectorsSnap to gridSobelSobel Edge Detecting...Sobel Edge DetectionSobel _HorizontallySobel _VerticallySoftglowSolidSolid NoiseSolid Noise...Solid colored backgroundSolid colorsSome 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 channel in file:Source channel:Source color rangeSource...Sp_ike points:Sp_read...Spa_tial oversample:Spacing (percent):Spacing:SparkleSparkling...Spatial TransformationSpatial _filter radius:Specified 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 DesignerSphere _Designer...SphericalSpi_ke angle (-1: random):SpiderSpik_e density:Spike Thickness:SpiralSpiral Number of TurnsSpot Radius:SpotsSpreadSpread AmountSpreading...St_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 _HSVStretchBlt (hDC, %d, %d, %d, %d, hdcMem, %d, 0, %d, 1, SRCCOPY) failed, error = %d, y = %dStroke _density:StrongStyleSu_perNova...Subdivide:Subsampling:Substeps:SuperNovaSuperNova Color PickerSw_irl CWSwap the two curvesSwirlSwitch to "From seed" with the last seedSwitch to c/clockwiseSwitch to clockwiseSymbolTIFF ChannelTIFF imageTWAIN (Dump)...TWAIN (Read)...T_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 amount of highlighting on the edges of each pieceThe angle span of the first brush to createThe 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. @@ -246,19 +389,24 @@ You may choose whether to crop all of the layers to 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 thisTry Bounding BoxTurbulence: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: +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 offset can be adjusted by dragging the preview using the middle mouse button.The relative density of the brush strokesThe requested URL could not be loaded:The 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 starting angle of the first brush to createThe 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.This tool has no optionsThresho_ld:Threshold AlphaThreshold Alpha: Coloring Transparency...Threshold:Til_e spacing:TileTile _height:Tile _neatness:Tile _width:Tile source imageTile source image: useful for infinite planesTile to New SizeTileItTileableTiler...Tiling PrimitivesTiling...ToTo ColorTo _bottomTo _polarTo _rightTo _topTo l_eftTo:Tool optionsToolsTop edgeTop-_leftTop:Tr_ailingTransferring TWAIN data...Transformation %sTransparentTransparent backgroundTreat as thisTree ViewTry Bounding BoxTurbulence: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. +Unable to save '%s'. The psd file format does not support images that are more than 30000 pixels wide or tall.Unable to save '%s'. The psd file format does not support images with layers that are more than 30000 pixels wide or tall.Uncompressed size: %sUndoUndo last zoomUnitUnit EditorUnit factor must not be 0.UnitsUnits:Unknown color model in PNG file '%s'.Unknown reasonUnnamedUnrecognized or invalid BMP compression format.UnselectUnselect AllUnsharp MaskUnsupported 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 a transparent background; Only the strokes painted will be visibleUse 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 Invert...Value PropagateValue Propagating...Value VariationsValue:Van Gogh (LIC)Van Gogh (LIC)...Vector _Angle:Vector _Length:Vector mag:VectorsVer_tical base:VerticalVertical ColorVerticallyVery darkVi_deo...VideoVideo PatternVideo/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_SWMF file does not +specify a size!W_hirl and Pinch...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.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:WindWindowsWindows icons cannot be higher or wider than 255 pixels.With 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 +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...WhiteWi_nd...Width (pixels):Width of the paper that you wish to print toWidth:WindWindowsWindows BMP imageWindows icons cannot be higher or wider than 255 pixels.With 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 PixMap imageX scale (size)X window dumpX:XBM OptionsXJT file contains unknown layermode %dXJT file contains unknown pathtype %dXJT file contains unknown unittype %dXMAX:XMIN:XPM file invalidXWD-file %s has format %d, depth %d +and bits per pixel %d. +Currently this is not supported.XY position:X_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-plug-ins 2.0.0 +which has no alpha channel.Z scale (size)Z:ZSoft PCX imageZealousCropping(tm)...ZoomZoom inZoom in (make image bigger)Zoom outZoom out (make image smaller)Zoom scale:Zoom to_3x3_Abbreviation:_About ImageMap_Adaptive_Additive_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_Blinds..._Blue_Blue:_Blur_Blur radius:_Border Average..._Border:_Bottom-left_Bottom:_Box_Bright:_Brightness_Brightness:_Brush_Bucket size:_Bump Map_Bump Map..._Bump map:_Bumpmap_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 Merge..._Depth:_Derivative_Description:_Detail:_Diffraction Patterns..._Digits:_Dilate_Displace..._Displacement:_Distorted_Divisions:_Dots_Dynamic:_Edge enhancement_Edge..._Edit_Effect Image:_Elevation:_Emboss_Emboss..._Encapsulated PostScript_Entire Image_Environment Map_Explicit tile_Exponent:_FG/BG lighting_Factor:_Factory defaults_File_Filename:_Film..._Filter Pack..._Filter length:_Find Backdrop_Fit height to images_Flame..._FlareFX..._Font:_Force_Force tiling?_Foreground & background_Foreground color_Foreground to peaks_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_Hex_Hidden_High_Hold the maximal channels_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_Input SPI:_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)_Kill_LZW_Laplace_Large staggered_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 Seamless_Make surroundings transparent_Map backwards_Map type:_Mapping_Mask file extension:_Mask radius:_Mask size:_Material_Max (%):_Max Depth:_Max RGB..._Max. delta:_Maze..._Metallic_Middle value to peaks_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_Normal_Normalize_Number height:_Number of segments:_Opacity:_Optimize (Difference)_Pack Bits_Pagecurl..._Palette Type:_Paper Tile..._Parameters_Percent black:_Period:_Phase:_Photocopy..._Pick..._Pinch amount:_Ping Pong_Pitted surfaces_Pixelize..._Plasma..._Playback..._Plug-In Browser_Plural:_Polished:_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_Remove Backdrop_Rendering_Require default URL_Retain tilability_Retinex..._Right_Right Border_Ripple..._Rotated_Sample Colorize..._Saturation_Saturation:_Save comment to file_Save defaults_Scale division:_Scale:_Scatter RGB..._Screen Shot..._Search depth:_Search:_Second Flares_Selective Gaussian Blur..._Semi-Flatten_Sender:_Set surroundings to background color_Set surroundings to index 0_Settings_Shade under curl_Sharpen..._Sharpness:_Shift..._Shiny:_Show cursor_Sinus..._Size_Size:_Slur..._Small Tiles..._Smear_Smoothing:_Snap-To Grid Enabled_Sobel..._Softglow..._Solid Noise..._Sparkle..._Speed:_Spike length:_Spokes:_Spot function:_Square_Squares_Staggered_Strength:_Stretch Contrast_Stroke_Symbol:_TWAIN..._Target frame name/ID: (optional - used for FRAMES only)_Thickness:_Threshold_Threshold Alpha..._Threshold:_Tile bumpmap_Tile size:_Tile..._Title:_Tools_Top Start at:_Top-right_Top:_Transparent_URL to activate when this area is clicked: (required)_UnOptimize_Undo_Undo %s_Uniform_Unit Editor_Unsharp Mask..._Update_Upper_Upper Border_Upper threshold:_Use GLib types (guint8*)_Use background color_Use cellspan_Use double-sized grab handles_Use intensity algorithm_Use the (invisible) bottom layer as the base_Uuencode_Value_Value Invert_Value Propagate..._Value:_Van Gogh (LIC)..._Variation:_Vert. Spacing:_Vertical_Vertical style:_Vertical:_View_Voronoi_Warp_Warp..._Waterlevel:_Wavelength:_Waves..._Web Site_Whirl angle:_White_White level:_Wide-striped_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:_Zealous Crop_Zoom_Zoom:`Default' is created.a _Single Windowafteralphaautostretch_hsv: cmap was NULL! Quitting... +blackblueblueness_cb470blueness_cb470fblueness_cb709blueness_cb709fbzip archivec_astretch: cmap was NULL! Quitting... +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.0.0 Report-Msgid-Bugs-To: -POT-Creation-Date: 2005-02-22 23:04+0100 -PO-Revision-Date: 2004-04-16 20:58+0200 +POT-Creation-Date: 2005-04-09 21:56+0200 +PO-Revision-Date: 2005-02-24 20:58+0200 Last-Translator: Maxim Dziumanenko Language-Team: Ukrainian MIME-Version: 1.0 @@ -284,56 +432,68 @@ 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 - (помилкова висота!) (помилкова ширина!) рядків"Фіксована база" - це псевдонім. -Однакові бази створюють однакові зображення, якщо (1) ширина зображень однакова (з цієї причини зображення та його попередній перегляд відрізняються) і (2) швидкості всіх мутацій дорівнюють 0.Кількість плям:%d x %d%s -- Друк версії %sФайл "%s" пошкоджений. Рядок %d розділу параметрів неправильний"%s": не DICOM файлом"%s" не є файлом дослідника фракталів"%s": не є PCX файлом"%s" не є звичайним файлом"%s" не є правильним BMP файлом"%s" не є файлом градієнтного спалаху.'%s': + (помилкова висота!) (помилкова ширина!) стовпчиків у кожному шарі рядків"Фіксована база" - це псевдонім. +Однакові бази створюють однакові зображення, якщо (1) ширина зображень однакова (з цієї причини зображення та його попередній перегляд відрізняються) і (2) швидкості всіх мутацій дорівнюють 0.№Кількість плям:Кількість піддіапазонів:Кількість інтерфейсів доповнення: %d%d процедур%d x %d%s -- Друк версії %sФайл "%s" пошкоджений. Рядок %d розділу параметрів неправильний"%s": не DICOM файлом"%s" не є файлом дослідника фракталів"%s": не є PCX файлом"%s" не є звичайним файлом"%s" не є правильним BMP файлом"%s" не є файлом градієнтного спалаху.'%s': Не вдається прочитати заголовок (ftell == %ld)'%s': Не вказано тип даних зображення'%s': Не вказана висота зображення'%s': -Не вказана ширина зображення(Немає)1 біт/точку, 1-біт альфа-канал, 2-комірки палітри32 біт/точку, 8-біт альфа-канал, без палітри4 біта/точку, 1-біт альфа-канал, 16-комірок палітри8 біт/точку, 1-біт альфа-канал, 256-комірок палітри<Неназване>Довірче значення для адаптивного виділенняМенш застаріле творіння Адама Мосса / adam@gimp.org / adam@foxbox.org / 1998-2000Визначення одиниці буде збережено лише перед виходом з GIMP, якщо цей стовпчик відмічений._Текст ALT: (необов'язково)_Про програму_Додати_Додатково_Все_Альфа-навантаженняА_льфа:_Облягання:_Амплітуда:_Кут:_Анімувати_ДодатиА_втоматичноС_ереднє під пензлемСкороченняПро програмуПро Gimp-Print Дія_ДодатковоАдаптивнийДодати додаткові напрямніДодати контур дослідника фракталівДодати новий sm-векторДодати новий векторДодавання жалюзі...Додавання шахівниці...Додавання шуму...ДодаванняДодавати ефект тіні до кожного мазка пензлемДодає випадковий шум до кольоруКорегування балансу кольорів, контрасту, яскравості, насиченостіПідбір інтенсивності спалахуПідбір порогу яскравостіПідбір кількості променівПідбір непрозорості променяПідбір щільності променяПідбір довжини променівПідбір степені того як багато відтінку буде змінюватись випадковоПідбір степені того як багато насиченості буде змінюватись випадковоКорекція балансу бірюзового для друкуВизначає щільність (кількість чорнил) друку. Щільність треба зменшувати, якщо фарба розмазується чи просочується крізь папір, або збільшувати, якщо суцільні чорні ділянки не виглядають такими.Визначає гаму друку. Більші значення - світліший друк, менші - темніший. Чорні та білі ділянки залишаються такими самими, чого не досягнути визначенням яскравості.Корекція балансу пурпурного для друкуНалаштування яскравості переглядуПідбір насиченості (балансу кольорів) для друку -Використовуйте нульову насиченість для друку зображення у відтінках сірого з використанням кольорових та чорного чорнилКорекція балансу жовтого для друкуКорекція переднього плану/тлаДодаткові параметри набору фільтрівОброблюваний діапазон_ЧергуванняЧуже відображення 2Чуже відображення 2: Перетворення...Вирівнювання видимих шарівУсі JNGУсі PNGВсі значення є долями висоти плівкиВсе чорнеВсе сіреВсі текстові поля повинні містити значення.Все білеАльфаАльфа-каналиАльфа:Освітлення:Степінь фарбування власним кольором там куди не потрапляють прямі променіВеличина:Застаріле творіння Адама Мосса / adam@gimp.org / adam@foxbox.org / 1998-2000К_ут зсуву:Діапазон кутів:Кут:Кутовий градієнт:Кутовий розмір градієнта:Параметри анімаційного GIFЗгладжування контурівЯкість згладжування. Вища - краща, але повільніше виконуєтьсяВикористовувати папір як є (без надання йому рельєфу)ЗастосуватиЗастосування полотнаЗастосувати активний градієнт до кінцевого зображенняЗастосування полотна...Застосування згортанняЗастосовується лінза...Застосування набору фільтрів...Ви впевнені, що хочете видалити "%s" з списку та диску?Параметри ділянки #%dПараметри ділянкиДілянка:СтрілкаЯк вказано вищеASCIIПропорції:Складання головоломки...Асиметрія:_Автор:Автор:АвтоАвтозбільшення контрасту...Авторозтягування HSV...АвтоматичноДоступні зображення:Ч/БЗаміна BLANK/NaN точокЗадня частина:ТлоТло (%d%s)Колір тлаТип тлаТло:Неправильна мапа кольорівБарнслі 1Барнслі 2Бернслі 3Основний _URL:ЗгинНайбільш підходить для зображень з великими областями суцільного кольоруЗакруглені краї_БілінійнийЧорнийЧорний:Параметри змішуванняЖалюзіСинійСиній:Blueness_cb470:Blueness_cb470f:Blueness_cb709:Blueness_cb709f:Параметри розмиванняРадіус розмиванняТип розмиванняРозмивання...РамкаПошук середнього значення кольору...Розмір рамкиУсереднений колір рамки_ОбидваВ обох -напрямкахНижня межа:Низ:ПаралелепіпедЯскравість:ПереглядРельєфРельєфСтворення рельєфу...Рельєфза діапазоном значень данихДослідник CML: викується...CMYCMYKCX:CY:C_MYK_Камера_Підпис_Центр пензля_ЦентруванняВибрати:_КолоС_творити нове зображенняПере_хрещення_Викривлені_Бірюзовий_ЦиліндрПараметри обчисленняПідтримує роботу лише з RGB-зображеннями.Можливе лише збереження малюнків!"Криве згинання" діє лише на шарах (а був застосований для каналу чи маски)Не вдається створити нове зображенняНе вдається отримати дані з буферу обміну.Не можна виконувати дії із зображеннями невідомого типуНе вдається видалити! Повинен лишитись хоча б один градієнтний спалах.Неможливо виконувати дії з порожнім виділенням.Не застосовне до індексованих зображеньНе можна використовувати на індексованих зображенняхНе вдіється виконати дії з зображеннями невідомого типу.Не вдається прочитати розширення з "%s"Не вдається прочитати нижній колонтитул з "%s"Не вдається зберегти RGB-зображення як GIF - спершу перетворіть його в індексоване чи сіре.Не можна зберігати зображення с альфа-каналами.Не вдається зберегти зображення з альфа-каналами.ЦентрЦентр _X:Центр Y:Центр НадновоїЦентрувати зображення горизонтально на сторінціЦентрувати зображення на сторінціЦентрувати зображення вертикально на сторінціЦентр:ЦентруватиЗмінити порядок стрілокЗмінити значення CX (змінює пропорції фрактала, діє на всі фрактали крім Мандельюрота та СерпинськогоЗмінити значення CY (змінює пропорції фрактала, діє на всі фрактали крім Мандельюрота та СерпинськогоЗмінити кут вибраного sm-вектораЗміна кута вибраного вектораЗміна експоненти силиЗмінити обмеження першої (мінімальної) x-координатиЗмінити обмеження першої (мінімальної) y-координатиЗміна інтенсивності синього каналуЗміна інтенсивності зеленого каналуЗміна інтенсивності червоного каналуЗмінити кількість повторів обчислень. Чим вище, тем більше деталей вираховуватиметься, але це вимагатиме більше часуЗмінити кількість кольорів у відображенніЗмінити обмеження другої (максимальної) x-координатиЗмінити обмеження другої (максимальної) y-координатиЗмінити довжину вибраного sm-вектораЗміна довжини вибраного вектораЗмінити до цьогоЗмінити гаму (яскравість) вибраного пензляКанал %d:Мікшер каналівПопередження мікшера каналівПредставлення каналуКаналиТаблиця має підписШахівницяШахівницяВідмітка у цій графі, змусить GTM не лишати пробіли між тегами
та вмістом комірки. Це необхідно лише для регулювання положення на рівні точок растру.Виберіть фрактал подвійним клацанням на ньомуВиберіть більший степінь стиснення для отримання файлів меншого розміруВибір алгоритму змішування. +Не вказана ширина зображення(Немає)Кількість інтерфейсів доповнення: 11 процедура1 біт/точку, 1-біт альфа-канал, 2-комірки палітри32 біт/точку, 8-біт альфа-канал, без палітри4 біта/точку, 1-біт альфа-канал, 16-комірок палітри8 біт/точку, 1-біт альфа-канал, 256-комірок палітри<Неназване>Довірче значення для адаптивного виділенняМенш застаріле творіння Адама D. Мосса / adam@gimp.org / adam@foxbox.org / 1998-2000Визначення одиниці буде збережено лише перед виходом з GIMP, якщо цей стовпчик відмічений.ALT текст_Текст ALT: (необов'язково)ASCII art_Про програмуАдап_тивна інтерполяціяД_одати_Додати рамку_Додатково_Все_усіх секторівАльфа-_навантаженняА_льфа:_Облягання:_Величина:_Амплітуда:_Кут:_Анімувати_Додати_Автооновлення переглядуА_втоматичноС_ереднє під пензлемСкороченняПро програмуПро Gimp-Print ДіяД_одатковоАдаптивнийАдаптивна с_упервибіркаДодати додаткові напрямніДодати контур дослідника фракталівДодати новий sm-векторДодати новий векторДодавання жалюзі...Додавання шахівниці...Додавання шуму...ДодаванняДодаткова інформаціяДодавати ефект тіні до кожного мазка пензлемДодає випадковий шум до кольоруСкорегувати _FG-BGКорегування балансу кольорів, контрасту, яскравості, насиченостіКорегування виводу...Підбір інтенсивності спалахуПідбір порогу яскравостіПідбір кількості променівПідбір непрозорості променяПідбір кута променя (-1 означає вибір випадкового кута)Підбір щільності променяПідбір довжини променівПідбір степені того як багато відтінку буде змінюватись випадковоПідбір степені того як багато насиченості буде змінюватись випадковоКорекція балансу бірюзового для друкуВизначає щільність (кількість чорнил) друку. Щільність треба зменшувати, якщо фарба розмазується чи просочується крізь папір, або збільшувати, якщо суцільні чорні ділянки не виглядають такими.Визначає гаму друку. Більші значення - світліший друк, менші - темніший. Чорні та білі ділянки залишаються такими самими, чого не досягнути визначенням яскравості.Корекція балансу пурпурного для друкуНалаштовування яскравості переглядуПідбір насиченості (балансу кольорів) для друку +Використовуйте нульову насиченість для друку зображення у відтінках сірого з використанням кольорових та чорного чорнилКорекція балансу жовтого для друкуКорекція переднього плану/тлаДодаткові параметри набору фільтрівДодаткові параметриОброблюваний діапазонАгресивне RLE +(Не підтримується SGI)_Чергуваннякожного д_ругого секторуПсевдонім|зображення Wavefront PIXЧуже відображення _2...Чуже відображення 2Чуже відображення 2: Перетворення...Вирівнювання видимих шарівВирівнювання _видимих шарівУсі JNGУсі PNGВсі значення є долями висоти плівкиВсе чорнеВсе сіреВсі текстові поля повинні містити значення.Все білеДозволити роз_бивати елементиАльфаАльфа-каналиАльфа:Освітлення:Степінь фарбування власним кольором там куди не потрапляють прямі променіВеличина:Застаріле творіння Адама Мосса / adam@gimp.org / adam@foxbox.org / 1998-2000К_ут зсуву:Діапазон кутів:Кут:Кутовий градієнт:Кутовий розмір градієнта:Параметри анімаційного GIFПараметри анімаційного MNGВідтворення анімації:Згладжування контурівЯкість згладжування. Вища - краща, але повільніше виконуєтьсяВикористовувати папір як є (без надання йому рельєфу)ЗастосуватиЗастосування полотнаЗастосувати _лінзу...Застосувати активний градієнт до кінцевого зображенняЗастосування полотна...Застосування згортанняЗастосовується лінза...Застосування набору фільтрів...Ви впевнені, що хочете видалити "%s" з списку та диску?Параметри ділянки #%dПараметри ділянкиСписок ділянокДілянка:СтрілкаЯк вказано вищеASCIIПропорції:Складання головоломки...Асиметрія:З_низуЗв_ерху_Автор:Автор:АвтоАвтозбільшення контрасту...Авторозтягування HSV...Анімація AutoDesk FLICАвтоматично_Автоматичний переглядДоступні зображення:B, G, R, X (у стилі bmp)Ч/БЗаміна BLANK/NaN точок_Чорна складова (%):Поріг _синього:Колір т_лаЗадня частина:ТлоТло (%d%s)Колір тлаТип тлаТло:Неправильна мапа кольорівБарнслі 1Барнслі 2Бернслі 3Основний _URL:Основні параметриЗгинНайбільш підходить для зображень з великими областями суцільного кольоруЗакруглені краї_Білінійний_Чорний та білийЧорнийЧорно-білийЧорний:Параметри змішуванняЖалюзіСинійЧа_стота синього:Фаз_овий зсув синього:Синій:Blueness_cb470:Blueness_cb470f:Blueness_cb709:Blueness_cb709f:Центр розмиванняТип розмиванняПараметри розмиванняРадіус розмиванняТип розмиванняРозмивання...РамкаПошук середнього значення кольору...Розмір рамкиУсереднений колір рамки_ОбидваВ обох +напрямкахНижня межа:Нижній крайЗнизу сп_раваНиз:ПаралелепіпедЯскравість:ПереглядРельєфРельєфСтворення рельєфу..._Зображення рельєфу:Рельєфза діапазоном значень данихпрограма на CЗаголовок програми на СДослідник CML: Перезаписати файл?Досл_ідник CML...Дослідник_CML: викується...CMYCMYKCX:CY:C_MYK_Камера_ПідписВ_міст комірки:Розмір _комірки:_Центр пензля_Центрування_Вибрати:_Коло_Компонування...С_творити нове зображенняПере_хрещення_Викривлені_Бірюзовий_Циліндр_Картон...Параметри обчисленняПідтримує роботу лише з RGB-зображеннями.Можливе лише збереження малюнків!"Криве згинання" діє лише на шарах (а був застосований для каналу чи маски)Не вдається створити нове зображенняНе вдається отримати дані з буферу обміну.Не можна виконувати дії із зображеннями невідомого типуНе вдається зчитати записи кольорівНе вдається видалити! Повинен лишитись хоча б один градієнтний спалах.Неможливо виконувати дії з порожнім виділенням.Не застосовне до індексованих зображень.Не можна використовувати на індексованих зображенняхНе можна використовувати на індексованих зображенняхНе вдіється виконати дії з зображеннями невідомого типу.Не вдається прочитати розширення з "%s"Не вдається прочитати нижній колонтитул з "%s"Не вдається зберегти RGB-зображення як GIF - спершу перетворіть його в індексоване чи сіре.Не можна зберігати зображення с альфа-каналами.Не вдається зберегти зображення з альфа-каналами._КартонРозмір комірки:_Заповнення комірки:_Інтервал між комірками:ЦентрЦентр _X:Центр _Y:Центр ефекту відблискуЦентр НадновоїЦентрувати зображення горизонтально на сторінціЦентрувати зображення на сторінціЦентрувати зображення вертикально на сторінціЦентр:ЦентруватиЧутливість каналу:Змінити порядок стрілокЗмінити значення CX (змінює пропорції фрактала, діє на всі фрактали крім Мандельюрота та СерпинськогоЗмінити значення CY (змінює пропорції фрактала, діє на всі фрактали крім Мандельюрота та СерпинськогоЗмінити кут вибраного sm-вектораЗміна кута вибраного вектораЗміна експоненти силиЗмінити обмеження першої (мінімальної) x-координатиЗмінити обмеження першої (мінімальної) y-координатиЗміна інтенсивності синього каналуЗміна інтенсивності зеленого каналуЗміна інтенсивності червоного каналуЗмінити кількість повторів обчислень. Чим вище, тем більше деталей вираховуватиметься, але це вимагатиме більше часуЗмінити кількість кольорів у відображенніЗмінити обмеження другої (максимальної) x-координатиЗмінити обмеження другої (максимальної) y-координатиЗмінити довжину вибраного sm-вектораЗміна довжини вибраного вектораЗмінити до цьогоЗмінити гаму (яскравість) вибраного пензляКанал %d:Незалежні від каналу параметриМік_шер каналів...Мікшер каналівПопередження мікшера каналівПредставлення каналуКаналиТаблиця має підписШахівницяШахівницяВідмітка у цій графі, змусить GTM не лишати пробіли між тегами та вмістом комірки. Це необхідно лише для регулювання положення на рівні точок растру.Виберіть фрактал подвійним клацанням на ньомуВиберіть файл PPDВиберіть більший степінь стиснення для отримання файлів меншого розміруВкажіть PPD файл для вашого принтераВибір алгоритму змішування. "Адаптивно-гібридний" зазвичай дає найкращу якість друку. "Впорядкований" швидший та дає майже таку саму якість як фотографії. "Швидкий" та "Дуже швидкий" значно швидші, та добре підходять для тексту та малюнків лініями. -"Гібридний за Флойдом-Стейнбергом" зазвичай дає гіршу якість.Виберіть модель принтера, файл PPD, та команду, яка буде використовуватись для цього принтераКолоОчищення...ОчиститиЗакривати криву на завершенніЗакрита_Колір_Колір:_Кольори_Коментар:_Складність:С_тискати теги TD_Замкнута ділянка_Контраст:Ст_овпчик:ЗібратиКолірЩільність кольоруПідсилення кольору...Заміна кольоруЗаміна кольору...Заміна кольору: З кольоруЗаміна кольору: В колірФункція кольоруРежим кольоруВікно вибору кольоруПеретворення кольорівКольоровий _шум:Колір обчислюється як середнє віх точок під пензлемКольоровий друкКолір у альфа-каналКолір у альфа: зміна кольору_Мапа кольорів:Кольоровий аналіз зображенняКольоровий аналіз зображення...ФарбуванняФарбування вибраним кольоромФарбування...ФарбуванняОбертання мапи кольорівКольориКольори:Об'єднати_Коментар:Команда:КоментарКоментар:СкластиСкласти каналиЗбирання зображень...Компонування...Складання:Розмір стиснутого файлу: %sТип стисненняСтупінь стиснення (прибл.): %d до 1ПропорціїСтворення лабіринту використовуючи алгоритм Prim...Конструювання розсіченого лабіринту з використанням алгоритму Prim...КонтекстБезперервний градієнт без прогалинБезперервний градієнтБезперервне оновленняКонтраст:КеруванняКерує тип наскільки інтенсивними будуть відблискиСперш перетворіть зображення у RGB!Матриця згортанняМатриця згортання не працює з шарами меншими ніж три точки.ЗгортанняКопіюватиКопіювання градієнтного спалахуСкопіювати настройкиКопіювати об'єктКопіювати активну криву на інший крайСкопіювати текстуру з вибраного паперу як тлоКопіювання IFS у зображення (%d/%d)...Копіювання...Авторські права:КосинусНе вдається створити робочий каталог "%s": %sНе вдається виконати вказаний веб-переглядач: +"Гібридний за Флойдом-Стейнбергом" зазвичай дає гіршу якість.Виберіть модель принтера, файл PPD, та команду, яка буде використовуватись для цього принтераКолоГ_либина кола у відсотках:Очищення...ОчиститиОчистити прозореЗакривати криву на завершенніЗакрита_Колір_Усереднення кольору_Колір:К_ольори_Коментар:_Компенсувати затемненняСк_ладність:С_тискати теги TDРівень ст_иснення:_Замкнута ділянка_Контраст:_Корельований шумСт_овпчик:ЗібратиКолірЩільність кольоруПідсилення кольору...Заміна кольоруЗаміна кольору...Заміна кольору: З кольоруЗаміна кольору: В колірФункція кольоруРежим кольору_Мапа заміни кольору...Вікно вибору кольоруПеретворення кольорівКольоровий _шум:В_аріації кольорів:КолірКолір обчислюється як середнє віх точок під пензлемКольоровий друкКолір у альфа-каналКолір у альфа: зміна кольоруКолір у _альфа-канал...Колір:_Мапа кольорів:К_ольоровий аналіз зображення...Кольоровий аналіз зображенняКольоровий аналіз зображення...ФарбуванняФарбування вибраним кольоромФарбування...ФарбуванняОбертання мапи кольорів_Обертання мапи кольорів...КольориКольори:Об'єднати_Коментар:Команда:КоментарКоментар:СкластиСкласти каналиЗбирання зображень...Компонування...Складання:Розмір стиснутого файлу: %sТип стисненняСтупінь стиснення (прибл.): %d до 1Тип стисненняПропорціїСтворення лабіринту використовуючи алгоритм Prim...Конструювання розсіченого лабіринту з використанням алгоритму Prim...КонтекстБезперервний градієнт без прогалинБезперервний градієнтБезперервне оновлення_КонтуриКонтраст:КеруванняКерує тип наскільки інтенсивними будуть відблискиСперш перетворіть зображення у RGB!Матриця згортанняМатриця згортання не працює з шарами меншими ніж три точки.ЗгортанняКопіюватиКопіювання градієнтного спалахуСкопіювати параметриКопіювати об'єктСкопіювати параметриКопіювати активну криву на інший крайСкопіювати текстуру з вибраного паперу як тлоКопіювати у буфер обмінуКопіювання IFS у зображення (%d/%d)...Копіювання...Авторські права(c) 1999-2004 Maurits RijkАвторські права:КосинусНе вдається створити робочий каталог "%s": %sНе вдається виконати вказаний веб-переглядач: %sНе вдається отримати шари зображення %dНе вдається інтерпретувати файл "%s"Не вдається завантажити типові параметри PNGНе вдається відкрити "%s" як SUN-rasterНе вдається відкрити "%s" для читання.Не вдається відкрити файл '%s' для читання: %sНе вдається відкрити файл "%s" на запис.Не вдається відкрити файл "%s" для записування: %sНе вдається розібрати команду вказаного веб-переглядача: -%sНе вдається прочитати XWD заголовок з "%s"Не вдається зчитати записи кольорів з "%s"Не вдається зчитати заголовок з "%s"Не вдається записати у файл '%s': %sНе вдається завантажити один пензель з послідовності.Не вдається зберегти прозорість, натомість буде збережено непрозорість.Не вдається зчитати файл:Не вдається зберегти файл:Не вдається зберегти файл ресурсів: Неможливе подальше зменшення кольорів. Зберігається як непрозоре.Дослідник Coupled-Map-LatticeСтворитиСтворити напрямніСтворити відображення кольорів використовуючи градієнт з редактора градієнтівСтворити відображення кольорів із вказаними вище параметрами (щільність кольорів/функція). Результат демонструється у вікні перегляду.Створювати нове зображення на застосуванні фільтруСтворити нову одиницюСтворити криву Без'є. Shift + Кнопка миші завершує створення об'єкту.Створити колоСтворити еліпсСтворити лініюСтворити правильний багатокутниктворити спіральСтворити зіркуПомилка у CreateDIBSectionСтворено в GIMPСтворення дифракційних візерунків..._ОбрізатиКадрування..._Крива:КубізмШар загинуРозміщення загинуОрієнтація загинуПоточне:Криве згинанняЗгин кривої...Тип кривоїКрива для краюВибраний колір:ВирізатиБлакитнийБлакитний:Блакитний_KЦиліндрДовжина циліндраРадіус циліндра_Дільник:ТемнішеТемніше:Стиснення данихФорматування данихДата:РозкладанняРозкладання...ТиповийТиповий тип мапиТиповий _URL:Визначити круглу/овальну ділянкуВизначення нового принтераВизначити багатокутну ділянкуВизначити прямокутну ділянкуВкажіть новий логічний принтер. Він являє собою назву для набору параметрів друку.Режим деформаціїКут нахилу краю кожного елементуГрадусиПрибирання черезрядковостіПрибирання черезрядковісті...Передбачена затримка для запобігання перевантаження процесора складною анімацією.ВидалитиВидалити ділянкуВидалення фракталаВидалення градієнтного спалахуВидалити точкуВидалити об'єктСтерти вибраний фракталВидалити виділену ділянкуВидалити вибраний sm-векторВидалити вибраний векторВидалити вибрані параметриДельта-функціяПокрокова дельта-функціяЩільність:Об'єднання глибинОб'єднання глибин...Отримання гладкої палітриОпис:Прибирання плямЦільовий діапазон кольорівПризначення:Прибирання штрихівПрибирання штрихів...Межа відхилення:РомбДифракційні візерункиДифузія:ЦифриРозмір:РозміриРозміри:НапрямокНапрямок вектораНапрямленеНапрямкиНапрямки:ЗміщенняЗміщення...Показати як:Відстань від нижньої межі паперу до зображенняВідстань від лівої межі паперу до зображенняВідстань від лівої межі паперу до правого краю зображенняВідстань від правої межі паперу до зображенняВідстань від верхньої межі паперу до нижнього краю зображенняВідстань від верхньої межі паперу до зображенняАлгоритм змішування:Ділення_Попередній переглядВи справді хочете відмовитись від змін?Намалювати рамку з променів навколо зображенняМалюнки мають різний розмірМалювання полум'я...Малювання сітки...Малювання лабіринту...Параметри малюнкаНамалювати лінію між контрольними точками. Лише при створенні кривої.Відкинути тіньНеочікуваний кінець файлу на зчитуванні_Підвищення:_РозширюватиКожен елемент має викривлені сторониКожен елемент має прямі сторониЗахоплюються країВиділення межВиділення меж...Темні краї:КраїПравкаПравка інформації про ділянку...Правка полум'яПравка інформації про мапу...Правка об'єктуПравка назви фракталаПравка інформації про вибрану ділянкуВиправлення об'єкту лише для зчитування - ви не зможете зберегти йогоКанал ефектуОператор ефектуЧеканкаУвімкнути/вимкнути рельєфне перетворення (глибина зображення)Увімкнути/вимкнути відображення середовища (відбивання)Увімкнути/вимкнути високоякісний попередній переглядУвімкнути/вимкнути усунення нерівних країв (згладжування)Увімкнути/вимкнути попередній перегляд у реальному часіКодування даних:Неправильна кінцева сторінкаГравюраСтворення гравюри...Введіть назву градієнтного спалахуВведіть назву нового градієнтного спалахуВведіть назву логічного принтераВесь шарЗображення середовищаПомилка при відкриванні файлу FITSПомилка за запису RGB-зображенняПомилка при захопленні знімкуПомилка у файлі пензля GIMP "%s".Помилка у файлі пензля GIMP.Помилка отримання ідентифікатора шаруПомилка при отриманні знімка екрануПомилка відкривання файлуПомилка відкривання файлу "%s"Помилка зчитування заголовку BMP-файлу з '%s'Помилка зчитування файлуПомилка запуску ghostscript (%s)Помилка при читанні "%s". Файл пошкоджений?Помилка при збереженні "%s". Не вдається зберегти зображення.Помилка запису у файл виводу.Помилка: не вдається прочитати файл властивостей XJT "%s"Помилка: файл властивостей XJT "%s" порожній.Помилка: не вдається завантажити параметриПомилка: це не файл параметрів CML.Рівномірний розподілПерегляд файлу для експортуФайл FITS не містить зображень, які можна відобразитиЗбереження FITS не може обробити зображення з альфа-каналами_Файл_Перший колір:МножникНе вдається сформувати файл град.спалаху: "%s": %sНе вдається зберегти файл "%s": %sНе вдається записати файл град.спалаху '%s': %sШвидке цілеСамий швидкий та яскравий - для тексту та штрихових малюнківПероФайлФайл "%s" збережено.Файл "%s" вже існує. +%sНе вдається прочитати XWD заголовок з "%s"Не вдається зчитати записи кольорів з "%s"Не вдається зчитати заголовок з "%s"Не вдається записати у файл '%s': %sНе вдається завантажити один пензель з послідовності.Не вдається зберегти прозорість, натомість буде збережено непрозорість.Не вдається зчитати файл:Не вдається зберегти файл:Не вдається зберегти файл ресурсів: Неможливе подальше зменшення кольорів. Зберігається як непрозоре.Дослідник Coupled-Map-LatticeС_творити нове зображенняСтворитиСтворити напрямніСтворити _новий шарСтворити г_істограмуСтворити відображення кольорів використовуючи градієнт з редактора градієнтівСтворити відображення кольорів із вказаними вище параметрами (щільність кольорів/функція). Результат демонструється у вікні перегляду.Створювати нове зображення на застосуванні фільтруСтворити нову одиницюСтворити нову одиницю використовуючи вибрану як шаблон.Створити дугуСтворити криву Без'єСтворити криву Без'є. Shift + Кнопка миші завершує створення об'єкту.Створити колоСтворити еліпсСтворити напрямні...Створити лініюСтворити нове зображенняСтворити правильний багатокутниктворити спіральСтворити зіркуПомилка у CreateDIBSectionСтворено в GIMPСтворення дифракційних візерунків..._ОбрізатиКадрування...К_рива:КубізмКубістичне перетворенняНакладання шарів (об'єднання)Шар загинуРозміщення загинуОрієнтація загинуПоточний градієнтПоточний градієнт (реверсний)Поточне:Криве згинанняКриве згинання...Тип кривоїКрива для краюВибраний колір:Власний градієнтВирізатиБлакитнийБлакитний:Блакитний_KЦиліндрДовжина циліндраРадіус циліндраDCT метод:Зображення DICOMСтепінь д_еформації:Ді_льник:ТемнішеТемніше:Стиснення данихФорматування данихФорматування данихДата:РозкладанняРозкласти на _шариРозкладання...ТиповийТиповий тип мапиТиповий _URL:Типовий тип сегментів:Типова затримка кадру:Типове розташування кадру:Визначити круглу/овальну ділянкуВизначення нового принтераВизначити багатокутну ділянкуВизначити прямокутну ділянкуВкажіть новий логічний принтер. Він являє собою назву для набору параметрів друку.Режим деформаціїКут нахилу краю кожного елементуГрадусиПрибирання черезрядковостіПрибирання черезрядковісті...Передбачена затримка для запобігання перевантаження процесора складною анімацією.ВидалитиВидалити ділянкуВидалення фракталаВидалення градієнтного спалахуВидалити точкуВидалити об'єктСтерти вибраний фракталВидалити виділену ділянкуВидалити вибраний sm-векторВидалити вибраний векторВидалити вибрані параметриДельта-функціяПокрокова дельта-функціяЩільність:Об'єднання глибинПереважно в глибинуМапа глибин:Об'єднання глибин...Отримання гладкої палітриПрибирання _плям...Прибирання _штрихів...Опис:З_няти виділенняПрибирання плямЦільовий канал:Цільовий діапазон кольорівПризначення:Прибирання штрихівПрибирання штрихів...Межа відхилення:РомбВибіркове Гаусеве розмивання...ДиференційнийДифракційні візерункиДифузія:Дистанція дифузії:Цифрова медична фотографія та зв'язок (DICOM)ЦифриРозмір:РозміриРозміри:НапрямокНапрямок вектораНапрямленеНапрямлене світлоНапрямкиНапрямки:ЗміщенняМапа заміщення:Зміщення...Показати як:Відстань від нижньої межі паперу до зображенняВідстань від лівої межі паперу до зображенняВідстань від лівої межі паперу до правого краю зображенняВідстань від правої межі паперу до зображенняВідстань від верхньої межі паперу до нижнього краю зображенняВідстань від верхньої межі паперу до зображенняАлгоритм змішування:Розмір змішування:Ділення_Попередній переглядВи справді хочете відмовитись від змін?Ви справді хочете його переписати?Виділення меж DoGДокумент не знайденоНамалювати рамку з променів навколо зображенняМалюнки мають різний розмірМалювання полум'я...Малювання сітки...Малювання лабіринту...Параметри малюнкаНамалювати лінію між контрольними точками. Лише при створенні кривої.Відкинути тіньНеочікуваний кінець файлу на зчитуванніEXIF дані ігноруються._Підвищення:_Увімкнути рельєфне відображення_Увімкнути відображення середовища_Ерозія_РозширюватиКожен елемент має викривлені сторониКожен елемент має прямі сторониЗахоплюються країВиділення межВиділення меж...Темні краї:КраїПравкаПравка інформації про ділянку...Правка полум'яПравка інформації про мапу...Правка об'єктуПравка інформації про ділянку...Правка назви фракталаПравка інформації про мапуПравка інформації про вибрану ділянкуВиправлення об'єкту лише для зчитування - ви не зможете зберегти йогоКанал ефектуОператор ефектуЧеканкаГ_равюра..._Зображення середовища:Увімкнути _згладжуванняУвімкнути/вимкнути рельєфне перетворення (глибина зображення)Увімкнути/вимкнути відображення середовища (відбивання)Увімкнути/вимкнути високоякісний попередній переглядУвімкнути/вимкнути усунення нерівних країв (згладжування)Увімкнути/вимкнути попередній перегляд у реальному часіЗображення Encapsulated PostScriptКодування даних:Неправильна кінцева сторінкаГравюраСтворення гравюри...Введіть назву градієнтного спалахуВведіть назву нового градієнтного спалахуВвід назву файлу PPD для вашого принтераВкажіть команду друку на вашому принтері. Увага: не прибирайте +`-l' чи `-oraw' з командного рядка, у цьому випадку друк може працювати некоректно.Введіть назву логічного принтераВесь шарЧутливість середовища:Зображення середовищаПомилка при відкриванні файлу FITSПомилка за запису індексованого/сірого зображенняПомилка за запису RGB-зображенняПомилка при захопленні знімкуПомилка у файлі пензля GIMP "%s".Помилка у файлі пензля GIMP.Помилка отримання ідентифікатора шаруПомилка при отриманні знімка екрануПомилка відкривання файлуПомилка відкривання файлу "%s"Помилка зчитування заголовку BMP-файлу з '%s'Помилка зчитування файлуПомилка запуску ghostscript (%s)Помилка запуску ghostscript (%s)Помилка при відкриванні тимчасового файлу '%s' для завантаження шуму. +Помилка при збереженні фігури як шуму: не вдається приєднати шум до малюнка. +Помилка при читанні "%s". Файл пошкоджений?Помилка при збереженні "%s". Не вдається зберегти зображення.Помилка запису у файл виводу.Помилка: не вдається прочитати файл властивостей XJT "%s"Помилка: файл властивостей XJT "%s" порожній.Помилка: не вдається завантажити параметриПомилка: це не файл параметрів CML.Рівномірний розподілРозш.:Перегляд файлу для експортуДобути каналиКолір переднього плануФайл FITS не містить зображень, які можна відобразитиЗбереження FITS не може обробити зображення з альфа-каналами_ФайлП_ерший колір:Інтенсивність _спалаху:МножникНе вдається сформувати файл град.спалаху: "%s": %sНе вдається зберегти файл "%s": %sНе вдається записати файл град.спалаху '%s': %sШвидке цілеСамий швидкий та яскравий - для тексту та штрихових малюнківПероФайлФайл "%s" збережено.Файл "%s" не є файлом IFS-фракталу.Файл "%s" вже існує. Перезаписати?Файл "%s" зіпсовано. -Рядок %d розділу параметрів невірнийФайл "%s" не є файлом дослідника фракталівФайл має непідтримуваний формат.Назва файлу:Назва файлу: %sЗаповнити (знизу догори)Заповнити (зліва направо)Заповнити (справа наліво)Заповнити (згори донизу)Заповнити з параметром kПлівкаФільтрМоделювання набору фільтрівПошук тла анімації...Пошук країв...Пошук XY градієнта...Перший цільовий колірПерший GfigКолір першого джерелаМеню вибору мапи векторів з фіксованими напрямкамиПолум'яПолум'я діє лише на RGB-зображення.ВідблискВіддзеркаленняЗ рухомою комоюПоточний крок %d...ПлаваючийЗосередити мазки навколо центру зображенняПередній планПараметри фракталаФрактальний слідТип фракталуНазва фрактала:Градієнт дослідника фракталівДробові точкиКадр %dКадр %d (%d%s)Кадр %d з %dКадр (%i)ЗЗ кольоруЗ паперуЗ:Передня частина:ПовнийФункціяВиділення вільної областіG-QбістКовзанняGFLI 1.3 - Завантаження стопки кадрівGFLI 1.3 - Збереження стопки кадрівГрадієнтний спалахФайл GFlare '%s' не збережено. +Рядок %d розділу параметрів невірнийФайл "%s" не є файлом дослідника фракталівФайл вже існує!Файл має непідтримуваний формат.Розмір файлу: %02.01f кбРозмір файлу: невідомоНазва файлу:Назва файлу: %sЗаповненняЗаповнити (знизу догори)Заповнити (зліва направо)Заповнити (справа наліво)Заповнити (згори донизу)Заповнити з параметром kПлівкаФільтрМоделювання набору фільтрівПошук тла анімації...Пошук країв...Пошук XY градієнта...Перший цільовий колірПерший GfigКолір першого джерелаПерший колірФіксована базаМеню вибору мапи векторів з фіксованими напрямкамиПолум'яПолум'я діє лише на RGB-зображення.ВідблискГнучка система передавання зображень (FITS)ВіддзеркаленняЗ рухомою комоюПоточний крок %d...ПлаваючийКолір п_ереднього плануЗосередити мазки навколо центру зображенняПримусова база JPEGПередній планКольори переднього плану та тлаПараметри фракталаФрактальний слідТип фракталуНазва фрактала:Градієнт дослідника фракталівДробові точкиКадр %dКадр %d (%d%s)Кадр %d з %dКадр (%i)Розміщення кадру де не вказано:ЧастотиЧастота (рядки):ЗЗ буфераЗ кольоруЗ градієнтуЗ паперуЗ оберненого градієнтаЗ:Передня частина:ПовнийФункціяТип функції:Виділення вільної областіG-QбістЗображення G3 fax КовзанняGEE-МАСШТАБGFLI 1.3 - Завантаження стопки кадрівGFLI 1.3 - Збереження стопки кадрівГрадієнтний спалахФайл GFlare '%s' не збережено. Якщо ви додасте новий запис у %s, наприклад: (gflare-path "%s") та створите папку %s, -то зможете зберігати створені вами файли GFlare у цій теці.Редактор градієнтних спалахівПараметри GIFПопередження GIFGIF: Недокументований тип композиції %d. Можливо, анімація не буде відтворюватись чи не збережеться коректно.Розширення GIMPДоповнення GIMPТаблична магія GIMPДоповнення GIMP значків WindowsСхоже файл пензля пошкоджений.Пензлі GIMP або у відтінках сірого або RGBAСя_йвоГама:Загальні параметриЗагальні параметриGfigВерсія Gimp-PrintGIMPімпресіоністСкляна плиткаСкляна плитка...Параметри малювання сяйваС_ірийЗнятиЗробити знімок черезЗняти одне вікноЗахопити весь екранГрадієнтГрадієнтний спалах...Градієнтна мапа...Меню вибору градієнтної мапиГрадієнтиГрафік поточних настройокСірийВідтінки сірогоЗеленийЗелений:СірийСіткаЗернистість сіткиЗміщення сіткиПараметри сіткиПараметри сітки...Тип та видимість сіткиІнтервал сітки:НапрямніНапрямні...Гільйотина...HSVПараметри HTML-сторінки_Відблиски:Від_блиски_Відтінок:_Відтінок:_ШестикутникиВисота паперу для друкуВисота:Невідомий ID у системі довідки - "%s"Гей, куди подівся об'єкт?Підвищення значень підсилює ефектПідвищення цього значення робить відблиски більш різкимиПідвищення значень змушує об'єкт відбивати більше світла (здається світлішим)Підвищення значень обмежує ефект меншими ділянками зображенняВідблиски:Відблиски:ГоризонтальнаКолір горизонталейГоризонтальноПідковаГарячіГарячі кольори...Скільки одиниць припадає на дюйм.Наскільки "темною" буде тіньЯк сильно "затемнені" краї у кожного мазка пензлемЯк сильно розмивати тіньВідтінокОбертання відтінку:Варіанти відтінкуВідтінок:ІдентифікаторІтер:Інтерактивне спотворення_Інтенсивність_ІнтерактивноЗначок #%iПодробиці значкаДодати в документ теги , та інші, а не лише ті, що стосуються таблиці.Заміняти будь-які прямокутні секції однакового кольору на одну більшу комірку із значеннями ROWSPAN і COLSPAN.Якщо відмічено, відображення розпочнеться з правої сторони, в іншому випадку - з лівої.Якщо не відмічено, то зображення буде відображене у прямокутник. Якщо відмічено - тоді у коло.Якщо не відмічено, то нижня сторона буде розміщена у центрі, а верхня - назовні. Якщо відмічено - навпаки.Більш яскраві кольори замінювати на менш яскраві та навпакиЯкщо ви виберете цей варіант - перегляд буде оновлюватись автоматичноІлюзіяІлюзія..._ЗображенняЗображення/Параметри виводуСкладання зображенняВибір зображенняРозмір зображенняРозміри зображення: %d x %dЗображення не у відтінках сірого (bpp=%d)Назва зображення:Розмір зображення змінено.Зображення для основного циліндраЗображення мають різний розмірІмпортувати елементи з контуру SVG, так, щоб вони могли використовуватись інструментом "Контури"_ІнверсіяДюймВключаючи облямівкуВставити точкуЦілеІнтенсивністьРівні інтенсивностіІнтенсивність початкового кольору при освітленні джерелом світлаЧерезрядковістьВнутрішня процедура GIMPПеретинКолір перетинівНеправильний UTF-8 рядок у PSD файліНеправильний рядок UTF-8 у файлі пензля "%s".Неправильний UTF-8 рядок у файлі шаблону "%s".ІнверсіяІнвертувати текстуру паперуІзометріяРекомендується додати рядок +то зможете зберігати створені вами файли GFlare у цій теці.Редактор градієнтних спалахівПараметри GIFПопередження GIFЗображення GIFGIF: Недокументований тип композиції %d. Можливо, анімація не буде відтворюватись чи не збережеться коректно.Розширення GIMPПерегляд довідки GIMPДоповнення GIMPТаблична магія GIMPДоповнення GIMP значків WindowsПензель GIMPПензель GIMP(анімований)Схоже файл пензля пошкоджений.Пензлі GIMP або у відтінках сірого або RGBAЗображення GIMP стиснений XJTВізерунок GIMPСя_йвоПоріг _зеленого:Гама:Гаусове розмиванняГаусеве розмивання (IIR)..._КовзанняGee-_МасштабЗагальнеЗагальні параметриЗагальні параметриЗагальні параметриОтримання кольору зразкаGfigВерсія Gimp-PrintGIMPімпресіоністСкляна плиткаСкляна плитка...Параметри малювання сяйваС_ірийЗнятиЗробити знімок _черезЗняти одне вікноЗахопити весь екранГрадієнтГрадієнтний спалах...Градієнтна мапа...ГрадієнтМеню вибору градієнтної мапиМасштаб градієнта:ГрадієнтиГрафік поточних настройокЗгладжування графікиСірийРежим кольоруПараметри зеленогоПоріг зеленогоВідтінки сірогоЗеленийЧ_астота зеленого:Фа_зовий зсув зеленого:Зелений:СірийСіткаЗернистість сіткиЗміщення сіткиПараметри сіткиПараметри сітки...Тип та видимість сіткиКолір сітки:Параметри сітки...Інтервал сітки:Тип сітки:НапрямніНапрямні - це наперед визначені прямокутники, що покривають +зображення. Ви визначаєте їх ширину, висоту і відступи між ними. +Це дозволяє вам швидко створювати більшість мап зображення +звичайного типу - наборів "мініатюр", приданих для навігації.Напрямні...Гільйотина...HSVПараметри HTML-сторінкиТаблиця HTMLВ_ідблиски:Від_блиски_Відтінок:_Відтінок:_ШестикутникиВисота (у точках):Висота паперу для друкуВисота:Невідомий ID у системі довідки - "%s"Гей, куди подівся об'єкт?Високо_якісний попередній переглядПідвищення значень підсилює ефектПідвищення цього значення робить відблиски більш різкимиПідвищення значень змушує об'єкт відбивати більше світла (здається світлішим)Підвищення значень обмежує ефект меншими ділянками зображенняВідблиски:Відблиски:Зб_ерігати мінімальні канали_Ширина отворів:Г_оризонтальна основа:Висота _отворів:Зберегти інтенсивністьІ_нтервал між отворами:ГоризонтальнаКолір горизонталейГоризонтальноПідковаГарячі"Гаряча точка" _X:"Гаряча точка" _Y:Гарячі кольори...Скільки одиниць припадає на дюйм.Наскільки "темною" буде тіньЯк сильно "затемнені" краї у кожного мазка пензлемЯк сильно розмивати тіньВідтінокОбертання відтінку:Варіанти відтінку_Частота відтінку:_Фазовий зсув відтінку:Відтінок:НеважливоІдентифікаторIFS фракталПараметри візуалізації IFS фракталуIFS фрактал: чорнийIFS фрактал: синійIFS фрактал: зеленийIFS фрактал: червонийIFS фрактал: цільІтер:Інтерактивне спотворення_Інтенсивність_Інтерактивно_Інвертувати рельєфІ_нвертоване зображенняВідді_литиЗначок #%iПодробиці значкаДодати в документ теги , та інші, а не лише ті, що стосуються таблиці.Заміняти будь-які прямокутні секції однакового кольору на одну більшу комірку із значеннями ROWSPAN і COLSPAN.Якщо відмічено, відображення розпочнеться з правої сторони, в іншому випадку - з лівої.Якщо не відмічено, то зображення буде відображене у прямокутник. Якщо відмічено - тоді у коло.Якщо не відмічено, то нижня сторона буде розміщена у центрі, а верхня - назовні. Якщо відмічено - навпаки.Більш яскраві кольори замінювати на менш яскраві та навпакиЯкщо ви виберете цей варіант - перегляд буде оновлюватись автоматичноІлюзіяІлюзія..._ЗображенняЗображенняЗображення/Параметри виводуСкладання зображенняВибір зображенняРозмір зображенняТипи зображень_Тип зображення:_Висота зображення:Розміри зображення: %d x %dЗображення не у відтінках сірого (bpp=%d)Назва зображення:Розмір зображення змінено._Інтервал між зображеннями:Тип зображення:Доповнення карти зображення 2.0Зображення для основного циліндраЗображення мають різний розмірІмпорт _контурівІмпортувати елементи з контуру SVG, так, щоб вони могли використовуватись інструментом "Контури"Ін_теграційні кроки:_ІнверсіяДюймВключаючи облямівкуІндексованийТип індексованої палітриПочаткове значення:Тип чорнил:Рівень на вході:Вставити точкуВставляння датиЦілеІнтенсивністьРівні інтенсивностіІнтенсивність початкового кольору при освітленні джерелом світлаЧерезрядковістьВнутрішня процедура GIMPПеретинКолір перетинівНеправильний UTF-8 рядок у PSD файліНеправильний рядок UTF-8 у файлі пензля "%s".Неправильний UTF-8 рядок у файлі шаблону "%s".ІнверсіяІнвертувати текстуру паперуІзометріяРекомендується додати рядок (gimpressionist-path "%s") -(або аналогічну) у файл gimprc.Ітерацій:JNGПерегляд JPEGГоловоломкаСтиль головоломкиДжуліяЗберегти значення зображенняЗберегти початковеЗберегти перше значенняLABLZ77_Передній_Ліва межа_Довжина:_ЛінійнийЛямбдаАльбомнаЛаплас...Вел_ике 3x3Шар %s не має альфа-каналу, пропущеноЛіва сторона:Ефект лінзиМенше насиченості:Напрямок від центру визначає напрямок мазкаРозмір мазка буде визначатись напрямком від центруЯскравість ділянки визначає напрямок мазкаРозмір мазка визначатиметься яскравістю зображенняСвітлоНастройка світлаНапрямок джерела світла по X в просторі XYZПозиція джерела світла по X в просторі XYZНапрямок джерела світла по Y в просторі XYZПозиція джерела світла по Y в просторі XYZНапрямок джерела світла по Z в просторі XYZПозиція джерела світла по Z в просторі XYZСвітлішеСвітліше:Світлові ефектиСвітлові ефекти...ЛініяЛінійнийТип посиланняПерегляд спискомЯщіркаД_овга шахівниця_Нижня межаЗавантажити настройки мікшера каналівЗавантажити точки кривої з файлуЗавантаження файлу формату FITSЗавантаження полум'яЗавантаження параметрів фракталаЗавантаження набору об'єктів GfigЗавантаження мапи зображенняЗавантаження палітри KISSЗавантаження параметрів зЗавантажити PostScriptЗавантажити фрактал з файлуЗавантажити криві з файлуЗнімок екрану...ЛогарифмічнийЦиклLuma_y470:Luma_y470f:Luma_y709:Luma_y709f:_Поріг яскравості:Параметри MNG_ПурпурнийПурпурнийПурпурний:Пурпурний_KОсновні параметриЗробити результуюче зображення прозорим на нульовій висоті рельєфуЗробити зображення прозорим за межами об'єктуМедузаМандельбротПараметри фрактала МандельбротаРучнийНапрямок мазків вказується вручнуВказати розмір мазка вручнуВідображення діапазону кольорівВідобразити зображення на гранях паралелепіпедаФормат файлу мапиВідобразити в об'єктВідобразити на:Відображення кольорів...МармурФайл маскиМатрицяMax (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)Максимум RGBМаксимум RGB...Макс. пам'ять:Максимальна висота рельєфуМаксимальний розмір:Злиття...Півтони:Min (x+d, -)Min (x+d, -), (0.5 < x)Max (x-d, -), (0.5 < x)Min (x, -)Min (x-d, -)Min (x-d, -), (x < 0.5)Min (x-d, -), (x < 0.5)Мінімальний розмір:Віддзеркалити активну криву на інший крайРежимРежим _1Режим _2Змінити кривуБільше насиченості:МозаїкаРозмивання рухомРозмивання рухом...ПереміститиЗсунути внизЗсунути поясПеремістити вибрані об'єктиПеремістити впередЗсунути вгоруПеремістити точкуПеремістити об'єктРухМноження (57):Множити градієнт (0,1)Множити на випадкове число (0,1)Множити на випадкове число (0,2)Мій перший фракталНелінійний фільтрНелінійний фільтр...НазваНовий фракталНовий градієнтний спалахНова одиницяГазетаГазетний папірУ gimprc відсутнє %s: +(або аналогічну) у файл gimprc.Ітерацій:JNGJNG + delta PNGЯкість стиснення JPEG:Перегляд JPEGПерегляд JPEGПараметр якості JPEGПараметр згладжування JPEG:ГоловоломкаСтиль головоломкиДжуліяKISS CELЛишити п_арні поляЗберегти значення зображенняЛишити _непарі поляЗберегти початковеЗберегти перше значенняLABLZ77П_ередній_Ліва межаДов_жина:_ЛінійнийЛямбдаАльбомнаЛапласаЛаплас...Вел_ике 3x3Шар %s не має альфа-каналу, пропущеноТип тла шару. "Копіювати" призведе до копіювання попереднього шару перед виконанням малювання.ЗліваЛівий крайЛіва сторона:Ефект лінзиМенше насиченості:Напрямок від центру визначає напрямок мазкаРозмір мазка буде визначатись напрямком від центруЯскравість ділянки визначає напрямок мазкаРозмір мазка визначатиметься яскравістю зображенняРівеньСвітлоСвітло 1Світло 2Світло 3Світло 4Світло 5Світло 6Настройка світла_Напрямок освітлення:Початкова інтенсивністьНапрямок джерела світла по X в просторі XYZПозиція джерела світла по X в просторі XYZНапрямок джерела світла по Y в просторі XYZПозиція джерела світла по Y в просторі XYZНапрямок джерела світла по Z в просторі XYZПозиція джерела світла по Z в просторі XYZСвітлішеСвітліше:Світлові ефектиСвітлові ефекти...Світлові ефектиКолір джерела світла:Тип джерела світла:ЛініяМалюнок в лініяхЛінійнийТип посиланняПерегляд спискомЯщіркаД_овга шахівниця_Нижня межаЗавантажити настройки мікшера каналівЗавантажити точки кривої з файлуЗавантаження файлу формату FITSЗавантаження полум'яЗавантаження параметрів фракталаЗавантаження набору об'єктів GfigЗавантаження мапи зображенняЗавантаження палітри KISSЗавантажити світлові ефектиЗавантаження параметрів зЗавантажити PostScriptЗавантажити QBE-файлЗавантажити фрактал з файлуЗавантажити криві з файлуЗнімок екрану...Зафіксувати _порогиЛогарифмічнийЦиклЗнизу ліворучЗнизу праворучОпустити вибрані об'єктиОпустити вибрані об'єкти додолуН_ижній поріг:Luma_y470:Luma_y470f:Luma_y709:Luma_y709f:Поріг _яскравості:Ча_стота яскравості:_Поріг яскравості:Параметри MNGАнімація MNGМ_аксимальне значення:Максимальна г_либина:М_аксимальна висота:_ПурпурнийПурпурнийПурпурний:Пурпурний_KМапа значень:Основні параметриЗробити результуюче зображення прозорим на нульовій висоті рельєфуЗробити зображення прозорим за межами об'єктуМедузаМандельбротПараметри фрактала МандельбротаРучнийНапрямок мазків вказується вручнуВказати розмір мазка вручнуВідображення діапазону кольорівВідобразити зображення на гранях паралелепіпедаВідобразити в _об'єкт...Формат файлу мапиВідобразити з_верхуМапу у паралелепіпед...Мапу у циліндр...Відобразити в об'єктМапу у площину...Мапу у сферу...Відобразити на:Відображення кольорів...МармурФайл маскиВластивості текстуриМатрицяMax (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)Максимум RGBМаксимум RGB...Макс. кількість скасувань:Макс. пам'ять:Максимальна висота рельєфуМаксимальний розмір:ЛабіринтРозмір аркуша:Джерело:Тип носія:МедіанаМенюШлях менюШлях/назва менюОб'єднати імпортовані контуриЗлиття...Файл Microsoft WMFЗначок Microsoft WindowsПерегляд: Клацніть всередині щоб вибрати "З кольору"Півтони:Min (x+d, -)Min (x+d, -), (0.5 < x)Max (x-d, -), (0.5 < x)Min (x, -)Min (x-d, -)Min (x-d, -), (x < 0.5)Min (x-d, -), (x < 0.5)Мінімальний розмір:Віддзеркалити активну криву на інший крайРізне впорядкування:Зм_інити канал зеленогоЗм_інити канал насиченостіШвидкість змін:Змі_нити канал синьогоЗмі_нити канал яскравостіРежимРежим _1Режим _2Змінити криву_Менш прозорийБільш розширені параметриБільше насиченості:Св_ітліше (більші значення)_Темніше (менші значення)_Більш прозорийМозаїкаРозмивання рухомРозмивання рухом...ПереміститиЗсунути внизЗсунути поясПеремістити вибрані об'єктиПеремістити впередЗсунути вгоруПеремістити точкуПеремістити об'єктРухМноження (57):Множити градієнт (0,1)Множити на випадкове число (0,1)Множити на випадкове число (0,2)Дистанція мутацій:Швидкість мутації:Мій перший фракталНелінійний фільтрНелінійний фільтр...НазваВиділення неонуНеон...Новий фракталНовий градієнтний спалахНова одиницяНовий принтер...Нова база_Газетний папірГазетаГазетний папірУ gimprc відсутнє %s: Додайте запис (%s "%s") -у файл %s.Без кольорівДаних не захопленоНемає відповідностейНічого не виділено для перетворенняНемає потрібного розширення, спроба визначення типу за допомогою команди file.Немає потрібного розширення, зберігається як стиснутий XCF.Кількість секторів в в_исоту:ШумНеквадратні точки. Зображення може виглядати пошкодженим.НемаєЗвичайнийЗвичайне:Нормалізація...Немає що кадрувати.Кількість кольорівКількість _рядків MRU (1 - 16):Кількість елементівКількість _кадрів:Кількість рівнів _скасування (1 - 99):Кількість кольорів:Кількість циклів покривання всього діапазону значеньКількість елементів по горизонталіКількість елементів по вертикаліСкільки разів застосувати фільтрКількість кольорів: %dНумерація_Зсув:_Непрозорість:_Параметри_Орієнтація_ІншіLPI в_иводі:Пере_криванняП_ерекриття:Подробиці об'єктуПозиція об'єкту по X у просторі XYZПозиція об'єкту по Y у просторі XYZПозиція об'єкту по Z у просторі XYZЗсув (1):Зсув усіх векторів на вказаний кутЗсув:Малювання олією...Олійна фарбаНа краях:Фотоплівка:Лише один колір_Непрозорість:_ПараметриНепрозорість:ВідкритиВідкривання файлцНе вдається відкритиВідкривається %s...Відкрити редактор мап орієнтаціїВідкрити редактор мапи розмірівОптимізуватиОптимізувати вивід в залежності від типу зображенняОптимізація анімації...Параметри_Орієнтація_Початок знизу ліворучОрієнтаціяРедактор мап орієнтаціїОрієнтація:ПочатковийПочаткове:_ІншеВивідРівень на виході:Тип оточенняПерекриванняPNGЗображення з альфа-каналом не можна зберегти як PNM.PNM: Помилка зчитування файлу.PNM: Неправильна роздільна здатність по XPNM: Неправильна роздільна здатність по YPNM: Неправильний файл.PNM: Неправильне максимальне значення.PNM: Передчасне закінчення файлу.Файл PPD:т/дюймPS-ромбPS-квадрат (Евклідова точка)_Папір_ПереглядСторінка %dЗагнута сторінка...Помилка діалогу параметрів сторінки: %dЕфект загнутої сторінкиСторінки:Режим малювання:Малювати країМалювання...Розріз паперуРозріз паперу...Параметр k:ПараметриПомилка при аналізі файлу "%s": -%sВставитиВставленоВставляння...ВідсотокВідсоток точок, що фільтруєтьсяКут фазового зсуву у діапазоні 0-360ФонгФотографіяШматочки:_Висота точки:_Ширина точки:ПікселізаціяПікселізація...точок_РозміщенняРозміщувати мазки випадково навколо зображенняРозміщенняПлощинаПлазмаПлазма...Пуск/СтопПеревірте інсталяцію.МножинаТочковеПолярністьПоляризуватиПоляризація...БагатокутникКнижковаПозиціяПозиція зображення на сторінці. +у файл %s.Без кольорівБез стисненняДаних не захопленоБез заповненняНемає освітленняНемає відповідностейНічого не виділено для перетворенняНемає потрібного розширення, спроба визначення типу за допомогою команди file.Немає потрібного розширення, зберігається як стиснутий XCF.Кількість секторів в в_исоту:ШумНе квадратні точки. Зображення може виглядати пошкодженим.НемаєЗвичайнийЗвичайне:Нормалізація...Немає що кадрувати.Кількість кольорівКількість _рядків MRU (1 - 16):Кількість сегментівКількість елементівКількість _кадрів:Кількість рівнів _скасування (1 - 99):Кількість комірок:Кількість кольорів:Кількість циклів покривання всього діапазону значеньКількість елементів по горизонталіКількість елементів по вертикаліСкільки разів застосувати фільтрКількість кольорів: %dНумерація_Зсув:Лише колір _переднього плану_Непрозорість:_Параметри_Орієнтація_ІншіLPI в_иводі:Канал в_иводу:_Перекриття:Пере_криванняП_ерекриття:Подробиці об'єктуПозиція об'єкту по X у просторі XYZПозиція об'єкту по Y у просторі XYZПозиція об'єкту по Z у просторі XYZ_Восьмикутники й квадрати_Зсув:Зсув (1):_Кут зміщення:Зсув усіх векторів на вказаний кутЗсув:Малювання олією..._Олійна фарбаОлійна фарбаНа краях:Фотоплівка:На краях:Один кадр на шар (заміна)Ли_ше тлоЛише один колір_Непрозорість:_Оптимальна оцінка_ПараметриНепрозорість:ВідкритиВідкривання файлуВідкривання файлу IFS-фракталуНе вдається відкритиВідкрити недавнєВідкривається %s...Відкривається мініатюра для "%s"...Відкрити редактор мап орієнтаціїВідкрити редактор мапи розмірівОптимізуватиОптимізація (для _GIF)Оптимізувати вивід в залежності від типу зображенняОптимізація анімації...Параметри_Орієнтація_Початок знизу ліворучОрієнтаціяРедактор мап орієнтаціїОрієнтація:ПочатковийПочаткова інтенсивністьПочаткове:_ІншеІнші параметриВивідРівень на виході:Тип виводу:Тип оточенняПерекриванняПоказник степені:Документ PDFЗображення PGMPNGPNG + delta PNGРівень стиснення PNG:Зображення PNGЗображення PNMЗображення PNMЗображення з альфа-каналом не можна зберегти як PNM.PNM: Помилка зчитування файлу.PNM: Неправильна роздільна здатність по XPNM: Неправильна роздільна здатність по YPNM: Неправильний файл.PNM: Неправильне максимальне значення.PNM: Передчасне закінчення файлу.Файл PPD:т/дюймЗображення PPMPS-ромбPS-квадрат (Евклідова точка)_Папір_Полярні координати_ПереглядСторінка %dЗагнута сторінка...Параметри сторінкиПомилка діалогу параметрів сторінки: %dЕфект загнутої сторінкиСторінок для завантаження(наприклад: 1-4 чи 1,3,5-7)Сторінки:Режим малювання:Зображення Paint Shop ProМалювати країМалювання...Файл _палітри:ПалітраРозріз паперуРозріз паперу...Параметр k:ПараметриПараметри збережено в "%s"Помилка при аналізі файлу "%s": +%sВставитиВставити з буферу обмінуВставленоВставляння...ВізерунокВідсотокВідсоток _чорного:Відсоток _білого:Відсоток точок, що фільтруєтьсяКут фазового зсуву у діапазоні 0-360ФонгФотографіяФотографіяЗображення PhotoshopШматочки:Пін-понґ_Висота точки:_Ширина точки:Масштабування значень точокПікселізаціяПікселізація...точок_РозміщенняРозміщувати мазки випадково навколо зображенняРозміщенняПланарне (RRR,GGG,BBB)Планарний RGBПлощинаПлазмаПлазма...Пуск/СтопВідтворення:Перевірте інсталяцію.Накреслити графік параметрівПерегляд доповненьМножинаПо_ляризація:ТочковеДжерело світлаПолярністьПоляризуватиПоляризація...БагатокутникКнижковаПозиціяПозиція по X:Позиція по Y:Позиція по Z:Позиція зображення на сторінці. Натискання на зображенні головною кнопкою та перетягування дозволяє встановити його позицію. Натискання на зображенні іншою кнопкою, щоб перемістити зображення з більшою точністю. Кожна одиниця руху переміщує зображення на один пункт (1/72") Натискання третьої (середньої) кнопки дозволяє переміщувати зображення у одиницях розміру зображення. При утримування натиснутою клавіші Shift, переміщення обмежуватиметься лише горизонтальним чи вертикальним напрямками. -Якщо під час перетягування ви натиснете іншу кнопку миші, зображення повернеться до початкової позиції.Зображення з альфа-каналами не можна зберегти як PostScript_ПереглядНастройкаЗберегти початкове зображення як тлоПереглядРозмір переглядуПерегляд під час перетягуванняКорекція кольорів друкуДрукувати та -зберегти параметриДрукує у чорно-білій гамі (немає кольорів, немає відтінків сірого)Друк у відтінках сірого використовуючи чорну фарбуПомилка у діалозі друку: %dМодель принтера:Параметри принтераПринтер не підтримує растрові зображенняДрук...Градієнт вірогідності:ПрогресивнеРозповсюдження каналу яскравостіРозповсюдження _альфа-каналуQ-біст...Якість:RGBRGBAМалюнок RGBA/Сірий-альфа не вибрано.RLE_Радіус:В_ипадковість (%):_Рекурсивне_Червоний_Повторів:_ОбернутиРадіальнийРадіальний градієнт:РадіаниРадіани/ПіРадіусРадіус:ВипадковістьВипадковий кидок 1.7Випадковий вибір 1.7База випадковості:Випадкова пляма 1.7Випадковий спільнийВипадковий, незалежний від каналуВипадковоВипадкові з базиВипадкові з бази (спільні)Кількість кадрів:НеобробленийПараметри малювання променів_ЧервонийЗчитати вибрані параметри в пам'ятьПерегляд в реальному часіПереобчислити перегляд зображенняПрямокутникЧервонийЧервоний:Redness_cr470:Redness_cr470f:Redness_cr709:Redness_cr709f:ПовернутиПовернути останню зміну масштабуПеремалюватиПеремалювати переглядЗменшити _яскравістьЗменшити _насиченістьРефлексіяОновити вікно переглядуКількість сторін правильного багатокутникаВід_носне посиланняРельєф:Фарбування за зразком...В_идалитиВидалення тла анімації...Видалення кольору...Створення відблиску...Створити Scalable Vector GraphicsСтворений SVGСтворений WMFВізуалізаціяВідображення пориву вітру...Візуалізація фрактала...Візуалізація IFS (%d/%d)...Візуалізація SVG...Візуалізація сфери...Відображення наднова...Візуалізація елементів...Відображення вітру...ЗаміститиПеречитати каталог параметрівПеречитати градієнтиАктуалізувати фракталиВстановити параметри у типові значенняСкинути активну кривуЗмінити розмір сектора?Роздільна здатністьРоздільна здатність та якість друкуРоздільна здатність:Напрямні проходять від: %d,%d до %d,%d (%d ділянок)Напрямні проходять від: 0,0 до 0,0 (0 ділянок)Повернути до початкового зображенняПеремотуванняПрава межа:Права сторона:БрижіСтворення брижів..._Обертання:_Рядок:_Обернути:Масштаб X:Обертання Y:Обертання Z:ПовернутийОбертання мапи кольорів...Обертання...ОбертанняКут обертання навколо осі XКут обертання навколо осі YКут обертання навколо осі ZОбертання:ШорсткістьКолоЗакодовано RunLengthНе можна зберегти як SUNRAS зображення з альфа-каналамиУ файлі SVG -не вказано розмір!_Другий колір:Вибрати вікно післяВибраний символ:Т_ип спалахуЗ_меншення_Синус_Експонента сили:_Сила:См_угастий_Тема:_Переставити_Вихор CCWЗалишити попереднійАналіз зразка...Фарбування за зразкомЗразок:Зразок кольору з точки в центрі пензля_Насиченість_НасиченістьНасиченістьЗміна насиченостіНасиченість:ЗберегтиЗберегти -параметриЗбереження пензляЗберегти настройки мікшера каналівЗбереження поточнихЗберегти точки кривої у файліЗберегти дані EXIFЗбереження файлуЗбереження полум'яЗбереження параметрів фракталаЗбереження малюнку GfigЗбереження мапу зображенняЗберегти параметри уЗберігати значення _кольору прозорих точокЗберегти активний фрактал у файлЗберегти як BMPЗбереження як пензельЗбереження як послідовність пензлівЗбереження як файл мовою CЗбереження як GIFЗбереження як JPEGЗбереження як MNGЗберегти як PNGЗберегти як PNMЗбереження як PSPЗберегти як візерунокЗбереження у PostScriptЗбереження як SGIЗбереження як SUNRASЗбереження як TGAЗбереження як TIFFЗберегти як текстЗбереження як XBMЗберегти як XJTЗбереження як XPMЗберегти поточні...Зберегти поточні параметри у вказаному файліЗберегти криві у файліЗбереженеЗбереження "%s"...Пи_лоподібнаРоз_сіювання:Масштабувати відтінок за:Масштабувати яскравість за:Масштаб X:Масштаб Y:Масштаб Z:Масштабувати у точках на дюймМасштабувати у відсотках від повного розміру сторінкиМасштаб:Масштабування:Розсіювання HSVРозсіювання HSV...ЕкранЗнімок екрануВиді_лену частинуПошук за _анотацієюПошук за _назвоюПошук - зачекайтеТриває пошук за анотацією - зачекайтеТриває пошук за назвою - зачекайтеПейзажДругий цільовий колірПараметри малювання другого спалахуКолір другого джереласекундВипадкова база (лише для режиму "З бази")База:Виділене у _контекстіВибірВиділити всеВибір кольоруВибір кольору плівкиВиберіть HTML-файлВибір назви файлуВибрати наступнуВибір кольору номерівВибрати точки заВибрати попереднюВибрати ділянкуВиді_лити всеВиділити всеВиділення суцільної ділянкиВиділити існуючу ділянкуВибрати каталог та перечитати вмістВибрати наступний sm-векторВибрати наступний векторВибрати попередній sm-векторВибрати попередній векторВстановлення одиниці виміру для друкуВиберіть тип виводуВиберіть назву принтера (не тип або модель)Вибір орієнтації: книжкова, альбомна, перевернута або пейзаж (перевернута альбомна)Виберіть масштабування у відсотках від розміру сторінки або щільність у точках на дюйм.Вибір моделі принтераВибір:Виділене:ВиділенняДодаткові параметри перетворення виділення у контурНевірний розмір виділення. -Лабіринт буде нерівний.Виділення у контур...Вибіркове Гаусеве розмиванняВибіркове Гаусеве розмивання...Вибіркове завантаження настройокВибіркове завантаження зВибирати випадковий напрямок для кожного мазкаВибрати випадковий розмір кожного мазкаВиберіть якщо готову зображення має здаватись безшовнимЧи наносити малюнок на все зображення впритул до його межНапівзведення...Перемістити назадРозділити на:31 Вересень 1999Вказати колір джерела світлаВстановити сантиметр як основну одиницю виміру для друкуВстановити дюйм як основну одиницю виміру для друкуВизначає яскравість друку. -0 - суцільний чорний, 2 - суцільний білийВстановлення контрасту друкуВстановити висоту друкуВикористовувати початковий розмір зображенняВкажіть масштаб (розмір) зображенняВстановити ширину друкуЗбій SetStretchBltMode (лише попередження)ПараметриПараметри до цього файлу мапиПараметри принтера_ТініРозмивання тіні:Затемнення тіні:Глибина тіні:Тіні:Форма другого спалахуПідвищення різкостіПідвищення різкості...Нахил:ЗсувЗміщення...Чи потрібно робити інверсію ефекту?Чи потрібно зберігати яскравість?ПоказатиПоказувати кадр лініїПоказати всі об'єктиПоказувати п_ідказку з ділянки URLПоказувати обробник _ділянкиСкопіювати наступний об'єктВибрати попередній об'єктПоказати/прибрати _каркас перегляду_Однина:СерпинськийПросте_СинусоїднийСинусОднинаСинусСинус: візуалізація...СинусоїднийРозмірРозмір (%):Показник величини градієнта:Редактор мапи розмірівРозмір паперу для друкуРозмір:Розміри:Найповільніший, але самий ретельний та гладкий, найкращий для фотографій. Пляма_Згладжування зображення_ЗгладжуванняГладка палітраЗгладжування X градієнта...Згладжування Y градієнта...Згладжування:Згладжування нерівностейSm-векториВиділення меж за Sobel..Виділення меж за Sobel_Горизонтальне розмивання за Sobel_Вертикальне розмивання за SobelРівномірне тлоСуцільний шумДодавання суцільного шуму...Суцільно замальоване тлоДеякі дані змінились!Можна зберігати лише індексовані та сірі зображення.Нажаль канали та маски не можна обертати.Назва лотка, з якого буде відбуватись друкДжерело 1:Джерело 2:Початковий діапазон кольорівДжерело...Проміжок:ІскраСтворення іскор...Просторове перетворенняВказане вікно не знайденеВказує степінь рельєфності, що застосовується до зображення (у відсотках)Пропорції для пензляВказати масштаб текстури (у відсотках від початкового файлу)Відбивання:СфераСтворення сфериСферичнийСпіральТовщина плям:СпіральРадіус плями:ПлямиРозсіюванняДіапазон розсіюванняРозсіювання..._Експонента сили:СтандартКількість точок зіркиПочатковий кут:Неправильна початкова сторінкаКрокЗупинятись коли різниця точок менша за їхні значенняРозтягнутиЗбій StretchBlt (hDC, %d, %d, %d, %d, hdcMem, %d, 0, %d, 1, SRCCOPY), помилка = %d, y = %dЩільність мазків:СильнеСтильПідрозділяти:Підвибірка:Підкроки:НадноваВибір кольору НадновоїВи_хор CWПереставити дві кривіВихорПроти годинниковоюЗа годинниковоюСимволКанал TIFF_Розсічений_Турбулентність:_ТурбулентнеПараметри створення таблиціПараметри таблиціЦільTel_netТимчасовеТимчасова процедураТекстураВластивості текстуриТекстура:ТекстуриФормат GIF підтримує коментарі лише у 7-бітному ASCII. Коментар не збережений.Файли довідки GIMP не встановлені.GIMPімпресіоністУ файлі формату PNG вказано зсув, який призводить до розташування шару за межами зображення.Формат TIFF підтримує лише 7-бітні ASCII -коментарі. Коментар не збережено.Розмір заповнення комірок.Розмір інтервалу між комірками.Розмір відблиску на краях кожного елементуВибрати розмір пензля, що найбільш співпадає з початковим зображеннямЧорний та білий.Коментар типово обмежений довжиною %d символів.Глибина тіни, визначає, як далеко від об'єкту вона має бутиВибирається напрямок, найбільш співпадає з оригінальним зображеннямВідстань від центру зображення визначає напрям мазкаВідстань від центру зображення визначає розмір мазкаПерший рядок зображенняВисота кожної комірки. Може бути числом чи відсотками.Відтінок ділянки визначає напрямок мазкаРозмір мазка буде визначатись відтінком ділянкиЗображення, яке ви намагаєтесь зберегти як GIF +Якщо під час перетягування ви натиснете іншу кнопку миші, зображення повернеться до початкової позиції.Документ PostScriptЗображення з альфа-каналами не можна зберегти як PostScript_ПереглядНастройкаЗберігати _яскравістьЗберегти початкове зображення як тлоПереглядРозмір перегляду_Розмір перегляду:Перегляд під час перетягуванняЗа ПревриттомАлгоритм PrimКорекція кольорів друкуДрукувати та +зберегти параметриДрукує у чорно-білій гамі (немає кольорів, немає відтінків сірого)Друк у відтінках сірого використовуючи чорну фарбуДрук у файлПомилка у діалозі друку: %dМодель принтера:Параметри принтераПринтер не підтримує растрові зображенняМодель принтера:Назва принтера:Друк...Градієнт вірогідності:Переглядач процедурПерегляд _процедурПрогресивнеРозповсюдженняРозповсюдження каналу яскравостіРозповсюдження _альфа-каналуQ-біст...Якість:R, G, B (звичайний)RGBТип зберігання RGBRGBAМалюнок RGBA/Сірий-альфа не вибрано.RLERLE стисненняР_адіус 2:_Радіус:_Випадковий відтінок:_База випадковості:В_ипадковість (%):Р_екурсивна_ЧервонийПоріг _червоного:_Повторів:_ОбернутиРадіальнийРадіальний градієнт:РадіаниРадіани/ПіРадіусРадіус:Підняти вибрані об'єктиПідняти вибрані об'єкти догориВ_ипадкова насиченість:ВипадковістьВипадковий кидок 1.7Випадковий вибір 1.7База випадковості:Випадкова пляма 1.7_База випадковості:Випадкова базаВипадковий спільнийВипадковий, незалежний від каналуВипадковоВипадкові з базиВипадкові з бази (спільні)Верхній діапазон:Нижній діапазон:Кількість кадрів:НеобробленийЗображення з необробленими данимиЗавантажувач зображення з необробленими данимиЗбереження зображення у необробленому форматіПараметри малювання променівПере_центрувати_ЧервонийЗчитати вибрані параметри в пам'ятьПерегляд в реальному часіПереобчислити центрПереобчислити перегляд зображенняПрямокутникЧервоний_Частота червоного:_Фазовий зсув червоного:Червоний:Redness_cr470:Redness_cr470f:Redness_cr709:Redness_cr709f:ПовернутиПовернути останню зміну масштабуПеремалюватиПеремалювати переглядЗменшити _яскравістьЗменшити _насиченістьРефлексіяОновити вікно переглядуКількість сторін правильного багатокутникаВід_носне посиланняВідносна вірогідність:Випущено під ліцензією GNU General Public LicenseРельєф:Фарбування за зразком...В_идалитиВидалення тла анімації...Видалення кольору...Створення відблиску...Створити Scalable Vector GraphicsРастеризація формату Windows MetafileПараметри візуалізаціїСтворений SVGСтворений WMFВізуалізаціяВідображення пориву вітру...Візуалізація фрактала...Візуалізація IFS (%d/%d)...Візуалізація SVG...Візуалізація сфери...Відображення наднова...Візуалізація елементів...Відображення вітру...ЗаміститиПеречитати каталог параметрівПеречитати градієнтиАктуалізувати фракталиВстановити параметри у типові значенняСкинути активну кривуЗмінити розмір сектора?Роздільна здатністьРоздільна здатність та якість друкуРоздільна здатність:Напрямні проходять від: %d,%d до %d,%d (%d ділянок)Напрямні проходять від: 0,0 до 0,0 (0 ділянок)Retinex (4/4): оновлено...Retinex покращення зображенняRetinex...Retinex: Фільтрування...Результуючі значенняПовернути до початкового зображенняПеремотуванняСправаПрава межа:Правий крайПрава сторона:БрижіСтворення брижів..._Обертання:_Рядок:За Робертсом_Обернути:ОбернутиОбертання / масштабМасштаб X:Обертання Y:Обертання Z:ПовернутийОбертання мапи кольорів...Обертання...ОбертанняКут обертання навколо осі XКут обертання навколо осі YКут обертання навколо осі ZКут обертання:Обертання:ШорсткістьКолоЗакодовано RunLengthЗображення SUN RasterfileНе можна зберегти як SUNRAS зображення з альфа-каналамиУ файлі SVG +не вказано розмір!Розс_іювання HSV...Д_ругий колір:Ви_брати вікно після_Вибраний символ:Т_ип спалаху_Показати курсорЗ_меншенняС_инус_Експонента сили:_Сила:См_угастий_Тема:_Переставити_Вихор CCWЗберегти _альфа-канал (RGBA/RGB)Залишити попереднійАналіз зразка...Фарбування за зразком_Щільність зразка:Зразок:Зразок кольору з точки в центрі пензля_Насиченість_НасиченістьНасиченістьЗміна насиченостіЧ_астота насиченості:Фа_зовий зсув насиченості:Насиченість:ЗберегтиЗберегти +параметриЗберегти (середнє перетворення) як QBE-файл...Збереження пензляЗберегти настройки мікшера каналівЗбереження поточнихЗберегти точки кривої у файліЗберегти дані EXIFЗбереження файлуЗбереження полум'яЗбереження параметрів фракталаЗбереження малюнку GfigЗбереження мапу зображенняЗберегти світлові ефектиЗберегти параметри уЗберегти колір _тлаЗберігати значення _кольору прозорих точокЗберегти г_амуЗберегти _роздільну здатністьЗберегти активний фрактал у файлЗберегти як BMPЗбереження як пензельЗбереження як послідовність пензлівЗбереження як файл мовою CЗбереження як GIFЗбереження як файл IFS-фракталуЗбереження як JPEGЗбереження як MNGЗберегти як PNGЗберегти як PNMЗбереження як PSPЗберегти як візерунокЗбереження у PostScriptЗбереження як SGIЗбереження як SUNRASЗбереження як TGAЗбереження як TIFFЗберегти як текстЗбереження як XBMЗберегти як XJTЗбереження як XPMЗберегти колір тлаЗберігати значення _кольору прозорих точокЗберегти _коментарЗберегти _час створенняЗберегти дату створенняЗберегти поточні...Помилка збереженняЗберегти гамуЗберегти _зсув шаруЗберегти роздільну здатністьЗберегти поточні параметри у вказаному файліЗберегти криві у файліЗберегти мініатюриЗбереженеЗбереження "%s"...Пи_лоподібна_Масштаб 1:_Розсіювання:Мас_штаб 2:Векторне зображення SVGМасштабувати відтінок за:Масштабувати яскравість за:Масштаб X:Масштаб Y:Масштаб Z:Масштабувати на:Масштабувати у точках на дюймМасштабувати у відсотках від повного розміру сторінкиМасштаб:Масштабування:Розсіювання HSVРозсіювання RGBРозсіювання HSV...ЕкранЗнімок екрануВиді_лену частинуПошук за _анотацієюПошук за _назвоюПошук - зачекайтеТриває пошук за анотацією - зачекайтеТриває пошук за назвою - зачекайтеПейзажДругий цільовий колірПараметри малювання другого спалахуКолір другого джерелаДругий колірсекундсекундВипадкова база (лише для режиму "З бази")База:Виділене у _контекстіВибірВиділити всеВибір кольоруВибір кольору плівкиВиберіть HTML-файлВибір назви файлуВибрати наступнуВибір кольору номерівВибір файлу палітри для завантаженняВибрати точки заВибрати попереднюВибрати ділянкуВиді_лити всеВиділ_ити всеВиділити всеВиділити об'єктВиділення суцільної ділянкиВиділення суцільної ділянкиВиділити існуючу ділянкуВибрати каталог та перечитати вмістВибір кольору джерела світлаВибрати наступний sm-векторВибрати наступний векторВибрати попередній sm-векторВибрати попередній векторВстановлення одиниці виміру для друкуВиберіть тип виводуВиберіть назву принтера (не тип або модель)Вибір орієнтації: книжкова, альбомна, перевернута або пейзаж (перевернута альбомна)Виберіть масштабування у відсотках від розміру сторінки або щільність у точках на дюйм.Вибір моделі принтераВибір:Виділене:ВиділенняДодаткові параметри перетворення виділення у контурНевірний розмір виділення. +Лабіринт буде нерівний.Виділення у контур...Вибіркове Гаусеве розмиванняВибіркове Гаусеве розмивання...Вибіркове завантаження настройокВибіркове завантаження зВибирати випадковий напрямок для кожного мазкаВибрати випадковий розмір кожного мазкаВиберіть якщо готову зображення має здаватись безшовнимЧи наносити малюнок на все зображення впритул до його межНапівзведення...Перемістити назадНадіслати як поштуРозділити на:31 Вересень 1999Вказати колір джерела світлаВстановити сантиметр як основну одиницю виміру для друкуВстановити дюйм як основну одиницю виміру для друкуВизначає яскравість друку. +0 - суцільний чорний, 2 - суцільний білийВстановлення контрасту друкуВстановити висоту друкуВикористовувати початковий розмір зображенняВкажіть масштаб (розмір) зображенняВстановити ширину друкуЗбій SetStretchBltMode (лише попередження)ПараметриПараметри до цього файлу мапиПараметри принтераПараметри принтера..._ТініРозмивання тіні:Затемнення тіні:Глибина тіні:Тіні:Форма другого спалахуР_ізкі країПідвищення різкостіПідвищення різкості...Нахил:Зсув_Величина зсуву:_Горизонтальний зсув_Вертикальний зсувЗміщення...Чи потрібно робити інверсію ефекту?Чи потрібно зберігати яскравість?ПоказатиПоказувати кадр лініїПопередній _перегляд у вікні зображенняПоказати всі об'єктиПоказувати п_ідказку з ділянки URLПоказувати обробник _ділянкиПоказати колірПоказати контрольні точкиПоказати сіткуПоказати зображенняСкопіювати наступний об'єктПоказати позиціюПоказати _каркас переглядуВибрати попередній об'єктПоказати виділенеПоказати/прибрати _каркас перегляду_Однина:Сторін:СерпинськийЗображення Silicon Graphics IRISПростеС_инусоїднийСинусОднинаСинусСинус: візуалізація...СинусоїднийРозмірРозмір (%):Показник величини градієнта:Редактор мапи розмірівРозмір паперу для друкуРозмір:Розміри:Найповільніший, але самий ретельний та гладкий, найкращий для фотографій. ПлямаГ_ладка палітра..._Згладжувати зображення_ЗгладжуванняГладка палітраЗгладжувати кольори зразкаЗгладжування X градієнта...Згладжування Y градієнта...Параметри згладжуванняЗгладжування:Згладжування нерівностейSm-векториВирівняти за сіткоюСобелВиділення меж за Собел..Виділення меж за СобелГ_оризонтальне розмивання за Собел_Вертикальне розмивання за СобелМ'який жарРівномірне тлоСуцільний шумДодавання суцільного шуму...Суцільно замальоване тлоСуцільні кольориДеякі дані змінились!Можна зберігати лише індексовані та сірі зображення.Нажаль канали та маски не можна обертати.Назва лотка, з якого буде відбуватись друкДжерело 1:Джерело 2:Вихідний канал у файлі:Вихідний канал:Початковий діапазон кольорівДжерело..._Кількість променів:_Розсіювання...П_росторове перекриття:Інтервал (відсотки):Проміжок:ІскраСтворення іскор...Просторове перетворенняРадіус просторового _фільтру:Вказане вікно не знайденеВказує степінь рельєфності, що застосовується до зображення (у відсотках)Пропорції для пензляВказати масштаб текстури (у відсотках від початкового файлу)Відбивання:СфераСтворення сфери_Створення сфери...СферичнийК_ут променя (-1: - випадковий):Спіраль_Щільність променя:Товщина плям:СпіральКількість точок спіраліРадіус плями:ПлямиРозсіюванняДіапазон розсіюванняРозсіювання..._Експонента сили:СтандартСтандартне (R,G,B)Кількість точок зіркиПочатковий _номер:Початковий кут:Початковий зсув:Неправильна початкова сторінкаКрокРозмір кроку:Зупинятись коли різниця точок менша за їхні значенняРозтягнутиРозтягнути _HSVЗбій StretchBlt (hDC, %d, %d, %d, %d, hdcMem, %d, 0, %d, 1, SRCCOPY), помилка = %d, y = %d_Щільність мазків:СильнеСтиль_Наднова...Підрозділяти:Підвибірка:Підкроки:НадноваВибір кольору НадновоїВи_хор CWПереставити дві кривіВихорПеремикнутись на "З бази" з останньою базоюПроти годинниковоюЗа годинниковоюСимволКанал TIFFЗображення TIFFTWAIN (дамп)...TWAIN (читання)..._Розсічений_Насиченість елементу:_Розмір елементу:П_розоре тло_Турбулентність:_ТурбулентнийПараметри створення таблиціПараметри таблиціЗображення TarGAЦільTel_netТимчасовеТимчасова процедураЗгладжування текстуТекстураВластивості текстуриПеретворення текстуриТекстура:ТекстуриДякуємо вам, за те що вибрали GIMPФормат GIF підтримує коментарі лише у 7-бітному ASCII. Коментар не збережений.Файли довідки GIMP не встановлені.GIMPімпресіоністТипові параметри GIMPімпресіоністУ файлі формату PNG вказано зсув, який призводить до розташування шару за межами зображення.Формат TIFF підтримує лише 7-бітні ASCII +коментарі. Коментар не збережено.Розмір заповнення комірок.Розмір інтервалу між комірками.Розмір відблиску на краях кожного елементуДіапазон кутів першого пензляВибрати розмір пензля, що найбільш співпадає з початковим зображеннямЧорний та білий.Коментар типово обмежений довжиною %d символів.Глибина тіни, визначає, як далеко від об'єкту вона має бутиВибирається напрямок, найбільш співпадає з оригінальним зображеннямВідстань від центру зображення визначає напрям мазкаВідстань від центру зображення визначає розмір мазкаПерший рядок зображенняВисота кожної комірки. Може бути числом чи відсотками.Відтінок ділянки визначає напрямок мазкаРозмір мазка буде визначатись відтінком ділянкиЗображення, яке ви намагаєтесь зберегти як GIF містить шари, що виходять за дійсні межі зображення. Це недопустимо в GIF. Ви можете або обрізати всі шари по межі зображення, або скасувати це збереження.Зображення, яке ви хочете зберегти як XBM, містить більше двох кольорів. -Перетворіть його у чорно-біле (1-бітове) індексоване зображення та спробуйте знову.Найбільший пензель, що створюєтьсяКанал зберігає прозорість.Назва "%s" вже використовується!Назва "%s" вже використовується!Кількість напрямків (тобто пензлів)Кількість точок в рамці таблиці.Кількість розмірів пензлівВідносна щільність мазків пензлемНайменший пензель, що створюєтьсяПоле sm-вектор. Ліва кнопка миші - переміщення вибраного sm-вектора, права кнопка - вказування sm-вектора мишею, середня кнопка - додавання нового sm-вектора.Мазки рівномірно розподіляються по зображеннюМазки відповідні до "плаваючого" візерункуТекст підпису таблиці.Текст, що пишеться у кожну комірку.Такий тип файлів SUN-raster не підтримуєтьсяСкорочення одиниці (наприклад, "см" для сантиметрів).Одиниця в множині.Одиниця в однині.Символ одиниці, якщо він є (наприклад "'" для дюймів). Використовуйте абревіатури, для одиниць які не мають символу.Векторне поле. Клацання лівою кнопкою пересуває вибраний вектор, клацання правою - вказує вектор, клацання середньою - додає новий вектор.Ширина кожної комірки. Може бути числом чи відсотками.Недостатньо шарів для вирівнювання.Помилка при читанні файлів довідки GIMP.Це поле - підказка для поля числового воду. Воно вказує кількість десяткових знаків у полі вводу, які будуть давати приблизно таку ж точність як поле вводу дюймів з двома десятковими знаками.Глибина цього зображення не підтримуєтьсяНе є GIF файломРядок, який буде використовуватись для ідентифікації одиниці в конфігураційному файлі GIMP._Поріг:Поріг альфа-каналуПоріг альфа-каналу: Фарбування прозорості...Поріг:ЧерепицяРозрізати початкове зображення: корисно для безмежних площинРозмір площі покриттяНарізатиБез швівРозтин...Елементи мозаїкиУкладка черепиці...ВВ колірДо:ІнструментиВерх:_ЗамикаючийПередача TWAIN-даних...Перетворення %sПрозорийОбробляти як цеОбмежувати розмірТурбулентність:ТипНе підтримується тип мапи кольорівТип чорнил у принтеріТип джерела світлаТип носія, на який відбуватиметься друкТип об'єкту відображенняТип:URLURL: %sДеоптимізація анімації...Не вдається додати додаткову точку. -Розмір нестиснутого файлу: %sСкасуватиСкасувати останню зміну масштабуОдиницяРедактор одиницьМножник одиниці не може бути 0.ОдиниціОдиниці:Невідома модель кольорів у PNG файлі "%s".Невідома причинаБез_назвиЗняти виділенняЗняти виділення із всьогоНечітка маскаНепідтримувана кількість кольорів (%d)!Непідтримувана формат пензляНепідтримуваний формат або буфер обміну!Без_назвиНезвичайний вигляд файлу PCXОновитиВерхній лівий кут _X:Верхній лівий кут _Y:ПеревенутаВикористовувати напрямні GimpВикористовувати початковий -розмір зображенняВикористовувати прозоре тло; лише нанесені мазки будуть видиміВикористовувати середнє значенняВикористовувати косинусоїдну функцію для цієї складової кольору.Використовувати лінійне відображення замість будь-якої тригонометричної функції для цього каналу кольоруВикористовувати згладжування "log log" для уникнення "швів"Використовувати згладжування "log log"Використовувати зворотне значенняВикористовувати синусоїдну функцію для цієї складової кольору._ЯскравістьЯскравістьІнверсія значення...Розповсюдження значеньРозповсюдження значень...Зміна значеньЯскравість:Ван Гог (LIC)Ван Гог (LIC)..._Кут вектора:_Довжина вектора:ВекториВертикальнаКолір вертикалейВертикальноВідеоВідео/RGB...Перегляд джерелаВ режимі "Вороной" лише найближчий до заданої точки sm-вектор має впливВ режимі "Вороной" лише найближчий до заданої точки вектор має впливВихо_рВихор_2Вихор_3WAI_SПопередженняПопередження: +Перетворіть його у чорно-біле (1-бітове) індексоване зображення та спробуйте знову.Найбільший пензель, що створюєтьсяКанал зберігає прозорість.Назва "%s" вже використовується!Назва "%s" вже використовується!Кількість напрямків (тобто пензлів)Кількість точок в рамці таблиці.Кількість розмірів пензлівЗсув можна скорегувати перетягуванням перегляду з використання середньої кнопки.Відносна щільність мазків пензлемНеможливо завантажити запитаний URL:Найменший пензель, що створюєтьсяПоле sm-вектор. Ліва кнопка миші - переміщення вибраного sm-вектора, права кнопка - вказування sm-вектора мишею, середня кнопка - додавання нового sm-вектора.Початковий кут першого пензляМазки рівномірно розподіляються по зображеннюМазки відповідні до "плаваючого" візерункуТекст підпису таблиці.Текст, що пишеться у кожну комірку.Такий тип файлів SUN-raster не підтримуєтьсяСкорочення одиниці (наприклад, "см" для сантиметрів).Одиниця в множині.Одиниця в однині.Символ одиниці, якщо він є (наприклад "'" для дюймів). Використовуйте абревіатури, для одиниць які не мають символу.Векторне поле. Клацання лівою кнопкою пересуває вибраний вектор, клацання правою - вказує вектор, клацання середньою - додає новий вектор.Ширина кожної комірки. Може бути числом чи відсотками.Недостатньо шарів для вирівнювання.Помилка при читанні файлів довідки GIMP.Це поле - підказка для поля числового воду. Воно вказує кількість десяткових знаків у полі вводу, які будуть давати приблизно таку ж точність як поле вводу дюймів з двома десятковими знаками.Глибина цього зображення не підтримуєтьсяНе є GIF файломРядок, який буде використовуватись для ідентифікації одиниці в конфігураційному файлі GIMP.Цей інструмент не має кольоруП_оріг:Поріг альфа-каналуПоріг альфа-каналу: Фарбування прозорості...Поріг:_Інтервал між елементами:ЧерепицяВ_исота плитки:_Чистота елементів:_Ширина плитки:Розрізати початкове зображенняРозрізати початкове зображення: корисно для безмежних площинРозмір площі покриттяНарізатиБез швівРозтин...Елементи мозаїкиУкладка черепиці...ВВ колірВ_низУ _полярніП_раворучВг_ору_ЛіворучДо:Параметри інструментуІнструментиВерхній крайЗверху _зліваВерх:_ЗамикаючийПередача TWAIN-даних...Перетворення %sПрозорийПрозоре тлоОбробляти як цеПерегляд деревомОбмежувати розмірТурбулентність:ТипНе підтримується тип мапи кольорівТип чорнил у принтеріТип джерела світлаТип носія, на який відбуватиметься друкТип об'єкту відображенняТип:URLURL: %sРозоптимізація анімації...Не вдається додати додаткову точку. +Не вдається зберегти '%s'. Файл формату psd не підтримує зображення шириною чи висотою більше ніж 30000 точок.Не вдається зберегти '%s'. Файл формату psd не підтримує зображення з шарами, ширина чи висота яких більша ніж 30000 точок.Розмір нестиснутого файлу: %sСкасуватиСкасувати останню зміну масштабуОдиницяРедактор одиницьМножник одиниці не може бути 0.ОдиниціОдиниці:Невідома модель кольорів у PNG файлі "%s".Невідома причинаБез_назвиНерозпізнаний чи неправильний формат BMP.Зняти виділенняЗняти виділення із всьогоНечітка маскаНепідтримувана кількість кольорів (%d)!Непідтримувана формат пензляНепідтримуваний формат або буфер обміну!Без_назвиНезвичайний вигляд файлу PCXОновити_Автооновлення переглядуВгорі ліворучВерхній лівий кут _X:Верхній лівий кут _Y:Вгорі праворучПеревернутаВикористовувати _макроси замість структурВикористовувати напрямні...Використовувати напрямні GimpВикористовувати початковий +розмір зображенняВикористовувати _1-байтове RLEВикористовувати прозоре тло; лише нанесені мазки будуть видиміВикористовувати середнє значенняВикористовувати косинусоїдну функцію для цієї складової кольору.Використовувати циклічний діапазонВикористовувати лінійне відображення замість будь-якої тригонометричної функції для цього каналу кольоруВикористовувати згладжування "log log" для уникнення "швів"Використовувати згладжування "log log"Використовувати мапу значеньПерезапустити маркериВикористовувати зворотне значенняВикористовувати синусоїдну функцію для цієї складової кольору.Використовувати субкольориВикористовувати колір тлаВикористовувати колір зображенняВикористовувати колір переднього плану_ЯскравістьЯскравістьІнверсія значення...Розповсюдження значеньРозповсюдження значень...Зміна значеньЯскравість:Ван Гог (LIC)Ван Гог (LIC)..._Кут вектора:Дов_жина вектора:Довжина вектора:ВекториВ_ертикальна основа:ВертикальнаКолір вертикалейВертикальноДуже темнийВі_део...ВідеоВідео візерунокВідео/RGB...Перегляд джерелаВ режимі "Вороной" лише найближчий до заданої точки sm-вектор має впливВ режимі "Вороний" лише найближчий до заданої точки вектор має впливВихо_рВихор_2Вихор_3WAI_SУ файлі WMF +не вказано розмір!_Вихор та щипок...З _початковим зображенням_Записати додатковий файл маскиПопередженняПопередження: Зображення, яке ви намагаєтесь завантажити має 16 біт на канал. GIMP підтримує лише 8 біт на канал, тому зображення буде перетворене. В процесі перетворення частина інформації буде втрачена.Попередження: -Прозорий колір може некоректно відображатись у переглядачах, які не підтримують прозорість.Попередження: '%s' - цей файл параметрів призначений для більш нової версії "Дослідника CML".Попередження: '%s' - це файл старого формату.Увага: джерело і призначення в одному каналі.Увага: в XJT збережено непідтримуваний режим шару %dУвага: в XJT збережено непідтримуваний тип контуру %dПопередження: в XJT збережено одиницю непідтримуваного типу %dДеформаціяВикривляється кадр № %d...Викривлення...Тип хвиліХвиліСтворення хвиль...СлабкеВеб-переглядач не вказано. -Необхідно визначити його у діалоговому вікні Налаштовування.Якщо вибрано, вихідне зображення буде масштабуватись до заповнення вказаного розміру без зміни пропорцій.Вихор та щипокСтворення вихрів та щипків...БілийШирина паперу для друкуШирина:ВітерВікнаЗначки Windows не можуть бути вищими ніж 255 точокЗ степенем градієнта (0,1)Із степенем p і випадковим числом (0,1)З випадковим степенем (0,1)З випадковим степенем (0,10)ДеревоЗавертатиМасштаб X (розмір)X:Параметри XBMФайл XJT містить невідомий режим шару %dXJT-файл містить невідомий тип контуру %dфайл XJT містить одиницю невідомого типу %dXмакс:Xмін:Неправильний файл XPMX_1:X_2:Масштаб Y (розмір)Y:Yмакс:Yмін:Y_1:Y_1:ЖовтийЖовтий:Жовтий_KВи майже створили величезний +Прозорий колір може некоректно відображатись у переглядачах, які не підтримують прозорість.Попередження: '%s' - цей файл параметрів призначений для більш нової версії "Дослідника_CML".Попередження: '%s' - це файл старого формату.Увага: джерело і призначення в одному каналі.Увага: в XJT збережено непідтримуваний режим шару %dУвага: в XJT збережено непідтримуваний тип контуру %dПопередження: в XJT збережено одиницю непідтримуваного типу %dДеформаціяВикривляється кадр № %d...Викривлення...Тип хвиліХвиліСтворення хвиль...СлабкеВеб-переглядач не вказано. +Необхідно визначити його у діалоговому вікні Налаштовування.Якщо вибрано, вихідне зображення буде масштабуватись до заповнення вказаного розміру без зміни пропорцій.Вихор та щипокСтворення вихрів та щипків...БілийВі_тер...Ширина (у точках):Ширина паперу для друкуШирина:ВітерВікнаЗображення Windows BMPЗначки Windows не можуть бути вищими ніж 255 точокЗ степенем градієнта (0,1)Із степенем p і випадковим числом (0,1)З випадковим степенем (0,1)З випадковим степенем (0,10)ДеревоПрацювати з копі_єюЗавертатиПомилка при записуванніЗображення X BitMapЗображення X PixMapМасштаб X (розмір)Дамп X windowX:Параметри XBMФайл XJT містить невідомий режим шару %dXJT-файл містить невідомий тип контуру %dфайл XJT містить одиницю невідомого типу %dXмакс:Xмін:Неправильний файл XPMфайл XWD %s має формат %d, глибину %d +і %d бітів на точку. +Зараз це не підтримується.Позиція XY:X_1:X_2:Масштаб Y (розмір)Y:Yмакс:Yмін:Y_1:Y_1:ЖовтийЖовтий:Жовтий_KВи майже створили величезний HTML-файл, який майже напевне -призведе до збою вашого броузера.Не можна повертати все зображення, якщо в ньому є плаваюче виділення.Не можна повертати все зображення, якщо в ньому є виділена ділянка.Не вдається зберегти маску курсора в -зображенні, яке не має альфа-каналів.Масштаб Z (розмір)Z:Старанне кадрування(tm)...МасштабЗбільшитиЗбільшитиЗменшитиЗменшити_3x3С_корочення:_Адаптивне_Доповнюючий_Додатково_Альфа_Альфа:_Величина:_Амплітуда:_Кут:_АнімуватиЗг_ладжування контуру_Автоматичне перетворювати_Азимут:_Тло_Основний URL:_Білінійний_Чорний_Чорний_Порив вітру_Змішування_Синій_Синій:_Рамка:_Низ:_Паралелепіпед_Яскравість_Яскравість:_Пензель_Карта рельєфу_Рельєф_Копіювати_СтисненняГ_либина:_Похідна_Опис:_Подробиці:_Цифри:_Заміщення:_Спотворений_Крапки_ПравкаЗображення _ефекту:_Підвищення:_Чеканка_Encapsulated PostScriptВс_е зображенняКарта _середовища_Експонента:_Множник:_ФайлНазва _файлу:_Шрифт:_Підсилювати_Фрактали_Вільна_FTP-сайтГ_ама:_Загальне_Gopher_Градієнт_Сірий:_Зелений_Зелений:_Сірий_Ріст_Висота_Висота:_Довідка_ШестикутникПрих_ована_Фіксація:Г_оризонтально_Горизонтальна:_Горизонтальний інтервал:_Відтінок_Ідентифікатор:_Ідеальний_Ігнорувати_ДюймSPI на в_ході:Вст_авитиЧ_ерезрядковість (Adam7)_Інвертувати_JPEG_JavaScriptЗ_берігати NCSA колаВ_идалити_LZW_Лапласа_Велика шахівницяЗ_ліва_Ліва починається з:_Світло_Лінійний_ЛініїПо_силання_Нижнього_MIMEВ_ідображення_Матеріал_Максимум (%):_Максимальна глибина:_Напівтони_Міліметр_Віддзеркалити_Різні параметри_Монохромний_ПереміститиКількість секторів в _ширину:_Немає_Звичайний_Упаковані біти_Параметри_Період:_Фаза:_Пінґ-понґМно_жина:_Багатокутник_Параметри_Попередній переглядПере_гляд!_Запрошення для вводу інформації про ділянку_Психоделія_RGB_RLE стисненняКодовано _RLE_Радіальний_Радіус:_Перемішати_Промені_Отримувач:_Прямокутник_Червоний:_Повернути %s_ВідбиваютьсяВ_идалити_Візуалізація_Потрібен типовий URLС_права_Права межа_Повернутий_Насиченість_Насиченість:З_найти:_Другорядні спалахи_Відправник:_Параметри_Різкість:_Розмір_Розмір:_РозмазатиПрив'_язка до сітки_Швидкість:_Плями:_Квадратні_КвадратиШа_хівниця_Сила:С_имвол:Назва/Ід _цільового кадру: (необов'язково - лише для кадрів)_Товщина:_Поріг:_Поріг:_Заголовок:С_ервіс_Верхня починається з:_Верх:_Прозорі_URL, що активізується при клацанні на цій ділянці: (обов'язково)_Скасувати %s_Оновити_Верхнього_Верхня межа_Використовувати обробники подвоєного розміруUuencode_Яскравість:_Яскравість:_Різновид:_Вертикальний інтервал:_ВертикальноВертикально:_Вигляд_Вороной_ДеформаціяРівень _води:_Довжина хвилі:_Веб-сайт_БілийЗ _широкими смугами_Ширина_Ширина:_Вітер_ПереноситиМасштаб _X:_X:Масштаб _Y:_Y:_Жовтий_Z:_МасштабМас_штаб:"Типовий" створено._Одне вікночерезальфачорнийсинійblueness_cb470blueness_cb470fblueness_cb709blueness_cb709fсмблакитнийблакитний_k_ел.адресазеленийвідтінокнеправильно сформований файл градієнтного спалаху: %s -k(1-x^p)Покрокова k(1-x^p)kx^pПокрокова kx^pk{x(1-x)}^pПокрокова k{x(1-x)}^pluma_y470luma_y470fluma_y709luma_y709fпурпурнийпурпурний_kмілісекундне знайдено %s в списку градієнтних спалахівточкиточок з_верхуточок з_ліваточок/%aчервонийredness_cr470redness_cr470fredness_cr709redness_cr709fнасиченістьпокрокова sin^pфункція основана на sin^pпевна помилка у розширенні файлуВесь _екраняскравістьx (у точках)y (у точках)жовтийжовтий_k \ No newline at end of file +призведе до збою вашого переглядача.Не можна повертати все зображення, якщо в ньому є плаваюче виділення.Не можна повертати все зображення, якщо в ньому є виділена ділянка.Не вдається зберегти маску курсора в +зображенні, яке не має альфа-каналів.Масштаб Z (розмір)Z:Зображення ZSoft PCXСтаранне кадрування(tm)...МасштабЗбільшитиЗбільшити (робить зображення більшим)ЗменшитиЗменшити (робить зображення меншим)Масштаб:Масштаб_3x3С_корочення:_Про доповнення "Мапа зображення"..._АдаптивнаД_оповнюючийД_одатково_Додаткові параметри_Алгоритм:_АльфаПоріг _альфа-каналу:_Альфа-усікання середнє_Альфа:_Величина:_Амплітуда:К_ут:_АнімуватиЗгладжувати кон_тур_Застосування полотна..._Автокадрування зображенняШар _автокадрування_Автоматичне перетворювати_Азимут:_ТлоКолір _тла_Основний URL:Ширина _фаски:_Білінійний_ЧорнийРівень _чорного:_ЧорнийПор_ив вітру_Змішування_Жалюзі...С_инійС_иній:_Розмивання_Радіус розмивання:Пошук с_ереднього значення кольору..._Рамка:З_низу зліва_Низ:_Паралелепіпед_Яскравість:_Яскравість_Яскравість:_Пензель_Кількість кольорів:Карта _рельєфу_Карта рельєфу..._Карта рельєфу:_Рельєф_Шахівниця...О_чиститиПідсилення _кольоруЗаміна _кольору..._Фарбування..._ЗмістМатриця _згортання..._КопіюватиК_убізм..._Криве згинання..._Розкладання..._СтисненняРадіус _деформації:Прибирання _черезрядковісті...Якщо _затримка між кадрами не зазначена, вона дорівнює:Об'єднання _глибинГ_либина:По_хідна_Опис:П_одробиці:_Дифракційні візерунки..._Цифри:_ВорсистістьЗ_міщення..._Заміщення:_СпотвореноД_ілення:_Крапки_Динамічно:П_ідсилення грані_Краї..._ПравкаЗображення _ефекту:Під_вищення:_Чеканка_Чеканка..._Encapsulated PostScriptВс_е зображенняКарта с_ередовищавка_заного сектору_Експонента:_Освітлення переднього плану/тла_Множник:Поча_ткові параметри_ФайлНазва _файлу:_Плівка..._Набір фільтрів...Довжина _фільтруЗ_найти Backdrop_Розтягувати до висоти зображення_Полум'я..._ВідблискFX..._Шрифт:Підс_илюватиПримусова _безшовністьПеред_ній план та тлоКолір п_ереднього плануМа_ксимальний колір переднього плану_Формат:Перегляд _фракталів..._Фрактальний слід_ФракталиВ_ільна_FTP-сайт_GFlare...Коментар _GIF:_GIMPімпресіоніст...Г_ама:_Гаусеве розмивання (IIR)..._ЗагальнеСтворити _повний документ HTML_Gfig..._Скляна плитка..._Радіус розмивання:_Плаваючий:_GopherГ_радієнт_Градієнтна мапа_Сірий:_Зелений_Зелений:_СірийС_іткаРозмір _сітки:_Сітка..._РістГ_ільйотина...Кольорова модель _HSL_Висота_Висота:_Довідка_ШестикутникПрих_ована_ВисокийЗ_берігати максимальні канали_Фіксація:_Зсув отворів:Г_оризонтально_Горизонтальний стиль:Г_оризонтально:_Горизонтальний інтервал:_Гарячі кольори...Від_тінокОбертання _відтінку:_Кидок..._Ідентифікатор:_IFS фрактал..._IIR_Інтерактивне спотворення..._ІдеальноПрефікс _ідентифікатора:_Ігнорувати_Ігнорувати нижній шар навіть якщо він видимий_Ілюзія..._Мапа зображення..._Дюйм_Незалежний RGBSPI на в_ході:Вст_авитиІн_тенсивність:_ЧерезрядковістьЧ_ерезрядковість (Adam7)_Інвертувати_JPEG_JavaScript_Головоломка...З_берігати NCSA колаЗ_берігати пропорціїЗ_берегти оригінальне оточенняЗ_берігати знак результату (лише один напрямок)В_идалити_LZW_Лапласа_Велика шахівницяЗ_ліва_Ліва починається з:Коефіцієнт заломлення _лінзи:С_вітло_Світлові ефекти..._Обмеження ширини лінії_Лінійний_ЛініїПо_силанняЗа_вантажити початкові параметри_Фіксувати каналиНескінченний _цикл_НизькийН_ижнього_MIMEНадіс_лати зображення..._Зробити без швів_Робити оточення прозоримВідобразити _назадТип _мапи:В_ідображенняРозширення файлу _маски:_Радіус маски:Розмір _маски:_Матеріал_Максимум (%):_Максимальна глибина:Максим_ум RGB..._Макс. Дельта:_Лабіринт..._МеталічнийС_ереднє значення_Напівтони_МіліметрМ_інімальне значення:_Віддзеркалити_Різні параметриЗм_інити канал відтінкуЗ_мінити канал червоного_Монохромний_МозаїкаРозмивання р_ухом..._ПереміститиНе_лінійний фільтр...П_риродній колір_Неон...Кількість секторів в _ширину:Величина _шуму:_Немає_Звичайний_НормалізуватиВисота _чисел:_Кількість сегментів:_Непрозорість:_Оптимізація (різниця)_Упаковані біти_Загнута сторінка...Тип _палітри:Розріз _паперу...П_араметри_Відсоток чорного:П_еріод:_Фаза:_Фотографія..._Вибір...Величина _щипка:_Пінґ-понґ_Поверхні з впадинами_Пікселізація..._Плазма..._Відтворення...Перегляд _доповненьМно_жина:Г_ладкість:_Багатокутник_PostScript level 2_Префікс назви:З_берігати яскравість_Параметри_Попередній переглядОдноразовий _перегляд_ПереглядД_рукД_ук..._Запрошення для вводу інформації про ділянку_Швидкість розповсюдження:_Психоделія_Q-біст..._Якість:_RGBКольорова модель _RGB_RLE_RLE стисненняКодовано _RLE_Радіальний_Радіус 1:_Радіус:_Випадковий відтінок:_База випадковості:Пере_мішати_Промені_Отримувач:_Прямокутник_Червоний:Повт_орити %s_ВідбиваютьсяВ_идалитиВ_идалити Backdrop_Візуалізація_Потрібен типовий URLЗ_берегти безшовність_Retinex...Сп_рава_Права межа_Брижі..._ПовернутийФарбування за _зразком..._Насиченість_Насиченість:З_берегти коментар у файліЗ_берегти початкові параметриДілення _шкали:_Масштаб:Роз_сіювання RGB..._Знімок екрану..._Глибина пошуку:З_найти:_Другорядні спалахи_Вибіркове Гаусеве розмивання...Напів_зведення..._Відправник:_Встановити оточення у колір тла_Встановити оточення в індекс 0П_араметри_Тінь під загиномПідвищення _різкості...Р_ізкість:З_сув..._Блискучість:_Показати курсорС_инус..._Розмір_Розмір:_Пляма..._Дрібна черепиця..._РозмазатиЗ_гладжування:Прив'_язка до сітки_Собел..._М'який жар_Суцільний шум..._Іскри..._Швидкість:Дов_жина променів:Пл_ями:К_рапельна функція:_Квадратні_КвадратиШа_хівниця_Сила:_Розтягнути контраст..._ШтрихС_имвол:_TWAIN...Назва/Ід _цільового кадру: (необов'язково - лише для кадрів)_Товщина:П_оріг:_Поріг альфа-каналу...П_оріг:Пов_торення рельєфу_Розмір елементу:_Черепиця..._Заголовок:С_ервіс_Верхня починається з:З_верху справа_Верх:_Прозоре_URL, що активізується при клацанні на цій ділянці: (обов'язково)_РозоптимізуватиВ_ернутиВ_ернути %s_ОдноріднийРедактор _одиниць_Нечітка маска..._ОновитиВ_ерхнього_Верхня межа_Верхній поріг:_Використовувати типи GLib (guint8*)_Використовувати колір тлаВикористовувати _об'єднання комірок_Використовувати обробники подвоєного розміру_Використовувати алгоритм яскравості_Використовувати (невидимий) нижній шар як основу_Uuencode_Яскравість:_Інверсія значення..._Розповсюдження значень..._Яскравість:_Ван Гог (LIC)..._Різновид:_Вертикальний інтервал:_Вертикально_Вертикальний стиль:_Вертикально:_Вигляд_Вороний_ДеформаціяД_еформація...Рівень _води:Дов_жина хвилі:_Хвилі..._Веб-сторінкаКут _вихору:_БілийРівень _білого:З _широкими смугами_Ширина_Ширина:_ВітерЗ _білим шумомПере_носити_Безшовне зображення_Записати значення "гарячих точок"Масштаб _X:Зміщення по _X:Зсув по _X:Коефіцієнт по _X:Розмір по _X:Бітова карта формату _X10_X:Масштаб _Y:Зміщення по _Y:Зсув по _Y:Коефіцієнт по _Y:Розмір по _Y:_Y:_Жовтий_Z:_Старанне кадрування(tm)..._МасштабМас_штаб:"Типовий" створено._Одне вікночерезальфаautostretch_hsv: cmap було NULL! Вихід... +чорнийсинійblueness_cb470blueness_cb470fblueness_cb709blueness_cb709fархів bzipc_astretch: cmap було NULL! Вихід... +смблакитнийблакитний_k_ел.адресазеленийархів gzipвідтінокнеправильно сформований файл градієнтного спалаху: %s +k(1-x^p)Покрокова k(1-x^p)kx^pПокрокова kx^pk{x(1-x)}^pПокрокова k{x(1-x)}^pluma_y470luma_y470fluma_y709luma_y709fпурпурнийпурпурний_kмілісекундне знайдено %s в списку gflares_listточкиточок з_верхуточок з_ліваточок/%aчервонийredness_cr470redness_cr470fredness_cr709redness_cr709fнасиченістьпокрокова sin^pфункція основана на sin^pпевна помилка у розширенні файлуВесь _екрану альфа-каналяскравістьx (у точках)y (у точках)жовтийжовтий_k \ No newline at end of file diff -uraN gimp-2.2.4/po-plug-ins/uk.po gimp-2.2.5/po-plug-ins/uk.po --- gimp-2.2.4/po-plug-ins/uk.po 2005-02-22 23:12:39.000000000 +0100 +++ gimp-2.2.5/po-plug-ins/uk.po 2005-04-09 23:09:26.000000000 +0200 @@ -7,8 +7,8 @@ msgstr "" "Project-Id-Version: gimp-plug-ins 2.0.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-02-22 23:04+0100\n" -"PO-Revision-Date: 2004-04-16 20:58+0200\n" +"POT-Creation-Date: 2005-04-09 21:56+0200\n" +"PO-Revision-Date: 2005-02-24 20:58+0200\n" "Last-Translator: Maxim Dziumanenko \n" "Language-Team: Ukrainian \n" "MIME-Version: 1.0\n" @@ -68,7 +68,7 @@ #: ../plug-ins/FractalExplorer/Dialogs.c:680 msgid "_Parameters" -msgstr "_Параметри" +msgstr "П_араметри" #: ../plug-ins/FractalExplorer/Dialogs.c:683 msgid "Fractal Parameters" @@ -197,7 +197,7 @@ #: ../plug-ins/FractalExplorer/Dialogs.c:879 ../plug-ins/common/sinus.c:879 msgid "Co_lors" -msgstr "_Кольори" +msgstr "К_ольори" #. Number of Colors frame #: ../plug-ins/FractalExplorer/Dialogs.c:883 @@ -384,7 +384,7 @@ #: ../plug-ins/common/pat.c:433 ../plug-ins/common/pcx.c:585 #: ../plug-ins/common/pix.c:515 ../plug-ins/common/png.c:1178 #: ../plug-ins/common/pnm.c:809 ../plug-ins/common/postscript.c:1123 -#: ../plug-ins/common/psd_save.c:1588 ../plug-ins/common/raw.c:517 +#: ../plug-ins/common/psd_save.c:1336 ../plug-ins/common/raw.c:517 #: ../plug-ins/common/raw.c:544 ../plug-ins/common/spheredesigner.c:2088 #: ../plug-ins/common/sunras.c:513 ../plug-ins/common/tga.c:1030 #: ../plug-ins/common/tiff.c:1810 ../plug-ins/common/xbm.c:996 @@ -449,9 +449,8 @@ msgstr "Файл \"%s\" пошкоджений. Рядок %d розділу параметрів неправильний" #: ../plug-ins/FractalExplorer/FractalExplorer.c:269 -#, fuzzy msgid "_Fractal Explorer..." -msgstr "Додати контур дослідника фракталів" +msgstr "Перегляд _фракталів..." #: ../plug-ins/FractalExplorer/FractalExplorer.c:400 msgid "Rendering Fractal..." @@ -523,9 +522,8 @@ msgstr "Світлові ефекти..." #: ../plug-ins/Lighting/lighting_main.c:197 -#, fuzzy msgid "_Lighting Effects..." -msgstr "Світлові ефекти..." +msgstr "_Світлові ефекти..." #. General options #: ../plug-ins/Lighting/lighting_ui.c:261 @@ -533,16 +531,14 @@ msgstr "Загальні параметри" #: ../plug-ins/Lighting/lighting_ui.c:269 -#, fuzzy msgid "T_ransparent background" -msgstr "_Прозоре тло" +msgstr "П_розоре тло" #: ../plug-ins/Lighting/lighting_ui.c:279 msgid "Make destination image transparent where bump height is zero" msgstr "Зробити результуюче зображення прозорим на нульовій висоті рельєфу" #: ../plug-ins/Lighting/lighting_ui.c:282 -#, fuzzy msgid "Cre_ate new image" msgstr "С_творити нове зображення" @@ -552,7 +548,6 @@ msgstr "Створювати нове зображення на застосуванні фільтру" #: ../plug-ins/Lighting/lighting_ui.c:294 -#, fuzzy msgid "High _Quality preview" msgstr "Високо_якісний попередній перегляд" @@ -566,34 +561,28 @@ msgstr "Настройка світла" #: ../plug-ins/Lighting/lighting_ui.c:344 -#, fuzzy msgid "Light 1" -msgstr "Світло" +msgstr "Світло 1" #: ../plug-ins/Lighting/lighting_ui.c:345 -#, fuzzy msgid "Light 2" -msgstr "Світло" +msgstr "Світло 2" #: ../plug-ins/Lighting/lighting_ui.c:346 -#, fuzzy msgid "Light 3" -msgstr "Світло" +msgstr "Світло 3" #: ../plug-ins/Lighting/lighting_ui.c:347 -#, fuzzy msgid "Light 4" -msgstr "Світло" +msgstr "Світло 4" #: ../plug-ins/Lighting/lighting_ui.c:348 -#, fuzzy msgid "Light 5" -msgstr "Світло" +msgstr "Світло 5" #: ../plug-ins/Lighting/lighting_ui.c:349 -#, fuzzy msgid "Light 6" -msgstr "Світло" +msgstr "Світло 6" #. row labels #: ../plug-ins/Lighting/lighting_ui.c:358 @@ -602,9 +591,8 @@ msgstr "Тип:" #: ../plug-ins/Lighting/lighting_ui.c:363 -#, fuzzy msgid "Color:" -msgstr "_Колір:" +msgstr "Колір:" #: ../plug-ins/Lighting/lighting_ui.c:370 msgid "Directional" @@ -621,7 +609,6 @@ #: ../plug-ins/Lighting/lighting_ui.c:388 #: ../plug-ins/MapObject/mapobject_ui.c:679 -#, fuzzy msgid "Select lightsource color" msgstr "Вибір кольору джерела світла" @@ -631,12 +618,10 @@ msgstr "Вказати колір джерела світла" #: ../plug-ins/Lighting/lighting_ui.c:408 -#, fuzzy msgid "_Intensity:" -msgstr "Інтенсивність" +msgstr "Ін_тенсивність:" #: ../plug-ins/Lighting/lighting_ui.c:414 -#, fuzzy msgid "Light intensity" msgstr "Початкова інтенсивність" @@ -734,24 +719,20 @@ msgstr "Напрямок джерела світла по Z в просторі XYZ" #: ../plug-ins/Lighting/lighting_ui.c:502 -#, fuzzy msgid "I_solate" -msgstr "_Стиснення" +msgstr "Відді_лити" #: ../plug-ins/Lighting/lighting_ui.c:512 -#, fuzzy msgid "Lighting preset:" msgstr "Світлові ефекти" #: ../plug-ins/Lighting/lighting_ui.c:558 -#, fuzzy msgid "Material properties" msgstr "Властивості текстури" #: ../plug-ins/Lighting/lighting_ui.c:576 -#, fuzzy msgid "_Glowing:" -msgstr "Плаваючий" +msgstr "_Плаваючий:" #: ../plug-ins/Lighting/lighting_ui.c:592 #: ../plug-ins/MapObject/mapobject_ui.c:859 @@ -760,7 +741,6 @@ "Степінь фарбування власним кольором там куди не потрапляють прямі промені" #: ../plug-ins/Lighting/lighting_ui.c:605 -#, fuzzy msgid "_Bright:" msgstr "_Яскравість:" @@ -770,9 +750,8 @@ msgstr "Інтенсивність початкового кольору при освітленні джерелом світла" #: ../plug-ins/Lighting/lighting_ui.c:634 -#, fuzzy msgid "_Shiny:" -msgstr "_Синус" +msgstr "_Блискучість:" #: ../plug-ins/Lighting/lighting_ui.c:650 #: ../plug-ins/MapObject/mapobject_ui.c:960 @@ -781,7 +760,7 @@ #: ../plug-ins/Lighting/lighting_ui.c:662 msgid "_Polished:" -msgstr "" +msgstr "Г_ладкість:" #: ../plug-ins/Lighting/lighting_ui.c:678 #: ../plug-ins/MapObject/mapobject_ui.c:989 @@ -791,10 +770,9 @@ #. Metallic #: ../plug-ins/Lighting/lighting_ui.c:687 msgid "_Metallic" -msgstr "" +msgstr "_Металічний" #: ../plug-ins/Lighting/lighting_ui.c:723 -#, fuzzy msgid "E_nable bump mapping" msgstr "_Увімкнути рельєфне відображення" @@ -803,7 +781,6 @@ msgstr "Увімкнути/вимкнути рельєфне перетворення (глибина зображення)" #: ../plug-ins/Lighting/lighting_ui.c:755 -#, fuzzy msgid "Bumpm_ap image:" msgstr "_Зображення рельєфу:" @@ -829,10 +806,9 @@ #: ../plug-ins/Lighting/lighting_ui.c:771 msgid "Cu_rve:" -msgstr "_Крива:" +msgstr "К_рива:" #: ../plug-ins/Lighting/lighting_ui.c:776 -#, fuzzy msgid "Ma_ximum height:" msgstr "М_аксимальна висота:" @@ -841,18 +817,16 @@ msgstr "Максимальна висота рельєфу" #: ../plug-ins/Lighting/lighting_ui.c:811 -#, fuzzy msgid "E_nable environment mapping" -msgstr "У_вімкнути відображення середовища" +msgstr "_Увімкнути відображення середовища" #: ../plug-ins/Lighting/lighting_ui.c:825 msgid "Enable/disable environment-mapping (reflection)" msgstr "Увімкнути/вимкнути відображення середовища (відбивання)" #: ../plug-ins/Lighting/lighting_ui.c:847 -#, fuzzy msgid "En_vironment image:" -msgstr "Зображення _середовища:" +msgstr "_Зображення середовища:" #: ../plug-ins/Lighting/lighting_ui.c:849 msgid "Environment image to use" @@ -865,7 +839,7 @@ #: ../plug-ins/Lighting/lighting_ui.c:875 #: ../plug-ins/MapObject/mapobject_ui.c:1326 msgid "_Light" -msgstr "_Світло" +msgstr "С_вітло" #: ../plug-ins/Lighting/lighting_ui.c:879 #: ../plug-ins/MapObject/mapobject_ui.c:1330 @@ -874,11 +848,11 @@ #: ../plug-ins/Lighting/lighting_ui.c:883 msgid "_Bump Map" -msgstr "_Карта рельєфу" +msgstr "Карта _рельєфу" #: ../plug-ins/Lighting/lighting_ui.c:887 msgid "_Environment Map" -msgstr "Карта _середовища" +msgstr "Карта с_ередовища" #: ../plug-ins/Lighting/lighting_ui.c:933 msgid "Lighting Effects" @@ -904,38 +878,32 @@ msgstr "Увімкнути/вимкнути попередній перегляд у реальному часі" #: ../plug-ins/Lighting/lighting_ui.c:1044 -#, fuzzy msgid "Save Lighting Preset" -msgstr "Світлові ефекти" +msgstr "Зберегти світлові ефекти" #: ../plug-ins/Lighting/lighting_ui.c:1177 -#, fuzzy msgid "Load Lighting Preset" -msgstr "Світлові ефекти" +msgstr "Завантажити світлові ефекти" #: ../plug-ins/MapObject/mapobject_apply.c:273 -#, fuzzy msgid "Map to Plane..." -msgstr "Лаплас..." +msgstr "Мапу у площину..." #: ../plug-ins/MapObject/mapobject_apply.c:276 msgid "Map to Sphere..." -msgstr "" +msgstr "Мапу у сферу..." #: ../plug-ins/MapObject/mapobject_apply.c:279 -#, fuzzy msgid "Map to Box..." -msgstr "Максимум RGB..." +msgstr "Мапу у паралелепіпед..." #: ../plug-ins/MapObject/mapobject_apply.c:282 -#, fuzzy msgid "Map to Cylinder..." -msgstr "Циліндр" +msgstr "Мапу у циліндр..." #: ../plug-ins/MapObject/mapobject_main.c:199 -#, fuzzy msgid "Map _Object..." -msgstr "Відобразити в об'єкт" +msgstr "Відобразити в _об'єкт..." #: ../plug-ins/MapObject/mapobject_ui.c:248 #: ../plug-ins/MapObject/mapobject_ui.c:1340 @@ -949,7 +917,6 @@ #. General options #: ../plug-ins/MapObject/mapobject_ui.c:496 -#, fuzzy msgid "General options" msgstr "Загальні параметри" @@ -978,7 +945,6 @@ msgstr "Тип об'єкту відображення" #: ../plug-ins/MapObject/mapobject_ui.c:532 -#, fuzzy msgid "Transparent background" msgstr "Прозоре тло" @@ -987,7 +953,6 @@ msgstr "Зробити зображення прозорим за межами об'єкту" #: ../plug-ins/MapObject/mapobject_ui.c:545 -#, fuzzy msgid "Tile source image" msgstr "Розрізати початкове зображення" @@ -996,12 +961,10 @@ msgstr "Розрізати початкове зображення: корисно для безмежних площин" #: ../plug-ins/MapObject/mapobject_ui.c:559 -#, fuzzy msgid "Create new image" msgstr "Створити нове зображення" #: ../plug-ins/MapObject/mapobject_ui.c:578 -#, fuzzy msgid "Enable _antialiasing" msgstr "Увімкнути _згладжування" @@ -1022,34 +985,29 @@ #: ../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 "_Поріг:" +msgstr "П_оріг:" #: ../plug-ins/MapObject/mapobject_ui.c:622 msgid "Stop when pixel differences are smaller than this value" msgstr "Зупинятись коли різниця точок менша за їхні значення" #: ../plug-ins/MapObject/mapobject_ui.c:658 -#, fuzzy msgid "Point light" msgstr "Джерело світла" #: ../plug-ins/MapObject/mapobject_ui.c:659 -#, fuzzy msgid "Directional light" msgstr "Напрямлене світло" #: ../plug-ins/MapObject/mapobject_ui.c:660 -#, fuzzy msgid "No light" msgstr "Немає освітлення" #: ../plug-ins/MapObject/mapobject_ui.c:674 -#, fuzzy msgid "Lightsource type:" msgstr "Тип джерела світла:" #: ../plug-ins/MapObject/mapobject_ui.c:684 -#, fuzzy msgid "Lightsource color:" msgstr "Колір джерела світла:" @@ -1193,7 +1151,7 @@ #: ../plug-ins/MapObject/mapobject_ui.c:1287 ../plug-ins/common/mblur.c:941 msgid "L_ength:" -msgstr "_Довжина:" +msgstr "Дов_жина:" #: ../plug-ins/MapObject/mapobject_ui.c:1291 msgid "Cylinder length" @@ -1214,18 +1172,17 @@ #: ../plug-ins/MapObject/mapobject_ui.c:1416 #: ../plug-ins/common/diffraction.c:474 msgid "_Preview!" -msgstr "Пере_гляд!" +msgstr "_Перегляд" #: ../plug-ins/MapObject/mapobject_ui.c:1439 msgid "Zoom out (make image smaller)" -msgstr "Зменшити" +msgstr "Зменшити (робить зображення меншим)" #: ../plug-ins/MapObject/mapobject_ui.c:1453 msgid "Zoom in (make image bigger)" -msgstr "Збільшити" +msgstr "Збільшити (робить зображення більшим)" #: ../plug-ins/MapObject/mapobject_ui.c:1455 -#, fuzzy msgid "Show preview _wireframe" msgstr "Показати _каркас перегляду" @@ -1235,7 +1192,7 @@ #: ../plug-ins/bmp/bmp.c:120 ../plug-ins/bmp/bmp.c:139 msgid "Windows BMP image" -msgstr "" +msgstr "Зображення Windows BMP" #: ../plug-ins/bmp/bmpread.c:86 msgid "Bad colormap" @@ -1267,35 +1224,36 @@ #: ../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 +#: ../plug-ins/bmp/bmpread.c:207 ../plug-ins/bmp/bmpread.c:307 +#: ../plug-ins/bmp/bmpread.c:348 #, c-format msgid "'%s' is not a valid BMP file" msgstr "\"%s\" не є правильним BMP файлом" #: ../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 +#: ../plug-ins/bmp/bmpread.c:300 ../plug-ins/bmp/bmpread.c:313 +#: ../plug-ins/bmp/bmpread.c:319 #, c-format msgid "Error reading BMP file header from '%s'" msgstr "Помилка зчитування заголовку BMP-файлу з '%s'" -#: ../plug-ins/bmp/bmpread.c:442 ../plug-ins/bmp/bmpread.c:477 +#: ../plug-ins/bmp/bmpread.c:450 ../plug-ins/bmp/bmpread.c:485 msgid "Unrecognized or invalid BMP compression format." -msgstr "" +msgstr "Нерозпізнаний чи неправильний формат BMP." #. #. * Create the "background" layer to hold the image... #. -#: ../plug-ins/bmp/bmpread.c:482 ../plug-ins/common/CEL.c:357 +#: ../plug-ins/bmp/bmpread.c:490 ../plug-ins/common/CEL.c:357 #: ../plug-ins/common/CEL.c:360 ../plug-ins/common/blinds.c:273 #: ../plug-ins/common/compose.c:625 ../plug-ins/common/decompose.c:595 #: ../plug-ins/common/dicom.c:442 ../plug-ins/common/film.c:946 -#: ../plug-ins/common/gifload.c:865 ../plug-ins/common/jpeg.c:1113 +#: ../plug-ins/common/gifload.c:864 ../plug-ins/common/jpeg.c:1113 #: ../plug-ins/common/jpeg.c:2474 ../plug-ins/common/pcx.c:334 #: ../plug-ins/common/pcx.c:340 ../plug-ins/common/pix.c:374 #: ../plug-ins/common/png.c:808 ../plug-ins/common/pnm.c:517 -#: ../plug-ins/common/psd.c:2173 ../plug-ins/common/raw.c:677 +#: ../plug-ins/common/psd.c:2174 ../plug-ins/common/raw.c:677 #: ../plug-ins/common/smooth_palette.c:257 ../plug-ins/common/sunras.c:925 #: ../plug-ins/common/tga.c:929 ../plug-ins/common/tiff.c:833 #: ../plug-ins/common/tile.c:266 ../plug-ins/common/winclipboard.c:579 @@ -1326,12 +1284,12 @@ #: ../plug-ins/common/jpeg.c:1453 ../plug-ins/common/pat.c:438 #: ../plug-ins/common/pcx.c:545 ../plug-ins/common/pix.c:521 #: ../plug-ins/common/png.c:1185 ../plug-ins/common/pnm.c:814 -#: ../plug-ins/common/postscript.c:1128 ../plug-ins/common/psd_save.c:1593 +#: ../plug-ins/common/postscript.c:1128 ../plug-ins/common/psd_save.c:1341 #: ../plug-ins/common/sunras.c:518 ../plug-ins/common/tga.c:1035 #: ../plug-ins/common/tiff.c:1815 ../plug-ins/common/xbm.c:1001 #: ../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:957 +#: ../plug-ins/sgi/sgi.c:545 ../plug-ins/winicon/icosave.c:977 #: ../plug-ins/xjt/xjt.c:1682 #, c-format msgid "Saving '%s'..." @@ -1346,99 +1304,80 @@ msgstr "Кодовано _RLE" #: ../plug-ins/common/AlienMap2.c:145 -#, fuzzy msgid "_Modify red channel" msgstr "З_мінити канал червоного" #: ../plug-ins/common/AlienMap2.c:145 -#, fuzzy msgid "_Modify hue channel" msgstr "Зм_інити канал відтінку" #: ../plug-ins/common/AlienMap2.c:146 -#, fuzzy msgid "Mo_dify green channel" msgstr "Зм_інити канал зеленого" #: ../plug-ins/common/AlienMap2.c:146 -#, fuzzy msgid "Mo_dify saturation channel" msgstr "Зм_інити канал насиченості" #: ../plug-ins/common/AlienMap2.c:147 -#, fuzzy msgid "Mod_ify blue channel" msgstr "Змі_нити канал синього" #: ../plug-ins/common/AlienMap2.c:147 -#, fuzzy msgid "Mod_ify luminosity channel" msgstr "Змі_нити канал яскравості" #: ../plug-ins/common/AlienMap2.c:152 -#, fuzzy msgid "Red _frequency:" msgstr "_Частота червоного:" #: ../plug-ins/common/AlienMap2.c:152 -#, fuzzy msgid "Hue _frequency:" msgstr "_Частота відтінку:" #: ../plug-ins/common/AlienMap2.c:153 -#, fuzzy msgid "Green fr_equency:" msgstr "Ч_астота зеленого:" #: ../plug-ins/common/AlienMap2.c:153 -#, fuzzy msgid "Saturation fr_equency:" msgstr "Ч_астота насиченості:" #: ../plug-ins/common/AlienMap2.c:154 -#, fuzzy msgid "Blue freq_uency:" msgstr "Ча_стота синього:" #: ../plug-ins/common/AlienMap2.c:154 -#, fuzzy msgid "Luminosity freq_uency:" msgstr "Ча_стота яскравості:" #: ../plug-ins/common/AlienMap2.c:156 -#, fuzzy msgid "Red _phaseshift:" msgstr "_Фазовий зсув червоного:" #: ../plug-ins/common/AlienMap2.c:156 -#, fuzzy msgid "Hue _phaseshift:" msgstr "_Фазовий зсув відтінку:" #: ../plug-ins/common/AlienMap2.c:157 -#, fuzzy msgid "Green ph_aseshift:" msgstr "Фа_зовий зсув зеленого:" #: ../plug-ins/common/AlienMap2.c:157 -#, fuzzy msgid "Saturation ph_aseshift:" msgstr "Фа_зовий зсув насиченості:" #: ../plug-ins/common/AlienMap2.c:158 -#, fuzzy msgid "Blue pha_seshift:" msgstr "Фаз_овий зсув синього:" #: ../plug-ins/common/AlienMap2.c:158 -#, fuzzy msgid "Luminosity pha_seshift:" msgstr "_Поріг яскравості:" #: ../plug-ins/common/AlienMap2.c:193 -#, fuzzy msgid "Alien Map _2..." -msgstr "Чуже відображення 2" +msgstr "Чуже відображення _2..." #: ../plug-ins/common/AlienMap2.c:325 msgid "AlienMap2: Transforming..." @@ -1465,18 +1404,16 @@ msgstr "Режим" #: ../plug-ins/common/AlienMap2.c:516 -#, fuzzy msgid "_RGB color model" msgstr "Кольорова модель _RGB" #: ../plug-ins/common/AlienMap2.c:517 -#, fuzzy msgid "_HSL color model" msgstr "Кольорова модель _HSL" #: ../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" @@ -1688,7 +1625,7 @@ msgstr "Відтінок" #: ../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 +#: ../plug-ins/common/decompose.c:144 ../plug-ins/rcm/rcm_dialog.c:548 msgid "Saturation" msgstr "Насиченість" @@ -1704,37 +1641,33 @@ msgstr "(Немає)" #: ../plug-ins/common/CML_explorer.c:470 -#, fuzzy msgid "CML _Explorer..." -msgstr "Дослідник CML: викується..." +msgstr "Досл_ідник CML..." #: ../plug-ins/common/CML_explorer.c:760 msgid "CML_explorer: evoluting..." -msgstr "Дослідник CML: викується..." +msgstr "Дослідник_CML: викується..." #: ../plug-ins/common/CML_explorer.c:1186 msgid "Coupled-Map-Lattice Explorer" msgstr "Дослідник Coupled-Map-Lattice" #: ../plug-ins/common/CML_explorer.c:1225 -#, fuzzy msgid "New seed" msgstr "Нова база" #: ../plug-ins/common/CML_explorer.c:1236 -#, fuzzy msgid "Fix seed" msgstr "Фіксована база" #: ../plug-ins/common/CML_explorer.c:1247 -#, fuzzy msgid "Random seed" -msgstr "_База випадковості:" +msgstr "Випадкова база" #: ../plug-ins/common/CML_explorer.c:1289 ../plug-ins/common/fp.c:655 #: ../plug-ins/common/lic.c:669 msgid "_Hue" -msgstr "_Відтінок" +msgstr "Від_тінок" #: ../plug-ins/common/CML_explorer.c:1293 msgid "Sat_uration" @@ -1746,25 +1679,21 @@ #: ../plug-ins/common/CML_explorer.c:1301 msgid "_Advanced" -msgstr "_Додатково" +msgstr "Д_одатково" #: ../plug-ins/common/CML_explorer.c:1316 -#, fuzzy msgid "Channel Independent Parameters" msgstr "Незалежні від каналу параметри" #: ../plug-ins/common/CML_explorer.c:1338 -#, fuzzy msgid "Initial value:" msgstr "Початкове значення:" #: ../plug-ins/common/CML_explorer.c:1344 -#, fuzzy msgid "Zoom scale:" msgstr "Масштаб:" #: ../plug-ins/common/CML_explorer.c:1353 -#, fuzzy msgid "Start offset:" msgstr "Початковий зсув:" @@ -1777,7 +1706,6 @@ msgstr "База:" #: ../plug-ins/common/CML_explorer.c:1386 -#, fuzzy msgid "Switch to \"From seed\" with the last seed" msgstr "Перемикнутись на \"З бази\" з останньою базою" @@ -1799,21 +1727,18 @@ #: ../plug-ins/common/CML_explorer.c:1421 msgid "Copy Settings" -msgstr "Скопіювати настройки" +msgstr "Скопіювати параметри" #: ../plug-ins/common/CML_explorer.c:1440 -#, fuzzy msgid "Source channel:" msgstr "Вихідний канал:" #: ../plug-ins/common/CML_explorer.c:1455 #: ../plug-ins/common/CML_explorer.c:1503 -#, fuzzy msgid "Destination channel:" msgstr "Цільовий канал:" #: ../plug-ins/common/CML_explorer.c:1459 -#, fuzzy msgid "Copy parameters" msgstr "Скопіювати параметри" @@ -1822,7 +1747,6 @@ msgstr "Вибіркове завантаження настройок" #: ../plug-ins/common/CML_explorer.c:1488 -#, fuzzy msgid "Source channel in file:" msgstr "Вихідний канал у файлі:" @@ -1831,7 +1755,6 @@ msgstr "_Різні параметри" #: ../plug-ins/common/CML_explorer.c:1558 -#, fuzzy msgid "Function type:" msgstr "Тип функції:" @@ -1840,37 +1763,30 @@ msgstr "Складання:" #: ../plug-ins/common/CML_explorer.c:1588 -#, fuzzy msgid "Misc arrange:" msgstr "Різне впорядкування:" #: ../plug-ins/common/CML_explorer.c:1592 -#, fuzzy msgid "Use cyclic range" msgstr "Використовувати циклічний діапазон" #: ../plug-ins/common/CML_explorer.c:1602 -#, fuzzy msgid "Mod. rate:" msgstr "Швидкість змін:" #: ../plug-ins/common/CML_explorer.c:1611 -#, fuzzy msgid "Env. sensitivity:" msgstr "Чутливість середовища:" #: ../plug-ins/common/CML_explorer.c:1620 -#, fuzzy msgid "Diffusion dist.:" msgstr "Дистанція дифузії:" #: ../plug-ins/common/CML_explorer.c:1629 -#, fuzzy msgid "# of subranges:" msgstr "Кількість піддіапазонів:" #: ../plug-ins/common/CML_explorer.c:1638 -#, fuzzy msgid "P(ower factor):" msgstr "Показник степені:" @@ -1879,32 +1795,26 @@ msgstr "Параметр k:" #: ../plug-ins/common/CML_explorer.c:1656 -#, fuzzy msgid "Range low:" msgstr "Нижній діапазон:" #: ../plug-ins/common/CML_explorer.c:1665 -#, fuzzy msgid "Range high:" msgstr "Верхній діапазон:" #: ../plug-ins/common/CML_explorer.c:1677 -#, fuzzy msgid "Plot a graph of the settings" -msgstr "Накреслити графік настройок" +msgstr "Накреслити графік параметрів" #: ../plug-ins/common/CML_explorer.c:1722 -#, fuzzy msgid "Ch. sensitivity:" msgstr "Чутливість каналу:" #: ../plug-ins/common/CML_explorer.c:1732 -#, fuzzy msgid "Mutation rate:" msgstr "Швидкість мутації:" #: ../plug-ins/common/CML_explorer.c:1742 -#, fuzzy msgid "Mutation dist.:" msgstr "Дистанція мутацій:" @@ -1922,13 +1832,13 @@ #: ../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 "Параметри збережено в \"%s\"" #: ../plug-ins/common/CML_explorer.c:2077 msgid "CML Explorer: Overwrite File?" -msgstr "" +msgstr "Дослідник CML: Перезаписати файл?" #: ../plug-ins/common/CML_explorer.c:2091 #: ../plug-ins/common/channel_mixer.c:1083 @@ -1962,7 +1872,7 @@ msgid "Warning: '%s' is a parameter file for newer CML_explorer than me." msgstr "" "Попередження: '%s' - цей файл параметрів призначений для більш нової версії " -"\"Дослідника CML\"." +"\"Дослідника_CML\"." #: ../plug-ins/common/CML_explorer.c:2311 msgid "Error: failed to load parameters" @@ -1970,7 +1880,7 @@ #: ../plug-ins/common/aa.c:94 msgid "ASCII art" -msgstr "" +msgstr "ASCII art" #. Create the actual window. #: ../plug-ins/common/aa.c:345 @@ -1978,14 +1888,12 @@ msgstr "Зберегти як текст" #: ../plug-ins/common/aa.c:360 -#, fuzzy msgid "_Format:" -msgstr "_Шрифт:" +msgstr "_Формат:" #: ../plug-ins/common/align_layers.c:135 -#, fuzzy msgid "Align _Visible Layers..." -msgstr "Вирівнювання видимих шарів" +msgstr "Вирівнювання _видимих шарів" #: ../plug-ins/common/align_layers.c:173 msgid "There are not enough layers to align." @@ -2010,17 +1918,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 "Вирівняти за сіткою" #: ../plug-ins/common/align_layers.c:429 -#, fuzzy msgid "_Horizontal style:" msgstr "_Горизонтальний стиль:" #: ../plug-ins/common/align_layers.c:433 -#, fuzzy msgid "Left edge" msgstr "Лівий край" @@ -2030,12 +1935,10 @@ msgstr "Центр" #: ../plug-ins/common/align_layers.c:435 -#, fuzzy msgid "Right edge" msgstr "Правий край" #: ../plug-ins/common/align_layers.c:444 -#, fuzzy msgid "Ho_rizontal base:" msgstr "Г_оризонтальна основа:" @@ -2048,54 +1951,44 @@ msgstr "Заповнити (знизу догори)" #: ../plug-ins/common/align_layers.c:460 -#, fuzzy msgid "_Vertical style:" msgstr "_Вертикальний стиль:" #: ../plug-ins/common/align_layers.c:463 -#, fuzzy msgid "Top edge" msgstr "Верхній край" #: ../plug-ins/common/align_layers.c:465 -#, fuzzy msgid "Bottom edge" msgstr "Нижній край" #: ../plug-ins/common/align_layers.c:474 -#, fuzzy msgid "Ver_tical base:" msgstr "В_ертикальна основа:" #: ../plug-ins/common/align_layers.c:478 -#, fuzzy msgid "_Grid size:" msgstr "Розмір _сітки:" #: ../plug-ins/common/align_layers.c:487 -#, fuzzy msgid "_Ignore the bottom layer even if visible" msgstr "_Ігнорувати нижній шар навіть якщо він видимий" #: ../plug-ins/common/align_layers.c:497 -#, fuzzy msgid "_Use the (invisible) bottom layer as the base" msgstr "_Використовувати (невидимий) нижній шар як основу" #: ../plug-ins/common/animationplay.c:181 -#, fuzzy msgid "_Playback..." -msgstr "Відтворення: " +msgstr "_Відтворення..." #: ../plug-ins/common/animationplay.c:413 -#, fuzzy msgid "Animation Playback:" -msgstr "Відтворення анімації: " +msgstr "Відтворення анімації:" #: ../plug-ins/common/animationplay.c:431 -#, fuzzy msgid "Playback:" -msgstr "Відтворення: " +msgstr "Відтворення:" #: ../plug-ins/common/animationplay.c:457 msgid "Play/Stop" @@ -2116,30 +2009,27 @@ #: ../plug-ins/common/animoptimize.c:140 msgid "Optimize (for _GIF)" -msgstr "" +msgstr "Оптимізація (для _GIF)" #: ../plug-ins/common/animoptimize.c:158 -#, fuzzy msgid "_Optimize (Difference)" -msgstr "/Фільтри/Анімація/_Оптимізація (різниця)" +msgstr "_Оптимізація (різниця)" #: ../plug-ins/common/animoptimize.c:175 -#, fuzzy msgid "_UnOptimize" -msgstr "Оптимізувати" +msgstr "_Розоптимізувати" #: ../plug-ins/common/animoptimize.c:198 -#, fuzzy msgid "_Remove Backdrop" -msgstr "В_идалити" +msgstr "В_идалити Backdrop" #: ../plug-ins/common/animoptimize.c:214 msgid "_Find Backdrop" -msgstr "" +msgstr "З_найти Backdrop" #: ../plug-ins/common/animoptimize.c:429 msgid "UnOptimizing Animation..." -msgstr "Деоптимізація анімації..." +msgstr "Розоптимізація анімації..." #: ../plug-ins/common/animoptimize.c:432 msgid "Removing Animation Background..." @@ -2154,9 +2044,8 @@ msgstr "Оптимізація анімації..." #: ../plug-ins/common/apply_lens.c:112 -#, fuzzy msgid "Apply _Lens..." -msgstr "Застосовується лінза..." +msgstr "Застосувати _лінзу..." #: ../plug-ins/common/apply_lens.c:179 msgid "Applying lens..." @@ -2167,48 +2056,40 @@ msgstr "Ефект лінзи" #: ../plug-ins/common/apply_lens.c:417 -#, fuzzy msgid "_Keep original surroundings" msgstr "З_берегти оригінальне оточення" #: ../plug-ins/common/apply_lens.c:432 -#, fuzzy msgid "_Set surroundings to index 0" msgstr "_Встановити оточення в індекс 0" #: ../plug-ins/common/apply_lens.c:433 -#, fuzzy msgid "_Set surroundings to background color" msgstr "_Встановити оточення у колір тла" #: ../plug-ins/common/apply_lens.c:448 -#, fuzzy msgid "_Make surroundings transparent" msgstr "_Робити оточення прозорим" #: ../plug-ins/common/apply_lens.c:465 -#, fuzzy msgid "_Lens refraction index:" msgstr "Коефіцієнт заломлення _лінзи:" #: ../plug-ins/common/autocrop.c:85 -#, fuzzy msgid "_Autocrop Image" -msgstr "Вс_е зображення" +msgstr "_Автокадрування зображення" #: ../plug-ins/common/autocrop.c:99 -#, fuzzy msgid "_Autocrop Layer" -msgstr "Шар загину" +msgstr "Шар _автокадрування" #: ../plug-ins/common/autocrop.c:146 msgid "Cropping..." msgstr "Кадрування..." #: ../plug-ins/common/autostretch_hsv.c:80 -#, fuzzy msgid "Stretch _HSV" -msgstr "Розтягнути" +msgstr "Розтягнути _HSV" #: ../plug-ins/common/autostretch_hsv.c:116 msgid "Auto-Stretching HSV..." @@ -2216,12 +2097,11 @@ #: ../plug-ins/common/autostretch_hsv.c:192 msgid "autostretch_hsv: cmap was NULL! Quitting...\n" -msgstr "" +msgstr "autostretch_hsv: cmap було NULL! Вихід...\n" #: ../plug-ins/common/blinds.c:124 -#, fuzzy msgid "_Blinds..." -msgstr "Жалюзі" +msgstr "_Жалюзі..." #: ../plug-ins/common/blinds.c:191 msgid "Adding Blinds..." @@ -2249,30 +2129,27 @@ #: ../plug-ins/common/blinds.c:277 ../plug-ins/common/fractaltrace.c:733 #: ../plug-ins/common/papertile.c:358 msgid "_Transparent" -msgstr "_Прозорі" +msgstr "_Прозоре" #: ../plug-ins/common/blinds.c:303 msgid "_Displacement:" msgstr "_Заміщення:" #: ../plug-ins/common/blinds.c:315 -#, fuzzy msgid "_Number of segments:" msgstr "_Кількість сегментів:" #: ../plug-ins/common/blur.c:147 -#, fuzzy msgid "_Blur" -msgstr "Розмивання" +msgstr "_Розмивання" #: ../plug-ins/common/blur.c:191 ../plug-ins/common/unsharp.c:432 msgid "Blurring..." msgstr "Розмивання..." #: ../plug-ins/common/borderaverage.c:101 -#, fuzzy msgid "_Border Average..." -msgstr "Пошук середнього значення кольору..." +msgstr "Пошук с_ереднього значення кольору..." #: ../plug-ins/common/borderaverage.c:168 msgid "Border Average..." @@ -2291,14 +2168,12 @@ msgstr "_Товщина:" #: ../plug-ins/common/borderaverage.c:413 -#, fuzzy msgid "_Bucket size:" msgstr "_Кількість кольорів:" #: ../plug-ins/common/bumpmap.c:343 -#, fuzzy msgid "_Bump Map..." -msgstr "_Карта рельєфу" +msgstr "_Карта рельєфу..." #: ../plug-ins/common/bumpmap.c:492 msgid "Bump-mapping..." @@ -2309,32 +2184,27 @@ msgstr "Рельєф" #: ../plug-ins/common/bumpmap.c:895 -#, fuzzy msgid "_Bump map:" -msgstr "Карта рельєфу:" +msgstr "_Карта рельєфу:" #: ../plug-ins/common/bumpmap.c:907 -#, fuzzy msgid "_Map type:" -msgstr "Тип мапи" +msgstr "Тип _мапи:" #. Compensate darkening #: ../plug-ins/common/bumpmap.c:912 -#, fuzzy msgid "Co_mpensate for darkening" msgstr "_Компенсувати затемнення" #. Invert bumpmap #: ../plug-ins/common/bumpmap.c:926 -#, fuzzy msgid "I_nvert bumpmap" msgstr "_Інвертувати рельєф" #. Tile bumpmap #: ../plug-ins/common/bumpmap.c:940 -#, fuzzy msgid "_Tile bumpmap" -msgstr "_Повторення рельєфу" +msgstr "Пов_торення рельєфу" #: ../plug-ins/common/bumpmap.c:955 ../plug-ins/common/emboss.c:485 msgid "_Azimuth:" @@ -2342,10 +2212,9 @@ #: ../plug-ins/common/bumpmap.c:967 msgid "_Elevation:" -msgstr "_Підвищення:" +msgstr "Під_вищення:" #: ../plug-ins/common/bumpmap.c:993 ../plug-ins/common/postscript.c:3137 -#, fuzzy msgid "_X offset:" msgstr "Зсув по _X:" @@ -2354,9 +2223,10 @@ "The offset can be adjusted by dragging the preview using the middle mouse " "button." msgstr "" +"Зсув можна скорегувати перетягуванням перегляду з використання середньої " +"кнопки." #: ../plug-ins/common/bumpmap.c:1007 ../plug-ins/common/postscript.c:3146 -#, fuzzy msgid "_Y offset:" msgstr "Зсув по _Y:" @@ -2369,9 +2239,8 @@ msgstr "_Облягання:" #: ../plug-ins/common/c_astretch.c:78 -#, fuzzy msgid "_Stretch Contrast" -msgstr "Автозбільшення контрасту..." +msgstr "_Розтягнути контраст..." #: ../plug-ins/common/c_astretch.c:112 msgid "Auto-Stretching Contrast..." @@ -2379,12 +2248,11 @@ #: ../plug-ins/common/c_astretch.c:152 msgid "c_astretch: cmap was NULL! Quitting...\n" -msgstr "" +msgstr "c_astretch: cmap було NULL! Вихід...\n" #: ../plug-ins/common/cartoon.c:147 -#, fuzzy msgid "Ca_rtoon..." -msgstr "_Підпис" +msgstr "_Картон..." #: ../plug-ins/common/cartoon.c:229 ../plug-ins/common/dog.c:247 #: ../plug-ins/common/gauss.c:431 ../plug-ins/common/neon.c:221 @@ -2395,24 +2263,20 @@ msgstr "Не можна використовувати на індексованих зображеннях" #: ../plug-ins/common/cartoon.c:808 -#, fuzzy msgid "Cartoon" -msgstr "_Підпис" +msgstr "_Картон" #: ../plug-ins/common/cartoon.c:838 ../plug-ins/common/photocopy.c:867 -#, fuzzy msgid "_Mask radius:" -msgstr "_Радіус розмивання:" +msgstr "_Радіус маски:" #: ../plug-ins/common/cartoon.c:852 -#, fuzzy msgid "_Percent black:" -msgstr "Відсоток" +msgstr "_Відсоток чорного:" #: ../plug-ins/common/ccanalyze.c:110 -#, fuzzy msgid "Colorcube A_nalysis..." -msgstr "Кольоровий аналіз зображення..." +msgstr "К_ольоровий аналіз зображення..." #: ../plug-ins/common/ccanalyze.c:200 msgid "Colorcube Analysis..." @@ -2463,18 +2327,16 @@ msgstr "Ступінь стиснення (прибл.): %d до 1" #: ../plug-ins/common/channel_mixer.c:197 -#, fuzzy msgid "Channel Mi_xer..." -msgstr "Мікшер каналів" +msgstr "Мік_шер каналів..." #: ../plug-ins/common/channel_mixer.c:485 msgid "Channel Mixer" msgstr "Мікшер каналів" #: ../plug-ins/common/channel_mixer.c:514 -#, fuzzy msgid "O_utput channel:" -msgstr "Канал виводу:" +msgstr "Канал в_иводу:" #: ../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 @@ -2495,7 +2357,7 @@ #: ../plug-ins/common/exchange.c:519 ../plug-ins/common/noisify.c:528 #: ../plug-ins/common/noisify.c:535 msgid "_Blue:" -msgstr "_Синій:" +msgstr "С_иній:" #. The monochrome toggle #: ../plug-ins/common/channel_mixer.c:616 @@ -2503,7 +2365,6 @@ msgstr "_Монохромний" #: ../plug-ins/common/channel_mixer.c:628 -#, fuzzy msgid "Preserve _luminosity" msgstr "Зберігати _яскравість" @@ -2520,9 +2381,8 @@ msgstr "Попередження мікшера каналів" #: ../plug-ins/common/checkerboard.c:93 -#, fuzzy msgid "_Checkerboard..." -msgstr "Шахівниця" +msgstr "_Шахівниця..." #: ../plug-ins/common/checkerboard.c:161 msgid "Adding Checkerboard..." @@ -2542,18 +2402,16 @@ msgstr "_Розмір:" #: ../plug-ins/common/color_enhance.c:80 -#, fuzzy msgid "_Color Enhance" -msgstr "Підсилення кольору..." +msgstr "Підсилення _кольору" #: ../plug-ins/common/color_enhance.c:115 msgid "Color Enhance..." msgstr "Підсилення кольору..." #: ../plug-ins/common/colorify.c:110 -#, fuzzy msgid "_Colorify..." -msgstr "Фарбування..." +msgstr "_Фарбування..." #: ../plug-ins/common/colorify.c:171 msgid "Colorifying..." @@ -2572,29 +2430,27 @@ msgstr "Фарбування вибраним кольором" #: ../plug-ins/common/colortoalpha.c:104 -#, fuzzy msgid "Color to _Alpha..." -msgstr "Колір у альфа-канал" +msgstr "Колір у _альфа-канал..." -#: ../plug-ins/common/colortoalpha.c:181 +#: ../plug-ins/common/colortoalpha.c:187 msgid "Removing color..." msgstr "Видалення кольору..." -#: ../plug-ins/common/colortoalpha.c:377 +#: ../plug-ins/common/colortoalpha.c:380 msgid "Color to Alpha" msgstr "Колір у альфа-канал" -#: ../plug-ins/common/colortoalpha.c:402 ../plug-ins/common/mapcolor.c:424 +#: ../plug-ins/common/colortoalpha.c:405 ../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:406 +#: ../plug-ins/common/colortoalpha.c:409 msgid "Color to Alpha Color Picker" msgstr "Колір у альфа: зміна кольору" -#: ../plug-ins/common/colortoalpha.c:420 -#, fuzzy +#: ../plug-ins/common/colortoalpha.c:423 msgid "to alpha" msgstr "у альфа-канал" @@ -2617,13 +2473,13 @@ msgstr "HSV" #. Gray: Circle: Spinbutton 1 -#: ../plug-ins/common/compose.c:148 ../plug-ins/rcm/rcm_dialog.c:452 +#: ../plug-ins/common/compose.c:148 ../plug-ins/rcm/rcm_dialog.c:459 msgid "Hue:" msgstr "Відтінок:" #. Gray: Circle: Spinbutton 2 #: ../plug-ins/common/compose.c:149 ../plug-ins/print/gimp_color_window.c:364 -#: ../plug-ins/rcm/rcm_dialog.c:479 +#: ../plug-ins/rcm/rcm_dialog.c:486 msgid "Saturation:" msgstr "Насиченість:" @@ -2711,9 +2567,8 @@ msgstr "Redness_cr709f:" #: ../plug-ins/common/compose.c:294 -#, fuzzy msgid "C_ompose..." -msgstr "Компонування..." +msgstr "_Компонування..." #: ../plug-ins/common/compose.c:360 #, c-format @@ -2760,11 +2615,11 @@ #: ../plug-ins/common/compressor.c:153 msgid "gzip archive" -msgstr "" +msgstr "архів gzip" #: ../plug-ins/common/compressor.c:174 msgid "bzip archive" -msgstr "" +msgstr "архів bzip" #: ../plug-ins/common/compressor.c:367 msgid "No sensible extension, saving as compressed XCF." @@ -2790,7 +2645,7 @@ #: ../plug-ins/common/convmatrix.c:90 ../plug-ins/common/newsprint.c:371 msgid "_Blue" -msgstr "_Синій" +msgstr "С_иній" #: ../plug-ins/common/convmatrix.c:91 msgid "_Alpha" @@ -2803,16 +2658,15 @@ #: ../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 "_Переносити" +msgstr "Пере_носити" #: ../plug-ins/common/convmatrix.c:98 msgid "Cro_p" msgstr "_Обрізати" #: ../plug-ins/common/convmatrix.c:195 -#, fuzzy msgid "_Convolution Matrix..." -msgstr "Матриця згортання" +msgstr "Матриця _згортання..." #: ../plug-ins/common/convmatrix.c:229 msgid "Convolution Matrix does not work on layers smaller than 3 pixels." @@ -2832,7 +2686,7 @@ #: ../plug-ins/common/convmatrix.c:936 msgid "D_ivisor:" -msgstr "_Дільник:" +msgstr "Ді_льник:" #: ../plug-ins/common/convmatrix.c:957 ../plug-ins/common/depthmerge.c:748 #: ../plug-ins/common/raw.c:972 @@ -2845,7 +2699,7 @@ #: ../plug-ins/common/convmatrix.c:992 msgid "A_lpha-weighting" -msgstr "_Альфа-навантаження" +msgstr "Альфа-_навантаження" #: ../plug-ins/common/convmatrix.c:1008 msgid "Border" @@ -2856,16 +2710,14 @@ msgstr "Канали" #: ../plug-ins/common/csource.c:108 -#, fuzzy msgid "C source code" -msgstr "Режим кольору" +msgstr "програма на C" #: ../plug-ins/common/csource.c:635 msgid "Save as C-Source" msgstr "Збереження як файл мовою C" #: ../plug-ins/common/csource.c:659 -#, fuzzy msgid "_Prefixed name:" msgstr "_Префікс назви:" @@ -2876,35 +2728,30 @@ #. Use Comment #. #: ../plug-ins/common/csource.c:675 -#, fuzzy msgid "_Save comment to file" msgstr "З_берегти коментар у файлі" #. GLib types #. #: ../plug-ins/common/csource.c:687 -#, fuzzy msgid "_Use GLib types (guint8*)" msgstr "_Використовувати типи GLib (guint8*)" #. Use Macros #. #: ../plug-ins/common/csource.c:699 -#, fuzzy msgid "Us_e macros instead of struct" msgstr "Використовувати _макроси замість структур" #. Use RLE #. #: ../plug-ins/common/csource.c:711 -#, fuzzy msgid "Use _1 byte Run-Length-Encoding" msgstr "Використовувати _1-байтове RLE" #. Alpha #. #: ../plug-ins/common/csource.c:723 -#, fuzzy msgid "Sa_ve alpha channel (RGBA/RGB)" msgstr "Зберегти _альфа-канал (RGBA/RGB)" @@ -2913,38 +2760,32 @@ msgstr "_Непрозорість:" #: ../plug-ins/common/cubism.c:156 -#, fuzzy msgid "_Cubism..." -msgstr "Кубізм" +msgstr "К_убізм..." #: ../plug-ins/common/cubism.c:269 msgid "Cubism" msgstr "Кубізм" #: ../plug-ins/common/cubism.c:298 -#, fuzzy msgid "_Tile size:" msgstr "_Розмір елементу:" #: ../plug-ins/common/cubism.c:311 -#, fuzzy msgid "T_ile saturation:" msgstr "_Насиченість елементу:" #: ../plug-ins/common/cubism.c:322 -#, fuzzy msgid "_Use background color" msgstr "_Використовувати колір тла" #: ../plug-ins/common/cubism.c:412 -#, fuzzy msgid "Cubistic Transformation..." msgstr "Кубістичне перетворення" #: ../plug-ins/common/curve_bend.c:567 -#, fuzzy msgid "_Curve Bend..." -msgstr "Згин кривої..." +msgstr "_Криве згинання..." #: ../plug-ins/common/curve_bend.c:703 msgid "Can operate on layers only (but was called on channel or mask)." @@ -2952,7 +2793,6 @@ "\"Криве згинання\" діє лише на шарах (а був застосований для каналу чи маски)" #: ../plug-ins/common/curve_bend.c:721 -#, fuzzy msgid "Cannot operate on layers with masks." msgstr "Не можна використовувати на індексованих зображеннях" @@ -2975,13 +2815,11 @@ #. The preview button #: ../plug-ins/common/curve_bend.c:1297 -#, fuzzy msgid "_Preview once" -msgstr "_Одноразовий перегляд" +msgstr "Одноразовий _перегляд" #. The preview toggle #: ../plug-ins/common/curve_bend.c:1306 -#, fuzzy msgid "Automatic pre_view" msgstr "_Автоматичний перегляд" @@ -3001,19 +2839,18 @@ #. The smoothing toggle #: ../plug-ins/common/curve_bend.c:1348 msgid "Smoo_thing" -msgstr "_Згладжування зображення" +msgstr "_Згладжувати зображення" #. The antialiasing toggle #: ../plug-ins/common/curve_bend.c:1358 ../plug-ins/common/gqbist.c:823 #: ../plug-ins/common/mosaic.c:535 ../plug-ins/common/ripple.c:510 msgid "_Antialiasing" -msgstr "Зг_ладжування контуру" +msgstr "Згладжувати кон_тур" #. The work_on_copy toggle #: ../plug-ins/common/curve_bend.c:1368 -#, fuzzy msgid "Work on cop_y" -msgstr "Працювати з _копією" +msgstr "Працювати з копі_єю" #. The curves graph #: ../plug-ins/common/curve_bend.c:1378 @@ -3026,11 +2863,11 @@ #: ../plug-ins/common/curve_bend.c:1410 msgid "_Upper" -msgstr "_Верхнього" +msgstr "В_ерхнього" #: ../plug-ins/common/curve_bend.c:1411 msgid "_Lower" -msgstr "_Нижнього" +msgstr "Н_ижнього" #: ../plug-ins/common/curve_bend.c:1421 msgid "Curve Type" @@ -3042,7 +2879,7 @@ #: ../plug-ins/common/curve_bend.c:1426 msgid "_Free" -msgstr "_Вільна" +msgstr "В_ільна" #. The Copy button #: ../plug-ins/common/curve_bend.c:1441 @@ -3093,7 +2930,7 @@ #: ../plug-ins/common/curve_bend.c:2941 msgid "Curve Bend..." -msgstr "Згин кривої..." +msgstr "Криве згинання..." #: ../plug-ins/common/decompose.c:130 ../plug-ins/common/decompose.c:133 #: ../plug-ins/common/decompose.c:135 @@ -3231,9 +3068,8 @@ msgstr "redness_cr709f" #: ../plug-ins/common/decompose.c:245 -#, fuzzy msgid "_Decompose..." -msgstr "Розкладання" +msgstr "_Розкладання..." #: ../plug-ins/common/decompose.c:330 msgid "Decomposing..." @@ -3245,42 +3081,36 @@ #. parameter settings #: ../plug-ins/common/decompose.c:1215 -#, fuzzy msgid "Extract Channels" -msgstr "Добути канали:" +msgstr "Добути канали" #: ../plug-ins/common/decompose.c:1243 -#, fuzzy msgid "Decompose to _layers" msgstr "Розкласти на _шари" #: ../plug-ins/common/deinterlace.c:99 -#, fuzzy msgid "_Deinterlace..." -msgstr "Прибирання черезрядковісті..." +msgstr "Прибирання _черезрядковісті..." #: ../plug-ins/common/deinterlace.c:156 msgid "Deinterlace..." msgstr "Прибирання черезрядковісті..." -#: ../plug-ins/common/deinterlace.c:315 +#: ../plug-ins/common/deinterlace.c:324 msgid "Deinterlace" msgstr "Прибирання черезрядковості" -#: ../plug-ins/common/deinterlace.c:340 -#, fuzzy +#: ../plug-ins/common/deinterlace.c:349 msgid "Keep o_dd fields" msgstr "Лишити _непарі поля" -#: ../plug-ins/common/deinterlace.c:341 -#, fuzzy +#: ../plug-ins/common/deinterlace.c:350 msgid "Keep _even fields" -msgstr "Лишити _парні поля" +msgstr "Лишити п_арні поля" #: ../plug-ins/common/depthmerge.c:192 -#, fuzzy msgid "_Depth Merge..." -msgstr "Об'єднання глибин" +msgstr "Об'єднання _глибин" #: ../plug-ins/common/depthmerge.c:382 msgid "Depth-merging..." @@ -3295,7 +3125,6 @@ msgstr "Джерело 1:" #: ../plug-ins/common/depthmerge.c:691 ../plug-ins/common/depthmerge.c:721 -#, fuzzy msgid "Depth map:" msgstr "Мапа глибин:" @@ -3304,24 +3133,20 @@ msgstr "Джерело 2:" #: ../plug-ins/common/depthmerge.c:738 -#, fuzzy msgid "O_verlap:" -msgstr "Перекриття:" +msgstr "_Перекриття:" #: ../plug-ins/common/depthmerge.c:758 -#, fuzzy msgid "Sc_ale 1:" -msgstr "Масштаб 1:" +msgstr "_Масштаб 1:" #: ../plug-ins/common/depthmerge.c:768 -#, fuzzy msgid "Sca_le 2:" -msgstr "Масштаб 2:" +msgstr "Мас_штаб 2:" #: ../plug-ins/common/despeckle.c:177 -#, fuzzy msgid "Des_peckle..." -msgstr "Прибирання плям" +msgstr "Прибирання _плям..." #: ../plug-ins/common/despeckle.c:418 ../plug-ins/common/despeckle.c:640 msgid "Despeckle" @@ -3337,17 +3162,16 @@ #. parameter settings #: ../plug-ins/common/despeckle.c:454 -#, fuzzy msgid "Median" -msgstr "Радіани" +msgstr "Медіана" #: ../plug-ins/common/despeckle.c:460 msgid "_Adaptive" -msgstr "_Адаптивне" +msgstr "_Адаптивна" #: ../plug-ins/common/despeckle.c:470 msgid "R_ecursive" -msgstr "_Рекурсивне" +msgstr "Р_екурсивна" #: ../plug-ins/common/despeckle.c:494 ../plug-ins/common/neon.c:727 #: ../plug-ins/common/nlfilt.c:1083 ../plug-ins/common/nova.c:359 @@ -3357,19 +3181,16 @@ msgstr "_Радіус:" #: ../plug-ins/common/despeckle.c:510 -#, fuzzy msgid "_Black level:" msgstr "Рівень _чорного:" #: ../plug-ins/common/despeckle.c:526 -#, fuzzy msgid "_White level:" msgstr "Рівень _білого:" #: ../plug-ins/common/destripe.c:113 -#, fuzzy msgid "Des_tripe..." -msgstr "Прибирання штрихів..." +msgstr "Прибирання _штрихів..." #: ../plug-ins/common/destripe.c:276 msgid "Destriping..." @@ -3388,18 +3209,16 @@ msgstr "_Ширина:" #: ../plug-ins/common/destripe.c:480 -#, fuzzy msgid "Create _histogram" msgstr "Створити г_істограму" #: ../plug-ins/common/dicom.c:134 -#, fuzzy msgid "DICOM image" -msgstr "_Зображення" +msgstr "Зображення DICOM" #: ../plug-ins/common/dicom.c:159 msgid "Digital Imaging and Communications in Medicine image" -msgstr "" +msgstr "Цифрова медична фотографія та зв'язок (DICOM)" #: ../plug-ins/common/dicom.c:318 #, c-format @@ -3407,9 +3226,8 @@ msgstr "\"%s\": не DICOM файлом" #: ../plug-ins/common/diffraction.c:177 -#, fuzzy msgid "_Diffraction Patterns..." -msgstr "Дифракційні візерунки" +msgstr "_Дифракційні візерунки..." #: ../plug-ins/common/diffraction.c:334 msgid "Creating diffraction pattern..." @@ -3420,19 +3238,16 @@ msgstr "Дифракційні візерунки" #: ../plug-ins/common/diffraction.c:524 -#, fuzzy msgid "Frequencies" -msgstr "_Частоти" +msgstr "Частоти" #: ../plug-ins/common/diffraction.c:562 -#, fuzzy msgid "Contours" msgstr "_Контури" #: ../plug-ins/common/diffraction.c:600 -#, fuzzy msgid "Sharp edges" -msgstr "_Різкі краї" +msgstr "Р_ізкі краї" #: ../plug-ins/common/diffraction.c:612 ../plug-ins/common/softglow.c:673 #: ../plug-ins/flame/flame.c:1037 @@ -3441,22 +3256,19 @@ #: ../plug-ins/common/diffraction.c:621 msgid "Sc_attering:" -msgstr "Роз_сіювання:" +msgstr "_Розсіювання:" #: ../plug-ins/common/diffraction.c:630 -#, fuzzy msgid "Po_larization:" -msgstr "_Поляризація:" +msgstr "По_ляризація:" #: ../plug-ins/common/diffraction.c:638 -#, fuzzy msgid "Other options" -msgstr "_Інші параметри" +msgstr "Інші параметри" #: ../plug-ins/common/displace.c:154 -#, fuzzy msgid "_Displace..." -msgstr "Зміщення..." +msgstr "З_міщення..." #: ../plug-ins/common/displace.c:231 msgid "Displacing..." @@ -3468,13 +3280,11 @@ #. X options #: ../plug-ins/common/displace.c:297 -#, fuzzy msgid "_X displacement:" msgstr "Зміщення по _X:" #. Y Options #: ../plug-ins/common/displace.c:344 -#, fuzzy msgid "_Y displacement:" msgstr "Зміщення по _Y:" @@ -3494,43 +3304,36 @@ msgstr "_Чорний" #: ../plug-ins/common/dog.c:139 -#, fuzzy msgid "Difference of Gaussians..." msgstr "Вибіркове Гаусеве розмивання..." #: ../plug-ins/common/dog.c:227 ../plug-ins/common/dog.c:274 -#, fuzzy msgid "DoG Edge Detect" -msgstr "Виділення меж" +msgstr "Виділення меж DoG" #: ../plug-ins/common/dog.c:295 -#, fuzzy msgid "Smoothing parameters" -msgstr "Скопіювати параметри" +msgstr "Параметри згладжування" #: ../plug-ins/common/dog.c:309 -#, fuzzy msgid "_Radius 1:" -msgstr "_Радіус:" +msgstr "_Радіус 1:" #: ../plug-ins/common/dog.c:313 -#, fuzzy msgid "R_adius 2:" -msgstr "_Радіус:" +msgstr "Р_адіус 2:" #: ../plug-ins/common/dog.c:325 ../plug-ins/common/normalize.c:88 -#, fuzzy msgid "_Normalize" -msgstr "_Звичайний" +msgstr "_Нормалізувати" #: ../plug-ins/common/dog.c:336 ../plug-ins/gimpressionist/paper.c:149 msgid "_Invert" msgstr "_Інвертувати" #: ../plug-ins/common/edge.c:162 -#, fuzzy msgid "_Edge..." -msgstr "Краї" +msgstr "_Краї..." #: ../plug-ins/common/edge.c:234 msgid "Edge Detection..." @@ -3541,48 +3344,40 @@ msgstr "Виділення меж" #: ../plug-ins/common/edge.c:675 -#, fuzzy msgid "Sobel" -msgstr "_Собел" +msgstr "Собел" #: ../plug-ins/common/edge.c:676 -#, fuzzy msgid "Prewitt" -msgstr "За _Превриттом" +msgstr "За Превриттом" #: ../plug-ins/common/edge.c:677 ../plug-ins/common/sinus.c:897 msgid "Gradient" msgstr "Градієнт" #: ../plug-ins/common/edge.c:678 -#, fuzzy msgid "Roberts" -msgstr "За _Робертсом" +msgstr "За Робертсом" #: ../plug-ins/common/edge.c:679 -#, fuzzy msgid "Differential" -msgstr "_Диференційний" +msgstr "Диференційний" #: ../plug-ins/common/edge.c:680 -#, fuzzy msgid "Laplace" -msgstr "_Лапласа" +msgstr "Лапласа" #: ../plug-ins/common/edge.c:689 -#, fuzzy msgid "_Algorithm:" -msgstr "Алгоритм" +msgstr "_Алгоритм:" #: ../plug-ins/common/edge.c:697 -#, fuzzy msgid "A_mount:" -msgstr "Величина:" +msgstr "_Величина:" #: ../plug-ins/common/emboss.c:133 -#, fuzzy msgid "_Emboss..." -msgstr "_Чеканка" +msgstr "_Чеканка..." #: ../plug-ins/common/emboss.c:376 ../plug-ins/common/emboss.c:439 msgid "Emboss" @@ -3605,9 +3400,8 @@ msgstr "_Підвищення:" #: ../plug-ins/common/engrave.c:108 -#, fuzzy msgid "En_grave..." -msgstr "Створення гравюри..." +msgstr "Г_равюра..." #: ../plug-ins/common/engrave.c:182 msgid "Engraving..." @@ -3627,14 +3421,12 @@ msgstr "_Висота:" #: ../plug-ins/common/engrave.c:249 -#, fuzzy msgid "_Limit line width" msgstr "_Обмеження ширини лінії" #: ../plug-ins/common/exchange.c:133 -#, fuzzy msgid "_Color Exchange..." -msgstr "Заміна кольору..." +msgstr "Заміна _кольору..." #: ../plug-ins/common/exchange.c:218 msgid "Color Exchange..." @@ -3646,7 +3438,6 @@ msgstr "Заміна кольору" #: ../plug-ins/common/exchange.c:308 -#, fuzzy msgid "Middle-click inside preview to pick \"From Color\"" msgstr "Перегляд: Клацніть всередині щоб вибрати \"З кольору\"" @@ -3667,29 +3458,24 @@ msgstr "Заміна кольору: З кольору" #: ../plug-ins/common/exchange.c:423 -#, fuzzy msgid "R_ed threshold:" msgstr "Поріг _червоного:" #: ../plug-ins/common/exchange.c:484 -#, fuzzy msgid "G_reen threshold:" msgstr "Поріг _зеленого:" #: ../plug-ins/common/exchange.c:545 -#, fuzzy msgid "B_lue threshold:" msgstr "Поріг _синього:" #: ../plug-ins/common/exchange.c:573 -#, fuzzy msgid "Lock _thresholds" msgstr "Зафіксувати _пороги" #: ../plug-ins/common/film.c:240 -#, fuzzy msgid "_Film..." -msgstr "Плівка" +msgstr "_Плівка..." #: ../plug-ins/common/film.c:325 msgid "Composing Images..." @@ -3715,7 +3501,7 @@ #. Create selection #: ../plug-ins/common/film.c:1166 ../plug-ins/imagemap/imap_selection.c:400 -#: ../plug-ins/rcm/rcm_dialog.c:158 +#: ../plug-ins/rcm/rcm_dialog.c:165 msgid "Selection" msgstr "Виділення" @@ -3726,7 +3512,6 @@ #. Keep maximum image height #: ../plug-ins/common/film.c:1185 -#, fuzzy msgid "_Fit height to images" msgstr "_Розтягувати до висоти зображення" @@ -3746,7 +3531,6 @@ msgstr "Нумерація" #: ../plug-ins/common/film.c:1253 -#, fuzzy msgid "Start _index:" msgstr "Початковий _номер:" @@ -3760,14 +3544,12 @@ msgstr "Вибір кольору номерів" #: ../plug-ins/common/film.c:1287 -#, fuzzy msgid "At _bottom" msgstr "З_низу" #: ../plug-ins/common/film.c:1288 -#, fuzzy msgid "At _top" -msgstr "З_верху" +msgstr "Зв_ерху" #. ** The right frame keeps the image selection ** #: ../plug-ins/common/film.c:1301 @@ -3780,47 +3562,39 @@ #: ../plug-ins/common/film.c:1332 msgid "Ad_vanced" -msgstr "_Додатково" +msgstr "Д_одатково" #: ../plug-ins/common/film.c:1351 -#, fuzzy msgid "Image _height:" msgstr "_Висота зображення:" #: ../plug-ins/common/film.c:1362 -#, fuzzy msgid "Image spac_ing:" msgstr "_Інтервал між зображеннями:" #: ../plug-ins/common/film.c:1373 -#, fuzzy msgid "_Hole offset:" msgstr "_Зсув отворів:" #: ../plug-ins/common/film.c:1384 -#, fuzzy msgid "Ho_le width:" msgstr "_Ширина отворів:" #: ../plug-ins/common/film.c:1395 -#, fuzzy msgid "Hol_e height:" -msgstr "Ви_сота отворів:" +msgstr "Висота _отворів:" #: ../plug-ins/common/film.c:1406 -#, fuzzy msgid "Hole sp_acing:" msgstr "І_нтервал між отворами:" #: ../plug-ins/common/film.c:1417 -#, fuzzy msgid "_Number height:" msgstr "Висота _чисел:" #: ../plug-ins/common/flarefx.c:196 -#, fuzzy msgid "_FlareFX..." -msgstr "Відблиск" +msgstr "_ВідблискFX..." #: ../plug-ins/common/flarefx.c:271 msgid "Render Flare..." @@ -3831,12 +3605,10 @@ msgstr "Відблиск" #: ../plug-ins/common/flarefx.c:741 -#, fuzzy msgid "Center of Flare Effect" -msgstr "Центр відблиску" +msgstr "Центр ефекту відблиску" #: ../plug-ins/common/flarefx.c:777 -#, fuzzy msgid "_Show cursor" msgstr "_Показати курсор" @@ -3861,9 +3633,8 @@ msgstr "Поточне:" #: ../plug-ins/common/fp.c:321 -#, fuzzy msgid "_Filter Pack..." -msgstr "Застосування набору фільтрів..." +msgstr "_Набір фільтрів..." #: ../plug-ins/common/fp.c:361 msgid "Convert the image to RGB first!" @@ -3986,9 +3757,8 @@ msgstr "Розмір перегляду" #: ../plug-ins/common/fractaltrace.c:126 -#, fuzzy msgid "_Fractal Trace..." -msgstr "Фрактальний слід" +msgstr "_Фрактальний слід" #: ../plug-ins/common/fractaltrace.c:466 ../plug-ins/common/fractaltrace.c:693 msgid "Fractal Trace" @@ -4028,19 +3798,16 @@ msgstr "Y_1:" #: ../plug-ins/common/gauss.c:157 -#, fuzzy msgid "_Gaussian Blur..." -msgstr "/Фільтри/Розмивання/Гаусеве розмивання (IIR)..." +msgstr "_Гаусеве розмивання (IIR)..." #: ../plug-ins/common/gauss.c:413 -#, fuzzy msgid "Gaussian Blur..." -msgstr "/Фільтри/Розмивання/Гаусеве розмивання (IIR)..." +msgstr "Гаусеве розмивання (IIR)..." #: ../plug-ins/common/gauss.c:461 -#, fuzzy msgid "Gaussian Blur" -msgstr "IIR Гаусове розмивання" +msgstr "Гаусове розмивання" #. parameter settings #: ../plug-ins/common/gauss.c:484 @@ -4050,30 +3817,28 @@ #: ../plug-ins/common/gauss.c:498 ../plug-ins/common/jigsaw.c:2456 #: ../plug-ins/common/spread.c:379 msgid "_Horizontal:" -msgstr "_Горизонтальна:" +msgstr "Г_оризонтально:" #: ../plug-ins/common/gauss.c:502 ../plug-ins/common/jigsaw.c:2473 #: ../plug-ins/common/spread.c:383 msgid "_Vertical:" -msgstr "Вертикально:" +msgstr "_Вертикально:" #: ../plug-ins/common/gauss.c:525 -#, fuzzy msgid "Blur Method" msgstr "Тип розмивання" #: ../plug-ins/common/gauss.c:529 msgid "_IIR" -msgstr "" +msgstr "_IIR" #: ../plug-ins/common/gauss.c:530 -#, fuzzy msgid "_RLE" -msgstr "RLE" +msgstr "_RLE" #: ../plug-ins/common/gbr.c:130 ../plug-ins/common/gbr.c:151 msgid "GIMP brush" -msgstr "" +msgstr "Пензель GIMP" #: ../plug-ins/common/gbr.c:369 ../plug-ins/common/gbr.c:381 msgid "Unsupported brush format" @@ -4114,33 +3879,31 @@ #: ../plug-ins/common/gee.c:94 msgid "Gee-_Slime" -msgstr "" +msgstr "_Ковзання" #: ../plug-ins/common/gee.c:152 msgid "GEE-SLIME" msgstr "Ковзання" #: ../plug-ins/common/gee.c:158 ../plug-ins/common/gee_zoom.c:191 -#, fuzzy msgid "Thank you for choosing GIMP" -msgstr "* Дякуємо вам, за те що вибрали GIMP *" +msgstr "Дякуємо вам, за те що вибрали GIMP" #: ../plug-ins/common/gee.c:166 msgid "" "A less-obsolete creation of Adam D. Moss / adam@gimp.org / adam@foxbox.org / " "1998-2000" msgstr "" -"Менш застаріле творіння Адама Мосса / adam@gimp.org / adam@foxbox.org / 1998-" -"2000" +"Менш застаріле творіння Адама D. Мосса / adam@gimp.org / adam@foxbox.org / " +"1998-2000" #: ../plug-ins/common/gee_zoom.c:124 -#, fuzzy msgid "Gee-_Zoom" -msgstr "_Масштаб" +msgstr "Gee-_Масштаб" #: ../plug-ins/common/gee_zoom.c:185 msgid "GEE-ZOOM" -msgstr "" +msgstr "GEE-МАСШТАБ" #: ../plug-ins/common/gee_zoom.c:199 msgid "" @@ -4150,9 +3913,8 @@ "Застаріле творіння Адама Мосса / 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 "_Зображення" +msgstr "Зображення GIF" #: ../plug-ins/common/gif.c:687 msgid "Couldn't simply reduce colors further. Saving as opaque." @@ -4220,14 +3982,12 @@ msgstr "Параметри GIF" #: ../plug-ins/common/gif.c:1275 -#, fuzzy msgid "_Interlace" -msgstr "Черезрядковість" +msgstr "_Черезрядковість" #: ../plug-ins/common/gif.c:1291 -#, fuzzy msgid "_GIF comment:" -msgstr "Коментар GIF:" +msgstr "Коментар _GIF:" #. additional animated gif parameter settings #: ../plug-ins/common/gif.c:1348 @@ -4235,36 +3995,30 @@ msgstr "Параметри анімаційного GIF" #: ../plug-ins/common/gif.c:1354 -#, fuzzy msgid "_Loop forever" -msgstr "Нескінченний цикл" +msgstr "Нескінченний _цикл" #: ../plug-ins/common/gif.c:1367 -#, fuzzy msgid "_Delay between frames where unspecified:" -msgstr "Якщо затримка між кадрами не зазначена, вона дорівнює:" +msgstr "Якщо _затримка між кадрами не зазначена, вона дорівнює:" #: ../plug-ins/common/gif.c:1380 ../plug-ins/common/mng.c:1527 msgid "milliseconds" msgstr "мілісекунд" #: ../plug-ins/common/gif.c:1390 -#, fuzzy msgid "Frame disposal where unspecified: " msgstr "Розміщення кадру де не вказано:" #: ../plug-ins/common/gif.c:1394 -#, fuzzy msgid "I don't care" msgstr "Неважливо" #: ../plug-ins/common/gif.c:1396 -#, fuzzy msgid "Cumulative layers (combine)" msgstr "Накладання шарів (об'єднання)" #: ../plug-ins/common/gif.c:1398 -#, fuzzy msgid "One frame per layer (replace)" msgstr "Один кадр на шар (заміна)" @@ -4283,25 +4037,25 @@ #: ../plug-ins/common/gifload.c:352 msgid "Non-square pixels. Image might look squashed." -msgstr "Неквадратні точки. Зображення може виглядати пошкодженим." +msgstr "Не квадратні точки. Зображення може виглядати пошкодженим." -#: ../plug-ins/common/gifload.c:867 +#: ../plug-ins/common/gifload.c:866 #, c-format msgid "Background (%d%s)" msgstr "Тло (%d%s)" -#: ../plug-ins/common/gifload.c:915 ../plug-ins/common/iwarp.c:783 +#: ../plug-ins/common/gifload.c:914 ../plug-ins/common/iwarp.c:783 #: ../plug-ins/common/iwarp.c:817 #, c-format msgid "Frame %d" msgstr "Кадр %d" -#: ../plug-ins/common/gifload.c:917 +#: ../plug-ins/common/gifload.c:916 #, c-format msgid "Frame %d (%d%s)" msgstr "Кадр %d (%d%s)" -#: ../plug-ins/common/gifload.c:947 +#: ../plug-ins/common/gifload.c:946 #, c-format msgid "" "GIF: Undocumented GIF composite type %d is not handled. Animation might not " @@ -4312,7 +4066,7 @@ #: ../plug-ins/common/gih.c:205 ../plug-ins/common/gih.c:226 msgid "GIMP brush (animated)" -msgstr "" +msgstr "Пензель GIMP(анімований)" #: ../plug-ins/common/gih.c:319 #, c-format @@ -4336,7 +4090,6 @@ msgstr "Збереження як послідовність пензлів" #: ../plug-ins/common/gih.c:890 -#, fuzzy msgid "Spacing (percent):" msgstr "Інтервал (відсотки):" @@ -4345,12 +4098,10 @@ msgstr "точок" #: ../plug-ins/common/gih.c:962 -#, fuzzy msgid "Cell size:" msgstr "Розмір комірки:" #: ../plug-ins/common/gih.c:974 -#, fuzzy msgid "Number of cells:" msgstr "Кількість комірок:" @@ -4359,7 +4110,6 @@ msgstr " рядків" #: ../plug-ins/common/gih.c:1011 -#, fuzzy msgid " Columns on each layer" msgstr " стовпчиків у кожному шарі" @@ -4384,9 +4134,8 @@ msgstr "Кількість кадрів:" #: ../plug-ins/common/glasstile.c:129 -#, fuzzy msgid "_Glass Tile..." -msgstr "Скляна плитка..." +msgstr "_Скляна плитка..." #: ../plug-ins/common/glasstile.c:209 msgid "Glass Tile..." @@ -4397,31 +4146,26 @@ msgstr "Скляна плитка" #: ../plug-ins/common/glasstile.c:281 -#, fuzzy msgid "Tile _width:" msgstr "_Ширина плитки:" #: ../plug-ins/common/glasstile.c:295 ../plug-ins/common/mosaic.c:621 -#, fuzzy msgid "Tile _height:" -msgstr "_Висота плитки:" +msgstr "В_исота плитки:" #: ../plug-ins/common/gqbist.c:415 -#, fuzzy msgid "_Qbist..." -msgstr "Q-біст..." +msgstr "_Q-біст..." #: ../plug-ins/common/gqbist.c:514 msgid "Qbist ..." msgstr "Q-біст..." #: ../plug-ins/common/gqbist.c:695 -#, fuzzy msgid "Load QBE file" -msgstr "Завантажити QBE-файл..." +msgstr "Завантажити QBE-файл" #: ../plug-ins/common/gqbist.c:733 -#, fuzzy msgid "Save (middle transform) as QBE file" msgstr "Зберегти (середнє перетворення) як QBE-файл..." @@ -4430,18 +4174,16 @@ msgstr "G-Qбіст" #: ../plug-ins/common/gradmap.c:86 -#, fuzzy msgid "_Gradient Map" -msgstr "Градієнтна мапа..." +msgstr "_Градієнтна мапа" #: ../plug-ins/common/gradmap.c:124 msgid "Gradient Map..." msgstr "Градієнтна мапа..." #: ../plug-ins/common/grid.c:149 -#, fuzzy msgid "_Grid..." -msgstr "Напрямні..." +msgstr "_Сітка..." #: ../plug-ins/common/grid.c:242 msgid "Drawing Grid..." @@ -4492,9 +4234,8 @@ msgstr "Колір перетинів" #: ../plug-ins/common/gtm.c:154 -#, fuzzy msgid "HTML table" -msgstr "Мармур" +msgstr "Таблиця HTML" #: ../plug-ins/common/gtm.c:399 msgid "GIMP Table Magic" @@ -4512,7 +4253,7 @@ msgstr "" "Ви майже створили величезний\n" "HTML-файл, який майже напевне\n" -"призведе до збою вашого броузера." +"призведе до збою вашого переглядача." #. HTML Page Options #: ../plug-ins/common/gtm.c:439 @@ -4520,7 +4261,6 @@ msgstr "Параметри HTML-сторінки" #: ../plug-ins/common/gtm.c:446 -#, fuzzy msgid "_Generate full HTML document" msgstr "Створити _повний документ HTML" @@ -4538,7 +4278,6 @@ msgstr "Параметри створення таблиці" #: ../plug-ins/common/gtm.c:473 -#, fuzzy msgid "_Use cellspan" msgstr "Використовувати _об'єднання комірок" @@ -4577,7 +4316,6 @@ msgstr "Текст підпису таблиці." #: ../plug-ins/common/gtm.c:538 -#, fuzzy msgid "C_ell content:" msgstr "В_міст комірки:" @@ -4607,7 +4345,6 @@ msgstr "Висота кожної комірки. Може бути числом чи відсотками." #: ../plug-ins/common/gtm.c:609 -#, fuzzy msgid "Cell-_padding:" msgstr "_Заповнення комірки:" @@ -4616,7 +4353,6 @@ msgstr "Розмір заповнення комірок." #: ../plug-ins/common/gtm.c:622 -#, fuzzy msgid "Cell-_spacing:" msgstr "_Інтервал між комірками:" @@ -4625,9 +4361,8 @@ msgstr "Розмір інтервалу між комірками." #: ../plug-ins/common/guillotine.c:72 -#, fuzzy msgid "_Guillotine" -msgstr "Гільйотина..." +msgstr "Г_ільйотина..." #: ../plug-ins/common/guillotine.c:104 msgid "Guillotine..." @@ -4635,12 +4370,11 @@ #: ../plug-ins/common/header.c:75 msgid "C source code header" -msgstr "" +msgstr "Заголовок програми на С" #: ../plug-ins/common/hot.c:217 -#, fuzzy msgid "_Hot..." -msgstr "Гарячі кольори..." +msgstr "_Гарячі кольори..." #: ../plug-ins/common/hot.c:379 msgid "Hot..." @@ -4651,7 +4385,6 @@ msgstr "Гарячі" #: ../plug-ins/common/hot.c:600 -#, fuzzy msgid "Create _New layer" msgstr "Створити _новий шар" @@ -4672,9 +4405,8 @@ msgstr "_Чорний" #: ../plug-ins/common/illusion.c:101 -#, fuzzy msgid "_Illusion..." -msgstr "Ілюзія..." +msgstr "_Ілюзія..." #: ../plug-ins/common/illusion.c:173 msgid "Illusion..." @@ -4685,9 +4417,8 @@ msgstr "Ілюзія" #: ../plug-ins/common/illusion.c:423 -#, fuzzy msgid "_Divisions:" -msgstr "_Ділення:" +msgstr "Д_ілення:" #: ../plug-ins/common/illusion.c:433 msgid "Mode _1" @@ -4698,9 +4429,8 @@ msgstr "Режим _2" #: ../plug-ins/common/iwarp.c:254 -#, fuzzy msgid "_IWarp..." -msgstr "Викривлення..." +msgstr "_Інтерактивне спотворення..." #: ../plug-ins/common/iwarp.c:688 msgid "Warping..." @@ -4712,7 +4442,6 @@ msgstr "Викривляється кадр № %d..." #: ../plug-ins/common/iwarp.c:806 -#, fuzzy msgid "Ping pong" msgstr "Пін-понґ" @@ -4765,12 +4494,10 @@ msgstr "Ви_хор CW" #: ../plug-ins/common/iwarp.c:1059 -#, fuzzy msgid "_Deform radius:" msgstr "Радіус _деформації:" #: ../plug-ins/common/iwarp.c:1069 -#, fuzzy msgid "D_eform amount:" msgstr "Степінь д_еформації:" @@ -4779,32 +4506,29 @@ msgstr "_Білінійний" #: ../plug-ins/common/iwarp.c:1092 -#, fuzzy msgid "Adaptive s_upersample" msgstr "Адаптивна с_упервибірка" #: ../plug-ins/common/iwarp.c:1112 -#, fuzzy msgid "Ma_x depth:" -msgstr "Максимальна _глибина:" +msgstr "Максимальна г_либина:" #: ../plug-ins/common/iwarp.c:1122 msgid "Thresho_ld:" -msgstr "_Поріг:" +msgstr "П_оріг:" #: ../plug-ins/common/iwarp.c:1135 ../plug-ins/common/sinus.c:764 #: ../plug-ins/gflare/gflare.c:2795 msgid "_Settings" -msgstr "_Параметри" +msgstr "П_араметри" #: ../plug-ins/common/iwarp.c:1151 msgid "IWarp" msgstr "Інтерактивне спотворення" #: ../plug-ins/common/jigsaw.c:364 -#, fuzzy msgid "_Jigsaw..." -msgstr "Головоломка" +msgstr "_Головоломка..." #: ../plug-ins/common/jigsaw.c:418 msgid "Assembling Jigsaw..." @@ -4831,7 +4555,6 @@ msgstr "Закруглені краї" #: ../plug-ins/common/jigsaw.c:2500 -#, fuzzy msgid "_Bevel width:" msgstr "Ширина _фаски:" @@ -4841,7 +4564,7 @@ #: ../plug-ins/common/jigsaw.c:2517 msgid "H_ighlight:" -msgstr "_Відблиски:" +msgstr "В_ідблиски:" #: ../plug-ins/common/jigsaw.c:2521 msgid "The amount of highlighting on the edges of each piece" @@ -4869,7 +4592,6 @@ msgstr "Кожен елемент має викривлені сторони" #: ../plug-ins/common/jpeg.c:384 ../plug-ins/common/jpeg.c:422 -#, fuzzy msgid "JPEG image" msgstr "Перегляд JPEG" @@ -4879,58 +4601,50 @@ #: ../plug-ins/common/jpeg.c:892 msgid "EXIF data will be ignored." -msgstr "" +msgstr "EXIF дані ігноруються." #: ../plug-ins/common/jpeg.c:1106 msgid "JPEG preview" msgstr "Перегляд JPEG" #: ../plug-ins/common/jpeg.c:1368 -#, fuzzy, c-format +#, c-format msgid "File size: %02.01f kB" -msgstr "Розмір: %ld б (%02.01f кб)" +msgstr "Розмір файлу: %02.01f кб" #: ../plug-ins/common/jpeg.c:1861 ../plug-ins/common/jpeg.c:1961 -#, fuzzy msgid "File size: unknown" -msgstr "Розмір: невідомо" +msgstr "Розмір файлу: невідомо" #: ../plug-ins/common/jpeg.c:1926 msgid "Save as JPEG" msgstr "Збереження як JPEG" #: ../plug-ins/common/jpeg.c:1947 -#, fuzzy msgid "_Quality:" -msgstr "Якість:" +msgstr "_Якість:" #: ../plug-ins/common/jpeg.c:1951 -#, fuzzy msgid "JPEG quality parameter" -msgstr "Параметри" +msgstr "Параметр якості JPEG" #: ../plug-ins/common/jpeg.c:1970 -#, fuzzy msgid "Show _Preview in image window" -msgstr "Зняти одне вікно" +msgstr "Попередній _перегляд у вікні зображення" #: ../plug-ins/common/jpeg.c:1983 -#, fuzzy msgid "_Advanced Options" -msgstr "Додаткові параметри набору фільтрів" +msgstr "_Додаткові параметри" #: ../plug-ins/common/jpeg.c:2011 -#, fuzzy msgid "_Smoothing:" -msgstr "Згладжування:" +msgstr "З_гладжування:" #: ../plug-ins/common/jpeg.c:2024 -#, fuzzy msgid "Frequency (rows):" -msgstr "Перезапуск частоти (рядки):" +msgstr "Частота (рядки):" #: ../plug-ins/common/jpeg.c:2038 -#, fuzzy msgid "Use restart markers" msgstr "Перезапустити маркери" @@ -4944,16 +4658,15 @@ #: ../plug-ins/common/jpeg.c:2086 msgid "Force baseline JPEG" -msgstr "" +msgstr "Примусова база JPEG" #: ../plug-ins/common/jpeg.c:2102 msgid "Save EXIF data" msgstr "Зберегти дані EXIF" #: ../plug-ins/common/jpeg.c:2119 -#, fuzzy msgid "Save thumbnail" -msgstr "Збереження файлу" +msgstr "Зберегти мініатюри" #. Subsampling #: ../plug-ins/common/jpeg.c:2136 @@ -4963,7 +4676,7 @@ #. DCT method #: ../plug-ins/common/jpeg.c:2163 msgid "DCT method:" -msgstr "" +msgstr "DCT метод:" #: ../plug-ins/common/jpeg.c:2169 msgid "Fast Integer" @@ -4982,9 +4695,9 @@ msgstr "Коментар" #: ../plug-ins/common/jpeg.c:2338 -#, fuzzy, c-format +#, c-format msgid "Opening thumbnail for '%s'..." -msgstr "Відкривається %s..." +msgstr "Відкривається мініатюра для \"%s\"..." #: ../plug-ins/common/laplace.c:95 msgid "_Laplace" @@ -5020,23 +4733,21 @@ #: ../plug-ins/common/lic.c:682 msgid "_Derivative" -msgstr "_Похідна" +msgstr "По_хідна" #: ../plug-ins/common/lic.c:683 msgid "_Gradient" -msgstr "_Градієнт" +msgstr "Г_радієнт" #: ../plug-ins/common/lic.c:689 msgid "Convolve" msgstr "Згортання" #: ../plug-ins/common/lic.c:694 -#, fuzzy msgid "_With white noise" msgstr "З _білим шумом" #: ../plug-ins/common/lic.c:695 -#, fuzzy msgid "W_ith source image" msgstr "З _початковим зображенням" @@ -5045,44 +4756,36 @@ msgstr "Зображення _ефекту:" #: ../plug-ins/common/lic.c:725 -#, fuzzy msgid "_Filter length:" msgstr "Довжина _фільтру" #: ../plug-ins/common/lic.c:734 -#, fuzzy msgid "_Noise magnitude:" msgstr "Величина _шуму:" #: ../plug-ins/common/lic.c:743 -#, fuzzy msgid "In_tegration steps:" -msgstr "_Інтеграційні кроки:" +msgstr "Ін_теграційні кроки:" #: ../plug-ins/common/lic.c:752 -#, fuzzy msgid "_Minimum value:" msgstr "М_інімальне значення:" #: ../plug-ins/common/lic.c:761 -#, fuzzy msgid "M_aximum value:" msgstr "М_аксимальне значення:" #: ../plug-ins/common/lic.c:812 -#, fuzzy msgid "_Van Gogh (LIC)..." -msgstr "Ван Гог (LIC)..." +msgstr "_Ван Гог (LIC)..." #: ../plug-ins/common/mail.c:253 -#, fuzzy msgid "_Mail Image..." -msgstr "/Файл/Надіс_лати зображення..." +msgstr "Надіс_лати зображення..." #: ../plug-ins/common/mail.c:474 -#, fuzzy msgid "Send as Mail" -msgstr "Надсилання зображення" +msgstr "Надіслати як пошту" #: ../plug-ins/common/mail.c:498 msgid "_Recipient:" @@ -5111,7 +4814,7 @@ #: ../plug-ins/common/mail.c:592 msgid "_Uuencode" -msgstr "Uuencode" +msgstr "_Uuencode" #: ../plug-ins/common/mail.c:593 msgid "_MIME" @@ -5139,16 +4842,15 @@ #: ../plug-ins/common/mapcolor.c:154 msgid "Adjust _FG-BG" -msgstr "" +msgstr "Скорегувати _FG-BG" #: ../plug-ins/common/mapcolor.c:172 -#, fuzzy msgid "Color Range _Mapping..." -msgstr "Заміна кольору..." +msgstr "_Мапа заміни кольору..." #: ../plug-ins/common/mapcolor.c:219 ../plug-ins/common/mapcolor.c:507 msgid "Cannot operate on gray or indexed color images." -msgstr "Не застосовне до індексованих зображень" +msgstr "Не застосовне до індексованих зображень." #: ../plug-ins/common/mapcolor.c:240 msgid "Adjusting Foreground/Background..." @@ -5176,9 +4878,8 @@ msgstr "До:" #: ../plug-ins/common/max_rgb.c:106 -#, fuzzy msgid "_Max RGB..." -msgstr "Максимум RGB..." +msgstr "Максим_ум RGB..." #: ../plug-ins/common/max_rgb.c:145 msgid "Can only operate on RGB drawables." @@ -5193,19 +4894,16 @@ msgstr "Максимум RGB" #: ../plug-ins/common/max_rgb.c:295 -#, fuzzy msgid "_Hold the maximal channels" msgstr "З_берігати максимальні канали" #: ../plug-ins/common/max_rgb.c:298 -#, fuzzy msgid "Ho_ld the minimal channels" msgstr "Зб_ерігати мінімальні канали" #: ../plug-ins/common/mblur.c:176 -#, fuzzy msgid "_Motion Blur..." -msgstr "Розмивання рухом..." +msgstr "Розмивання р_ухом..." #: ../plug-ins/common/mblur.c:796 msgid "Motion Blurring..." @@ -5237,12 +4935,11 @@ #: ../plug-ins/common/mblur.c:956 ../plug-ins/common/newsprint.c:1012 msgid "_Angle:" -msgstr "_Кут:" +msgstr "К_ут:" #: ../plug-ins/common/mblur.c:969 -#, fuzzy msgid "Blur Center" -msgstr "Центр" +msgstr "Центр розмивання" #. Inform the user that we couldn't losslessly save the #. * transparency & just use the full palette @@ -5264,22 +4961,18 @@ msgstr "Черезрядковість" #: ../plug-ins/common/mng.c:1345 -#, fuzzy msgid "Save background color" msgstr "Зберегти колір тла" #: ../plug-ins/common/mng.c:1356 -#, fuzzy msgid "Save gamma" msgstr "Зберегти гаму" #: ../plug-ins/common/mng.c:1366 -#, fuzzy msgid "Save resolution" msgstr "Зберегти роздільну здатність" #: ../plug-ins/common/mng.c:1377 -#, fuzzy msgid "Save creation time" msgstr "Зберегти дату створення" @@ -5292,14 +4985,12 @@ msgstr "JNG" #: ../plug-ins/common/mng.c:1400 -#, fuzzy msgid "PNG + delta PNG" -msgstr "PNG + Delta PNG" +msgstr "PNG + delta PNG" #: ../plug-ins/common/mng.c:1401 -#, fuzzy msgid "JNG + delta PNG" -msgstr "JNG + Delta PNG" +msgstr "JNG + delta PNG" #: ../plug-ins/common/mng.c:1402 msgid "All PNG" @@ -5310,9 +5001,8 @@ msgstr "Усі JNG" #: ../plug-ins/common/mng.c:1415 -#, fuzzy msgid "Default chunks type:" -msgstr "Тип:" +msgstr "Типовий тип сегментів:" #: ../plug-ins/common/mng.c:1418 msgid "Combine" @@ -5323,12 +5013,10 @@ msgstr "Замістити" #: ../plug-ins/common/mng.c:1430 -#, fuzzy msgid "Default frame disposal:" -msgstr "Кадри:" +msgstr "Типове розташування кадру:" #: ../plug-ins/common/mng.c:1442 -#, fuzzy msgid "PNG compression level:" msgstr "Рівень стиснення PNG:" @@ -5338,17 +5026,14 @@ "Виберіть більший степінь стиснення для отримання файлів меншого розміру" #: ../plug-ins/common/mng.c:1464 -#, fuzzy msgid "JPEG compression quality:" msgstr "Якість стиснення JPEG:" #: ../plug-ins/common/mng.c:1481 -#, fuzzy msgid "JPEG smoothing factor:" msgstr "Параметр згладжування JPEG:" #: ../plug-ins/common/mng.c:1491 -#, fuzzy msgid "Animated MNG options" msgstr "Параметри анімаційного MNG" @@ -5357,19 +5042,16 @@ msgstr "Цикл" #: ../plug-ins/common/mng.c:1511 -#, fuzzy msgid "Default frame delay:" msgstr "Типова затримка кадру:" #: ../plug-ins/common/mng.c:1589 -#, fuzzy msgid "MNG animation" -msgstr "Параметри MNG" +msgstr "Анімація MNG" #: ../plug-ins/common/mosaic.c:309 -#, fuzzy msgid "_Mosaic..." -msgstr "Мозаїка" +msgstr "_Мозаїка" #. progress bar for gradient finding #: ../plug-ins/common/mosaic.c:435 @@ -5386,22 +5068,18 @@ msgstr "Мозаїка" #: ../plug-ins/common/mosaic.c:544 -#, fuzzy msgid "Co_lor averaging" msgstr "_Усереднення кольору" #: ../plug-ins/common/mosaic.c:554 -#, fuzzy msgid "Allo_w tile splitting" -msgstr "Дозволити _розбивання елементів" +msgstr "Дозволити роз_бивати елементи" #: ../plug-ins/common/mosaic.c:564 -#, fuzzy msgid "_Pitted surfaces" -msgstr "_Поверхні з виїмками" +msgstr "_Поверхні з впадинами" #: ../plug-ins/common/mosaic.c:574 -#, fuzzy msgid "_FG/BG lighting" msgstr "_Освітлення переднього плану/тла" @@ -5419,7 +5097,6 @@ msgstr "_Шестикутники" #: ../plug-ins/common/mosaic.c:594 -#, fuzzy msgid "Oc_tagons & squares" msgstr "_Восьмикутники й квадрати" @@ -5429,48 +5106,40 @@ msgstr "Параметри" #: ../plug-ins/common/mosaic.c:612 -#, fuzzy msgid "T_ile size:" msgstr "_Розмір елементу:" #: ../plug-ins/common/mosaic.c:630 -#, fuzzy msgid "Til_e spacing:" msgstr "_Інтервал між елементами:" #: ../plug-ins/common/mosaic.c:639 -#, fuzzy msgid "Tile _neatness:" msgstr "_Чистота елементів:" #: ../plug-ins/common/mosaic.c:649 -#, fuzzy msgid "Light _direction:" msgstr "_Напрямок освітлення:" #: ../plug-ins/common/mosaic.c:658 -#, fuzzy msgid "Color _variation:" -msgstr "_Варіації кольорів:" +msgstr "В_аріації кольорів:" #: ../plug-ins/common/mosaic.c:2392 msgid "Unable to add additional point.\n" msgstr "Не вдається додати додаткову точку.\n" #: ../plug-ins/common/neon.c:135 -#, fuzzy msgid "_Neon..." -msgstr "Відео/RGB..." +msgstr "_Неон..." #: ../plug-ins/common/neon.c:207 -#, fuzzy msgid "Neon..." -msgstr "Газетний папір" +msgstr "Неон..." #: ../plug-ins/common/neon.c:697 -#, fuzzy msgid "Neon Detection" -msgstr "Виділення меж" +msgstr "Виділення неону" #: ../plug-ins/common/neon.c:742 ../plug-ins/common/unsharp.c:678 msgid "_Amount:" @@ -5521,18 +5190,16 @@ msgstr "Інтенсивність" #: ../plug-ins/common/newsprint.c:537 -#, fuzzy msgid "Newsprin_t..." -msgstr "Газетний папір" +msgstr "_Газетний папір" #: ../plug-ins/common/newsprint.c:638 msgid "Newsprint..." msgstr "Газетний папір" #: ../plug-ins/common/newsprint.c:1042 -#, fuzzy msgid "_Spot function:" -msgstr "_Крапельна функція..." +msgstr "К_рапельна функція:" #: ../plug-ins/common/newsprint.c:1199 msgid "Newsprint" @@ -5552,9 +5219,8 @@ msgstr "LPI в_иводі:" #: ../plug-ins/common/newsprint.c:1289 -#, fuzzy msgid "C_ell size:" -msgstr "Розмір комірки:" +msgstr "Розмір _комірки:" #. screen settings #: ../plug-ins/common/newsprint.c:1302 ../plug-ins/gflare/gflare.c:562 @@ -5562,7 +5228,6 @@ msgstr "Екран" #: ../plug-ins/common/newsprint.c:1321 -#, fuzzy msgid "B_lack pullout (%):" msgstr "_Чорна складова (%):" @@ -5583,14 +5248,12 @@ msgstr "_Інтенсивність" #: ../plug-ins/common/newsprint.c:1406 -#, fuzzy msgid "_Lock channels" msgstr "_Фіксувати канали" #: ../plug-ins/common/newsprint.c:1419 -#, fuzzy msgid "_Factory defaults" -msgstr "_Початкові параметри" +msgstr "Поча_ткові параметри" #. anti-alias control #: ../plug-ins/common/newsprint.c:1445 ../plug-ins/gfig/gfig-dialog.c:1258 @@ -5602,9 +5265,8 @@ msgstr "П_ерекриття:" #: ../plug-ins/common/nlfilt.c:126 -#, fuzzy msgid "_NL Filter..." -msgstr "Нелінійний фільтр..." +msgstr "Не_лінійний фільтр..." #: ../plug-ins/common/nlfilt.c:954 msgid "NL Filter..." @@ -5619,17 +5281,14 @@ msgstr "Фільтр" #: ../plug-ins/common/nlfilt.c:1042 -#, fuzzy msgid "_Alpha trimmed mean" msgstr "_Альфа-усікання середнє" #: ../plug-ins/common/nlfilt.c:1044 -#, fuzzy msgid "Op_timal estimation" msgstr "_Оптимальна оцінка" #: ../plug-ins/common/nlfilt.c:1046 -#, fuzzy msgid "_Edge enhancement" msgstr "П_ідсилення грані" @@ -5638,28 +5297,24 @@ msgstr "А_льфа:" #: ../plug-ins/common/noisify.c:157 -#, fuzzy msgid "_Scatter RGB..." -msgstr "Розсіювання HSV..." +msgstr "Роз_сіювання RGB..." #: ../plug-ins/common/noisify.c:285 msgid "Adding Noise..." msgstr "Додавання шуму..." #: ../plug-ins/common/noisify.c:451 -#, fuzzy msgid "Scatter RGB" -msgstr "Розсіювання HSV" +msgstr "Розсіювання RGB" #: ../plug-ins/common/noisify.c:477 -#, fuzzy msgid "Co_rrelated noise" -msgstr "Створити еліпс" +msgstr "_Корельований шум" #: ../plug-ins/common/noisify.c:492 -#, fuzzy msgid "_Independent RGB" -msgstr "_Незалежне" +msgstr "_Незалежний RGB" #: ../plug-ins/common/noisify.c:516 ../plug-ins/common/noisify.c:520 msgid "_Gray:" @@ -5679,9 +5334,8 @@ msgstr "Нормалізація..." #: ../plug-ins/common/nova.c:179 -#, fuzzy msgid "Su_perNova..." -msgstr "Наднова" +msgstr "_Наднова..." #: ../plug-ins/common/nova.c:262 msgid "Rendering SuperNova..." @@ -5697,10 +5351,9 @@ #: ../plug-ins/common/nova.c:371 msgid "_Spokes:" -msgstr "_Плями:" +msgstr "Пл_ями:" #: ../plug-ins/common/nova.c:386 -#, fuzzy msgid "R_andom hue:" msgstr "_Випадковий відтінок:" @@ -5709,14 +5362,12 @@ msgstr "Центр Наднової" #: ../plug-ins/common/nova.c:472 -#, fuzzy msgid "S_how cursor" msgstr "_Показати курсор" #: ../plug-ins/common/oilify.c:111 -#, fuzzy msgid "Oili_fy..." -msgstr "Олійна фарба" +msgstr "_Олійна фарба" #: ../plug-ins/common/oilify.c:189 msgid "Oil Painting..." @@ -5727,12 +5378,10 @@ msgstr "Олійна фарба" #: ../plug-ins/common/oilify.c:504 -#, fuzzy msgid "_Mask size:" msgstr "Розмір _маски:" #: ../plug-ins/common/oilify.c:515 -#, fuzzy msgid "_Use intensity algorithm" msgstr "_Використовувати алгоритм яскравості" @@ -5758,7 +5407,7 @@ #: ../plug-ins/common/papertile.c:302 msgid "_Force" -msgstr "_Підсилювати" +msgstr "Підс_илювати" #: ../plug-ins/common/papertile.c:309 msgid "C_entering" @@ -5773,7 +5422,6 @@ msgstr "_Максимум (%):" #: ../plug-ins/common/papertile.c:343 -#, fuzzy msgid "_Wrap around" msgstr "_Безшовне зображення" @@ -5782,27 +5430,24 @@ msgstr "Тип тла" #: ../plug-ins/common/papertile.c:360 -#, fuzzy msgid "I_nverted image" -msgstr "_Інвертоване зображення" +msgstr "І_нвертоване зображення" #: ../plug-ins/common/papertile.c:362 msgid "Im_age" msgstr "_Зображення" #: ../plug-ins/common/papertile.c:364 -#, fuzzy msgid "Fo_reground color" -msgstr "Колір _переднього плану" +msgstr "Колір п_ереднього плану" #: ../plug-ins/common/papertile.c:366 -#, fuzzy msgid "Bac_kground color" -msgstr "Колір _тла" +msgstr "Колір т_ла" #: ../plug-ins/common/papertile.c:368 msgid "S_elect here:" -msgstr "Вибраний символ:" +msgstr "_Вибраний символ:" #: ../plug-ins/common/papertile.c:375 msgid "Background Color" @@ -5817,14 +5462,12 @@ msgstr "31 Вересень 1999" #: ../plug-ins/common/papertile.c:816 -#, fuzzy msgid "_Paper Tile..." -msgstr "Розріз паперу..." +msgstr "Розріз _паперу..." #: ../plug-ins/common/pat.c:104 ../plug-ins/common/pat.c:126 -#, fuzzy msgid "GIMP pattern" -msgstr "Візерунок" +msgstr "Візерунок GIMP" #: ../plug-ins/common/pat.c:343 #, c-format @@ -5837,7 +5480,7 @@ #: ../plug-ins/common/pcx.c:96 ../plug-ins/common/pcx.c:115 msgid "ZSoft PCX image" -msgstr "" +msgstr "Зображення ZSoft PCX" #: ../plug-ins/common/pcx.c:314 #, c-format @@ -5854,38 +5497,33 @@ msgstr "Незвичайний вигляд файлу PCX" #: ../plug-ins/common/photocopy.c:158 -#, fuzzy msgid "_Photocopy..." -msgstr "Гарячі кольори..." +msgstr "_Фотографія..." #: ../plug-ins/common/photocopy.c:837 -#, fuzzy msgid "Photocopy" msgstr "Фотографія" #: ../plug-ins/common/photocopy.c:881 ../plug-ins/common/sharpen.c:509 #: ../plug-ins/common/softglow.c:687 msgid "_Sharpness:" -msgstr "_Різкість:" +msgstr "Р_ізкість:" #: ../plug-ins/common/photocopy.c:895 -#, fuzzy msgid "Percent _black:" -msgstr "Відсоток" +msgstr "Відсоток _чорного:" #: ../plug-ins/common/photocopy.c:909 -#, fuzzy msgid "Percent _white:" -msgstr "Відсоток" +msgstr "Відсоток _білого:" #: ../plug-ins/common/pix.c:141 ../plug-ins/common/pix.c:158 msgid "Alias|Wavefront PIX image" -msgstr "" +msgstr "Псевдонім|зображення Wavefront PIX" #: ../plug-ins/common/pixelize.c:173 -#, fuzzy msgid "_Pixelize..." -msgstr "Пікселізація..." +msgstr "_Пікселізація..." #: ../plug-ins/common/pixelize.c:275 msgid "Pixelizing..." @@ -5904,9 +5542,8 @@ msgstr "_Висота точки:" #: ../plug-ins/common/plasma.c:185 -#, fuzzy msgid "_Plasma..." -msgstr "Плазма..." +msgstr "_Плазма..." #: ../plug-ins/common/plasma.c:268 msgid "Plasma..." @@ -5917,7 +5554,6 @@ msgstr "Плазма" #: ../plug-ins/common/plasma.c:334 -#, fuzzy msgid "Random _seed:" msgstr "_База випадковості:" @@ -5928,7 +5564,7 @@ #: ../plug-ins/common/png.c:249 ../plug-ins/common/png.c:266 #: ../plug-ins/common/png.c:281 ../plug-ins/common/png.c:295 msgid "PNG image" -msgstr "" +msgstr "Зображення PNG" #: ../plug-ins/common/png.c:657 #, c-format @@ -5959,12 +5595,10 @@ msgstr "Зберегти як PNG" #: ../plug-ins/common/png.c:1595 -#, fuzzy msgid "_Load defaults" msgstr "За_вантажити початкові параметри" #: ../plug-ins/common/png.c:1596 -#, fuzzy msgid "_Save defaults" msgstr "З_берегти початкові параметри" @@ -5973,42 +5607,34 @@ msgstr "Ч_ерезрядковість (Adam7)" #: ../plug-ins/common/png.c:1628 -#, fuzzy msgid "Save _background color" msgstr "Зберегти колір _тла" #: ../plug-ins/common/png.c:1636 -#, fuzzy msgid "Save _gamma" msgstr "Зберегти г_аму" #: ../plug-ins/common/png.c:1645 -#, fuzzy msgid "Save layer o_ffset" msgstr "Зберегти _зсув шару" #: ../plug-ins/common/png.c:1654 -#, fuzzy msgid "Save _resolution" msgstr "Зберегти _роздільну здатність" #: ../plug-ins/common/png.c:1663 -#, fuzzy msgid "Save creation _time" msgstr "Зберегти _час створення" #: ../plug-ins/common/png.c:1671 -#, fuzzy msgid "Save comme_nt" msgstr "Зберегти _коментар" #: ../plug-ins/common/png.c:1686 -#, fuzzy msgid "Save color _values from transparent pixels" msgstr "Зберігати значення _кольору прозорих точок" #: ../plug-ins/common/png.c:1699 -#, fuzzy msgid "Co_mpression level:" msgstr "Рівень ст_иснення:" @@ -6017,23 +5643,20 @@ msgstr "Не вдається завантажити типові параметри PNG" #: ../plug-ins/common/pnm.c:228 -#, fuzzy msgid "PNM Image" -msgstr "_Зображення" +msgstr "Зображення PNM" #: ../plug-ins/common/pnm.c:248 msgid "PNM image" -msgstr "" +msgstr "Зображення PNM" #: ../plug-ins/common/pnm.c:260 -#, fuzzy msgid "PGM image" -msgstr "Перегляд JPEG" +msgstr "Зображення PGM" #: ../plug-ins/common/pnm.c:272 -#, fuzzy msgid "PPM image" -msgstr "_Зображення" +msgstr "Зображення 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 @@ -6075,7 +5698,6 @@ #. file save type #: ../plug-ins/common/pnm.c:959 -#, fuzzy msgid "Data formatting" msgstr "Форматування даних" @@ -6089,7 +5711,7 @@ #: ../plug-ins/common/polar.c:170 msgid "P_olar Coords..." -msgstr "" +msgstr "_Полярні координати" #: ../plug-ins/common/polar.c:357 msgid "Polarizing..." @@ -6100,19 +5722,16 @@ msgstr "Поляризувати" #: ../plug-ins/common/polar.c:620 -#, fuzzy msgid "Circle _depth in percent:" msgstr "Г_либина кола у відсотках:" #: ../plug-ins/common/polar.c:632 -#, fuzzy msgid "Offset _angle:" msgstr "_Кут зміщення:" #: ../plug-ins/common/polar.c:647 -#, fuzzy msgid "_Map backwards" -msgstr "_Відобразити назад" +msgstr "Відобразити _назад" #: ../plug-ins/common/polar.c:653 msgid "" @@ -6123,7 +5742,6 @@ "- з лівої." #: ../plug-ins/common/polar.c:664 -#, fuzzy msgid "Map from _top" msgstr "Відобразити з_верху" @@ -6136,9 +5754,8 @@ "назовні. Якщо відмічено - навпаки." #: ../plug-ins/common/polar.c:682 -#, fuzzy msgid "To _polar" -msgstr "У _полярне" +msgstr "У _полярні" #: ../plug-ins/common/polar.c:688 msgid "" @@ -6149,18 +5766,16 @@ "відмічено - тоді у коло." #: ../plug-ins/common/postscript.c:576 ../plug-ins/common/postscript.c:662 -#, fuzzy msgid "PostScript document" -msgstr "_PostScript Level 2" +msgstr "Документ PostScript" #: ../plug-ins/common/postscript.c:595 ../plug-ins/common/postscript.c:677 -#, fuzzy msgid "Encapsulated PostScript image" -msgstr "_Encapsulated PostScript" +msgstr "Зображення Encapsulated PostScript" #: ../plug-ins/common/postscript.c:614 msgid "PDF document" -msgstr "" +msgstr "Документ PDF" #: ../plug-ins/common/postscript.c:1005 #, c-format @@ -6177,7 +5792,7 @@ msgstr "Помилка запуску ghostscript (%s)" #: ../plug-ins/common/postscript.c:1652 -#, fuzzy, c-format +#, c-format msgid "Error starting ghostscript: %s" msgstr "Помилка запуску ghostscript (%s)" @@ -6185,7 +5800,6 @@ #: ../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 "Помилка при записуванні" @@ -6210,7 +5824,7 @@ #: ../plug-ins/common/postscript.c:2983 msgid "Pages to load (e.g.: 1-4 or 1,3,5-7)" -msgstr "" +msgstr "Сторінок для завантаження(наприклад: 1-4 чи 1,3,5-7)" #: ../plug-ins/common/postscript.c:2985 msgid "Try Bounding Box" @@ -6225,7 +5839,7 @@ msgid "B/W" msgstr "Ч/Б" -#: ../plug-ins/common/postscript.c:3003 ../plug-ins/rcm/rcm_dialog.c:404 +#: ../plug-ins/common/postscript.c:3003 ../plug-ins/rcm/rcm_dialog.c:411 msgid "Gray" msgstr "Сірий" @@ -6242,7 +5856,6 @@ msgstr "Автоматично" #: ../plug-ins/common/postscript.c:3015 -#, fuzzy msgid "Text antialiasing" msgstr "Згладжування тексту" @@ -6255,7 +5868,6 @@ msgstr "Сильне" #: ../plug-ins/common/postscript.c:3027 -#, fuzzy msgid "Graphic antialiasing" msgstr "Згладжування графіки" @@ -6269,7 +5881,6 @@ msgstr "Розмір зображення" #: ../plug-ins/common/postscript.c:3152 -#, fuzzy msgid "_Keep aspect ratio" msgstr "З_берігати пропорції" @@ -6300,9 +5911,8 @@ msgstr "Вивід" #: ../plug-ins/common/postscript.c:3204 -#, fuzzy msgid "_PostScript level 2" -msgstr "_PostScript Level 2" +msgstr "_PostScript level 2" #: ../plug-ins/common/postscript.c:3213 msgid "_Encapsulated PostScript" @@ -6313,7 +5923,6 @@ msgstr "_Перегляд" #: ../plug-ins/common/postscript.c:3243 -#, fuzzy msgid "Preview _size:" msgstr "_Розмір перегляду:" @@ -6321,27 +5930,31 @@ msgid "Invalid UTF-8 string in PSD file" msgstr "Неправильний UTF-8 рядок у PSD файлі" -#: ../plug-ins/common/psd_save.c:181 +#: ../plug-ins/common/psd_save.c:192 msgid "Photoshop image" -msgstr "" +msgstr "Зображення Photoshop" -#: ../plug-ins/common/psd_save.c:1564 +#: ../plug-ins/common/psd_save.c:1312 #, c-format msgid "" "Unable to save '%s'. The psd file format does not support images that are " "more than 30000 pixels wide or tall." msgstr "" +"Не вдається зберегти '%s'. Файл формату psd не підтримує зображення шириною " +"чи висотою більше ніж 30000 точок." -#: ../plug-ins/common/psd_save.c:1576 +#: ../plug-ins/common/psd_save.c:1324 #, c-format msgid "" "Unable to save '%s'. The psd file format does not support images with " "layers that are more than 30000 pixels wide or tall." msgstr "" +"Не вдається зберегти '%s'. Файл формату psd не підтримує зображення з " +"шарами, ширина чи висота яких більша ніж 30000 точок." #: ../plug-ins/common/psp.c:362 msgid "Paint Shop Pro image" -msgstr "" +msgstr "Зображення Paint Shop Pro" #: ../plug-ins/common/psp.c:402 msgid "Save as PSP" @@ -6373,21 +5986,18 @@ msgstr "Випадкова пляма 1.7" #: ../plug-ins/common/randomize.c:244 -#, fuzzy msgid "_Hurl..." -msgstr "Загнута сторінка..." +msgstr "_Кидок..." #: ../plug-ins/common/randomize.c:256 msgid "_Pick..." -msgstr "" +msgstr "_Вибір..." #: ../plug-ins/common/randomize.c:268 -#, fuzzy msgid "_Slur..." -msgstr "Джерело..." +msgstr "_Пляма..." #: ../plug-ins/common/randomize.c:756 ../plug-ins/common/snoise.c:614 -#, fuzzy msgid "_Random seed:" msgstr "_База випадковості:" @@ -6409,149 +6019,127 @@ #: ../plug-ins/common/raw.c:166 ../plug-ins/common/raw.c:181 msgid "Raw Image Data" -msgstr "" +msgstr "Зображення з необробленими даними" #: ../plug-ins/common/raw.c:915 -#, fuzzy msgid "Raw Image Loader" -msgstr "/Файл/Д_рук" +msgstr "Завантажувач зображення з необробленими даними" #: ../plug-ins/common/raw.c:943 -#, fuzzy msgid "Image" -msgstr "_Зображення" +msgstr "Зображення" #: ../plug-ins/common/raw.c:955 msgid "Planar RGB" -msgstr "" +msgstr "Планарний RGB" #: ../plug-ins/common/raw.c:956 msgid "Indexed" -msgstr "" +msgstr "Індексований" #: ../plug-ins/common/raw.c:961 -#, fuzzy msgid "Image _Type:" -msgstr "Тип зображення:" +msgstr "_Тип зображення:" #: ../plug-ins/common/raw.c:1011 -#, fuzzy msgid "Palette" -msgstr "Кругова палітра" +msgstr "Палітра" #: ../plug-ins/common/raw.c:1021 ../plug-ins/common/raw.c:1109 msgid "R, G, B (normal)" -msgstr "" +msgstr "R, G, B (звичайний)" #: ../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)" #: ../plug-ins/common/raw.c:1027 -#, fuzzy msgid "_Palette Type:" -msgstr "Тип RGB-візерунку" +msgstr "Тип _палітри:" #: ../plug-ins/common/raw.c:1038 -#, fuzzy msgid "Off_set:" -msgstr "Зсув:" +msgstr "_Зсув:" #: ../plug-ins/common/raw.c:1050 -#, fuzzy msgid "Select Palette File to Load" -msgstr "Вибір назви файлу" +msgstr "Вибір файлу палітри для завантаження" #: ../plug-ins/common/raw.c:1053 -#, fuzzy msgid "Pal_ette File:" -msgstr "Візерунок" +msgstr "Файл _палітри:" #: ../plug-ins/common/raw.c:1081 -#, fuzzy msgid "Raw Image Save" -msgstr "Розмір зображення" +msgstr "Збереження зображення у необробленому форматі" #: ../plug-ins/common/raw.c:1095 -#, fuzzy msgid "RGB Save Type" -msgstr "Тип RGB-візерунку" +msgstr "Тип зберігання RGB" #: ../plug-ins/common/raw.c:1099 -#, fuzzy msgid "Standard (R,G,B)" -msgstr "Стандарт" +msgstr "Стандартне (R,G,B)" #: ../plug-ins/common/raw.c:1100 msgid "Planar (RRR,GGG,BBB)" -msgstr "" +msgstr "Планарне (RRR,GGG,BBB)" #: ../plug-ins/common/raw.c:1105 -#, fuzzy msgid "Indexed Palette Type" -msgstr "Тип RGB-візерунку" +msgstr "Тип індексованої палітри" #: ../plug-ins/common/retinex.c:168 -#, fuzzy msgid "_Retinex..." -msgstr "Створення брижів..." +msgstr "_Retinex..." #: ../plug-ins/common/retinex.c:251 -#, fuzzy msgid "Retinex..." -msgstr "Обертання..." +msgstr "Retinex..." #: ../plug-ins/common/retinex.c:253 msgid "Retinex (4/4): updated..." -msgstr "" +msgstr "Retinex (4/4): оновлено..." #: ../plug-ins/common/retinex.c:290 -#, fuzzy msgid "Retinex Image Enhancement" -msgstr "П_ідсилення грані" +msgstr "Retinex покращення зображення" #: ../plug-ins/common/retinex.c:311 msgid "Level" -msgstr "" +msgstr "Рівень" #: ../plug-ins/common/retinex.c:315 -#, fuzzy msgid "_Uniform" -msgstr "Редактор одиниць" +msgstr "_Однорідний" #: ../plug-ins/common/retinex.c:317 -#, fuzzy msgid "_Low" -msgstr "_Нижнього" +msgstr "_Низький" #: ../plug-ins/common/retinex.c:319 -#, fuzzy msgid "_High" -msgstr "_Висота" +msgstr "_Високий" #: ../plug-ins/common/retinex.c:344 -#, fuzzy msgid "_Scale:" -msgstr "Масштаб:" +msgstr "_Масштаб:" #: ../plug-ins/common/retinex.c:359 -#, fuzzy msgid "_Scale division:" -msgstr "_Ділення:" +msgstr "Ділення _шкали:" #: ../plug-ins/common/retinex.c:374 msgid "_Dynamic:" -msgstr "" +msgstr "_Динамічно:" #: ../plug-ins/common/retinex.c:648 -#, fuzzy msgid "Retinex: Filtering..." -msgstr "Розмивання рухом..." +msgstr "Retinex: Фільтрування..." #: ../plug-ins/common/ripple.c:138 -#, fuzzy msgid "_Ripple..." -msgstr "Створення брижів..." +msgstr "_Брижі..." #: ../plug-ins/common/ripple.c:222 msgid "Rippling..." @@ -6562,7 +6150,6 @@ msgstr "Брижі" #: ../plug-ins/common/ripple.c:522 -#, fuzzy msgid "_Retain tilability" msgstr "З_берегти безшовність" @@ -6582,11 +6169,11 @@ #: ../plug-ins/common/ripple.c:589 msgid "S_ine" -msgstr "_Синус" +msgstr "С_инус" #: ../plug-ins/common/ripple.c:612 msgid "_Period:" -msgstr "_Період:" +msgstr "П_еріод:" #: ../plug-ins/common/ripple.c:625 msgid "A_mplitude:" @@ -6609,16 +6196,14 @@ msgstr "Обертання..." #: ../plug-ins/common/sample_colorize.c:296 -#, fuzzy msgid "_Sample Colorize..." -msgstr "Фарбування за зразком" +msgstr "Фарбування за _зразком..." #: ../plug-ins/common/sample_colorize.c:1310 msgid "Sample Colorize" msgstr "Фарбування за зразком" #: ../plug-ins/common/sample_colorize.c:1315 -#, fuzzy msgid "Get sample colors" msgstr "Отримання кольору зразка" @@ -6637,31 +6222,26 @@ msgstr "Зразок:" #: ../plug-ins/common/sample_colorize.c:1361 -#, fuzzy msgid "From reverse gradient" msgstr "З оберненого градієнта" #: ../plug-ins/common/sample_colorize.c:1366 -#, fuzzy msgid "From gradient" msgstr "З градієнту" #. check button #: ../plug-ins/common/sample_colorize.c:1387 #: ../plug-ins/common/sample_colorize.c:1414 -#, fuzzy msgid "Show selection" msgstr "Показати виділене" #. check button #: ../plug-ins/common/sample_colorize.c:1398 #: ../plug-ins/common/sample_colorize.c:1425 -#, fuzzy msgid "Show color" msgstr "Показати колір" #: ../plug-ins/common/sample_colorize.c:1538 -#, fuzzy msgid "Input levels:" msgstr "Рівень на вході:" @@ -6671,25 +6251,21 @@ #. check button #: ../plug-ins/common/sample_colorize.c:1628 -#, fuzzy msgid "Hold intensity" msgstr "Зберегти інтенсивність" #. check button #: ../plug-ins/common/sample_colorize.c:1639 -#, fuzzy msgid "Original intensity" msgstr "Початкова інтенсивність" #. check button #: ../plug-ins/common/sample_colorize.c:1657 -#, fuzzy msgid "Use subcolors" msgstr "Використовувати субкольори" #. check button #: ../plug-ins/common/sample_colorize.c:1668 -#, fuzzy msgid "Smooth samples" msgstr "Згладжувати кольори зразка" @@ -6702,9 +6278,8 @@ msgstr "Фарбування за зразком..." #: ../plug-ins/common/scatter_hsv.c:113 -#, fuzzy msgid "S_catter HSV..." -msgstr "Розсіювання HSV..." +msgstr "Розс_іювання HSV..." #: ../plug-ins/common/scatter_hsv.c:208 msgid "Scattering HSV..." @@ -6731,9 +6306,8 @@ msgstr "_Яскравість:" #: ../plug-ins/common/screenshot.c:257 ../plug-ins/winsnap/winsnap.c:990 -#, fuzzy msgid "_Screen Shot..." -msgstr "Знімок екрану" +msgstr "_Знімок екрану..." #: ../plug-ins/common/screenshot.c:395 msgid "Error grabbing the pointer" @@ -6767,7 +6341,7 @@ #: ../plug-ins/common/screenshot.c:698 msgid "S_elect Window After" -msgstr "Вибрати вікно після" +msgstr "Ви_брати вікно після" #: ../plug-ins/common/screenshot.c:713 ../plug-ins/common/screenshot.c:755 msgid "Seconds Delay" @@ -6779,12 +6353,11 @@ #: ../plug-ins/common/screenshot.c:740 msgid "Grab _After" -msgstr "Зробити знімок через" +msgstr "Зробити знімок _через" #: ../plug-ins/common/sel_gauss.c:107 -#, fuzzy msgid "_Selective Gaussian Blur..." -msgstr "Вибіркове Гаусеве розмивання..." +msgstr "_Вибіркове Гаусеве розмивання..." #: ../plug-ins/common/sel_gauss.c:187 msgid "Selective Gaussian Blur..." @@ -6795,28 +6368,24 @@ msgstr "Вибіркове Гаусеве розмивання" #: ../plug-ins/common/sel_gauss.c:257 -#, fuzzy msgid "_Blur radius:" msgstr "_Радіус розмивання:" #: ../plug-ins/common/sel_gauss.c:267 -#, fuzzy msgid "_Max. delta:" msgstr "_Макс. Дельта:" #: ../plug-ins/common/semiflatten.c:77 -#, fuzzy msgid "_Semi-Flatten" -msgstr "Напівзведення..." +msgstr "Напів_зведення..." #: ../plug-ins/common/semiflatten.c:122 msgid "Semi-Flattening..." msgstr "Напівзведення..." #: ../plug-ins/common/sharpen.c:124 -#, fuzzy msgid "_Sharpen..." -msgstr "Підвищення різкості..." +msgstr "Підвищення _різкості..." #. #. * Let the user know what we're doing... @@ -6830,9 +6399,8 @@ msgstr "Підвищення різкості" #: ../plug-ins/common/shift.c:113 -#, fuzzy msgid "_Shift..." -msgstr "Зміщення..." +msgstr "З_сув..." #: ../plug-ins/common/shift.c:194 msgid "Shifting..." @@ -6843,24 +6411,20 @@ msgstr "Зсув" #: ../plug-ins/common/shift.c:373 -#, fuzzy msgid "Shift _horizontally" msgstr "_Горизонтальний зсув" #: ../plug-ins/common/shift.c:374 -#, fuzzy msgid "Shift _vertically" -msgstr "Вертикальний зсув" +msgstr "_Вертикальний зсув" #: ../plug-ins/common/shift.c:404 -#, fuzzy msgid "Shift _amount:" msgstr "_Величина зсуву:" #: ../plug-ins/common/sinus.c:191 -#, fuzzy msgid "_Sinus..." -msgstr "Синус" +msgstr "С_инус..." #: ../plug-ins/common/sinus.c:284 msgid "Sinus: rendering..." @@ -6886,29 +6450,27 @@ #: ../plug-ins/common/sinus.c:711 msgid "Co_mplexity:" -msgstr "_Складність:" +msgstr "Ск_ладність:" #: ../plug-ins/common/sinus.c:721 msgid "Calculation Settings" msgstr "Параметри обчислення" #: ../plug-ins/common/sinus.c:734 -#, fuzzy msgid "R_andom seed:" msgstr "_База випадковості:" #: ../plug-ins/common/sinus.c:743 -#, fuzzy msgid "_Force tiling?" -msgstr "_Безшовність" +msgstr "Примусова _безшовність" #: ../plug-ins/common/sinus.c:756 msgid "_Ideal" -msgstr "_Ідеальний" +msgstr "_Ідеально" #: ../plug-ins/common/sinus.c:757 msgid "_Distorted" -msgstr "_Спотворений" +msgstr "_Спотворено" #: ../plug-ins/common/sinus.c:775 ../plug-ins/common/sinus.c:791 #: ../plug-ins/imagemap/imap_preferences.c:516 @@ -6921,26 +6483,22 @@ msgstr "Чорний та білий." #: ../plug-ins/common/sinus.c:795 -#, fuzzy msgid "Bl_ack & white" msgstr "_Чорний та білий" #: ../plug-ins/common/sinus.c:797 -#, fuzzy msgid "_Foreground & background" -msgstr "_Передній план та тло" +msgstr "Перед_ній план та тло" #: ../plug-ins/common/sinus.c:799 msgid "C_hoose here:" -msgstr "Вибрати:" +msgstr "_Вибрати:" #: ../plug-ins/common/sinus.c:812 -#, fuzzy msgid "First color" msgstr "Перший колір" #: ../plug-ins/common/sinus.c:822 -#, fuzzy msgid "Second color" msgstr "Другий колір" @@ -6950,11 +6508,11 @@ #: ../plug-ins/common/sinus.c:848 msgid "F_irst Color:" -msgstr "_Перший колір:" +msgstr "П_ерший колір:" #: ../plug-ins/common/sinus.c:863 msgid "S_econd Color:" -msgstr "_Другий колір:" +msgstr "Д_ругий колір:" #: ../plug-ins/common/sinus.c:888 msgid "Blend Settings" @@ -6970,7 +6528,7 @@ #: ../plug-ins/common/sinus.c:903 msgid "Sin_usoidal" -msgstr "_Синусоїдний" +msgstr "С_инусоїдний" #: ../plug-ins/common/sinus.c:915 msgid "_Exponent:" @@ -6985,9 +6543,8 @@ msgstr "_Попередній перегляд" #: ../plug-ins/common/smooth_palette.c:88 -#, fuzzy msgid "Smoo_th Palette..." -msgstr "Гладка палітра" +msgstr "Г_ладка палітра..." #: ../plug-ins/common/smooth_palette.c:180 msgid "Deriving Smooth Palette..." @@ -6998,14 +6555,12 @@ msgstr "Гладка палітра" #: ../plug-ins/common/smooth_palette.c:445 -#, fuzzy msgid "_Search depth:" msgstr "_Глибина пошуку:" #: ../plug-ins/common/snoise.c:186 -#, fuzzy msgid "_Solid Noise..." -msgstr "Додавання суцільного шуму..." +msgstr "_Суцільний шум..." #: ../plug-ins/common/snoise.c:336 msgid "Solid Noise..." @@ -7018,12 +6573,12 @@ #: ../plug-ins/common/snoise.c:627 msgid "_Detail:" -msgstr "_Подробиці:" +msgstr "П_одробиці:" #. Turbulent #: ../plug-ins/common/snoise.c:637 msgid "T_urbulent" -msgstr "_Турбулентне" +msgstr "_Турбулентний" #. Tilable #: ../plug-ins/common/snoise.c:651 @@ -7031,59 +6586,52 @@ msgstr "_Розсічений" #: ../plug-ins/common/snoise.c:666 -#, fuzzy msgid "_X size:" msgstr "Розмір по _X:" #: ../plug-ins/common/snoise.c:679 -#, fuzzy msgid "_Y size:" msgstr "Розмір по _Y:" #: ../plug-ins/common/sobel.c:119 -#, fuzzy msgid "_Sobel..." -msgstr "_Собел" +msgstr "_Собел..." #: ../plug-ins/common/sobel.c:227 msgid "Sobel Edge Detection" -msgstr "Виділення меж за Sobel" +msgstr "Виділення меж за Собел" #: ../plug-ins/common/sobel.c:249 msgid "Sobel _Horizontally" -msgstr "_Горизонтальне розмивання за Sobel" +msgstr "Г_оризонтальне розмивання за Собел" #: ../plug-ins/common/sobel.c:261 msgid "Sobel _Vertically" -msgstr "_Вертикальне розмивання за Sobel" +msgstr "_Вертикальне розмивання за Собел" #: ../plug-ins/common/sobel.c:273 -#, fuzzy msgid "_Keep sign of result (one direction only)" msgstr "З_берігати знак результату (лише один напрямок)" #: ../plug-ins/common/sobel.c:359 msgid "Sobel Edge Detecting..." -msgstr "Виділення меж за Sobel.." +msgstr "Виділення меж за Собел.." #: ../plug-ins/common/softglow.c:138 -#, fuzzy msgid "_Softglow..." -msgstr "_Собел" +msgstr "_М'який жар" #: ../plug-ins/common/softglow.c:629 msgid "Softglow" -msgstr "" +msgstr "М'який жар" #: ../plug-ins/common/softglow.c:659 -#, fuzzy msgid "_Glow radius:" msgstr "_Радіус розмивання:" #: ../plug-ins/common/sparkle.c:186 -#, fuzzy msgid "_Sparkle..." -msgstr "Створення іскор..." +msgstr "_Іскри..." #: ../plug-ins/common/sparkle.c:292 msgid "Sparkling..." @@ -7095,14 +6643,13 @@ #: ../plug-ins/common/sparkle.c:366 msgid "Luminosity _Threshold:" -msgstr "_Поріг яскравості:" +msgstr "Поріг _яскравості:" #: ../plug-ins/common/sparkle.c:369 msgid "Adjust the Luminosity Threshold" msgstr "Підбір порогу яскравості" #: ../plug-ins/common/sparkle.c:376 -#, fuzzy msgid "F_lare intensity:" msgstr "Інтенсивність _спалаху:" @@ -7111,35 +6658,30 @@ msgstr "Підбір інтенсивності спалаху" #: ../plug-ins/common/sparkle.c:386 -#, fuzzy msgid "_Spike length:" -msgstr "Довжина _променів:" +msgstr "Дов_жина променів:" #: ../plug-ins/common/sparkle.c:389 msgid "Adjust the Spike Length" msgstr "Підбір довжини променів" #: ../plug-ins/common/sparkle.c:396 -#, fuzzy msgid "Sp_ike points:" -msgstr "Кількість _променів:" +msgstr "_Кількість променів:" #: ../plug-ins/common/sparkle.c:399 msgid "Adjust the Number of Spikes" msgstr "Підбір кількості променів" #: ../plug-ins/common/sparkle.c:406 -#, fuzzy msgid "Spi_ke angle (-1: random):" -msgstr "Кут _променя (-1: - випадковий):" +msgstr "К_ут променя (-1: - випадковий):" #: ../plug-ins/common/sparkle.c:409 -#, fuzzy msgid "Adjust the Spike Angle (-1 means a Random Angle is chosen)" msgstr "Підбір кута променя (-1 означає вибір випадкового кута)" #: ../plug-ins/common/sparkle.c:417 -#, fuzzy msgid "Spik_e density:" msgstr "_Щільність променя:" @@ -7152,7 +6694,6 @@ msgstr "Підбір непрозорості променя" #: ../plug-ins/common/sparkle.c:437 -#, fuzzy msgid "_Random hue:" msgstr "_Випадковий відтінок:" @@ -7161,7 +6702,6 @@ msgstr "Підбір степені того як багато відтінку буде змінюватись випадково" #: ../plug-ins/common/sparkle.c:448 -#, fuzzy msgid "Rando_m saturation:" msgstr "В_ипадкова насиченість:" @@ -7170,7 +6710,6 @@ msgstr "Підбір степені того як багато насиченості буде змінюватись випадково" #: ../plug-ins/common/sparkle.c:465 -#, fuzzy msgid "_Preserve luminosity" msgstr "З_берігати яскравість" @@ -7187,7 +6726,6 @@ msgstr "Чи потрібно робити інверсію ефекту?" #: ../plug-ins/common/sparkle.c:490 -#, fuzzy msgid "A_dd border" msgstr "_Додати рамку" @@ -7196,32 +6734,26 @@ msgstr "Намалювати рамку з променів навколо зображення" #: ../plug-ins/common/sparkle.c:507 -#, fuzzy msgid "_Natural color" msgstr "П_риродній колір" #: ../plug-ins/common/sparkle.c:508 -#, fuzzy msgid "_Foreground color" msgstr "Колір п_ереднього плану" #: ../plug-ins/common/sparkle.c:509 -#, fuzzy msgid "_Background color" msgstr "Колір _тла" #: ../plug-ins/common/sparkle.c:516 -#, fuzzy msgid "Use the color of the image" msgstr "Використовувати колір зображення" #: ../plug-ins/common/sparkle.c:517 -#, fuzzy msgid "Use the foreground color" msgstr "Використовувати колір переднього плану" #: ../plug-ins/common/sparkle.c:518 -#, fuzzy msgid "Use the background color" msgstr "Використовувати колір тла" @@ -7278,7 +6810,7 @@ #: ../plug-ins/common/spheredesigner.c:2164 msgid "Open File" -msgstr "Відкривання файлц" +msgstr "Відкривання файлу" #: ../plug-ins/common/spheredesigner.c:2164 msgid "Save File" @@ -7289,7 +6821,6 @@ msgstr "Створення сфери" #: ../plug-ins/common/spheredesigner.c:2518 -#, fuzzy msgid "Update _Preview" msgstr "_Автооновлення перегляду" @@ -7334,14 +6865,12 @@ msgstr "Величина:" #: ../plug-ins/common/spheredesigner.c:2696 -#, fuzzy msgid "Exp.:" msgstr "Розш.:" #: ../plug-ins/common/spheredesigner.c:2703 -#, fuzzy msgid "Texture Transformations" -msgstr "Перетворення %s" +msgstr "Перетворення текстури" #: ../plug-ins/common/spheredesigner.c:2726 msgid "Scale Y:" @@ -7364,33 +6893,28 @@ msgstr "Обертання Z:" #: ../plug-ins/common/spheredesigner.c:2760 -#, fuzzy msgid "Position X:" -msgstr "Позиція" +msgstr "Позиція по X:" #: ../plug-ins/common/spheredesigner.c:2767 -#, fuzzy msgid "Position Y:" -msgstr "Позиція" +msgstr "Позиція по Y:" #: ../plug-ins/common/spheredesigner.c:2774 -#, fuzzy msgid "Position Z:" -msgstr "Позиція" +msgstr "Позиція по Z:" #: ../plug-ins/common/spheredesigner.c:2922 msgid "Rendering Sphere..." msgstr "Візуалізація сфери..." #: ../plug-ins/common/spheredesigner.c:2979 -#, fuzzy msgid "Sphere _Designer..." -msgstr "Створення сфери" +msgstr "_Створення сфери..." #: ../plug-ins/common/spread.c:99 -#, fuzzy msgid "Sp_read..." -msgstr "Розсіювання..." +msgstr "_Розсіювання..." #: ../plug-ins/common/spread.c:182 msgid "Spreading..." @@ -7405,9 +6929,8 @@ msgstr "Діапазон розсіювання" #: ../plug-ins/common/struc.c:1146 -#, fuzzy msgid "_Apply Canvas..." -msgstr "Застосування полотна..." +msgstr "_Застосування полотна..." #: ../plug-ins/common/struc.c:1227 msgid "Applying Canvas..." @@ -7418,28 +6941,24 @@ msgstr "Застосування полотна" #: ../plug-ins/common/struc.c:1290 -#, fuzzy msgid "_Top-right" msgstr "З_верху справа" #: ../plug-ins/common/struc.c:1291 -#, fuzzy msgid "Top-_left" msgstr "Зверху _зліва" #: ../plug-ins/common/struc.c:1292 -#, fuzzy msgid "_Bottom-left" msgstr "З_низу зліва" #: ../plug-ins/common/struc.c:1293 -#, fuzzy msgid "Bottom-_right" -msgstr "Знизу _справа" +msgstr "Знизу сп_рава" #: ../plug-ins/common/sunras.c:217 ../plug-ins/common/sunras.c:237 msgid "SUN Rasterfile image" -msgstr "" +msgstr "Зображення SUN Rasterfile" #: ../plug-ins/common/sunras.c:392 #, c-format @@ -7493,9 +7012,8 @@ msgstr "Закодовано RunLength" #: ../plug-ins/common/svg.c:136 -#, fuzzy msgid "Scalable SVG image" -msgstr "Масштаб за зображенням" +msgstr "Векторне зображення SVG" #: ../plug-ins/common/svg.c:313 ../plug-ins/common/svg.c:696 msgid "Unknown reason" @@ -7534,14 +7052,12 @@ msgstr "Висота:" #: ../plug-ins/common/svg.c:841 ../plug-ins/common/wmf.c:628 -#, fuzzy msgid "_X ratio:" -msgstr "Обертання _відтінку:" +msgstr "Коефіцієнт по _X:" #: ../plug-ins/common/svg.c:863 ../plug-ins/common/wmf.c:650 -#, fuzzy msgid "_Y ratio:" -msgstr "Обертання _відтінку:" +msgstr "Коефіцієнт по _Y:" #: ../plug-ins/common/svg.c:877 ../plug-ins/common/wmf.c:664 msgid "Constrain aspect ratio" @@ -7554,7 +7070,6 @@ #. Path Import #: ../plug-ins/common/svg.c:908 -#, fuzzy msgid "Import _paths" msgstr "Імпорт _контурів" @@ -7566,13 +7081,12 @@ "інструментом \"Контури\"" #: ../plug-ins/common/svg.c:927 -#, fuzzy msgid "Merge imported paths" msgstr "Об'єднати імпортовані контури" #: ../plug-ins/common/tga.c:233 ../plug-ins/common/tga.c:249 msgid "TarGA image" -msgstr "" +msgstr "Зображення TarGA" #: ../plug-ins/common/tga.c:428 #, c-format @@ -7599,9 +7113,8 @@ msgstr "_Початок знизу ліворуч" #: ../plug-ins/common/threshold_alpha.c:95 -#, fuzzy msgid "_Threshold Alpha..." -msgstr "Поріг альфа-каналу" +msgstr "_Поріг альфа-каналу..." #: ../plug-ins/common/threshold_alpha.c:134 msgid "The layer preserves transparency." @@ -7625,9 +7138,8 @@ #: ../plug-ins/common/tiff.c:211 ../plug-ins/common/tiff.c:232 #: ../plug-ins/common/tiff.c:249 -#, fuzzy msgid "TIFF image" -msgstr "Канал TIFF" +msgstr "Зображення TIFF" #: ../plug-ins/common/tiff.c:835 #, c-format @@ -7696,9 +7208,8 @@ msgstr "Коментар:" #: ../plug-ins/common/tile.c:112 -#, fuzzy msgid "_Tile..." -msgstr "Розтин..." +msgstr "_Черепиця..." #. Set the tile cache size #: ../plug-ins/common/tile.c:192 ../plug-ins/common/tileit.c:320 @@ -7718,9 +7229,8 @@ msgstr "С_творити нове зображення" #: ../plug-ins/common/tileit.c:224 -#, fuzzy msgid "_Small Tiles..." -msgstr "_усіх секторів" +msgstr "_Дрібна черепиця..." #. Get the preview image #: ../plug-ins/common/tileit.c:363 @@ -7734,19 +7244,16 @@ msgstr "Віддзеркалення" #: ../plug-ins/common/tileit.c:454 -#, fuzzy msgid "A_ll tiles" msgstr "_усіх секторів" #: ../plug-ins/common/tileit.c:468 -#, fuzzy msgid "Al_ternate tiles" -msgstr "кожного _другого сектору" +msgstr "кожного д_ругого сектору" #: ../plug-ins/common/tileit.c:482 -#, fuzzy msgid "_Explicit tile" -msgstr "_вказаного сектору" +msgstr "вка_заного сектору" #: ../plug-ins/common/tileit.c:488 msgid "Ro_w:" @@ -7762,13 +7269,12 @@ #. Lower frame saying howmany segments #: ../plug-ins/common/tileit.c:573 -#, fuzzy msgid "Number of Segments" -msgstr "_Кількість сегментів:" +msgstr "Кількість сегментів" #: ../plug-ins/common/tiler.c:66 msgid "_Make Seamless" -msgstr "" +msgstr "_Зробити без швів" #: ../plug-ins/common/tiler.c:322 msgid "Tiler..." @@ -7860,14 +7366,12 @@ msgstr "Створити нову одиницю" #: ../plug-ins/common/uniteditor.c:127 -#, fuzzy msgid "Create a new unit with the currently selected unit as template." msgstr "Створити нову одиницю використовуючи вибрану як шаблон." #: ../plug-ins/common/uniteditor.c:151 -#, fuzzy msgid "_Unit Editor" -msgstr "Редактор одиниць" +msgstr "Редактор _одиниць" #: ../plug-ins/common/uniteditor.c:210 msgid "New Unit" @@ -7914,9 +7418,8 @@ msgstr "Редактор одиниць" #: ../plug-ins/common/unsharp.c:143 -#, fuzzy msgid "_Unsharp Mask..." -msgstr "Нечітка маска" +msgstr "_Нечітка маска..." #: ../plug-ins/common/unsharp.c:468 msgid "Merging..." @@ -7967,9 +7470,8 @@ msgstr "_Крапки" #: ../plug-ins/common/video.c:1817 -#, fuzzy msgid "Vi_deo..." -msgstr "Відео/RGB..." +msgstr "Ві_део..." #: ../plug-ins/common/video.c:1889 msgid "Video/RGB..." @@ -7981,81 +7483,68 @@ #. frame for the radio buttons #: ../plug-ins/common/video.c:2035 -#, fuzzy msgid "Video Pattern" -msgstr "Візерунок" +msgstr "Відео візерунок" #: ../plug-ins/common/video.c:2079 msgid "_Additive" -msgstr "_Доповнюючий" +msgstr "Д_оповнюючий" #: ../plug-ins/common/video.c:2089 msgid "_Rotated" msgstr "_Повернутий" #: ../plug-ins/common/vinvert.c:84 -#, fuzzy msgid "_Value Invert" -msgstr "Інверсія значення..." +msgstr "_Інверсія значення..." #: ../plug-ins/common/vinvert.c:126 msgid "Value Invert..." msgstr "Інверсія значення..." #: ../plug-ins/common/vpropagate.c:193 -#, fuzzy msgid "More _white (larger value)" -msgstr "С_вітліше (більші значення)" +msgstr "Св_ітліше (більші значення)" #: ../plug-ins/common/vpropagate.c:196 -#, fuzzy msgid "More blac_k (smaller value)" msgstr "_Темніше (менші значення)" #: ../plug-ins/common/vpropagate.c:199 -#, fuzzy msgid "_Middle value to peaks" -msgstr "С_ередня значення" +msgstr "С_ереднє значення" #: ../plug-ins/common/vpropagate.c:202 -#, fuzzy msgid "_Foreground to peaks" -msgstr "_Максимальний колір переднього плану" +msgstr "Ма_ксимальний колір переднього плану" #: ../plug-ins/common/vpropagate.c:205 -#, fuzzy msgid "O_nly foreground" msgstr "Лише колір _переднього плану" #: ../plug-ins/common/vpropagate.c:208 -#, fuzzy msgid "Only b_ackground" -msgstr "Лише _тло" +msgstr "Ли_ше тло" #: ../plug-ins/common/vpropagate.c:211 -#, fuzzy msgid "Mor_e opaque" msgstr "_Менш прозорий" #: ../plug-ins/common/vpropagate.c:214 -#, fuzzy msgid "More t_ransparent" msgstr "_Більш прозорий" #: ../plug-ins/common/vpropagate.c:242 -#, fuzzy msgid "_Value Propagate..." -msgstr "Розповсюдження значень" +msgstr "_Розповсюдження значень..." #: ../plug-ins/common/vpropagate.c:254 -#, fuzzy msgid "E_rode" -msgstr "Режим" +msgstr "_Ерозія" #: ../plug-ins/common/vpropagate.c:266 -#, fuzzy msgid "_Dilate" -msgstr "_Стиснення" +msgstr "_Ворсистість" #: ../plug-ins/common/vpropagate.c:476 msgid "Value Propagating..." @@ -8067,42 +7556,34 @@ #. Parameter settings #: ../plug-ins/common/vpropagate.c:1116 -#, fuzzy msgid "Propagate" -msgstr "Режим розповсюдження" +msgstr "Розповсюдження" #: ../plug-ins/common/vpropagate.c:1129 -#, fuzzy msgid "Lower t_hreshold:" msgstr "Н_ижній поріг:" #: ../plug-ins/common/vpropagate.c:1141 -#, fuzzy msgid "_Upper threshold:" msgstr "_Верхній поріг:" #: ../plug-ins/common/vpropagate.c:1153 -#, fuzzy msgid "_Propagating rate:" msgstr "_Швидкість розповсюдження:" #: ../plug-ins/common/vpropagate.c:1164 -#, fuzzy msgid "To l_eft" msgstr "_Ліворуч" #: ../plug-ins/common/vpropagate.c:1167 -#, fuzzy msgid "To _right" -msgstr "_Праворуч" +msgstr "П_раворуч" #: ../plug-ins/common/vpropagate.c:1170 -#, fuzzy msgid "To _top" -msgstr "В_гору" +msgstr "Вг_ору" #: ../plug-ins/common/vpropagate.c:1173 -#, fuzzy msgid "To _bottom" msgstr "В_низ" @@ -8115,21 +7596,18 @@ msgstr "Розповсюдження каналу яскравості" #: ../plug-ins/common/warp.c:247 -#, fuzzy msgid "_Warp..." -msgstr "Викривлення..." +msgstr "Д_еформація..." #: ../plug-ins/common/warp.c:391 msgid "Warp" msgstr "Деформація" #: ../plug-ins/common/warp.c:405 -#, fuzzy msgid "Basic Options" msgstr "Основні параметри" #: ../plug-ins/common/warp.c:427 -#, fuzzy msgid "Step size:" msgstr "Розмір кроку:" @@ -8139,14 +7617,12 @@ #. Displacement map menu #: ../plug-ins/common/warp.c:450 -#, fuzzy msgid "Displacement map:" msgstr "Мапа заміщення:" #. ======================================================================= #. Displacement Type #: ../plug-ins/common/warp.c:468 -#, fuzzy msgid "On edges:" msgstr "На краях:" @@ -8164,24 +7640,20 @@ msgstr "Чорний" #: ../plug-ins/common/warp.c:524 -#, fuzzy msgid "FG color" msgstr "Колір переднього плану" #. -------------------------------------------------------------------- #. --------- The secondary table -------------------------- #: ../plug-ins/common/warp.c:544 -#, fuzzy msgid "Advanced Options" -msgstr "Додаткові параметри набору фільтрів" +msgstr "Додаткові параметри" #: ../plug-ins/common/warp.c:560 -#, fuzzy msgid "Dither size:" msgstr "Розмір змішування:" #: ../plug-ins/common/warp.c:573 -#, fuzzy msgid "Rotation angle:" msgstr "Кут обертання:" @@ -8191,24 +7663,20 @@ #. Magnitude map menu #: ../plug-ins/common/warp.c:595 -#, fuzzy msgid "Magnitude map:" msgstr "Мапа значень:" #: ../plug-ins/common/warp.c:617 -#, fuzzy msgid "Use magnitude map" -msgstr "Мапа значень:" +msgstr "Використовувати мапу значень" #. -------------------------------------------------------------------- #. --------- The "other" table -------------------------- #: ../plug-ins/common/warp.c:630 -#, fuzzy msgid "More Advanced Options" -msgstr "Основні параметри" +msgstr "Більш розширені параметри" #: ../plug-ins/common/warp.c:647 -#, fuzzy msgid "Gradient scale:" msgstr "Масштаб градієнта:" @@ -8217,7 +7685,6 @@ msgstr "Меню вибору градієнтної мапи" #: ../plug-ins/common/warp.c:680 -#, fuzzy msgid "Vector mag:" msgstr "Довжина вектора:" @@ -8255,9 +7722,8 @@ msgstr "Поточний крок %d..." #: ../plug-ins/common/waves.c:127 -#, fuzzy msgid "_Waves..." -msgstr "Хвилі" +msgstr "_Хвилі..." #: ../plug-ins/common/waves.c:249 msgid "Waves" @@ -8277,7 +7743,7 @@ #: ../plug-ins/common/waves.c:330 msgid "_Wavelength:" -msgstr "_Довжина хвилі:" +msgstr "Дов_жина хвилі:" #: ../plug-ins/common/waves.c:431 msgid "Waving..." @@ -8310,9 +7776,8 @@ "%s" #: ../plug-ins/common/whirlpinch.c:161 -#, fuzzy msgid "W_hirl and Pinch..." -msgstr "Вихор та щипок" +msgstr "_Вихор та щипок..." #: ../plug-ins/common/whirlpinch.c:348 msgid "Whirling and Pinching..." @@ -8323,29 +7788,24 @@ msgstr "Вихор та щипок" #: ../plug-ins/common/whirlpinch.c:564 -#, fuzzy msgid "_Whirl angle:" msgstr "Кут _вихору:" #: ../plug-ins/common/whirlpinch.c:576 -#, fuzzy msgid "_Pinch amount:" msgstr "Величина _щипка:" #: ../plug-ins/common/winclipboard.c:109 -#, fuzzy msgid "Copy to Clipboard" -msgstr "/Правка/Копіювати у буфер обміну" +msgstr "Копіювати у буфер обміну" #: ../plug-ins/common/winclipboard.c:121 -#, fuzzy msgid "Paste from Clipboard" -msgstr "/Правка/Вставити з буферу обміну" +msgstr "Вставити з буферу обміну" #: ../plug-ins/common/winclipboard.c:133 -#, fuzzy msgid "From Clipboard" -msgstr "З кольору" +msgstr "З буфера" #: ../plug-ins/common/winclipboard.c:331 msgid "Copying..." @@ -8370,9 +7830,8 @@ msgstr "Вставляння..." #: ../plug-ins/common/wind.c:183 -#, fuzzy msgid "Wi_nd..." -msgstr "Створення хвиль..." +msgstr "Ві_тер..." #: ../plug-ins/common/wind.c:315 msgid "Rendering Blast..." @@ -8399,7 +7858,7 @@ #: ../plug-ins/common/wind.c:911 msgid "_Blast" -msgstr "_Порив вітру" +msgstr "Пор_ив вітру" #: ../plug-ins/common/wind.c:934 msgid "_Left" @@ -8407,7 +7866,7 @@ #: ../plug-ins/common/wind.c:935 msgid "_Right" -msgstr "С_права" +msgstr "Сп_рава" #. **************************************************** #. radio buttons for choosing BOTH, LEADING, TRAILING @@ -8418,7 +7877,7 @@ #: ../plug-ins/common/wind.c:958 msgid "L_eading" -msgstr "_Передній" +msgstr "П_ередній" #: ../plug-ins/common/wind.c:959 msgid "Tr_ailing" @@ -8441,14 +7900,12 @@ msgstr "Підвищення значень підсилює ефект" #: ../plug-ins/common/winprint.c:224 -#, fuzzy msgid "_Print" -msgstr "Точкове" +msgstr "Д_рук" #: ../plug-ins/common/winprint.c:236 -#, fuzzy msgid "Page Setup" -msgstr "/Файл/Параметри сторінки" +msgstr "Параметри сторінки" #: ../plug-ins/common/winprint.c:341 #, c-format @@ -8495,21 +7952,19 @@ #: ../plug-ins/common/wmf.c:131 msgid "Microsoft WMF file" -msgstr "" +msgstr "Файл Microsoft WMF" #: ../plug-ins/common/wmf.c:336 -#, fuzzy msgid "" "WMF file does not\n" "specify a size!" msgstr "" -"У файлі SVG\n" +"У файлі WMF\n" "не вказано розмір!" #: ../plug-ins/common/wmf.c:484 -#, fuzzy msgid "Render Windows Metafile" -msgstr "Завантаження файлів у форматі Windows Metafile" +msgstr "Растеризація формату Windows Metafile" #: ../plug-ins/common/wmf.c:947 ../plug-ins/sgi/sgi.c:318 #, c-format @@ -8522,7 +7977,7 @@ #: ../plug-ins/common/xbm.c:169 ../plug-ins/common/xbm.c:187 msgid "X BitMap image" -msgstr "" +msgstr "Зображення X BitMap" #: ../plug-ins/common/xbm.c:241 msgid "Created with The GIMP" @@ -8596,30 +8051,25 @@ #. X10 format #: ../plug-ins/common/xbm.c:1167 -#, fuzzy msgid "_X10 format bitmap" msgstr "Бітова карта формату _X10" #: ../plug-ins/common/xbm.c:1187 -#, fuzzy msgid "_Identifier prefix:" msgstr "Префікс _ідентифікатора:" #. hotspot toggle #: ../plug-ins/common/xbm.c:1209 -#, fuzzy msgid "_Write hot spot values" msgstr "_Записати значення \"гарячих точок\"" #: ../plug-ins/common/xbm.c:1231 -#, fuzzy msgid "Hot spot _X:" msgstr "\"Гаряча точка\" _X:" #: ../plug-ins/common/xbm.c:1241 -#, fuzzy msgid "Hot spot _Y:" -msgstr "\"Гаряча точка\" _X:" +msgstr "\"Гаряча точка\" _Y:" #. mask file #: ../plug-ins/common/xbm.c:1248 @@ -8627,18 +8077,16 @@ msgstr "Файл маски" #: ../plug-ins/common/xbm.c:1258 -#, fuzzy msgid "W_rite extra mask file" msgstr "_Записати додатковий файл маски" #: ../plug-ins/common/xbm.c:1271 -#, fuzzy msgid "_Mask file extension:" msgstr "Розширення файлу _маски:" #: ../plug-ins/common/xpm.c:170 ../plug-ins/common/xpm.c:195 msgid "X PixMap image" -msgstr "" +msgstr "Зображення X PixMap" #: ../plug-ins/common/xpm.c:354 #, c-format @@ -8654,13 +8102,12 @@ msgstr "Збереження як XPM" #: ../plug-ins/common/xpm.c:796 -#, fuzzy msgid "_Alpha threshold:" msgstr "Поріг _альфа-каналу:" #: ../plug-ins/common/xwd.c:277 ../plug-ins/common/xwd.c:297 msgid "X window dump" -msgstr "" +msgstr "Дамп X window" #: ../plug-ins/common/xwd.c:430 #, c-format @@ -8668,27 +8115,25 @@ msgstr "Не вдається прочитати XWD заголовок з \"%s\"" #: ../plug-ins/common/xwd.c:468 -#, fuzzy msgid "Can't read color entries" -msgstr "неможливо зчитати записи кольорів" +msgstr "Не вдається зчитати записи кольорів" #: ../plug-ins/common/xwd.c:527 -#, fuzzy, c-format +#, c-format msgid "" "XWD-file %s has format %d, depth %d\n" "and bits per pixel %d.\n" "Currently this is not supported." msgstr "" -"завантаження зображення (xwd): файл XWD %s має формат %d, глибину %d\n" +"файл XWD %s має формат %d, глибину %d\n" "і %d бітів на точку.\n" -"Зараз це не підтримується.\n" +"Зараз це не підтримується." #: ../plug-ins/common/xwd.c:557 msgid "Cannot save images with alpha channels." msgstr "Не вдається зберегти зображення з альфа-каналами." #: ../plug-ins/common/xwd.c:2160 -#, fuzzy msgid "Error during writing indexed/gray image" msgstr "Помилка за запису індексованого/сірого зображення" @@ -8697,9 +8142,8 @@ msgstr "Помилка за запису RGB-зображення" #: ../plug-ins/common/zealouscrop.c:85 -#, fuzzy msgid "_Zealous Crop" -msgstr "Старанне кадрування(tm)..." +msgstr "_Старанне кадрування(tm)..." #: ../plug-ins/common/zealouscrop.c:133 msgid "ZealousCropping(tm)..." @@ -8712,7 +8156,7 @@ #: ../plug-ins/dbbrowser/gimpprocbrowser.c:128 #: ../plug-ins/dbbrowser/gimpprocbrowser.c:142 msgid "Procedure Browser" -msgstr "" +msgstr "Переглядач процедур" #: ../plug-ins/dbbrowser/gimpprocbrowser.c:132 #: ../plug-ins/dbbrowser/gimpprocbrowser.c:146 @@ -8744,14 +8188,13 @@ msgstr "Пошук - зачекайте" #: ../plug-ins/dbbrowser/gimpprocbrowser.c:428 -#, fuzzy msgid "1 Procedure" -msgstr "Тимчасова процедура" +msgstr "1 процедура" #: ../plug-ins/dbbrowser/gimpprocbrowser.c:430 -#, fuzzy, c-format +#, c-format msgid "%d Procedures" -msgstr "Тимчасова процедура" +msgstr "%d процедур" #: ../plug-ins/dbbrowser/gimpprocbrowser.c:476 #: ../plug-ins/dbbrowser/plugin-browser.c:516 @@ -8772,12 +8215,11 @@ #: ../plug-ins/dbbrowser/gimpprocview.c:146 msgid "Return Values" -msgstr "" +msgstr "Результуючі значення" #: ../plug-ins/dbbrowser/gimpprocview.c:159 -#, fuzzy msgid "Additional Information" -msgstr "Просторове перетворення" +msgstr "Додаткова інформація" #: ../plug-ins/dbbrowser/gimpprocview.c:198 msgid "Author:" @@ -8808,24 +8250,21 @@ msgstr "Тимчасова процедура" #: ../plug-ins/dbbrowser/plugin-browser.c:151 -#, fuzzy msgid "_Plug-In Browser" -msgstr "Перегляд бази даних" +msgstr "Перегляд _доповнень" #: ../plug-ins/dbbrowser/plugin-browser.c:418 -#, fuzzy msgid "1 Plug-In Interface" -msgstr "Кількість інтерфейсів доповнення: %d" +msgstr "Кількість інтерфейсів доповнення: 1" #: ../plug-ins/dbbrowser/plugin-browser.c:420 -#, fuzzy, c-format +#, c-format msgid "%d Plug-In Interfaces" msgstr "Кількість інтерфейсів доповнення: %d" #: ../plug-ins/dbbrowser/plugin-browser.c:544 -#, fuzzy msgid "Plug-In Browser" -msgstr "Перегляд бази даних" +msgstr "Перегляд доповнень" #: ../plug-ins/dbbrowser/plugin-browser.c:595 msgid "Name" @@ -8833,18 +8272,15 @@ #: ../plug-ins/dbbrowser/plugin-browser.c:603 #: ../plug-ins/dbbrowser/plugin-browser.c:672 -#, fuzzy msgid "Insertion Date" -msgstr "Вставити точку" +msgstr "Вставляння дати" #: ../plug-ins/dbbrowser/plugin-browser.c:611 -#, fuzzy msgid "Menu Path" -msgstr "Шлях меню:" +msgstr "Шлях меню" #: ../plug-ins/dbbrowser/plugin-browser.c:619 #: ../plug-ins/dbbrowser/plugin-browser.c:681 -#, fuzzy msgid "Image Types" msgstr "Типи зображень" @@ -8853,26 +8289,24 @@ msgstr "Перегляд списком" #: ../plug-ins/dbbrowser/plugin-browser.c:663 -#, fuzzy msgid "Menu Path/Name" msgstr "Шлях/назва меню" #: ../plug-ins/dbbrowser/plugin-browser.c:704 -#, fuzzy msgid "Tree View" msgstr "Перегляд деревом" #: ../plug-ins/dbbrowser/procedure-browser.c:89 msgid "Procedure _Browser" -msgstr "" +msgstr "Перегляд _процедур" #: ../plug-ins/faxg3/faxg3.c:100 msgid "G3 fax image" -msgstr "" +msgstr "Зображення G3 fax " #: ../plug-ins/fits/fits.c:159 ../plug-ins/fits/fits.c:178 msgid "Flexible Image Transport System" -msgstr "" +msgstr "Гнучка система передавання зображень (FITS)" #: ../plug-ins/fits/fits.c:346 msgid "Error during open of FITS file" @@ -8900,7 +8334,6 @@ msgstr "Білий" #: ../plug-ins/fits/fits.c:996 -#, fuzzy msgid "Pixel value scaling" msgstr "Масштабування значень точок" @@ -8913,9 +8346,8 @@ msgstr "Складання зображення" #: ../plug-ins/flame/flame.c:133 -#, fuzzy msgid "_Flame..." -msgstr "Полум'я" +msgstr "_Полум'я..." #: ../plug-ins/flame/flame.c:227 msgid "Drawing Flame..." @@ -8948,7 +8380,7 @@ #: ../plug-ins/flame/flame.c:722 msgid "_Randomize" -msgstr "_Перемішати" +msgstr "Пере_мішати" #: ../plug-ins/flame/flame.c:731 msgid "Same" @@ -9004,17 +8436,14 @@ msgstr "Г_ама:" #: ../plug-ins/flame/flame.c:1079 -#, fuzzy msgid "Sample _density:" msgstr "_Щільність зразка:" #: ../plug-ins/flame/flame.c:1090 -#, fuzzy msgid "Spa_tial oversample:" -msgstr "_Просторове перекриття:" +msgstr "П_росторове перекриття:" #: ../plug-ins/flame/flame.c:1101 -#, fuzzy msgid "Spatial _filter radius:" msgstr "Радіус просторового _фільтру:" @@ -9023,7 +8452,6 @@ msgstr "_Мапа кольорів:" #: ../plug-ins/flame/flame.c:1162 -#, fuzzy msgid "Custom gradient" msgstr "Власний градієнт" @@ -9058,49 +8486,41 @@ #. Tool options notebook #: ../plug-ins/gfig/gfig-dialog.c:341 -#, fuzzy msgid "Tool options" -msgstr "Параметри масштабу" +msgstr "Параметри інструменту" #: ../plug-ins/gfig/gfig-dialog.c:358 -#, fuzzy msgid "_Stroke" -msgstr "_Плями:" +msgstr "_Штрих" #. Fill frame on right side #: ../plug-ins/gfig/gfig-dialog.c:405 -#, fuzzy msgid "Fill" -msgstr "Плівка" +msgstr "Заповнення" #: ../plug-ins/gfig/gfig-dialog.c:419 msgid "No fill" -msgstr "" +msgstr "Без заповнення" #: ../plug-ins/gfig/gfig-dialog.c:420 -#, fuzzy msgid "Color fill" msgstr "Колір" #: ../plug-ins/gfig/gfig-dialog.c:421 -#, fuzzy msgid "Pattern fill" msgstr "Візерунок" #: ../plug-ins/gfig/gfig-dialog.c:422 -#, fuzzy msgid "Gradient fill" msgstr "Градієнт" #. "show image" checkbutton at bottom of style frame #: ../plug-ins/gfig/gfig-dialog.c:482 -#, fuzzy msgid "Show image" msgstr "Показати зображення" #. "show grid" checkbutton at bottom of style frame #: ../plug-ins/gfig/gfig-dialog.c:504 -#, fuzzy msgid "Show grid" msgstr "Показати сітку" @@ -9117,39 +8537,32 @@ msgstr "Перший Gfig" #: ../plug-ins/gfig/gfig-dialog.c:859 -#, fuzzy msgid "_Undo" -msgstr "Скасувати" +msgstr "В_ернути" #: ../plug-ins/gfig/gfig-dialog.c:863 -#, fuzzy msgid "_Clear" -msgstr "Очистити" +msgstr "О_чистити" #: ../plug-ins/gfig/gfig-dialog.c:867 -#, fuzzy msgid "_Grid" -msgstr "Сітка" +msgstr "С_ітка" #: ../plug-ins/gfig/gfig-dialog.c:875 -#, fuzzy msgid "Raise selected object" -msgstr "Перемістити вибрані об'єкти" +msgstr "Підняти вибрані об'єкти" #: ../plug-ins/gfig/gfig-dialog.c:879 -#, fuzzy msgid "Lower selected object" -msgstr "Перемістити вибрані об'єкти" +msgstr "Опустити вибрані об'єкти" #: ../plug-ins/gfig/gfig-dialog.c:883 -#, fuzzy msgid "Raise selected object to top" -msgstr "Зчитати вибрані параметри в пам'ять" +msgstr "Підняти вибрані об'єкти догори" #: ../plug-ins/gfig/gfig-dialog.c:887 -#, fuzzy msgid "Lower selected object to bottom" -msgstr "Перемістити вибрані об'єкти" +msgstr "Опустити вибрані об'єкти додолу" #: ../plug-ins/gfig/gfig-dialog.c:891 msgid "Show previous object" @@ -9176,7 +8589,6 @@ msgstr "Створити еліпс" #: ../plug-ins/gfig/gfig-dialog.c:914 ../plug-ins/gfig/gfig-stock.c:44 -#, fuzzy msgid "Create arc" msgstr "Створити дугу" @@ -9213,27 +8625,23 @@ msgstr "Видалити об'єкт" #: ../plug-ins/gfig/gfig-dialog.c:942 ../plug-ins/gfig/gfig-stock.c:51 -#, fuzzy msgid "Select an object" -msgstr "Видалити об'єкт" +msgstr "Виділити об'єкт" #: ../plug-ins/gfig/gfig-dialog.c:1023 msgid "This tool has no options" -msgstr "" +msgstr "Цей інструмент не має кольору" #. Put buttons in #: ../plug-ins/gfig/gfig-dialog.c:1230 -#, fuzzy msgid "Show position" msgstr "Показати позицію" #: ../plug-ins/gfig/gfig-dialog.c:1242 -#, fuzzy msgid "Show control points" -msgstr "Прибрати контрольні точки" +msgstr "Показати контрольні точки" #: ../plug-ins/gfig/gfig-dialog.c:1276 -#, fuzzy msgid "Max undo:" msgstr "Макс. кількість скасувань:" @@ -9254,7 +8662,6 @@ msgstr "Копіювати" #: ../plug-ins/gfig/gfig-dialog.c:1298 -#, fuzzy msgid "" "Layer background type. Copy causes the previous layer to be copied before " "the draw is performed." @@ -9288,7 +8695,6 @@ msgstr "Ізометрія" #: ../plug-ins/gfig/gfig-dialog.c:1413 -#, fuzzy msgid "Grid type:" msgstr "Тип сітки:" @@ -9309,29 +8715,24 @@ msgstr "Світліше" #: ../plug-ins/gfig/gfig-dialog.c:1426 -#, fuzzy msgid "Very dark" msgstr "Дуже темний" #: ../plug-ins/gfig/gfig-dialog.c:1435 -#, fuzzy msgid "Grid color:" msgstr "Колір сітки:" #: ../plug-ins/gfig/gfig-dialog.c:1638 -#, fuzzy msgid "Sides:" -msgstr "Розміри:" +msgstr "Сторін:" #: ../plug-ins/gfig/gfig-dialog.c:1648 -#, fuzzy msgid "Right" -msgstr "С_права" +msgstr "Справа" #: ../plug-ins/gfig/gfig-dialog.c:1649 -#, fuzzy msgid "Left" -msgstr "З_ліва" +msgstr "Зліва" #: ../plug-ins/gfig/gfig-dialog.c:1659 #: ../plug-ins/gimpressionist/orientation.c:130 @@ -9361,12 +8762,10 @@ #. Position labels #: ../plug-ins/gfig/gfig-preview.c:383 -#, fuzzy msgid "XY position:" msgstr "Позиція XY:" #: ../plug-ins/gfig/gfig-spiral.c:59 -#, fuzzy msgid "Spiral Number of Turns" msgstr "Кількість точок спіралі" @@ -9375,25 +8774,26 @@ msgstr "Кількість точок зірки" #: ../plug-ins/gfig/gfig-stock.c:41 -#, fuzzy msgid "Create bezier curve" -msgstr "Створити коло" +msgstr "Створити криву Без'є" #: ../plug-ins/gfig/gfig.c:132 -#, fuzzy msgid "_Gfig..." -msgstr "Gfig" +msgstr "_Gfig..." #: ../plug-ins/gfig/gfig.c:726 msgid "" "Error trying to save figure as a parasite: can't attach parasite to " "drawable.\n" msgstr "" +"Помилка при збереженні фігури як шуму: не вдається приєднати шум до " +"малюнка.\n" #: ../plug-ins/gfig/gfig.c:747 #, c-format msgid "Error trying to open temp file '%s'for parasite loading.\n" msgstr "" +"Помилка при відкриванні тимчасового файлу '%s' для завантаження шуму.\n" #: ../plug-ins/gflare/gflare.c:560 msgid "Addition" @@ -9404,9 +8804,8 @@ msgstr "Перекривання" #: ../plug-ins/gflare/gflare.c:821 -#, fuzzy msgid "_GFlare..." -msgstr "Градієнтний спалах" +msgstr "_GFlare..." #: ../plug-ins/gflare/gflare.c:960 msgid "Gradient Flare..." @@ -9453,7 +8852,6 @@ msgstr "Градієнтний спалах" #: ../plug-ins/gflare/gflare.c:2346 -#, fuzzy msgid "A_uto update preview" msgstr "_Автооновлення перегляду" @@ -9470,7 +8868,6 @@ msgstr "_Обертання:" #: ../plug-ins/gflare/gflare.c:2711 -#, fuzzy msgid "_Hue rotation:" msgstr "Обертання _відтінку:" @@ -9480,10 +8877,9 @@ #: ../plug-ins/gflare/gflare.c:2735 msgid "Vector _Length:" -msgstr "_Довжина вектора:" +msgstr "Дов_жина вектора:" #: ../plug-ins/gflare/gflare.c:2756 -#, fuzzy msgid "A_daptive supersampling" msgstr "Адап_тивна інтерполяція" @@ -9493,7 +8889,7 @@ #: ../plug-ins/gflare/gflare.c:2785 msgid "_Threshold" -msgstr "_Поріг:" +msgstr "П_оріг:" #: ../plug-ins/gflare/gflare.c:2923 msgid "S_elector" @@ -9536,7 +8932,7 @@ #: ../plug-ins/gflare/gflare.c:3203 #, c-format msgid "not found %s in gflares_list" -msgstr "не знайдено %s в списку градієнтних спалахів" +msgstr "не знайдено %s в списку gflares_list" #: ../plug-ins/gflare/gflare.c:3244 msgid "GFlare Editor" @@ -9662,7 +9058,7 @@ #: ../plug-ins/gfli/gfli.c:158 ../plug-ins/gfli/gfli.c:178 msgid "AutoDesk FLIC animation" -msgstr "" +msgstr "Анімація AutoDesk FLIC" #: ../plug-ins/gfli/gfli.c:527 #, c-format @@ -9844,9 +9240,8 @@ msgstr "Довірче значення для адаптивного виділення" #: ../plug-ins/gimpressionist/gimp.c:79 -#, fuzzy msgid "_GIMPressionist..." -msgstr "GIMPімпресіоніст" +msgstr "_GIMPімпресіоніст..." #: ../plug-ins/gimpressionist/gimp.c:350 msgid "Painting..." @@ -9881,18 +9276,16 @@ msgstr "Початковий кут:" #: ../plug-ins/gimpressionist/orientation.c:104 -#, fuzzy msgid "The starting angle of the first brush to create" -msgstr "Кут першого пензля" +msgstr "Початковий кут першого пензля" #: ../plug-ins/gimpressionist/orientation.c:112 msgid "Angle span:" msgstr "Діапазон кутів:" #: ../plug-ins/gimpressionist/orientation.c:116 -#, fuzzy msgid "The angle span of the first brush to create" -msgstr "Кут першого пензля" +msgstr "Діапазон кутів першого пензля" #: ../plug-ins/gimpressionist/orientation.c:139 msgid "" @@ -9979,7 +9372,7 @@ #: ../plug-ins/gimpressionist/orientmap.c:565 #: ../plug-ins/gimpressionist/sizemap.c:435 msgid "Adjust the preview's brightness" -msgstr "Налаштування яскравості перегляду" +msgstr "Налаштовування яскравості перегляду" #: ../plug-ins/gimpressionist/orientmap.c:587 msgid "Select previous vector" @@ -9992,7 +9385,7 @@ #: ../plug-ins/gimpressionist/orientmap.c:595 #: ../plug-ins/gimpressionist/sizemap.c:466 msgid "A_dd" -msgstr "_Додати" +msgstr "Д_одати" #: ../plug-ins/gimpressionist/orientmap.c:599 msgid "Add new vector" @@ -10026,13 +9419,13 @@ #: ../plug-ins/gimpressionist/orientmap.c:629 #: ../plug-ins/gimpressionist/sizemap.c:518 msgid "_Voronoi" -msgstr "_Вороной" +msgstr "_Вороний" #: ../plug-ins/gimpressionist/orientmap.c:637 msgid "" "Voronoi-mode makes only the vector closest to the given point have any " "influence" -msgstr "В режимі \"Вороной\" лише найближчий до заданої точки вектор має вплив" +msgstr "В режимі \"Вороний\" лише найближчий до заданої точки вектор має вплив" #: ../plug-ins/gimpressionist/orientmap.c:647 msgid "A_ngle:" @@ -10109,7 +9502,7 @@ #: ../plug-ins/gimpressionist/placement.c:91 msgid "Stroke _density:" -msgstr "Щільність мазків:" +msgstr "_Щільність мазків:" #: ../plug-ins/gimpressionist/placement.c:95 msgid "The relative density of the brush strokes" @@ -10137,9 +9530,8 @@ msgstr "Збереження поточних" #: ../plug-ins/gimpressionist/presets.c:863 -#, fuzzy msgid "The Gimpressionist Defaults" -msgstr "GIMPімпресіоніст" +msgstr "Типові параметри GIMPімпресіоніст" #: ../plug-ins/gimpressionist/presets.c:979 msgid "_Presets" @@ -10338,23 +9730,20 @@ "%s" #: ../plug-ins/helpbrowser/dialog.c:159 -#, fuzzy msgid "GIMP Help browser" msgstr "Перегляд довідки GIMP" #: ../plug-ins/helpbrowser/dialog.c:411 -#, fuzzy msgid "Document not found" msgstr "Документ не знайдено" #: ../plug-ins/helpbrowser/dialog.c:413 msgid "The requested URL could not be loaded:" -msgstr "" +msgstr "Неможливо завантажити запитаний URL:" #: ../plug-ins/ifscompose/ifscompose.c:357 -#, fuzzy msgid "_IFS Fractal..." -msgstr "Фрактальний слід" +msgstr "_IFS фрактал..." #. Asym #: ../plug-ins/ifscompose/ifscompose.c:600 @@ -10372,9 +9761,8 @@ msgstr "Просте" #: ../plug-ins/ifscompose/ifscompose.c:668 -#, fuzzy msgid "IFS Fractal: Target" -msgstr "Фрактальний слід" +msgstr "IFS фрактал: ціль" #: ../plug-ins/ifscompose/ifscompose.c:674 msgid "Scale Hue by:" @@ -10390,29 +9778,24 @@ msgstr "Повний" #: ../plug-ins/ifscompose/ifscompose.c:713 -#, fuzzy msgid "IFS Fractal: Red" -msgstr "Тип фракталу" +msgstr "IFS фрактал: червоний" #: ../plug-ins/ifscompose/ifscompose.c:720 -#, fuzzy msgid "IFS Fractal: Green" -msgstr "Фрактальний слід" +msgstr "IFS фрактал: зелений" #: ../plug-ins/ifscompose/ifscompose.c:727 -#, fuzzy msgid "IFS Fractal: Blue" -msgstr "Тип фракталу" +msgstr "IFS фрактал: синій" #: ../plug-ins/ifscompose/ifscompose.c:734 -#, fuzzy msgid "IFS Fractal: Black" -msgstr "Фрактальний слід" +msgstr "IFS фрактал: чорний" #: ../plug-ins/ifscompose/ifscompose.c:784 -#, fuzzy msgid "IFS Fractal" -msgstr "Новий фрактал" +msgstr "IFS фрактал" #: ../plug-ins/ifscompose/ifscompose.c:872 msgid "Spatial Transformation" @@ -10423,7 +9806,6 @@ msgstr "Перетворення кольорів" #: ../plug-ins/ifscompose/ifscompose.c:888 -#, fuzzy msgid "Relative probability:" msgstr "Відносна вірогідність:" @@ -10432,17 +9814,14 @@ msgstr "Виді_лити все" #: ../plug-ins/ifscompose/ifscompose.c:1067 -#, fuzzy msgid "Re_center" -msgstr "Переобчислити _центр" +msgstr "Пере_центрувати" #: ../plug-ins/ifscompose/ifscompose.c:1067 -#, fuzzy msgid "Recompute Center" -msgstr "/Переобчислити центр" +msgstr "Переобчислити центр" #: ../plug-ins/ifscompose/ifscompose.c:1071 -#, fuzzy msgid "Render options" msgstr "Параметри візуалізації" @@ -10453,23 +9832,20 @@ msgstr "Перемістити" #: ../plug-ins/ifscompose/ifscompose.c:1080 -#, fuzzy msgid "Rotate" -msgstr "Повернутий" +msgstr "Обернути" #: ../plug-ins/ifscompose/ifscompose.c:1080 -#, fuzzy msgid "Rotate / Scale" -msgstr "/Обертання\\/масштаб" +msgstr "Обертання / масштаб" #: ../plug-ins/ifscompose/ifscompose.c:1083 msgid "Stretch" msgstr "Розтягнути" #: ../plug-ins/ifscompose/ifscompose.c:1180 -#, fuzzy msgid "IFS Fractal Render Options" -msgstr "Параметри візуалізації" +msgstr "Параметри візуалізації IFS фракталу" #: ../plug-ins/ifscompose/ifscompose.c:1201 msgid "Max. Memory:" @@ -10500,9 +9876,8 @@ msgstr "Перетворення %s" #: ../plug-ins/ifscompose/ifscompose.c:2400 -#, fuzzy msgid "Save failed" -msgstr "Збереження файлу" +msgstr "Помилка збереження" #: ../plug-ins/ifscompose/ifscompose.c:2481 #: ../plug-ins/ifscompose/ifscompose.c:2494 @@ -10510,34 +9885,29 @@ 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\" не є файлом IFS Compose" +msgstr "Файл \"%s\" не є файлом IFS-фракталу." #: ../plug-ins/ifscompose/ifscompose.c:2529 -#, fuzzy msgid "Save as IFS Fraktal file" -msgstr "Збереження як IFS" +msgstr "Збереження як файл IFS-фракталу" #: ../plug-ins/ifscompose/ifscompose.c:2559 -#, fuzzy msgid "Open IFS Fraktal file" -msgstr "Відкривання файлу IFS" +msgstr "Відкривання файлу IFS-фракталу" #: ../plug-ins/imagemap/imap_about.c:43 -#, fuzzy msgid "Imagemap plug-in 2.2" msgstr "Доповнення карти зображення 2.0" #: ../plug-ins/imagemap/imap_about.c:44 -#, fuzzy msgid "Copyright(c) 1999-2004 by Maurits Rijk" -msgstr "Авторські права(c) 1999-2003 Maurits Rijk" +msgstr "Авторські права(c) 1999-2004 Maurits Rijk" #: ../plug-ins/imagemap/imap_about.c:46 -#, fuzzy msgid "Released under the GNU General Public License" -msgstr " Випущено під ліцензією GNU General Public License " +msgstr "Випущено під ліцензією GNU General Public License" #: ../plug-ins/imagemap/imap_circle.c:64 msgid "C_ircle" @@ -10562,7 +9932,7 @@ #: ../plug-ins/imagemap/imap_circle.c:271 msgid "Center _y:" -msgstr "Центр Y:" +msgstr "Центр _Y:" #: ../plug-ins/imagemap/imap_cmd_clear.c:51 msgid "Clear" @@ -10645,7 +10015,6 @@ msgstr "Напрямні проходять від: %d,%d до %d,%d (%d ділянок)" #: ../plug-ins/imagemap/imap_cmd_guides.c:142 -#, fuzzy msgid "" "Guides are pre-defined rectangles covering the image. You define them by " "their width, height, and spacing from each other. This allows you to rapidly " @@ -10770,7 +10139,7 @@ #: ../plug-ins/imagemap/imap_edit_area_info.c:205 msgid "_Web Site" -msgstr "_Веб-сайт" +msgstr "_Веб-сторінка" #: ../plug-ins/imagemap/imap_edit_area_info.c:211 msgid "_Ftp Site" @@ -10854,16 +10223,12 @@ msgstr "Завантаження мапи зображення" #: ../plug-ins/imagemap/imap_file.c:117 -#, fuzzy msgid "File already exists" -msgstr "Файл існує!" +msgstr "Файл вже існує!" #: ../plug-ins/imagemap/imap_file.c:118 -#, fuzzy msgid "Do you really want to overwrite?" -msgstr "" -"Файл вже існує.\n" -" Ви справді хочете його переписати? " +msgstr "Ви справді хочете його переписати?" #: ../plug-ins/imagemap/imap_file.c:166 msgid "Save Imagemap" @@ -10922,9 +10287,8 @@ msgstr "_Попередній перегляд" #: ../plug-ins/imagemap/imap_main.c:128 -#, fuzzy msgid "_ImageMap..." -msgstr "Про доповнення \"Мапа зображення\"..." +msgstr "_Мапа зображення..." #: ../plug-ins/imagemap/imap_main.c:594 #: ../plug-ins/imagemap/imap_settings.c:171 @@ -10970,36 +10334,32 @@ msgstr "_Файл" #: ../plug-ins/imagemap/imap_menu.c:187 -#, fuzzy msgid "Open recent" msgstr "Відкрити недавнє" #: ../plug-ins/imagemap/imap_menu.c:209 #, c-format msgid "_Undo %s" -msgstr "_Скасувати %s" +msgstr "В_ернути %s" #: ../plug-ins/imagemap/imap_menu.c:225 #, c-format msgid "_Redo %s" -msgstr "_Повернути %s" +msgstr "Повт_орити %s" #: ../plug-ins/imagemap/imap_menu.c:253 msgid "_Edit" msgstr "_Правка" #: ../plug-ins/imagemap/imap_menu.c:271 -#, fuzzy msgid "Select _all" -msgstr "Виділити все" +msgstr "Виділ_ити все" #: ../plug-ins/imagemap/imap_menu.c:274 -#, fuzzy msgid "Deselect _all" msgstr "З_няти виділення" #: ../plug-ins/imagemap/imap_menu.c:279 -#, fuzzy msgid "Edit area info..." msgstr "Правка інформації про ділянку..." @@ -11008,7 +10368,6 @@ msgstr "_Вигляд" #: ../plug-ins/imagemap/imap_menu.c:298 -#, fuzzy msgid "Area list" msgstr "Список ділянок" @@ -11022,7 +10381,6 @@ msgstr "Відтінки сірого" #: ../plug-ins/imagemap/imap_menu.c:328 -#, fuzzy msgid "Zoom to" msgstr "Масштаб" @@ -11035,7 +10393,6 @@ msgstr "Стрілка" #: ../plug-ins/imagemap/imap_menu.c:365 -#, fuzzy msgid "Select contiguous region" msgstr "Виділення суцільної ділянки" @@ -11044,17 +10401,14 @@ msgstr "С_ервіс" #: ../plug-ins/imagemap/imap_menu.c:386 -#, fuzzy msgid "Grid settings..." msgstr "Параметри сітки..." #: ../plug-ins/imagemap/imap_menu.c:389 -#, fuzzy msgid "Use GIMP guides..." msgstr "Використовувати напрямні..." #: ../plug-ins/imagemap/imap_menu.c:391 -#, fuzzy msgid "Create guides..." msgstr "Створити напрямні..." @@ -11063,14 +10417,12 @@ msgstr "_Довідка" #: ../plug-ins/imagemap/imap_menu.c:401 -#, fuzzy msgid "_Contents" -msgstr "Контекст" +msgstr "_Зміст" #: ../plug-ins/imagemap/imap_menu.c:405 -#, fuzzy msgid "_About ImageMap" -msgstr "Про доповнення \"Мапа зображення\"..." +msgstr "_Про доповнення \"Мапа зображення\"..." #: ../plug-ins/imagemap/imap_object_popup.c:103 msgid "Edit Area Info..." @@ -11125,9 +10477,8 @@ msgstr "Вибір кольору" #: ../plug-ins/imagemap/imap_preferences.c:443 -#, fuzzy msgid "General" -msgstr "_Загальне" +msgstr "Загальне" #: ../plug-ins/imagemap/imap_preferences.c:447 msgid "Default Map Type" @@ -11158,9 +10509,8 @@ msgstr "_Використовувати обробники подвоєного розміру" #: ../plug-ins/imagemap/imap_preferences.c:484 -#, fuzzy msgid "Menu" -msgstr "_Меню" +msgstr "Меню" #: ../plug-ins/imagemap/imap_preferences.c:488 msgid "Number of _Undo levels (1 - 99):" @@ -11209,11 +10559,11 @@ #: ../plug-ins/imagemap/imap_selection.c:410 msgid "#" -msgstr "" +msgstr "№" #: ../plug-ins/imagemap/imap_selection.c:439 msgid "ALT Text" -msgstr "" +msgstr "ALT текст" #: ../plug-ins/imagemap/imap_selection.c:449 msgid "Target" @@ -11292,7 +10642,6 @@ msgstr "Зменшити" #: ../plug-ins/imagemap/imap_toolbar.c:147 -#, fuzzy msgid "Edit map info" msgstr "Правка інформації про мапу" @@ -11337,22 +10686,19 @@ msgstr "Конструювання розсіченого лабіринту з використанням алгоритму Prim..." #: ../plug-ins/maze/maze.c:163 -#, fuzzy msgid "_Maze..." -msgstr "Малювання лабіринту..." +msgstr "_Лабіринт..." #: ../plug-ins/maze/maze.c:450 msgid "Drawing Maze..." msgstr "Малювання лабіринту..." #: ../plug-ins/maze/maze.h:2 -#, fuzzy msgid "Maze" -msgstr "Мармур" +msgstr "Лабіринт" #. entscale == Entry and Scale pair function found in pixelize.c #: ../plug-ins/maze/maze_face.c:202 -#, fuzzy msgid "Width (pixels):" msgstr "Ширина (у точках):" @@ -11361,7 +10707,6 @@ msgstr "Шматочки:" #: ../plug-ins/maze/maze_face.c:219 -#, fuzzy msgid "Height (pixels):" msgstr "Висота (у точках):" @@ -11374,12 +10719,10 @@ msgstr "Зсув (1):" #: ../plug-ins/maze/maze_face.c:287 -#, fuzzy msgid "Depth first" msgstr "Переважно в глибину" #: ../plug-ins/maze/maze_face.c:288 -#, fuzzy msgid "Prim's algorithm" msgstr "Алгоритм Prim" @@ -11392,9 +10735,8 @@ "Лабіринт буде нерівний." #: ../plug-ins/pagecurl/pagecurl.c:224 -#, fuzzy msgid "_Pagecurl..." -msgstr "Загнута сторінка..." +msgstr "_Загнута сторінка..." #: ../plug-ins/pagecurl/pagecurl.c:443 msgid "Pagecurl Effect" @@ -11405,22 +10747,18 @@ msgstr "Розміщення загину" #: ../plug-ins/pagecurl/pagecurl.c:477 -#, fuzzy msgid "Lower right" msgstr "Знизу праворуч" #: ../plug-ins/pagecurl/pagecurl.c:478 -#, fuzzy msgid "Lower left" msgstr "Знизу ліворуч" #: ../plug-ins/pagecurl/pagecurl.c:479 -#, fuzzy msgid "Upper left" msgstr "Вгорі ліворуч" #: ../plug-ins/pagecurl/pagecurl.c:480 -#, fuzzy msgid "Upper right" msgstr "Вгорі праворуч" @@ -11429,28 +10767,24 @@ msgstr "Орієнтація загину" #: ../plug-ins/pagecurl/pagecurl.c:564 -#, fuzzy msgid "_Shade under curl" -msgstr "Тінь під загином" +msgstr "_Тінь під загином" #: ../plug-ins/pagecurl/pagecurl.c:577 msgid "Current gradient (reversed)" -msgstr "" +msgstr "Поточний градієнт (реверсний)" #: ../plug-ins/pagecurl/pagecurl.c:582 -#, fuzzy msgid "Current gradient" -msgstr "Власний градієнт" +msgstr "Поточний градієнт" #: ../plug-ins/pagecurl/pagecurl.c:587 -#, fuzzy msgid "Foreground / background colors" -msgstr "_Передній план та тло" +msgstr "Кольори переднього плану та тла" #: ../plug-ins/pagecurl/pagecurl.c:607 -#, fuzzy msgid "_Opacity:" -msgstr "Непрозорість:" +msgstr "_Непрозорість:" #: ../plug-ins/pagecurl/pagecurl.c:730 msgid "Curl Layer" @@ -11612,7 +10946,7 @@ #: ../plug-ins/print/gimp_main_window.c:484 msgid "Upside down" -msgstr "Перевенута" +msgstr "Перевернута" #: ../plug-ins/print/gimp_main_window.c:485 msgid "Seascape" @@ -11711,7 +11045,6 @@ msgstr "Файл PPD:" #: ../plug-ins/print/gimp_main_window.c:739 -#, fuzzy msgid "Enter the PPD filename for your printer" msgstr "Ввід назву файлу PPD для вашого принтера" @@ -11720,9 +11053,8 @@ msgstr "Перегляд" #: ../plug-ins/print/gimp_main_window.c:748 -#, fuzzy msgid "Choose the PPD file for your printer" -msgstr "Вкажіть правильну назву PPD файлу для вашого принтера" +msgstr "Вкажіть PPD файл для вашого принтера" #. #. * Print command. @@ -11732,19 +11064,17 @@ msgstr "Команда:" #: ../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 "" -"Вкажіть правильну команду друку на вашому принтері. Увага: не прибирайте\n" +"Вкажіть команду друку на вашому принтері. Увага: не прибирайте\n" "`-l' чи `-oraw' з командного рядка, у цьому випадку друк може працювати " "некоректно." #: ../plug-ins/print/gimp_main_window.c:781 -#, fuzzy msgid "Choose PPD File" -msgstr "Файл PPD?" +msgstr "Виберіть файл PPD" #: ../plug-ins/print/gimp_main_window.c:802 msgid "Define New Printer" @@ -11752,7 +11082,6 @@ #: ../plug-ins/print/gimp_main_window.c:825 #: ../plug-ins/print/gimp_main_window.c:920 -#, fuzzy msgid "Printer name:" msgstr "Назва принтера:" @@ -11823,7 +11152,6 @@ msgstr "Виберіть назву принтера (не тип або модель)" #: ../plug-ins/print/gimp_main_window.c:926 -#, fuzzy msgid "Printer model:" msgstr "Модель принтера:" @@ -11831,7 +11159,6 @@ #. * Setup printer button #. #: ../plug-ins/print/gimp_main_window.c:937 -#, fuzzy msgid "Setup printer..." msgstr "Параметри принтера..." @@ -11847,7 +11174,6 @@ #. * New printer button #. #: ../plug-ins/print/gimp_main_window.c:954 -#, fuzzy msgid "New printer..." msgstr "Новий принтер..." @@ -11864,9 +11190,8 @@ msgstr "Розмір паперу для друку" #: ../plug-ins/print/gimp_main_window.c:980 -#, fuzzy msgid "Media size:" -msgstr "Розмір аркушу:" +msgstr "Розмір аркуша:" #: ../plug-ins/print/gimp_main_window.c:989 msgid "Dimensions:" @@ -11885,7 +11210,6 @@ msgstr "Тип носія, на який відбуватиметься друк" #: ../plug-ins/print/gimp_main_window.c:1039 -#, fuzzy msgid "Media type:" msgstr "Тип носія:" @@ -11894,7 +11218,6 @@ msgstr "Назва лотка, з якого буде відбуватись друк" #: ../plug-ins/print/gimp_main_window.c:1055 -#, fuzzy msgid "Media source:" msgstr "Джерело:" @@ -11903,7 +11226,6 @@ msgstr "Тип чорнил у принтері" #: ../plug-ins/print/gimp_main_window.c:1071 -#, fuzzy msgid "Ink type:" msgstr "Тип чорнил:" @@ -11920,9 +11242,8 @@ msgstr "Вкажіть масштаб (розмір) зображення" #: ../plug-ins/print/gimp_main_window.c:1152 -#, fuzzy msgid "Scale by:" -msgstr "Масштаб Z:" +msgstr "Масштабувати на:" #: ../plug-ins/print/gimp_main_window.c:1157 msgid "" @@ -12000,7 +11321,6 @@ msgstr "Зображення/Параметри виводу" #: ../plug-ins/print/gimp_main_window.c:1317 -#, fuzzy msgid "Image type:" msgstr "Тип зображення:" @@ -12009,7 +11329,6 @@ msgstr "Оптимізувати вивід в залежності від типу зображення" #: ../plug-ins/print/gimp_main_window.c:1329 -#, fuzzy msgid "Line art" msgstr "Малюнок в лініях" @@ -12018,7 +11337,6 @@ msgstr "Самий швидкий та яскравий - для тексту та штрихових малюнків" #: ../plug-ins/print/gimp_main_window.c:1343 -#, fuzzy msgid "Solid colors" msgstr "Суцільні кольори" @@ -12039,7 +11357,6 @@ "Найповільніший, але самий ретельний та гладкий, найкращий для фотографій. " #: ../plug-ins/print/gimp_main_window.c:1389 -#, fuzzy msgid "Output type:" msgstr "Тип виводу:" @@ -12056,7 +11373,6 @@ msgstr "Друк у відтінках сірого використовуючи чорну фарбу" #: ../plug-ins/print/gimp_main_window.c:1424 -#, fuzzy msgid "Black and white" msgstr "Чорно-білий" @@ -12068,7 +11384,6 @@ #. * Color adjust button #. #: ../plug-ins/print/gimp_main_window.c:1442 -#, fuzzy msgid "Adjust output..." msgstr "Корегування виводу..." @@ -12078,14 +11393,12 @@ msgstr "Корегування балансу кольорів, контрасту, яскравості, насиченості" #: ../plug-ins/print/gimp_main_window.c:1483 -#, fuzzy msgid "Print to File" -msgstr "Друк у файл?" +msgstr "Друк у файл" #: ../plug-ins/print/print.c:164 -#, fuzzy msgid "_Print..." -msgstr "Друк..." +msgstr "Д_ук..." #: ../plug-ins/print/print.c:694 ../plug-ins/print/print.c:695 #: ../plug-ins/print/print.c:785 ../plug-ins/print/print.c:1124 @@ -12093,100 +11406,96 @@ msgstr "Файл" #: ../plug-ins/rcm/rcm.c:106 -#, fuzzy msgid "Colormap _Rotation..." -msgstr "Обертання мапи кольорів" +msgstr "_Обертання мапи кольорів..." #: ../plug-ins/rcm/rcm.c:270 msgid "Rotating the colormap..." msgstr "Обертання мапи кольорів..." -#: ../plug-ins/rcm/rcm_dialog.c:114 +#: ../plug-ins/rcm/rcm_dialog.c:119 msgid "Original" msgstr "Початковий" -#: ../plug-ins/rcm/rcm_dialog.c:127 +#: ../plug-ins/rcm/rcm_dialog.c:133 msgid "Rotated" msgstr "Повернутий" -#: ../plug-ins/rcm/rcm_dialog.c:140 +#: ../plug-ins/rcm/rcm_dialog.c:147 msgid "Continuous update" msgstr "Безперервне оновлення" -#: ../plug-ins/rcm/rcm_dialog.c:153 +#: ../plug-ins/rcm/rcm_dialog.c:160 msgid "Area:" msgstr "Ділянка:" -#: ../plug-ins/rcm/rcm_dialog.c:157 +#: ../plug-ins/rcm/rcm_dialog.c:164 msgid "Entire Layer" msgstr "Весь шар" -#: ../plug-ins/rcm/rcm_dialog.c:159 +#: ../plug-ins/rcm/rcm_dialog.c:166 msgid "Context" msgstr "Контекст" #. spinbutton 1 -#: ../plug-ins/rcm/rcm_dialog.c:284 ../plug-ins/rcm/rcm_dialog.c:362 +#: ../plug-ins/rcm/rcm_dialog.c:291 ../plug-ins/rcm/rcm_dialog.c:369 msgid "From" msgstr "З" #. spinbutton 2 -#: ../plug-ins/rcm/rcm_dialog.c:310 ../plug-ins/rcm/rcm_dialog.c:363 +#: ../plug-ins/rcm/rcm_dialog.c:317 ../plug-ins/rcm/rcm_dialog.c:370 msgid "To" msgstr "В" #. * Gray: Operation-Mode * -#: ../plug-ins/rcm/rcm_dialog.c:499 -#, fuzzy +#: ../plug-ins/rcm/rcm_dialog.c:506 msgid "Gray Mode" msgstr "Режим кольору" #. Gray: Operation-Mode: two radio buttons -#: ../plug-ins/rcm/rcm_dialog.c:508 +#: ../plug-ins/rcm/rcm_dialog.c:515 msgid "Treat as this" msgstr "Обробляти як це" -#: ../plug-ins/rcm/rcm_dialog.c:520 +#: ../plug-ins/rcm/rcm_dialog.c:527 msgid "Change to this" msgstr "Змінити до цього" #. * Gray: What is gray? * -#: ../plug-ins/rcm/rcm_dialog.c:533 -#, fuzzy +#: ../plug-ins/rcm/rcm_dialog.c:540 msgid "Gray Threshold" -msgstr "Поріг _зеленого:" +msgstr "Поріг зеленого" #. * Misc: Used unit selection * -#: ../plug-ins/rcm/rcm_dialog.c:572 ../plug-ins/rcm/rcm_dialog.c:676 +#: ../plug-ins/rcm/rcm_dialog.c:579 ../plug-ins/rcm/rcm_dialog.c:683 msgid "Units" msgstr "Одиниці" #. Misc: Used unit selection: 3 radio buttons -#: ../plug-ins/rcm/rcm_dialog.c:581 +#: ../plug-ins/rcm/rcm_dialog.c:588 msgid "Radians" msgstr "Радіани" -#: ../plug-ins/rcm/rcm_dialog.c:593 +#: ../plug-ins/rcm/rcm_dialog.c:600 msgid "Radians/Pi" msgstr "Радіани/Пі" -#: ../plug-ins/rcm/rcm_dialog.c:605 +#: ../plug-ins/rcm/rcm_dialog.c:612 msgid "Degrees" msgstr "Градуси" #. Create dialog -#: ../plug-ins/rcm/rcm_dialog.c:638 +#: ../plug-ins/rcm/rcm_dialog.c:645 msgid "Colormap Rotation" msgstr "Обертання мапи кольорів" -#: ../plug-ins/rcm/rcm_dialog.c:670 +#: ../plug-ins/rcm/rcm_dialog.c:677 msgid "Main Options" msgstr "Основні параметри" -#: ../plug-ins/rcm/rcm_dialog.c:673 -#, fuzzy +#: ../plug-ins/rcm/rcm_dialog.c:680 msgid "Gray Options" -msgstr "Загальні параметри" +msgstr "Параметри зеленого" #: ../plug-ins/rcm/rcm_stock.c:35 msgid "Switch to clockwise" @@ -12219,7 +11528,7 @@ #: ../plug-ins/sgi/sgi.c:122 ../plug-ins/sgi/sgi.c:142 msgid "Silicon Graphics IRIS image" -msgstr "" +msgstr "Зображення Silicon Graphics IRIS" #: ../plug-ins/sgi/sgi.c:540 #, c-format @@ -12231,22 +11540,18 @@ msgstr "Збереження як SGI" #: ../plug-ins/sgi/sgi.c:631 -#, fuzzy msgid "Compression type" msgstr "Тип стиснення" #: ../plug-ins/sgi/sgi.c:635 -#, fuzzy msgid "No compression" msgstr "Без стиснення" #: ../plug-ins/sgi/sgi.c:637 -#, fuzzy msgid "RLE compression" -msgstr "_RLE стиснення" +msgstr "RLE стиснення" #: ../plug-ins/sgi/sgi.c:639 -#, fuzzy msgid "" "Aggressive RLE\n" "(not supported by SGI)" @@ -12256,42 +11561,42 @@ #: ../plug-ins/twain/twain.c:313 msgid "TWAIN (Dump)..." -msgstr "" +msgstr "TWAIN (дамп)..." #: ../plug-ins/twain/twain.c:332 msgid "TWAIN (Read)..." -msgstr "" +msgstr "TWAIN (читання)..." #: ../plug-ins/twain/twain.c:352 msgid "_TWAIN..." -msgstr "" +msgstr "_TWAIN..." #. Initialize our progress dialog #: ../plug-ins/twain/twain.c:489 msgid "Transferring TWAIN data..." msgstr "Передача TWAIN-даних..." -#: ../plug-ins/winicon/icodialog.c:123 +#: ../plug-ins/winicon/icodialog.c:89 msgid "1 bpp, 1-bit alpha, 2-slot palette" msgstr "1 біт/точку, 1-біт альфа-канал, 2-комірки палітри" -#: ../plug-ins/winicon/icodialog.c:124 +#: ../plug-ins/winicon/icodialog.c:90 msgid "4 bpp, 1-bit alpha, 16-slot palette" msgstr "4 біта/точку, 1-біт альфа-канал, 16-комірок палітри" -#: ../plug-ins/winicon/icodialog.c:125 +#: ../plug-ins/winicon/icodialog.c:91 msgid "8 bpp, 1-bit alpha, 256-slot palette" msgstr "8 біт/точку, 1-біт альфа-канал, 256-комірок палітри" -#: ../plug-ins/winicon/icodialog.c:126 +#: ../plug-ins/winicon/icodialog.c:92 msgid "32 bpp, 8-bit alpha, no palette" msgstr "32 біт/точку, 8-біт альфа-канал, без палітри" -#: ../plug-ins/winicon/icodialog.c:151 +#: ../plug-ins/winicon/icodialog.c:117 msgid "GIMP Windows Icon Plugin" msgstr "Доповнення GIMP значків Windows" -#: ../plug-ins/winicon/icodialog.c:172 +#: ../plug-ins/winicon/icodialog.c:138 msgid "Icon details" msgstr "Подробиці значка" @@ -12300,13 +11605,13 @@ msgid "Icon #%i" msgstr "Значок #%i" -#: ../plug-ins/winicon/icosave.c:943 +#: ../plug-ins/winicon/icosave.c:969 msgid "Windows icons cannot be higher or wider than 255 pixels." msgstr "Значки Windows не можуть бути вищими ніж 255 точок" #: ../plug-ins/winicon/main.c:88 ../plug-ins/winicon/main.c:107 msgid "Microsoft Windows icon" -msgstr "" +msgstr "Значок Microsoft Windows" #: ../plug-ins/winsnap/winsnap.c:877 msgid "Grab a single window" @@ -12321,7 +11626,6 @@ msgstr "через" #: ../plug-ins/winsnap/winsnap.c:919 -#, fuzzy msgid "Seconds delay" msgstr "секунд" @@ -12335,7 +11639,7 @@ #: ../plug-ins/xjt/xjt.c:475 ../plug-ins/xjt/xjt.c:493 msgid "GIMP compressed XJT image" -msgstr "" +msgstr "Зображення GIMP стиснений XJT" #: ../plug-ins/xjt/xjt.c:714 #, c-format @@ -12372,7 +11676,6 @@ msgstr "Зберегти як XJT" #: ../plug-ins/xjt/xjt.c:870 -#, fuzzy msgid "Clear transparent" msgstr "Очистити прозоре" @@ -12401,1221 +11704,3 @@ #~ msgid "Before and After" #~ msgstr "До та після" - -#, fuzzy -#~ msgid "Gfig layer %d" -#~ msgstr "Шар Gfig %d" - -#, fuzzy -#~ msgid "TIFF images" -#~ msgstr "Канал TIFF" - -#~ msgid "Paint" -#~ msgstr "Намалювати" - -#~ msgid "All" -#~ msgstr "Все" - -#~ msgid "Clockwise" -#~ msgstr "За годинниковою" - -#~ msgid "Anti-Clockwise" -#~ msgstr "Проти годинникової" - -#, fuzzy -#~ msgid "Ifs_Compose..." -#~ msgstr "IfsCompose" - -#~ msgid "IfsCompose: Target" -#~ msgstr "IfsCompose: Ціль" - -#~ msgid "IfsCompose: Red" -#~ msgstr "IfsCompose: Червоний" - -#~ msgid "IfsCompose: Green" -#~ msgstr "IfsCompose: Зелений" - -#~ msgid "IfsCompose: Blue" -#~ msgstr "IfsCompose: Синій" - -#~ msgid "IfsCompose: Black" -#~ msgstr "IfsCompose: Чорний" - -#~ msgid "IfsCompose" -#~ msgstr "IfsCompose" - -#, fuzzy -#~ msgid "Rotate/scale" -#~ msgstr "Обертання/масштаб" - -#~ msgid "/Move" -#~ msgstr "/Перемістити" - -#~ msgid "/Stretch" -#~ msgstr "/Розтягнути" - -#~ msgid "/New" -#~ msgstr "/Новий" - -#~ msgid "/Delete" -#~ msgstr "/Видалити" - -#~ msgid "/Undo" -#~ msgstr "/Скасувати" - -#~ msgid "/Redo" -#~ msgstr "/Повернути" - -#~ msgid "/Select All" -#~ msgstr "/Виділити все" - -#~ msgid "IfsCompose Options" -#~ msgstr "Параметри IfsCompose" - -#~ msgid "Opening %s" -#~ msgstr "Відкривається %s" - -#~ msgid "See %s" -#~ msgstr "Дивіться %s" - -#~ msgid "Loading %s:" -#~ msgstr "Завантаження %s:" - -#~ msgid "Saving %s:" -#~ msgstr "Збереження %s:" - -#~ msgid "Despeckling..." -#~ msgstr "Прибирання плям..." - -#~ msgid "Rendering %s" -#~ msgstr "Візуалізація %s" - -#~ msgid "Scale (log 2):" -#~ msgstr "Масштаб (log 2):" - -#~ msgid "Bezier Settings" -#~ msgstr "Параметри кривої Без'є" - -#~ msgid "Number of Sides/Points/Turns:" -#~ msgstr "Кількість сторін/точок/поворотів:" - -#~ msgid "Could not locate help document" -#~ msgstr "Документ довідки не знайдено" - -#~ 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 "" -#~ "Не вдається знайти запитаний документ у вказаному місці. Це означає або " -#~ "те, що текст довідки ще не написано для цього пункту, або інсталяція GIMP " -#~ "не повна. Перш ніж тим як повідомляти про це як про помилку, " -#~ "переконайтесь, що інсталяція завершена." - -#, fuzzy -#~ msgid "/Filters/Render" -#~ msgstr "/Фільтри/Візуалізація/_Gfig..." - -#, fuzzy -#~ msgid "/Filters/Light Effects" -#~ msgstr "/Фільтри/Світлові ефекти/_Градієнтний спалах..." - -#, fuzzy -#~ msgid "/Filters/Map" -#~ msgstr "/Фільтри/Відображення/_Деформація..." - -#, fuzzy -#~ msgid "/Filters/Colors/Map" -#~ msgstr "/Фільтри/Кольори/_Максимум RGB..." - -#, fuzzy -#~ msgid "/Filters/Render/Pattern" -#~ msgstr "/Фільтри/Візуалізація/Візерунок/_Лабіринт..." - -#, fuzzy -#~ msgid "/Filters/Animation" -#~ msgstr "/Фільтри/Анімація/_Деоптимізація" - -#, fuzzy -#~ msgid "/Filters/Glass Effects" -#~ msgstr "/Фільтри/Ефекти скла/_Скляна плитка..." - -#, fuzzy -#~ msgid "/Image/Crop" -#~ msgstr "/Зображення/Перетворення/Автокадр" - -#, fuzzy -#~ msgid "/Layer/Crop" -#~ msgstr "/Зображення/Перетворення/_Старанного кадрування" - -#, fuzzy -#~ msgid "/Layer/Colors/Auto" -#~ msgstr "/Шар/Кольори/Авто/_Нормалізувати" - -#, fuzzy -#~ msgid "/Filters/Distorts" -#~ msgstr "/Фільтри/Викривлення/_Вітер..." - -#, fuzzy -#~ msgid "/Filters/Blur" -#~ msgstr "/Фільтри/Розмивання/_Розмивання..." - -#, fuzzy -#~ msgid "/Filters/Colors" -#~ msgstr "/Фільтри/Кольори/_Гарячі..." - -#, fuzzy -#~ msgid "/Layer/Colors/Info" -#~ msgstr "/Шар/Кольори/Авто/_Нормалізувати" - -#, fuzzy -#~ msgid "/Layer/Transparency/Modify" -#~ msgstr "/Зображення/Альфа/_Поріг альфа-каналу..." - -#, fuzzy -#~ msgid "/Image/Mode" -#~ msgstr "/Зображення/Перетворення/Гільйотина" - -#, fuzzy -#~ msgid "/Filters/Generic" -#~ msgstr "/Фільтри/Загальне/_Ерозія..." - -#, fuzzy -#~ msgid "/Filters/Artistic" -#~ msgstr "/Фільтри/Художні/_Кубізм..." - -#, fuzzy -#~ msgid "/Filters/Enhance" -#~ msgstr "/Фільтри/Покращення/Підвищення _різкості..." - -#, fuzzy -#~ msgid "/Filters/Combine" -#~ msgstr "/Фільтри/Об'єднання/_Фотоплівка..." - -#, fuzzy -#~ msgid "/Filters/Edge-Detect" -#~ msgstr "/Фільтри/Виявлення меж/_Лаплас" - -#, fuzzy -#~ msgid "/Filters/Toys" -#~ msgstr "/Фільтри/Іграшки/_Масштаб..." - -#, fuzzy -#~ msgid "/Image/Transform" -#~ msgstr "/Зображення/Перетворення/Автокадр" - -#, fuzzy -#~ msgid "/File/Send" -#~ msgstr "/Файл/Д_рук" - -#, fuzzy -#~ msgid "_Do preview" -#~ msgstr "_Попередній перегляд" - -#, fuzzy -#~ msgid "/Filters/Noise" -#~ msgstr "/Фільтри/Шум/_Пляма..." - -#, fuzzy -#~ msgid "/Filters/Render/Clouds" -#~ msgstr "/Фільтри/Візуалізація/Хмари/_Плазма..." - -#, fuzzy -#~ msgid "/File/Acquire" -#~ msgstr "/Файл/Захопити/_TWAIN..." - -#~ msgid "Pos X:" -#~ msgstr "Поз. X:" - -#~ msgid "Pos Y:" -#~ msgstr "Поз. Y:" - -#~ msgid "Pos Z:" -#~ msgstr "Поз. Z:" - -#, fuzzy -#~ msgid "/Xtns/Extensions" -#~ msgstr "/Розш./Редактор _одиниць" - -#, fuzzy -#~ msgid "/Edit" -#~ msgstr "/Файл/Д_рук" - -#, fuzzy -#~ msgid "/Filters/Render/Nature" -#~ msgstr "/Фільтри/Візуалізація/Природа/_Полум'я..." - -#, fuzzy -#~ msgid "/Filters/Web" -#~ msgstr "/Фільтри/Web/_Мапа зображення..." - -#, fuzzy -#~ msgid "Source" -#~ msgstr "Джерело 1:" - -#, fuzzy -#~ msgid "Do pre_view" -#~ msgstr "_Попередній перегляд" - -#, fuzzy -#~ msgid "_Plugin Details" -#~ msgstr "Опис доповнення" - -#~ msgid "Details <<" -#~ msgstr "Подробиці <<" - -#~ msgid "Details >>" -#~ msgstr "Подробиці >>" - -#~ msgid "Name:" -#~ msgstr "Назва:" - -#~ msgid "Blurb:" -#~ msgstr "Анотація:" - -#~ msgid "Help:" -#~ msgstr "Довідка:" - -#~ msgid "Plugin Descriptions" -#~ msgstr "Опис доповнення" - -#~ msgid "Search by Name" -#~ msgstr "Пошук за назвою" - -#, fuzzy -#~ msgid "Ins date" -#~ msgstr "Дата встановлення" - -#, fuzzy -#~ msgid "Menu path" -#~ msgstr "Шлях меню" - -#~ msgid "Search:" -#~ msgstr "Знайти:" - -#~ msgid "In:" -#~ msgstr "Вхід:" - -#~ msgid "Out:" -#~ msgstr "Вихід:" - -#, fuzzy -#~ msgid "_Spherical" -#~ msgstr "Сферичний" - -#, fuzzy -#~ msgid "S_inusoidal" -#~ msgstr "Синусоїдний" - -#~ msgid "EOF encountered on " -#~ msgstr "Виявлено кінець файлу на " - -#~ msgid "No memory for mapping colors" -#~ msgstr "Немає пам'яті для відображення кольорів" - -#~ msgid "Selection:" -#~ msgstr "Спосіб вибору пензля:" - -#, fuzzy -#~ msgid "E_nable antialiasing" -#~ msgstr "_Увімкнути згладжування" - -#~ msgid "T_hreshold:" -#~ msgstr "_Поріг:" - -#, fuzzy -#~ msgid "L_ight yype:" -#~ msgstr "Тип д_жерела світла:" - -#, fuzzy -#~ msgid "Lig_ht color:" -#~ msgstr "Колір д_жерела світла:" - -#~ msgid "_Ambient:" -#~ msgstr "_Оточення:" - -#~ msgid "_Diffuse:" -#~ msgstr "_Дифузія:" - -#~ msgid "D_iffuse:" -#~ msgstr "Ди_фузія:" - -#~ msgid "_Specular:" -#~ msgstr "_Відбивання:" - -#~ msgid "_Highlight:" -#~ msgstr "_Освітлення:" - -#~ msgid "Parameters were Saved to '%s'" -#~ msgstr "Параметри збережено в \"%s\"" - -#~ msgid "'%s' is not a HRZ file" -#~ msgstr "\"%s\": не є HRZ файлом" - -#~ msgid "Image must be 256x240" -#~ msgstr "Зображення повинно бути 256x240" - -#~ msgid "Image must be RGB or GRAY" -#~ msgstr "Зображення повинно бути RGB або сірим" - -#~ msgid "Brush" -#~ msgstr "Пензель" - -#~ msgid "Airbrush" -#~ msgstr "Аерограф" - -#~ msgid "Pencil" -#~ msgstr "Олівець" - -#, 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 "" -#~ "Для малювання зображення використовуйте пензель, олівець чи аерограф. " -#~ "Шаблоном можна малювати за допомогою поточного пензля. Застосовне лише " -#~ "для кіл/еліпсів якщо \"Приблизні кола та еліпси\" не відмічено." - -#~ msgid "New" -#~ msgstr "Новий" - -#~ msgid "Multiple" -#~ msgstr "Множення" - -#, fuzzy -#~ msgid "" -#~ "Draw all objects on one layer (original or new) or one object per layer." -#~ msgstr "" -#~ "Малювати всі об'єкти на одному шарі (початковому чи новому) або один " -#~ "об'єкт на шар" - -#~ msgid "Draw on:" -#~ msgstr "Малювати на шар:" - -#~ msgid "Selection+Fill" -#~ msgstr "Виділення+Заповнення" - -#, fuzzy -#~ msgid "" -#~ "Draw type. Either a brush or a selection. See brush page or selection " -#~ "page for more options." -#~ msgstr "" -#~ "Тип операції. Або пензель, або виділення. Додаткові параметри на " -#~ "сторінках пензля і виділення." - -#~ msgid "Using:" -#~ msgstr "Використовувати:" - -#, fuzzy -#~ msgid "Reverse line" -#~ msgstr "Зворотна лінія" - -#~ msgid "Draw lines in reverse order" -#~ msgstr "Малювати прямі у зворотному порядку" - -#, fuzzy -#~ msgid "Scale to image" -#~ msgstr "Масштаб за зображенням" - -#~ msgid "Scale drawings to images size" -#~ msgstr "Масштабувати малюнок за розміром зображення" - -#, fuzzy -#~ msgid "Approx. circles/ellipses" -#~ msgstr "Приблизні кола та еліпси" - -#~ msgid "" -#~ "Approx. circles & ellipses using lines. Allows the use of brush fading " -#~ "with these types of objects." -#~ msgstr "" -#~ "Приблизні кола та еліпси з використанням ліній. Дозволяє використовувати " -#~ "згасання пензля з цими типами об'єктів." - -#~ msgid "Gfig Brush Selection" -#~ msgstr "Вибір пензля Gfig" - -#~ msgid "Fade out:" -#~ msgstr "Згасання:" - -#~ msgid "Gradient:" -#~ msgstr "Градієнт:" - -#~ msgid "Pressure:" -#~ msgstr "Натиск:" - -#, fuzzy -#~ msgid "No options..." -#~ msgstr "Без параметрів..." - -#, fuzzy -#~ msgid "Set brush..." -#~ msgstr "Встановити пензель..." - -#~ msgid "Add" -#~ msgstr "Додати" - -#~ msgid "Subtract" -#~ msgstr "Відняти" - -#~ msgid "Intersect" -#~ msgstr "Перетин" - -#, fuzzy -#~ msgid "Fill type:" -#~ msgstr "Тип заповнення:" - -#~ msgid "Fill Opacity:" -#~ msgstr "Непрозорість заповнення:" - -#, fuzzy -#~ msgid "Each selection" -#~ msgstr "Кожного виділення" - -#, fuzzy -#~ msgid "All selections" -#~ msgstr "Усіх виділень" - -#~ msgid "Fill after:" -#~ msgstr "Заповнювати після:" - -#~ msgid "Segment" -#~ msgstr "Сегмент" - -#~ msgid "Sector" -#~ msgstr "Сектор" - -#~ msgid "Arc as:" -#~ msgstr "Дуга як:" - -#, fuzzy -#~ msgid "Reload image" -#~ msgstr "Перезавантажити зображення" - -#, fuzzy -#~ msgid "Lock on grid" -#~ msgstr "Вирівнювати на сітку" - -#~ msgid "Object" -#~ msgstr "Об'єкт" - -#~ msgid "Create a new Gfig object collection for editing" -#~ msgstr "Створити новий набір об'єктів Gfig для редагування" - -#~ msgid "Load a single Gfig object collection" -#~ msgstr "Завантажити один набір об'єктів Gfig" - -#~ msgid "Edit Gfig object collection" -#~ msgstr "Правка набору об'єктів Gfig" - -#~ msgid "_Merge" -#~ msgstr "Об'_єднання" - -#, fuzzy -#~ msgid "Merge Gfig Ooject collection into the current edit session" -#~ msgstr "Об'єднати набір об'єктів Gfig в поточному сеансі виправлення" - -#~ msgid "Delete currently selected Gfig Object collection" -#~ msgstr "Видалити вибраний набір об'єктів Gfig" - -#~ msgid "Select folder and rescan Gfig object collections" -#~ msgstr "Вибрати каталог та перечитати набір об'єктів Gfig" - -#~ msgid "%d unsaved Gfig objects. Continue with exiting?" -#~ msgstr "Є %d незбережених об'єктів Gfig. Вийти?" - -#, fuzzy -#~ msgid "Enter Gfig object name" -#~ msgstr "Введіть назву об'єкту Gfig" - -#, fuzzy -#~ msgid "Gfig object name:" -#~ msgstr "Назва об'єкту Gfig:" - -#, fuzzy -#~ msgid "Rescan for Gfig objects" -#~ msgstr "Перечитати об'єкти Gfig" - -#, fuzzy -#~ msgid "Add Gfig path" -#~ msgstr "Додати контур Gfig" - -#~ msgid "Error in copy layer for onlayers" -#~ msgstr "Помилка копіювання шару" - -#~ msgid "About Gfig" -#~ msgstr "Про доповнення GFig" - -#~ msgid "Gfig - GIMP plug-in" -#~ msgstr "Gfig - доповнення до GIMP" - -#~ msgid "Release 2.0" -#~ msgstr "Випуск 2.0" - -#~ msgid "New Gfig Object" -#~ msgstr "Створення об'єкту Gfig" - -#, fuzzy -#~ msgid "Delete Gfig drawing" -#~ msgstr "Видалення рисунку Gfig" - -#~ msgid "%s copy" -#~ msgstr "Копія %s" - -#~ msgid "Collection Details" -#~ msgstr "Подробиці набору" - -#, fuzzy -#~ msgid "Draw name:" -#~ msgstr "Назва малюнка:" - -#~ msgid "(none)" -#~ msgstr "(Немає)" - -#~ msgid "" -#~ msgstr "<Немає>" - -#~ msgid "Curl Opacity" -#~ msgstr "Непрозорість загину" - -#, fuzzy -#~ msgid "" -#~ "Use current gradient\n" -#~ "instead of FG/BG-color" -#~ msgstr "" -#~ "Використовувати діючий градієнт\n" -#~ "замість кольору тла/переднього плану" - -#~ msgid "Random Seed" -#~ msgstr "Випадкова база" - -#, fuzzy -#~ msgid "_Blur..." -#~ msgstr "Розмивання..." - -#~ msgid "R_andomization %:" -#~ msgstr "_Випадковість %:" - -#~ msgid "You must specify either horizontal or vertical (or both)" -#~ msgstr "Необхідно вказати горизонтальне, вертикальне, або обидва розмивання" - -#~ msgid "Blur Horizontally" -#~ msgstr "Горизонтальне розмивання" - -#~ msgid "Blur Vertically" -#~ msgstr "Вертикальне розмивання" - -#~ msgid "Blur Radius:" -#~ msgstr "Радіус розмивання:" - -#, fuzzy -#~ msgid "Gaussian Blur (_RLE)..." -#~ msgstr "/Фільтри/Розмивання/Гаусеве розмивання (RLE)..." - -#~ msgid "RLE Gaussian Blur" -#~ msgstr "Гаусеве розмивання (RLE)" - -#~ msgid "Image Preview" -#~ msgstr "Перегляд зображення" - -#~ msgid "Force baseline JPEG (Readable by all decoders)" -#~ msgstr "Робити типовий JPEG (зчитується всіма декодерами)" - -#~ msgid "DCT method (Speed/quality tradeoff):" -#~ msgstr "Метод DCT (компроміс швидкість/якість):" - -#~ msgid "Tile _Height:" -#~ msgstr "_Висота плитки:" - -#~ msgid "C_ell Size:" -#~ msgstr "Розмір _комірки:" - -#, fuzzy -#~ msgid "_Noisify..." -#~ msgstr "Додавання шуму" - -#~ msgid "Noisify" -#~ msgstr "Додавання шуму" - -#~ msgid "Random _Seed:" -#~ msgstr "_База випадковості:" - -#~ msgid "Save Color _Values From Transparent Pixels" -#~ msgstr "Зберегти з_начення кольору для прозорих ділянок" - -#~ msgid "_X Offset:" -#~ msgstr "Зсув по _X:" - -#~ msgid "_Y Offset:" -#~ msgstr "Зсув по _Y:" - -#~ msgid "_Random Seed:" -#~ msgstr "_База випадковості:" - -#~ msgid "R_andom Seed:" -#~ msgstr "База _випадковості:" - -#~ msgid "Snap to Grid" -#~ msgstr "Вирівняти за сіткою" - -#~ msgid "Select Contiguous Region" -#~ msgstr "Вибрати замкнену ділянку" - -#~ msgid "RLE Compression" -#~ msgstr "Стиснення RLE" - -#~ msgid "/Filters/Render/_Fractal Explorer..." -#~ msgstr "/Фільтри/Візуалізація/Дослідник _фракталів..." - -#~ msgid "/Filters/Light Effects/_Lighting Effects..." -#~ msgstr "/Фільтри/Світлові ефекти/_Світлові ефекти..." - -#~ msgid "Preview Options" -#~ msgstr "Параметри попер.перегляду" - -#~ msgid "/Filters/Map/Map _Object..." -#~ msgstr "/Фільтри/Відображення/Відобразити _об'єкт..." - -#~ msgid "Save Options" -#~ msgstr "Параметри збереження" - -#~ msgid "/Filters/Colors/Map/Alien Map _2..." -#~ msgstr "/Фільтри/Кольори/Відображення/Чуже відображення _2..." - -#~ msgid "/Filters/Render/Pattern/CML _Explorer..." -#~ msgstr "/Фільтри/Візуалізація/Візерунок/_Дослідник CML..." - -#~ msgid "NULL" -#~ msgstr "Нуль" - -#~ msgid "The Graph" -#~ msgstr "Графік" - -#~ msgid "CML File Operation Warning" -#~ msgstr "Попередження файлових операцій CML" - -#~ msgid "/Layer/Align _Visible Layers..." -#~ msgstr "/Шар/Вирівняти _видимі шари..." - -#~ msgid "Parameter Settings" -#~ msgstr "Зміна параметрів" - -#~ msgid "/Filters/Animation/_Playback..." -#~ msgstr "/Фільтри/Анімація/_Відтворення..." - -#~ msgid "/Filters/Animation/Optimize (for _GIF)" -#~ msgstr "/Фільтри/Анімація/Оптимізація (для GIF)" - -#~ msgid "/Filters/Animation/_Remove Backdrop" -#~ msgstr "/Фільтри/Анімація/_Видалити тло" - -#~ msgid "/Filters/Animation/_Find Backdrop" -#~ msgstr "/Фільтри/Анімація/З_найти тло" - -#~ msgid "/Filters/Glass Effects/Apply _Lens..." -#~ msgstr "/Фільтри/Ефекти скла/_Лінза..." - -#~ msgid "/Layer/Colors/Auto/Stretch _HSV" -#~ msgstr "/Зображення/Кольори/Авто/Розтягування _HSV" - -#~ msgid "/Filters/Distorts/_Blinds..." -#~ msgstr "/Фільтри/Викривлення/_Жалюзі..." - -#~ msgid "/Filters/Colors/_Border Average..." -#~ msgstr "/Фільтри/Кольори/Усереднений колір рамки..." - -#~ msgid "1 (nonsense?)" -#~ msgstr "1 (безглуздо?)" - -#~ msgid "256 (nonsense?)" -#~ msgstr "256 (безглуздо?)" - -#~ msgid "/Filters/Map/_Bump Map..." -#~ msgstr "/Фільтри/Відображення/Рельєф..." - -#~ msgid "_Linear Map" -#~ msgstr "_Лінійна мапа" - -#~ msgid "_Spherical Map" -#~ msgstr "_Сферична мапа" - -#~ msgid "S_inuosidal Map" -#~ msgstr "С_инусоїдна мапа" - -#~ msgid "/Layer/Colors/Auto/_Stretch Contrast" -#~ msgstr "/Зображення/Кольори/Авто/_Збільшення контрасту" - -#~ msgid "/Filters/Colors/Colorcube A_nalysis..." -#~ msgstr "/Фільтри/Кольори/Кольоровий аналіз..." - -#~ msgid "Results" -#~ msgstr "Результат" - -#~ msgid "/Filters/Colors/Channel Mi_xer.." -#~ msgstr "/Фільтри/Кольори/_Мікшер каналів..." - -#~ msgid "/Filters/Render/Pattern/_Checkerboard..." -#~ msgstr "/Фільтри/Візуалізація/Візерунок/_Шахівниця..." - -#~ msgid "/Layer/Colors/Auto/_Color Enhance" -#~ msgstr "/Зображення/Кольори/Авто/_Підсилення кольору" - -#~ msgid "/Filters/Colors/_Colorify..." -#~ msgstr "/Фільтри/Кольори/_Фарбування..." - -#~ msgid "/Filters/Colors/Color to _Alpha..." -#~ msgstr "/Фільтри/Кольори/Колір у альфа-канал..." - -#~ msgid "/Filters/Colors/C_ompose..." -#~ msgstr "/Фільтри/Кольори/_Компонувати..." - -#~ msgid "/Filters/Generic/_Convolution Matrix..." -#~ msgstr "/Фільтри/Загальні/Матриця згортання..." - -#~ msgid "/Filters/Distorts/_Curve Bend..." -#~ msgstr "/Фільтри/Викривлення/_Криве згинання..." - -#~ msgid "/Filters/Colors/_Decompose..." -#~ msgstr "/Фільтри/Кольори/_Розкласти..." - -#~ msgid "/Filters/Enhance/_Deinterlace..." -#~ msgstr "/Фільтри/Покращення/_Прибрати черезрядковість..." - -#~ msgid "/Filters/Combine/_Depth Merge..." -#~ msgstr "/Фільтри/Об'єднання/Об'єднання _глибин..." - -#~ msgid "/Filters/Enhance/Des_peckle..." -#~ msgstr "/Фільтри/Покращення/Прибрати _плями..." - -#~ msgid "/Filters/Enhance/Des_tripe..." -#~ msgstr "/Фільтри/Покращення/Прибрати _штрихи..." - -#~ msgid "/Filters/Render/Pattern/_Diffraction Patterns..." -#~ msgstr "/Фільтри/Візуалізація/Візерунок/_Дифракційні візерунки..." - -#~ msgid "/Filters/Map/_Displace..." -#~ msgstr "/Фільтри/Відображення/_Зміщення..." - -#~ msgid "Displace Options" -#~ msgstr "Параметри зміщення" - -#~ msgid "/Filters/Edge-Detect/_Edge..." -#~ msgstr "/Фільтри/Виділення меж/_Межі..." - -#~ msgid "/Filters/Distorts/_Emboss..." -#~ msgstr "/Фільтри/Викривлення/_Чеканка..." - -#~ msgid "/Filters/Distorts/En_grave..." -#~ msgstr "/Фільтри/Викривлення/_Гравюра..." - -#~ msgid "/Filters/Colors/Map/_Color Exchange..." -#~ msgstr "/Фільтри/Кольори/Відображення/Заміна _кольору..." - -#~ msgid "_Selection" -#~ msgstr "Виді_лення" - -#~ msgid "/Filters/Light Effects/_FlareFX..." -#~ msgstr "/Фільтри/Світлові ефекти/Відблиск..." - -#~ msgid "/Filters/Map/_Fractal Trace..." -#~ msgstr "/Фільтри/Відображення/_Фрактальний слід..." - -#~ msgid "/Filters/Toys/Gee-_Slime" -#~ msgstr "/Фільтри/Іграшки/_Ковзання..." - -#~ msgid "GEE-ZOOM: The Plug-In Formerly Known As \"The GIMP E'er Egg\"" -#~ msgstr "Писанка-масштаб: Додаток, раніше відомий як \"Писанка GIMP!\"" - -#~ msgid "Milliseconds" -#~ msgstr "мілісекунд" - -#~ msgid "/Filters/Render/Pattern/_Qbist..." -#~ msgstr "/Фільтри/Візуалізація/Візерунок/Q-біст..." - -#~ msgid "/Filters/Colors/Map/_Gradient Map" -#~ msgstr "/Фільтри/Кольори/Відображення/Градієнтна мапа" - -#~ msgid "/Filters/Render/Pattern/_Grid..." -#~ msgstr "/Фільтри/Візуалізація/Візерунок/Сітка..." - -#~ msgid "/Filters/Map/_Illusion..." -#~ msgstr "/Фільтри/Відображення/_Ілюзія..." - -#~ msgid "/Filters/Distorts/_IWarp..." -#~ msgstr "/Фільтри/Викривлення/_Інтерактивне викривлення..." - -#~ msgid "/Filters/Render/Pattern/_Jigsaw..." -#~ msgstr "/Фільтри/Візуалізація/Візерунок/_Головоломка..." - -#~ msgid "Preview (in image window, will modify image's undo history!)" -#~ msgstr "" -#~ "Перегляд (у вікні зображення, призводить до змін історії скасувань!)" - -#~ msgid "Image comments" -#~ msgstr "Коментарі до зображення" - -#~ msgid "/Filters/Map/_Van Gogh (LIC)..." -#~ msgstr "/Фільтри/Відображення/_Ван Ґоґ (LIC)..." - -#~ msgid "/Filters/Colors/Map/Adjust _FG-BG" -#~ msgstr "" -#~ "/Фільтри/Кольори/Відображення/Підбір кольору _переднього плану" - -#~ msgid "/Filters/Colors/Map/Color Range _Mapping..." -#~ msgstr "" -#~ "/Фільтри/Кольори/Відображення/Відображення _діапазону кольорів..." - -#~ msgid "/Filters/Blur/_Motion Blur..." -#~ msgstr "/Фільтри/Розмивання/Розмивання _рухом..." - -#~ msgid "/Filters/Distorts/_Mosaic..." -#~ msgstr "/Фільтри/Викривлення/_Мозаїка..." - -#~ msgid "/Filters/Distorts/Newsprin_t..." -#~ msgstr "/Фільтри/Викривлення/_Газетний папір..." - -#~ msgid "/Filters/Enhance/_NL Filter..." -#~ msgstr "/Фільтри/Покращення/_Нелінійний фільтр..." - -#~ msgid "/Filters/Noise/_Noisify..." -#~ msgstr "/Фільтри/Шум/Додавання шуму..." - -#~ msgid "/Filters/Light Effects/Su_perNova..." -#~ msgstr "/Фільтри/Світлові ефекти/Н_аднова..." - -#~ msgid "/Filters/Artistic/Oili_fy..." -#~ msgstr "/Фільтри/Художні/_Олійна фарба..." - -#~ msgid "/Filters/Map/_Paper Tile..." -#~ msgstr "/Фільтри/Відображення/_Розрізи паперу..." - -#~ msgid "/Filters/Blur/_Pixelize..." -#~ msgstr "/Фільтри/Розмивання/_Пікселізація..." - -#~ msgid "/Xtns/_Plugin Details" -#~ msgstr "/Розш./_Подробиці доповнення..." - -#~ msgid "/Filters/Distorts/P_olar Coords..." -#~ msgstr "/Фільтри/Викривлення/_Полярні координати..." - -#~ msgid "write error occured" -#~ msgstr "помилка при записуванні" - -#~ msgid "_X-Offset:" -#~ msgstr "Зсув по _X:" - -#~ msgid "_Y-Offset:" -#~ msgstr "Зсув по _Y:" - -#~ msgid "/Filters/Noise/_Hurl..." -#~ msgstr "/Фільтри/Шум/_Кидок..." - -#~ msgid "/Filters/Noise/_Pick..." -#~ msgstr "/Фільтри/Шум/_Вибір..." - -#~ msgid "/Filters/Distorts/_Ripple..." -#~ msgstr "/Фільтри/Викривлення/_Брижі..." - -#~ msgid "/Filters/Colors/Map/_Sample Colorize..." -#~ msgstr "/Фільтри/Кольори/Відображення/_Фарбування за зразком..." - -#~ msgid "/Filters/Noise/S_catter HSV..." -#~ msgstr "/Фільтри/Шум/_Розсіювання HSV..." - -#~ msgid "Preview (1:4) - Right Click to Jump" -#~ msgstr "Перегляд (1:4) - для переходу клацніть правою кнопкою" - -#~ msgid "/File/Acquire/_Screen Shot..." -#~ msgstr "/Файл/Захопити/_Знімок екрану..." - -#~ msgid "/Filters/Blur/_Selective Gaussian Blur..." -#~ msgstr "/Фільтри/Розмивання/_Вибіркове Гаусеве розмивання..." - -#~ msgid "/Filters/Colors/_Semi-Flatten" -#~ msgstr "/Фільтри/Кольори/_Напівзведення" - -#~ msgid "/Filters/Distorts/_Shift..." -#~ msgstr "/Фільтри/Викривлення/_Зсув..." - -#~ msgid "/Filters/Render/Pattern/_Sinus..." -#~ msgstr "/Фільтри/Візуалізація/Візерунок/_Синус..." - -#~ msgid "/Filters/Colors/Smoo_th Palette..." -#~ msgstr "/Фільтри/Кольори/_Гладка палітра..." - -#~ msgid "/Filters/Render/Clouds/_Solid Noise..." -#~ msgstr "/Фільтри/Візуалізація/Хмари/_Суцільний шум..." - -#~ msgid "/Filters/Edge-Detect/_Sobel..." -#~ msgstr "/Фільтри/Виділення меж/_Собель..." - -#~ msgid "/Filters/Light Effects/_Sparkle..." -#~ msgstr "/Фільтри/Світлові ефекти/_Іскра..." - -#~ msgid "/Filters/Render/Sphere _Designer..." -#~ msgstr "/Фільтри/Візуалізація/_Створення сфери..." - -#~ msgid "/Filters/Noise/Sp_read..." -#~ msgstr "/Фільтр/Шум/_Розсіювання..." - -#~ msgid "/Filters/Artistic/_Apply Canvas..." -#~ msgstr "/Фільтри/Художні/Заст_осувати полотно..." - -#~ msgid "Open SVG" -#~ msgstr "Відкривання SVG" - -#~ msgid "Ratio _X:" -#~ msgstr "Пропорція _X:" - -#~ msgid "Targa Options" -#~ msgstr "Параметри Targa" - -#~ msgid "/Filters/Map/_Tile..." -#~ msgstr "/Фільтри/Відображення/_Черепиця..." - -#~ msgid "/Filters/Map/_Small Tiles..." -#~ msgstr "/Фільтри/Відображення/_Маленька черепиця..." - -#~ msgid "Flipping" -#~ msgstr "Віддзеркалення" - -#~ msgid "Applied to Tile" -#~ msgstr "Застосувати до" - -#~ msgid "Segment Setting" -#~ msgstr "Кількість сегментів" - -#~ msgid "/Filters/Map/_Make Seamless" -#~ msgstr "/Фільтри/Відображення/Без швів" - -#~ msgid "/Filters/Enhance/_Unsharp Mask..." -#~ msgstr "/Фільтри/Покращення/_Нечітка маска..." - -#~ msgid "/Filters/Distorts/Vi_deo..." -#~ msgstr "/Фільтри/Викривлення/_Відео..." - -#~ msgid "/Filters/Colors/_Value Invert" -#~ msgstr "/Фільтри/Кольори/_Інверсія значення" - -#~ msgid "/Filters/Distorts/_Value Propagate..." -#~ msgstr "/Фільтри/Викривлення/_Розповсюдити значення..." - -#~ msgid "/Filters/Generic/_Dilate" -#~ msgstr "/Фільтри/Загальні/_Розповсюдження..." - -#~ msgid "Secondary Options" -#~ msgstr "Додаткові параметри" - -#~ msgid "Use Mag Map" -#~ msgstr "Використовувати магічну мапу" - -#~ msgid "Other Options" -#~ msgstr "Інші параметри" - -#~ msgid "/Filters/Distorts/_Waves..." -#~ msgstr "/Фільтри/Викривлення/_Хвилі..." - -#~ msgid "/Filters/Distorts/W_hirl and Pinch..." -#~ msgstr "/Фільтри/Викривлення/Вихор та щипок..." - -#~ msgid "/File/Acquire/From Clipboard" -#~ msgstr "/Файл/Захопити/З буферу обміну" - -#~ msgid "/Xtns/_DB Browser" -#~ msgstr "/Розш./Перегляд _бази даних" - -#~ msgid "/Filters/Colors/_Filter Pack..." -#~ msgstr "/Зображення/Кольори/Набір _фільтрів..." - -#~ msgid "Display" -#~ msgstr "Дисплей" - -#~ msgid "Lighter And Darker" -#~ msgstr "Світліше та темніше" - -#~ msgid "Miscellaneous Options" -#~ msgstr "Різні параметри" - -#~ msgid "With BG of:" -#~ msgstr "З тлом з:" - -#~ msgid "Selection Type:" -#~ msgstr "Тип виділення:" - -#~ msgid "none" -#~ msgstr "ніяке" - -#~ msgid "Not found \"%s\": used \"%s\" instead" -#~ msgstr "\"%s\" не знайдено: використовується \"%s\"" - -#~ msgid "Brush Preview:" -#~ msgstr "Перегляд пензля:" - -#~ msgid "/Filters/Artistic/_GIMPressionist..." -#~ msgstr "/Фільтри/Художні/_GIMPімпресіоніст..." - -#~ msgid "Paper Preview:" -#~ msgstr "Перегляд паперу:" - -#~ msgid "(Desc)" -#~ msgstr "(Опис)" - -#~ 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" -#~ "Якщо у вас є якісь цікаві набори настройок,\n" -#~ "(або пензлі або полотна для цього доповнення)\n" -#~ "надішліть їх мені \n" -#~ "для включення у наступний випуск!\n" - -#~ msgid "/Filters/Render/Nature/Ifs_Compose..." -#~ msgstr "/Фільтри/Візуалізація/Природа/Ifs_Compose..." - -#~ 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 "" -#~ "Створює лабіринт використовуючи алгоритм глибокого пошуку або алгоритм " -#~ "Prim. Може створювати лабіринти у вигляді черепиці. Див. розділ довідки %" -#~ "s." - -#~ msgid "Draws a maze." -#~ msgstr "Малювання лабіринту." - -#~ msgid "Selection is %dx%d" -#~ msgstr "Виділена ділянка - %dx%d" - -#~ msgid "/Filters/Distorts/_Pagecurl..." -#~ msgstr "/Фільтри/Викривлення/_Загнута сторінка..." - -#~ msgid "/File/_Print..." -#~ msgstr "/Файл/Д_рук..." - -#~ msgid "/Filters/Colors/Map/Colormap _Rotation..." -#~ msgstr "/Зображення/Кольори/_Обертання мапи кольорів..." - -#~ msgid "What is Gray?" -#~ msgstr "Що тут сіре?" - -#~ msgid "Main" -#~ msgstr "Основне" - -#~ msgid "Misc" -#~ msgstr "Різне" - -#~ msgid "/ICO" -#~ msgstr "/ICO" - -#~ msgid "/ICO" -#~ msgstr "/ICO" - -#~ msgid "Save: No filename given" -#~ msgstr "Збереження: не дано назви фалу" - -#~ msgid "Cannot save to a folder." -#~ msgstr "Не можна зберігати в каталог." - -#~ msgid "/Filters/Colors/Map/_Alien Map..." -#~ msgstr "/Фільтри/Кольори/Відображення/_Чуже відображення..." - -#~ msgid "AlienMap: Transforming..." -#~ msgstr "Чуже відображення: Перетворення ..." - -#~ msgid "AlienMap" -#~ msgstr "Чуже відображення" - -#~ msgid "Change intensity of the red channel" -#~ msgstr "Зміна інтенсивності червоного каналу" - -#~ msgid "Change intensity of the green channel" -#~ msgstr "Зміна інтенсивності зеленого каналу" - -#~ msgid "Change intensity of the blue channel" -#~ msgstr "Зміна інтенсивності синього каналу" - -#~ msgid "Cos_ine" -#~ msgstr "_Косинус" - -#~ msgid "Use sine-function for red component." -#~ msgstr "Використовувати синусоїдну функцію для червоної складової." - -#~ msgid "Use cosine-function for red component." -#~ msgstr "Використовувати косинусоїдну функцію для червоної складової." - -#~ msgid "" -#~ "Red channel: use linear mapping instead of any trigonometrical function" -#~ msgstr "" -#~ "Канал червоного: використовується лінійне відображення замість будь-якої " -#~ "тригонометричної функції" - -#~ msgid "Use sine-function for green component." -#~ msgstr "Використовувати синусоїдну функцію для зеленої складової." - -#~ msgid "Use cosine-function for green component." -#~ msgstr "Використовувати косинусоїдну функцію для червоної складової." - -#~ msgid "" -#~ "Green channel: use linear mapping instead of any trigonometrical function" -#~ msgstr "" -#~ "Канал зеленого: використовується лінійне відображення замість будь-якої " -#~ "тригонометричної функції" - -#~ msgid "Use sine-function for blue component." -#~ msgstr "Використовувати синусоїдну функцію для синьої складової." - -#~ msgid "Use cosine-function for blue component." -#~ msgstr "Використовувати косинусоїдну функцію для синьої складової." - -#~ msgid "" -#~ "Blue channel: use linear mapping instead of any trigonometrical function" -#~ msgstr "" -#~ "Канал синього: використовується лінійне відображення замість будь-якої " -#~ "тригонометричної функції" - -#~ msgid "About AlienMap" -#~ msgstr "Про \"Чуже відображення\"" - -#~ msgid "Change frequency of the red/hue channel" -#~ msgstr "Змінити частоту каналу червоний/відтінок" - -#~ msgid "Change angle of the red/hue channel" -#~ msgstr "Змінити кут каналу червоний/відтінок" - -#~ msgid "Change frequency of the green/saturation channel" -#~ msgstr "Змінити частоту каналу зелений/насиченість" - -#~ msgid "Change angle of the green/saturation channel" -#~ msgstr "Змінити кут каналу зелений/насиченість" - -#~ msgid "Change frequency of the blue/luminance channel" -#~ msgstr "Змінити частоту каналу синій/яскравість" - -#~ msgid "Change angle of the blue/luminance channel" -#~ msgstr "Змінити кут каналу синій/яскравість" - -#~ msgid "Use function for red/hue component" -#~ msgstr "Використовувати функцію для компонента червоний/відтінок" - -#~ msgid "Use function for green/saturation component" -#~ msgstr "Використовувати функцію для компонента зелений/насиченість" - -#~ msgid "Use function for blue/luminance component" -#~ msgstr "Використовувати функцію для компонента синій/яскравість" - -#~ msgid "About AlienMap2" -#~ msgstr "Про \"Чуже відображення 2\"" - -#~ msgid "Save as GIcon" -#~ msgstr "Зберегти як GIcon" - -#~ msgid "Icon Name:" -#~ msgstr "Назва значка:" diff -uraN gimp-2.2.4/po-plug-ins/vi.gmo gimp-2.2.5/po-plug-ins/vi.gmo --- gimp-2.2.4/po-plug-ins/vi.gmo 2005-02-22 23:12:46.000000000 +0100 +++ gimp-2.2.5/po-plug-ins/vi.gmo 2005-04-09 23:09:33.000000000 +0200 @@ -116,7 +116,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: 2005-02-22 23:04+0100 +POT-Creation-Date: 2005-04-09 21:56+0200 PO-Revision-Date: 2003-02-01 13:08+0700 Last-Translator: Trinh Minh Thanh Language-Team: Gnome-Vi diff -uraN gimp-2.2.4/po-plug-ins/vi.po gimp-2.2.5/po-plug-ins/vi.po --- gimp-2.2.4/po-plug-ins/vi.po 2005-02-22 23:12:40.000000000 +0100 +++ gimp-2.2.5/po-plug-ins/vi.po 2005-04-09 23:09:26.000000000 +0200 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: Gimp-plug-ins VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-02-22 23:04+0100\n" +"POT-Creation-Date: 2005-04-09 21:56+0200\n" "PO-Revision-Date: 2003-02-01 13:08+0700\n" "Last-Translator: Trinh Minh Thanh \n" "Language-Team: Gnome-Vi \n" @@ -374,7 +374,7 @@ #: ../plug-ins/common/pat.c:433 ../plug-ins/common/pcx.c:585 #: ../plug-ins/common/pix.c:515 ../plug-ins/common/png.c:1178 #: ../plug-ins/common/pnm.c:809 ../plug-ins/common/postscript.c:1123 -#: ../plug-ins/common/psd_save.c:1588 ../plug-ins/common/raw.c:517 +#: ../plug-ins/common/psd_save.c:1336 ../plug-ins/common/raw.c:517 #: ../plug-ins/common/raw.c:544 ../plug-ins/common/spheredesigner.c:2088 #: ../plug-ins/common/sunras.c:513 ../plug-ins/common/tga.c:1030 #: ../plug-ins/common/tiff.c:1810 ../plug-ins/common/xbm.c:996 @@ -1257,35 +1257,36 @@ #: ../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 +#: ../plug-ins/bmp/bmpread.c:207 ../plug-ins/bmp/bmpread.c:307 +#: ../plug-ins/bmp/bmpread.c:348 #, fuzzy, c-format msgid "'%s' is not a valid BMP file" msgstr "%s: %s không phải tập tin BMP hợp lệ" #: ../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 +#: ../plug-ins/bmp/bmpread.c:300 ../plug-ins/bmp/bmpread.c:313 +#: ../plug-ins/bmp/bmpread.c:319 #, fuzzy, c-format msgid "Error reading BMP file header from '%s'" msgstr "%s: lỗi đọc header của tập tin BMP" -#: ../plug-ins/bmp/bmpread.c:442 ../plug-ins/bmp/bmpread.c:477 +#: ../plug-ins/bmp/bmpread.c:450 ../plug-ins/bmp/bmpread.c:485 msgid "Unrecognized or invalid BMP compression format." msgstr "" #. #. * Create the "background" layer to hold the image... #. -#: ../plug-ins/bmp/bmpread.c:482 ../plug-ins/common/CEL.c:357 +#: ../plug-ins/bmp/bmpread.c:490 ../plug-ins/common/CEL.c:357 #: ../plug-ins/common/CEL.c:360 ../plug-ins/common/blinds.c:273 #: ../plug-ins/common/compose.c:625 ../plug-ins/common/decompose.c:595 #: ../plug-ins/common/dicom.c:442 ../plug-ins/common/film.c:946 -#: ../plug-ins/common/gifload.c:865 ../plug-ins/common/jpeg.c:1113 +#: ../plug-ins/common/gifload.c:864 ../plug-ins/common/jpeg.c:1113 #: ../plug-ins/common/jpeg.c:2474 ../plug-ins/common/pcx.c:334 #: ../plug-ins/common/pcx.c:340 ../plug-ins/common/pix.c:374 #: ../plug-ins/common/png.c:808 ../plug-ins/common/pnm.c:517 -#: ../plug-ins/common/psd.c:2173 ../plug-ins/common/raw.c:677 +#: ../plug-ins/common/psd.c:2174 ../plug-ins/common/raw.c:677 #: ../plug-ins/common/smooth_palette.c:257 ../plug-ins/common/sunras.c:925 #: ../plug-ins/common/tga.c:929 ../plug-ins/common/tiff.c:833 #: ../plug-ins/common/tile.c:266 ../plug-ins/common/winclipboard.c:579 @@ -1317,12 +1318,12 @@ #: ../plug-ins/common/jpeg.c:1453 ../plug-ins/common/pat.c:438 #: ../plug-ins/common/pcx.c:545 ../plug-ins/common/pix.c:521 #: ../plug-ins/common/png.c:1185 ../plug-ins/common/pnm.c:814 -#: ../plug-ins/common/postscript.c:1128 ../plug-ins/common/psd_save.c:1593 +#: ../plug-ins/common/postscript.c:1128 ../plug-ins/common/psd_save.c:1341 #: ../plug-ins/common/sunras.c:518 ../plug-ins/common/tga.c:1035 #: ../plug-ins/common/tiff.c:1815 ../plug-ins/common/xbm.c:1001 #: ../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:957 +#: ../plug-ins/sgi/sgi.c:545 ../plug-ins/winicon/icosave.c:977 #: ../plug-ins/xjt/xjt.c:1682 #, fuzzy, c-format msgid "Saving '%s'..." @@ -1680,7 +1681,7 @@ msgstr "Sắc màu" #: ../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 +#: ../plug-ins/common/decompose.c:144 ../plug-ins/rcm/rcm_dialog.c:548 msgid "Saturation" msgstr "Độ bão hòa" @@ -2542,24 +2543,24 @@ msgid "Color to _Alpha..." msgstr "Đang cải thiện màu sắc..." -#: ../plug-ins/common/colortoalpha.c:181 +#: ../plug-ins/common/colortoalpha.c:187 msgid "Removing color..." msgstr "Đang bỏ màu..." -#: ../plug-ins/common/colortoalpha.c:377 +#: ../plug-ins/common/colortoalpha.c:380 msgid "Color to Alpha" msgstr "" -#: ../plug-ins/common/colortoalpha.c:402 ../plug-ins/common/mapcolor.c:424 +#: ../plug-ins/common/colortoalpha.c:405 ../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:406 +#: ../plug-ins/common/colortoalpha.c:409 msgid "Color to Alpha Color Picker" msgstr "" -#: ../plug-ins/common/colortoalpha.c:420 +#: ../plug-ins/common/colortoalpha.c:423 #, fuzzy msgid "to alpha" msgstr "alpha" @@ -2583,13 +2584,13 @@ msgstr "HSV" #. Gray: Circle: Spinbutton 1 -#: ../plug-ins/common/compose.c:148 ../plug-ins/rcm/rcm_dialog.c:452 +#: ../plug-ins/common/compose.c:148 ../plug-ins/rcm/rcm_dialog.c:459 msgid "Hue:" msgstr "Sắc màu:" #. Gray: Circle: Spinbutton 2 #: ../plug-ins/common/compose.c:149 ../plug-ins/print/gimp_color_window.c:364 -#: ../plug-ins/rcm/rcm_dialog.c:479 +#: ../plug-ins/rcm/rcm_dialog.c:486 msgid "Saturation:" msgstr "Độ bão hòa:" @@ -3232,15 +3233,15 @@ msgid "Deinterlace..." msgstr "" -#: ../plug-ins/common/deinterlace.c:315 +#: ../plug-ins/common/deinterlace.c:324 msgid "Deinterlace" msgstr "" -#: ../plug-ins/common/deinterlace.c:340 +#: ../plug-ins/common/deinterlace.c:349 msgid "Keep o_dd fields" msgstr "" -#: ../plug-ins/common/deinterlace.c:341 +#: ../plug-ins/common/deinterlace.c:350 msgid "Keep _even fields" msgstr "" @@ -3668,7 +3669,7 @@ #. Create selection #: ../plug-ins/common/film.c:1166 ../plug-ins/imagemap/imap_selection.c:400 -#: ../plug-ins/rcm/rcm_dialog.c:158 +#: ../plug-ins/rcm/rcm_dialog.c:165 msgid "Selection" msgstr "Phần chọn" @@ -4226,23 +4227,23 @@ msgid "Non-square pixels. Image might look squashed." msgstr "" -#: ../plug-ins/common/gifload.c:867 +#: ../plug-ins/common/gifload.c:866 #, fuzzy, c-format msgid "Background (%d%s)" msgstr "Nền (%dms)" -#: ../plug-ins/common/gifload.c:915 ../plug-ins/common/iwarp.c:783 +#: ../plug-ins/common/gifload.c:914 ../plug-ins/common/iwarp.c:783 #: ../plug-ins/common/iwarp.c:817 #, c-format msgid "Frame %d" msgstr "Khung %d" -#: ../plug-ins/common/gifload.c:917 +#: ../plug-ins/common/gifload.c:916 #, fuzzy, c-format msgid "Frame %d (%d%s)" msgstr "Khung %d (%dms)" -#: ../plug-ins/common/gifload.c:947 +#: ../plug-ins/common/gifload.c:946 #, c-format msgid "" "GIF: Undocumented GIF composite type %d is not handled. Animation might not " @@ -6124,7 +6125,7 @@ msgid "B/W" msgstr "B/W" -#: ../plug-ins/common/postscript.c:3003 ../plug-ins/rcm/rcm_dialog.c:404 +#: ../plug-ins/common/postscript.c:3003 ../plug-ins/rcm/rcm_dialog.c:411 msgid "Gray" msgstr "Xám" @@ -6218,18 +6219,18 @@ msgid "Invalid UTF-8 string in PSD file" msgstr "" -#: ../plug-ins/common/psd_save.c:181 +#: ../plug-ins/common/psd_save.c:192 msgid "Photoshop image" msgstr "" -#: ../plug-ins/common/psd_save.c:1564 +#: ../plug-ins/common/psd_save.c:1312 #, c-format msgid "" "Unable to save '%s'. The psd file format does not support images that are " "more than 30000 pixels wide or tall." msgstr "" -#: ../plug-ins/common/psd_save.c:1576 +#: ../plug-ins/common/psd_save.c:1324 #, c-format msgid "" "Unable to save '%s'. The psd file format does not support images with " @@ -11866,89 +11867,89 @@ msgid "Rotating the colormap..." msgstr "" -#: ../plug-ins/rcm/rcm_dialog.c:114 +#: ../plug-ins/rcm/rcm_dialog.c:119 msgid "Original" msgstr "Nguyên gốc" -#: ../plug-ins/rcm/rcm_dialog.c:127 +#: ../plug-ins/rcm/rcm_dialog.c:133 msgid "Rotated" msgstr "Đã xoay" -#: ../plug-ins/rcm/rcm_dialog.c:140 +#: ../plug-ins/rcm/rcm_dialog.c:147 msgid "Continuous update" msgstr "Cập nhật liên tục" -#: ../plug-ins/rcm/rcm_dialog.c:153 +#: ../plug-ins/rcm/rcm_dialog.c:160 msgid "Area:" msgstr "Vùng:" -#: ../plug-ins/rcm/rcm_dialog.c:157 +#: ../plug-ins/rcm/rcm_dialog.c:164 msgid "Entire Layer" msgstr "Toàn bộ layer" -#: ../plug-ins/rcm/rcm_dialog.c:159 +#: ../plug-ins/rcm/rcm_dialog.c:166 msgid "Context" msgstr "Ngữ cảnh" #. spinbutton 1 -#: ../plug-ins/rcm/rcm_dialog.c:284 ../plug-ins/rcm/rcm_dialog.c:362 +#: ../plug-ins/rcm/rcm_dialog.c:291 ../plug-ins/rcm/rcm_dialog.c:369 msgid "From" msgstr "Từ" #. spinbutton 2 -#: ../plug-ins/rcm/rcm_dialog.c:310 ../plug-ins/rcm/rcm_dialog.c:363 +#: ../plug-ins/rcm/rcm_dialog.c:317 ../plug-ins/rcm/rcm_dialog.c:370 msgid "To" msgstr "Đến" #. * Gray: Operation-Mode * -#: ../plug-ins/rcm/rcm_dialog.c:499 +#: ../plug-ins/rcm/rcm_dialog.c:506 #, fuzzy msgid "Gray Mode" msgstr "Chế độ màu" #. Gray: Operation-Mode: two radio buttons -#: ../plug-ins/rcm/rcm_dialog.c:508 +#: ../plug-ins/rcm/rcm_dialog.c:515 msgid "Treat as this" msgstr "Đối xử như cái này" -#: ../plug-ins/rcm/rcm_dialog.c:520 +#: ../plug-ins/rcm/rcm_dialog.c:527 msgid "Change to this" msgstr "Thay đổi cho cái này" #. * Gray: What is gray? * -#: ../plug-ins/rcm/rcm_dialog.c:533 +#: ../plug-ins/rcm/rcm_dialog.c:540 #, fuzzy msgid "Gray Threshold" msgstr "Ngưỡng màu xanh lá cây:" #. * Misc: Used unit selection * -#: ../plug-ins/rcm/rcm_dialog.c:572 ../plug-ins/rcm/rcm_dialog.c:676 +#: ../plug-ins/rcm/rcm_dialog.c:579 ../plug-ins/rcm/rcm_dialog.c:683 msgid "Units" msgstr "Đơn vị" #. Misc: Used unit selection: 3 radio buttons -#: ../plug-ins/rcm/rcm_dialog.c:581 +#: ../plug-ins/rcm/rcm_dialog.c:588 msgid "Radians" msgstr "Radians" -#: ../plug-ins/rcm/rcm_dialog.c:593 +#: ../plug-ins/rcm/rcm_dialog.c:600 msgid "Radians/Pi" msgstr "Radians/Pi" -#: ../plug-ins/rcm/rcm_dialog.c:605 +#: ../plug-ins/rcm/rcm_dialog.c:612 msgid "Degrees" msgstr "Độ" #. Create dialog -#: ../plug-ins/rcm/rcm_dialog.c:638 +#: ../plug-ins/rcm/rcm_dialog.c:645 msgid "Colormap Rotation" msgstr "Xoay bản đồ màu" -#: ../plug-ins/rcm/rcm_dialog.c:670 +#: ../plug-ins/rcm/rcm_dialog.c:677 msgid "Main Options" msgstr "Tùy chọn chính" -#: ../plug-ins/rcm/rcm_dialog.c:673 +#: ../plug-ins/rcm/rcm_dialog.c:680 #, fuzzy msgid "Gray Options" msgstr "Các tùy chọn chung" @@ -12034,27 +12035,27 @@ msgid "Transferring TWAIN data..." msgstr "Đang truyền dữ liệu TWAIN" -#: ../plug-ins/winicon/icodialog.c:123 +#: ../plug-ins/winicon/icodialog.c:89 msgid "1 bpp, 1-bit alpha, 2-slot palette" msgstr "" -#: ../plug-ins/winicon/icodialog.c:124 +#: ../plug-ins/winicon/icodialog.c:90 msgid "4 bpp, 1-bit alpha, 16-slot palette" msgstr "" -#: ../plug-ins/winicon/icodialog.c:125 +#: ../plug-ins/winicon/icodialog.c:91 msgid "8 bpp, 1-bit alpha, 256-slot palette" msgstr "" -#: ../plug-ins/winicon/icodialog.c:126 +#: ../plug-ins/winicon/icodialog.c:92 msgid "32 bpp, 8-bit alpha, no palette" msgstr "" -#: ../plug-ins/winicon/icodialog.c:151 +#: ../plug-ins/winicon/icodialog.c:117 msgid "GIMP Windows Icon Plugin" msgstr "" -#: ../plug-ins/winicon/icodialog.c:172 +#: ../plug-ins/winicon/icodialog.c:138 #, fuzzy msgid "Icon details" msgstr "Thông tin về phần chọn" @@ -12064,7 +12065,7 @@ msgid "Icon #%i" msgstr "" -#: ../plug-ins/winicon/icosave.c:943 +#: ../plug-ins/winicon/icosave.c:969 msgid "Windows icons cannot be higher or wider than 255 pixels." msgstr "" diff -uraN gimp-2.2.4/po-plug-ins/yi.gmo gimp-2.2.5/po-plug-ins/yi.gmo --- gimp-2.2.4/po-plug-ins/yi.gmo 2005-02-22 23:12:46.000000000 +0100 +++ gimp-2.2.5/po-plug-ins/yi.gmo 2005-04-09 23:09:33.000000000 +0200 @@ -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: 2005-02-22 23:04+0100 +POT-Creation-Date: 2005-04-09 21:56+0200 PO-Revision-Date: 2003-03-19 Last-Translator: Raphael Finkel Language-Team: Yiddish diff -uraN gimp-2.2.4/po-plug-ins/yi.po gimp-2.2.5/po-plug-ins/yi.po --- gimp-2.2.4/po-plug-ins/yi.po 2005-02-22 23:12:40.000000000 +0100 +++ gimp-2.2.5/po-plug-ins/yi.po 2005-04-09 23:09:27.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: 1.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-02-22 23:04+0100\n" +"POT-Creation-Date: 2005-04-09 21:56+0200\n" "PO-Revision-Date: 2003-03-19\n" "Last-Translator: Raphael Finkel \n" "Language-Team: Yiddish \n" @@ -368,7 +368,7 @@ #: ../plug-ins/common/pat.c:433 ../plug-ins/common/pcx.c:585 #: ../plug-ins/common/pix.c:515 ../plug-ins/common/png.c:1178 #: ../plug-ins/common/pnm.c:809 ../plug-ins/common/postscript.c:1123 -#: ../plug-ins/common/psd_save.c:1588 ../plug-ins/common/raw.c:517 +#: ../plug-ins/common/psd_save.c:1336 ../plug-ins/common/raw.c:517 #: ../plug-ins/common/raw.c:544 ../plug-ins/common/spheredesigner.c:2088 #: ../plug-ins/common/sunras.c:513 ../plug-ins/common/tga.c:1030 #: ../plug-ins/common/tiff.c:1810 ../plug-ins/common/xbm.c:996 @@ -1219,35 +1219,36 @@ #: ../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 +#: ../plug-ins/bmp/bmpread.c:207 ../plug-ins/bmp/bmpread.c:307 +#: ../plug-ins/bmp/bmpread.c:348 #, c-format msgid "'%s' is not a valid BMP file" msgstr "" #: ../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 +#: ../plug-ins/bmp/bmpread.c:300 ../plug-ins/bmp/bmpread.c:313 +#: ../plug-ins/bmp/bmpread.c:319 #, c-format msgid "Error reading BMP file header from '%s'" msgstr "" -#: ../plug-ins/bmp/bmpread.c:442 ../plug-ins/bmp/bmpread.c:477 +#: ../plug-ins/bmp/bmpread.c:450 ../plug-ins/bmp/bmpread.c:485 msgid "Unrecognized or invalid BMP compression format." msgstr "" #. #. * Create the "background" layer to hold the image... #. -#: ../plug-ins/bmp/bmpread.c:482 ../plug-ins/common/CEL.c:357 +#: ../plug-ins/bmp/bmpread.c:490 ../plug-ins/common/CEL.c:357 #: ../plug-ins/common/CEL.c:360 ../plug-ins/common/blinds.c:273 #: ../plug-ins/common/compose.c:625 ../plug-ins/common/decompose.c:595 #: ../plug-ins/common/dicom.c:442 ../plug-ins/common/film.c:946 -#: ../plug-ins/common/gifload.c:865 ../plug-ins/common/jpeg.c:1113 +#: ../plug-ins/common/gifload.c:864 ../plug-ins/common/jpeg.c:1113 #: ../plug-ins/common/jpeg.c:2474 ../plug-ins/common/pcx.c:334 #: ../plug-ins/common/pcx.c:340 ../plug-ins/common/pix.c:374 #: ../plug-ins/common/png.c:808 ../plug-ins/common/pnm.c:517 -#: ../plug-ins/common/psd.c:2173 ../plug-ins/common/raw.c:677 +#: ../plug-ins/common/psd.c:2174 ../plug-ins/common/raw.c:677 #: ../plug-ins/common/smooth_palette.c:257 ../plug-ins/common/sunras.c:925 #: ../plug-ins/common/tga.c:929 ../plug-ins/common/tiff.c:833 #: ../plug-ins/common/tile.c:266 ../plug-ins/common/winclipboard.c:579 @@ -1278,12 +1279,12 @@ #: ../plug-ins/common/jpeg.c:1453 ../plug-ins/common/pat.c:438 #: ../plug-ins/common/pcx.c:545 ../plug-ins/common/pix.c:521 #: ../plug-ins/common/png.c:1185 ../plug-ins/common/pnm.c:814 -#: ../plug-ins/common/postscript.c:1128 ../plug-ins/common/psd_save.c:1593 +#: ../plug-ins/common/postscript.c:1128 ../plug-ins/common/psd_save.c:1341 #: ../plug-ins/common/sunras.c:518 ../plug-ins/common/tga.c:1035 #: ../plug-ins/common/tiff.c:1815 ../plug-ins/common/xbm.c:1001 #: ../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:957 +#: ../plug-ins/sgi/sgi.c:545 ../plug-ins/winicon/icosave.c:977 #: ../plug-ins/xjt/xjt.c:1682 #, c-format msgid "Saving '%s'..." @@ -1627,7 +1628,7 @@ msgstr "" #: ../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 +#: ../plug-ins/common/decompose.c:144 ../plug-ins/rcm/rcm_dialog.c:548 msgid "Saturation" msgstr "" @@ -2434,24 +2435,24 @@ msgid "Color to _Alpha..." msgstr "" -#: ../plug-ins/common/colortoalpha.c:181 +#: ../plug-ins/common/colortoalpha.c:187 msgid "Removing color..." msgstr "" -#: ../plug-ins/common/colortoalpha.c:377 +#: ../plug-ins/common/colortoalpha.c:380 msgid "Color to Alpha" msgstr "" -#: ../plug-ins/common/colortoalpha.c:402 ../plug-ins/common/mapcolor.c:424 +#: ../plug-ins/common/colortoalpha.c:405 ../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:406 +#: ../plug-ins/common/colortoalpha.c:409 msgid "Color to Alpha Color Picker" msgstr "" -#: ../plug-ins/common/colortoalpha.c:420 +#: ../plug-ins/common/colortoalpha.c:423 msgid "to alpha" msgstr "" @@ -2474,13 +2475,13 @@ msgstr "" #. Gray: Circle: Spinbutton 1 -#: ../plug-ins/common/compose.c:148 ../plug-ins/rcm/rcm_dialog.c:452 +#: ../plug-ins/common/compose.c:148 ../plug-ins/rcm/rcm_dialog.c:459 msgid "Hue:" msgstr "" #. Gray: Circle: Spinbutton 2 #: ../plug-ins/common/compose.c:149 ../plug-ins/print/gimp_color_window.c:364 -#: ../plug-ins/rcm/rcm_dialog.c:479 +#: ../plug-ins/rcm/rcm_dialog.c:486 msgid "Saturation:" msgstr "" @@ -3100,15 +3101,15 @@ msgid "Deinterlace..." msgstr "" -#: ../plug-ins/common/deinterlace.c:315 +#: ../plug-ins/common/deinterlace.c:324 msgid "Deinterlace" msgstr "" -#: ../plug-ins/common/deinterlace.c:340 +#: ../plug-ins/common/deinterlace.c:349 msgid "Keep o_dd fields" msgstr "" -#: ../plug-ins/common/deinterlace.c:341 +#: ../plug-ins/common/deinterlace.c:350 msgid "Keep _even fields" msgstr "" @@ -3512,7 +3513,7 @@ #. Create selection #: ../plug-ins/common/film.c:1166 ../plug-ins/imagemap/imap_selection.c:400 -#: ../plug-ins/rcm/rcm_dialog.c:158 +#: ../plug-ins/rcm/rcm_dialog.c:165 msgid "Selection" msgstr "סעלעקציע" @@ -4047,23 +4048,23 @@ msgid "Non-square pixels. Image might look squashed." msgstr "" -#: ../plug-ins/common/gifload.c:867 +#: ../plug-ins/common/gifload.c:866 #, fuzzy, c-format msgid "Background (%d%s)" msgstr "הינטערגרונט" -#: ../plug-ins/common/gifload.c:915 ../plug-ins/common/iwarp.c:783 +#: ../plug-ins/common/gifload.c:914 ../plug-ins/common/iwarp.c:783 #: ../plug-ins/common/iwarp.c:817 #, c-format msgid "Frame %d" msgstr "" -#: ../plug-ins/common/gifload.c:917 +#: ../plug-ins/common/gifload.c:916 #, c-format msgid "Frame %d (%d%s)" msgstr "" -#: ../plug-ins/common/gifload.c:947 +#: ../plug-ins/common/gifload.c:946 #, c-format msgid "" "GIF: Undocumented GIF composite type %d is not handled. Animation might not " @@ -5852,7 +5853,7 @@ msgid "B/W" msgstr "" -#: ../plug-ins/common/postscript.c:3003 ../plug-ins/rcm/rcm_dialog.c:404 +#: ../plug-ins/common/postscript.c:3003 ../plug-ins/rcm/rcm_dialog.c:411 msgid "Gray" msgstr "" @@ -5942,18 +5943,18 @@ msgid "Invalid UTF-8 string in PSD file" msgstr "" -#: ../plug-ins/common/psd_save.c:181 +#: ../plug-ins/common/psd_save.c:192 msgid "Photoshop image" msgstr "" -#: ../plug-ins/common/psd_save.c:1564 +#: ../plug-ins/common/psd_save.c:1312 #, c-format msgid "" "Unable to save '%s'. The psd file format does not support images that are " "more than 30000 pixels wide or tall." msgstr "" -#: ../plug-ins/common/psd_save.c:1576 +#: ../plug-ins/common/psd_save.c:1324 #, c-format msgid "" "Unable to save '%s'. The psd file format does not support images with " @@ -11369,88 +11370,88 @@ msgid "Rotating the colormap..." msgstr "" -#: ../plug-ins/rcm/rcm_dialog.c:114 +#: ../plug-ins/rcm/rcm_dialog.c:119 msgid "Original" msgstr "" -#: ../plug-ins/rcm/rcm_dialog.c:127 +#: ../plug-ins/rcm/rcm_dialog.c:133 msgid "Rotated" msgstr "" -#: ../plug-ins/rcm/rcm_dialog.c:140 +#: ../plug-ins/rcm/rcm_dialog.c:147 msgid "Continuous update" msgstr "" -#: ../plug-ins/rcm/rcm_dialog.c:153 +#: ../plug-ins/rcm/rcm_dialog.c:160 msgid "Area:" msgstr "" -#: ../plug-ins/rcm/rcm_dialog.c:157 +#: ../plug-ins/rcm/rcm_dialog.c:164 msgid "Entire Layer" msgstr "" -#: ../plug-ins/rcm/rcm_dialog.c:159 +#: ../plug-ins/rcm/rcm_dialog.c:166 msgid "Context" msgstr "" #. spinbutton 1 -#: ../plug-ins/rcm/rcm_dialog.c:284 ../plug-ins/rcm/rcm_dialog.c:362 +#: ../plug-ins/rcm/rcm_dialog.c:291 ../plug-ins/rcm/rcm_dialog.c:369 msgid "From" msgstr "" #. spinbutton 2 -#: ../plug-ins/rcm/rcm_dialog.c:310 ../plug-ins/rcm/rcm_dialog.c:363 +#: ../plug-ins/rcm/rcm_dialog.c:317 ../plug-ins/rcm/rcm_dialog.c:370 msgid "To" msgstr "" #. * Gray: Operation-Mode * -#: ../plug-ins/rcm/rcm_dialog.c:499 +#: ../plug-ins/rcm/rcm_dialog.c:506 #, fuzzy msgid "Gray Mode" msgstr "מאָדע" #. Gray: Operation-Mode: two radio buttons -#: ../plug-ins/rcm/rcm_dialog.c:508 +#: ../plug-ins/rcm/rcm_dialog.c:515 msgid "Treat as this" msgstr "" -#: ../plug-ins/rcm/rcm_dialog.c:520 +#: ../plug-ins/rcm/rcm_dialog.c:527 msgid "Change to this" msgstr "" #. * Gray: What is gray? * -#: ../plug-ins/rcm/rcm_dialog.c:533 +#: ../plug-ins/rcm/rcm_dialog.c:540 msgid "Gray Threshold" msgstr "" #. * Misc: Used unit selection * -#: ../plug-ins/rcm/rcm_dialog.c:572 ../plug-ins/rcm/rcm_dialog.c:676 +#: ../plug-ins/rcm/rcm_dialog.c:579 ../plug-ins/rcm/rcm_dialog.c:683 msgid "Units" msgstr "" #. Misc: Used unit selection: 3 radio buttons -#: ../plug-ins/rcm/rcm_dialog.c:581 +#: ../plug-ins/rcm/rcm_dialog.c:588 msgid "Radians" msgstr "" -#: ../plug-ins/rcm/rcm_dialog.c:593 +#: ../plug-ins/rcm/rcm_dialog.c:600 msgid "Radians/Pi" msgstr "" -#: ../plug-ins/rcm/rcm_dialog.c:605 +#: ../plug-ins/rcm/rcm_dialog.c:612 msgid "Degrees" msgstr "" #. Create dialog -#: ../plug-ins/rcm/rcm_dialog.c:638 +#: ../plug-ins/rcm/rcm_dialog.c:645 msgid "Colormap Rotation" msgstr "" -#: ../plug-ins/rcm/rcm_dialog.c:670 +#: ../plug-ins/rcm/rcm_dialog.c:677 msgid "Main Options" msgstr "" -#: ../plug-ins/rcm/rcm_dialog.c:673 +#: ../plug-ins/rcm/rcm_dialog.c:680 #, fuzzy msgid "Gray Options" msgstr "פֿאָרױסװײַז" @@ -11532,27 +11533,27 @@ msgid "Transferring TWAIN data..." msgstr "" -#: ../plug-ins/winicon/icodialog.c:123 +#: ../plug-ins/winicon/icodialog.c:89 msgid "1 bpp, 1-bit alpha, 2-slot palette" msgstr "" -#: ../plug-ins/winicon/icodialog.c:124 +#: ../plug-ins/winicon/icodialog.c:90 msgid "4 bpp, 1-bit alpha, 16-slot palette" msgstr "" -#: ../plug-ins/winicon/icodialog.c:125 +#: ../plug-ins/winicon/icodialog.c:91 msgid "8 bpp, 1-bit alpha, 256-slot palette" msgstr "" -#: ../plug-ins/winicon/icodialog.c:126 +#: ../plug-ins/winicon/icodialog.c:92 msgid "32 bpp, 8-bit alpha, no palette" msgstr "" -#: ../plug-ins/winicon/icodialog.c:151 +#: ../plug-ins/winicon/icodialog.c:117 msgid "GIMP Windows Icon Plugin" msgstr "" -#: ../plug-ins/winicon/icodialog.c:172 +#: ../plug-ins/winicon/icodialog.c:138 msgid "Icon details" msgstr "" @@ -11561,7 +11562,7 @@ msgid "Icon #%i" msgstr "" -#: ../plug-ins/winicon/icosave.c:943 +#: ../plug-ins/winicon/icosave.c:969 msgid "Windows icons cannot be higher or wider than 255 pixels." msgstr "" diff -uraN gimp-2.2.4/po-plug-ins/zh_CN.gmo gimp-2.2.5/po-plug-ins/zh_CN.gmo --- gimp-2.2.4/po-plug-ins/zh_CN.gmo 2005-02-22 23:12:46.000000000 +0100 +++ gimp-2.2.5/po-plug-ins/zh_CN.gmo 2005-04-09 23:09:33.000000000 +0200 @@ -1,424 +1,431 @@ - M   1F"` *"Aa "#$ -3V>Q / 4 @J -OZk s}  -  5Kdu) %L3 : D]<uC$'}&h" - %@Unv+~ %  <(eRm   5 I2V $ A%g y   - - ) @J]os - -  -# -. -9 -D O] b nx  * 6B R ^ ht{   (0 CQf  -  -(19 ? IU"j?$>2W#/'$&+JR&' - -$ -/:Q*e( hhi)'#$4H4}()'l-*55,1*^4  $>V4_ 'Go3$ - -6=DU] eo  - "1C^w -  -@ AN]y - '=DL T^gox  $+,4X +A"dm r ~)6  ->&I -p{(+!&. U#v #1#&5\|/>,8I <| -'? -9 Tbq   #> -Z es - -  #,< L Xd t~  .C[s $ 05 <H W er!  * -6AR m {    6CXa -h s   -  20=J1=/( :G P+\ ($4DBU  &B `n}  -  :+fu )/#2?+r "'#K4 !:'Y/B'Z).--H'v # %%2K~ # $ "*/1@r6' % ;  N  X e j          -( - -@ -K - ^ -j -s -"y - - - - - -6 -  - ( G  Z  h  u      "      -+  6  -D O e k r w                -  -F Q (g )        - "2FVhm -   ) 7AV [ er    ( 9 -GRY W aos -    2!/TB= -  7D Vds -    $3 St x  *;OU -[ fs n!Yvz\C[  -  ,"F iu  KL`in    6 <F ^k ~(*   ".2B -\ gt   (5>F MW -_ -j/u`   'G1ByNI U[cks{%$% $- %R $x         !!! ! (!2!9! I!W!s!! -!!! !!!"'" 7"E"^"z"" "" -" """# -# # -)# 4#@#W#n# # ## ##### # #<#%;$ a$ -k$v$$'$ $$$%% #% 1%?% R%`%p%%%% %%% %%% -& &&4&L& -T& _& i&v& && & & &&& &&& -' ' '07' h' r''' -' ''' '+(1(G(b(w(((( ( (( ((()+) 2)>)Q) V) `)j) )))))) ) )))) * -**&*5* >* L* V*Ic* ***** -**: +0F+ -w++.+++++++ +,0,@, S,t,,*,,,,- 8-B-K- \-f- o-|- -- -- ----...B.K.%Z... -.. .. .... //*/3/0 U0b0k0 ~00 000 0 000 0 0011 '1 11 ;12E1x111111 22 2 -*252O2V2g2p2 x2 -22$22 22 2 233 -3 '3 53 -B3M3k3333 -3 3333#3 4 "4 -,474G4 O4Y4 h4v44 44 -4'4 444 4 4 5505M5]5d5s5 y555 5555 5 5 5585-6 66B6+W66 6666666 6 77-7M7 \7 j7v777 7 777 788 8!8$&8K8O8 -_8j8 s8 88 -88888888 -8899$9A9U9\9l9 |99 9 9 99999::":3:B: U:_:%d:::: ::::::;;&;6;;;J;Q;`;r; ;;;;;-; <(<;< C<d<v<<<< < < <<==2=C=W=n======"=>> -&> 1>1=>,o> >>>> > ->>> > -??? ?)?0? ?? I? S?]?e? ~?????? ? @ @@#@48@!m@@@@ @ @ @@@@ -AA A$A -*A5ATAYAkA{AA;A A A -AA B B 8BDB IB#WB -{BB BBB B -BBC C%C:CMC*dC CCC C CCC DD +D 8D DD PD \DhDxD DD D D D D D DD*E 1E?ESEfE vE -EEE/EEE FF F (F 2F ?FIF \FjFzFFFFF F FFF FFFGG +GLGlGuGGG G G G+GHH/H -6H AHNH`HqH HHHHH H H H -II"I;IUI#jIIIIII]I]JwJ J J#J?JJ K$K?KWK)kK%K<KEK>L QL ^L kLxLLCLLM+ MLMgMpM MMM MM MMM MN NN%N+N:NNN `N!lN#NNNNNN O -O'O ;O -EOPO aOoOOOO -OO -OO OOOP P -P*P /P9POP_PePlPrP -PPPPP -PP P PQ -Q"Q7QKQ]Q cQoQ~Q QQ/Q-Q R (R2RBR UR_R -nRyRRRR RRRRD S'NS@vS SSSS SSTT(T9T@T WTdTjT qT TTTTT T T TT -T7U=U EURUcUjU pU -~U U UU UUU(UVV.V 5V -BVMVVV hVtV V -VV V VVV VVWWW/WGWPWYWRuW&WWXZXSyXXX5Y+9YFeYY0YMYEKZPZKZ>.[<m[7[[\z]!]]].])%^%O^Qu^)^&^_5_/_3_&`E`e`0`4``apa~a= b%Jb,pbb!kccJcc dd)$d -NdYdhd md{d dd-ddddde ee!e -*e 5e ?eIeQeZe ^ekeqe zee eee ee e ee fffmjmAWn$n=n.n-+o-Yooo -o oo ooUon$pppppppppp8q:q ?qMqRqgqvqqq q&q%q%qrr"r[3r rrrrrrrrrrrrSrC:s:~sFsttt)t.t6tRt[t yttttt t t tt tttuu"u +u7u?u HuVuguwuu u uu -u u uu uuvv -v v&v-v 3vAvTv ]vjvsvxv v vv v v v -vvvvvw w !w+wBw -HwSw bwpww(www w www xx x+x -:x ExQxWxixrxxx xx -xx xxx -xxyy#y -)y4y=yMy]yly y yyyyyyyyyz %z/z 5z -?z JzXzkzszzzzz zz z zzzz{ { {{${ *{6{G{O{X{^{c{k{ -{ { {{ {{{{{{||| |$|+|?|(G| p| }||| || | -|||| | -|}})5}_}e}j}s}}}}}}}}}}}~ ~!~(~.~=~L~k~ -z~~~ ~ ~ ~ ~ ~ ~ ~~  !-= -EPd x -   - (2 IVe t  -ǀҀ  -  -"-6JZox    Ӂ   - - -5@ I V -do u -  -˂  - 0 <I_n~ у߃% +5 G S _i q ~  ׄ -5 -> -ITfn w8  -ƅх    # -2= C6P  Ȇ φ݆  -L-e  Ƈ·   -#)/ 8 E R \ ft {  Ĉш  - !4 8B -S ^hqu} Éɉ-ω'6 F(S| "͊֊ ۊ  -  -  #0MTe w   -:ʋ  -& -1<CLҍԍ  0N)m"̎,/(L"u"ď ֏'# -(.)W YA); U -bm - - -͑ ޑ     -# -.9 -P[x -˒)E[k rEՓ+>Qd/}!Ӕ$6̕f#?\ u  -ė ӗ -! -,'7_f0m ˜Ϙ ؘ9S#w Ιߙ < J Q^$r К5 . ; HR Yf ly    ɛӛڛ1DLcw     ̜֜ - - - - ) 0 =K_f v   ɝӝ  ! . ; H Ubry   -  ž -̞מޞ   -  :G[j"Ɵ̟ -՟ - --8O We -y - -  - #ABX$w0!3*9*d'G+++W^n٣**0 [ ermm$d))+GWc)ڦ)$.S o#| ا! -9X_}f* #4X\ {  - թ -  3G[l -}  Ъ  6 LYm 9 ȫի #4 HU eoɬ Ьڬ    - 4 DN cp *6խ   & 0=DZ z<ĮˮҮ  '1Y%l&ɯٯ%)0Pe) "˰ "/2%b  ʱ06Lbx3Ȳܲ -0cO!ճ< .:8 s } ʹ ݴ -' 7 EOh     ɵ ӵ &6= D -N Ycs    Ƕ Ѷ ޶   -4GYl·ط ! !.,>k r  ظ 3 @ J W dq ˹ չ   *@PWg n {  º ɺֺݺ$$1V$uɻٻ$2K*^μ ? 1>] x - -ʽ  )9@G ]j ɾ3  &3 :H\'s!9ڿ$.Scj-z'&$ (; [|".)M,w1*&< c p z  &0 -,+3$_+ .'7=/u $9Ncx  - *7>\l s} !   5E L Zd      %/8M -c -n -y   #"! D -P[o x     -" ?L\ -oz   -  $18?S gqx       0 <J -R ] ky $5*U   ")07G W'a!  ) 3@ -CNev - - - - )6pE2uxcQR6  -   , 9FZn  -#<8M -    - %*2]dv },99+2HO_cs     "/BF -K V d -r}  &K' +5 < I0S0,,(1:C LY m z& & -&+R Y cp     $C Vcv.J[bipw   -4 -?J[o -  - 6$  -%7>Wp2 ER h r   -  - #1GWm}  07h o| - #:Tk     * 4A] d q~  " )6 IV i v T     %2FN73  '1D `!m !$1DZl s - - -  - - &(&O&v *   )0@Sc{ -   (#@d -    -$ /<CS cpw - - - - -58Wv  -  -  -% -0; KX)k    - &-Hcj }  " 3=DXl | -  4M] dr v     9 -2 =G!Xz &?Reu  !5 -9D Tbv - -  -   0Lcj   5<M^o - -  &0CWj~   -&+ R\ -lw ")?Uq&?R k u61    #-4; Q -_j r      8 HRY -`k2}  (6 -G -R] q -  -! * I W eo  % !.P c p}"!5 KYi      '5 FTc s  " ! .;R$b - - = I U a k -u -  !!$ FSf,   #6IYo  - -  - 3RhY&  B  L V ] Fy     - -'. -'V -<~ -9 - -    + 8 N 2d   !     % 8 @ P ` p w          $ * C J "]         &= S` z  - -  $ .8? -S -^ iv   " 1 8EUkr3*   & :H_ t~ 28* cmt  " )3CW ^l$ ' 8 B OYo'   -/CT -ep   -    J!h"@L -Wv!!*+3F$z00B'D'lzh  9#Z~3&B'30L*}7{B'Y f  N    !'! #W#p## #####^#^Z$$$$$$$% %%-/% ]% j%,t% %% %%%'& ,&6&=&N&U&h&{& &"&&&&.&3-'$a'9'6'' ($%(J(Z(j(( -((( (( ( ( (( )!)5)<)V) ])j)q) x)) ) )) -) ) )) )**/*L*S*d*LS+/+*+5+51,5g,,,, ,,,,Q,ZH---- --- ---.1.J.Q.h.o..... -.(.(.(/;/C/K/d`/ / / ////0 0 0 0 '0 -10U<0<060D1K1\1a111111 1 11 11 + DN l  1&"@cz *"!A`g {"#$ +VQu   * +/:K S] frz +  +DUdu) L`q :$=<UC$'}&H"o +  5NV+^ % <ERM  )26i o|$AG Y gqw}  + + *=OSo + + + + +$ /= B NXgm} + " 2 > HT[ m y   #1Fduy~  +    )5"Jm?$27#j/'$& 2RJo&' ++: +A +LWn*( hh)'#A4e4()'"lJ*55,N*{4  ($6[s4| 'd3$ +!'9SZarz   +  .?N`{ +  +@ ^kz +)2DZai q{  $!2+I4u + ,A? )6); +[&f +(+!/&K r# #1#.&Ry/>!5I8f <|''? +,79K   3 9EMTo +  + + .>BGMT]m }   #+ <J_t $ &05f my !7F O [ +gr   !/DL gt +   +  20J={1=/)Y kx + (&DUeuB  ,HOWs   + $ 6D:\ )/#L2p+ "4'T|4 ERk' +)D`s')./^-y' # ' - < M %V 2|     #  +$! + F +S +[ +` +1q + +6 +' +" 6 V l            +  ( H Y  +q |    "      6 :  +N Y x         " *6HM +\ g +u      . @M^ +w()  % +6 AKScw +  /8J Z hr     #4 MY j +x   +   <2R/B= +6 AM hu  +     $+3P    #6H[l +  nRYv4\/C  + +* 5 AN]"w   #K1}    %66 mw  (* $. I S_cs +   $2GKP Yfow ~ + +/`7  < F  L  X Gb B N I"$d"%"$""""" +##.#@#E#N# U# _#i#p# #### +### $"$4$I$^$ n$|$$$$ $$ +$ $%%7% +I% T% +`% k%w%%% % %% %%& && & (&<5&%r& & +&&&'& &'#';'J' Z' h'v' '''''' ''' ' (#( +;( F(S(k(( +( ( (( (( ( ( (() ))$) +9)D)W)0n) ) ))) +) ))* .*+<*h*~****** * ** ++4+P+b+ i+u++ + ++ ++++++ +, ,!,&,5, =, +I,T,],l, u, , ,I, ,,,-- +-*-:B-0}- +--.----..". 3.T.g.w. ...*../3/S/ o/y// // // // // //0'0F0e0y00%000 +00 00 001-1 C1M1a1j1s1 x11 1 111#122(2<2T2 \2 i2u2 222 22 222 2 23 3 3 )33373G3 ^3 h3 r32|333334-4 I4S4 W4 +a4l44444 4 +44$44 55 $5 05<5K5 +S5 ^5 l5 +y555555 +5 555 6#6@6 Y6 +c6n6~6 66 666 66 +6'6 77"7 )7 37 =7G7g77777 777 7777 7 7 888+8d8 m8y8+88 88888 99 69D9S9d99 9 9999 9 99: 3:=:F: J:X:$]::: +:: : :: +::::; ;;#; ++;6;=;E;[;x;;;; ;; ; ; ;;<<+<F<J<Y<j<y< <<%<<<< <= ==*=/=>=N=]=m=r===== ===>>-)>W>_>r> z>>>>>> ? ? ?(?;?P?i?z???????@"@7@N@ +]@ h@1t@,@@@ +AA (A6ASAZA `A +nAyAA A +AAAAAA A A AAA +BBB;BWBsB B BBBB4B!BC+C:C OC ]C gCtC|CC +CC CC +CCCCCDD; D \D hD +tDDDD DD D#D +EE .E;EUE dE +nEyEE EEEE*E F'F8F TF `FnFF FF F F F F FFG G#G 2G >G KG XG dG pG|G*G GGGG H +HH,H/U +MUXUmUUU UUUUDU'-V@UV VVVV VVVVWWW 6WCWIW PW ^WkW{WWW W W WW +W7WX $X1XBXIX OX +]X hX uXX XXX(XXX Y Y +!Y,Y5Y GYSY kY +xYY Y YYY YYYYYZ&Z/Z8ZRTZ&ZZZZZSX[[[5[+\FD\\0\M\E*]Pp]K]> ^<L^7^^_Y`!u```.`)a%.aQTa)a&aab/b3b&b$cDc0cc4cccpc~ld=d%)e,Oe|e!JflfJff ff)g +-g8gGg LgZg jgwg-gggggg ggh + h h h(h0h9h =hJhPh Yhch hhrhh hh h hh hhhi6iTimisiwii ioi{*jjjjj jjjk% k/k>k/Fkvk k kkk&kkkl +l l/l >l JlVltllllFl,mQCm:mmm*m $n2nKnfnnnnnnnnnnn oo!o1o:o +Io To ^oho no |o ooooo!ooooppjpA6q$xq=q.q- +r-8rfrkr +r rr rrUrnsrsssssssss8st t,t1tFtUtdtst vt&t%t%tttu[u nu{uuuuuuuuuuuSuCv:]vFvvvvw ww1w:w Xwdwlwqww w w ww wwwwwx +xxx 'x5xFxVxfx }x xx +x x xx xxxx +xxy y y y3y ~F~O~U~Z~b~h~ +~ ~ ~~ ~~~~~~~ !(<(D m z   +  +)2\bgpˀ݀ #*0?Nm +|    ʁ ԁ    #/? +GRf z + Ă ͂ڂ + *4 KXg v  +Ƀԃ  +  + +$/8L\qz   „ Մ    "/ +7B K X +fq w +  +…ͅ   +!* > JWm|Ć͆܆ %5 R\ n z   ŇՇ ܇   %19HQai +r +} 8  +  % 3?HPW +fq w6 lj͉։ ߉ ,F \j- Њڊ   * :D +U`fl u      Ƌԋۋ  %/ +@ KU^q u +  ̌Ҍٌ- :@ETds (ȍЍ ֍" +  $ +. 9 +CN V `m  ŽЎ ߎ +:BT] +c +ny! 4AI0Z)ԑ" ,,/Y(""Ւ '#G(k) YʓA$fx  + +Ĕϔ + + +  ( 6 D R +` +kv +ÕՕ +ܕ!=Vf ۖEXh{/!$2Ws Ǚf`|   +̚ך 1D +^ +i't0ۛ   9YS`Ȝ ؜ - =<J $ԝ  5#Y k x   ̞ ܞ   6PWn ȟ֟ݟ     +& +1 +<G Yf m z   ʠנޠ #7J ^ k x   ơ ӡ +   +  ",3 :G] w"ߢ  + +(BV +ju  + + +̣ ף + #!A=$٤0! 3B*v*'̥ G3+{+Ӧڦ)9U*e* ק mmr$!)7)aéWߩ7)V)$Ϫ # *=T!d 9ԫ۫}`s*#Ԭج  + +2= Q +_ jxí׭ +   /<Le ~  Ȯծ 9 + DQa~  įѯ .E LV ] ku |  ʰ ߰ *&6Q    ֱ <@GN an 'ղ%&EU%\)̳) &"G j"/%޴  %F0`6ȵ޵3DX_o0c˶!/Q<m :ɷ   .;K^ n{ + ȸ ָ   + 8E Z dq ǹι չ +߹   "/ CQ X b o | źغ#=Si |! ,ϻ   0:Mi| ļ Ѽ ۼ  4H \ f t  ѽ  $+ 2? FS Zgn$~$¾$+JZjq$ÿܿ*3I_ u?  . +E +P[w    4GZ3v   '!,N9k$- '9&a$ ?Le  '@S"n),51Q*&     %&/0V ++$+ ANU\.w'7/6Fb|   #-@\r   !#Eah y    * . ; E R_u|   + + + ! 6BT nz#"  +  & 4A HU er"  + &9LSc s         *7G`p      +   + &$Bg{5* "<Pj ~  '!6Xnu    +):NV +f +q| + + pREu cQ65l s +}     7G`t8 ++6 =JQ dq   * ,9H9  %1CX _lr  +   + ) 9&EKl   00,F,s   &3 Z&{ &  (8H O\ c p}   *=Pcs">Raq + + +& - +7 B6L$  +:Qd~   + $ +8P +h s + ,<LS Zg{0 , +D O\t ! . ;H\ oy    ) 9FVip      #T-     F7-ey3  !' .;!Oq$ - +A +L +Wbu  + &&&5 LZ*n  ':N +_jz   #4;Oe +lw~    +   +" +-8<L +` +k +v5$@ _m +q | + + + ) -7G ]jz    / <F]t  7 +>Ihov    +  , BLS Z f r~9 + ! &:JRat  0DKRe } ! + % +9 +DO c +q|  ,?T k x + +%0 O\o 0 7DU is&  ++AQm  3Lbu|  61Q +    ' = +KV ^l s      $ 4>E +LW2i  " +3 +>I ] +k v +! * + 5 C Q[k  %  +!< O \i|" ! 7EUk ~     ! 2@O _ m {"  '>$Ns +    )  5  A  M $Z     +  +        +! +!B + d +q + + + + + +, + + +    ! . A T g w      +  +    ( > Q p     Y D  `  j t { F    6'L't<9, < IVl2!3CV^n~  $#Hah"{   ! 7D[ q~   + + , B LV] +q +|    "->OV ]jz3*! :G Wd x  2O8h  ,3 LY` gq $ 07FZ^e v  ') 0 < HVm +   +   ( 5?FJ[!"@LH!!*<+X3$00B?''z!= V w#3. D d  '!9!X!q!0!*!7!":"{V""BT#'# ##$$N$!% 7% E%'R% z%%%%%%%-%& /& <&F& V&c&s& w& +& & +& +& +&& && & +&& +&& '$' +'8' H'U' h'u'|'''' '''((^9(^(( ))&)-)=)\) c)-m) ) ),) )) ) *)*'B* j*t*{***** *"** ++.<+3k+$+9+6+5,J,$c,,,,, +,,, ,, - &- 0-<-K-_-s-z-- --- -- - -- +- . .. $.E.\.m...d,/L///*05905o050000 11101Q41Z111 2 -2 - 2+2 <2 J2T2h2 2 -2 2 2 -222223 "3 -03 ;3I3[3 o3 -}33 -3 -3 -33 -3 3 -33 4 4 -+4 -64 -A4 L4 -Z4 e4 -s4~44444 44455 --585 -L5W5h5 |555(55 5 -5 6 6$6 86 -F6 Q6_6 -s6 ~666 6 -66 6 -6 667)7:7 N7\7 t77 -77 77777 8$8 ;8 -I8T8h8 |88 888 -8 -8889)-9 W9d9 -x9999 9 -9 -99 : -: : --:8:?: S: -a: -l:w: -: : -: -: -:::: -;; *;8; L; -Z;e; -y; ;;;; -;; -;%; <'< -;<F<X< -k< v< -<< -<<< <<<$ = -1=<=D= U=c=k== -=== -= -= -===> - >+>4>H>Y>s>> ->>>> ->>??+? ??M?a? -i?t? -? -??? -??? -?@ @ -)@4@H@\@ -d@ o@}@ @@@@@@ -A A $A 2A @A -NAYA -jAuAAA AA A A AAB*B -;B -FBQB bB -pB {BBB -B B BBBBB C -C%C 5CCCWCnC -CC -C C C C -CC -CC D D (D 6D -DDOD fDtDDDDDD DD E )E7EHEeE -EE E E EEE E -F F -F$F -8F CFQF eFrF F FF FF -F -F -F FG -G &G 4G9AG {G -GG GGG G G -GH -H -*H -5H1@H rHH HHH -H -H HHHI)I=I]I0tI I -III II JJ -%J0J JJ -XJ -cJ nJ |J J -JJJ -JJ J -J J KK -(K -3K>KUKeKuKKKKKKKKKLL -L'L0L -AL LLZLpLLL'LLLLLLL M%M5M6myNtdc NkF$ -`/$w )n> ?>S2^%CZ^+76{ p 7+i?e! ffWFk B 7[Hm Yu['PLY{z8RyvRs< bm/X% Fue a a, -vwjP20pF9V<e q+,dI[ W uq8LY ..y8 3 AR B ?"8|_I .q;(YIC,$G2k);Y2jB( }c~ '4W = 1 *u,f @rj;2e@,A~9K%qp^ w4 G\ p^{z1+N]! Q: S^ s J "o :NgU7> * MJa Wm X1fxt  thQwlXo*YSs Q< n  cIC.Z j{%=z, iQU~kV &/v:|k@z)  9[\+d} 7 ;&\ mT*A%}R>c7(R$kY12<<lJCKS.SDB5d \wQ3K4Z* l| OLO#UdQ ;l "  \rrO mN ] w 8x#5z f ds}ZOH os!_1#5 F|?W @ LgEI !NvS[" -D] "g &a942gw0/ =\9 - I=ZqR Al:s X t .:wr/  DG_@RX%9$6D d=HJ , !i}1*o\b_#iR0qlcXnE:YH  Mb ~  /##<Q zuOMK>( v;0)jtMe- _ KV BOH|vhy$9  i y[cN DH a?-5=a5Lje FbrphI]omT_>h[ s' e)F!i<# -erp=p . g>3{Gk %lx'  b|J/ yi DAk nL & :-U'xGS 40 uE VM~m D.ACo /sK  T~pDK l6Lj`;)]gj=jvZ8+ 5vk hT "]B@\* -Oj  %dXJa mW< k+KGo6sq -IDS&`H ;Nxvt.y E x; `P `w~H/?8x 9x-8o|[ ]bM){.r C1 -+ K3&()J Z<Qh)VN^4P32o h4w}T*bz-_ 66 PU U|0t B# C'R10\] EM<3_3@ f]! L;CE7g+O ?d p -TP*5}XT37 U  %G   oU GLi9QWIv Hu g&W nGc@ 'SM@ ZK 0 !y P 8>A ` 1 JC m ,cXa*z Tie:g{'xfV - )bi-?: asEnF? g r 1&$c` _BS#c/A8^ n n`h Qu9P~f!M0P^bG zF " TJe}7 P$4 ( En?AO}{ -uqz +U'- uT BF5q 5_& @yAE  V3  ZN" |[(Zd ~= rqb(2 yVl>(,laVp2t5`t6 3{!=7 %   -6W^"t(X  rIxV0E&# ]{ |[~-,  U:f## of Spikes:%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.'%s': +22 .282<2C21V222222222 +2(2('3(P3y333d3 4 4 4$454:4B4 J4 T4^4 e4 +o4Uz4<46 5DD555555555 6 66 #616 +H6 +S6 +^6i6 z6 666 6 +6 6 6 +66 7!787O7 `7 +n7 y777 7 +77 +7 +7 +77 +8 8 +(838G8 [8 +i8 +t8 +8 8 +8 8 +88888 9 9+929F9Z9 +k9v9 +999 999(9: -: +;: F: T:b: v: +: :: +: :: :: : +: +; ; +,; 7;E;d;u;; ;; ;; +;; ; < <4<E< b<p< < +<<< << <<= +&= +1=<=K=g=)y= == +=== > > +> +9> +D>O> `> +n> y> +>>> > +> +>> +> > +> + +? +? + ?+?E?V? +j?u? ?? ? +?? +? ??@ @ ++@6@ +M@%X@ ~@@ +@@@ +@ @ +@@ + AA A /A=AQA'qA +AAA AAAA +B B B +1B +MIM]M +qM +|M MMMMMMN0(N YN +fNqNN NN NN +NN N + O +O "O 0O >O +LOWOfO +zOO O +O OOO +O +OO PP)P9PIPYPnPwPPPPPP +PPP +P QQ$Q5Q  ~ / _@X ly |W} )E   } _ py 7=AYI_qv';MUk] gi\ao5-=! N3% $ [y$P?R) Ja2 `sB|c;1(e H +  [,f#8-j  ij<EA!XeW@@ k& eW ;T 9 v ^ XmBhQt'JwD Klr!|_* eOVhU 11OtS*)'I;  C>b 7353yIpn([ a6$/<* +J? f wcsb I/+%8epMAA 97D# ln gYddP >f YKG gzoh d VIb603\\ N< K%8[  4qW *@TFa,IgB{{;o Ln|F7 mo ?Lm-~XVZ1_ xMzI +L]C- F5Xz~H  ?kC!{EWp  LA Ht  \Du , r  $w:W >z2^=&ueG.2eJ5 t6   * U[ T W0fepR XpT  |R`{Y O&y6=c(f0 t^!' '005sGi[~) + ut m  x_J m#ow 4kY',%^A{"Q3Sb/mu.O ,S[:9z`8b>HXF/[LvC;&KG &H V LJzg -K xbQh.%q -Dx?}'.7i*#k{Tp7C, -Br_ #]$|SIK > (n t4E gxr +]P8o_  S Qs^( u$<=ZOes  2UOM 63c& h f&i> @ 9N*"DP" q&w*l H=2j I E_7Z h"*",U93}np;B | z(qM@Qd;QPo a= - DF< ,S#>RiwB%(F{9qVxF3#"O?  ^qM5`Jm{ $z8EX# - oN}v $}L UQ6kM q. +:@L4~0 u\7v$0U 5  H 1Ss=w #;t E C~9Oc j7:K?Qad Kpm :!T " g 5r6r_D U !X /=wY7 >V).\ ]  *j<"G^ ^z 8^HTLOP?rks  +Sb~~(R.d RuMfXoBi L  +5} ]z /1>v  C%@n e| Q JhW" wA!'`) .+%92+:= EGM(Nc R+ K &ndR1 qx+ZG-hy` x 6'`+jE@J 9u% +J+]8DEB u . v ycZ B ` Ns4}W 1l0#  ,mi<o ]VD24 bgO ]v|6\ ntj: pgxVc<9W?l xQy4S <4V@I3c43  qh`:g;1YbMlGdZl "ZsP^nj +AP8 CtT0Z? ]' [/vc Nk Y \i +Y\ ))FS A 5NfN }yfGh02s\ay!~C4G }AU2j <  P +2F Df8  ## of Spikes:%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.'%s': Could not read header (ftell == %ld)'%s': No image data type specified'%s': 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 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 RangeAl_ternateAl_ternate tilesAlien 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 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/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 OptionsBentBevel 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...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 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: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 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 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 Selection DialogColor TransformationColor _noise:Color _variation:Color fillColor is computed from the average of all pixels under the brushColor outputColor to AlphaColor to Alpha Color PickerColor to _Alpha...Color:Color_map:Colorcube A_nalysis...Colorcube AnalysisColorcube Analysis...ColorifyColorify Custom ColorColorifying...ColoringColormap RotationColormap _Rotation...ColorsColors:CombineComm_ent:Command:CommentComment:ComposeCompose ChannelsComposing 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 updateContoursContrast: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 parametersCopy the active curve to the other borderCopy the texture of the selected paper as a backgroundCopy 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: +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 RangeAl_ternateAl_ternate tilesAlien 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 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/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 OptionsBentBevel 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...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: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 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 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 Selection DialogColor TransformationColor _noise:Color _variation:Color fillColor is computed from the average of all pixels under the brushColor outputColor to AlphaColor to Alpha Color PickerColor to _Alpha...Color:Color_map:Colorcube A_nalysis...Colorcube AnalysisColorcube Analysis...ColorifyColorify Custom ColorColorifying...ColoringColormap RotationColormap _Rotation...ColorsColors:CombineComm_ent:Command:CommentComment:ComposeCompose ChannelsComposing 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 updateContoursContrast: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 parametersCopy the active curve to the other borderCopy the texture of the selected paper as a backgroundCopy 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' 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.Cre_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 starCreated with The GIMPCreating diffraction pattern...Cro_pCropping...Cu_rve:CubismCubistic Transformation...Cumulative layers (combine)Curl LayerCurl LocationCurl OrientationCurrent gradientCurrent gradient (reversed)Current:Curve BendCurve Bend...Curve TypeCurve for BorderCustom Color:Custom gradientCutCyanCyan:Cyan_KCylinderCylinder lengthCylinder radiusDCT method:DICOM imageD_eform amount:D_ivisor:DarkerDarker:Data CompressionData FormattingData formattingDate:DecomposeDecompose to _layersDecomposing...DefaultDefault Map TypeDefault _URL:Default chunks type:Default frame delay:Default frame disposal:Define Circle/Oval areaDefine New PrinterDefine Polygon areaDefine Rectangle areaDeform ModeDegree of slope of each piece's edgeDegreesDeinterlaceDeinterlace...Delay inserted to prevent evil CPU-sucking anim.DeleteDelete AreaDelete FractalDelete GFlareDelete PointDelete an objectDelete currently selected fractalDelete selected areaDelete selected smvectorDelete selected vectorDeletes the selected PresetDelta functionDensity:Depth MergeDepth firstDepth map:Depth-merging...Deriving Smooth Palette...Des_peckle...Des_tripe...Description:Deselect _allDespeckleDestination channel:Destination color rangeDestination:DestripeDestriping...Deviation threshold:DiamondDifference of Gaussians...DifferentialDiffraction PatternsDiffuse:DigitsDimensionsDimensions:DirectionDirection VectorDirectionalDirectional lightDirectionsDirections:DisplaceDisplacing...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:Dither size:DivisionDo _PreviewDo you really want to discard your changes?Do you really want to overwrite?DoG Edge DetectDocument not foundDraw 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 readingEXIF data will be ignored.E_levation:E_nable bump mappingE_nable environment mappingE_rodeE_xtendEach piece has curved sidesEach piece has straight sidesEdge AffectedEdge DetectionEdge Detection...Edge darken:EdgesEditEdit Area Info...Edit FlameEdit Map Info...Edit ObjectEdit area info...Edit fractal nameEdit map infoEdit selected area infoEditing read-only object - you will not be able to save itEffect ChannelEffect OperatorEmbossEn_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 LayerEnvironment image to useError during open of FITS fileError during writing indexed/gray imageError 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 starting ghostscript: %sError 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 distributedExp.:Export PreviewExtract ChannelsFG colorFITS file keeps no displayable imagesFITS save cannot handle images with alpha channelsF_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 IntegerFeatherFileFile "%s" saved.File '%s' doesn't seem to be an IFS Fractal file.File '%s' exists. +%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.Cre_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 curveCreate bezier curve. Shift + Button ends object creation.Create circleCreate ellipseCreate guides...Create lineCreate new imageCreate reg polygonCreate spiralCreate starCreated with The GIMPCreating diffraction pattern...Cro_pCropping...Cu_rve:CubismCubistic Transformation...Cumulative layers (combine)Curl LayerCurl LocationCurl OrientationCurrent gradientCurrent gradient (reversed)Current:Curve BendCurve Bend...Curve TypeCurve for BorderCustom Color:Custom gradientCutCyanCyan:Cyan_KCylinderCylinder lengthCylinder radiusDCT method:DICOM imageD_eform amount:D_ivisor:DarkerDarker:Data CompressionData FormattingData formattingDate:DecomposeDecompose to _layersDecomposing...DefaultDefault Map TypeDefault _URL:Default chunks type:Default frame delay:Default frame disposal:Define Circle/Oval areaDefine New PrinterDefine Polygon areaDefine Rectangle areaDeform ModeDegree of slope of each piece's edgeDegreesDeinterlaceDeinterlace...Delay inserted to prevent evil CPU-sucking anim.DeleteDelete AreaDelete FractalDelete GFlareDelete PointDelete an objectDelete currently selected fractalDelete selected areaDelete selected smvectorDelete selected vectorDeletes the selected PresetDelta functionDensity:Depth MergeDepth firstDepth map:Depth-merging...Deriving Smooth Palette...Des_peckle...Des_tripe...Description:Deselect _allDespeckleDestination channel:Destination color rangeDestination:DestripeDestriping...Deviation threshold:DiamondDifference of Gaussians...DifferentialDiffraction PatternsDiffuse:DigitsDimensionsDimensions:DirectionDirection VectorDirectionalDirectional lightDirectionsDirections:DisplaceDisplacing...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:Dither size:DivisionDo _PreviewDo you really want to discard your changes?Do you really want to overwrite?DoG Edge DetectDocument not foundDraw 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 readingEXIF data will be ignored.E_levation:E_nable bump mappingE_nable environment mappingE_rodeE_xtendEach piece has curved sidesEach piece has straight sidesEdge AffectedEdge DetectionEdge Detection...Edge darken:EdgesEditEdit Area Info...Edit FlameEdit Map Info...Edit ObjectEdit area info...Edit fractal nameEdit map infoEdit selected area infoEditing read-only object - you will not be able to save itEffect ChannelEffect OperatorEmbossEn_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 LayerEnvironment image to useError during open of FITS fileError during writing indexed/gray imageError 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 starting ghostscript: %sError 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 distributedExp.:Export PreviewExtract ChannelsFG colorFITS file keeps no displayable imagesFITS save cannot handle images with alpha channelsF_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 IntegerFeatherFileFile "%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 fileFile already existsFile not in a supported format.File 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 kFilmFilterFilter Pack SimulationFinding Animation Background...Finding Edges...First Destination ColorFirst GfigFirst Source ColorFirst colorFix seedFlameFlame works only on RGB drawables.FlareFXFlipFloating-PointFlowingFo_reground colorFocus the brush strokes around the center of the imageForce baseline JPEGForegroundForeground / background colorsFractal ParametersFractal TraceFractal TypeFractal name:FractalExplorer GradientFractional PixelsFrame %dFrame %d (%d%s)Frame %d of %dFrame disposal where unspecified: FrequenciesFrequency (rows):FromFrom ClipboardFrom ColorFrom gradientFrom paperFrom reverse gradientFrom:Front:FullFunctionFunction type:Fuzzy SelectG-QbistGEE-SLIMEGEE-ZOOMGFlareGFlare EditorGIF OptionsGIF WarningGIF imageGIMP ExtensionGIMP Help browserGIMP Plug-InGIMP Table MagicGIMP Windows Icon PluginGIMP brushGIMP brush (animated)GIMP brush file appears to be corrupted.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...Glow Paint OptionsGr_eyGrabGrab _AfterGrab a single windowGrab the whole screenGradientGradient Flare...Gradient Map...Gradient fillGradientsGraphic 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 are pre-defined rectangles covering the image. You define them by their width, height, and spacing from each other. This allows you to rapidly create the most common image map type - image collection of "thumbnails", suitable for navigation bars.Guides...Guillotine...HSVHTML Page OptionsHTML tableH_ighlight:H_ighlightsH_ueH_ue:He_xagonsHeight (pixels):Height:Help ID '%s' unknownHey where has the object gone ?High _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_ld the minimal channelsHo_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.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 _frequency:Hue _phaseshift:Hue:I don't careIDIFS FractalIFS Fractal Render OptionsIFS Fractal: BlackIFS Fractal: BlueIFS Fractal: GreenIFS Fractal: RedIFS Fractal: TargetITER:IWarpI_ntensityI_nteractiveI_nvert bumpmapI_nverted imageI_solateIcon #%iIcon detailsIf 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_ageImageImage / Output SettingsImage ComposingImage SelectionImage SizeImage TypesImage _Type:Image _height:Image dimensions: %d x %dImage is not a gray image (bpp=%d)Image 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 StyleJuliaKeep _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 strokeLightLight 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_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 _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 borderMo_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 objectMovementMy first fractalNL FilterNL Filter...NameNeon DetectionNeon...New FractalNew GFlareNew UnitNew printer...New seedNewsprin_t...NewsprintNewsprint...No %s in gimprc: +Line %d Option section incorrectFile '%s' is not a FractalExplorer fileFile already existsFile not in a supported format.File 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 kFilmFilterFilter Pack SimulationFinding Animation Background...Finding Edges...First Destination ColorFirst GfigFirst Source ColorFirst colorFix seedFlameFlame works only on RGB drawables.FlareFXFlipFloating-PointFlowingFo_reground colorFocus the brush strokes around the center of the imageForce baseline JPEGForegroundForeground / background colorsFractal ParametersFractal TraceFractal TypeFractal name:FractalExplorer GradientFractional PixelsFrame %dFrame %d (%d%s)Frame %d of %dFrame disposal where unspecified: FrequenciesFrequency (rows):FromFrom ClipboardFrom ColorFrom gradientFrom paperFrom reverse gradientFrom:Front:FullFunctionFunction type:Fuzzy SelectG-QbistGEE-SLIMEGEE-ZOOMGFlareGFlare EditorGIF OptionsGIF WarningGIF imageGIMP ExtensionGIMP Help browserGIMP Plug-InGIMP Table MagicGIMP Windows Icon PluginGIMP brushGIMP brush (animated)GIMP brush file appears to be corrupted.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...Glow Paint OptionsGr_eyGrabGrab _AfterGrab a single windowGrab the whole screenGradientGradient Flare...Gradient Map...Gradient fillGradientsGraphic 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 are pre-defined rectangles covering the image. You define them by their width, height, and spacing from each other. This allows you to rapidly create the most common image map type - image collection of "thumbnails", suitable for navigation bars.Guides...Guillotine...HSVHTML Page OptionsHTML tableH_ighlight:H_ighlightsH_ueH_ue:He_xagonsHeight (pixels):Height:Help ID '%s' unknownHey where has the object gone ?High _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_ld the minimal channelsHo_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.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 _frequency:Hue _phaseshift:Hue:I don't careIDIFS FractalIFS Fractal Render OptionsIFS Fractal: BlackIFS Fractal: BlueIFS Fractal: GreenIFS Fractal: RedIFS Fractal: TargetITER:IWarpI_ntensityI_nteractiveI_nvert bumpmapI_nverted imageI_solateIcon #%iIcon detailsIf 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_ageImageImage / Output SettingsImage ComposingImage SelectionImage SizeImage TypesImage _Type:Image _height:Image dimensions: %d x %dImage is not a gray image (bpp=%d)Image 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 StyleJuliaKeep _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_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 _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 borderMo_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 objectMovementMy 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 _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)Optimizing Animation...OptionsOr_ientationOrientationOrientation 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 SetupPagecurl 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 imagePlacementPlanePlasmaPlasma...Play/StopPlayback:Please check your installation.Plot a graph of the settingsPlug-In BrowserPluralPo_larization:PointPoint lightPolarPolarizePolarizing...PolygonPortraitPositionPosition X:Position Y:Position Z:PostScript documentPostScript save cannot handle images with alpha channelsPre_viewPreferencesPreserve _luminosityPreserve the original image as a backgroundPreviewPreview SizePreview _size:Preview as You DragPrewittPrim's algorithmPrint Color AdjustPrint and -Save SettingsPrint to FilePrinter Model:Printer SettingsPrinter doesn't support bitmapsPrinter model:Printer name:Printing...Probability Gradient:Procedure BrowserProcedure _BrowserProgressivePropagatePropagating Value ChannelPropagating _Alpha ChannelQbist ...Quality:RGBRGB Save TypeRGBARGBA/GRAYA drawable is not selected.RLERLE compressionR_adius 2:R_adius:R_andom hue:R_andom seed:R_andomization (%):R_ecursiveR_edR_ed threshold:R_epeat:R_everseRadialRadial Gradient:RadiansRadians/PiRadiusRadius:Raise selected objectRaise selected object to topRando_m saturation:RandomRandom Hurl 1.7Random Pick 1.7Random Seed:Random Slur 1.7Random _seed:Random seedRandom sharedRandom, ch. independentRandomlyRandoms from seedRandoms from seed (shared)RawRaw Image DataRaw Image LoaderRaw Image SaveRays Paint OptionsRe_centerRe_dReads the selected Preset into memoryRealtime PreviewRecompute CenterRecompute preview imageRectangleRedRed _frequency:Red _phaseshift:Red:Redness_cr470:Redness_cr470f:Redness_cr709:Redness_cr709f:RedoRedo last zoomRedrawRedraw previewReduce _LuminanceReduce _SaturationReflectivityRefresh the Preview windowRegular Polygon Number of SidesRelati_ve linkRelative probability:Released under the GNU General Public LicenseRelief:Remap Colorized...Remo_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...ReplaceReread the folder of PresetsRescan GradientsRescan for FractalsReset parameters to default valuesReset the active curveResize area's?ResolutionResolution:Resulting Guide Bounds: %d,%d to %d,%d (%d areas)Resulting Guide Bounds: 0,0 to 0,0 (0 areas)Return ValuesRevert to the original imageRewindRightRight 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:RoughnessRoundRunLength EncodedSUN Rasterfile imageSUNRAS save cannot handle images with alpha channelsSVG file does not +Save SettingsPrint to FilePrinter Model:Printer SettingsPrinter doesn't support bitmapsPrinter model:Printer name:Printing...Probability Gradient:Procedure BrowserProcedure _BrowserProgressivePropagatePropagating Value ChannelPropagating _Alpha ChannelQbist ...Quality:RGBRGB Save TypeRGBARGBA/GRAYA drawable is not selected.RLERLE compressionR_adius 2:R_adius:R_andom hue:R_andom seed:R_andomization (%):R_ecursiveR_edR_ed threshold:R_epeat:R_everseRadialRadial Gradient:RadiansRadians/PiRadiusRadius:Raise selected objectRaise selected object to topRando_m saturation:RandomRandom Hurl 1.7Random Pick 1.7Random Seed:Random Slur 1.7Random _seed:Random seedRandom sharedRandom, ch. independentRandomlyRandoms from seedRandoms from seed (shared)RawRaw Image DataRaw Image LoaderRaw Image SaveRays Paint OptionsRe_centerRe_dReads the selected Preset into memoryRealtime PreviewRecompute CenterRecompute preview imageRectangleRedRed _frequency:Red _phaseshift:Red:Redness_cr470:Redness_cr470f:Redness_cr709:Redness_cr709f:RedoRedo last zoomRedrawRedraw previewReduce _LuminanceReduce _SaturationReflectivityRefresh the Preview windowRegular Polygon Number of SidesRelati_ve linkRelative probability:Released under the GNU General Public LicenseRelief:Remap Colorized...Remo_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...ReplaceReread the folder of PresetsRescan GradientsRescan for FractalsReset parameters to default valuesReset the active curveResize area's?ResolutionResolution: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...Retinex: Filtering...Return ValuesRevert to the original imageRewindRightRight 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:RoughnessRoundRunLength EncodedSUN Rasterfile imageSUNRAS save cannot handle images with alpha channelsSVG 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_tripedS_ubject:S_wapS_wirl CCWSa_ve alpha channel (RGBA/RGB)SameSample Analyze...Sample ColorizeSample _density:Sample:Samples the color from the pixel in the center of the brushSat_urationSatu_rationSaturationSaturation VariationsSaturation 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 Brush PipeSave 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 current settings to the specified fileSave 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: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 Flares Paint OptionsSecond Source ColorSecond colorSeconds DelaySeconds delaySeed of Random (only for "From Seed" Modes)Seed:Selec_tion In ContextSelectSelect AllSelect ColorSelect Film ColorSelect HTML fileSelect Image FileSelect NextSelect Number ColorSelect Palette File to LoadSelect Pixels bySelect PreviousSelect RegionSelect _AllSelect _allSelect allSelect an objectSelect contiguous regionSelect contiguous regionsSelect existing areaSelect folder and rescan collectionSelect lightsource colorSelect next smvectorSelect next vectorSelect previous smvectorSelect previous vectorSelect the orientation: portrait, landscape, upside down, or seascape (upside down landscape)Select your printer modelSelect:Selected:SelectionSelection To Path Advanced SettingsSelection size is not even. +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 Brush PipeSave 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 current settings to the specified fileSave 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 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 Flares Paint OptionsSecond Source ColorSecond colorSeconds DelaySeconds delaySeed of Random (only for "From Seed" Modes)Seed:Selec_tion In ContextSelectSelect AllSelect ColorSelect Film ColorSelect HTML fileSelect Image FileSelect NextSelect Number ColorSelect Palette File to LoadSelect Pixels bySelect PreviousSelect RegionSelect _AllSelect _allSelect allSelect an objectSelect contiguous regionSelect contiguous regionsSelect existing areaSelect folder and rescan collectionSelect lightsource colorSelect next smvectorSelect next vectorSelect previous smvectorSelect previous vectorSelect the orientation: portrait, landscape, upside down, or seascape (upside down landscape)Select 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 BackSend as MailSeparate to:September 31, 1999Set light source colorSet 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 width of the printSettingsSettings for this MapfileSetup PrinterSetup printer...Sha_dowsShadow blur:Shadow darken:Shadow depth:Shadows:Shape of Second FlaresSharp edgesSharpenSharpening...Shear:ShiftShift _amount:Shift _horizontallyShift _verticallyShifting...Should an Inverse Effect be done?Should the Luminosity be preserved?ShowShow Line FrameShow _Preview in image windowShow all objectsShow area URL _tipShow area _handlesShow colorShow control pointsShow gridShow imageShow next objectShow positionShow preview _wireframeShow previous objectShow selectionShow/hide preview wireframeSi_ngular:Sides:SierpinskiSimpleSin_usoidalSineSingularSinusSinus: rendering...SinusoidalSizeSize (%):Size Factor Gradient:Size Map EditorSize:Sizes:SmearSmoo_th Palette...Smoo_thingSmoot_hSmooth PaletteSmooth samplesSmoothing parametersSmoothing:Smoothness of AliasingSmvectorsSnap to gridSobelSobel Edge Detecting...Sobel Edge DetectionSobel _HorizontallySobel _VerticallySolidSolid NoiseSolid Noise...Solid colored backgroundSolid colorsSome data has been changed!Sorry, I can save only INDEXED and GRAY images.Sorry, channels and masks can not be rotated.Source 1:Source 2:Source channel:Source color rangeSource...Sp_ike points:Sp_read...Spa_tial oversample:Spacing (percent):Spacing:SparkleSparkling...Spatial TransformationSpatial _filter radius:Specified 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 DesignerSphere _Designer...SphericalSpi_ke angle (-1: random):SpiderSpik_e density:Spike Thickness:SpiralSpiral Number of TurnsSpot Radius:SpotsSpreadSpread AmountSpreading...St_rength exp.:StandardStandard (R,G,B)Star Number of PointsStart _index:Start angle:Start offset:StepStep size:Stop when pixel differences are smaller than this valueStretchStretch _HSVStroke _density:StrongStyleSu_perNova...Subdivide:Subsampling:SuperNovaSuperNova Color PickerSw_irl CWSwap the two curvesSwirlSwitch to "From seed" with the last seedSwitch 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 +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 width of the printSettingsSettings for this MapfileSetup PrinterSetup printer...Sha_dowsShadow blur:Shadow darken:Shadow depth:Shadows:Shape of Second FlaresSharp edgesSharpenSharpening...Shear:ShiftShift _amount:Shift _horizontallyShift _verticallyShifting...Should an Inverse Effect be done?Should the Luminosity be preserved?ShowShow Line FrameShow _Preview in image windowShow all objectsShow area URL _tipShow area _handlesShow colorShow control pointsShow gridShow imageShow next objectShow positionShow preview _wireframeShow previous objectShow selectionShow/hide preview wireframeSi_ngular:Sides:SierpinskiSimpleSin_usoidalSineSingularSinusSinus: rendering...SinusoidalSizeSize (%):Size Factor Gradient:Size Map EditorSize:Sizes:SmearSmoo_th Palette...Smoo_thingSmoot_hSmooth PaletteSmooth samplesSmoothing parametersSmoothing:Smoothness of AliasingSmvectorsSnap to gridSobelSobel Edge Detecting...Sobel Edge DetectionSobel _HorizontallySobel _VerticallySoftglowSolidSolid NoiseSolid Noise...Solid colored backgroundSolid colorsSome data has been changed!Sorry, I can save only INDEXED and GRAY images.Sorry, channels and masks can not be rotated.Source 1:Source 2:Source channel in file:Source channel:Source color rangeSource...Sp_ike points:Sp_read...Spa_tial oversample:Spacing (percent):Spacing:SparkleSparkling...Spatial TransformationSpatial _filter radius:Specified 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 DesignerSphere _Designer...SphericalSpi_ke angle (-1: random):SpiderSpik_e density:Spike Thickness:SpiralSpiral Number of TurnsSpot Radius:SpotsSpreadSpread AmountSpreading...St_rength exp.:StandardStandard (R,G,B)Star Number of PointsStart _index:Start angle:Start offset:StepStep size:Stop when pixel differences are smaller than this valueStretchStretch _HSVStroke _density:StrongStyleSu_perNova...Subdivide:Subsampling:SuperNovaSuperNova Color PickerSw_irl CWSwap the two curvesSwirlSwitch to "From seed" with the last seedSwitch 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 amount of highlighting on the edges of each pieceThe angle span of the first brush to createThe 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 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, @@ -438,12 +445,12 @@ Currently this is not supported.XY position:X_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)Zoom scale:Zoom to_3x3_Abbreviation:_About ImageMap_Adaptive_Additive_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_Blinds..._Blue_Blue:_Blur_Blur radius:_Border Average..._Border:_Bottom-left_Bottom:_Box_Bright:_Brightness_Brightness:_Brush_Bucket size:_Bump Map_Bump Map..._Bump map:_Bumpmap_Checkerboard..._Clear_Color Enhance_Color Exchange..._Colorify..._Contents_Convolution Matrix..._Copy_Cubism..._Curve Bend..._Decompose..._Deform radius:_Deinterlace..._Delay between frames where unspecified:_Depth Merge..._Depth:_Derivative_Description:_Detail:_Diffraction Patterns..._Digits:_Dilate_Displace..._Displacement:_Distorted_Divisions:_Dots_Edge enhancement_Edge..._Edit_Effect Image:_Elevation:_Emboss_Emboss..._Encapsulated PostScript_Entire Image_Environment Map_Explicit tile_Exponent:_FG/BG lighting_Factor:_Factory defaults_File_Filename:_Film..._Filter Pack..._Filter length:_Find Backdrop_Fit height to images_Flame..._FlareFX..._Font:_Force_Force tiling?_Foreground & background_Foreground color_Foreground to peaks_Format:_Fractal Explorer..._Fractal Trace..._Fractals_Free_Ftp Site_GFlare..._GIF comment:_GIMPressionist..._Gamma:_Gaussian Blur..._General_Generate full HTML document_Gfig..._Glass Tile..._Glowing:_Gopher_Gradient_Gradient Map_Gray:_Green_Green:_Grey_Grid_Grid size:_Grid..._Grow_Guillotine_HSL color model_Height_Height:_Help_Hex_Hidden_Hold the maximal channels_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_Input SPI:_Insert_Intensity:_Interlace_Interlacing (Adam7)_Invert_JPEG_JavaScript_Jigsaw..._Keep aspect ratio_Keep original surroundings_Keep sign of result (one direction only)_Kill_LZW_Laplace_Large staggered_Left_Left Start at:_Lens refraction index:_Light_Lighting Effects..._Limit line width_Linear_Lines_Link_Load defaults_Lock channels_Loop forever_Lower_MIME_Mail Image..._Make Seamless_Make surroundings transparent_Map backwards_Map type:_Mapping_Mask file extension:_Mask radius:_Mask size:_Material_Max (%):_Max Depth:_Max RGB..._Max. delta:_Maze..._Middle value to peaks_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_Normal_Normalize_Number height:_Number of segments:_Opacity:_Optimize (Difference)_Pagecurl..._Palette Type:_Paper Tile..._Parameters_Percent black:_Period:_Phase:_Photocopy..._Pick..._Pinch amount:_Ping Pong_Pitted surfaces_Pixelize..._Plasma..._Playback..._Plug-In Browser_Plural:_Polished:_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_Remove Backdrop_Rendering_Require default URL_Retain tilability_Right_Right Border_Ripple..._Rotated_Sample Colorize..._Saturation_Saturation:_Save comment to file_Save defaults_Scatter RGB..._Screen Shot..._Search depth:_Search:_Second Flares_Selective Gaussian Blur..._Semi-Flatten_Sender:_Set surroundings to background color_Set surroundings to index 0_Settings_Shade under curl_Sharpen..._Sharpness:_Shift..._Shiny:_Show cursor_Sinus..._Size_Size:_Slur..._Small Tiles..._Smear_Smoothing:_Snap-To Grid Enabled_Sobel..._Solid Noise..._Sparkle..._Speed:_Spike length:_Spokes:_Spot function:_Square_Squares_Staggered_Strength:_Stretch Contrast_Stroke_Symbol:_TWAIN..._Target frame name/ID: (optional - used for FRAMES only)_Thickness:_Threshold_Threshold Alpha..._Threshold:_Tile bumpmap_Tile size:_Tile..._Title:_Tools_Top Start at:_Top-right_Top:_Transparent_URL to activate when this area is clicked: (required)_UnOptimize_Undo_Undo %s_Unit Editor_Unsharp Mask..._Update_Upper_Upper Border_Upper threshold:_Use GLib types (guint8*)_Use background color_Use cellspan_Use double-sized grab handles_Use intensity algorithm_Use the (invisible) bottom layer as the base_Uuencode_Value_Value Invert_Value Propagate..._Value:_Van Gogh (LIC)..._Variation:_Vert. Spacing:_Vertical_Vertical style:_Vertical:_View_Warp_Warp..._Waterlevel:_Wavelength:_Waves..._Web Site_Whirl angle:_White_White level:_Wide-striped_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:_Zealous Crop_Zoom_Zoom:`Default' is created.a _Single Windowafteralphaautostretch_hsv: cmap was NULL! Quitting... +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:Zoom to_3x3_Abbreviation:_About ImageMap_Adaptive_Additive_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_Blinds..._Blue_Blue:_Blur_Blur radius:_Border Average..._Border:_Bottom-left_Bottom:_Box_Bright:_Brightness_Brightness:_Brush_Bucket size:_Bump Map_Bump Map..._Bump map:_Bumpmap_Checkerboard..._Clear_Color Enhance_Color Exchange..._Colorify..._Contents_Convolution Matrix..._Copy_Cubism..._Curve Bend..._Decompose..._Deform radius:_Deinterlace..._Delay between frames where unspecified:_Depth Merge..._Depth:_Derivative_Description:_Detail:_Diffraction Patterns..._Digits:_Dilate_Displace..._Displacement:_Distorted_Divisions:_Dots_Dynamic:_Edge enhancement_Edge..._Edit_Effect Image:_Elevation:_Emboss_Emboss..._Encapsulated PostScript_Entire Image_Environment Map_Explicit tile_Exponent:_FG/BG lighting_Factor:_Factory defaults_File_Filename:_Film..._Filter Pack..._Filter length:_Find Backdrop_Fit height to images_Flame..._FlareFX..._Font:_Force_Force tiling?_Foreground & background_Foreground color_Foreground to peaks_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_Hex_Hidden_High_Hold the maximal channels_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_Input SPI:_Insert_Intensity:_Interlace_Interlacing (Adam7)_Invert_JPEG_JavaScript_Jigsaw..._Keep aspect ratio_Keep original surroundings_Keep sign of result (one direction only)_Kill_LZW_Laplace_Large staggered_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 Seamless_Make surroundings transparent_Map backwards_Map type:_Mapping_Mask file extension:_Mask radius:_Mask size:_Material_Max (%):_Max Depth:_Max RGB..._Max. delta:_Maze..._Middle value to peaks_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_Normal_Normalize_Number height:_Number of segments:_Opacity:_Optimize (Difference)_Pagecurl..._Palette Type:_Paper Tile..._Parameters_Percent black:_Period:_Phase:_Photocopy..._Pick..._Pinch amount:_Ping Pong_Pitted surfaces_Pixelize..._Plasma..._Playback..._Plug-In Browser_Plural:_Polished:_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_Remove Backdrop_Rendering_Require default URL_Retain tilability_Retinex..._Right_Right Border_Ripple..._Rotated_Sample Colorize..._Saturation_Saturation:_Save comment to file_Save defaults_Scale division:_Scale:_Scatter RGB..._Screen Shot..._Search depth:_Search:_Second Flares_Selective Gaussian Blur..._Semi-Flatten_Sender:_Set surroundings to background color_Set surroundings to index 0_Settings_Shade under curl_Sharpen..._Sharpness:_Shift..._Shiny:_Show cursor_Sinus..._Size_Size:_Slur..._Small Tiles..._Smear_Smoothing:_Snap-To Grid Enabled_Sobel..._Softglow..._Solid Noise..._Sparkle..._Speed:_Spike length:_Spokes:_Spot function:_Square_Squares_Staggered_Strength:_Stretch Contrast_Stroke_Symbol:_TWAIN..._Target frame name/ID: (optional - used for FRAMES only)_Thickness:_Threshold_Threshold Alpha..._Threshold:_Tile bumpmap_Tile size:_Tile..._Title:_Tools_Top Start at:_Top-right_Top:_Transparent_URL to activate when this area is clicked: (required)_UnOptimize_Undo_Undo %s_Uniform_Unit Editor_Unsharp Mask..._Update_Upper_Upper Border_Upper threshold:_Use GLib types (guint8*)_Use background color_Use cellspan_Use double-sized grab handles_Use intensity algorithm_Use the (invisible) bottom layer as the base_Uuencode_Value_Value Invert_Value Propagate..._Value:_Van Gogh (LIC)..._Variation:_Vert. Spacing:_Vertical_Vertical style:_Vertical:_View_Warp_Warp..._Waterlevel:_Wavelength:_Waves..._Web Site_Whirl angle:_White_White level:_Wide-striped_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:_Zealous Crop_Zoom_Zoom:`Default' is created.a _Single Windowafteralphaautostretch_hsv: cmap was NULL! Quitting... blackblueblueness_cb470blueness_cb470fblueness_cb709blueness_cb709fbzip archivec_astretch: cmap was NULL! Quitting... 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: 2005-02-22 23:04+0100 +POT-Creation-Date: 2005-04-09 21:56+0200 PO-Revision-Date: 2005-01-09 19:30+0800 Last-Translator: Yuheng Xie Language-Team: zh_CN @@ -456,20 +463,20 @@ 没有指定图像数据类型“%s”: 没有指定图像高度“%s”: 没有指定图像宽度(没有)1 个插件界面1 个过程1 bpp,1 位 alpha,2 个调色板项32 bpp,8 位 alpha,无调色板4 bpp,1 位 alpha,16 个调色板项8 bpp,1 位 alpha,256 个调色板项<未命名>Adam D. Moss 的一个不太过时的创作 / adam@gimp.org / adam@foxbox.org / 1998-2000只有此列被选中,GIMP 退出时才会保存这个单位。替代文字(ALT)ALT 文字(_X):(可选)ASCII 艺术关于(_B)自适应超级采样(_D)添加(_D)添加边框(_D)高级(_D)全部(_L)所有的小块(_L)Alpha 加权(_L)Alpha(_L):环境(_M):数量(_M):幅度(_M):角度(_N):动画(_N)追加(_P)自动更新预览(_U)自动(_U)画笔下方的平均值(_V)缩写关于关于 Gimp-Print动作高级(_V)适应自适应超级采样(_U)添加额外的参考线添加分形探索器路径添加新的尺寸向量添加新向量正在添加百叶窗帘...正在添加棋盘...添加噪音...叠加附加信息给每一笔添加阴影效果给颜色添加随机的噪音调整前景-背景(_F)调整色彩平衡、亮度、对比度、饱和度以及抖动算法调整输出...调整闪光强度调整亮度阈值调整穗的数量调整穗的不透明度调整穗的角度(-1 表示随机选择角度)调整穗的密度调整穗的长度调整色调的随机度的大小调整饱和度的随机度的大小调整打印的青色平衡调整打印的密度(墨水量)。如果墨水在纸上是湿的或涂抹了,请降低密度;如果黑色区域颜色不纯,请提高密度。调整打印的 gamma。较大的值打印的效果更亮一些,而较小的值打印的效果更暗一些。但是跟亮度调整不一样,黑色和白色的深浅不会发生变化。调整打印的品红平衡调整预览的亮度调整打印的饱和度(色彩平衡) -使用零值可以用彩色和黑色墨水来产生灰度输出调整打印的黄色平衡正在调整前景/背景...高级组合滤镜选项高级选项影响范围交替(_T)交替的小块(_T)奇异映射 2(_2)...奇异映射 2奇异映射 2:正在变换...对齐可见图层对齐可见图层(_V)...全部 JNG全部 PNG所有的值都是胶卷高度的分数全黑全灰所有的文字区域都必须包含一个值。全白允许切割瓦片(_W)AlphaAlpha 通道Alpha:环境:当没有直接光线照射时原始颜色所显示的量量:Adam D. Moss 的一个过时的创作 / adam@gimp.org / adam@foxbox.org / 1998-2000角度偏移(_L):角度跨度:角度:角度渐变:大小随角度渐变:GIF 动画选项MNG 动画选项动画回放:边缘平滑反锯齿化的质量。越大质量越好,但是也越慢应用使用画布应用透镜(_L)...将活动渐变应用到最终图像正在使用画布...应用卷积正在应用透镜...应用组合滤镜...您确认要从列表和磁盘中删除“%s”吗?区域 #%d 设置区域设置区域列表区域:箭头如上设定Ascii宽高比:正在装配拼图...不对称度:在底部(_B)在顶部(_T)作者(_H):作者:自动正在自动拉伸对比度...正在自动拉伸 HSV...自动自动更新预览(_V)可用的图像:黑/白空/无效像素替换黑色量(_L)(%):蓝色阈值(_L):背景色(_K)后:背景背景 (%d%s)背景色背景类型背景:错误的颜色表Barnsley 1Barnsley 2Barnsley 3基址 URL(_U):基本选项弯曲切痕边缘双线性(_N)黑色和白色(_A)黑色黑色和白色黑色:混和设置百叶窗帘蓝色蓝色频率(_U):蓝色相移(_S):蓝色:蓝色差_cb470:蓝色差_cb470f:蓝色差_cb709:蓝色差_cb709f:模糊中心模糊方法模糊参数模糊半径模糊类型正在模糊...边界边界均值...边界大小边界均值皆有(_H)皆有底边界:底边界右下(_R)下:方盒亮度:浏览凹凸凹凸贴图正在凹凸贴图...凹凸贴图图像(_A):凹凸贴图按 DATAMIN/DATAMAXC 程序代码C 源代码头文件CML 探索器:覆盖文件吗?CML 探索器(_E)...CMYCMYKCX:CY:CMYK(_M)视角(_A)标题(_A)表格单元内容(_E):单元大小(_E):画笔的中心(_E)中心(_E)在这里选择(_H):圆(_I)合成(_O)...创建新图像(_R)交叉(_R)曲线(_U)青色(_Y)圆柱体(_Y)卡通(_R)计算设置只能对 RGB 图像进行操作。只能保存可绘对象!只能对图层进行操作(但在通道或蒙板中被调用)。无法创建新图像无法取得剪贴板数据。无法对未知的图像类型操作无法读取颜色项无法删除!至少要有一个渐变闪光。无法对空选区进行操作。无法对灰度或索引颜色图像进行操作。无法对索引颜色图像进行操作。无法对带蒙板的图层进行操作。无法对未知的图像类型操作。无法保存 RGB 颜色图像。请先转换成索引颜色或灰度。无法保存带有 alpha 通道的图像。无法保存带有 alpha 通道的图像。卡通单元大小:单元衬垫(_P):单元间距(_S):中心中心 X(_X):中心 Y(_Y):闪光效果的中心位置超新星中心将图像置于纸的水平方向的中央将图像置于纸的中央将图像置于纸的垂直方向的中央中心:中心聚集改变箭头的顺序改变 CX 的值 (改变分形的宽高比,对除了 Mandelbrot 和 Sierpinski 以外的所有分形有效)改变 CY 的值 (改变分形的宽高比,对除了 Mandelbrot 和 Sierpinski 以外的所有分形有效)改变选中的尺寸向量的角度改变选中向量的角度改变强度的指数改变 x 坐标的第一(最小值)限制改变 y 坐标的第一(最小值)限制改变蓝色通道的亮度改变绿色通道的亮度改变红色通道的亮度改变迭代次数。该值越高,计算的细节越多,同时也将花更多时间改变映射中的颜色数量改变 x 坐标的第一(最大值)限制改变 y 坐标的第一(最大值)限制改变选中的尺寸向量的强度改变选中向量的强度改为此色改变所选画笔的 gamma(亮度)通道 #%d:通道无关参数通道混合器(_X)...通道混合器通道混合器文件操作警告通道代表通道如果您希望让表格带有标题,请选中该项。棋盘棋盘如果选中该项,GTM 将不在 TD 标签之间和之内留有空白。这只在像素级的定位控制中才有必要。双击选择分形选择 PPD 文件提高压缩等级可以减小文件大小选择您的打印机的 PPD 文件圆圆形深度(百分率)(_D):清除...清除清除透明结束时关闭曲线闭合颜色(_L)颜色取平均(_L)颜色(_L):颜色(_L)注释(_M):亮度补偿(_M)复杂度(_M):压缩 TD 标签(_M)压缩等级(_M):连续的区域(_N)对比度(_N):相关噪音(_R)列(_U):聚集颜色颜色密度颜色增强...颜色变换颜色变换...颜色变换:从颜色颜色变换:到颜色颜色函数颜色模式颜色范围映射(_M)...颜色选择对话框颜色变换颜色噪音(_N):颜色变化(_V):颜色填充颜色以画笔下方的所有像素的平均值来计算颜色输出颜色到 Alpha颜色到 Alpha 颜色拾取颜色到 Alpha(_A)...颜色:颜色表(_M):色系分析(_N)...色系分析色系分析...单色化单色化自定义颜色正在单色化...颜色颜色表旋转颜色表旋转(_R)...颜色颜色:组合注释(_E):命令:注释注释:合成合成通道正在组合图像...正在合成...合成:压缩后大小:%s压缩方式压缩率(近似):%d 比 1压缩类型保持宽高比正在使用 Prim 的算法构造迷宫...正在使用 Prim 的算法构造可平铺的迷宫...选区周围持续更新等高线对比度:控制控制高光的亮度请先把图像转换为 RGB!卷积矩阵卷积矩阵无法在小于 3 个像素的图层上进行。卷积复制复制渐变闪光复制设置复制一个对象复制参数将活动曲线复制至对边复制选中的画纸材质作为背景复制到剪贴板正在复制 IFS 到图像 (%d/%d)...正在复制...版权所有(c) 1999-2004 Maurits Rijk版权所有:余弦无法创建工作目录“%s”:%s无法执行指定的 Web 浏览器: +使用零值可以用彩色和黑色墨水来产生灰度输出调整打印的黄色平衡正在调整前景/背景...高级组合滤镜选项高级选项影响范围交替(_T)交替的小块(_T)奇异映射 2(_2)...奇异映射 2奇异映射 2:正在变换...对齐可见图层对齐可见图层(_V)...全部 JNG全部 PNG所有的值都是胶卷高度的分数全黑全灰所有的文字区域都必须包含一个值。全白允许切割瓦片(_W)AlphaAlpha 通道Alpha:环境:当没有直接光线照射时原始颜色所显示的量量:Adam D. Moss 的一个过时的创作 / adam@gimp.org / adam@foxbox.org / 1998-2000角度偏移(_L):角度跨度:角度:角度渐变:大小随角度渐变:GIF 动画选项MNG 动画选项动画回放:边缘平滑反锯齿化的质量。越大质量越好,但是也越慢应用使用画布应用透镜(_L)...将活动渐变应用到最终图像正在使用画布...应用卷积正在应用透镜...应用组合滤镜...您确认要从列表和磁盘中删除“%s”吗?区域 #%d 设置区域设置区域列表区域:箭头如上设定Ascii宽高比:正在装配拼图...不对称度:在底部(_B)在顶部(_T)作者(_H):作者:自动正在自动拉伸对比度...正在自动拉伸 HSV...自动自动更新预览(_V)可用的图像:黑/白空/无效像素替换黑色量(_L)(%):蓝色阈值(_L):背景色(_K)后:背景背景 (%d%s)背景色背景类型背景:错误的颜色表Barnsley 1Barnsley 2Barnsley 3基址 URL(_U):基本选项弯曲切痕边缘双线性(_N)黑色和白色(_A)黑色黑色和白色黑色:混和设置百叶窗帘蓝色蓝色频率(_U):蓝色相移(_S):蓝色:蓝色差_cb470:蓝色差_cb470f:蓝色差_cb709:蓝色差_cb709f:模糊中心模糊方法模糊参数模糊半径模糊类型正在模糊...边界边界均值...边界大小边界均值皆有(_H)皆有底边界:底边界右下(_R)下:方盒亮度:浏览凹凸凹凸贴图正在凹凸贴图...凹凸贴图图像(_A):凹凸贴图按 DATAMIN/DATAMAXC 程序代码C 源代码头文件CML 探索器:覆盖文件吗?CML 探索器(_E)...CMYCMYKCX:CY:CMYK(_M)视角(_A)标题(_A)表格单元内容(_E):单元大小(_E):画笔的中心(_E)中心(_E)在这里选择(_H):圆(_I)合成(_O)...创建新图像(_R)交叉(_R)曲线(_U)青色(_Y)圆柱体(_Y)卡通(_R)计算设置只能对 RGB 图像进行操作。只能保存可绘对象!只能对图层进行操作(但在通道或蒙板中被调用)。无法创建新图像无法取得剪贴板数据。无法对未知的图像类型操作无法读取颜色项无法删除!至少要有一个渐变闪光。无法对空选区进行操作。无法对灰度或索引颜色图像进行操作。无法对索引颜色图像进行操作。无法对带蒙板的图层进行操作。无法对未知的图像类型操作。无法从“%s”读取扩展无法从“%s”中读取页脚无法保存 RGB 颜色图像。请先转换成索引颜色或灰度。无法保存带有 alpha 通道的图像。无法保存带有 alpha 通道的图像。卡通单元大小:单元衬垫(_P):单元间距(_S):中心中心 X(_X):中心 Y(_Y):闪光效果的中心位置超新星中心将图像置于纸的水平方向的中央将图像置于纸的中央将图像置于纸的垂直方向的中央中心:中心聚集改变箭头的顺序改变 CX 的值 (改变分形的宽高比,对除了 Mandelbrot 和 Sierpinski 以外的所有分形有效)改变 CY 的值 (改变分形的宽高比,对除了 Mandelbrot 和 Sierpinski 以外的所有分形有效)改变选中的尺寸向量的角度改变选中向量的角度改变强度的指数改变 x 坐标的第一(最小值)限制改变 y 坐标的第一(最小值)限制改变蓝色通道的亮度改变绿色通道的亮度改变红色通道的亮度改变迭代次数。该值越高,计算的细节越多,同时也将花更多时间改变映射中的颜色数量改变 x 坐标的第一(最大值)限制改变 y 坐标的第一(最大值)限制改变选中的尺寸向量的强度改变选中向量的强度改为此色改变所选画笔的 gamma(亮度)通道 #%d:通道无关参数通道混合器(_X)...通道混合器通道混合器文件操作警告通道代表通道如果您希望让表格带有标题,请选中该项。棋盘棋盘如果选中该项,GTM 将不在 TD 标签之间和之内留有空白。这只在像素级的定位控制中才有必要。双击选择分形选择 PPD 文件提高压缩等级可以减小文件大小选择您的打印机的 PPD 文件圆圆形深度(百分率)(_D):清除...清除清除透明结束时关闭曲线闭合颜色(_L)颜色取平均(_L)颜色(_L):颜色(_L)注释(_M):亮度补偿(_M)复杂度(_M):压缩 TD 标签(_M)压缩等级(_M):连续的区域(_N)对比度(_N):相关噪音(_R)列(_U):聚集颜色颜色密度颜色增强...颜色变换颜色变换...颜色变换:从颜色颜色变换:到颜色颜色函数颜色模式颜色范围映射(_M)...颜色选择对话框颜色变换颜色噪音(_N):颜色变化(_V):颜色填充颜色以画笔下方的所有像素的平均值来计算颜色输出颜色到 Alpha颜色到 Alpha 颜色拾取颜色到 Alpha(_A)...颜色:颜色表(_M):色系分析(_N)...色系分析色系分析...单色化单色化自定义颜色正在单色化...颜色颜色表旋转颜色表旋转(_R)...颜色颜色:组合注释(_E):命令:注释注释:合成合成通道正在组合图像...正在合成...合成:压缩后大小:%s压缩方式压缩率(近似):%d 比 1压缩类型保持宽高比正在使用 Prim 的算法构造迷宫...正在使用 Prim 的算法构造可平铺的迷宫...选区周围持续更新等高线对比度:控制控制高光的亮度请先把图像转换为 RGB!卷积矩阵卷积矩阵无法在小于 3 个像素的图层上进行。卷积复制复制渐变闪光复制设置复制一个对象复制参数将活动曲线复制至对边复制选中的画纸材质作为背景复制到剪贴板正在复制 IFS 到图像 (%d/%d)...正在复制...版权所有(c) 1999-2004 Maurits Rijk版权所有:余弦无法创建工作目录“%s”:%s无法执行指定的 Web 浏览器: %s无法从图像 %d 获取图层无法解析“%s”无法加载 PNG 默认值无法以 SUN-raster 文件打开“%s”无法打开“%s”并读取。无法打开“%s”并读取:%s无法打开“%s”并写入。无法打开“%s”并写入:%s无法解析指定的 Web 浏览器命令: -%s无法从“%s”读取 XWD 文件头无法从“%s”读取颜色项无法从“%s”读取文件头无法写入“%s”:%s无法加载管道中的一个画笔,放弃。无法无损地保存透明度,以不透明保存。无法读取文件:无法保存文件:无法保存资源文件:无法进一步减少颜色。保存为不透明。创建新图像(_A)创建创建参考线创建新的图层(_N)创建直方图(_H)使用渐变编辑器中的渐变创建颜色表按上面指定的选项(颜色密度/函数)创建颜色表。结果可以在预览图像中看到应用滤镜时创建新的图像创建一个新的单位。以当前选中的单位为模板创建一个新的单位。创建弧创建 bezier 曲线。Shift + 按钮结束对象创建。创建圆创建椭圆创建参考线...创建线段创建新图像创建正多边形创建螺旋线创建星形Created with The GIMP正在创建衍射图案...剪裁(_P)正在剪裁...曲线(_R):立体派立体派艺术变换...累积各图层(组合)卷曲图层卷曲位置卷曲方向当前渐变当前渐变(反向)当前:曲线扭曲曲线扭曲...曲线类型曲线对应的边缘自定义颜色:自定义渐变剪切青色青色:青色_黑圆柱体圆柱体长度圆柱体半径DCT 方法:DICOM 图像变形量度(_E):除数(_I):稍深更暗:数据压缩数据格式数据格式日期:分解分解到图层(_L)正在分解...默认默认映像类型默认 URL(_U):默认块类型:默认帧延时:默认帧处理:定义圆/椭圆形区域定义新的打印机定义多边形区域定义矩形区域变形模式每个小块边缘的倾斜角度角度去除交错去除交错...插入延时以免造成 CPU 严重阻塞。删除删除区域删除分形删除渐变闪光删除点删除一个对象删除当前选中的分形删除选中区域删除选中的尺寸向量删除选中的向量删除选中的预设Delta 函数密度:深度合并深度优先深度图:正在深度合并...正在生成平滑色板...去除斑点(_P)...去除条纹(_T)...描述:全不选(_A)去除斑点目标通道:目标颜色范围目标:去除条纹正在去除条纹...偏差阈值:菱形高斯差分...微分衍射图案漫射:位数尺寸尺寸方向方向矢量方向方向光源方向方向数:移位正在移位...纸的底端到图像底端的距离纸的左端到图像的距离纸的左端到图像右端的距离纸的右端到图像的距离纸的顶端到图像底端的距离纸的顶端到图像的距离抖动算法:抖动大小:分割进行预览(_P)您真的要放弃您的修改吗?您真的要覆盖它吗?高斯差分边缘检测没有找到文档在图像的边缘处添加一系列火花图像的大小不一致正在绘制火焰...正在绘制网格...正在绘制迷宫...绘画设置在控制点之间连接直线。只在创建曲线时起作用投下阴影读入时遇到文件结束符EXIF 数据将被忽略。仰角(_L):启用凹凸贴图(_N)启用环境映射(_N)腐蚀(_R)扩展(_X)小块的边缘是弯曲的小块的边缘是直的边缘效果边缘检测边缘检测...边缘加深:边缘编辑编辑区域信息...编辑火焰编辑映像信息...编辑对象编辑区域信息...编辑分形名字编辑映像信息编辑选中区域的信息编辑只读对象 - 您将不能对它进行保存效果通道效果操作浮雕刻画(_G)...环境图像(_V):启用反锯齿化(_A)启用/禁用凹凸贴图(图像深度)启用/禁用环境映射(反射)启用/禁用高质量预览启用/禁用锯齿状边缘的平滑处理(反锯齿化)启用/禁用实时预览封装的 PostScript 图像(EPS)(_E)封装方式:刻画正在刻画...给已复制的渐变闪光输入一个名字给新的渐变闪光输入一个名字输入您的打印机的 PPD 文件名输入打印到您的打印机的命令。注意:请不要去掉命令字符串中的“-l”或“-oraw”,否则打印很可能会失败!输入您的逻辑打印机的名字整个图层要使用的环境图像打开 FITS 文件时出错写索引/灰度图像时出错写 RGB 图像时出错抓取指针出错GIMP 画笔文件“%s”有错GIMP 画笔管道文件有错。获取图层 ID 时出错获取屏幕抓图出错打开文件出错打开文件“%s”出错从“%s”读 BMP 文件头出错读文件出错启动 ghostscript 出错(%s)启动 ghostscript 出错:%s读取“%s”出错。文件已损坏?保存“%s”出错。无法保存图像。写输出文件时出错。错误:无法读取 XJT 属性文件“%s”。错误:XJT 属性文件“%s”为空。错误:无法加载参数。错误:这不是 CML 参数文件。均匀分布指数:导出预览提取通道前景色FITS 文件没有包含可显示图像FITS 保存无法处理带 alpha 通道的图像文件(_I)第一种颜色(_I):闪光强度(_L):因子无法打开渐变闪光文件“%s”:%s无法保存 PPM 文件“%s”:%s无法写入渐变闪光文件“%s”:%s快速整数羽化文件文件“%s”已保存。文件“%s”似乎不是 IFS 分形文件。文件“%s”已存在。 +%s无法从“%s”读取 XWD 文件头无法从“%s”读取颜色项无法从“%s”读取文件头无法写入“%s”:%s无法加载管道中的一个画笔,放弃。无法无损地保存透明度,以不透明保存。无法读取文件:无法保存文件:无法保存资源文件:无法进一步减少颜色。保存为不透明。创建新图像(_A)创建创建参考线创建新的图层(_N)创建直方图(_H)使用渐变编辑器中的渐变创建颜色表按上面指定的选项(颜色密度/函数)创建颜色表。结果可以在预览图像中看到应用滤镜时创建新的图像创建一个新的单位。以当前选中的单位为模板创建一个新的单位。创建弧创建 Bezier 曲线创建 bezier 曲线。Shift + 按钮结束对象创建。创建圆创建椭圆创建参考线...创建线段创建新图像创建正多边形创建螺旋线创建星形Created with The GIMP正在创建衍射图案...剪裁(_P)正在剪裁...曲线(_R):立体派立体派艺术变换...累积各图层(组合)卷曲图层卷曲位置卷曲方向当前渐变当前渐变(反向)当前:曲线扭曲曲线扭曲...曲线类型曲线对应的边缘自定义颜色:自定义渐变剪切青色青色:青色_黑圆柱体圆柱体长度圆柱体半径DCT 方法:DICOM 图像变形量度(_E):除数(_I):稍深更暗:数据压缩数据格式数据格式日期:分解分解到图层(_L)正在分解...默认默认映像类型默认 URL(_U):默认块类型:默认帧延时:默认帧处理:定义圆/椭圆形区域定义新的打印机定义多边形区域定义矩形区域变形模式每个小块边缘的倾斜角度角度去除交错去除交错...插入延时以免造成 CPU 严重阻塞。删除删除区域删除分形删除渐变闪光删除点删除一个对象删除当前选中的分形删除选中区域删除选中的尺寸向量删除选中的向量删除选中的预设Delta 函数密度:深度合并深度优先深度图:正在深度合并...正在生成平滑色板...去除斑点(_P)...去除条纹(_T)...描述:全不选(_A)去除斑点目标通道:目标颜色范围目标:去除条纹正在去除条纹...偏差阈值:菱形高斯差分...微分衍射图案漫射:位数尺寸尺寸方向方向矢量方向方向光源方向方向数:移位正在移位...纸的底端到图像底端的距离纸的左端到图像的距离纸的左端到图像右端的距离纸的右端到图像的距离纸的顶端到图像底端的距离纸的顶端到图像的距离抖动算法:抖动大小:分割进行预览(_P)您真的要放弃您的修改吗?您真的要覆盖它吗?高斯差分边缘检测没有找到文档在图像的边缘处添加一系列火花图像的大小不一致正在绘制火焰...正在绘制网格...正在绘制迷宫...绘画设置在控制点之间连接直线。只在创建曲线时起作用投下阴影读入时遇到文件结束符EXIF 数据将被忽略。仰角(_L):启用凹凸贴图(_N)启用环境映射(_N)腐蚀(_R)扩展(_X)小块的边缘是弯曲的小块的边缘是直的边缘效果边缘检测边缘检测...边缘加深:边缘编辑编辑区域信息...编辑火焰编辑映像信息...编辑对象编辑区域信息...编辑分形名字编辑映像信息编辑选中区域的信息编辑只读对象 - 您将不能对它进行保存效果通道效果操作浮雕刻画(_G)...环境图像(_V):启用反锯齿化(_A)启用/禁用凹凸贴图(图像深度)启用/禁用环境映射(反射)启用/禁用高质量预览启用/禁用锯齿状边缘的平滑处理(反锯齿化)启用/禁用实时预览封装的 PostScript 图像(EPS)(_E)封装方式:刻画正在刻画...给已复制的渐变闪光输入一个名字给新的渐变闪光输入一个名字输入您的打印机的 PPD 文件名输入打印到您的打印机的命令。注意:请不要去掉命令字符串中的“-l”或“-oraw”,否则打印很可能会失败!输入您的逻辑打印机的名字整个图层要使用的环境图像打开 FITS 文件时出错写索引/灰度图像时出错写 RGB 图像时出错抓取指针出错GIMP 画笔文件“%s”有错GIMP 画笔管道文件有错。获取图层 ID 时出错获取屏幕抓图出错打开文件出错打开文件“%s”出错从“%s”读 BMP 文件头出错读文件出错启动 ghostscript 出错(%s)启动 ghostscript 出错:%s读取“%s”出错。文件已损坏?保存“%s”出错。无法保存图像。写输出文件时出错。错误:无法读取 XJT 属性文件“%s”。错误:XJT 属性文件“%s”为空。错误:无法加载参数。错误:这不是 CML 参数文件。均匀分布指数:导出预览提取通道前景色FITS 文件没有包含可显示图像FITS 保存无法处理带 alpha 通道的图像文件(_I)第一种颜色(_I):闪光强度(_L):因子无法打开渐变闪光文件“%s”:%s无法保存 PPM 文件“%s”:%s无法写入渐变闪光文件“%s”:%s快速整数羽化文件文件“%s”已保存。文件“%s”似乎不是 IFS 分形文件。文件“%s”已存在。 覆盖吗?文件“%s”已损坏。 -第 %d 行选项部分错误文件“%s”不是一个分形探索器文件文件已存在不支持的文件格式。文件大小:%02.01f kB文件大小:未知文件名:文件名:%s填充填充(从下到上)填充(从左到右)填充(从右到左)填充(从上到下)以参数 k 填充胶卷滤波器组合滤镜模拟正在寻找动画背景...正在寻找边缘...第一目标颜色第一个几何图形第一源颜色第一种颜色固定种子火焰火焰只对 RGB 图像有效闪光(FlareFX)翻转浮点数流线前景色(_R)笔划聚集在图像中心附近强制基线(baseline) JPEG前景前景/背景色分形参数分形追溯分形类型分形名字:分形探索器渐变零碎的像素帧 %d帧 %d (%d%s)帧 %d/%d没有指明的帧的处理:频率频率(行):从从剪贴板从颜色取自渐变取自画纸取自反向的渐变从:前:完全功能函数类型:模糊选择G-QbistGEE-SLIMEGEE-ZOOM渐变闪光(GFlare)渐变闪光编辑器GIF 选项GIF 警告GIF 图像GIMP 扩展GIMP 帮助浏览器GIMP 插件GIMP 魔术表格GIMP Windows 图标插件GIMP 画笔GIMP 画笔(动画)GIMP 画笔文件看来已损坏。GIMP 画笔只能是灰度或 RGBAGIMP 图案炽光(_L)绿色阈值(_R):Gamma:高斯模糊高斯模糊...Gee-Slime(_S)Gee-Zoom(_Z)通用常规选项通用首选项常规选项获取样品的颜色几何图形(GFig)Gimp-Print 版本印象派艺术家(GIMPressionist)玻璃瓦片玻璃瓦片...炽光绘画选项灰色(_E)抓取抓取前延迟(_A)截取单个窗口截取整个屏幕梯度渐变闪光...渐变映射...渐变填充渐变图像平滑灰色灰色模式灰色选项灰色阈值灰度绿色绿色频率(_E):绿色相移(_A):绿色:灰色网格网格大小网格位移网格设置网格设置...网格可见性与类型网格颜色:网格设置...网格间距:网格类型:参考线参考线(Guides)是图像上一些预定义的矩形区域。您通过给出宽度、高度和之间的距离来定义它们。这使您得以快速创建最通常的图像映像类型――图像缩略图集,适用于导航条。参考线...分块...HSVHTML 页面选项HTML 表格高亮(_I):亮(_I)色调(_U)色调(_U):六边形(_X)高度(像素):高度:未知的帮助 ID “%s”嘿,那些对象都到哪去了?高质量预览(_Q)值越大效果越显著数值越大高亮越集中数值越大物体反射的光线越多(显得更亮)值越大效果影响的图像区域越小高亮:亮:保留最小的通道(_L)小孔宽度(_L):水平方向基准(_R):小孔高度(_E):保持亮度小孔间距(_A):水平水平颜色水平马蹄坏点热点 X(_X):热点 Y(_Y):坏点...一英寸等于此单位的多少倍。阴影的颜色加深多少每一笔的边缘处加深多少阴影的模糊程度色调色调旋转:色调变化色调频率(_F):色调相移(_P):色调:我不关心IDIFS 分形IFS 分形绘制选项IFS 分形:黑IFS 分形:蓝IFS 分形:绿IFS 分形:红IFS 分形:目标ITER:交互式翘曲强度(_N)交互(_N)反向凹凸贴图(_N)图像反相(_N)独立(_S)图标 #%i图标细节如果选中该项,GTM 将会输出一个带有 、 等标签的完整的 HTML 文档,而不是仅仅只有一个表格。如果选中该项,GTM 会用 ROWSPAN 和 COLSPAN 把相同颜色的矩形块替换成一个大的单元格。如果选中,映射将从右边开始,与从左边开始相反。如果没有选中,图像将沿圆周映射到一个矩形上。如果选中,图像将被映射到一个圆上。如果没有选中,映射将把底行放在中心,顶行放在外面。如果选中则相反。如果您启用这个选项,高的颜色值与低的颜色值将被对应互换如果您启用这个选项,预览将会自动重画幻象幻象...图像(_A)图像图像/输出设置图像合成图像选择图像大小图像类型图像类型(_T):图像高度(_H):图像尺寸:%d x %d图像不是灰度图像(bpp=%d)图像名字:图像大小已改变。图像间距(_I):图像类型:图像映像插件 2.2上下底表面的图像图像的大小不一致导入路径(_P)导入 SVG 的路径元素,可用于 GIMP 路径工具迭代次数(_T):反转(_V)英寸包含装饰索引索引色板类型初始值:墨水类型:输入色阶:插入点加入日期整数强度亮度等级当有光源照射时原始颜色的亮度交错GIMP 内部过程虚线虚线颜色PSD 文件中存在无效的 UTF-8 字符串画笔文件“%s”中存在无效的 UTF-8 字符串。图案文件“%s”中存在无效的 UTF-8 字符串。反转反转画纸的材质等轴迭代次数:JNGJNG + Delta PNGJPEG 压缩质量:JPEG 图像JPEG 预览JPEG 质量参数JPEG 平滑因子:拼图拼图风格Julia保留偶数区域(_E)保持图像的值保留奇数区域(_D)保持原始保持第一个值LABLZ77头部(_E)左边界(_E)长度(_E):线性(_I)Lambda横向拉普拉斯拉普拉斯...大 3x3(_E)图层 %s 没有 alpha 通道,跳过图层背景类型。复制使得进行绘画之前先复制前一图层。左左边界左:透镜效果更淡:笔划的方向由到图像中心的方向决定笔划的大小由到图像中心的方向决定笔划的方向由区域的值(亮度)决定笔划的大小由区域的值(亮度)决定光线光线 1光线 2光线 3光线 4光线 5光线 6光线设置光线方向(_D):光线强度光源在 XYZ 空间的 X 方向光源在 XYZ 空间的 X 坐标位置光源在 XYZ 空间的 Y 方向光源在 XYZ 空间的 Y 坐标位置光源在 XYZ 空间的 Z 方向光源在 XYZ 空间的 Z 坐标位置稍浅更亮:光照效果光照效果...光照预设:光源颜色:光源类型:线状线条艺术线性连接类型列表视图蜥蜴长栅格(_N)下边界(_W)加载通道混合器设置从文件中加载曲线的点加载 FITS 文件加载火焰加载分形参数加载几何图形对象集载入图像映像加载 KISS 色板加载光照预设参数加载自加载 PostScript加载 QBE 文件从文件加载分形从文件中加载曲线正在加载屏幕抓图...锁定阈值(_T)对数循环左下右下降低选中对象将选中对象降至底端低端阈值(_H):亮度_y470:亮度_y470f:亮度_y709:亮度_y709f:亮度阈值(_T):亮度频率(_U):亮度相移(_S):MNG 选项MNG 动画最大值(_A):最大深度(_X):最大高度(_X):品红(_T)品红品红:品红_黑主选项使目标图像凸起高度为零的地方变为透明使物体以外的图像变成透明Man'o'warMandelbrotMandelbrot 参数手工手工指定笔划方向手工指定笔划大小映射颜色范围将图像映射到方盒表面映射到物体(_O)...映像文件格式从顶端开始映射(_T)映射到方盒...映射到圆柱体...映射到物体映射到平面...映射到球体...映射到:正在映射颜色...大理石掩码文件材质属性矩阵Max (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)RGB 最大RGB 最大...最大撤销次数:最大内存:凸起的最大高度最大大小:迷宫介质尺寸:介质来源:介质类型:中值菜单菜单路径菜单路径/名字合并导入的路径正在合并...Microsoft WMF 文件Microsoft Windows 图标在预览中点击中键可拾取“从颜色”中: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)最小大小:将活动曲线镜像至对边修改绿色通道(_D)修改饱和度通道(_D)修改蓝色通道(_I)修改亮度通道(_I)模式模式 1(_1)模式 2(_2)修改曲线更多不透明(_E)更多高级选项更浓:更多白色(亮度大)(_W)更多黑色(亮度小)(_K)更多透明(_R)马赛克动态模糊正在进行动态模糊...移动向下移动移动边界移动选中对象移动到前端向上移动移动一个点移动一个对象移动我的第一个分形非线性滤波非线性滤波...名字氖检测氖...新建分形新建渐变闪光新建单位新建打印机...新的种子报纸(_T)...报纸报纸...gimprc 中没有 %s : +第 %d 行选项部分错误文件“%s”不是一个分形探索器文件文件已存在不支持的文件格式。文件大小:%02.01f kB文件大小:未知文件名:文件名:%s填充填充(从下到上)填充(从左到右)填充(从右到左)填充(从上到下)以参数 k 填充胶卷滤波器组合滤镜模拟正在寻找动画背景...正在寻找边缘...第一目标颜色第一个几何图形第一源颜色第一种颜色固定种子火焰火焰只对 RGB 图像有效闪光(FlareFX)翻转浮点数流线前景色(_R)笔划聚集在图像中心附近强制基线(baseline) JPEG前景前景/背景色分形参数分形追溯分形类型分形名字:分形探索器渐变零碎的像素帧 %d帧 %d (%d%s)帧 %d/%d没有指明的帧的处理:频率频率(行):从从剪贴板从颜色取自渐变取自画纸取自反向的渐变从:前:完全功能函数类型:模糊选择G-QbistGEE-SLIMEGEE-ZOOM渐变闪光(GFlare)渐变闪光编辑器GIF 选项GIF 警告GIF 图像GIMP 扩展GIMP 帮助浏览器GIMP 插件GIMP 魔术表格GIMP Windows 图标插件GIMP 画笔GIMP 画笔(动画)GIMP 画笔文件看来已损坏。GIMP 画笔只能是灰度或 RGBAGIMP 图案炽光(_L)绿色阈值(_R):Gamma:高斯模糊高斯模糊...Gee-Slime(_S)Gee-Zoom(_Z)通用常规选项通用首选项常规选项获取样品的颜色几何图形(GFig)Gimp-Print 版本印象派艺术家(GIMPressionist)玻璃瓦片玻璃瓦片...炽光绘画选项灰色(_E)抓取抓取前延迟(_A)截取单个窗口截取整个屏幕梯度渐变闪光...渐变映射...渐变填充渐变图像平滑灰色灰色模式灰色选项灰色阈值灰度绿色绿色频率(_E):绿色相移(_A):绿色:灰色网格网格大小网格位移网格设置网格设置...网格可见性与类型网格颜色:网格设置...网格间距:网格类型:参考线参考线(Guides)是图像上一些预定义的矩形区域。您通过给出宽度、高度和之间的距离来定义它们。这使您得以快速创建最通常的图像映像类型――图像缩略图集,适用于导航条。参考线...分块...HSVHTML 页面选项HTML 表格高亮(_I):亮(_I)色调(_U)色调(_U):六边形(_X)高度(像素):高度:未知的帮助 ID “%s”嘿,那些对象都到哪去了?高质量预览(_Q)值越大效果越显著数值越大高亮越集中数值越大物体反射的光线越多(显得更亮)值越大效果影响的图像区域越小高亮:亮:保留最小的通道(_L)小孔宽度(_L):水平方向基准(_R):小孔高度(_E):保持亮度小孔间距(_A):水平水平颜色水平马蹄坏点热点 X(_X):热点 Y(_Y):坏点...一英寸等于此单位的多少倍。阴影的颜色加深多少每一笔的边缘处加深多少阴影的模糊程度色调色调旋转:色调变化色调频率(_F):色调相移(_P):色调:我不关心IDIFS 分形IFS 分形绘制选项IFS 分形:黑IFS 分形:蓝IFS 分形:绿IFS 分形:红IFS 分形:目标ITER:交互式翘曲强度(_N)交互(_N)反向凹凸贴图(_N)图像反相(_N)独立(_S)图标 #%i图标细节如果选中该项,GTM 将会输出一个带有 、 等标签的完整的 HTML 文档,而不是仅仅只有一个表格。如果选中该项,GTM 会用 ROWSPAN 和 COLSPAN 把相同颜色的矩形块替换成一个大的单元格。如果选中,映射将从右边开始,与从左边开始相反。如果没有选中,图像将沿圆周映射到一个矩形上。如果选中,图像将被映射到一个圆上。如果没有选中,映射将把底行放在中心,顶行放在外面。如果选中则相反。如果您启用这个选项,高的颜色值与低的颜色值将被对应互换如果您启用这个选项,预览将会自动重画幻象幻象...图像(_A)图像图像/输出设置图像合成图像选择图像大小图像类型图像类型(_T):图像高度(_H):图像尺寸:%d x %d图像不是灰度图像(bpp=%d)图像名字:图像大小已改变。图像间距(_I):图像类型:图像映像插件 2.2上下底表面的图像图像的大小不一致导入路径(_P)导入 SVG 的路径元素,可用于 GIMP 路径工具迭代次数(_T):反转(_V)英寸包含装饰索引索引色板类型初始值:墨水类型:输入色阶:插入点加入日期整数强度亮度等级当有光源照射时原始颜色的亮度交错GIMP 内部过程虚线虚线颜色PSD 文件中存在无效的 UTF-8 字符串画笔文件“%s”中存在无效的 UTF-8 字符串。图案文件“%s”中存在无效的 UTF-8 字符串。反转反转画纸的材质等轴迭代次数:JNGJNG + Delta PNGJPEG 压缩质量:JPEG 图像JPEG 预览JPEG 质量参数JPEG 平滑因子:拼图拼图风格Julia保留偶数区域(_E)保持图像的值保留奇数区域(_D)保持原始保持第一个值LABLZ77头部(_E)左边界(_E)长度(_E):线性(_I)Lambda横向拉普拉斯拉普拉斯...大 3x3(_E)图层 %s 没有 alpha 通道,跳过图层背景类型。复制使得进行绘画之前先复制前一图层。左左边界左:透镜效果更淡:笔划的方向由到图像中心的方向决定笔划的大小由到图像中心的方向决定笔划的方向由区域的值(亮度)决定笔划的大小由区域的值(亮度)决定级别光线光线 1光线 2光线 3光线 4光线 5光线 6光线设置光线方向(_D):光线强度光源在 XYZ 空间的 X 方向光源在 XYZ 空间的 X 坐标位置光源在 XYZ 空间的 Y 方向光源在 XYZ 空间的 Y 坐标位置光源在 XYZ 空间的 Z 方向光源在 XYZ 空间的 Z 坐标位置稍浅更亮:光照效果光照效果...光照预设:光源颜色:光源类型:线状线条艺术线性连接类型列表视图蜥蜴长栅格(_N)下边界(_W)加载通道混合器设置从文件中加载曲线的点加载 FITS 文件加载火焰加载分形参数加载几何图形对象集载入图像映像加载 KISS 色板加载光照预设参数加载自加载 PostScript加载 QBE 文件从文件加载分形从文件中加载曲线正在加载屏幕抓图...锁定阈值(_T)对数循环左下右下降低选中对象将选中对象降至底端低端阈值(_H):亮度_y470:亮度_y470f:亮度_y709:亮度_y709f:亮度阈值(_T):亮度频率(_U):亮度相移(_S):MNG 选项MNG 动画最大值(_A):最大深度(_X):最大高度(_X):品红(_T)品红品红:品红_黑主选项使目标图像凸起高度为零的地方变为透明使物体以外的图像变成透明Man'o'warMandelbrotMandelbrot 参数手工手工指定笔划方向手工指定笔划大小映射颜色范围将图像映射到方盒表面映射到物体(_O)...映像文件格式从顶端开始映射(_T)映射到方盒...映射到圆柱体...映射到物体映射到平面...映射到球体...映射到:正在映射颜色...大理石掩码文件材质属性矩阵Max (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)RGB 最大RGB 最大...最大撤销次数:最大内存:凸起的最大高度最大大小:迷宫介质尺寸:介质来源:介质类型:中值菜单菜单路径菜单路径/名字合并导入的路径正在合并...Microsoft WMF 文件Microsoft Windows 图标在预览中点击中键可拾取“从颜色”中: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)最小大小:将活动曲线镜像至对边修改绿色通道(_D)修改饱和度通道(_D)修改蓝色通道(_I)修改亮度通道(_I)模式模式 1(_1)模式 2(_2)修改曲线更多不透明(_E)更多高级选项更浓:更多白色(亮度大)(_W)更多黑色(亮度小)(_K)更多透明(_R)马赛克动态模糊正在进行动态模糊...移动向下移动移动边界移动选中对象移动到前端向上移动移动一个点移动一个对象移动我的第一个分形非线性滤波非线性滤波...名字氖检测氖...新建分形新建渐变闪光新建单位新建打印机...新的种子报纸(_T)...报纸报纸...gimprc 中没有 %s : 您需要增加一项比如 (%s "%s") 到您的 %s 文件。无颜色无压缩没有取得数据无填充无光源没有匹配没有可供转换的选区没有可感知的扩展名,尝试通过文件的 magic 来加载。没有可感知的扩展名,保存为压缩的 XCF。纵向数量(_D):噪音像素非正方形。图像看起来可能扁了。无普通普通:正在标准化...没有东西可以剪裁。颜色数量最近打开项目(1 - 16)(_R):块数方块数量帧的数量(_F):允许撤销次数(1 - 99)(_U):单元数量:颜色数量:覆盖整个亮度范围的周期数横向方块数量纵向方块数量应用滤镜的次数颜色数量:%d计数位移(_F):只对前景色(_N)不透明度(_P):选项(_P)方向(_R)其它(_T)输出 LPI (_U):输出通道(_U):重叠(_V):覆盖(_V)过采样(_V):对象细节物体在 XYZ 空间的 X 坐标位置物体在 XYZ 空间的 Y 坐标位置物体在 XYZ 空间的 Z 坐标位置八边形和方块(_T)位移(_S):偏移角度(_A):所有的向量偏移一个指定的角度位移:正在油画...油画(_F)...油画在边缘处:放入胶卷中:在边缘处:每图层一帧(替换)只对背景色(_A)只有一种颜色不透明度(_A):最优估计(_T)选项(_T)不透明度:打开打开文件打开 IFS 分形文件打开失败最近打开正在打开“%s”...正在打开“%s”的缩略图...打开方向分布编辑器打开尺寸分布编辑器优化优化(对 GIF)(_G)正在优化动画...选项方向(_I)方向方向分布编辑器方向:原始原始亮度原始:其它(_H)其它选项输出输出色阶:输出类型:外部类型覆盖P(指数因子):PDF 文档PGM 图像PNGPNG + Delta PNGPNG 压缩等级:PNG 图像PNM 图像PNM 图像PNM 保存无法处理带有 alpha 通道的图像。PNM:读文件错误。PNM:无效的 X 分辨率。PNM:无效的 Y 分辨率。PNM:无效文件。PNM:无效的最大值。PNM:过早的文件结尾。PPD 文件:PPIPPM 图像PS 菱形PS 方块(欧几里得点)画纸(_A)极坐标(_O)...预览(_R)第 %d 页页面卷曲...页面设置页面卷曲效果加载页码(例如:1-4 或者 1,3,5-7)页数:绘画模式:Paint Shop Pro 图像涂画边缘正在绘制...色板文件(_E):色板纸片平铺纸片平铺...参数 k:参数参数已保存至“%s”解析“%s”出错: %s粘贴从剪贴板粘贴已粘贴正在粘贴...图案填充百分比黑色百分比(_B):白色百分比(_W):将被过滤的像素的比率相位角,范围 0-360影印照片Photoshop 图像块数:乒乓像素高度(_H):像素宽度(_W):像素值缩放像素化正在进行像素化...像素放置(_A)笔划在图像中随机放置放置平面五彩缤纷(Plasma)五彩缤纷...播放/停止回放:请检查您的安装。绘画此设置的图线插件浏览器复数偏振(_L):点点光源极线极坐标化正在极坐标化...多边形纵向位置位置 X:位置 Y:位置 Z:PostScript 文档PostScript 保存无法处理带有 alpha 通道的图像预览(_V)首选项保持亮度(_L)保留原始的图像作为背景预览预览大小预览大小(_S):拖动时预览PrewittPrim 的算法打印颜色调整打印并 -保存设置打印到文件打印机模块:打印机设置打印机不支持位图打印机模块:打印机名字:正在打印...可能性渐变:过程浏览器过程浏览器(_B)渐进繁殖繁殖颜色通道繁殖 Alpha 通道(_A)Qbist ...质量:RGBRGB 保存类型RGBA没有选中 RGBA/GRAYA 图像。RLERLE 压缩半径 2(_A):半径(_A):随机色调(_A):随机数种子(_A):随机度(_A)(%):递归(_E)红色(_E)红色阈值(_E):重复(_E):反向(_E)转向径向渐变:弧度弧度/Pi极距半径:升高选中对象将选中对象升至顶端随机饱和度(_M):随机随机 撒(Hurl) 1.7随机 拣(Pick) 1.7随机数种子:随机 糊(Slur) 1.7随机数种子(_S):随机种子随机共享随机,各通道独立随机从种子随机从种子随机(共享)原始Raw 图像数据Raw 图像加载Raw 图像保存射线绘画选项居中(_C)红色(_D)读入选中的预设到内存实时预览重新计算中心重新计算预览图像矩形红色红色频率(_F):红色相移(_P):红色:红色差_cr470:红色差_cr470f:红色差_cr709:红色差_cr709f:重做重做上次缩放重画重画预览降低亮度(_L)降低饱和度(_S)反射率刷新预览窗口正多边形的边的数量相对连接(_V)相对概率:在 GNU 通用公共许可证下发布浮雕:映射颜色...删除(_V)正在去除动画背景...正在删除颜色...绘制闪光...绘制可缩放向量图形绘制 Windows 元文件(WMF)绘制选项已绘制的 SVG已绘制的 WMF绘制正在绘制劲风...正在绘制分形...正在绘制 IFS (%d/%d)...正在绘制 SVG...正在绘制球面...正在绘制超新星...正在绘制瓦片...正在绘制风...替换重新读入预设文件夹重新扫描渐变重新查找分形重置参数到默认值重置活动曲线重置区域大小吗?分辨率分辨率:结果参考线范围:%d,%d 到 %d,%d (%d 个区域)结果参考线范围:0,0 到 0,0 (0 个区域)返回值恢复到原始图像回绕右右边界:右边界右:波纹正在绘制波纹...旋转(_T):行(_W):Roberts旋转(_E):旋转旋转/缩放旋转 X:旋转 Y:旋转 Z:旋转后正在旋转颜色表...旋转...旋转绕 X 轴旋转的角度绕 Y 轴旋转的角度绕 Z 轴旋转的角度旋转角度:旋转:力度球形RLE 编码SUN Raster 图像SUNRAS 保存无法处理带 alpha 通道的图像SVG 文件没有 +保存设置打印到文件打印机模块:打印机设置打印机不支持位图打印机模块:打印机名字:正在打印...可能性渐变:过程浏览器过程浏览器(_B)渐进繁殖繁殖颜色通道繁殖 Alpha 通道(_A)Qbist ...质量:RGBRGB 保存类型RGBA没有选中 RGBA/GRAYA 图像。RLERLE 压缩半径 2(_A):半径(_A):随机色调(_A):随机数种子(_A):随机度(_A)(%):递归(_E)红色(_E)红色阈值(_E):重复(_E):反向(_E)转向径向渐变:弧度弧度/Pi极距半径:升高选中对象将选中对象升至顶端随机饱和度(_M):随机随机 撒(Hurl) 1.7随机 拣(Pick) 1.7随机数种子:随机 糊(Slur) 1.7随机数种子(_S):随机种子随机共享随机,各通道独立随机从种子随机从种子随机(共享)原始Raw 图像数据Raw 图像加载Raw 图像保存射线绘画选项居中(_C)红色(_D)读入选中的预设到内存实时预览重新计算中心重新计算预览图像矩形红色红色频率(_F):红色相移(_P):红色:红色差_cr470:红色差_cr470f:红色差_cr709:红色差_cr709f:重做重做上次缩放重画重画预览降低亮度(_L)降低饱和度(_S)反射率刷新预览窗口正多边形的边的数量相对连接(_V)相对概率:在 GNU 通用公共许可证下发布浮雕:映射颜色...删除(_V)正在去除动画背景...正在删除颜色...绘制闪光...绘制可缩放向量图形绘制 Windows 元文件(WMF)绘制选项已绘制的 SVG已绘制的 WMF绘制正在绘制劲风...正在绘制分形...正在绘制 IFS (%d/%d)...正在绘制 SVG...正在绘制球面...正在绘制超新星...正在绘制瓦片...正在绘制风...替换重新读入预设文件夹重新扫描渐变重新查找分形重置参数到默认值重置活动曲线重置区域大小吗?分辨率分辨率:结果参考线范围:%d,%d 到 %d,%d (%d 个区域)结果参考线范围:0,0 到 0,0 (0 个区域)Retinex (4/4):更新...Retinex 图像增强Retinex...Retinex:正在绘制...返回值恢复到原始图像回绕右右边界:右边界右:波纹正在绘制波纹...旋转(_T):行(_W):Roberts旋转(_E):旋转旋转/缩放旋转 X:旋转 Y:旋转 Z:旋转后正在旋转颜色表...旋转...旋转绕 X 轴旋转的角度绕 Y 轴旋转的角度绕 Z 轴旋转的角度旋转角度:旋转:力度球形RLE 编码SUN Raster 图像SUNRAS 保存无法处理带 alpha 通道的图像SVG 文件没有 指定大小!分散 HSV(_C)...第二种颜色(_E):选择窗口前延迟(_E)在此选择(_E):选择器(_E)显示光标(_H)收缩(_H)正弦(_I)强度指数(_T):力度(_T):条纹(_T)主题(_U):交换(_W)逆时针涡漩(_W)保存 Alpha 通道(RGBA/RGB)(_V)相同样品分析...样本色彩化色样密度(_D):样品:颜色取画笔的中心位置的像素值饱和度(_U)饱和度(_R)饱和度饱和度变化饱和度频率(_E):饱和度相移(_A):饱和度:保存保存 -设置保存(中间的变换)为 QBE 文件保存画笔保存通道混合器设置保存当前值将曲线的点保存到文件中保存 EXIF 数据保存文件保存火焰保存分形参数保存几何图形保存图像映像保存光照预设参数保存至保存背景色(_B)保存透明像素的颜色值(_C)保存 Gamma(_G)保存分辨率(_R)保存分形到文件保存为 BMP保存为画笔保存为画笔管道保存为 C 程序保存为 GIF保存为 IFS 分形文件保存为 JPEG保存为 MNG保存为 PNG保存为 PNM保存为 PSP保存为图案保存为 PostScript保存为 SGI保存为 SUNRAS保存为 TGA保存为 TIFF保存为文本保存为 XBM保存在 XJT保存为 XPM保存背景颜色保存透明像素的颜色值(_V)保存注释(_N)保存创建时间(_T)保存创建时间保存当前值...保存失败保存 Gamma保存图层位移(_F)保存分辨率保存当前的设定到指定文件将曲线保存到文件保存缩略图保存正在保存“%s”...锯齿(_T)缩放 1(_A):散射(_A):缩放 2(_L):可缩放 SVG 图像色调缩放:亮度缩放:缩放 X:缩放 Y:缩放 Z:缩放:缩放:分散 HSV分散 RGB正在分散 HSV...屏幕屏幕抓图仅选区(_L)按描述搜索(_B)按名字搜索(_N)正在搜索 - 请等待正在按描述搜索 - 请等待正在按名字搜索 - 请等待从左到右第二目标颜色二次闪光绘画选项第二源颜色第二种颜色秒秒随机数种子(只对“从种子”模式)种子:选区周围(_T)选择全部选择选择颜色选择胶卷颜色选择 HTML 文件选择图像文件选择后一个选择数字的颜色选择要加载的色板文件像素选择方式选择前一个选择区域全选(_A)全选(_A)全部选择选择一个对象选择连续的区域选择连续的区域选择已有区域选择文件夹并刷新选集选择光源的颜色选择后一个尺寸向量选择后一个向量选择前一个尺寸向量选择前一个向量选择方向:纵向,横向,上下颠倒,或者从左到右(上下颠倒的横向)选择您的打印机模块选择:选中:选区选区到路径高级设置选区的大小不是偶数。 +设置保存(中间的变换)为 QBE 文件保存画笔保存通道混合器设置保存当前值将曲线的点保存到文件中保存 EXIF 数据保存文件保存火焰保存分形参数保存几何图形保存图像映像保存光照预设参数保存至保存背景色(_B)保存透明像素的颜色值(_C)保存 Gamma(_G)保存分辨率(_R)保存分形到文件保存为 BMP保存为画笔保存为画笔管道保存为 C 程序保存为 GIF保存为 IFS 分形文件保存为 JPEG保存为 MNG保存为 PNG保存为 PNM保存为 PSP保存为图案保存为 PostScript保存为 SGI保存为 SUNRAS保存为 TGA保存为 TIFF保存为文本保存为 XBM保存在 XJT保存为 XPM保存背景颜色保存透明像素的颜色值(_V)保存注释(_N)保存创建时间(_T)保存创建时间保存当前值...保存失败保存 Gamma保存图层位移(_F)保存分辨率保存当前的设定到指定文件将曲线保存到文件保存缩略图保存正在保存“%s”...锯齿(_T)缩放 1(_A):散射(_A):缩放 2(_L):可缩放 SVG 图像色调缩放:亮度缩放:缩放 X:缩放 Y:缩放 Z:缩放为:将打印内容缩放为纸张大小缩放:缩放:分散 HSV分散 RGB正在分散 HSV...屏幕屏幕抓图仅选区(_L)按描述搜索(_B)按名字搜索(_N)正在搜索 - 请等待正在按描述搜索 - 请等待正在按名字搜索 - 请等待从左到右第二目标颜色二次闪光绘画选项第二源颜色第二种颜色秒秒随机数种子(只对“从种子”模式)种子:选区周围(_T)选择全部选择选择颜色选择胶卷颜色选择 HTML 文件选择图像文件选择后一个选择数字的颜色选择要加载的色板文件像素选择方式选择前一个选择区域全选(_A)全选(_A)全部选择选择一个对象选择连续的区域选择连续的区域选择已有区域选择文件夹并刷新选集选择光源的颜色选择后一个尺寸向量选择后一个向量选择前一个尺寸向量选择前一个向量选择方向:纵向,横向,上下颠倒,或者从左到右(上下颠倒的横向)选择您的打印机模块选择:选中:选区选区到路径高级设置选区的大小不是偶数。 可平铺迷宫无法很好地工作。选区到路径...选择性高斯模糊选择性高斯模糊...选择性加载设置选择性的加载自每一笔都选择一个随机的方向每一笔都选择一个随机的大小如果需要结果图像能够无缝平铺,请选中此项如果选中此项,超出图像边缘的也照样涂画正在进行半平整...移动到后端发送邮件分割到:1999 年 9 月 31 日设置光源的颜色设置打印的亮度。 -0 是纯黑,2 是纯白设置打印对比度设置打印高度将打印大小设为图像大小设置打印宽度设置当前映像文件设置设置打印机设置打印机...暗(_D)阴影模糊:阴影加深:阴影深度:暗:二次闪光的形状尖锐边缘锐化正在锐化...切变:滑移滑移量(_A):水平滑移(_H)垂直滑移(_V)正在滑移...应该要一个反转的效果吗?应该保持亮度吗?显示显示直线骨架在图像窗口中显示预览(_P)显示全部对象显示区域的 URL 提示(_T)显示区域控制块(_H)显示颜色隐藏控制点显示网格显示图像显示后一个对象显示位置显示预览网格(_W)显示前一个对象显示选区显示/隐藏预览网格单数(_N):边数:Sierpinski简单正弦(_U)正弦单数正弦正弦:正在绘制...正弦大小大小(%):大小因子渐变:尺寸分布编辑器大小:大小:涂抹平滑色板(_T)...平滑(_T)平滑(_H)平滑色板平滑样品色彩平滑参数平滑:反锯齿化平滑度尺寸向量吸附到网格Sobel正在进行 Sobel 边缘检测...Sobel 边缘检测Sobel 水平(_H)Sobel 垂直(_V)纯色纯色噪音纯色噪音...单一颜色的背景纯色一些数据已改变!对不起,我只能保存索引和灰度图像。对不起,无法旋转通道和蒙板。源 1:源 2:源通道:源颜色范围源文件...穗的数量(_I):扩散(_R)...空间过采样(_T):间距(百分比):间距:火花正在绘制火花...空间变换空间滤镜半径(_F):没有找到指定的窗口指定应用到图像的浮雕效果量(百分比)指定画笔的宽高比指定材质的缩放比例(按原始文件的百分比)反光:球体球面设计器球面设计器(_D)...球形穗的角度(-1:随机)(_K):Spider穗的密度(_E):光芒宽度:螺旋螺旋线的拐点数量点半径:斑点扩散扩散量正在扩散...强度指数(_R):标准标准(R,G,B)星形的点的数量起始编号(_I):起始角度:起始位移:单步单步大小:当像素差别小于此值时停止拉伸拉伸 HSV(_H)笔划密度(_D):强风格超新星(_P)...细分:子采样:超新星超新星颜色拾取顺时针涡漩(_I)交换两条曲线旋转按上次种子切换至“从种子”切换到逆时针切换到顺时针符号TIFF 通道TIFF 图像可平铺(_I)方块饱和度(_I):瓦片大小(_I):透明背景(_R)弥散度(_U):弥散(_U)表格创建选项表格选项TarGA 图像目标Telnet(_N)临时临时过程文字反锯齿化材质材质属性材质变换材质:材质感谢您选择 GIMPGIF 格式只支持 7 位 ASCII 编码的注释。注释没有被保存。没有安装 GIMP 帮助文件。印象派艺术家(GIMPressionist)印象派艺术家默认值PNG 文件中指定的位移导致图层定位在图像以外。TIFF 格式只支持 7 位 ASCII 编码 +0 是纯黑,2 是纯白设置打印对比度设置打印高度将打印大小设为图像大小设置打印宽度设置当前映像文件设置设置打印机设置打印机...暗(_D)阴影模糊:阴影加深:阴影深度:暗:二次闪光的形状尖锐边缘锐化正在锐化...切变:滑移滑移量(_A):水平滑移(_H)垂直滑移(_V)正在滑移...应该要一个反转的效果吗?应该保持亮度吗?显示显示直线骨架在图像窗口中显示预览(_P)显示全部对象显示区域的 URL 提示(_T)显示区域控制块(_H)显示颜色隐藏控制点显示网格显示图像显示后一个对象显示位置显示预览网格(_W)显示前一个对象显示选区显示/隐藏预览网格单数(_N):边数:Sierpinski简单正弦(_U)正弦单数正弦正弦:正在绘制...正弦大小大小(%):大小因子渐变:尺寸分布编辑器大小:大小:涂抹平滑色板(_T)...平滑(_T)平滑(_H)平滑色板平滑样品色彩平滑参数平滑:反锯齿化平滑度尺寸向量吸附到网格Sobel正在进行 Sobel 边缘检测...Sobel 边缘检测Sobel 水平(_H)Sobel 垂直(_V)柔光纯色纯色噪音纯色噪音...单一颜色的背景纯色一些数据已改变!对不起,我只能保存索引和灰度图像。对不起,无法旋转通道和蒙板。源 1:源 2:文件中的源通道:源通道:源颜色范围源文件...穗的数量(_I):扩散(_R)...空间过采样(_T):间距(百分比):间距:火花正在绘制火花...空间变换空间滤镜半径(_F):没有找到指定的窗口指定应用到图像的浮雕效果量(百分比)指定画笔的宽高比指定材质的缩放比例(按原始文件的百分比)反光:球体球面设计器球面设计器(_D)...球形穗的角度(-1:随机)(_K):Spider穗的密度(_E):光芒宽度:螺旋螺旋线的拐点数量点半径:斑点扩散扩散量正在扩散...强度指数(_R):标准标准(R,G,B)星形的点的数量起始编号(_I):起始角度:起始位移:单步单步大小:当像素差别小于此值时停止拉伸拉伸 HSV(_H)笔划密度(_D):强风格超新星(_P)...细分:子采样:超新星超新星颜色拾取顺时针涡漩(_I)交换两条曲线旋转按上次种子切换至“从种子”切换到逆时针切换到顺时针符号TIFF 通道TIFF 图像可平铺(_I)方块饱和度(_I):瓦片大小(_I):透明背景(_R)弥散度(_U):弥散(_U)表格创建选项表格选项TarGA 图像目标Telnet(_N)临时临时过程文字反锯齿化材质材质属性材质变换材质:材质感谢您选择 GIMPGIF 格式只支持 7 位 ASCII 编码的注释。注释没有被保存。没有安装 GIMP 帮助文件。印象派艺术家(GIMPressionist)印象派艺术家默认值PNG 文件中指定的位移导致图层定位在图像以外。TIFF 格式只支持 7 位 ASCII 编码 的注释。注释没有被保存。表格单元的衬垫宽度。表格单元的间距。每个小块边缘的高亮程度创建的第一个画笔的跨度选择最适合原始图像的画笔大小颜色为黑色和白色。默认注释限制在 %d 个字节之内。阴影的深度,比如它应该离开物体多远选择最适合原始图像的方向笔划的方向由到图像中心的距离决定笔划的大小由到图像中心的距离决定每个表格单元的高度。可以是一个数字或百分数。笔划的方向由区域的色调决定笔划的大小由区域的色调决定您试图保存为 GIF 的图像含有超出 图像实际边界的图层。这在 GIF 中 是不允许的,我担心。 @@ -489,7 +496,7 @@ 目前还不支持。XY 位置:X1(_1):X2(_2):Y 缩放(大小)Y:YMAX:YMIN:Y1(_1):Y2(_2):黄色黄色:黄色_黑您正试图创建一个很可能让 您的浏览器崩溃的巨大的 HTML 文件。如果存在浮动选区,您将不能旋转整个图像。如果存在选区,您将不能旋转整个图像。您不能对一幅没有 alpha 通道的 -图像保存光标掩码。Y 缩放(大小)Z:正在进行积极剪裁(tm)...缩放放大移近(使图像变大)缩小移远(使图像变小)缩放比:缩放至3x3(_3)缩写(_A):关于图像映像(_A)适应(_A)添加(_A)高级(_A)高级选项(_A)算法(_A):Alpha(_A)Alpha 阈值(_A):Alpha 修整平均(_A)Alpha(_A):量(_A):幅度(_A):角度(_A):动画(_A)边缘平滑(_A)使用画布(_A)...自动剪裁图像(_A)自动剪裁图层(_A)自动转换(_A)极角(_A):背景(_B)背景色(_B)基址 URL(_B):切痕宽度(_B):双线性(_B)黑色(_B)黑色水平(_B):变黑(_B)劲风(_B)混和(_B)百叶窗帘(_B)...蓝色(_B)蓝色(_B):模糊(_B)模糊半径(_B):边界均值(_B)...边框(_B):左下(_B)下(_B):方盒(_B)亮度(_B):亮度(_B)亮度(_B):画笔(_B)油漆桶大小(_B):凹凸贴图(_B)凹凸贴图(_B)...凹凸贴图(_B):凹凸贴图(_B)棋盘(_C)...清除颜色增强(_C)...颜色变换(_C)...单色化(_C)...内容(_C)卷积矩阵(_C)...复制(_C)立体派(_C)...曲线扭曲(_C)...分解(_D)...变形半径(_D):去除交错(_D)...没有指明的帧之间的延时(_D):深度合并(_D)...深度(_D):派生(_D)描述(_D):细节(_D):衍射图案(_D)...位数(_D):膨胀(_D)移位(_D)...旋转角度(_D):扭曲(_D)分裂(_D):点(_D)边缘增强(_E)边缘(_E)...编辑(_E)效果图像(_E):仰角(_E):浮雕(_E)浮雕(_E)...封装的 PostScript (EPS)(_E)整幅图像(_E)环境映射(_E)指定的小块(_E)指数(_E):前景/背景光照(_F)因子(_F):工厂默认值(_F)文件(_F)文件名(_F):胶卷(_F)...组合滤镜(_F)...滤镜长度(_F):寻找背景(_F)以图像的高度为准(_F)火焰(_F)...闪光(FlareFX)(_F)...字体(_F):强制(_F)强制平铺(_F)?前景和背景(_F)前景色(_F)前景色到峰值(_F)格式(_F):分形探索器(_F)...分形追溯(_F)...分形(_F)自由(_F)Ftp 站点(_F)渐变闪光(GFlare)(_G)...GIF 注释(_G):印象派艺术家(GIMPressionist)(_G)...Gamma(_G):高斯模糊(_G)...通用(_G)生成完整的 HTML 文档(_G)几何图形(Gfig)(_G)...玻璃瓦片(_G)...炽光(_G):Gopher(_G)渐变(_G)渐变映射(_G)灰色(_G):绿色(_G)绿色(_G):灰色(_G)网格网格大小(_G):网格(_G)...膨胀(_G)分块(_G)HSL 色彩模式(_H)高度(_H)高度(_H):帮助(_H)菱形(_H)隐藏(_H)保留最大的通道(_H)保持度(_H):小孔位移(_H):水平(_H)水平方向风格(_H):水平(_H):水平间距(_H):坏点(_H)...色调(_H)色调旋转(_H):撒(_H)...ID(_I):IFS 分形(_I)...IIR(_I)交互式翘曲(IWrap)(_I)...理想(_I)标识符前缀(_I):忽略(_I)即使可见也忽略底部图层(_I)幻象(_I)...图像映像(_I)...英寸(_I)RGB 不相关(_I)输入 SPI (_I):插入(_I)强度(_I):交错(_I)交错储存(Adam7)(_I)反转(_I)JPEG(_J)JavaScript(_J)拼图(_J)...保持宽高比(_K)保持周围的原始环境(_K)保持结果的符号(仅单向)(_K)删除(_K)LZW(_L)拉普拉斯(_L)大栅格(_L)左(_L)左端开始于(_L):透镜折射率(_L):光线(_L)光照效果(_L)...限制线宽(_L)线性(_L)虚线(_L)连接(_L)加载默认值(_L)锁定通道(_L)反复循环(_L)下部(_L)MIME(_M)邮寄图像(_M)...无缝处理(_M)使环境变为透明(_M)反向映射(_M)映射类型(_M):映像(_M)掩码文件扩展名(_M):蒙板半径(_M):色块大小(_M):材质(_M)最大(_M) (%):最大深度(_M):RGB 最大(_M)...最大偏差(_M):迷宫(_M)...中值到峰值(_M)中(_M)毫米(_M)最小值(_M):镜像(_M)杂项(_M)修改色调通道(_M)修改红色通道(_M)单色(_M)马赛克(_M)...动态模糊(_M)...移动(_M)非线性滤波(_N)...自然色(_N)氖(_N)...横向数量(_N):噪音量级(_N):无(_N)普通(_N)标准化(_N)数字高度(_N):块数(_N):不透明度(_O):优化(差值)(_O)页面卷曲(_P)...色板类型(_P):纸片平铺(_P)...参数(_P)黑色百分比(_P):周期(_P):相位(_P):影印(_P)...捡(_P)...挤压量(_P):乒乓(_P)粒状表面(_P)像素化(_P)...五彩缤纷(Plasma)(_P)...回放(_P)...插件浏览器(_P)复数(_P):抛光(_P):多边形(_P)PostScript level 2(_P)前缀名字(_P):保持亮度(_P)预设(_P)预览(_P)预览一下(_P)预览(_P)!打印(_P)打印(_P)...提示区域信息(_P)繁殖率(_P):狂想(_P)Qbist(_Q)...质量(_Q):RGB(_R)RGB 色彩模式(_R)RLE(_R)RLE 压缩(_R)RLE 编码(_R)转向(_R)半径 1(_R):半径(_R):随机色调(_R):随机数种子(_R):随机产生(_R)射线(_R)收件人(_R):矩形(_R)红色(_R):重做(_R) %s反射率(_R)删除(_R)去除背景(_R)绘制(_R)要求默认 URL(_R)保持可平铺(_R)右(_R)右边界(_R)波纹(_R)...旋转(_R)样本色彩化(_S)...饱和度(_S)饱和度(_S):保存注释到文件(_S)保存默认值(_S)分散 RGB(_S)...屏幕抓图(_S)...搜索深度(_S):搜索(_S):二次闪光(_S)选择性高斯模糊(_S)...半平整(_S)发件人(_S):设置环境为背景色(_S)设置环境为索引 0(_S)设置(_S)卷曲处带阴影(_S)锐化(_S)...锐度(_S):滑移(_S)...高光亮度(_S):显示光标(_S)正弦(_S)...大小(_S)大小(_S):糊(_S)...小块平铺(_S)...涂抹(_S)平滑(_S):吸附到网格(_S)Sobel(_S)...纯色噪音(_S)...火花(_S)...速度(_S):穗的长度(_S):辐条(_S):点的形状(_S):方形(_S)方块(_S)栅格(_S)力度(_S):拉伸对比度(_S)勾画(_S)符号(_S):TWAIN(_T)...目标页框名字/ID(_T):(可选 - 只对页框使用)宽度(_T):阈值(_T)Alpha 阈值(_T)...阈值(_T):平铺凹凸贴图(_T)方块大小(_T):平铺(_T)...标题(_T):工具(_T)顶端开始于(_T):右上(_T)上(_T):透明(_T)此区域被点击时激活的 URL(_U):(需要)反优化(_U)撤销撤销(_U) %s单位编辑器(_U)虚光蒙板(_U)...更新(_U)上部(_U)上边界(_U)高端阈值(_U):使用 GLib 类型(guint8*)(_U)使用背景色(_U)使用 cellspan(_U)使用双倍大小的抓柄(_U)使用强度算法(_U)使用(不可见的)底部图层作为基准(_U)Uuencode(_U)亮度(_V)亮度反转(_V)颜色繁殖(_V)...亮度(_V):凡高(LIC)(_V)...变化(_V):垂直间距(_V):垂直(_V)垂直方向风格(_V):竖直(_V):查看(_V)环绕(_W)翘曲(_W)...水平(_W):波长(_W):波(_W)...Web 站点(_W)旋转角度(_W):白色(_W)白色水平(_W):宽条纹(_W)宽度(_W)宽度(_W):风(_W)与白色噪音(_W)环绕(_W)环绕(_W)写入热点坐标(_W)X 缩放(_X):X 移位(_X):X 位移(_X):X 比率(_X):X 大小(_X):X10 格式位图(_X)X(_X):Y 缩放(_Y):Y 移位(_Y):Y 位移(_Y):Y 比率(_Y):Y 大小(_Y):Y(_Y):黄色(_Y)Z(_Z):积极剪裁(_Z)缩放(_Z)缩放(_Z):创建“默认”。单个窗口(_S)延迟alphaautostretch_hsv:cmap 为空!退出 +图像保存光标掩码。Y 缩放(大小)Z:正在进行积极剪裁(tm)...缩放放大移近(使图像变大)缩小移远(使图像变小)缩放比:缩放至3x3(_3)缩写(_A):关于图像映像(_A)适应(_A)添加(_A)高级(_A)高级选项(_A)算法(_A):Alpha(_A)Alpha 阈值(_A):Alpha 修整平均(_A)Alpha(_A):量(_A):幅度(_A):角度(_A):动画(_A)边缘平滑(_A)使用画布(_A)...自动剪裁图像(_A)自动剪裁图层(_A)自动转换(_A)极角(_A):背景(_B)背景色(_B)基址 URL(_B):切痕宽度(_B):双线性(_B)黑色(_B)黑色水平(_B):变黑(_B)劲风(_B)混和(_B)百叶窗帘(_B)...蓝色(_B)蓝色(_B):模糊(_B)模糊半径(_B):边界均值(_B)...边框(_B):左下(_B)下(_B):方盒(_B)亮度(_B):亮度(_B)亮度(_B):画笔(_B)油漆桶大小(_B):凹凸贴图(_B)凹凸贴图(_B)...凹凸贴图(_B):凹凸贴图(_B)棋盘(_C)...清除颜色增强(_C)...颜色变换(_C)...单色化(_C)...内容(_C)卷积矩阵(_C)...复制(_C)立体派(_C)...曲线扭曲(_C)...分解(_D)...变形半径(_D):去除交错(_D)...没有指明的帧之间的延时(_D):深度合并(_D)...深度(_D):派生(_D)描述(_D):细节(_D):衍射图案(_D)...位数(_D):膨胀(_D)移位(_D)...旋转角度(_D):扭曲(_D)分裂(_D):点(_D)动态(_D):边缘增强(_E)边缘(_E)...编辑(_E)效果图像(_E):仰角(_E):浮雕(_E)浮雕(_E)...封装的 PostScript (EPS)(_E)整幅图像(_E)环境映射(_E)指定的小块(_E)指数(_E):前景/背景光照(_F)因子(_F):工厂默认值(_F)文件(_F)文件名(_F):胶卷(_F)...组合滤镜(_F)...滤镜长度(_F):寻找背景(_F)以图像的高度为准(_F)火焰(_F)...闪光(FlareFX)(_F)...字体(_F):强制(_F)强制平铺(_F)?前景和背景(_F)前景色(_F)前景色到峰值(_F)格式(_F):分形探索器(_F)...分形追溯(_F)...分形(_F)自由(_F)Ftp 站点(_F)渐变闪光(GFlare)(_G)...GIF 注释(_G):印象派艺术家(GIMPressionist)(_G)...Gamma(_G):高斯模糊(_G)...通用(_G)生成完整的 HTML 文档(_G)几何图形(Gfig)(_G)...玻璃瓦片(_G)...半径(_G):炽光(_G):Gopher(_G)渐变(_G)渐变映射(_G)灰色(_G):绿色(_G)绿色(_G):灰色(_G)网格网格大小(_G):网格(_G)...膨胀(_G)分块(_G)HSL 色彩模式(_H)高度(_H)高度(_H):帮助(_H)菱形(_H)隐藏(_H)高(_H):保留最大的通道(_H)保持度(_H):小孔位移(_H):水平(_H)水平方向风格(_H):水平(_H):水平间距(_H):坏点(_H)...色调(_H)色调旋转(_H):撒(_H)...ID(_I):IFS 分形(_I)...IIR(_I)交互式翘曲(IWrap)(_I)...理想(_I)标识符前缀(_I):忽略(_I)即使可见也忽略底部图层(_I)幻象(_I)...图像映像(_I)...英寸(_I)RGB 不相关(_I)输入 SPI (_I):插入(_I)强度(_I):交错(_I)交错储存(Adam7)(_I)反转(_I)JPEG(_J)JavaScript(_J)拼图(_J)...保持宽高比(_K)保持周围的原始环境(_K)保留结果中的痕迹(仅单向)(_K)删除(_K)LZW(_L)拉普拉斯(_L)大栅格(_L)左(_L)左端开始于(_L):透镜折射率(_L):光线(_L)光照效果(_L)...限制线宽(_L)线性(_L)虚线(_L)连接(_L)加载默认值(_L)锁定通道(_L)反复循环(_L)低(_L)下部(_L)MIME(_M)邮寄图像(_M)...无缝处理(_M)使环境变为透明(_M)反向映射(_M)映射类型(_M):映像(_M)掩码文件扩展名(_M):蒙板半径(_M):色块大小(_M):材质(_M)最大(_M) (%):最大深度(_M):RGB 最大(_M)...最大偏差(_M):迷宫(_M)...中值到峰值(_M)中(_M)毫米(_M)最小值(_M):镜像(_M)杂项(_M)修改色调通道(_M)修改红色通道(_M)单色(_M)马赛克(_M)...动态模糊(_M)...移动(_M)非线性滤波(_N)...自然色(_N)氖(_N)...横向数量(_N):噪音量级(_N):无(_N)普通(_N)标准化(_N)数字高度(_N):块数(_N):不透明度(_O):优化(差值)(_O)页面卷曲(_P)...色板类型(_P):纸片平铺(_P)...参数(_P)黑色百分比(_P):周期(_P):相位(_P):影印(_P)...捡(_P)...挤压量(_P):乒乓(_P)粒状表面(_P)像素化(_P)...五彩缤纷(Plasma)(_P)...回放(_P)...插件浏览器(_P)复数(_P):抛光(_P):多边形(_P)PostScript level 2(_P)前缀名字(_P):保持亮度(_P)预设(_P)预览(_P)预览一下(_P)预览(_P)!打印(_P)打印(_P)...提示区域信息(_P)繁殖率(_P):狂想(_P)Qbist(_Q)...质量(_Q):RGB(_R)RGB 色彩模式(_R)RLE(_R)RLE 压缩(_R)RLE 编码(_R)转向(_R)半径 1(_R):半径(_R):随机色调(_R):随机数种子(_R):随机产生(_R)射线(_R)收件人(_R):矩形(_R)红色(_R):重做(_R) %s反射率(_R)删除(_R)去除背景(_R)绘制(_R)要求默认 URL(_R)保持可平铺(_R)_Retinex...右(_R)右边界(_R)波纹(_R)...旋转(_R)样本色彩化(_S)...饱和度(_S)饱和度(_S):保存注释到文件(_S)保存默认值(_S)标度分格(_S):缩放(_S):分散 RGB(_S)...屏幕抓图(_S)...搜索深度(_S):搜索(_S):二次闪光(_S)选择性高斯模糊(_S)...半平整(_S)发件人(_S):设置环境为背景色(_S)设置环境为索引 0(_S)设置(_S)卷曲处带阴影(_S)锐化(_S)...锐度(_S):滑移(_S)...高光亮度(_S):显示光标(_S)正弦(_S)...大小(_S)大小(_S):糊(_S)...小块平铺(_S)...涂抹(_S)平滑(_S):吸附到网格(_S)Sobel(_S)...柔光(_S)纯色噪音(_S)...火花(_S)...速度(_S):穗的长度(_S):辐条(_S):点的形状(_S):方形(_S)方块(_S)栅格(_S)力度(_S):拉伸对比度(_S)勾画(_S)符号(_S):TWAIN(_T)...目标页框名字/ID(_T):(可选 - 只对页框使用)宽度(_T):阈值(_T)Alpha 阈值(_T)...阈值(_T):平铺凹凸贴图(_T)方块大小(_T):平铺(_T)...标题(_T):工具(_T)顶端开始于(_T):右上(_T)上(_T):透明(_T)此区域被点击时激活的 URL(_U):(需要)反优化(_U)撤销撤销(_U) %s均匀(_U)单位编辑器(_U)虚光蒙板(_U)...更新(_U)上部(_U)上边界(_U)高端阈值(_U):使用 GLib 类型(guint8*)(_U)使用背景色(_U)使用 cellspan(_U)使用双倍大小的抓柄(_U)使用强度算法(_U)使用(不可见的)底部图层作为基准(_U)Uuencode(_U)亮度(_V)亮度反转(_V)颜色繁殖(_V)...亮度(_V):凡高(LIC)(_V)...变化(_V):垂直间距(_V):垂直(_V)垂直方向风格(_V):竖直(_V):查看(_V)环绕(_W)翘曲(_W)...水平(_W):波长(_W):波(_W)...Web 站点(_W)旋转角度(_W):白色(_W)白色水平(_W):宽条纹(_W)宽度(_W)宽度(_W):风(_W)与白色噪音(_W)环绕(_W)环绕(_W)写入热点坐标(_W)X 缩放(_X):X 移位(_X):X 位移(_X):X 比率(_X):X 大小(_X):X10 格式位图(_X)X(_X):Y 缩放(_Y):Y 移位(_Y):Y 位移(_Y):Y 比率(_Y):Y 大小(_Y):Y(_Y):黄色(_Y)Z(_Z):积极剪裁(_Z)缩放(_Z)缩放(_Z):创建“默认”。单个窗口(_S)延迟alphaautostretch_hsv:cmap 为空!退出 blackblue蓝色差_cb470蓝色差_cb470f蓝色差_cb709蓝色差_cb709fbzip 归档c_astretch:cmap 为空!退出... 厘米cyancyan_k电子邮件(_M)greengzip 归档hue无效的渐变闪光文件格式:%s k(1-x^p)kx^pk{x(1-x)}^p亮度_y470亮度_y470f亮度_y709亮度_y709fmagentamagenta_k毫秒在 gflares_list 中没有找到 %s像素顶端像素(_T)左端像素(_E)像素/%ared红色差_cr470红色差_cr470f红色差_cr709红色差_cr709fsaturation文件扩展名缺失或者存在某种错误整个屏幕(_W)到 AlphavalueX (像素)Y (像素)yellowyellow_k \ No newline at end of file diff -uraN gimp-2.2.4/po-plug-ins/zh_CN.po gimp-2.2.5/po-plug-ins/zh_CN.po --- gimp-2.2.4/po-plug-ins/zh_CN.po 2005-02-22 23:12:41.000000000 +0100 +++ gimp-2.2.5/po-plug-ins/zh_CN.po 2005-04-09 23:09:27.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: gimp-std-plugins\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-02-22 23:04+0100\n" +"POT-Creation-Date: 2005-04-09 21:56+0200\n" "PO-Revision-Date: 2005-01-09 19:30+0800\n" "Last-Translator: Yuheng Xie \n" "Language-Team: zh_CN \n" @@ -377,7 +377,7 @@ #: ../plug-ins/common/pat.c:433 ../plug-ins/common/pcx.c:585 #: ../plug-ins/common/pix.c:515 ../plug-ins/common/png.c:1178 #: ../plug-ins/common/pnm.c:809 ../plug-ins/common/postscript.c:1123 -#: ../plug-ins/common/psd_save.c:1588 ../plug-ins/common/raw.c:517 +#: ../plug-ins/common/psd_save.c:1336 ../plug-ins/common/raw.c:517 #: ../plug-ins/common/raw.c:544 ../plug-ins/common/spheredesigner.c:2088 #: ../plug-ins/common/sunras.c:513 ../plug-ins/common/tga.c:1030 #: ../plug-ins/common/tiff.c:1810 ../plug-ins/common/xbm.c:996 @@ -1215,35 +1215,36 @@ #: ../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 +#: ../plug-ins/bmp/bmpread.c:207 ../plug-ins/bmp/bmpread.c:307 +#: ../plug-ins/bmp/bmpread.c:348 #, c-format msgid "'%s' is not a valid BMP file" msgstr "“%s”不是有效的 BMP 文件" #: ../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 +#: ../plug-ins/bmp/bmpread.c:300 ../plug-ins/bmp/bmpread.c:313 +#: ../plug-ins/bmp/bmpread.c:319 #, c-format msgid "Error reading BMP file header from '%s'" msgstr "从“%s”读 BMP 文件头出错" -#: ../plug-ins/bmp/bmpread.c:442 ../plug-ins/bmp/bmpread.c:477 +#: ../plug-ins/bmp/bmpread.c:450 ../plug-ins/bmp/bmpread.c:485 msgid "Unrecognized or invalid BMP compression format." msgstr "无法识别或无效的 BMP 压缩格式。" #. #. * Create the "background" layer to hold the image... #. -#: ../plug-ins/bmp/bmpread.c:482 ../plug-ins/common/CEL.c:357 +#: ../plug-ins/bmp/bmpread.c:490 ../plug-ins/common/CEL.c:357 #: ../plug-ins/common/CEL.c:360 ../plug-ins/common/blinds.c:273 #: ../plug-ins/common/compose.c:625 ../plug-ins/common/decompose.c:595 #: ../plug-ins/common/dicom.c:442 ../plug-ins/common/film.c:946 -#: ../plug-ins/common/gifload.c:865 ../plug-ins/common/jpeg.c:1113 +#: ../plug-ins/common/gifload.c:864 ../plug-ins/common/jpeg.c:1113 #: ../plug-ins/common/jpeg.c:2474 ../plug-ins/common/pcx.c:334 #: ../plug-ins/common/pcx.c:340 ../plug-ins/common/pix.c:374 #: ../plug-ins/common/png.c:808 ../plug-ins/common/pnm.c:517 -#: ../plug-ins/common/psd.c:2173 ../plug-ins/common/raw.c:677 +#: ../plug-ins/common/psd.c:2174 ../plug-ins/common/raw.c:677 #: ../plug-ins/common/smooth_palette.c:257 ../plug-ins/common/sunras.c:925 #: ../plug-ins/common/tga.c:929 ../plug-ins/common/tiff.c:833 #: ../plug-ins/common/tile.c:266 ../plug-ins/common/winclipboard.c:579 @@ -1274,12 +1275,12 @@ #: ../plug-ins/common/jpeg.c:1453 ../plug-ins/common/pat.c:438 #: ../plug-ins/common/pcx.c:545 ../plug-ins/common/pix.c:521 #: ../plug-ins/common/png.c:1185 ../plug-ins/common/pnm.c:814 -#: ../plug-ins/common/postscript.c:1128 ../plug-ins/common/psd_save.c:1593 +#: ../plug-ins/common/postscript.c:1128 ../plug-ins/common/psd_save.c:1341 #: ../plug-ins/common/sunras.c:518 ../plug-ins/common/tga.c:1035 #: ../plug-ins/common/tiff.c:1815 ../plug-ins/common/xbm.c:1001 #: ../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:957 +#: ../plug-ins/sgi/sgi.c:545 ../plug-ins/winicon/icosave.c:977 #: ../plug-ins/xjt/xjt.c:1682 #, c-format msgid "Saving '%s'..." @@ -1615,7 +1616,7 @@ msgstr "色调" #: ../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 +#: ../plug-ins/common/decompose.c:144 ../plug-ins/rcm/rcm_dialog.c:548 msgid "Saturation" msgstr "饱和度" @@ -1733,9 +1734,8 @@ msgstr "选择性加载设置" #: ../plug-ins/common/CML_explorer.c:1488 -#, fuzzy msgid "Source channel in file:" -msgstr "自文件中的通道:" +msgstr "文件中的源通道:" #: ../plug-ins/common/CML_explorer.c:1509 msgid "_Misc Ops." @@ -2421,24 +2421,24 @@ msgid "Color to _Alpha..." msgstr "颜色到 Alpha(_A)..." -#: ../plug-ins/common/colortoalpha.c:181 +#: ../plug-ins/common/colortoalpha.c:187 msgid "Removing color..." msgstr "正在删除颜色..." -#: ../plug-ins/common/colortoalpha.c:377 +#: ../plug-ins/common/colortoalpha.c:380 msgid "Color to Alpha" msgstr "颜色到 Alpha" -#: ../plug-ins/common/colortoalpha.c:402 ../plug-ins/common/mapcolor.c:424 +#: ../plug-ins/common/colortoalpha.c:405 ../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:406 +#: ../plug-ins/common/colortoalpha.c:409 msgid "Color to Alpha Color Picker" msgstr "颜色到 Alpha 颜色拾取" -#: ../plug-ins/common/colortoalpha.c:420 +#: ../plug-ins/common/colortoalpha.c:423 msgid "to alpha" msgstr "到 Alpha" @@ -2461,13 +2461,13 @@ msgstr "HSV" #. Gray: Circle: Spinbutton 1 -#: ../plug-ins/common/compose.c:148 ../plug-ins/rcm/rcm_dialog.c:452 +#: ../plug-ins/common/compose.c:148 ../plug-ins/rcm/rcm_dialog.c:459 msgid "Hue:" msgstr "色调:" #. Gray: Circle: Spinbutton 2 #: ../plug-ins/common/compose.c:149 ../plug-ins/print/gimp_color_window.c:364 -#: ../plug-ins/rcm/rcm_dialog.c:479 +#: ../plug-ins/rcm/rcm_dialog.c:486 msgid "Saturation:" msgstr "饱和度:" @@ -3081,15 +3081,15 @@ msgid "Deinterlace..." msgstr "去除交错..." -#: ../plug-ins/common/deinterlace.c:315 +#: ../plug-ins/common/deinterlace.c:324 msgid "Deinterlace" msgstr "去除交错" -#: ../plug-ins/common/deinterlace.c:340 +#: ../plug-ins/common/deinterlace.c:349 msgid "Keep o_dd fields" msgstr "保留奇数区域(_D)" -#: ../plug-ins/common/deinterlace.c:341 +#: ../plug-ins/common/deinterlace.c:350 msgid "Keep _even fields" msgstr "保留偶数区域(_E)" @@ -3486,7 +3486,7 @@ #. Create selection #: ../plug-ins/common/film.c:1166 ../plug-ins/imagemap/imap_selection.c:400 -#: ../plug-ins/rcm/rcm_dialog.c:158 +#: ../plug-ins/rcm/rcm_dialog.c:165 msgid "Selection" msgstr "选区" @@ -4018,23 +4018,23 @@ msgid "Non-square pixels. Image might look squashed." msgstr "像素非正方形。图像看起来可能扁了。" -#: ../plug-ins/common/gifload.c:867 +#: ../plug-ins/common/gifload.c:866 #, c-format msgid "Background (%d%s)" msgstr "背景 (%d%s)" -#: ../plug-ins/common/gifload.c:915 ../plug-ins/common/iwarp.c:783 +#: ../plug-ins/common/gifload.c:914 ../plug-ins/common/iwarp.c:783 #: ../plug-ins/common/iwarp.c:817 #, c-format msgid "Frame %d" msgstr "帧 %d" -#: ../plug-ins/common/gifload.c:917 +#: ../plug-ins/common/gifload.c:916 #, c-format msgid "Frame %d (%d%s)" msgstr "帧 %d (%d%s)" -#: ../plug-ins/common/gifload.c:947 +#: ../plug-ins/common/gifload.c:946 #, c-format msgid "" "GIF: Undocumented GIF composite type %d is not handled. Animation might not " @@ -5807,7 +5807,7 @@ msgid "B/W" msgstr "黑/白" -#: ../plug-ins/common/postscript.c:3003 ../plug-ins/rcm/rcm_dialog.c:404 +#: ../plug-ins/common/postscript.c:3003 ../plug-ins/rcm/rcm_dialog.c:411 msgid "Gray" msgstr "灰色" @@ -5896,18 +5896,18 @@ msgid "Invalid UTF-8 string in PSD file" msgstr "PSD 文件中存在无效的 UTF-8 字符串" -#: ../plug-ins/common/psd_save.c:181 +#: ../plug-ins/common/psd_save.c:192 msgid "Photoshop image" msgstr "Photoshop 图像" -#: ../plug-ins/common/psd_save.c:1564 +#: ../plug-ins/common/psd_save.c:1312 #, c-format msgid "" "Unable to save '%s'. The psd file format does not support images that are " "more than 30000 pixels wide or tall." msgstr "无法保存“%s”。psd 文件格式不支持宽度或高度大于 30000 像素的图像。" -#: ../plug-ins/common/psd_save.c:1576 +#: ../plug-ins/common/psd_save.c:1324 #, c-format msgid "" "Unable to save '%s'. The psd file format does not support images with " @@ -6052,61 +6052,52 @@ msgstr "索引色板类型" #: ../plug-ins/common/retinex.c:168 -#, fuzzy msgid "_Retinex..." -msgstr "正在绘制波纹..." +msgstr "_Retinex..." #: ../plug-ins/common/retinex.c:251 -#, fuzzy msgid "Retinex..." -msgstr "旋转..." +msgstr "Retinex..." #: ../plug-ins/common/retinex.c:253 msgid "Retinex (4/4): updated..." -msgstr "" +msgstr "Retinex (4/4):更新..." #: ../plug-ins/common/retinex.c:290 -#, fuzzy msgid "Retinex Image Enhancement" -msgstr "边缘增强(_E)" +msgstr "Retinex 图像增强" #: ../plug-ins/common/retinex.c:311 msgid "Level" -msgstr "" +msgstr "级别" #: ../plug-ins/common/retinex.c:315 -#, fuzzy msgid "_Uniform" -msgstr "单位编辑器" +msgstr "均匀(_U)" #: ../plug-ins/common/retinex.c:317 -#, fuzzy msgid "_Low" -msgstr "下部(_L)" +msgstr "低(_L)" #: ../plug-ins/common/retinex.c:319 -#, fuzzy msgid "_High" -msgstr "高度(_H):" +msgstr "高(_H):" #: ../plug-ins/common/retinex.c:344 -#, fuzzy msgid "_Scale:" -msgstr "缩放:" +msgstr "缩放(_S):" #: ../plug-ins/common/retinex.c:359 -#, fuzzy msgid "_Scale division:" -msgstr "分裂(_D):" +msgstr "标度分格(_S):" #: ../plug-ins/common/retinex.c:374 msgid "_Dynamic:" -msgstr "" +msgstr "动态(_D):" #: ../plug-ins/common/retinex.c:648 -#, fuzzy msgid "Retinex: Filtering..." -msgstr "正在动态模糊..." +msgstr "Retinex:正在绘制..." #: ../plug-ins/common/ripple.c:138 msgid "_Ripple..." @@ -6582,25 +6573,23 @@ #: ../plug-ins/common/sobel.c:273 msgid "_Keep sign of result (one direction only)" -msgstr "保持结果的符号(仅单向)(_K)" +msgstr "保留结果中的痕迹(仅单向)(_K)" #: ../plug-ins/common/sobel.c:359 msgid "Sobel Edge Detecting..." msgstr "正在进行 Sobel 边缘检测..." #: ../plug-ins/common/softglow.c:138 -#, fuzzy msgid "_Softglow..." -msgstr "源文件..." +msgstr "柔光(_S)" #: ../plug-ins/common/softglow.c:629 msgid "Softglow" -msgstr "" +msgstr "柔光" #: ../plug-ins/common/softglow.c:659 -#, fuzzy msgid "_Glow radius:" -msgstr "模糊半径(_B):" +msgstr "半径(_G):" #: ../plug-ins/common/sparkle.c:186 msgid "_Sparkle..." @@ -7061,14 +7050,14 @@ msgstr "TarGA 图像" #: ../plug-ins/common/tga.c:428 -#, fuzzy, c-format +#, c-format msgid "Cannot read footer from '%s'" -msgstr "无法读取颜色项" +msgstr "无法从“%s”中读取页脚" #: ../plug-ins/common/tga.c:444 -#, fuzzy, c-format +#, c-format msgid "Cannot read extension from '%s'" -msgstr "无法读取颜色项" +msgstr "无法从“%s”读取扩展" #: ../plug-ins/common/tga.c:1194 msgid "Save as TGA" @@ -8741,9 +8730,8 @@ msgstr "星形的点的数量" #: ../plug-ins/gfig/gfig-stock.c:41 -#, fuzzy msgid "Create bezier curve" -msgstr "创建圆" +msgstr "创建 Bezier 曲线" #: ../plug-ins/gfig/gfig.c:132 msgid "_Gfig..." @@ -11146,9 +11134,8 @@ msgstr "" #: ../plug-ins/print/gimp_main_window.c:1152 -#, fuzzy msgid "Scale by:" -msgstr "缩放 Z:" +msgstr "缩放为:" #: ../plug-ins/print/gimp_main_window.c:1157 msgid "" @@ -11161,9 +11148,8 @@ msgstr "百分比" #: ../plug-ins/print/gimp_main_window.c:1169 -#, fuzzy msgid "Scale the print to the size of the page" -msgstr "笔划的大小由区域的色调决定" +msgstr "将打印内容缩放为纸张大小" #: ../plug-ins/print/gimp_main_window.c:1175 msgid "PPI" @@ -11315,87 +11301,87 @@ msgid "Rotating the colormap..." msgstr "正在旋转颜色表..." -#: ../plug-ins/rcm/rcm_dialog.c:114 +#: ../plug-ins/rcm/rcm_dialog.c:119 msgid "Original" msgstr "原始" -#: ../plug-ins/rcm/rcm_dialog.c:127 +#: ../plug-ins/rcm/rcm_dialog.c:133 msgid "Rotated" msgstr "旋转后" -#: ../plug-ins/rcm/rcm_dialog.c:140 +#: ../plug-ins/rcm/rcm_dialog.c:147 msgid "Continuous update" msgstr "持续更新" -#: ../plug-ins/rcm/rcm_dialog.c:153 +#: ../plug-ins/rcm/rcm_dialog.c:160 msgid "Area:" msgstr "区域:" -#: ../plug-ins/rcm/rcm_dialog.c:157 +#: ../plug-ins/rcm/rcm_dialog.c:164 msgid "Entire Layer" msgstr "整个图层" -#: ../plug-ins/rcm/rcm_dialog.c:159 +#: ../plug-ins/rcm/rcm_dialog.c:166 msgid "Context" msgstr "选区周围" #. spinbutton 1 -#: ../plug-ins/rcm/rcm_dialog.c:284 ../plug-ins/rcm/rcm_dialog.c:362 +#: ../plug-ins/rcm/rcm_dialog.c:291 ../plug-ins/rcm/rcm_dialog.c:369 msgid "From" msgstr "从" #. spinbutton 2 -#: ../plug-ins/rcm/rcm_dialog.c:310 ../plug-ins/rcm/rcm_dialog.c:363 +#: ../plug-ins/rcm/rcm_dialog.c:317 ../plug-ins/rcm/rcm_dialog.c:370 msgid "To" msgstr "到" #. * Gray: Operation-Mode * -#: ../plug-ins/rcm/rcm_dialog.c:499 +#: ../plug-ins/rcm/rcm_dialog.c:506 msgid "Gray Mode" msgstr "灰色模式" #. Gray: Operation-Mode: two radio buttons -#: ../plug-ins/rcm/rcm_dialog.c:508 +#: ../plug-ins/rcm/rcm_dialog.c:515 msgid "Treat as this" msgstr "按此色对待" -#: ../plug-ins/rcm/rcm_dialog.c:520 +#: ../plug-ins/rcm/rcm_dialog.c:527 msgid "Change to this" msgstr "改为此色" #. * Gray: What is gray? * -#: ../plug-ins/rcm/rcm_dialog.c:533 +#: ../plug-ins/rcm/rcm_dialog.c:540 msgid "Gray Threshold" msgstr "灰色阈值" #. * Misc: Used unit selection * -#: ../plug-ins/rcm/rcm_dialog.c:572 ../plug-ins/rcm/rcm_dialog.c:676 +#: ../plug-ins/rcm/rcm_dialog.c:579 ../plug-ins/rcm/rcm_dialog.c:683 msgid "Units" msgstr "单位" #. Misc: Used unit selection: 3 radio buttons -#: ../plug-ins/rcm/rcm_dialog.c:581 +#: ../plug-ins/rcm/rcm_dialog.c:588 msgid "Radians" msgstr "弧度" -#: ../plug-ins/rcm/rcm_dialog.c:593 +#: ../plug-ins/rcm/rcm_dialog.c:600 msgid "Radians/Pi" msgstr "弧度/Pi" -#: ../plug-ins/rcm/rcm_dialog.c:605 +#: ../plug-ins/rcm/rcm_dialog.c:612 msgid "Degrees" msgstr "角度" #. Create dialog -#: ../plug-ins/rcm/rcm_dialog.c:638 +#: ../plug-ins/rcm/rcm_dialog.c:645 msgid "Colormap Rotation" msgstr "颜色表旋转" -#: ../plug-ins/rcm/rcm_dialog.c:670 +#: ../plug-ins/rcm/rcm_dialog.c:677 msgid "Main Options" msgstr "主选项" -#: ../plug-ins/rcm/rcm_dialog.c:673 +#: ../plug-ins/rcm/rcm_dialog.c:680 msgid "Gray Options" msgstr "灰色选项" @@ -11476,27 +11462,27 @@ msgid "Transferring TWAIN data..." msgstr "正在传输 TWAIN 数据..." -#: ../plug-ins/winicon/icodialog.c:123 +#: ../plug-ins/winicon/icodialog.c:89 msgid "1 bpp, 1-bit alpha, 2-slot palette" msgstr "1 bpp,1 位 alpha,2 个调色板项" -#: ../plug-ins/winicon/icodialog.c:124 +#: ../plug-ins/winicon/icodialog.c:90 msgid "4 bpp, 1-bit alpha, 16-slot palette" msgstr "4 bpp,1 位 alpha,16 个调色板项" -#: ../plug-ins/winicon/icodialog.c:125 +#: ../plug-ins/winicon/icodialog.c:91 msgid "8 bpp, 1-bit alpha, 256-slot palette" msgstr "8 bpp,1 位 alpha,256 个调色板项" -#: ../plug-ins/winicon/icodialog.c:126 +#: ../plug-ins/winicon/icodialog.c:92 msgid "32 bpp, 8-bit alpha, no palette" msgstr "32 bpp,8 位 alpha,无调色板" -#: ../plug-ins/winicon/icodialog.c:151 +#: ../plug-ins/winicon/icodialog.c:117 msgid "GIMP Windows Icon Plugin" msgstr "GIMP Windows 图标插件" -#: ../plug-ins/winicon/icodialog.c:172 +#: ../plug-ins/winicon/icodialog.c:138 msgid "Icon details" msgstr "图标细节" @@ -11505,7 +11491,7 @@ msgid "Icon #%i" msgstr "图标 #%i" -#: ../plug-ins/winicon/icosave.c:943 +#: ../plug-ins/winicon/icosave.c:969 msgid "Windows icons cannot be higher or wider than 255 pixels." msgstr "Windows 图标不能高于或宽于 255 像素。" @@ -11704,9 +11690,8 @@ #~ msgid "Could not locate help document" #~ msgstr "无法定位帮助文档" -#, fuzzy #~ msgid "/Filters/Render" -#~ msgstr "/滤镜(R)/绘制(R)/几何图形(GFig)(_G)..." +#~ msgstr "/滤镜/绘制" #, fuzzy #~ msgid "/Filters/Light Effects" diff -uraN gimp-2.2.4/po-plug-ins/zh_TW.gmo gimp-2.2.5/po-plug-ins/zh_TW.gmo --- gimp-2.2.4/po-plug-ins/zh_TW.gmo 2005-02-22 23:12:46.000000000 +0100 +++ gimp-2.2.5/po-plug-ins/zh_TW.gmo 2005-04-09 23:09:33.000000000 +0200 @@ -354,7 +354,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: 2005-02-22 23:04+0100 +POT-Creation-Date: 2005-04-09 21:56+0200 PO-Revision-Date: 2004-09-28 11:46+0800 Last-Translator: Abel Cheung Language-Team: Chinese (traditional) diff -uraN gimp-2.2.4/po-plug-ins/zh_TW.po gimp-2.2.5/po-plug-ins/zh_TW.po --- gimp-2.2.4/po-plug-ins/zh_TW.po 2005-02-22 23:12:41.000000000 +0100 +++ gimp-2.2.5/po-plug-ins/zh_TW.po 2005-04-09 23:09:28.000000000 +0200 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: gimp-std-plug-ins 2.1.6\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-02-22 23:04+0100\n" +"POT-Creation-Date: 2005-04-09 21:56+0200\n" "PO-Revision-Date: 2004-09-28 11:46+0800\n" "Last-Translator: Abel Cheung \n" "Language-Team: Chinese (traditional) \n" @@ -375,7 +375,7 @@ #: ../plug-ins/common/pat.c:433 ../plug-ins/common/pcx.c:585 #: ../plug-ins/common/pix.c:515 ../plug-ins/common/png.c:1178 #: ../plug-ins/common/pnm.c:809 ../plug-ins/common/postscript.c:1123 -#: ../plug-ins/common/psd_save.c:1588 ../plug-ins/common/raw.c:517 +#: ../plug-ins/common/psd_save.c:1336 ../plug-ins/common/raw.c:517 #: ../plug-ins/common/raw.c:544 ../plug-ins/common/spheredesigner.c:2088 #: ../plug-ins/common/sunras.c:513 ../plug-ins/common/tga.c:1030 #: ../plug-ins/common/tiff.c:1810 ../plug-ins/common/xbm.c:996 @@ -1213,35 +1213,36 @@ #: ../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 +#: ../plug-ins/bmp/bmpread.c:207 ../plug-ins/bmp/bmpread.c:307 +#: ../plug-ins/bmp/bmpread.c:348 #, c-format msgid "'%s' is not a valid BMP file" msgstr "‘%s’不是有效的 BMP 點陣圖" #: ../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 +#: ../plug-ins/bmp/bmpread.c:300 ../plug-ins/bmp/bmpread.c:313 +#: ../plug-ins/bmp/bmpread.c:319 #, c-format msgid "Error reading BMP file header from '%s'" msgstr "讀取 BMP 點陣圖‘%s’的檔頭時發生錯誤" -#: ../plug-ins/bmp/bmpread.c:442 ../plug-ins/bmp/bmpread.c:477 +#: ../plug-ins/bmp/bmpread.c:450 ../plug-ins/bmp/bmpread.c:485 msgid "Unrecognized or invalid BMP compression format." msgstr "" #. #. * Create the "background" layer to hold the image... #. -#: ../plug-ins/bmp/bmpread.c:482 ../plug-ins/common/CEL.c:357 +#: ../plug-ins/bmp/bmpread.c:490 ../plug-ins/common/CEL.c:357 #: ../plug-ins/common/CEL.c:360 ../plug-ins/common/blinds.c:273 #: ../plug-ins/common/compose.c:625 ../plug-ins/common/decompose.c:595 #: ../plug-ins/common/dicom.c:442 ../plug-ins/common/film.c:946 -#: ../plug-ins/common/gifload.c:865 ../plug-ins/common/jpeg.c:1113 +#: ../plug-ins/common/gifload.c:864 ../plug-ins/common/jpeg.c:1113 #: ../plug-ins/common/jpeg.c:2474 ../plug-ins/common/pcx.c:334 #: ../plug-ins/common/pcx.c:340 ../plug-ins/common/pix.c:374 #: ../plug-ins/common/png.c:808 ../plug-ins/common/pnm.c:517 -#: ../plug-ins/common/psd.c:2173 ../plug-ins/common/raw.c:677 +#: ../plug-ins/common/psd.c:2174 ../plug-ins/common/raw.c:677 #: ../plug-ins/common/smooth_palette.c:257 ../plug-ins/common/sunras.c:925 #: ../plug-ins/common/tga.c:929 ../plug-ins/common/tiff.c:833 #: ../plug-ins/common/tile.c:266 ../plug-ins/common/winclipboard.c:579 @@ -1272,12 +1273,12 @@ #: ../plug-ins/common/jpeg.c:1453 ../plug-ins/common/pat.c:438 #: ../plug-ins/common/pcx.c:545 ../plug-ins/common/pix.c:521 #: ../plug-ins/common/png.c:1185 ../plug-ins/common/pnm.c:814 -#: ../plug-ins/common/postscript.c:1128 ../plug-ins/common/psd_save.c:1593 +#: ../plug-ins/common/postscript.c:1128 ../plug-ins/common/psd_save.c:1341 #: ../plug-ins/common/sunras.c:518 ../plug-ins/common/tga.c:1035 #: ../plug-ins/common/tiff.c:1815 ../plug-ins/common/xbm.c:1001 #: ../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:957 +#: ../plug-ins/sgi/sgi.c:545 ../plug-ins/winicon/icosave.c:977 #: ../plug-ins/xjt/xjt.c:1682 #, c-format msgid "Saving '%s'..." @@ -1613,7 +1614,7 @@ msgstr "色相" #: ../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 +#: ../plug-ins/common/decompose.c:144 ../plug-ins/rcm/rcm_dialog.c:548 msgid "Saturation" msgstr "彩度" @@ -2414,25 +2415,25 @@ msgid "Color to _Alpha..." msgstr "色彩轉為透明(_A)..." -#: ../plug-ins/common/colortoalpha.c:181 +#: ../plug-ins/common/colortoalpha.c:187 msgid "Removing color..." msgstr "正在移除顏色..." -#: ../plug-ins/common/colortoalpha.c:377 +#: ../plug-ins/common/colortoalpha.c:380 msgid "Color to Alpha" msgstr "色彩轉為透明" -#: ../plug-ins/common/colortoalpha.c:402 ../plug-ins/common/mapcolor.c:424 +#: ../plug-ins/common/colortoalpha.c:405 ../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:406 +#: ../plug-ins/common/colortoalpha.c:409 msgid "Color to Alpha Color Picker" msgstr "選擇準備轉換為透明的顏色" -#: ../plug-ins/common/colortoalpha.c:420 +#: ../plug-ins/common/colortoalpha.c:423 msgid "to alpha" msgstr "轉為透明" @@ -2455,13 +2456,13 @@ msgstr "HSV" #. Gray: Circle: Spinbutton 1 -#: ../plug-ins/common/compose.c:148 ../plug-ins/rcm/rcm_dialog.c:452 +#: ../plug-ins/common/compose.c:148 ../plug-ins/rcm/rcm_dialog.c:459 msgid "Hue:" msgstr "色相:" #. Gray: Circle: Spinbutton 2 #: ../plug-ins/common/compose.c:149 ../plug-ins/print/gimp_color_window.c:364 -#: ../plug-ins/rcm/rcm_dialog.c:479 +#: ../plug-ins/rcm/rcm_dialog.c:486 msgid "Saturation:" msgstr "彩度:" @@ -3075,15 +3076,15 @@ msgid "Deinterlace..." msgstr "" -#: ../plug-ins/common/deinterlace.c:315 +#: ../plug-ins/common/deinterlace.c:324 msgid "Deinterlace" msgstr "" -#: ../plug-ins/common/deinterlace.c:340 +#: ../plug-ins/common/deinterlace.c:349 msgid "Keep o_dd fields" msgstr "" -#: ../plug-ins/common/deinterlace.c:341 +#: ../plug-ins/common/deinterlace.c:350 msgid "Keep _even fields" msgstr "" @@ -3483,7 +3484,7 @@ #. Create selection #: ../plug-ins/common/film.c:1166 ../plug-ins/imagemap/imap_selection.c:400 -#: ../plug-ins/rcm/rcm_dialog.c:158 +#: ../plug-ins/rcm/rcm_dialog.c:165 msgid "Selection" msgstr "選擇區域" @@ -4013,23 +4014,23 @@ msgid "Non-square pixels. Image might look squashed." msgstr "" -#: ../plug-ins/common/gifload.c:867 +#: ../plug-ins/common/gifload.c:866 #, c-format msgid "Background (%d%s)" msgstr "背景 (%d%s)" -#: ../plug-ins/common/gifload.c:915 ../plug-ins/common/iwarp.c:783 +#: ../plug-ins/common/gifload.c:914 ../plug-ins/common/iwarp.c:783 #: ../plug-ins/common/iwarp.c:817 #, c-format msgid "Frame %d" msgstr "第 %d 畫格" -#: ../plug-ins/common/gifload.c:917 +#: ../plug-ins/common/gifload.c:916 #, c-format msgid "Frame %d (%d%s)" msgstr "第 %d 畫格 (%d%s)" -#: ../plug-ins/common/gifload.c:947 +#: ../plug-ins/common/gifload.c:946 #, c-format msgid "" "GIF: Undocumented GIF composite type %d is not handled. Animation might not " @@ -5807,7 +5808,7 @@ msgid "B/W" msgstr "黑白" -#: ../plug-ins/common/postscript.c:3003 ../plug-ins/rcm/rcm_dialog.c:404 +#: ../plug-ins/common/postscript.c:3003 ../plug-ins/rcm/rcm_dialog.c:411 msgid "Gray" msgstr "灰" @@ -5896,18 +5897,18 @@ msgid "Invalid UTF-8 string in PSD file" msgstr "PSD 檔案中含有無效的 UTF-8 字串" -#: ../plug-ins/common/psd_save.c:181 +#: ../plug-ins/common/psd_save.c:192 msgid "Photoshop image" msgstr "" -#: ../plug-ins/common/psd_save.c:1564 +#: ../plug-ins/common/psd_save.c:1312 #, c-format msgid "" "Unable to save '%s'. The psd file format does not support images that are " "more than 30000 pixels wide or tall." msgstr "" -#: ../plug-ins/common/psd_save.c:1576 +#: ../plug-ins/common/psd_save.c:1324 #, c-format msgid "" "Unable to save '%s'. The psd file format does not support images with " @@ -11377,87 +11378,87 @@ msgid "Rotating the colormap..." msgstr "" -#: ../plug-ins/rcm/rcm_dialog.c:114 +#: ../plug-ins/rcm/rcm_dialog.c:119 msgid "Original" msgstr "原來" -#: ../plug-ins/rcm/rcm_dialog.c:127 +#: ../plug-ins/rcm/rcm_dialog.c:133 msgid "Rotated" msgstr "旋轉後" -#: ../plug-ins/rcm/rcm_dialog.c:140 +#: ../plug-ins/rcm/rcm_dialog.c:147 msgid "Continuous update" msgstr "連續更新" -#: ../plug-ins/rcm/rcm_dialog.c:153 +#: ../plug-ins/rcm/rcm_dialog.c:160 msgid "Area:" msgstr "區域:" -#: ../plug-ins/rcm/rcm_dialog.c:157 +#: ../plug-ins/rcm/rcm_dialog.c:164 msgid "Entire Layer" msgstr "整個圖層" -#: ../plug-ins/rcm/rcm_dialog.c:159 +#: ../plug-ins/rcm/rcm_dialog.c:166 msgid "Context" msgstr "" #. spinbutton 1 -#: ../plug-ins/rcm/rcm_dialog.c:284 ../plug-ins/rcm/rcm_dialog.c:362 +#: ../plug-ins/rcm/rcm_dialog.c:291 ../plug-ins/rcm/rcm_dialog.c:369 msgid "From" msgstr "從" #. spinbutton 2 -#: ../plug-ins/rcm/rcm_dialog.c:310 ../plug-ins/rcm/rcm_dialog.c:363 +#: ../plug-ins/rcm/rcm_dialog.c:317 ../plug-ins/rcm/rcm_dialog.c:370 msgid "To" msgstr "至" #. * Gray: Operation-Mode * -#: ../plug-ins/rcm/rcm_dialog.c:499 +#: ../plug-ins/rcm/rcm_dialog.c:506 msgid "Gray Mode" msgstr "灰階模式" #. Gray: Operation-Mode: two radio buttons -#: ../plug-ins/rcm/rcm_dialog.c:508 +#: ../plug-ins/rcm/rcm_dialog.c:515 msgid "Treat as this" msgstr "" -#: ../plug-ins/rcm/rcm_dialog.c:520 +#: ../plug-ins/rcm/rcm_dialog.c:527 msgid "Change to this" msgstr "" #. * Gray: What is gray? * -#: ../plug-ins/rcm/rcm_dialog.c:533 +#: ../plug-ins/rcm/rcm_dialog.c:540 msgid "Gray Threshold" msgstr "" #. * Misc: Used unit selection * -#: ../plug-ins/rcm/rcm_dialog.c:572 ../plug-ins/rcm/rcm_dialog.c:676 +#: ../plug-ins/rcm/rcm_dialog.c:579 ../plug-ins/rcm/rcm_dialog.c:683 msgid "Units" msgstr "單位" #. Misc: Used unit selection: 3 radio buttons -#: ../plug-ins/rcm/rcm_dialog.c:581 +#: ../plug-ins/rcm/rcm_dialog.c:588 msgid "Radians" msgstr "弧度" -#: ../plug-ins/rcm/rcm_dialog.c:593 +#: ../plug-ins/rcm/rcm_dialog.c:600 msgid "Radians/Pi" msgstr "弧度/π" -#: ../plug-ins/rcm/rcm_dialog.c:605 +#: ../plug-ins/rcm/rcm_dialog.c:612 msgid "Degrees" msgstr "角度" #. Create dialog -#: ../plug-ins/rcm/rcm_dialog.c:638 +#: ../plug-ins/rcm/rcm_dialog.c:645 msgid "Colormap Rotation" msgstr "" -#: ../plug-ins/rcm/rcm_dialog.c:670 +#: ../plug-ins/rcm/rcm_dialog.c:677 msgid "Main Options" msgstr "主要選項" -#: ../plug-ins/rcm/rcm_dialog.c:673 +#: ../plug-ins/rcm/rcm_dialog.c:680 msgid "Gray Options" msgstr "" @@ -11538,27 +11539,27 @@ msgid "Transferring TWAIN data..." msgstr "正在傳送 TWAIN 資料..." -#: ../plug-ins/winicon/icodialog.c:123 +#: ../plug-ins/winicon/icodialog.c:89 msgid "1 bpp, 1-bit alpha, 2-slot palette" msgstr "" -#: ../plug-ins/winicon/icodialog.c:124 +#: ../plug-ins/winicon/icodialog.c:90 msgid "4 bpp, 1-bit alpha, 16-slot palette" msgstr "" -#: ../plug-ins/winicon/icodialog.c:125 +#: ../plug-ins/winicon/icodialog.c:91 msgid "8 bpp, 1-bit alpha, 256-slot palette" msgstr "" -#: ../plug-ins/winicon/icodialog.c:126 +#: ../plug-ins/winicon/icodialog.c:92 msgid "32 bpp, 8-bit alpha, no palette" msgstr "" -#: ../plug-ins/winicon/icodialog.c:151 +#: ../plug-ins/winicon/icodialog.c:117 msgid "GIMP Windows Icon Plugin" msgstr "" -#: ../plug-ins/winicon/icodialog.c:172 +#: ../plug-ins/winicon/icodialog.c:138 msgid "Icon details" msgstr "圖示詳細資料" @@ -11567,7 +11568,7 @@ msgid "Icon #%i" msgstr "Icon #%i" -#: ../plug-ins/winicon/icosave.c:943 +#: ../plug-ins/winicon/icosave.c:969 msgid "Windows icons cannot be higher or wider than 255 pixels." msgstr "" diff -uraN gimp-2.2.4/po-script-fu/bg.gmo gimp-2.2.5/po-script-fu/bg.gmo --- gimp-2.2.4/po-script-fu/bg.gmo 2005-02-22 23:12:52.000000000 +0100 +++ gimp-2.2.5/po-script-fu/bg.gmo 2005-04-09 23:09:40.000000000 +0200 @@ -1,6 +1,6 @@ $,8f9Project-Id-Version: gimp 2-2 Report-Msgid-Bugs-To: -POT-Creation-Date: 2005-02-22 23:04+0100 +POT-Creation-Date: 2005-04-09 21:56+0200 PO-Revision-Date: 2005-02-18 19:48+0200 Last-Translator: Alexander Shopov Language-Team: Bulgarian diff -uraN gimp-2.2.4/po-script-fu/bg.po gimp-2.2.5/po-script-fu/bg.po --- gimp-2.2.4/po-script-fu/bg.po 2005-02-22 23:12:46.000000000 +0100 +++ gimp-2.2.5/po-script-fu/bg.po 2005-04-09 23:09:33.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: gimp 2-2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-02-22 23:04+0100\n" +"POT-Creation-Date: 2005-04-09 21:56+0200\n" "PO-Revision-Date: 2005-02-18 19:48+0200\n" "Last-Translator: Alexander Shopov \n" "Language-Team: Bulgarian \n" @@ -132,7 +132,7 @@ msgid "Image Types:" msgstr "" -#: ../plug-ins/script-fu/script-fu-scripts.c:611 +#: ../plug-ins/script-fu/script-fu-scripts.c:622 #, c-format msgid "" "Error while executing\n" diff -uraN gimp-2.2.4/po-script-fu/ca.gmo gimp-2.2.5/po-script-fu/ca.gmo --- gimp-2.2.4/po-script-fu/ca.gmo 2005-02-22 23:12:53.000000000 +0100 +++ gimp-2.2.5/po-script-fu/ca.gmo 2005-04-09 23:09:40.000000000 +0200 @@ -47,7 +47,7 @@ %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 procedureInterpolationInvertInvert directionKeep backgroundKeep bump layerKeep selectionLand heightLeftLighting (degrees)LinearLissajousLoopedLower colorLower color (active)Lower-right colorMake new backgroundMargin (pixels)Mask opacityMask sizeMax. blur radiusMosaic tile typeMottleNameNo 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 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 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 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 divisionsYou are already running the "%s" script._Border (pixels)_Browse..._Color scheme_Filter (regexp)_Labels_Search:_Start Server..._TextProject-Id-Version: gimp 2 Report-Msgid-Bugs-To: -POT-Creation-Date: 2005-02-22 23:04+0100 +POT-Creation-Date: 2005-04-09 21:56+0200 PO-Revision-Date: 2004-12-31 13:12+0100 Last-Translator: Xavier Beà Language-Team: Catalan diff -uraN gimp-2.2.4/po-script-fu/ca.po gimp-2.2.5/po-script-fu/ca.po --- gimp-2.2.4/po-script-fu/ca.po 2005-02-22 23:12:46.000000000 +0100 +++ gimp-2.2.5/po-script-fu/ca.po 2005-04-09 23:09:33.000000000 +0200 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: gimp 2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-02-22 23:04+0100\n" +"POT-Creation-Date: 2005-04-09 21:56+0200\n" "PO-Revision-Date: 2004-12-31 13:12+0100\n" "Last-Translator: Xavier Beà \n" "Language-Team: Catalan \n" @@ -138,7 +138,7 @@ msgid "Image Types:" msgstr "Tipus d'imatge:" -#: ../plug-ins/script-fu/script-fu-scripts.c:611 +#: ../plug-ins/script-fu/script-fu-scripts.c:622 #, c-format msgid "" "Error while executing\n" diff -uraN gimp-2.2.4/po-script-fu/ChangeLog gimp-2.2.5/po-script-fu/ChangeLog --- gimp-2.2.4/po-script-fu/ChangeLog 2005-02-21 14:15:08.000000000 +0100 +++ gimp-2.2.5/po-script-fu/ChangeLog 2005-03-21 11:21:15.000000000 +0100 @@ -1,3 +1,7 @@ +2005-03-20 Marcel Telka + + * sk.po: Updated Slovak translation. + 2005-02-19 Takeshi AIHANA * ja.po: Updated Japanese translation by diff -uraN gimp-2.2.4/po-script-fu/cs.gmo gimp-2.2.5/po-script-fu/cs.gmo --- gimp-2.2.4/po-script-fu/cs.gmo 2005-02-22 23:12:53.000000000 +0100 +++ gimp-2.2.5/po-script-fu/cs.gmo 2005-04-09 23:09:40.000000000 +0200 @@ -57,7 +57,7 @@ %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._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: 2005-02-22 23:04+0100 +POT-Creation-Date: 2005-04-09 21:56+0200 PO-Revision-Date: 2004-11-20 16:09+0100 Last-Translator: Miloslav Trmac Language-Team: Czech diff -uraN gimp-2.2.4/po-script-fu/cs.po gimp-2.2.5/po-script-fu/cs.po --- gimp-2.2.4/po-script-fu/cs.po 2005-02-22 23:12:46.000000000 +0100 +++ gimp-2.2.5/po-script-fu/cs.po 2005-04-09 23:09:33.000000000 +0200 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: gimp-script-fu VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-02-22 23:04+0100\n" +"POT-Creation-Date: 2005-04-09 21:56+0200\n" "PO-Revision-Date: 2004-11-20 16:09+0100\n" "Last-Translator: Miloslav Trmac \n" "Language-Team: Czech \n" @@ -134,7 +134,7 @@ msgid "Image Types:" msgstr "Typy obrázku:" -#: ../plug-ins/script-fu/script-fu-scripts.c:611 +#: ../plug-ins/script-fu/script-fu-scripts.c:622 #, c-format msgid "" "Error while executing\n" diff -uraN gimp-2.2.4/po-script-fu/da.gmo gimp-2.2.5/po-script-fu/da.gmo --- gimp-2.2.4/po-script-fu/da.gmo 2005-02-22 23:12:53.000000000 +0100 +++ gimp-2.2.5/po-script-fu/da.gmo 2005-04-09 23:09:40.000000000 +0200 @@ -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: 2005-02-22 23:04+0100 +POT-Creation-Date: 2005-04-09 21:56+0200 PO-Revision-Date: 2004-02-10 21:40+0100 Last-Translator: Ole Laursen Language-Team: Danish diff -uraN gimp-2.2.4/po-script-fu/da.po gimp-2.2.5/po-script-fu/da.po --- gimp-2.2.4/po-script-fu/da.po 2005-02-22 23:12:46.000000000 +0100 +++ gimp-2.2.5/po-script-fu/da.po 2005-04-09 23:09:34.000000000 +0200 @@ -20,7 +20,7 @@ msgstr "" "Project-Id-Version: GIMP script-fu\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-02-22 23:04+0100\n" +"POT-Creation-Date: 2005-04-09 21:56+0200\n" "PO-Revision-Date: 2004-02-10 21:40+0100\n" "Last-Translator: Ole Laursen \n" "Language-Team: Danish \n" @@ -148,7 +148,7 @@ msgid "Image Types:" msgstr "Billedtyper:" -#: ../plug-ins/script-fu/script-fu-scripts.c:611 +#: ../plug-ins/script-fu/script-fu-scripts.c:622 #, c-format msgid "" "Error while executing\n" diff -uraN gimp-2.2.4/po-script-fu/de.gmo gimp-2.2.5/po-script-fu/de.gmo --- gimp-2.2.4/po-script-fu/de.gmo 2005-02-22 23:12:53.000000000 +0100 +++ gimp-2.2.5/po-script-fu/de.gmo 2005-04-09 23:09:41.000000000 +0200 @@ -67,7 +67,7 @@ %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._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: 2005-02-22 23:04+0100 +POT-Creation-Date: 2005-04-09 21:56+0200 PO-Revision-Date: 2004-11-18 02:31+0100 Last-Translator: Hendrik Brandt Language-Team: German diff -uraN gimp-2.2.4/po-script-fu/de.po gimp-2.2.5/po-script-fu/de.po --- gimp-2.2.4/po-script-fu/de.po 2005-02-22 23:12:47.000000000 +0100 +++ gimp-2.2.5/po-script-fu/de.po 2005-04-09 23:09:34.000000000 +0200 @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: GIMP 2.2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-02-22 23:04+0100\n" +"POT-Creation-Date: 2005-04-09 21:56+0200\n" "PO-Revision-Date: 2004-11-18 02:31+0100\n" "Last-Translator: Hendrik Brandt \n" "Language-Team: German \n" @@ -136,7 +136,7 @@ msgid "Image Types:" msgstr "Bildtypen:" -#: ../plug-ins/script-fu/script-fu-scripts.c:611 +#: ../plug-ins/script-fu/script-fu-scripts.c:622 #, c-format msgid "" "Error while executing\n" diff -uraN gimp-2.2.4/po-script-fu/el.gmo gimp-2.2.5/po-script-fu/el.gmo --- gimp-2.2.4/po-script-fu/el.gmo 2005-02-22 23:12:53.000000000 +0100 +++ gimp-2.2.5/po-script-fu/el.gmo 2005-04-09 23:09:41.000000000 +0200 @@ -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: 2005-02-22 23:04+0100 +POT-Creation-Date: 2005-04-09 21:56+0200 PO-Revision-Date: 2001-12-27 17:09+0000 Last-Translator: Simos Xenitellis Language-Team: Greek diff -uraN gimp-2.2.4/po-script-fu/el.po gimp-2.2.5/po-script-fu/el.po --- gimp-2.2.4/po-script-fu/el.po 2005-02-22 23:12:47.000000000 +0100 +++ gimp-2.2.5/po-script-fu/el.po 2005-04-09 23:09:34.000000000 +0200 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: gimp-script-fu 1.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-02-22 23:04+0100\n" +"POT-Creation-Date: 2005-04-09 21:56+0200\n" "PO-Revision-Date: 2001-12-27 17:09+0000\n" "Last-Translator: Simos Xenitellis \n" "Language-Team: Greek \n" @@ -153,7 +153,7 @@ msgid "Image Types:" msgstr "Τύπος Στοιχείου:" -#: ../plug-ins/script-fu/script-fu-scripts.c:611 +#: ../plug-ins/script-fu/script-fu-scripts.c:622 #, fuzzy, c-format msgid "" "Error while executing\n" diff -uraN gimp-2.2.4/po-script-fu/en_CA.gmo gimp-2.2.5/po-script-fu/en_CA.gmo --- gimp-2.2.4/po-script-fu/en_CA.gmo 2005-02-22 23:12:53.000000000 +0100 +++ gimp-2.2.5/po-script-fu/en_CA.gmo 2005-04-09 23:09:41.000000000 +0200 @@ -78,7 +78,7 @@ %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._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: 2005-02-22 23:04+0100 +POT-Creation-Date: 2005-04-09 21:56+0200 PO-Revision-Date: 2004-11-18 00:14-0400 Last-Translator: Adam Weinberger Language-Team: English/Canada diff -uraN gimp-2.2.4/po-script-fu/en_CA.po gimp-2.2.5/po-script-fu/en_CA.po --- gimp-2.2.4/po-script-fu/en_CA.po 2005-02-22 23:12:47.000000000 +0100 +++ gimp-2.2.5/po-script-fu/en_CA.po 2005-04-09 23:09:34.000000000 +0200 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: gimp script-fu\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-02-22 23:04+0100\n" +"POT-Creation-Date: 2005-04-09 21:56+0200\n" "PO-Revision-Date: 2004-11-18 00:14-0400\n" "Last-Translator: Adam Weinberger \n" "Language-Team: English/Canada \n" @@ -133,7 +133,7 @@ msgid "Image Types:" msgstr "Image Types:" -#: ../plug-ins/script-fu/script-fu-scripts.c:611 +#: ../plug-ins/script-fu/script-fu-scripts.c:622 #, c-format msgid "" "Error while executing\n" diff -uraN gimp-2.2.4/po-script-fu/en_GB.gmo gimp-2.2.5/po-script-fu/en_GB.gmo --- gimp-2.2.4/po-script-fu/en_GB.gmo 2005-02-22 23:12:53.000000000 +0100 +++ gimp-2.2.5/po-script-fu/en_GB.gmo 2005-04-09 23:09:41.000000000 +0200 @@ -78,7 +78,7 @@ %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._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: 2005-02-22 23:04+0100 +POT-Creation-Date: 2005-04-09 21:56+0200 PO-Revision-Date: 2004-11-21 22:59+0100 Last-Translator: David Lodge Language-Team: English, British diff -uraN gimp-2.2.4/po-script-fu/en_GB.po gimp-2.2.5/po-script-fu/en_GB.po --- gimp-2.2.4/po-script-fu/en_GB.po 2005-02-22 23:12:47.000000000 +0100 +++ gimp-2.2.5/po-script-fu/en_GB.po 2005-04-09 23:09:34.000000000 +0200 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: GIMP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-02-22 23:04+0100\n" +"POT-Creation-Date: 2005-04-09 21:56+0200\n" "PO-Revision-Date: 2004-11-21 22:59+0100\n" "Last-Translator: David Lodge \n" "Language-Team: English, British\n" @@ -132,7 +132,7 @@ msgid "Image Types:" msgstr "Image Types:" -#: ../plug-ins/script-fu/script-fu-scripts.c:611 +#: ../plug-ins/script-fu/script-fu-scripts.c:622 #, c-format msgid "" "Error while executing\n" diff -uraN gimp-2.2.4/po-script-fu/es.gmo gimp-2.2.5/po-script-fu/es.gmo --- gimp-2.2.4/po-script-fu/es.gmo 2005-02-22 23:12:53.000000000 +0100 +++ gimp-2.2.5/po-script-fu/es.gmo 2005-04-09 23:09:41.000000000 +0200 @@ -68,7 +68,7 @@ %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._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: 2005-02-22 23:04+0100 +POT-Creation-Date: 2005-04-09 21:56+0200 PO-Revision-Date: 2004-12-31 02:16+0100 Last-Translator: Language-Team: diff -uraN gimp-2.2.4/po-script-fu/es.po gimp-2.2.5/po-script-fu/es.po --- gimp-2.2.4/po-script-fu/es.po 2005-02-22 23:12:47.000000000 +0100 +++ gimp-2.2.5/po-script-fu/es.po 2005-04-09 23:09:34.000000000 +0200 @@ -12,7 +12,7 @@ msgstr "" "Project-Id-Version: es\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-02-22 23:04+0100\n" +"POT-Creation-Date: 2005-04-09 21:56+0200\n" "PO-Revision-Date: 2004-12-31 02:16+0100\n" "Last-Translator: \n" "Language-Team: \n" @@ -141,7 +141,7 @@ msgid "Image Types:" msgstr "Tipos de imagen:" -#: ../plug-ins/script-fu/script-fu-scripts.c:611 +#: ../plug-ins/script-fu/script-fu-scripts.c:622 #, c-format msgid "" "Error while executing\n" diff -uraN gimp-2.2.4/po-script-fu/eu.gmo gimp-2.2.5/po-script-fu/eu.gmo --- gimp-2.2.4/po-script-fu/eu.gmo 2005-02-22 23:12:53.000000000 +0100 +++ gimp-2.2.5/po-script-fu/eu.gmo 2005-04-09 23:09:41.000000000 +0200 @@ -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: 2005-02-22 23:04+0100 +POT-Creation-Date: 2005-04-09 21:56+0200 PO-Revision-Date: 2004-04-06 19:42+0200 Last-Translator: Iñaki Larrañaga Murgoitio Language-Team: Basque diff -uraN gimp-2.2.4/po-script-fu/eu.po gimp-2.2.5/po-script-fu/eu.po --- gimp-2.2.4/po-script-fu/eu.po 2005-02-22 23:12:47.000000000 +0100 +++ gimp-2.2.5/po-script-fu/eu.po 2005-04-09 23:09:35.000000000 +0200 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: eu\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-02-22 23:04+0100\n" +"POT-Creation-Date: 2005-04-09 21:56+0200\n" "PO-Revision-Date: 2004-04-06 19:42+0200\n" "Last-Translator: Iñaki Larrañaga Murgoitio \n" "Language-Team: Basque \n" @@ -141,7 +141,7 @@ msgid "Image Types:" msgstr "Irudi-motak:" -#: ../plug-ins/script-fu/script-fu-scripts.c:611 +#: ../plug-ins/script-fu/script-fu-scripts.c:622 #, c-format msgid "" "Error while executing\n" diff -uraN gimp-2.2.4/po-script-fu/fi.gmo gimp-2.2.5/po-script-fu/fi.gmo --- gimp-2.2.4/po-script-fu/fi.gmo 2005-02-22 23:12:53.000000000 +0100 +++ gimp-2.2.5/po-script-fu/fi.gmo 2005-04-09 23:09:41.000000000 +0200 @@ -76,7 +76,7 @@ %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 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: 2005-02-22 23:04+0100 +POT-Creation-Date: 2005-04-09 21:56+0200 PO-Revision-Date: 2004-12-18 06:42+0200 Last-Translator: Mikko Paananen Language-Team: fi diff -uraN gimp-2.2.4/po-script-fu/fi.po gimp-2.2.5/po-script-fu/fi.po --- gimp-2.2.4/po-script-fu/fi.po 2005-02-22 23:12:48.000000000 +0100 +++ gimp-2.2.5/po-script-fu/fi.po 2005-04-09 23:09:35.000000000 +0200 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: script-fu \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-02-22 23:04+0100\n" +"POT-Creation-Date: 2005-04-09 21:56+0200\n" "PO-Revision-Date: 2004-12-18 06:42+0200\n" "Last-Translator: Mikko Paananen \n" "Language-Team: fi\n" @@ -132,7 +132,7 @@ msgid "Image Types:" msgstr "Kuvatyypit:" -#: ../plug-ins/script-fu/script-fu-scripts.c:611 +#: ../plug-ins/script-fu/script-fu-scripts.c:622 #, c-format msgid "" "Error while executing\n" diff -uraN gimp-2.2.4/po-script-fu/fr.gmo gimp-2.2.5/po-script-fu/fr.gmo --- gimp-2.2.4/po-script-fu/fr.gmo 2005-02-22 23:12:53.000000000 +0100 +++ gimp-2.2.5/po-script-fu/fr.gmo 2005-04-09 23:09:41.000000000 +0200 @@ -59,7 +59,7 @@ %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._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: 2005-02-22 23:04+0100 +POT-Creation-Date: 2005-04-09 21:56+0200 PO-Revision-Date: 2004-11-26 21:20+0100 Last-Translator: Raymond Ostertag Language-Team: diff -uraN gimp-2.2.4/po-script-fu/fr.po gimp-2.2.5/po-script-fu/fr.po --- gimp-2.2.4/po-script-fu/fr.po 2005-02-22 23:12:48.000000000 +0100 +++ gimp-2.2.5/po-script-fu/fr.po 2005-04-09 23:09:35.000000000 +0200 @@ -16,7 +16,7 @@ msgstr "" "Project-Id-Version: gimp-script-fu.HEAD\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-02-22 23:04+0100\n" +"POT-Creation-Date: 2005-04-09 21:56+0200\n" "PO-Revision-Date: 2004-11-26 21:20+0100\n" "Last-Translator: Raymond Ostertag \n" "Language-Team: \n" @@ -143,7 +143,7 @@ msgid "Image Types:" msgstr "Types d'images :" -#: ../plug-ins/script-fu/script-fu-scripts.c:611 +#: ../plug-ins/script-fu/script-fu-scripts.c:622 #, c-format msgid "" "Error while executing\n" diff -uraN gimp-2.2.4/po-script-fu/ga.gmo gimp-2.2.5/po-script-fu/ga.gmo --- gimp-2.2.4/po-script-fu/ga.gmo 2005-02-22 23:12:53.000000000 +0100 +++ gimp-2.2.5/po-script-fu/ga.gmo 2005-04-09 23:09:41.000000000 +0200 @@ -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: 2005-02-22 23:04+0100 +POT-Creation-Date: 2005-04-09 21:56+0200 PO-Revision-Date: 2004-01-20 0740+0000 Last-Translator: Alastair McKinstry Language-Team: Gaeilge diff -uraN gimp-2.2.4/po-script-fu/ga.po gimp-2.2.5/po-script-fu/ga.po --- gimp-2.2.4/po-script-fu/ga.po 2005-02-22 23:12:48.000000000 +0100 +++ gimp-2.2.5/po-script-fu/ga.po 2005-04-09 23:09:35.000000000 +0200 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: gimp-script-fu HEAD\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-02-22 23:04+0100\n" +"POT-Creation-Date: 2005-04-09 21:56+0200\n" "PO-Revision-Date: 2004-01-20 0740+0000\n" "Last-Translator: Alastair McKinstry \n" "Language-Team: Gaeilge \n" @@ -133,7 +133,7 @@ msgid "Image Types:" msgstr "" -#: ../plug-ins/script-fu/script-fu-scripts.c:611 +#: ../plug-ins/script-fu/script-fu-scripts.c:622 #, c-format msgid "" "Error while executing\n" diff -uraN gimp-2.2.4/po-script-fu/gimp20-script-fu.pot gimp-2.2.5/po-script-fu/gimp20-script-fu.pot --- gimp-2.2.4/po-script-fu/gimp20-script-fu.pot 2005-02-22 23:04:54.000000000 +0100 +++ gimp-2.2.5/po-script-fu/gimp20-script-fu.pot 2005-04-09 21:56:40.000000000 +0200 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-02-22 23:04+0100\n" +"POT-Creation-Date: 2005-04-09 21:56+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -133,7 +133,7 @@ msgid "Image Types:" msgstr "" -#: ../plug-ins/script-fu/script-fu-scripts.c:611 +#: ../plug-ins/script-fu/script-fu-scripts.c:622 #, c-format msgid "" "Error while executing\n" diff -uraN gimp-2.2.4/po-script-fu/gl.gmo gimp-2.2.5/po-script-fu/gl.gmo --- gimp-2.2.4/po-script-fu/gl.gmo 2005-02-22 23:12:53.000000000 +0100 +++ gimp-2.2.5/po-script-fu/gl.gmo 2005-04-09 23:09:41.000000000 +0200 @@ -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: 2005-02-22 23:04+0100 +POT-Creation-Date: 2005-04-09 21:56+0200 PO-Revision-Date: 2001-03-19 21:35+0100 Last-Translator: Francisco Xosé Vázquez Grandal Language-Team: Galician diff -uraN gimp-2.2.4/po-script-fu/gl.po gimp-2.2.5/po-script-fu/gl.po --- gimp-2.2.4/po-script-fu/gl.po 2005-02-22 23:12:48.000000000 +0100 +++ gimp-2.2.5/po-script-fu/gl.po 2005-04-09 23:09:35.000000000 +0200 @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: Gimp CVS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-02-22 23:04+0100\n" +"POT-Creation-Date: 2005-04-09 21:56+0200\n" "PO-Revision-Date: 2001-03-19 21:35+0100\n" "Last-Translator: Francisco Xosé Vázquez Grandal \n" "Language-Team: Galician \n" @@ -140,7 +140,7 @@ msgid "Image Types:" msgstr "Tipos de Imaxe:" -#: ../plug-ins/script-fu/script-fu-scripts.c:611 +#: ../plug-ins/script-fu/script-fu-scripts.c:622 #, fuzzy, c-format msgid "" "Error while executing\n" diff -uraN gimp-2.2.4/po-script-fu/he.gmo gimp-2.2.5/po-script-fu/he.gmo --- gimp-2.2.4/po-script-fu/he.gmo 2005-02-22 23:12:53.000000000 +0100 +++ gimp-2.2.5/po-script-fu/he.gmo 2005-04-09 23:09:41.000000000 +0200 @@ -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: 2005-02-22 23:04+0100 +POT-Creation-Date: 2005-04-09 21:56+0200 PO-Revision-Date: 2003-08-13 22:11+0300 Last-Translator: Gil 'Dolfin' Osher Language-Team: Hebrew diff -uraN gimp-2.2.4/po-script-fu/he.po gimp-2.2.5/po-script-fu/he.po --- gimp-2.2.4/po-script-fu/he.po 2005-02-22 23:12:48.000000000 +0100 +++ gimp-2.2.5/po-script-fu/he.po 2005-04-09 23:09:35.000000000 +0200 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: gimp-script-fu.HEAD\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-02-22 23:04+0100\n" +"POT-Creation-Date: 2005-04-09 21:56+0200\n" "PO-Revision-Date: 2003-08-13 22:11+0300\n" "Last-Translator: Gil 'Dolfin' Osher \n" "Language-Team: Hebrew \n" @@ -135,7 +135,7 @@ msgid "Image Types:" msgstr "סוגי תמונה:" -#: ../plug-ins/script-fu/script-fu-scripts.c:611 +#: ../plug-ins/script-fu/script-fu-scripts.c:622 #, c-format msgid "" "Error while executing\n" diff -uraN gimp-2.2.4/po-script-fu/hr.gmo gimp-2.2.5/po-script-fu/hr.gmo --- gimp-2.2.4/po-script-fu/hr.gmo 2005-02-22 23:12:53.000000000 +0100 +++ gimp-2.2.5/po-script-fu/hr.gmo 2005-04-09 23:09:41.000000000 +0200 @@ -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: 2005-02-22 23:04+0100 +POT-Creation-Date: 2005-04-09 21:56+0200 PO-Revision-Date: 2004-03-20 14:50+CET Last-Translator: auto Language-Team: Croatian diff -uraN gimp-2.2.4/po-script-fu/hr.po gimp-2.2.5/po-script-fu/hr.po --- gimp-2.2.4/po-script-fu/hr.po 2005-02-22 23:12:48.000000000 +0100 +++ gimp-2.2.5/po-script-fu/hr.po 2005-04-09 23:09:36.000000000 +0200 @@ -5,7 +5,7 @@ msgstr "" "Project-Id-Version: gimp-script-fu 0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-02-22 23:04+0100\n" +"POT-Creation-Date: 2005-04-09 21:56+0200\n" "PO-Revision-Date: 2004-03-20 14:50+CET\n" "Last-Translator: auto\n" "Language-Team: Croatian \n" @@ -134,7 +134,7 @@ msgid "Image Types:" msgstr "Vrste Slika:" -#: ../plug-ins/script-fu/script-fu-scripts.c:611 +#: ../plug-ins/script-fu/script-fu-scripts.c:622 #, c-format msgid "" "Error while executing\n" diff -uraN gimp-2.2.4/po-script-fu/hu.gmo gimp-2.2.5/po-script-fu/hu.gmo --- gimp-2.2.4/po-script-fu/hu.gmo 2005-02-22 23:12:53.000000000 +0100 +++ gimp-2.2.5/po-script-fu/hu.gmo 2005-04-09 23:09:41.000000000 +0200 @@ -75,7 +75,7 @@ %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._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: 2005-02-22 23:04+0100 +POT-Creation-Date: 2005-04-09 21:56+0200 PO-Revision-Date: 2004-12-02 11:06+0100 Last-Translator: Arpad Biro Language-Team: Hungarian diff -uraN gimp-2.2.4/po-script-fu/hu.po gimp-2.2.5/po-script-fu/hu.po --- gimp-2.2.4/po-script-fu/hu.po 2005-02-22 23:12:48.000000000 +0100 +++ gimp-2.2.5/po-script-fu/hu.po 2005-04-09 23:09:36.000000000 +0200 @@ -10,7 +10,7 @@ msgstr "" "Project-Id-Version: gimp-script-fu\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-02-22 23:04+0100\n" +"POT-Creation-Date: 2005-04-09 21:56+0200\n" "PO-Revision-Date: 2004-12-02 11:06+0100\n" "Last-Translator: Arpad Biro \n" "Language-Team: Hungarian \n" @@ -136,7 +136,7 @@ msgid "Image Types:" msgstr "Képtípusok:" -#: ../plug-ins/script-fu/script-fu-scripts.c:611 +#: ../plug-ins/script-fu/script-fu-scripts.c:622 #, c-format msgid "" "Error while executing\n" diff -uraN gimp-2.2.4/po-script-fu/id.gmo gimp-2.2.5/po-script-fu/id.gmo --- gimp-2.2.4/po-script-fu/id.gmo 2005-02-22 23:12:53.000000000 +0100 +++ gimp-2.2.5/po-script-fu/id.gmo 2005-04-09 23:09:41.000000000 +0200 @@ -3,7 +3,7 @@     &     Background ColorBlackColorColumnsCopyright:Date:EraseFilenameFontHeightLeftOpacityOrientationPaddingPatternRightRowsSeedSizeSmoothSpacingTextTypeUpWidthWrapProject-Id-Version: gimp-script-fu HEAD Report-Msgid-Bugs-To: -POT-Creation-Date: 2005-02-22 23:04+0100 +POT-Creation-Date: 2005-04-09 21:56+0200 PO-Revision-Date: 2003-06-28 22:05+0700 Last-Translator: Mohammad DAMT Language-Team: Indonesian diff -uraN gimp-2.2.4/po-script-fu/id.po gimp-2.2.5/po-script-fu/id.po --- gimp-2.2.4/po-script-fu/id.po 2005-02-22 23:12:49.000000000 +0100 +++ gimp-2.2.5/po-script-fu/id.po 2005-04-09 23:09:36.000000000 +0200 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: gimp-script-fu HEAD\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-02-22 23:04+0100\n" +"POT-Creation-Date: 2005-04-09 21:56+0200\n" "PO-Revision-Date: 2003-06-28 22:05+0700\n" "Last-Translator: Mohammad DAMT \n" "Language-Team: Indonesian \n" @@ -128,7 +128,7 @@ msgid "Image Types:" msgstr "" -#: ../plug-ins/script-fu/script-fu-scripts.c:611 +#: ../plug-ins/script-fu/script-fu-scripts.c:622 #, c-format msgid "" "Error while executing\n" diff -uraN gimp-2.2.4/po-script-fu/it.gmo gimp-2.2.5/po-script-fu/it.gmo --- gimp-2.2.4/po-script-fu/it.gmo 2005-02-22 23:12:53.000000000 +0100 +++ gimp-2.2.5/po-script-fu/it.gmo 2005-04-09 23:09:41.000000000 +0200 @@ -64,7 +64,7 @@ %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._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: 2005-02-22 23:04+0100 +POT-Creation-Date: 2005-04-09 21:56+0200 PO-Revision-Date: 2004-12-16 17:36+0100 Last-Translator: Marco Ciampa Language-Team: gimp.linux.it diff -uraN gimp-2.2.4/po-script-fu/it.po gimp-2.2.5/po-script-fu/it.po --- gimp-2.2.4/po-script-fu/it.po 2005-02-22 23:12:49.000000000 +0100 +++ gimp-2.2.5/po-script-fu/it.po 2005-04-09 23:09:36.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: gimp 2.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-02-22 23:04+0100\n" +"POT-Creation-Date: 2005-04-09 21:56+0200\n" "PO-Revision-Date: 2004-12-16 17:36+0100\n" "Last-Translator: Marco Ciampa \n" "Language-Team: gimp.linux.it\n" @@ -133,7 +133,7 @@ msgid "Image Types:" msgstr "Tipi di immagini:" -#: ../plug-ins/script-fu/script-fu-scripts.c:611 +#: ../plug-ins/script-fu/script-fu-scripts.c:622 #, c-format msgid "" "Error while executing\n" diff -uraN gimp-2.2.4/po-script-fu/ja.gmo gimp-2.2.5/po-script-fu/ja.gmo --- gimp-2.2.4/po-script-fu/ja.gmo 2005-02-22 23:12:53.000000000 +0100 +++ gimp-2.2.5/po-script-fu/ja.gmo 2005-04-09 23:09:41.000000000 +0200 @@ -45,7 +45,7 @@ %s %sEvenFG-BG-HSVFG-BG-RGBFG-TransparentFade awayFade from %Fade to %FadeoutFeatheringFile nameFilenameFill BG with patternFill 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)Graph scaleHeightHexagonHexagonsHighlight balanceHighlight colorHit rateHole ratioHorizontalIIRImage Types:Image heightImage widthIndex imageInner teethInsert layer namesInternal GIMP procedureInvertInvert directionKeep backgroundKeep bump layerKeep selectionLand heightLeftLighting (degrees)LinearLissajousLoopedLower colorLower color (active)Lower-right colorMake new backgroundMargin (pixels)Mask opacityMask sizeMax. blur radiusMottleN_eon...NameNew Guide (by _Percent)...New _Guide...No matchesNoneNot pressedNot pressed (active)NumberNumber of X tilesNumber of Y tilesNumber of bandsNumber of colorsNumber of linesOctagonsOddOffset (pixels)Offset XOffset YOffset radiusOffsets (pixels * 2)OpacityOrientationOuter borderOuter teethOutline blur radiusOutline colorOutline gradient reverseOutline sizePad colorPad opacityPaddingPadding XPadding YParametersPatternPattern (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 seedRandomnessRemove backgroundReturn ValuesRibbon spacingRibbon widthRightRoughnessRound ratioRowsSIOD 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)Simple _Beveled Button...SizeSmearSmoothSolid ColorSpacingSpeed (pixels/frame)Sphere colorSpots density XSpots density YSpreadSpyrographSquareSquaresStainsStart XStart YStart angleStart blendSupersampleTemporary ProcedureTextText colorText color (active)Text gradient reverseThicknessThread densityThread intensityThread lengthTileTo _Brush...To _ImageTo _Pattern...ToolTransparent backgroundTriangleTurn from left to rightTypeUpUpper colorUpper color (active)Upper-left colorUse current gradientUse font _name as textVerticalWavelengthWeb Title Header...WidthWidth of bandsWidth of gapsWork on copyWrapX divisionsY divisions_Arrow..._Basic I..._Big Header..._Blend..._Border (pixels)_Browse..._Bullet..._Circuit..._Color scheme_Developer Web Site_Drop-Shadow..._Fade Outline..._Filter (regexp)_Font Map..._Grid..._Labels_Land..._Main Web Site_Old Photo..._Refresh Scripts_Remove all Guides_Round Button..._Search:_Slide..._Small Header..._Sphere..._Spyrogimp..._Start Server..._Text_Waves...Project-Id-Version: gimp-script-fu gimp-2-2 Report-Msgid-Bugs-To: -POT-Creation-Date: 2005-02-22 23:04+0100 +POT-Creation-Date: 2005-04-09 21:56+0200 PO-Revision-Date: 2005-02-17 12:05+0900 Last-Translator: Tadashi Jokagi Language-Team: Japanese diff -uraN gimp-2.2.4/po-script-fu/ja.po gimp-2.2.5/po-script-fu/ja.po --- gimp-2.2.4/po-script-fu/ja.po 2005-02-22 23:12:49.000000000 +0100 +++ gimp-2.2.5/po-script-fu/ja.po 2005-04-09 23:09:36.000000000 +0200 @@ -10,7 +10,7 @@ msgstr "" "Project-Id-Version: gimp-script-fu gimp-2-2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-02-22 23:04+0100\n" +"POT-Creation-Date: 2005-04-09 21:56+0200\n" "PO-Revision-Date: 2005-02-17 12:05+0900\n" "Last-Translator: Tadashi Jokagi \n" "Language-Team: Japanese \n" @@ -135,7 +135,7 @@ msgid "Image Types:" msgstr "画像種:" -#: ../plug-ins/script-fu/script-fu-scripts.c:611 +#: ../plug-ins/script-fu/script-fu-scripts.c:622 #, c-format msgid "" "Error while executing\n" diff -uraN gimp-2.2.4/po-script-fu/ko.gmo gimp-2.2.5/po-script-fu/ko.gmo --- gimp-2.2.4/po-script-fu/ko.gmo 2005-02-22 23:12:53.000000000 +0100 +++ gimp-2.2.5/po-script-fu/ko.gmo 2005-04-09 23:09:41.000000000 +0200 @@ -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: 2005-02-22 23:04+0100 +POT-Creation-Date: 2005-04-09 21:56+0200 PO-Revision-Date: 2003-06-05 07:54+0800 Last-Translator: Dongsu Jang Language-Team: Korean diff -uraN gimp-2.2.4/po-script-fu/ko.po gimp-2.2.5/po-script-fu/ko.po --- gimp-2.2.4/po-script-fu/ko.po 2005-02-22 23:12:49.000000000 +0100 +++ gimp-2.2.5/po-script-fu/ko.po 2005-04-09 23:09:36.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: gimp-script-fu HEAD\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-02-22 23:04+0100\n" +"POT-Creation-Date: 2005-04-09 21:56+0200\n" "PO-Revision-Date: 2003-06-05 07:54+0800\n" "Last-Translator: Dongsu Jang \n" "Language-Team: Korean \n" @@ -134,7 +134,7 @@ msgid "Image Types:" msgstr "이미지 유형:" -#: ../plug-ins/script-fu/script-fu-scripts.c:611 +#: ../plug-ins/script-fu/script-fu-scripts.c:622 #, c-format msgid "" "Error while executing\n" diff -uraN gimp-2.2.4/po-script-fu/lt.gmo gimp-2.2.5/po-script-fu/lt.gmo --- gimp-2.2.4/po-script-fu/lt.gmo 2005-02-22 23:12:53.000000000 +0100 +++ gimp-2.2.5/po-script-fu/lt.gmo 2005-04-09 23:09:41.000000000 +0200 @@ -42,7 +42,7 @@ CRN/:M>"EO (%I?+J0G#'K 6Q&P54Y!\1$BF27 *[HS-;89TU3CD<L@VZ)XW= A. ,%s:/Script-Fu//Help/The GIMP OnlineAdd shadowAmplitudeAngleAuthor:AutocropB_utton...Background ColorBackground colorBlackBlur horizontallyBlur typeBlur verticallyBrushBrush nameC_hrome...ColorCopyright:Crystal...Current CommandDate:DepthDiameterDrop shadowDrop shadow colorDrop shadow opacityEffect size (pixels * 3)Effect size (pixels * 4)Effect size (pixels * 5)Effect size (pixels)FG-BG-HSVFG-BG-RGBFile nameFontFont size (pixels)Foreground colorGIMP ExtensionGIMP Plug-InHeightHorizontalIIRImage Types:Image sizeInvertMask opacityMask sizeN_eon...NameNew Guide (by _Percent)...New Guides from _SelectionNew _Guide...ParametersPatternPencilPlug-in _RegistryRLESIOD OutputScript-Fu _ConsoleScript-Fu: %sServer Logfile:Server Port:ShadowShadow colorSizeStainsTextText Circle...Text colorText patternTo _Brush...To _Pattern...ToolTypeVerticalWavelengthWidth_Browse..._Coffee Stain..._Developer Web Site_Frosty..._Lava..._Main Web Site_Old Photo..._Remove all Guides_Round Button..._Search:_Text_Tileable Blur..._Waves...Project-Id-Version: GIMP HEAD Report-Msgid-Bugs-To: -POT-Creation-Date: 2005-02-22 23:04+0100 +POT-Creation-Date: 2005-04-09 21:56+0200 PO-Revision-Date: 2005-02-10 10:31+0200 Last-Translator: Giedrius Naudžiūnas Language-Team: Lithuanian diff -uraN gimp-2.2.4/po-script-fu/lt.po gimp-2.2.5/po-script-fu/lt.po --- gimp-2.2.4/po-script-fu/lt.po 2005-02-22 23:12:49.000000000 +0100 +++ gimp-2.2.5/po-script-fu/lt.po 2005-04-09 23:09:37.000000000 +0200 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: GIMP HEAD\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-02-22 23:04+0100\n" +"POT-Creation-Date: 2005-04-09 21:56+0200\n" "PO-Revision-Date: 2005-02-10 10:31+0200\n" "Last-Translator: Giedrius Naudžiūnas \n" "Language-Team: Lithuanian \n" @@ -133,7 +133,7 @@ msgid "Image Types:" msgstr "Paveikslėlių tipai:" -#: ../plug-ins/script-fu/script-fu-scripts.c:611 +#: ../plug-ins/script-fu/script-fu-scripts.c:622 #, c-format msgid "" "Error while executing\n" diff -uraN gimp-2.2.4/po-script-fu/Makefile.in.in gimp-2.2.5/po-script-fu/Makefile.in.in --- gimp-2.2.4/po-script-fu/Makefile.in.in 2002-03-26 15:30:15.000000000 +0100 +++ gimp-2.2.5/po-script-fu/Makefile.in.in 2005-03-08 16:48:02.000000000 +0100 @@ -27,25 +27,28 @@ prefix = @prefix@ exec_prefix = @exec_prefix@ -datadir = $(prefix)/@DATADIRNAME@ -localedir = $(datadir)/locale -gnulocaledir = $(prefix)/share/locale -gettextsrcdir = $(prefix)/share/glib-2.0/gettext/po +datadir = @datadir@ +libdir = @libdir@ +localedir = $(libdir)/locale +gnulocaledir = $(datadir)/locale +gettextsrcdir = $(datadir)/glib-2.0/gettext/po subdir = po +install_sh = @install_sh@ +mkdir_p = @mkdir_p@ +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ -MKINSTALLDIRS = $(top_srcdir)/@MKINSTALLDIRS@ CC = @CC@ GENCAT = @GENCAT@ -GMSGFMT = PATH=../src:$$PATH @GMSGFMT@ +GMSGFMT = @GMSGFMT@ MSGFMT = @MSGFMT@ -XGETTEXT = PATH=../src:$$PATH @XGETTEXT@ +XGETTEXT = @XGETTEXT@ INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ -MSGMERGE = INTLTOOL_EXTRACT=$(INTLTOOL_EXTRACT) $(INTLTOOL_UPDATE) --gettext-package $(GETTEXT_PACKAGE) --dist -GENPOT = INTLTOOL_EXTRACT=$(INTLTOOL_EXTRACT) $(INTLTOOL_UPDATE) --gettext-package $(GETTEXT_PACKAGE) --pot +MSGMERGE = INTLTOOL_EXTRACT=$(INTLTOOL_EXTRACT) srcdir=$(srcdir) $(INTLTOOL_UPDATE) --gettext-package $(GETTEXT_PACKAGE) --dist +GENPOT = INTLTOOL_EXTRACT=$(INTLTOOL_EXTRACT) srcdir=$(srcdir) $(INTLTOOL_UPDATE) --gettext-package $(GETTEXT_PACKAGE) --pot DEFS = @DEFS@ CFLAGS = @CFLAGS@ @@ -58,7 +61,7 @@ SOURCES = POFILES = @POFILES@ GMOFILES = @GMOFILES@ -DISTFILES = ChangeLog Makefile.in.in POTFILES.in $(GETTEXT_PACKAGE).pot \ +DISTFILES = ChangeLog Makefile.in.in POTFILES.in \ $(POFILES) $(GMOFILES) $(SOURCES) POTFILES = \ @@ -75,13 +78,13 @@ .po.pox: $(MAKE) $(GETTEXT_PACKAGE).pot - $(MSGMERGE) $< $(srcdir)/$(GETTEXT_PACKAGE).pot -o $*.pox + $(MSGMERGE) $< $(top_builddir)/po/$(GETTEXT_PACKAGE).pot -o $*pox .po.mo: $(MSGFMT) -o $@ $< .po.gmo: - file=$(srcdir)/`echo $* | sed 's,.*/,,'`.gmo \ + file=`echo $* | sed 's,.*/,,'`.gmo \ && rm -f $$file && $(GMSGFMT) -o $$file $< .po.cat: @@ -94,7 +97,7 @@ all-yes: $(CATALOGS) all-no: -$(srcdir)/$(GETTEXT_PACKAGE).pot: $(POTFILES) +$(GETTEXT_PACKAGE).pot: $(POTFILES) $(GENPOT) install: install-exec install-data @@ -102,7 +105,7 @@ install-data: install-data-@USE_NLS@ install-data-no: all install-data-yes: all - if test -r "$(MKINSTALLDIRS)"; then \ + if test -n "$(MKINSTALLDIRS)"; then \ $(MKINSTALLDIRS) $(DESTDIR)$(datadir); \ else \ $(SHELL) $(top_srcdir)/mkinstalldirs $(DESTDIR)$(datadir); \ @@ -116,7 +119,7 @@ esac; \ lang=`echo $$cat | sed 's/\$(CATOBJEXT)$$//'`; \ dir=$(DESTDIR)$$destdir/$$lang/LC_MESSAGES; \ - if test -r "$(MKINSTALLDIRS)"; then \ + if test -n "$(MKINSTALLDIRS)"; then \ $(MKINSTALLDIRS) $$dir; \ else \ $(SHELL) $(top_srcdir)/mkinstalldirs $$dir; \ @@ -144,7 +147,7 @@ fi; \ done if test "$(PACKAGE)" = "glib"; then \ - if test -r "$(MKINSTALLDIRS)"; then \ + if test -n "$(MKINSTALLDIRS)"; then \ $(MKINSTALLDIRS) $(DESTDIR)$(gettextsrcdir); \ else \ $(SHELL) $(top_srcdir)/mkinstalldirs $(DESTDIR)$(gettextsrcdir); \ @@ -168,15 +171,18 @@ rm -f $(DESTDIR)$(gnulocaledir)/$$lang/LC_MESSAGES/$(GETTEXT_PACKAGE)$(INSTOBJEXT); \ rm -f $(DESTDIR)$(gnulocaledir)/$$lang/LC_MESSAGES/$(GETTEXT_PACKAGE)$(INSTOBJEXT).m; \ done - rm -f $(DESTDIR)$(gettextsrcdir)/po-Makefile.in.in + if test "$(PACKAGE)" = "glib"; then \ + rm -f $(DESTDIR)$(gettextsrcdir)/Makefile.in.in; \ + fi check: all dvi info tags TAGS ID: mostlyclean: - rm -f core core.* *.pox $(GETTEXT_PACKAGE).po *.old.po cat-id-tbl.tmp + rm -f core core.* *.pox $(GETTEXT_PACKAGE).pot *.old.po cat-id-tbl.tmp rm -fr *.o + rm -f .intltool-merge-cache clean: mostlyclean @@ -189,7 +195,7 @@ rm -f $(GMOFILES) distdir = ../$(GETTEXT_PACKAGE)-$(VERSION)/$(subdir) -dist distdir: update-po $(DISTFILES) +dist distdir: $(DISTFILES) $(GETTEXT_PACKAGE).pot dists="$(DISTFILES)"; \ for file in $$dists; do \ ln $(srcdir)/$$file $(distdir) 2> /dev/null \ @@ -198,36 +204,31 @@ update-po: Makefile $(MAKE) $(GETTEXT_PACKAGE).pot - PATH=`pwd`/../src:$$PATH; \ - cd $(srcdir); \ + tmpdir=`pwd`; \ catalogs='$(CATALOGS)'; \ for cat in $$catalogs; do \ cat=`basename $$cat`; \ lang=`echo $$cat | sed 's/\$(CATOBJEXT)$$//'`; \ - cp $$lang.po $$lang.old.po; \ echo "$$lang:"; \ - if $(MSGMERGE) $$lang; then \ - rm -f $$lang.old.po; \ + result="`$(MSGMERGE) -o $$tmpdir/$$lang.new.po $$lang`"; \ + if $$result; then \ + if cmp $(srcdir)/$$lang.po $$tmpdir/$$lang.new.po >/dev/null 2>&1; then \ + rm -f $$tmpdir/$$lang.new.po; \ + else \ + if mv -f $$tmpdir/$$lang.new.po $$lang.po; then \ + :; \ + else \ + echo "msgmerge for $$lang.po failed: cannot move $$tmpdir/$$lang.new.po to $$lang.po" 1>&2; \ + rm -f $$tmpdir/$$lang.new.po; \ + exit 1; \ + fi; \ + fi; \ else \ echo "msgmerge for $$cat failed!"; \ - rm -f $$lang.po; \ - mv $$lang.old.po $$lang.po; \ + rm -f $$tmpdir/$$lang.new.po; \ fi; \ done -.po: Makefile - $(MAKE) $(PACKAGE).pot; - PATH=`pwd`/../src:$$PATH; \ - echo; printf "$*: "; \ - if $(MSGMERGE) $*; then \ - rm -f $*.old.po; \ - else \ - echo "msgmerge for * failed!"; \ - mv $*.old.po $*.po; \ - fi; \ - msgfmt --statistics $*.po; echo; - - # POTFILES is created from POTFILES.in by stripping comments, empty lines # and Intltool tags (enclosed in square brackets), and appending a full # relative path to them diff -uraN gimp-2.2.4/po-script-fu/ms.gmo gimp-2.2.5/po-script-fu/ms.gmo --- gimp-2.2.4/po-script-fu/ms.gmo 2005-02-22 23:12:53.000000000 +0100 +++ gimp-2.2.5/po-script-fu/ms.gmo 2005-04-09 23:09:41.000000000 +0200 @@ -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: 2005-02-22 23:04+0100 +POT-Creation-Date: 2005-04-09 21:56+0200 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.4/po-script-fu/ms.po gimp-2.2.5/po-script-fu/ms.po --- gimp-2.2.4/po-script-fu/ms.po 2005-02-22 23:12:49.000000000 +0100 +++ gimp-2.2.5/po-script-fu/ms.po 2005-04-09 23:09:37.000000000 +0200 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: Gimp-script-fu HEAD\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-02-22 23:04+0100\n" +"POT-Creation-Date: 2005-04-09 21:56+0200\n" "PO-Revision-Date: 2003-10-30 09:35+0800\n" "Last-Translator: MIMOS Open Source Development Group \n" "Language-Team: Projek Gabai \n" @@ -135,7 +135,7 @@ msgid "Image Types:" msgstr "Jenis Imej" -#: ../plug-ins/script-fu/script-fu-scripts.c:611 +#: ../plug-ins/script-fu/script-fu-scripts.c:622 #, fuzzy, c-format msgid "" "Error while executing\n" diff -uraN gimp-2.2.4/po-script-fu/nb.gmo gimp-2.2.5/po-script-fu/nb.gmo --- gimp-2.2.4/po-script-fu/nb.gmo 2005-02-22 23:12:53.000000000 +0100 +++ gimp-2.2.5/po-script-fu/nb.gmo 2005-04-09 23:09:41.000000000 +0200 @@ -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: 2005-02-22 23:04+0100 +POT-Creation-Date: 2005-04-09 21:56+0200 PO-Revision-Date: 2003-01-26 17:18+0100 Last-Translator: Kjartan Maraas Language-Team: Norwegian diff -uraN gimp-2.2.4/po-script-fu/nb.po gimp-2.2.5/po-script-fu/nb.po --- gimp-2.2.4/po-script-fu/nb.po 2005-02-22 23:12:49.000000000 +0100 +++ gimp-2.2.5/po-script-fu/nb.po 2005-04-09 23:09:37.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: achtung 1.1.25\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-02-22 23:04+0100\n" +"POT-Creation-Date: 2005-04-09 21:56+0200\n" "PO-Revision-Date: 2003-01-26 17:18+0100\n" "Last-Translator: Kjartan Maraas \n" "Language-Team: Norwegian \n" @@ -134,7 +134,7 @@ msgid "Image Types:" msgstr "Bildetyper:" -#: ../plug-ins/script-fu/script-fu-scripts.c:611 +#: ../plug-ins/script-fu/script-fu-scripts.c:622 #, fuzzy, c-format msgid "" "Error while executing\n" diff -uraN gimp-2.2.4/po-script-fu/nl.gmo gimp-2.2.5/po-script-fu/nl.gmo --- gimp-2.2.4/po-script-fu/nl.gmo 2005-02-22 23:12:53.000000000 +0100 +++ gimp-2.2.5/po-script-fu/nl.gmo 2005-04-09 23:09:41.000000000 +0200 @@ -73,7 +73,7 @@ %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._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: 2005-02-22 23:04+0100 +POT-Creation-Date: 2005-04-09 21:56+0200 PO-Revision-Date: 2004-12-05 22:21+0100 Last-Translator: Tino Meinen Language-Team: Dutch diff -uraN gimp-2.2.4/po-script-fu/nl.po gimp-2.2.5/po-script-fu/nl.po --- gimp-2.2.4/po-script-fu/nl.po 2005-02-22 23:12:50.000000000 +0100 +++ gimp-2.2.5/po-script-fu/nl.po 2005-04-09 23:09:37.000000000 +0200 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: GIMP 2.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-02-22 23:04+0100\n" +"POT-Creation-Date: 2005-04-09 21:56+0200\n" "PO-Revision-Date: 2004-12-05 22:21+0100\n" "Last-Translator: Tino Meinen \n" "Language-Team: Dutch \n" @@ -132,7 +132,7 @@ msgid "Image Types:" msgstr "Afbeeldingstypen:" -#: ../plug-ins/script-fu/script-fu-scripts.c:611 +#: ../plug-ins/script-fu/script-fu-scripts.c:622 #, c-format msgid "" "Error while executing\n" diff -uraN gimp-2.2.4/po-script-fu/no.gmo gimp-2.2.5/po-script-fu/no.gmo --- gimp-2.2.4/po-script-fu/no.gmo 2005-02-22 23:12:53.000000000 +0100 +++ gimp-2.2.5/po-script-fu/no.gmo 2005-04-09 23:09:41.000000000 +0200 @@ -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: 2005-02-22 23:04+0100 +POT-Creation-Date: 2005-04-09 21:56+0200 PO-Revision-Date: 2003-01-26 17:18+0100 Last-Translator: Kjartan Maraas Language-Team: Norwegian diff -uraN gimp-2.2.4/po-script-fu/no.po gimp-2.2.5/po-script-fu/no.po --- gimp-2.2.4/po-script-fu/no.po 2005-02-22 23:12:50.000000000 +0100 +++ gimp-2.2.5/po-script-fu/no.po 2005-04-09 23:09:37.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: achtung 1.1.25\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-02-22 23:04+0100\n" +"POT-Creation-Date: 2005-04-09 21:56+0200\n" "PO-Revision-Date: 2003-01-26 17:18+0100\n" "Last-Translator: Kjartan Maraas \n" "Language-Team: Norwegian \n" @@ -134,7 +134,7 @@ msgid "Image Types:" msgstr "Bildetyper:" -#: ../plug-ins/script-fu/script-fu-scripts.c:611 +#: ../plug-ins/script-fu/script-fu-scripts.c:622 #, fuzzy, c-format msgid "" "Error while executing\n" diff -uraN gimp-2.2.4/po-script-fu/pa.gmo gimp-2.2.5/po-script-fu/pa.gmo --- gimp-2.2.4/po-script-fu/pa.gmo 2005-02-22 23:12:54.000000000 +0100 +++ gimp-2.2.5/po-script-fu/pa.gmo 2005-04-09 23:09:41.000000000 +0200 @@ -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: 2005-02-22 23:04+0100 +POT-Creation-Date: 2005-04-09 21:56+0200 PO-Revision-Date: 2004-08-23 20:22+0530 Last-Translator: Amanpreet Singh Alam Language-Team: Punjabi diff -uraN gimp-2.2.4/po-script-fu/pa.po gimp-2.2.5/po-script-fu/pa.po --- gimp-2.2.4/po-script-fu/pa.po 2005-02-22 23:12:50.000000000 +0100 +++ gimp-2.2.5/po-script-fu/pa.po 2005-04-09 23:09:38.000000000 +0200 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: gimp-script-fu\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-02-22 23:04+0100\n" +"POT-Creation-Date: 2005-04-09 21:56+0200\n" "PO-Revision-Date: 2004-08-23 20:22+0530\n" "Last-Translator: Amanpreet Singh Alam \n" "Language-Team: Punjabi \n" @@ -139,7 +139,7 @@ msgid "Image Types:" msgstr "ਚਿੱਤਰ ਕਿਸਮਾਂ:" -#: ../plug-ins/script-fu/script-fu-scripts.c:611 +#: ../plug-ins/script-fu/script-fu-scripts.c:622 #, c-format msgid "" "Error while executing\n" diff -uraN gimp-2.2.4/po-script-fu/pl.gmo gimp-2.2.5/po-script-fu/pl.gmo --- gimp-2.2.4/po-script-fu/pl.gmo 2005-02-22 23:12:54.000000000 +0100 +++ gimp-2.2.5/po-script-fu/pl.gmo 2005-04-09 23:09:41.000000000 +0200 @@ -74,7 +74,7 @@ %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...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_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: 2005-02-22 23:04+0100 +POT-Creation-Date: 2005-04-09 21:56+0200 PO-Revision-Date: 2005-02-02 23:10+0100 Last-Translator: Bartosz Kosiorek Language-Team: Polish diff -uraN gimp-2.2.4/po-script-fu/pl.po gimp-2.2.5/po-script-fu/pl.po --- gimp-2.2.4/po-script-fu/pl.po 2005-02-22 23:12:50.000000000 +0100 +++ gimp-2.2.5/po-script-fu/pl.po 2005-04-09 23:09:38.000000000 +0200 @@ -13,7 +13,7 @@ msgstr "" "Project-Id-Version: gimp-script-fu\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-02-22 23:04+0100\n" +"POT-Creation-Date: 2005-04-09 21:56+0200\n" "PO-Revision-Date: 2005-02-02 23:10+0100\n" "Last-Translator: Bartosz Kosiorek \n" "Language-Team: Polish \n" @@ -140,7 +140,7 @@ msgid "Image Types:" msgstr "Typy obrazu:" -#: ../plug-ins/script-fu/script-fu-scripts.c:611 +#: ../plug-ins/script-fu/script-fu-scripts.c:622 #, c-format msgid "" "Error while executing\n" diff -uraN gimp-2.2.4/po-script-fu/pt_BR.gmo gimp-2.2.5/po-script-fu/pt_BR.gmo --- gimp-2.2.4/po-script-fu/pt_BR.gmo 2005-02-22 23:12:54.000000000 +0100 +++ gimp-2.2.5/po-script-fu/pt_BR.gmo 2005-04-09 23:09:42.000000000 +0200 @@ -62,7 +62,7 @@ %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._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: 2005-02-22 23:04+0100 +POT-Creation-Date: 2005-04-09 21:56+0200 PO-Revision-Date: 2004-12-14 19:22-0200 Last-Translator: Joao S. O. Bueno Calligaris Language-Team: Brazilian Portuguese <> diff -uraN gimp-2.2.4/po-script-fu/pt_BR.po gimp-2.2.5/po-script-fu/pt_BR.po --- gimp-2.2.4/po-script-fu/pt_BR.po 2005-02-22 23:12:50.000000000 +0100 +++ gimp-2.2.5/po-script-fu/pt_BR.po 2005-04-09 23:09:38.000000000 +0200 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: pt_BR\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-02-22 23:04+0100\n" +"POT-Creation-Date: 2005-04-09 21:56+0200\n" "PO-Revision-Date: 2004-12-14 19:22-0200\n" "Last-Translator: Joao S. O. Bueno Calligaris \n" "Language-Team: Brazilian Portuguese <>\n" @@ -135,7 +135,7 @@ msgid "Image Types:" msgstr "Tipos de Imagens:" -#: ../plug-ins/script-fu/script-fu-scripts.c:611 +#: ../plug-ins/script-fu/script-fu-scripts.c:622 #, c-format msgid "" "Error while executing\n" diff -uraN gimp-2.2.4/po-script-fu/pt.gmo gimp-2.2.5/po-script-fu/pt.gmo --- gimp-2.2.4/po-script-fu/pt.gmo 2005-02-22 23:12:54.000000000 +0100 +++ gimp-2.2.5/po-script-fu/pt.gmo 2005-04-09 23:09:41.000000000 +0200 @@ -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: 2005-02-22 23:04+0100 +POT-Creation-Date: 2005-04-09 21:56+0200 PO-Revision-Date: 2004-03-08 21:40+0000 Last-Translator: Duarte Loreto Language-Team: Portuguese diff -uraN gimp-2.2.4/po-script-fu/pt.po gimp-2.2.5/po-script-fu/pt.po --- gimp-2.2.4/po-script-fu/pt.po 2005-02-22 23:12:50.000000000 +0100 +++ gimp-2.2.5/po-script-fu/pt.po 2005-04-09 23:09:38.000000000 +0200 @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: 2.6\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-02-22 23:04+0100\n" +"POT-Creation-Date: 2005-04-09 21:56+0200\n" "PO-Revision-Date: 2004-03-08 21:40+0000\n" "Last-Translator: Duarte Loreto \n" "Language-Team: Portuguese \n" @@ -139,7 +139,7 @@ msgid "Image Types:" msgstr "Tipos de Imagem:" -#: ../plug-ins/script-fu/script-fu-scripts.c:611 +#: ../plug-ins/script-fu/script-fu-scripts.c:622 #, c-format msgid "" "Error while executing\n" diff -uraN gimp-2.2.4/po-script-fu/ro.gmo gimp-2.2.5/po-script-fu/ro.gmo --- gimp-2.2.4/po-script-fu/ro.gmo 2005-02-22 23:12:54.000000000 +0100 +++ gimp-2.2.5/po-script-fu/ro.gmo 2005-04-09 23:09:42.000000000 +0200 @@ -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: 2005-02-22 23:04+0100 +POT-Creation-Date: 2005-04-09 21:56+0200 PO-Revision-Date: 2000-11-24 15:46+0100 Last-Translator: Robert Claudiu Gheorghe Language-Team: Română diff -uraN gimp-2.2.4/po-script-fu/ro.po gimp-2.2.5/po-script-fu/ro.po --- gimp-2.2.4/po-script-fu/ro.po 2005-02-22 23:12:51.000000000 +0100 +++ gimp-2.2.5/po-script-fu/ro.po 2005-04-09 23:09:38.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: gimp-script-fu\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-02-22 23:04+0100\n" +"POT-Creation-Date: 2005-04-09 21:56+0200\n" "PO-Revision-Date: 2000-11-24 15:46+0100\n" "Last-Translator: Robert Claudiu Gheorghe \n" "Language-Team: Română \n" @@ -144,7 +144,7 @@ msgid "Image Types:" msgstr "Tip imagine" -#: ../plug-ins/script-fu/script-fu-scripts.c:611 +#: ../plug-ins/script-fu/script-fu-scripts.c:622 #, c-format msgid "" "Error while executing\n" diff -uraN gimp-2.2.4/po-script-fu/ru.gmo gimp-2.2.5/po-script-fu/ru.gmo --- gimp-2.2.4/po-script-fu/ru.gmo 2005-02-22 23:12:54.000000000 +0100 +++ gimp-2.2.5/po-script-fu/ru.gmo 2005-04-09 23:09:42.000000000 +0200 @@ -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: 2005-02-22 23:04+0100 +POT-Creation-Date: 2005-04-09 21:56+0200 PO-Revision-Date: 2004-07-15 00:10+0400 Last-Translator: AnatolyA. Yakushin Language-Team: russian diff -uraN gimp-2.2.4/po-script-fu/ru.po gimp-2.2.5/po-script-fu/ru.po --- gimp-2.2.4/po-script-fu/ru.po 2005-02-22 23:12:51.000000000 +0100 +++ gimp-2.2.5/po-script-fu/ru.po 2005-04-09 23:09:39.000000000 +0200 @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: gimp.SCRIPTFU.ru\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-02-22 23:04+0100\n" +"POT-Creation-Date: 2005-04-09 21:56+0200\n" "PO-Revision-Date: 2004-07-15 00:10+0400\n" "Last-Translator: AnatolyA. Yakushin \n" "Language-Team: russian \n" @@ -140,7 +140,7 @@ msgid "Image Types:" msgstr "Типы изображений:" -#: ../plug-ins/script-fu/script-fu-scripts.c:611 +#: ../plug-ins/script-fu/script-fu-scripts.c:622 #, c-format msgid "" "Error while executing\n" diff -uraN gimp-2.2.4/po-script-fu/sk.gmo gimp-2.2.5/po-script-fu/sk.gmo --- gimp-2.2.4/po-script-fu/sk.gmo 2005-02-22 23:12:54.000000000 +0100 +++ gimp-2.2.5/po-script-fu/sk.gmo 2005-04-09 23:09:42.000000000 +0200 @@ -1,70 +1,70 @@ -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 + +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 /DO dO,O!O!O#ODP?_PDPPPQQ*QAQ VQdQ yQ QQQQQQ Q Q&R:RARWR^RmR RR RR RR R RRSS-SIS[ScS uSSSSSS S S +TT.TBTVTfT wTTT TT!TTT1T+0U\UmU}UUUUUU UUV!VWMWfWIvW WWWWW X@X\X(dX XX XXXXXXXXj YxYYY#YYY ZZ ,Z 6Z DZRZ qZZZZZZ[[[)[=[ M[Y[a[ r[[[[[[ [[\ \%\ +6\A\ P\]\ y\\\\\ \\\] ]](].]G] +b]m]v] ]]]]]]] ^ -^7^N^ e^ +r^}^^^^^^^^ ^ +_ __ _._?_R_h_ y__)____` ` )`5`D`U`q` ```` ` `` ``aa1a BaOa_awaa aa#aaaa&b 5bAb IbVbnbubb b bb bb bbccc'c6cKcgc nczccc ccc cc d d d(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 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 +%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: 2005-02-22 23:04+0100 -PO-Revision-Date: 2004-11-27 11:58+0100 -Last-Translator: Zdenko Podobný -Language-Team: Slovak <> +POT-Creation-Date: 2005-04-09 21:56+0200 +PO-Revision-Date: 2005-03-20 20:28+0100 +Last-Translator: Marcel Telka +Language-Team: Slovak MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 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 š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ť +%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 pozadiaVýška kusuDĺžka kusuZá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".Ší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ámFarba rámuVeľkosť rámuRá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.4/po-script-fu/sk.po gimp-2.2.5/po-script-fu/sk.po --- gimp-2.2.4/po-script-fu/sk.po 2005-02-22 23:12:51.000000000 +0100 +++ gimp-2.2.5/po-script-fu/sk.po 2005-04-09 23:09:39.000000000 +0200 @@ -1,23 +1,23 @@ # translation of gimp-script-fu.HEAD.po to Slovak # translation of gimp-script-fu.HEAD.sk.po to Slovak # gimp-script-fu sk.po -# Copyright (C) 2002,2003, 2004 Free Software Foundation, Inc. +# Copyright (C) 2002, 2003, 2004, 2005 Free Software Foundation, Inc. # Zdenko Podobný , 2002,2003, 2004. +# Marcel Telka , 2005. +# +# $Id: sk.po,v 1.64.2.4 2005/03/20 19:30:25 marcel Exp $ # msgid "" msgstr "" -"Project-Id-Version: gimp-script-fu.HEAD\n" +"Project-Id-Version: gimp-script-fu\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-02-22 23:04+0100\n" -"PO-Revision-Date: 2004-11-27 11:58+0100\n" -"Last-Translator: Zdenko Podobný \n" -"Language-Team: Slovak <>\n" +"POT-Creation-Date: 2005-04-09 21:56+0200\n" +"PO-Revision-Date: 2005-03-20 20:28+0100\n" +"Last-Translator: Marcel Telka \n" +"Language-Team: Slovak \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: KBabel 1.3\n" -"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);\n" #: ../plug-ins/script-fu/script-fu-console.c:129 #: ../plug-ins/script-fu/script-fu-text-console.c:66 @@ -136,7 +136,7 @@ msgid "Image Types:" msgstr "Typ obrázka:" -#: ../plug-ins/script-fu/script-fu-scripts.c:611 +#: ../plug-ins/script-fu/script-fu-scripts.c:622 #, c-format msgid "" "Error while executing\n" @@ -662,12 +662,10 @@ msgstr "Šípk_a..." #: ../plug-ins/script-fu/scripts/alien-glow-bar.scm.h:3 -#, fuzzy msgid "Bar height" msgstr "Výška kusu" #: ../plug-ins/script-fu/scripts/alien-glow-bar.scm.h:4 -#, fuzzy msgid "Bar length" msgstr "Dĺžka kusu" @@ -1705,12 +1703,10 @@ msgstr "Použiť hranice výberu namiesto nižšie uvedeného" #: ../plug-ins/script-fu/scripts/i26-gunya2.scm.h:4 -#, fuzzy msgid "Frame color" msgstr "Farba rámu" #: ../plug-ins/script-fu/scripts/i26-gunya2.scm.h:5 -#, fuzzy msgid "Frame size" msgstr "Veľkosť rámu" @@ -2516,15 +2512,3 @@ #: ../plug-ins/script-fu/scripts/xach-effect.scm.h:12 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.4/po-script-fu/sr.gmo gimp-2.2.5/po-script-fu/sr.gmo --- gimp-2.2.4/po-script-fu/sr.gmo 2005-02-22 23:12:54.000000000 +0100 +++ gimp-2.2.5/po-script-fu/sr.gmo 2005-04-09 23:09:42.000000000 +0200 @@ -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: 2005-02-22 23:04+0100 +POT-Creation-Date: 2005-04-09 21:56+0200 PO-Revision-Date: 2004-08-08 14:24+0200 Last-Translator: Бранко Ивановић Language-Team: Serbian (sr) diff -uraN gimp-2.2.4/po-script-fu/sr@Latn.gmo gimp-2.2.5/po-script-fu/sr@Latn.gmo --- gimp-2.2.4/po-script-fu/sr@Latn.gmo 2005-02-22 23:12:54.000000000 +0100 +++ gimp-2.2.5/po-script-fu/sr@Latn.gmo 2005-04-09 23:09:42.000000000 +0200 @@ -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: 2005-02-22 23:04+0100 +POT-Creation-Date: 2005-04-09 21:56+0200 PO-Revision-Date: 2004-08-08 14:24+0200 Last-Translator: Branko Ivanović Language-Team: Serbian (sr) diff -uraN gimp-2.2.4/po-script-fu/sr@Latn.po gimp-2.2.5/po-script-fu/sr@Latn.po --- gimp-2.2.4/po-script-fu/sr@Latn.po 2005-02-22 23:12:51.000000000 +0100 +++ gimp-2.2.5/po-script-fu/sr@Latn.po 2005-04-09 23:09:39.000000000 +0200 @@ -10,7 +10,7 @@ msgstr "" "Project-Id-Version: gimp-script-fu\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-02-22 23:04+0100\n" +"POT-Creation-Date: 2005-04-09 21:56+0200\n" "PO-Revision-Date: 2004-08-08 14:24+0200\n" "Last-Translator: Branko Ivanović \n" "Language-Team: Serbian (sr) \n" @@ -140,7 +140,7 @@ msgid "Image Types:" msgstr "Vrste Slika:" -#: ../plug-ins/script-fu/script-fu-scripts.c:611 +#: ../plug-ins/script-fu/script-fu-scripts.c:622 #, c-format msgid "" "Error while executing\n" diff -uraN gimp-2.2.4/po-script-fu/sr.po gimp-2.2.5/po-script-fu/sr.po --- gimp-2.2.4/po-script-fu/sr.po 2005-02-22 23:12:51.000000000 +0100 +++ gimp-2.2.5/po-script-fu/sr.po 2005-04-09 23:09:39.000000000 +0200 @@ -10,7 +10,7 @@ msgstr "" "Project-Id-Version: gimp-script-fu\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-02-22 23:04+0100\n" +"POT-Creation-Date: 2005-04-09 21:56+0200\n" "PO-Revision-Date: 2004-08-08 14:24+0200\n" "Last-Translator: Бранко Ивановић \n" "Language-Team: Serbian (sr) \n" @@ -140,7 +140,7 @@ msgid "Image Types:" msgstr "Врсте Слика:" -#: ../plug-ins/script-fu/script-fu-scripts.c:611 +#: ../plug-ins/script-fu/script-fu-scripts.c:622 #, c-format msgid "" "Error while executing\n" diff -uraN gimp-2.2.4/po-script-fu/sv.gmo gimp-2.2.5/po-script-fu/sv.gmo --- gimp-2.2.4/po-script-fu/sv.gmo 2005-02-22 23:12:54.000000000 +0100 +++ gimp-2.2.5/po-script-fu/sv.gmo 2005-04-09 23:09:42.000000000 +0200 @@ -77,7 +77,7 @@ %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._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: 2005-02-22 23:04+0100 +POT-Creation-Date: 2005-04-09 21:56+0200 PO-Revision-Date: 2004-11-23 14:20+0900 Last-Translator: Jan Morén Language-Team: Swedish diff -uraN gimp-2.2.4/po-script-fu/sv.po gimp-2.2.5/po-script-fu/sv.po --- gimp-2.2.4/po-script-fu/sv.po 2005-02-22 23:12:51.000000000 +0100 +++ gimp-2.2.5/po-script-fu/sv.po 2005-04-09 23:09:39.000000000 +0200 @@ -4,13 +4,13 @@ # Jan Morén , 2003. # Tomas Ögren , 2001. # -# $Id: sv.po,v 1.79.2.2 2005/01/22 17:17:00 neo Exp $ +# $Id: sv.po,v 1.79.2.3 2005/02/22 22:36:22 neo Exp $ # msgid "" msgstr "" "Project-Id-Version: gimp-script-fu\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-02-22 23:04+0100\n" +"POT-Creation-Date: 2005-04-09 21:56+0200\n" "PO-Revision-Date: 2004-11-23 14:20+0900\n" "Last-Translator: Jan Morén \n" "Language-Team: Swedish \n" @@ -135,7 +135,7 @@ msgid "Image Types:" msgstr "Bildtyper:" -#: ../plug-ins/script-fu/script-fu-scripts.c:611 +#: ../plug-ins/script-fu/script-fu-scripts.c:622 #, c-format msgid "" "Error while executing\n" diff -uraN gimp-2.2.4/po-script-fu/tr.gmo gimp-2.2.5/po-script-fu/tr.gmo --- gimp-2.2.4/po-script-fu/tr.gmo 2005-02-22 23:12:54.000000000 +0100 +++ gimp-2.2.5/po-script-fu/tr.gmo 2005-04-09 23:09:42.000000000 +0200 @@ -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: 2005-02-22 23:04+0100 +POT-Creation-Date: 2005-04-09 21:56+0200 PO-Revision-Date: 2002-04-28 04:07+0200 Last-Translator: Ömer Fadıl USTA Language-Team: Turkish diff -uraN gimp-2.2.4/po-script-fu/tr.po gimp-2.2.5/po-script-fu/tr.po --- gimp-2.2.4/po-script-fu/tr.po 2005-02-22 23:12:52.000000000 +0100 +++ gimp-2.2.5/po-script-fu/tr.po 2005-04-09 23:09:39.000000000 +0200 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: GIMP 1.3.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-02-22 23:04+0100\n" +"POT-Creation-Date: 2005-04-09 21:56+0200\n" "PO-Revision-Date: 2002-04-28 04:07+0200\n" "Last-Translator: Ömer Fadıl USTA \n" "Language-Team: Turkish \n" @@ -135,7 +135,7 @@ msgid "Image Types:" msgstr "Resim Tipleri:" -#: ../plug-ins/script-fu/script-fu-scripts.c:611 +#: ../plug-ins/script-fu/script-fu-scripts.c:622 #, fuzzy, c-format msgid "" "Error while executing\n" diff -uraN gimp-2.2.4/po-script-fu/uk.gmo gimp-2.2.5/po-script-fu/uk.gmo --- gimp-2.2.4/po-script-fu/uk.gmo 2005-02-22 23:12:54.000000000 +0100 +++ gimp-2.2.5/po-script-fu/uk.gmo 2005-04-09 23:09:42.000000000 +0200 @@ -1,35 +1,73 @@ -  H I M Y b l r |        "    - -"-=MS [gm~`  1 6 @JY -al u   16 ISZj -q|   *;L]muy -  #<Wp9= ,HYi    )1FVf -mx   - H#lp   #'Kg4 -   4R nx 5 -+6Md* - -+-Bp* #'K*Z  -(CSc}&)?(i((! *Ibs -#*, A (b ( * 0 4!qE!t!,"0B"%s""4"L"F9## -#'### -#&# $'$>$O$m$(~$"$"$$ -%%,% -=%H%^%t% -%% %%%% -%% -&&*,&!W&-y&& &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 + +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 /Dsoss-ssst0t;Mttt!t-ttu=uLubuu u)u(u( v(6v_v!uvv%vvv vv w!+wMw5fw9w(ww%x=xPxpxxxx%x1x + y+yIyYyjy{y#yy*y,y &z(Gz(pz*z0z,z4"{!W{_y{q{tK||0|}%%}K}4i}L}F}2~-E~s~ +~'~~~~~*?Sm +&<+$ P]t+'ـ$(-"Vy""Ձ% +=Hdz2#߂ +)38%l +*у.&+Ra%1 -G\r,*݅ +, $6@[GDi)gH:D-ވ 9"Sv5%4*Mx!ߊ/,)\7.!"D`|/׌--B Q'[ԍ )IX!v!؎)#( L Vb%w,ʏb5Hg3V?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 -%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 +%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-2.0.0 Report-Msgid-Bugs-To: -POT-Creation-Date: 2005-02-22 23:04+0100 -PO-Revision-Date: 2004-04-14 17:54+0200 +POT-Creation-Date: 2005-04-09 21:56+0200 +PO-Revision-Date: 2005-02-23 17:54+0200 Last-Translator: Maxim Dziumanenko Language-Team: Ukrainian MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit -%s:/Скрипт-Фу/АерографАмплітудаКутЗгладжуванняАвтор:АзимутКолір тлаЗображення на тліПоведінкаЗаповнювати чорнимРозмивання по XРозмивання по YПензельПотрібно принаймні два шари!КолоКолірКолір 1Колір 2Колір 3СтовпчикиАвторське право:Поточна командаІнший градієнтДата:РозфокусуватиЩільність (%)ГлибинаДеталі в серединіДіаметрВнизМалювання спірографів, епітрохоїд. Додаткова інформація доступна на сайті http://netword.com/*spyrogimpПідвищенняКінець XКінець YЕпітрохоїдаОчиститиПомилка під час виконання +%d процедур%s:(немає)/Скрипт-Фу/1 процедураОб'ємний _контур..._Об'ємний труше.../Скрипт-Фу/Алхімія/Скрипт-Фу/Альфа у емблему/Скрипт-Фу/Аніматори/Скрипт-Фу/Декор/Скрипт-Фу/Візуалізація/Скрипт-Фу/Виділення/Скрипт-Фу/Тінь/Скрипт-Фу/Параметри трафарету/Скрипт-Фу/Утиліти/Довідка/GIMP у _мережі/Розш./Скрипт-Фу/Розш./Скрипт-Фу/Кнопки/Розш./Скрипт-Фу/Емблеми/Розш./Скрипт-Фу/Створити пензель/Розш./Скрипт-Фу/Різне/Розш./Скрипт-Фу/Візерунки/Розш./Скрипт-Фу/Утиліти/Розш./Теми веб-сторінок/Чуже сяйво/Розш./Теми веб-сторінок/Опуклий візерунок/Розш./Скрипт-Фу/Теми веб сторінок/Класичний Gimp.OrgПоточні кольориДодати _фаску...Додати _рамку...Додати тлоДодати падаючу тіньДодати сяйвоДодати тіньДодаткова інформаціяНапівсяйвоАерографЧуже _сяйво...Чужий _неон...Дозволити зміну розміруАмплітудаКутЗгладжуванняЗастосувати створену маску шаруЗастосувати маску шару (чи відмовитись)Автор:АвтокадруванняАзимутНепрозорість тлаОс_нова I..._Плямиста корова..._Кнопка...Колір тлаЗображення на тліКолір тлаЗображення на тліВисота лінійкиДовжина лінійкиОсновний колірПоведінкаВисота фаски (різкість)Висота фаски (різкість)Ширина фаскиЗаповнювати чорнимЧорний на білому_Градієнтна...Градієнт розмивання (текст)Градієнт розмивання (контур)Градієнт розмивання (текст)Режим змішуванняРозмір блокуРозмивання по XРозмивання по YВеличина розмиванняРозмивання рамкиРозмити горизонтальноРадіус розмиванняТип розмиванняРозмити вертикально_Плямиста корова...Розмір рамки по XРозмір рамки по YКолір рамкиРозмір рамкиРозмір рамки (у точках)ПензельНазва пензляРадіус розмивання рельєфу (альфа-канал)Потрібно принаймні два шари!Колір спалаху_Різьба..._Хромування..._Хромування...Вирізати піднятий текстВирізати білі ділянкиРізьба...Розмір комірки (в точках)Колір крейди_Осколки...ЗернистістьБаланс хромуКоефіцієнт хромуСвітлість хромуНасиченість хромуБілі ділянки хромуКолоГніздо колаОчистити невиділені ділянки маскиКолірКолір 1Колір 2Колір 3Метод фарбуванняСтовпчики_Комікс...УгнутийХолодний _метал...Авторське право:Ширина корониСтворення нового зображенняСтворити тіньСтворює чотири напрямні навколо прямокутника обмеженого поточним виділенням.Кришталь...КубічнаПоточна командаІнший градієнтКористувацький _градієнт...Темний колірЗаміна темним +(Краще, але тільки для зображень з великою кількістю білого)Дата:Типові установки рельєфуРозфокусуватиДельта значення кольоруЩільність (%)ГлибинаДеталі в серединіРівень деталізаціїДіаметрНапрямокВнизПобудувати _HSV-графік...Малювання спірографів, епітрохоїд. Додаткова інформація доступна на сайті http://netword.com/*spyrogimpПадаюча тіньЗсув тіні по XЗсув тіні по YРадіус розмивання тініКолір тініНепрозорість тініРозмір граніКрайЛише граньРадіус граніШирина граніРозмір ефекту (точки * 3)Розмір ефекту (точок * 30)Розмір ефекту (точки * 4)Розмір ефекту (точок * 5)Розмір ефекту (у точках)ПідвищенняЕ_ліптичний, з розмиванням..Кінець XКінець YКінцевий колір градієнтаЗавершення змішуванняМапа середовищаЕпітрохоїдаОчиститиОчистити/заповнитиПомилка під час виконання %s -%sПарніП.План-тло-HSVП.План-тло-RGBП.План-прозореЗгасанняРозмиванняНазва файлуЗаповнити кольором тлаШрифтКадрКадриГрадієнтГрадієнт: Зубчатий циклГрадієнт: Трикутний циклЗернистістьЗернистість (1 -- низька)ВисотаШестикутникШестикутникиIIRТипи зображень:ІнвертуватиЗворотній напрямокЛіворучОсвітлення (в градусах)ЛіссажуЦиклічнеВідступ (у точках)НакрапленняНе знайденоНомерВосьмикутникиНепарніЗсув (у точках)Зсув по XЗсув по YЗсув (точок * 2)НепрозорістьОрієнтаціяЗаповненняЗаповнення XЗаповнення YВізерунокОлівецьП'ятикутникПікселізаціяБагатокутник: 10 сторінБагатокутник: 7 сторінБагатокутник: 8 сторінБагатокутник: 9 сторінПідготувати для GIFНатиснутаRLEРадіусРадіус (у точках)ВипадковістьПраворучШорсткістьРядкиВивід SIODМасштаб XМасштаб YАргументи сценаріюСкрипт-Фу: Вибір пензляСкрипт-Фу: Вибір кольоруКонсоль Скрипт-ФуСкрипт-Фу: Вибір файлуСкрипт-Фу: Вибір файлуСкрипт-Фу: Вибір шрифтуСкрипт-Фу: Вибір градієнтуСкрипт-Фу: Параметри сервераКонсольний режим Скрипт-Фу дозволяє лише інтерактивну роботуРежим виконання Скрипт-Фу дозволяє лише не інтерактивну роботуСкрипт-Фу: %sСкрипт-Фу: Вибір візерункуПошук за _анотаціямиПошук за _назвоюПошук - зачекайте, будь ласкаПошук за анотацією - зачекайте, будь ласкаПошук за назвою - зачекайте, будь ласкаШвидкістьСепіяФайл журналу сервера:Порт сервера:ТіньФормаРізкість (в градусах)РозмірРозмазуватиЗгладитиСуцільний колірІнтервалШвидкість (точок/кадр)Щільність плям по XЩільність плям по YРозповсюдженняСпірографКвадратКвадратиПлямиПочаток по XПочаток по YІнтерполюватиТекстТовщинаПлиткаІнструментТрикутникТипВгоруДовжина хвиліШиринаПереноситиРозмір _рамки (у точках)_Фільтр (рег.вираз)_Вказувати назви шрифтівЗ_найти:_Текст \ No newline at end of file +%sПарніПарні/непарніП.План-тло-HSVП.План-тло-RGBП.План-прозореЗгасанняЗгасання від (%)Згасання до (%)ЗгасанняРозмір кромки згасанняРозмиванняНазва файлуНазва файлуЗаповнити тло візерункомЗаповнити кутЗаповнити кольором тлаЗвести зображенняШрифтРозмір _шрифту (точки)Колір шрифтуРозмір шрифту (у точках)Колір переднього плануКадрКолір обрамленняРозмір обрамленняКадриЗ верхнього лівого до нижнього правогоРозширення GIMPДоповнення GIMPГ_лянцева...Г_аряче сяйво...Колір сяйваРадіус сяйваРозмір сяйва (точок * 4)ГрадієнтОп_уклий градієнт...Обернути градієнтГрадієнт: Зубчатий циклГрадієнт: Трикутний циклЗернистістьЗернистість (1 -- низька)Зернистість (1 -- низька)Масштаб графіка_Заголовок...ВисотаШестикутникШестикутникиЗсув відблисків по XЗсув відблисків по YБаланс відблисківКолір відблисківНепрозорість відблисківПоказник потрапляньРозмір отворуГоризонтальноIIRТипи зображень:Висота зображенняРозмір зображенняЗображення для вирізанняШирина зображенняImigre-26...Індексоване зображенняІндексувати до N кольорів (0 - залишити RGB)Внутрішні зубціВставити назви шарівПроміжкові кадриВнутрішня процедура GIMPІнтерполяціяІнвертуватиЗворотній напрямокЛишити тлоЗберегти шар рельєфуЛишити виділенняВисота земліЛіворучОсвітлення (в градусах)Лінійна _нова...ЛінійнаЛіссажуЦиклічнеНижній колірНижній колір (активний)Нижній правий колірЗробити нове тлоВідступ (у точках)Непрозорість маскиРозмір маскиМаксимальний радіус розмиванняТип елементу мозаїкиНакраплення_Неон...НазваНова напрямна (за _відсотком)...Нові напрямні з виді_леногоСтворити _напрямну...Газетний текст...Без тла (лише для окремого шару)Не знайденоНемаєНе натиснутаНе натиснута (активна)НомерКількість розрізів по XКількість розрізів по YКількість обводівКількість кольорівКількість кадрівКількість лінійКількість повторів для вихруВосьмикутникиНепарніЗсув (у точках)Зсув по XЗсув по YРадіус зсувуЗсув (точок * 2)Розмір маски олійної фарбиНепрозорістьОрієнтаціяЗовнішня рамкаЗовнішні зубціРадіус розмивання контуруКолір контуруОбернути градієнт контуруРозмір контуруКолір заповненняНепрозорість заповненняЗаповненняЗаповнення XЗаповнення YЗаповнення навколо текстуЗаповнення для прозорих ділянокПараметриВізерунокВізерунок (контур)Візерунок (перекривання)Візерунок (текст)Назва візерункаОлівецьП'ятикутникКількість точокПікселізація_Реєстр доповненьБагатокутник: 10 сторінБагатокутник: 7 сторінБагатокутник: 8 сторінБагатокутник: 9 сторінПозиція (у %)Підготувати для GIFНатиснутаПереглядач процедурРозмір чвертіRLEРадіусРадіус (%)Радіус (у точках)База випадковостіВипадковістьПр_ямокутний, з розмиванням...Відносна відстань до горизонтуВідносна довжина тініВидалити тлоВізуалізація _мапи...РезультатІнтервал стрічкиШирина стрічкиПраворучСила брижівШорсткістьВідношення радіусівЗакру_глений прямокутник...РядкиРядки/СтовпчикиВивід SIODSOTA хром...Масштаб XМасштаб YАргументи сценаріюПоступ сценаріюСкрипт-Фу: Вибір пензляСкрипт-Фу: Вибір кольоруКонсоль Скрипт-ФуСкрипт-Фу: Вибір файлуСкрипт-Фу: Вибір файлуСкрипт-Фу: Вибір шрифтуСкрипт-Фу: Вибір градієнтуСкрипт-Фу: Вибір палітриСкрипт-Фу: Параметри сервера_Консоль Скрипт-ФуСкрипт-Фу/ не може обробляти два сценарії одночасно.Консольний режим Скрипт-Фу дозволяє лише інтерактивну роботуРежим виконання Скрипт-Фу дозволяє лише не інтерактивну роботуСкрипт-Фу: %sСкрипт-Фу: Вибір візерункуМорська глибинаПошук за _анотаціямиПошук за наз_воюПошук - зачекайте, будь ласкаПошук за анотацією - зачекайте, будь ласкаПошук за назвою - зачекайте, будь ласкаШвидкістьПоріг вибору за кольоромВідділити шарСепіяФайл журналу сервера:Порт сервера:ТіньЗсув тіні по XЗсув тіні по YРадіус розмивання тініКолір тініТемність тініГлибина тініСила тіні (%)ФормаРізкість (в градусах)Довжина зсувуПоказати _структуру зображення...Проста _об'ємна кнопка...РозмірРозмазуватиЗгладитиЗгладити горизонтальноЗгладити вертикальноСуцільний колірІнтервал між шарамиІнтервалШвидкість (точок/кадр)Швидкісний текст...Колір сфериЩільність плям по XЩільність плям по YРозповсюдженняСпірографКвадратКвадрати_Зоряне тло...Плями_Спалах зірки...Початок по XПочаток по YПочатковий кутПочатковий колір градієнтаПочаток змішуванняІнтерполювати_Вир...Т_руше..._Позначки дод.кнопок труби...Тимчасова процедураТекстТекст по колу...Колір текстуКолір тексту (активний)Обернути градієнт текстуВізерунок для текстуТовщинаЩільність ниткиІнтенсивність ниткиДовжина ниткиПоріг (більший 1<-->255 менший)ПлиткаУ _пензель...У _зображенняУ в_ізерунок...ІнструментПрозоре тлоТрикутник_Двічі вкладені кнопки...Обертати зліва направоТипВгоруВерхній колірВерхній колір (активний)Верхній лівий колірВикористовувати поточний градієнтВикористовувати _назву шрифту як текстВикористовувати зростаюче виділенняВикористовувати для контуру візерунок замість градієнтуВикористовувати для тексту візерунок замість градієнтуВикористовувати накладання візерунківВикористовувати межі виділенняВертикальноДовжина хвиліЗаголовок веб-сторінки...Кількість вихрівКут вихруШиринаШирина обводівШирина зазоруПрацювати з копієюПереноситиГоризонталіВертикаліВи вже запустили сценарій "%s"._Стрілка_Основа I..._Великий заголовок..._Градієнтна...Розмір _рамки (у точках)О_гляд..._Маркер..._Камуфляж...К_рейда.._Друкована плата..._Полотнина..._Кавова плямаСхема _кольорів_Веб-сторінка розробниківВ_икривити виділення...П_адаюча тінь..._Еліптичний...О_чистити кожен другий рядок...З_гасання поза контуром..._Фільтр (рег.вираз)_Плоска земля...Мапа _шрифтів..._Мороз..._Нечіткі краї...Позначки _головної труби..С_ітка..._Горизонтальна лінійка..._Вказувати назви шрифтів_Земля..._Лава_Головна веб-сторінкаСтаре ф_ото...Слід _частинки..._Перспектива..._Хижак..._Прямокутний..._Оновити сценарійВ_идалити усі напрямні_Брижі..._Кругла кнопка..._Закруглені кути...З_найти:_Слайд..._Малий заголовок..._Сфера..._Куля, що обертається..._Спірограф..._Запустити сервер..._Узор_Текст_Текстура...Розмивання _кромки...Позначка кнопки _труби..._Нерізка маска...Х_вилі..._Хвилі..._Xach-ефект... \ No newline at end of file diff -uraN gimp-2.2.4/po-script-fu/uk.po gimp-2.2.5/po-script-fu/uk.po --- gimp-2.2.4/po-script-fu/uk.po 2005-02-22 23:12:52.000000000 +0100 +++ gimp-2.2.5/po-script-fu/uk.po 2005-04-09 23:09:40.000000000 +0200 @@ -6,8 +6,8 @@ msgstr "" "Project-Id-Version: gimp-script-fu-2.0.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-02-22 23:04+0100\n" -"PO-Revision-Date: 2004-04-14 17:54+0200\n" +"POT-Creation-Date: 2005-04-09 21:56+0200\n" +"PO-Revision-Date: 2005-02-23 17:54+0200\n" "Last-Translator: Maxim Dziumanenko \n" "Language-Team: Ukrainian \n" "MIME-Version: 1.0\n" @@ -32,9 +32,8 @@ msgstr "Поточна команда" #: ../plug-ins/script-fu/script-fu-console.c:267 -#, fuzzy msgid "_Browse..." -msgstr "Огляд..." +msgstr "О_гляд..." #: ../plug-ins/script-fu/script-fu-console.c:548 msgid "Script-Fu evaluate mode allows only noninteractive invocation" @@ -42,12 +41,12 @@ #: ../plug-ins/script-fu/script-fu-interface.c:177 msgid "Script-Fu cannot process two scripts at the same time." -msgstr "" +msgstr "Скрипт-Фу/ не може обробляти два сценарії одночасно." #: ../plug-ins/script-fu/script-fu-interface.c:179 #, c-format msgid "You are already running the \"%s\" script." -msgstr "" +msgstr "Ви вже запустили сценарій \"%s\"." #. strip the first part of the menupath if it contains _("/Script-Fu/") #: ../plug-ins/script-fu/script-fu-interface.c:202 @@ -89,9 +88,8 @@ msgstr "Скрипт-Фу: Вибір шрифту" #: ../plug-ins/script-fu/script-fu-interface.c:454 -#, fuzzy msgid "Script-Fu Palette Selection" -msgstr "Скрипт-Фу: Вибір візерунку" +msgstr "Скрипт-Фу: Вибір палітри" #: ../plug-ins/script-fu/script-fu-interface.c:462 msgid "Script-fu Pattern Selection" @@ -107,13 +105,12 @@ #. the script progress frame #: ../plug-ins/script-fu/script-fu-interface.c:533 -#, fuzzy msgid "Script Progress" -msgstr "Аргументи сценарію" +msgstr "Поступ сценарію" #: ../plug-ins/script-fu/script-fu-interface.c:541 msgid "(none)" -msgstr "" +msgstr "(немає)" #: ../plug-ins/script-fu/script-fu-interface.c:1058 #: ../plug-ins/dbbrowser/gimpprocview.c:198 @@ -134,7 +131,7 @@ msgid "Image Types:" msgstr "Типи зображень:" -#: ../plug-ins/script-fu/script-fu-scripts.c:611 +#: ../plug-ins/script-fu/script-fu-scripts.c:622 #, c-format msgid "" "Error while executing\n" @@ -158,33 +155,31 @@ msgstr "Файл журналу сервера:" #: ../plug-ins/script-fu/script-fu.c:122 -#, fuzzy msgid "Script-Fu _Console" -msgstr "Консоль Скрипт-Фу" +msgstr "_Консоль Скрипт-Фу" #: ../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 "/Розш./Скрипт-Фу/Емблеми/_Неон..." +msgstr "/Розш./Скрипт-Фу" #: ../plug-ins/script-fu/script-fu.c:151 msgid "_Start Server..." -msgstr "" +msgstr "_Запустити сервер..." #: ../plug-ins/script-fu/script-fu.c:282 msgid "_Refresh Scripts" -msgstr "" +msgstr "_Оновити сценарій" #: ../plug-ins/dbbrowser/gimpprocbrowser.c:128 #: ../plug-ins/dbbrowser/gimpprocbrowser.c:142 msgid "Procedure Browser" -msgstr "" +msgstr "Переглядач процедур" #: ../plug-ins/dbbrowser/gimpprocbrowser.c:132 #: ../plug-ins/dbbrowser/gimpprocbrowser.c:146 msgid "Search by _Name" -msgstr "Пошук за _назвою" +msgstr "Пошук за наз_вою" #: ../plug-ins/dbbrowser/gimpprocbrowser.c:133 #: ../plug-ins/dbbrowser/gimpprocbrowser.c:147 @@ -209,49 +204,48 @@ #: ../plug-ins/dbbrowser/gimpprocbrowser.c:428 msgid "1 Procedure" -msgstr "" +msgstr "1 процедура" #: ../plug-ins/dbbrowser/gimpprocbrowser.c:430 #, c-format msgid "%d Procedures" -msgstr "" +msgstr "%d процедур" #: ../plug-ins/dbbrowser/gimpprocbrowser.c:476 msgid "No matches" msgstr "Не знайдено" #: ../plug-ins/dbbrowser/gimpprocview.c:133 -#, fuzzy msgid "Parameters" -msgstr "Діаметр" +msgstr "Параметри" #: ../plug-ins/dbbrowser/gimpprocview.c:146 msgid "Return Values" -msgstr "" +msgstr "Результат" #: ../plug-ins/dbbrowser/gimpprocview.c:159 msgid "Additional Information" -msgstr "" +msgstr "Додаткова інформація" #: ../plug-ins/dbbrowser/gimpprocview.c:319 msgid "Internal GIMP procedure" -msgstr "" +msgstr "Внутрішня процедура GIMP" #: ../plug-ins/dbbrowser/gimpprocview.c:320 msgid "GIMP Plug-In" -msgstr "" +msgstr "Доповнення GIMP" #: ../plug-ins/dbbrowser/gimpprocview.c:321 msgid "GIMP Extension" -msgstr "" +msgstr "Розширення GIMP" #: ../plug-ins/dbbrowser/gimpprocview.c:322 msgid "Temporary Procedure" -msgstr "" +msgstr "Тимчасова процедура" #: ../plug-ins/script-fu/scripts/3d-outline.scm.h:1 msgid "3D _Outline..." -msgstr "" +msgstr "Об'ємний _контур..." #: ../plug-ins/script-fu/scripts/3d-outline.scm.h:2 #: ../plug-ins/script-fu/scripts/alien-glow-logo.scm.h:1 @@ -274,9 +268,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 "/Скрипт-Фу/Альфа у емблему/_Неон..." +msgstr "/Скрипт-Фу/Альфа у емблему" #: ../plug-ins/script-fu/scripts/3d-outline.scm.h:3 #: ../plug-ins/script-fu/scripts/alien-glow-logo.scm.h:2 @@ -307,18 +300,15 @@ #: ../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 "/Розш./Скрипт-Фу/Емблеми/_Неон..." +msgstr "/Розш./Скрипт-Фу/Емблеми" #: ../plug-ins/script-fu/scripts/3d-outline.scm.h:4 -#, fuzzy msgid "Bumpmap (alpha layer) blur radius" msgstr "Радіус розмивання рельєфу (альфа-канал)" #: ../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 "Типові установки рельєфу" @@ -398,12 +388,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 "Розмір шрифту (у точках)" #: ../plug-ins/script-fu/scripts/3d-outline.scm.h:8 -#, fuzzy msgid "Outline blur radius" msgstr "Радіус розмивання контуру" @@ -421,19 +409,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 "Зсув тіні по X" #: ../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 "Зсув тіні по Y" #: ../plug-ins/script-fu/scripts/3d-outline.scm.h:12 -#, fuzzy msgid "Shadow blur radius" msgstr "Радіус розмивання тіні" @@ -479,7 +464,7 @@ #: ../plug-ins/script-fu/scripts/3dTruchet.scm.h:1 msgid "3_D Truchet..." -msgstr "" +msgstr "_Об'ємний труше..." #: ../plug-ins/script-fu/scripts/3dTruchet.scm.h:2 #: ../plug-ins/script-fu/scripts/camo.scm.h:1 @@ -489,9 +474,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 "/Розш./Скрипт-Фу/Візерунки/_Земля..." +msgstr "/Розш./Скрипт-Фу/Візерунки" #: ../plug-ins/script-fu/scripts/3dTruchet.scm.h:3 #: ../plug-ins/script-fu/scripts/alien-glow-arrow.scm.h:2 @@ -522,37 +506,31 @@ #: ../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 "Колір тла" #: ../plug-ins/script-fu/scripts/3dTruchet.scm.h:4 #: ../plug-ins/script-fu/scripts/truchet.scm.h:3 -#, fuzzy msgid "Block size" msgstr "Розмір блоку" #: ../plug-ins/script-fu/scripts/3dTruchet.scm.h:5 #: ../plug-ins/script-fu/scripts/blended-logo.scm.h:7 -#, fuzzy msgid "End blend" msgstr "Кінцевий колір градієнта" #: ../plug-ins/script-fu/scripts/3dTruchet.scm.h:6 #: ../plug-ins/script-fu/scripts/truchet.scm.h:5 -#, fuzzy msgid "Number of X tiles" msgstr "Кількість розрізів по X" #: ../plug-ins/script-fu/scripts/3dTruchet.scm.h:7 #: ../plug-ins/script-fu/scripts/truchet.scm.h:6 -#, fuzzy msgid "Number of Y tiles" msgstr "Кількість розрізів по Y" #: ../plug-ins/script-fu/scripts/3dTruchet.scm.h:8 #: ../plug-ins/script-fu/scripts/blended-logo.scm.h:16 -#, fuzzy msgid "Start blend" msgstr "Початковий колір градієнта" @@ -573,17 +551,15 @@ #: ../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 "/Скрипт-Фу/Декор/_Слайд..." +msgstr "/Скрипт-Фу/Декор" #: ../plug-ins/script-fu/scripts/add-bevel.scm.h:2 msgid "Add B_evel..." -msgstr "" +msgstr "Додати _фаску..." #: ../plug-ins/script-fu/scripts/add-bevel.scm.h:3 #: ../plug-ins/script-fu/scripts/chip-away.scm.h:12 -#, fuzzy msgid "Keep bump layer" msgstr "Зберегти шар рельєфу" @@ -593,31 +569,26 @@ #: ../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 "Працювати з копією" #: ../plug-ins/script-fu/scripts/addborder.scm.h:2 msgid "Add _Border..." -msgstr "" +msgstr "Додати _рамку..." #: ../plug-ins/script-fu/scripts/addborder.scm.h:3 -#, fuzzy msgid "Border X size" msgstr "Розмір рамки по X" #: ../plug-ins/script-fu/scripts/addborder.scm.h:4 -#, fuzzy msgid "Border Y size" msgstr "Розмір рамки по Y" #: ../plug-ins/script-fu/scripts/addborder.scm.h:5 -#, fuzzy msgid "Border color" msgstr "Колір рамки" #: ../plug-ins/script-fu/scripts/addborder.scm.h:6 -#, fuzzy msgid "Delta value on color" msgstr "Дельта значення кольору" @@ -625,9 +596,8 @@ #: ../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 "/Розш./Теми веб-сторінок/Чуже сяйво/_Горизонтальна лінійка..." +msgstr "/Розш./Теми веб-сторінок/Чуже сяйво" #: ../plug-ins/script-fu/scripts/alien-glow-arrow.scm.h:3 #: ../plug-ins/script-fu/scripts/beveled-pattern-arrow.scm.h:2 @@ -640,7 +610,6 @@ #: ../plug-ins/script-fu/scripts/alien-glow-button.scm.h:4 #: ../plug-ins/script-fu/scripts/camo.scm.h:5 #: ../plug-ins/script-fu/scripts/fuzzyborder.scm.h:6 -#, fuzzy msgid "Flatten image" msgstr "Звести зображення" @@ -653,7 +622,6 @@ #: ../plug-ins/script-fu/scripts/burn-in-anim.scm.h:9 #: ../plug-ins/script-fu/scripts/neon-logo.scm.h:8 #: ../plug-ins/script-fu/scripts/starscape-logo.scm.h:6 -#, fuzzy msgid "Glow color" msgstr "Колір сяйва" @@ -685,25 +653,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 "Огляд..." +msgstr "_Стрілка" #: ../plug-ins/script-fu/scripts/alien-glow-bar.scm.h:3 -#, fuzzy msgid "Bar height" msgstr "Висота лінійки" #: ../plug-ins/script-fu/scripts/alien-glow-bar.scm.h:4 -#, fuzzy msgid "Bar length" msgstr "Довжина лінійки" #: ../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 "Огляд..." +msgstr "_Горизонтальна лінійка..." #: ../plug-ins/script-fu/scripts/alien-glow-bullet.scm.h:5 #: ../plug-ins/script-fu/scripts/text-circle.scm.h:6 @@ -713,17 +677,15 @@ #: ../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 "Огляд..." +msgstr "_Маркер..." #: ../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 "_Кнопка..." #: ../plug-ins/script-fu/scripts/alien-glow-button.scm.h:8 -#, fuzzy msgid "Glow radius" msgstr "Радіус сяйва" @@ -744,66 +706,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 "Колір тексту" #: ../plug-ins/script-fu/scripts/alien-glow-logo.scm.h:3 msgid "Alien _Glow..." -msgstr "" +msgstr "Чуже _сяйво..." #: ../plug-ins/script-fu/scripts/alien-glow-logo.scm.h:7 -#, fuzzy msgid "Glow size (pixels * 4)" msgstr "Розмір сяйва (точок * 4)" #: ../plug-ins/script-fu/scripts/alien-neon-logo.scm.h:3 msgid "Alien _Neon..." -msgstr "" +msgstr "Чужий _неон..." #: ../plug-ins/script-fu/scripts/alien-neon-logo.scm.h:5 -#, fuzzy msgid "Fade away" msgstr "Згасання" #: ../plug-ins/script-fu/scripts/alien-neon-logo.scm.h:9 -#, fuzzy msgid "Number of bands" msgstr "Кількість обводів" #: ../plug-ins/script-fu/scripts/alien-neon-logo.scm.h:11 -#, fuzzy msgid "Width of bands" msgstr "Ширина обводів" #: ../plug-ins/script-fu/scripts/alien-neon-logo.scm.h:12 -#, fuzzy msgid "Width of gaps" msgstr "Ширина зазору" #: ../plug-ins/script-fu/scripts/basic1-logo.scm.h:8 msgid "_Basic I..." -msgstr "" +msgstr "_Основа I..." #: ../plug-ins/script-fu/scripts/basic2-logo.scm.h:3 msgid "B_asic II..." -msgstr "" +msgstr "Ос_нова I..." #: ../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 "/Розш./Скрипт-Фу/Емблеми/_Неон..." +msgstr "/Розш./Скрипт-Фу/Кнопки" #: ../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 -#, fuzzy msgid "Bevel width" msgstr "Ширина фаски" #: ../plug-ins/script-fu/scripts/beveled-button.scm.h:5 -#, fuzzy msgid "Lower-right color" msgstr "Нижній правий колір" @@ -814,12 +767,10 @@ msgstr "Натиснута" #: ../plug-ins/script-fu/scripts/beveled-button.scm.h:8 -#, fuzzy msgid "Simple _Beveled Button..." -msgstr "/Розш./Скрипт-Фу/Кнопки/Проста _об'ємна кнопка..." +msgstr "Проста _об'ємна кнопка..." #: ../plug-ins/script-fu/scripts/beveled-button.scm.h:11 -#, fuzzy msgid "Upper-left color" msgstr "Верхній лівий колір" @@ -828,9 +779,8 @@ #: ../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 "/Розш./Теми веб-сторінок/Опуклий візерунок/_Стрілка..." +msgstr "/Розш./Теми веб-сторінок/Опуклий візерунок" #: ../plug-ins/script-fu/scripts/beveled-pattern-bullet.scm.h:2 msgid "Diameter" @@ -839,13 +789,12 @@ #: ../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 "" +msgstr "_Заголовок..." #: ../plug-ins/script-fu/scripts/beveled-pattern-hrule.scm.h:2 #: ../plug-ins/script-fu/scripts/gimp-labels.scm.h:5 @@ -867,12 +816,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 "/Скрипт-Фу/Аніматори/_Плавний перехід..." +msgstr "/Скрипт-Фу/Аніматори" #: ../plug-ins/script-fu/scripts/blend-anim.scm.h:2 -#, fuzzy msgid "Intermediate frames" msgstr "Проміжкові кадри" @@ -881,21 +828,18 @@ msgstr "Циклічне" #: ../plug-ins/script-fu/scripts/blend-anim.scm.h:4 -#, fuzzy msgid "Max. blur radius" msgstr "Максимальний радіус розмивання" #: ../plug-ins/script-fu/scripts/blend-anim.scm.h:5 -#, fuzzy msgid "_Blend..." -msgstr "Огляд..." +msgstr "_Градієнтна..." #: ../plug-ins/script-fu/scripts/blended-logo.scm.h:4 msgid "Blen_ded..." -msgstr "" +msgstr "_Градієнтна..." #: ../plug-ins/script-fu/scripts/blended-logo.scm.h:5 -#, fuzzy msgid "Blend mode" msgstr "Режим змішування" @@ -931,7 +875,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 "Обернути градієнт" @@ -946,7 +889,7 @@ #: ../plug-ins/script-fu/scripts/bovinated-logo.scm.h:5 msgid "Bo_vination..." -msgstr "" +msgstr "_Плямиста корова..." #: ../plug-ins/script-fu/scripts/bovinated-logo.scm.h:8 msgid "Spots density X" @@ -957,25 +900,22 @@ msgstr "Щільність плям по Y" #: ../plug-ins/script-fu/scripts/burn-in-anim.scm.h:2 -#, fuzzy msgid "Add glowing" msgstr "Додати сяйво" #: ../plug-ins/script-fu/scripts/burn-in-anim.scm.h:3 -#, fuzzy msgid "After glow" msgstr "Напівсяйво" #: ../plug-ins/script-fu/scripts/burn-in-anim.scm.h:4 msgid "B_urn-In..." -msgstr "" +msgstr "_Плямиста корова..." #: ../plug-ins/script-fu/scripts/burn-in-anim.scm.h:5 msgid "Burn-In: Need two layers in total!" msgstr "Потрібно принаймні два шари!" #: ../plug-ins/script-fu/scripts/burn-in-anim.scm.h:6 -#, fuzzy msgid "Corona width" msgstr "Ширина корони" @@ -984,7 +924,6 @@ msgstr "Згасання" #: ../plug-ins/script-fu/scripts/burn-in-anim.scm.h:8 -#, fuzzy msgid "Fadeout width" msgstr "Розмір кромки згасання" @@ -1015,7 +954,6 @@ #: ../plug-ins/script-fu/scripts/camo.scm.h:7 #: ../plug-ins/script-fu/scripts/rendermap.scm.h:7 -#, fuzzy msgid "Image size" msgstr "Розмір зображення" @@ -1026,25 +964,22 @@ #: ../plug-ins/script-fu/scripts/camo.scm.h:9 msgid "_Camouflage..." -msgstr "" +msgstr "_Камуфляж..." #: ../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 "/Скрипт-Фу/Параметри трафарету/_Вирізати..." +msgstr "/Скрипт-Фу/Параметри трафарету" #: ../plug-ins/script-fu/scripts/carve-it.scm.h:2 msgid "C_arve-It..." -msgstr "" +msgstr "_Різьба..." #: ../plug-ins/script-fu/scripts/carve-it.scm.h:3 -#, fuzzy msgid "Carve white areas" msgstr "Вирізати білі ділянки" #: ../plug-ins/script-fu/scripts/carve-it.scm.h:4 -#, fuzzy msgid "Image to carve" msgstr "Зображення для вирізання" @@ -1053,49 +988,42 @@ msgstr "Зображення на тлі" #: ../plug-ins/script-fu/scripts/carved-logo.scm.h:3 -#, fuzzy msgid "Carve raised text" msgstr "Вирізати піднятий текст" #: ../plug-ins/script-fu/scripts/carved-logo.scm.h:4 msgid "Carved..." -msgstr "" +msgstr "Різьба..." #: ../plug-ins/script-fu/scripts/carved-logo.scm.h:7 -#, fuzzy msgid "Padding around text" msgstr "Заповнення навколо тексту" #: ../plug-ins/script-fu/scripts/chalk.scm.h:4 -#, fuzzy msgid "Chalk color" msgstr "Колір крейди" #: ../plug-ins/script-fu/scripts/chalk.scm.h:8 msgid "_Chalk..." -msgstr "" +msgstr "К_рейда.." #: ../plug-ins/script-fu/scripts/chip-away.scm.h:3 -#, fuzzy msgid "Blur amount" -msgstr "Округлість рельєфу" +msgstr "Величина розмивання" #: ../plug-ins/script-fu/scripts/chip-away.scm.h:4 msgid "Chip Awa_y..." -msgstr "" +msgstr "_Осколки..." #: ../plug-ins/script-fu/scripts/chip-away.scm.h:5 -#, fuzzy msgid "Chip amount" msgstr "Зернистість" #: ../plug-ins/script-fu/scripts/chip-away.scm.h:6 -#, fuzzy msgid "Drop shadow" msgstr "Падаюча тінь" #: ../plug-ins/script-fu/scripts/chip-away.scm.h:7 -#, fuzzy msgid "Fill BG with pattern" msgstr "Заповнити тло візерунком" @@ -1104,62 +1032,52 @@ msgstr "Інвертувати" #: ../plug-ins/script-fu/scripts/chip-away.scm.h:11 -#, fuzzy msgid "Keep background" msgstr "Лишити тло" #: ../plug-ins/script-fu/scripts/chrome-it.scm.h:2 -#, fuzzy msgid "C_hrome-It..." -msgstr "Огляд..." +msgstr "_Хромування..." #: ../plug-ins/script-fu/scripts/chrome-it.scm.h:3 #: ../plug-ins/script-fu/scripts/sota-chrome-logo.scm.h:2 -#, fuzzy msgid "Chrome balance" msgstr "Баланс хрому" #: ../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 -#, fuzzy msgid "Chrome factor" -msgstr "Фактор хрому" +msgstr "Коефіцієнт хрому" #: ../plug-ins/script-fu/scripts/chrome-it.scm.h:5 #: ../plug-ins/script-fu/scripts/sota-chrome-logo.scm.h:4 -#, fuzzy msgid "Chrome lightness" msgstr "Світлість хрому" #: ../plug-ins/script-fu/scripts/chrome-it.scm.h:6 #: ../plug-ins/script-fu/scripts/sota-chrome-logo.scm.h:5 -#, fuzzy msgid "Chrome saturation" msgstr "Насиченість хрому" #: ../plug-ins/script-fu/scripts/chrome-it.scm.h:7 -#, fuzzy msgid "Chrome white areas" msgstr "Білі ділянки хрому" #: ../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 -#, fuzzy msgid "Environment map" msgstr "Мапа середовища" #: ../plug-ins/script-fu/scripts/chrome-it.scm.h:9 #: ../plug-ins/script-fu/scripts/sota-chrome-logo.scm.h:9 -#, fuzzy msgid "Highlight balance" msgstr "Баланс відблисків" #: ../plug-ins/script-fu/scripts/chrome-logo.scm.h:5 -#, fuzzy msgid "C_hrome..." -msgstr "Огляд..." +msgstr "_Хромування..." #: ../plug-ins/script-fu/scripts/chrome-logo.scm.h:8 msgid "Offsets (pixels * 2)" @@ -1170,12 +1088,10 @@ #: ../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 "/Скрипт-Фу/Візуалізація/_Лава..." +msgstr "/Скрипт-Фу/Візуалізація" #: ../plug-ins/script-fu/scripts/circuit.scm.h:2 -#, fuzzy msgid "Circuit seed" msgstr "Гніздо кола" @@ -1183,40 +1099,34 @@ #: ../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 -#, fuzzy msgid "Keep selection" msgstr "Лишити виділення" #: ../plug-ins/script-fu/scripts/circuit.scm.h:4 -#, fuzzy msgid "No background (only for separate layer)" msgstr "Без тла (лише для окремого шару)" #: ../plug-ins/script-fu/scripts/circuit.scm.h:5 -#, fuzzy msgid "Oilify mask size" msgstr "Розмір маски олійної фарби" #: ../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 "Відділити шар" #: ../plug-ins/script-fu/scripts/circuit.scm.h:7 -#, fuzzy msgid "_Circuit..." -msgstr "Гніздо кола" +msgstr "_Друкована плата..." #: ../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 "/Скрипт-Фу/Алхімія/П_летіння..." +msgstr "/Скрипт-Фу/Алхімія" #: ../plug-ins/script-fu/scripts/clothify.scm.h:2 #: ../plug-ins/script-fu/scripts/swirltile.scm.h:2 @@ -1243,10 +1153,9 @@ #: ../plug-ins/script-fu/scripts/clothify.scm.h:7 msgid "_Clothify..." -msgstr "" +msgstr "_Полотнина..." #: ../plug-ins/script-fu/scripts/coffee.scm.h:2 -#, fuzzy msgid "" "Darken only\n" "(Better, but only for images with alot of white)" @@ -1260,63 +1169,55 @@ #: ../plug-ins/script-fu/scripts/coffee.scm.h:4 msgid "_Coffee Stain..." -msgstr "" +msgstr "_Кавова пляма" #: ../plug-ins/script-fu/scripts/comic-logo.scm.h:4 msgid "Comic Boo_k..." -msgstr "" +msgstr "_Комікс..." #: ../plug-ins/script-fu/scripts/comic-logo.scm.h:9 -#, fuzzy msgid "Outline color" msgstr "Колір контуру" #: ../plug-ins/script-fu/scripts/comic-logo.scm.h:10 #: ../plug-ins/script-fu/scripts/glossy.scm.h:12 -#, fuzzy msgid "Outline size" msgstr "Розмір контуру" #: ../plug-ins/script-fu/scripts/coolmetal-logo.scm.h:4 msgid "Cool _Metal..." -msgstr "" +msgstr "Холодний _метал..." #: ../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 "Розмір ефекту (у точках)" #: ../plug-ins/script-fu/scripts/crystal-logo.scm.h:2 -#, fuzzy msgid "Background image" msgstr "Зображення на тлі" #: ../plug-ins/script-fu/scripts/crystal-logo.scm.h:4 msgid "Crystal..." -msgstr "" +msgstr "Кришталь..." #: ../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 "/Скрипт-Фу/Виділення/У _зображення" +msgstr "/Скрипт-Фу/Виділення" #: ../plug-ins/script-fu/scripts/distress-selection.scm.h:2 -#, fuzzy msgid "Granularity (1 is low)" msgstr "Зернистість (1 -- низька)" #: ../plug-ins/script-fu/scripts/distress-selection.scm.h:4 -#, fuzzy msgid "Smooth horizontally" msgstr "Згладити горизонтально" #: ../plug-ins/script-fu/scripts/distress-selection.scm.h:5 -#, fuzzy msgid "Smooth vertically" msgstr "Згладити вертикально" @@ -1325,25 +1226,21 @@ msgstr "Розповсюдження" #: ../plug-ins/script-fu/scripts/distress-selection.scm.h:7 -#, fuzzy msgid "Threshold (bigger 1<-->255 smaller)" msgstr "Поріг (більший 1<-->255 менший)" #: ../plug-ins/script-fu/scripts/distress-selection.scm.h:8 -#, fuzzy msgid "_Distress Selection..." -msgstr "/Скрипт-Фу/Виділення/В_икривити виділення..." +msgstr "В_икривити виділення..." #: ../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 "/Скрипт-Фу/Тінь/_Тінь..." +msgstr "/Скрипт-Фу/Тінь" #: ../plug-ins/script-fu/scripts/drop-shadow.scm.h:2 #: ../plug-ins/script-fu/scripts/perspective-shadow.scm.h:2 -#, fuzzy msgid "Allow resizing" msgstr "Дозволити зміну розміру" @@ -1352,7 +1249,6 @@ #: ../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 "Радіус розмивання" @@ -1379,9 +1275,8 @@ msgstr "Непрозорість" #: ../plug-ins/script-fu/scripts/drop-shadow.scm.h:8 -#, fuzzy msgid "_Drop-Shadow..." -msgstr "Падаюча тінь" +msgstr "П_адаюча тінь..." #: ../plug-ins/script-fu/scripts/erase-rows.scm.h:2 msgid "Columns" @@ -1392,7 +1287,6 @@ msgstr "Очистити" #: ../plug-ins/script-fu/scripts/erase-rows.scm.h:4 -#, fuzzy msgid "Erase/fill" msgstr "Очистити/заповнити" @@ -1401,7 +1295,6 @@ msgstr "Парні" #: ../plug-ins/script-fu/scripts/erase-rows.scm.h:6 -#, fuzzy msgid "Even/odd" msgstr "Парні/непарні" @@ -1418,72 +1311,62 @@ msgstr "Рядки" #: ../plug-ins/script-fu/scripts/erase-rows.scm.h:10 -#, fuzzy msgid "Rows/cols" msgstr "Рядки/Стовпчики" #: ../plug-ins/script-fu/scripts/erase-rows.scm.h:11 -#, fuzzy msgid "_Erase every other Row..." -msgstr "/Скрипт-Фу/Алхімія/О_чистити кожен другий рядок..." +msgstr "О_чистити кожен другий рядок..." #: ../plug-ins/script-fu/scripts/fade-outline.scm.h:2 -#, fuzzy msgid "Apply generated layermask" msgstr "Застосувати створену маску шару" #: ../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 "Розмір рамки" #: ../plug-ins/script-fu/scripts/fade-outline.scm.h:4 -#, fuzzy msgid "Clear unselected maskarea" msgstr "Очистити невиділені ділянки маски" #: ../plug-ins/script-fu/scripts/fade-outline.scm.h:6 -#, fuzzy, no-c-format +#, no-c-format msgid "Fade from %" msgstr "Згасання від (%)" #: ../plug-ins/script-fu/scripts/fade-outline.scm.h:8 -#, fuzzy, no-c-format +#, no-c-format msgid "Fade to %" msgstr "Згасання до (%)" #: ../plug-ins/script-fu/scripts/fade-outline.scm.h:9 -#, fuzzy msgid "Use growing selection" msgstr "Використовувати зростаюче виділення" #: ../plug-ins/script-fu/scripts/fade-outline.scm.h:10 msgid "_Fade Outline..." -msgstr "" +msgstr "З_гасання поза контуром..." #: ../plug-ins/script-fu/scripts/flatland.scm.h:2 #: ../plug-ins/script-fu/scripts/land.scm.h:2 -#, fuzzy msgid "Detail level" msgstr "Рівень деталізації" #: ../plug-ins/script-fu/scripts/flatland.scm.h:3 #: ../plug-ins/script-fu/scripts/land.scm.h:4 -#, fuzzy msgid "Image height" msgstr "Висота зображення" #: ../plug-ins/script-fu/scripts/flatland.scm.h:4 #: ../plug-ins/script-fu/scripts/land.scm.h:5 -#, fuzzy msgid "Image width" msgstr "Ширина зображення" #: ../plug-ins/script-fu/scripts/flatland.scm.h:5 #: ../plug-ins/script-fu/scripts/land.scm.h:7 -#, fuzzy msgid "Random seed" msgstr "База випадковості" @@ -1499,31 +1382,26 @@ #: ../plug-ins/script-fu/scripts/flatland.scm.h:8 msgid "_Flatland..." -msgstr "" +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 "/Розш./Скрипт-Фу/Емблеми/_Неон..." +msgstr "/Розш./Скрипт-Фу/Утиліти" #: ../plug-ins/script-fu/scripts/font-map.scm.h:2 -#, fuzzy msgid "Active colors" -msgstr "Поточні кольори п.плану та тла" +msgstr "Поточні кольори" #: ../plug-ins/script-fu/scripts/font-map.scm.h:3 -#, fuzzy msgid "Black on white" msgstr "Чорний на білому" #: ../plug-ins/script-fu/scripts/font-map.scm.h:4 -#, fuzzy msgid "Font _size (pixels)" msgstr "Розмір _шрифту (точки)" #: ../plug-ins/script-fu/scripts/font-map.scm.h:5 -#, fuzzy msgid "Use font _name as text" msgstr "Використовувати _назву шрифту як текст" @@ -1532,7 +1410,6 @@ msgstr "Розмір _рамки (у точках)" #: ../plug-ins/script-fu/scripts/font-map.scm.h:7 -#, fuzzy msgid "_Color scheme" msgstr "Схема _кольорів" @@ -1542,7 +1419,7 @@ #: ../plug-ins/script-fu/scripts/font-map.scm.h:9 msgid "_Font Map..." -msgstr "" +msgstr "Мапа _шрифтів..." #: ../plug-ins/script-fu/scripts/font-map.scm.h:10 msgid "_Labels" @@ -1553,17 +1430,14 @@ msgstr "_Текст" #: ../plug-ins/script-fu/scripts/frosty-logo.scm.h:8 -#, fuzzy msgid "_Frosty..." -msgstr "Огляд..." +msgstr "_Мороз..." #: ../plug-ins/script-fu/scripts/fuzzyborder.scm.h:2 -#, fuzzy msgid "Add shadow" msgstr "Додати тінь" #: ../plug-ins/script-fu/scripts/fuzzyborder.scm.h:3 -#, fuzzy msgid "Blur border" msgstr "Розмивання рамки" @@ -1572,126 +1446,110 @@ msgstr "Зернистість (1 -- низька)" #: ../plug-ins/script-fu/scripts/fuzzyborder.scm.h:9 -#, fuzzy, no-c-format +#, no-c-format msgid "Shadow weight (%)" msgstr "Сила тіні (%)" #: ../plug-ins/script-fu/scripts/fuzzyborder.scm.h:11 msgid "_Fuzzy Border..." -msgstr "" +msgstr "_Нечіткі краї..." #: ../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 "/Розш./Теми веб-сторінок/Gimp.Org/_Великий заголовок..." +msgstr "/Розш./Скрипт-Фу/Теми веб сторінок/Класичний Gimp.Org" #: ../plug-ins/script-fu/scripts/gimp-headers.scm.h:2 -#, fuzzy msgid "Autocrop" msgstr "Автокадрування" #: ../plug-ins/script-fu/scripts/gimp-headers.scm.h:3 -#, fuzzy msgid "Dark color" msgstr "Темний колір" #: ../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 "Колір відблисків" #: ../plug-ins/script-fu/scripts/gimp-headers.scm.h:7 #: ../plug-ins/script-fu/scripts/gimp-labels.scm.h:6 -#, fuzzy msgid "Index image" msgstr "Індексоване зображення" #: ../plug-ins/script-fu/scripts/gimp-headers.scm.h:8 #: ../plug-ins/script-fu/scripts/gimp-labels.scm.h:7 -#, fuzzy msgid "Number of colors" msgstr "Кількість кольорів" #: ../plug-ins/script-fu/scripts/gimp-headers.scm.h:9 #: ../plug-ins/script-fu/scripts/gimp-labels.scm.h:10 -#, fuzzy msgid "Remove background" msgstr "Видалити тло" #: ../plug-ins/script-fu/scripts/gimp-headers.scm.h:10 #: ../plug-ins/script-fu/scripts/gimp-labels.scm.h:11 -#, fuzzy msgid "Select-by-color threshold" -msgstr "Поріг вибору за коліром" +msgstr "Поріг вибору за кольором" #: ../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 "Колір тіні" #: ../plug-ins/script-fu/scripts/gimp-headers.scm.h:14 msgid "_Big Header..." -msgstr "" +msgstr "_Великий заголовок..." #: ../plug-ins/script-fu/scripts/gimp-headers.scm.h:15 msgid "_Small Header..." -msgstr "" +msgstr "_Малий заголовок..." #: ../plug-ins/script-fu/scripts/gimp-labels.scm.h:13 msgid "T_ube Sub-Button Label..." -msgstr "" +msgstr "_Позначки дод.кнопок труби..." #: ../plug-ins/script-fu/scripts/gimp-labels.scm.h:16 msgid "Tub_e Sub-Sub-Button Label..." -msgstr "" +msgstr "_Двічі вкладені кнопки..." #: ../plug-ins/script-fu/scripts/gimp-labels.scm.h:17 msgid "_General Tube Labels..." -msgstr "" +msgstr "Позначки _головної труби.." #: ../plug-ins/script-fu/scripts/gimp-labels.scm.h:18 msgid "_Tube Button Label..." -msgstr "" +msgstr "Позначка кнопки _труби..." #: ../plug-ins/script-fu/scripts/glossy.scm.h:4 -#, fuzzy msgid "Blend gradient (Text)" -msgstr "Градієнт (текст)" +msgstr "Градієнт розмивання (текст)" #: ../plug-ins/script-fu/scripts/glossy.scm.h:5 -#, fuzzy msgid "Blend gradient (outline)" -msgstr "Градієнт (контур)" +msgstr "Градієнт розмивання (контур)" #: ../plug-ins/script-fu/scripts/glossy.scm.h:6 -#, fuzzy msgid "Blend gradient (text)" -msgstr "Градієнт (текст)" +msgstr "Градієнт розмивання (текст)" #: ../plug-ins/script-fu/scripts/glossy.scm.h:10 msgid "Glo_ssy..." -msgstr "" +msgstr "Г_лянцева..." #: ../plug-ins/script-fu/scripts/glossy.scm.h:11 -#, fuzzy msgid "Outline gradient reverse" msgstr "Обернути градієнт контуру" #: ../plug-ins/script-fu/scripts/glossy.scm.h:13 -#, fuzzy msgid "Pattern (outline)" msgstr "Візерунок (контур)" #: ../plug-ins/script-fu/scripts/glossy.scm.h:14 -#, fuzzy msgid "Pattern (overlay)" msgstr "Візерунок (перекривання)" #: ../plug-ins/script-fu/scripts/glossy.scm.h:15 -#, fuzzy msgid "Pattern (text)" msgstr "Візерунок (текст)" @@ -1701,133 +1559,116 @@ msgstr "Тінь" #: ../plug-ins/script-fu/scripts/glossy.scm.h:20 -#, fuzzy msgid "Text gradient reverse" msgstr "Обернути градієнт тексту" #: ../plug-ins/script-fu/scripts/glossy.scm.h:21 -#, fuzzy msgid "Use pattern for outline instead of gradient" msgstr "Використовувати для контуру візерунок замість градієнту" #: ../plug-ins/script-fu/scripts/glossy.scm.h:22 -#, fuzzy msgid "Use pattern for text instead of gradient" msgstr "Використовувати для тексту візерунок замість градієнту" #: ../plug-ins/script-fu/scripts/glossy.scm.h:23 -#, fuzzy msgid "Use pattern overlay" msgstr "Використовувати накладання візерунків" #: ../plug-ins/script-fu/scripts/glowing-logo.scm.h:4 -#, fuzzy msgid "Effect size (pixels * 3)" msgstr "Розмір ефекту (точки * 3)" #: ../plug-ins/script-fu/scripts/glowing-logo.scm.h:7 msgid "Glo_wing Hot..." -msgstr "" +msgstr "Г_аряче сяйво..." #: ../plug-ins/script-fu/scripts/gradient-bevel-logo.scm.h:4 -#, fuzzy msgid "Bevel height (Sharpness)" msgstr "Висота фаски (різкість)" #: ../plug-ins/script-fu/scripts/gradient-bevel-logo.scm.h:5 -#, fuzzy msgid "Bevel height (sharpness)" msgstr "Висота фаски (різкість)" #: ../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 "Розмір рамки (у точках)" #: ../plug-ins/script-fu/scripts/gradient-bevel-logo.scm.h:10 -#, fuzzy msgid "Gradient Beve_l..." -msgstr "Обернути градієнт" +msgstr "Оп_уклий градієнт..." #: ../plug-ins/script-fu/scripts/gradient-example.scm.h:2 -#, fuzzy msgid "Custom _Gradient..." -msgstr "Інший градієнт" +msgstr "Користувацький _градієнт..." #: ../plug-ins/script-fu/scripts/grid-system.scm.h:2 -#, fuzzy msgid "X divisions" msgstr "Горизонталі" #: ../plug-ins/script-fu/scripts/grid-system.scm.h:3 -#, fuzzy msgid "Y divisions" msgstr "Вертикалі" #: ../plug-ins/script-fu/scripts/grid-system.scm.h:4 msgid "_Grid..." -msgstr "" +msgstr "С_ітка..." #: ../plug-ins/script-fu/scripts/guides-from-selection.scm.h:1 msgid "Creates four Guides around the bounding box of the current selection." msgstr "" +"Створює чотири напрямні навколо прямокутника обмеженого поточним виділенням." #: ../plug-ins/script-fu/scripts/guides-from-selection.scm.h:2 msgid "New Guides from _Selection" -msgstr "" +msgstr "Нові напрямні з виді_леного" #: ../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 "Опис" +msgstr "Напрямок" #: ../plug-ins/script-fu/scripts/guides-new-percent.scm.h:2 #: ../plug-ins/script-fu/scripts/guides-new.scm.h:2 -#, fuzzy msgid "Horizontal" -msgstr "Розмити горизонтально" +msgstr "Горизонтально" #: ../plug-ins/script-fu/scripts/guides-new-percent.scm.h:3 msgid "New Guide (by _Percent)..." -msgstr "" +msgstr "Нова напрямна (за _відсотком)..." #: ../plug-ins/script-fu/scripts/guides-new-percent.scm.h:5 #, no-c-format msgid "Position (in %)" -msgstr "" +msgstr "Позиція (у %)" #: ../plug-ins/script-fu/scripts/guides-new-percent.scm.h:6 #: ../plug-ins/script-fu/scripts/guides-new.scm.h:4 -#, fuzzy msgid "Vertical" -msgstr "Розмити вертикально" +msgstr "Вертикально" #: ../plug-ins/script-fu/scripts/guides-new.scm.h:3 msgid "New _Guide..." -msgstr "" +msgstr "Створити _напрямну..." #: ../plug-ins/script-fu/scripts/guides-remove-all.scm.h:1 msgid "_Remove all Guides" -msgstr "" +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 у шар зображення..." +msgstr "/Скрипт-Фу/Утиліти" #: ../plug-ins/script-fu/scripts/hsv-graph.scm.h:2 -#, fuzzy msgid "BG opacity" msgstr "Непрозорість тла" #: ../plug-ins/script-fu/scripts/hsv-graph.scm.h:3 -#, fuzzy msgid "Draw _HSV Graph..." -msgstr "/Скрипт-Фу/Утиліти/Побудувати _HSV-графік..." +msgstr "Побудувати _HSV-графік..." #: ../plug-ins/script-fu/scripts/hsv-graph.scm.h:4 msgid "End X" @@ -1838,12 +1679,10 @@ msgstr "Кінець Y" #: ../plug-ins/script-fu/scripts/hsv-graph.scm.h:6 -#, fuzzy msgid "From top-left to bottom-right" msgstr "З верхнього лівого до нижнього правого" #: ../plug-ins/script-fu/scripts/hsv-graph.scm.h:7 -#, fuzzy msgid "Graph scale" msgstr "Масштаб графіка" @@ -1856,92 +1695,76 @@ msgstr "Початок по Y" #: ../plug-ins/script-fu/scripts/hsv-graph.scm.h:10 -#, fuzzy msgid "Use selection bounds instead of belows" msgstr "Використовувати межі виділення" #: ../plug-ins/script-fu/scripts/i26-gunya2.scm.h:4 -#, fuzzy msgid "Frame color" msgstr "Колір обрамлення" #: ../plug-ins/script-fu/scripts/i26-gunya2.scm.h:5 -#, fuzzy msgid "Frame size" msgstr "Розмір обрамлення" #: ../plug-ins/script-fu/scripts/i26-gunya2.scm.h:6 msgid "Imigre-26..." -msgstr "" +msgstr "Imigre-26..." #: ../plug-ins/script-fu/scripts/image-structure.scm.h:2 -#, fuzzy msgid "Apply layer mask (or discard)" msgstr "Застосувати маску шару (чи відмовитись)" #: ../plug-ins/script-fu/scripts/image-structure.scm.h:4 -#, fuzzy msgid "Create new image" msgstr "Створення нового зображення" #: ../plug-ins/script-fu/scripts/image-structure.scm.h:5 -#, fuzzy msgid "Insert layer names" msgstr "Вставити назви шарів" #: ../plug-ins/script-fu/scripts/image-structure.scm.h:6 -#, fuzzy msgid "Make new background" msgstr "Зробити нове тло" #: ../plug-ins/script-fu/scripts/image-structure.scm.h:7 -#, fuzzy msgid "Outer border" msgstr "Зовнішня рамка" #: ../plug-ins/script-fu/scripts/image-structure.scm.h:8 -#, fuzzy msgid "Pad color" msgstr "Колір заповнення" #: ../plug-ins/script-fu/scripts/image-structure.scm.h:9 -#, fuzzy msgid "Pad opacity" msgstr "Непрозорість заповнення" #: ../plug-ins/script-fu/scripts/image-structure.scm.h:10 -#, fuzzy msgid "Padding for transparent regions" msgstr "Заповнення для прозорих ділянок" #: ../plug-ins/script-fu/scripts/image-structure.scm.h:11 -#, fuzzy msgid "Shear length" msgstr "Довжина зсуву" #: ../plug-ins/script-fu/scripts/image-structure.scm.h:12 -#, fuzzy msgid "Show Image _Structure..." -msgstr "/Скрипт-Фу/Утиліти/Показати _структуру зображення..." +msgstr "Показати _структуру зображення..." #: ../plug-ins/script-fu/scripts/image-structure.scm.h:13 -#, fuzzy msgid "Space between layers" msgstr "Інтервал між шарами" #: ../plug-ins/script-fu/scripts/land.scm.h:6 -#, fuzzy msgid "Land height" msgstr "Висота землі" #: ../plug-ins/script-fu/scripts/land.scm.h:10 -#, fuzzy msgid "Sea depth" msgstr "Морська глибина" #: ../plug-ins/script-fu/scripts/land.scm.h:11 msgid "_Land..." -msgstr "" +msgstr "_Земля..." #: ../plug-ins/script-fu/scripts/lava.scm.h:4 #: ../plug-ins/script-fu/scripts/swirltile.scm.h:8 @@ -1953,25 +1776,22 @@ msgstr "Швидкість" #: ../plug-ins/script-fu/scripts/lava.scm.h:8 -#, fuzzy msgid "Use current gradient" msgstr "Використовувати поточний градієнт" #: ../plug-ins/script-fu/scripts/lava.scm.h:9 msgid "_Lava..." -msgstr "" +msgstr "_Лава" #: ../plug-ins/script-fu/scripts/line-nova.scm.h:2 msgid "Line _Nova..." -msgstr "" +msgstr "Лінійна _нова..." #: ../plug-ins/script-fu/scripts/line-nova.scm.h:3 -#, fuzzy msgid "Number of lines" msgstr "Кількість ліній" #: ../plug-ins/script-fu/scripts/line-nova.scm.h:4 -#, fuzzy msgid "Offset radius" msgstr "Радіус зсуву" @@ -1984,26 +1804,24 @@ msgstr "Різкість (в градусах)" #: ../plug-ins/script-fu/scripts/mkbrush.scm.h:1 -#, fuzzy msgid "/Xtns/Script-Fu/Make Brush" -msgstr "/Розш./Скрипт-Фу/Створити пензель/_Еліптичний..." +msgstr "/Розш./Скрипт-Фу/Створити пензель" #: ../plug-ins/script-fu/scripts/mkbrush.scm.h:2 msgid "Elli_ptical, Feathered..." -msgstr "" +msgstr "Е_ліптичний, з розмиванням.." #: ../plug-ins/script-fu/scripts/mkbrush.scm.h:3 msgid "Feathering" msgstr "Розмивання" #: ../plug-ins/script-fu/scripts/mkbrush.scm.h:5 -#, fuzzy msgid "Name" -msgstr "Назва:" +msgstr "Назва" #: ../plug-ins/script-fu/scripts/mkbrush.scm.h:6 msgid "Re_ctangular, Feathered..." -msgstr "" +msgstr "Пр_ямокутний, з розмиванням..." #: ../plug-ins/script-fu/scripts/mkbrush.scm.h:7 #: ../plug-ins/script-fu/scripts/select-to-brush.scm.h:4 @@ -2012,28 +1830,25 @@ #: ../plug-ins/script-fu/scripts/mkbrush.scm.h:9 msgid "_Elliptical..." -msgstr "" +msgstr "_Еліптичний..." #: ../plug-ins/script-fu/scripts/mkbrush.scm.h:10 msgid "_Rectangular..." -msgstr "" +msgstr "_Прямокутний..." #: ../plug-ins/script-fu/scripts/neon-logo.scm.h:4 -#, fuzzy msgid "Create shadow" msgstr "Створити тінь" #: ../plug-ins/script-fu/scripts/neon-logo.scm.h:5 -#, fuzzy msgid "Effect size (pixels * 5)" msgstr "Розмір ефекту (точок * 5)" #: ../plug-ins/script-fu/scripts/neon-logo.scm.h:9 msgid "N_eon..." -msgstr "" +msgstr "_Неон..." #: ../plug-ins/script-fu/scripts/news-text.scm.h:4 -#, fuzzy msgid "Cell size (pixels)" msgstr "Розмір комірки (в точках)" @@ -2045,7 +1860,7 @@ #: ../plug-ins/script-fu/scripts/news-text.scm.h:9 msgid "Newsprint Text..." -msgstr "" +msgstr "Газетний текст..." #: ../plug-ins/script-fu/scripts/old-photo.scm.h:3 msgid "Defocus" @@ -2061,7 +1876,7 @@ #: ../plug-ins/script-fu/scripts/old-photo.scm.h:7 msgid "_Old Photo..." -msgstr "" +msgstr "Старе ф_ото..." #: ../plug-ins/script-fu/scripts/perspective-shadow.scm.h:3 msgid "Angle" @@ -2069,42 +1884,37 @@ #: ../plug-ins/script-fu/scripts/perspective-shadow.scm.h:6 msgid "Cubic" -msgstr "" +msgstr "Кубічна" #: ../plug-ins/script-fu/scripts/perspective-shadow.scm.h:7 -#, fuzzy msgid "Interpolation" msgstr "Інтерполяція" #: ../plug-ins/script-fu/scripts/perspective-shadow.scm.h:8 msgid "Linear" -msgstr "" +msgstr "Лінійна" #: ../plug-ins/script-fu/scripts/perspective-shadow.scm.h:9 msgid "None" -msgstr "" +msgstr "Немає" #: ../plug-ins/script-fu/scripts/perspective-shadow.scm.h:11 -#, fuzzy msgid "Relative distance of horizon" msgstr "Відносна відстань до горизонту" #: ../plug-ins/script-fu/scripts/perspective-shadow.scm.h:12 -#, fuzzy msgid "Relative length of shadow" msgstr "Відносна довжина тіні" #: ../plug-ins/script-fu/scripts/perspective-shadow.scm.h:13 msgid "_Perspective..." -msgstr "" +msgstr "_Перспектива..." #: ../plug-ins/script-fu/scripts/predator.scm.h:2 -#, fuzzy msgid "Edge amount" msgstr "Розмір грані" #: ../plug-ins/script-fu/scripts/predator.scm.h:4 -#, fuzzy msgid "Pixel amount" msgstr "Кількість точок" @@ -2114,25 +1924,21 @@ #: ../plug-ins/script-fu/scripts/predator.scm.h:7 msgid "_Predator..." -msgstr "" +msgstr "_Хижак..." #: ../plug-ins/script-fu/scripts/pupi-button.scm.h:5 -#, fuzzy msgid "Lower color" msgstr "Нижній колір" #: ../plug-ins/script-fu/scripts/pupi-button.scm.h:6 -#, fuzzy msgid "Lower color (active)" msgstr "Нижній колір (активний)" #: ../plug-ins/script-fu/scripts/pupi-button.scm.h:7 -#, fuzzy msgid "Not pressed" msgstr "Не натиснута" #: ../plug-ins/script-fu/scripts/pupi-button.scm.h:8 -#, fuzzy msgid "Not pressed (active)" msgstr "Не натиснута (активна)" @@ -2145,28 +1951,24 @@ msgstr "Заповнення Y" #: ../plug-ins/script-fu/scripts/pupi-button.scm.h:12 -#, fuzzy msgid "Round ratio" msgstr "Відношення радіусів" #: ../plug-ins/script-fu/scripts/pupi-button.scm.h:15 -#, fuzzy msgid "Text color (active)" msgstr "Колір тексту (активний)" #: ../plug-ins/script-fu/scripts/pupi-button.scm.h:16 -#, fuzzy msgid "Upper color" msgstr "Верхній колір" #: ../plug-ins/script-fu/scripts/pupi-button.scm.h:17 -#, fuzzy msgid "Upper color (active)" msgstr "Верхній колір (активний)" #: ../plug-ins/script-fu/scripts/pupi-button.scm.h:18 msgid "_Round Button..." -msgstr "" +msgstr "_Кругла кнопка..." #: ../plug-ins/script-fu/scripts/rendermap.scm.h:2 msgid "Behaviour" @@ -2178,7 +1980,7 @@ #: ../plug-ins/script-fu/scripts/rendermap.scm.h:8 msgid "Render _Map..." -msgstr "" +msgstr "Візуалізація _мапи..." #: ../plug-ins/script-fu/scripts/rendermap.scm.h:9 msgid "Tile" @@ -2189,18 +1991,15 @@ msgstr "Заповнювати чорним" #: ../plug-ins/script-fu/scripts/ripply-anim.scm.h:3 -#, fuzzy msgid "Edge behaviour" msgstr "Край" #: ../plug-ins/script-fu/scripts/ripply-anim.scm.h:4 #: ../plug-ins/script-fu/scripts/waves-anim.scm.h:4 -#, fuzzy msgid "Number of frames" msgstr "Кількість кадрів" #: ../plug-ins/script-fu/scripts/ripply-anim.scm.h:5 -#, fuzzy msgid "Rippling strength" msgstr "Сила брижів" @@ -2214,76 +2013,66 @@ #: ../plug-ins/script-fu/scripts/ripply-anim.scm.h:8 msgid "_Rippling..." -msgstr "" +msgstr "_Брижі..." #: ../plug-ins/script-fu/scripts/round-corners.scm.h:2 -#, fuzzy msgid "Add background" msgstr "Додати тло" #: ../plug-ins/script-fu/scripts/round-corners.scm.h:3 -#, fuzzy msgid "Add drop-shadow" msgstr "Додати падаючу тінь" #: ../plug-ins/script-fu/scripts/round-corners.scm.h:5 -#, fuzzy msgid "Edge radius" msgstr "Радіус грані" #: ../plug-ins/script-fu/scripts/round-corners.scm.h:9 msgid "_Round Corners..." -msgstr "" +msgstr "_Закруглені кути..." #: ../plug-ins/script-fu/scripts/select-to-brush.scm.h:2 -#, fuzzy 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..." -msgstr "Огляд..." +msgstr "У _пензель..." #: ../plug-ins/script-fu/scripts/select-to-image.scm.h:2 msgid "To _Image" -msgstr "" +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" -msgstr "Візерунок" +msgstr "Назва візерунка" #: ../plug-ins/script-fu/scripts/select-to-pattern.scm.h:4 -#, fuzzy msgid "To _Pattern..." -msgstr "Візерунок" +msgstr "У в_ізерунок..." #: ../plug-ins/script-fu/scripts/selection-round.scm.h:1 msgid "Concave" -msgstr "" +msgstr "Угнутий" #: ../plug-ins/script-fu/scripts/selection-round.scm.h:3 -#, fuzzy, no-c-format +#, no-c-format msgid "Radius (%)" -msgstr "Радіус" +msgstr "Радіус (%)" #: ../plug-ins/script-fu/scripts/selection-round.scm.h:4 -#, fuzzy msgid "Rounded R_ectangle..." -msgstr "/Скрипт-Фу/Виділення/_Закруглити..." +msgstr "Закру_глений прямокутник..." #: ../plug-ins/script-fu/scripts/slide.scm.h:3 -#, fuzzy msgid "Font color" msgstr "Колір шрифту" @@ -2293,20 +2082,19 @@ #: ../plug-ins/script-fu/scripts/slide.scm.h:7 msgid "_Slide..." -msgstr "" +msgstr "_Слайд..." #: ../plug-ins/script-fu/scripts/sota-chrome-logo.scm.h:10 msgid "SOTA Chrome..." -msgstr "" +msgstr "SOTA хром..." #: ../plug-ins/script-fu/scripts/speed-text.scm.h:7 msgid "Speed Text..." -msgstr "" +msgstr "Швидкісний текст..." #: ../plug-ins/script-fu/scripts/sphere.scm.h:1 -#, fuzzy msgid "/Xtns/Script-Fu/Misc" -msgstr "/Розш./Скрипт-Фу/Емблеми/_Неон..." +msgstr "/Розш./Скрипт-Фу/Різне" #: ../plug-ins/script-fu/scripts/sphere.scm.h:3 msgid "Lighting (degrees)" @@ -2317,32 +2105,28 @@ msgstr "Радіус (у точках)" #: ../plug-ins/script-fu/scripts/sphere.scm.h:6 -#, fuzzy msgid "Sphere color" msgstr "Колір сфери" #: ../plug-ins/script-fu/scripts/sphere.scm.h:7 -#, fuzzy msgid "_Sphere..." -msgstr "Огляд..." +msgstr "_Сфера..." #: ../plug-ins/script-fu/scripts/spinning-globe.scm.h:2 msgid "Frames" msgstr "Кадри" #: ../plug-ins/script-fu/scripts/spinning-globe.scm.h:3 -#, fuzzy msgid "Index to n colors (0 = remain RGB)" msgstr "Індексувати до N кольорів (0 - залишити RGB)" #: ../plug-ins/script-fu/scripts/spinning-globe.scm.h:5 -#, fuzzy msgid "Turn from left to right" msgstr "Обертати зліва направо" #: ../plug-ins/script-fu/scripts/spinning-globe.scm.h:7 msgid "_Spinning Globe..." -msgstr "" +msgstr "_Куля, що обертається..." #: ../plug-ins/script-fu/scripts/spyrogimp.scm.h:2 msgid "Airbrush" @@ -2357,7 +2141,6 @@ msgstr "Коло" #: ../plug-ins/script-fu/scripts/spyrogimp.scm.h:6 -#, fuzzy msgid "Color method" msgstr "Метод фарбування" @@ -2390,12 +2173,10 @@ msgstr "Шестикутник" #: ../plug-ins/script-fu/scripts/spyrogimp.scm.h:14 -#, fuzzy msgid "Hole ratio" msgstr "Розмір отвору" #: ../plug-ins/script-fu/scripts/spyrogimp.scm.h:15 -#, fuzzy msgid "Inner teeth" msgstr "Внутрішні зубці" @@ -2408,7 +2189,6 @@ msgstr "Відступ (у точках)" #: ../plug-ins/script-fu/scripts/spyrogimp.scm.h:18 -#, fuzzy msgid "Outer teeth" msgstr "Зовнішні зубці" @@ -2454,7 +2234,6 @@ #: ../plug-ins/script-fu/scripts/spyrogimp.scm.h:29 #: ../plug-ins/script-fu/scripts/text-circle.scm.h:7 -#, fuzzy msgid "Start angle" msgstr "Початковий кут" @@ -2471,102 +2250,86 @@ msgstr "Тип" #: ../plug-ins/script-fu/scripts/spyrogimp.scm.h:33 -#, fuzzy msgid "_Spyrogimp..." -msgstr "Спірограф" +msgstr "_Спірограф..." #: ../plug-ins/script-fu/scripts/starburst-logo.scm.h:4 -#, fuzzy msgid "Burst color" msgstr "Колір спалаху" #: ../plug-ins/script-fu/scripts/starburst-logo.scm.h:5 -#, fuzzy msgid "Effect size (pixels * 30)" msgstr "Розмір ефекту (точок * 30)" #: ../plug-ins/script-fu/scripts/starburst-logo.scm.h:8 msgid "Starb_urst..." -msgstr "" +msgstr "_Спалах зірки..." #: ../plug-ins/script-fu/scripts/starscape-logo.scm.h:3 -#, fuzzy msgid "Effect size (pixels * 4)" msgstr "Розмір ефекту (точки * 4)" #: ../plug-ins/script-fu/scripts/starscape-logo.scm.h:7 -#, fuzzy msgid "Sta_rscape..." -msgstr "Огляд..." +msgstr "_Зоряне тло..." #: ../plug-ins/script-fu/scripts/swirltile.scm.h:9 msgid "Swirl-_Tile..." -msgstr "" +msgstr "_Вир..." #: ../plug-ins/script-fu/scripts/swirltile.scm.h:10 -#, fuzzy msgid "Whirl amount" msgstr "Кількість вихрів" #: ../plug-ins/script-fu/scripts/swirly-pattern.scm.h:2 -#, fuzzy msgid "Number of times to whirl" msgstr "Кількість повторів для вихру" #: ../plug-ins/script-fu/scripts/swirly-pattern.scm.h:3 -#, fuzzy msgid "Quarter size" msgstr "Розмір чверті" #: ../plug-ins/script-fu/scripts/swirly-pattern.scm.h:4 -#, fuzzy msgid "Whirl angle" msgstr "Кут вихру" #: ../plug-ins/script-fu/scripts/swirly-pattern.scm.h:5 msgid "_Swirly..." -msgstr "" +msgstr "_Узор" #: ../plug-ins/script-fu/scripts/t-o-p-logo.scm.h:4 -#, fuzzy msgid "Base color" msgstr "Основний колір" #: ../plug-ins/script-fu/scripts/t-o-p-logo.scm.h:6 -#, fuzzy msgid "Edge only" msgstr "Лише грань" #: ../plug-ins/script-fu/scripts/t-o-p-logo.scm.h:7 -#, fuzzy msgid "Edge width" msgstr "Ширина грані" #: ../plug-ins/script-fu/scripts/t-o-p-logo.scm.h:10 -#, fuzzy msgid "Hit rate" msgstr "Показник потраплянь" #: ../plug-ins/script-fu/scripts/t-o-p-logo.scm.h:12 msgid "_Particle Trace..." -msgstr "" +msgstr "Слід _частинки..." #: ../plug-ins/script-fu/scripts/text-circle.scm.h:2 msgid "Antialias" msgstr "Згладжування" #: ../plug-ins/script-fu/scripts/text-circle.scm.h:3 -#, fuzzy msgid "Fill angle" msgstr "Заповнити кут" #: ../plug-ins/script-fu/scripts/text-circle.scm.h:9 -#, fuzzy msgid "Text Circle..." -msgstr "Коло" +msgstr "Текст по колу..." #: ../plug-ins/script-fu/scripts/textured-logo.scm.h:5 -#, fuzzy msgid "Ending blend" msgstr "Завершення змішування" @@ -2575,7 +2338,6 @@ msgstr "Шестикутники" #: ../plug-ins/script-fu/scripts/textured-logo.scm.h:9 -#, fuzzy msgid "Mosaic tile type" msgstr "Тип елементу мозаїки" @@ -2588,31 +2350,26 @@ msgstr "Квадрати" #: ../plug-ins/script-fu/scripts/textured-logo.scm.h:13 -#, fuzzy msgid "Starting blend" msgstr "Початок змішування" #: ../plug-ins/script-fu/scripts/textured-logo.scm.h:15 -#, fuzzy msgid "Text pattern" msgstr "Візерунок для тексту" #: ../plug-ins/script-fu/scripts/textured-logo.scm.h:16 msgid "_Textured..." -msgstr "" +msgstr "_Текстура..." #: ../plug-ins/script-fu/scripts/tileblur.scm.h:1 -#, fuzzy msgid "Blur horizontally" msgstr "Розмити горизонтально" #: ../plug-ins/script-fu/scripts/tileblur.scm.h:2 -#, fuzzy msgid "Blur type" msgstr "Тип розмивання" #: ../plug-ins/script-fu/scripts/tileblur.scm.h:3 -#, fuzzy msgid "Blur vertically" msgstr "Розмити вертикально" @@ -2625,36 +2382,32 @@ msgstr "RLE" #: ../plug-ins/script-fu/scripts/tileblur.scm.h:7 -#, fuzzy msgid "_Tileable Blur..." -msgstr "/Фільтри/Розмивання/Розмивання _кромки..." +msgstr "Розмивання _кромки..." #: ../plug-ins/script-fu/scripts/title-header.scm.h:6 msgid "Web Title Header..." -msgstr "" +msgstr "Заголовок веб-сторінки..." #: ../plug-ins/script-fu/scripts/truchet.scm.h:4 -#, fuzzy msgid "Foreground color" msgstr "Колір переднього плану" #: ../plug-ins/script-fu/scripts/truchet.scm.h:7 msgid "T_ruchet..." -msgstr "" +msgstr "Т_руше..." #: ../plug-ins/script-fu/scripts/unsharp-mask.scm.h:2 -#, fuzzy msgid "Mask opacity" msgstr "Непрозорість маски" #: ../plug-ins/script-fu/scripts/unsharp-mask.scm.h:3 -#, fuzzy msgid "Mask size" msgstr "Розмір маски" #: ../plug-ins/script-fu/scripts/unsharp-mask.scm.h:4 msgid "_Unsharp Mask..." -msgstr "" +msgstr "_Нерізка маска..." #: ../plug-ins/script-fu/scripts/waves-anim.scm.h:2 msgid "Amplitude" @@ -2670,560 +2423,88 @@ #: ../plug-ins/script-fu/scripts/waves-anim.scm.h:6 msgid "_Waves..." -msgstr "" +msgstr "Х_вилі..." #: ../plug-ins/script-fu/scripts/weave.scm.h:2 -#, fuzzy msgid "Ribbon spacing" msgstr "Інтервал стрічки" #: ../plug-ins/script-fu/scripts/weave.scm.h:3 -#, fuzzy msgid "Ribbon width" msgstr "Ширина стрічки" #: ../plug-ins/script-fu/scripts/weave.scm.h:4 -#, fuzzy msgid "Shadow darkness" msgstr "Темність тіні" #: ../plug-ins/script-fu/scripts/weave.scm.h:5 -#, fuzzy msgid "Shadow depth" msgstr "Глибина тіні" #: ../plug-ins/script-fu/scripts/weave.scm.h:6 -#, fuzzy msgid "Thread density" msgstr "Щільність нитки" #: ../plug-ins/script-fu/scripts/weave.scm.h:7 -#, fuzzy msgid "Thread intensity" msgstr "Інтенсивність нитки" #: ../plug-ins/script-fu/scripts/weave.scm.h:8 -#, fuzzy msgid "Thread length" msgstr "Довжина нитки" #: ../plug-ins/script-fu/scripts/weave.scm.h:9 msgid "_Weave..." -msgstr "" +msgstr "_Хвилі..." #: ../plug-ins/script-fu/scripts/web-browser.scm.h:1 -#, fuzzy msgid "/Help/The GIMP Online" -msgstr "/Довідка/Веб/_Офіційний сайт" +msgstr "/Довідка/GIMP у _мережі" #: ../plug-ins/script-fu/scripts/web-browser.scm.h:2 msgid "Plug-in _Registry" -msgstr "" +msgstr "_Реєстр доповнень" #: ../plug-ins/script-fu/scripts/web-browser.scm.h:3 msgid "_Developer Web Site" -msgstr "" +msgstr "_Веб-сторінка розробників" #: ../plug-ins/script-fu/scripts/web-browser.scm.h:4 msgid "_Main Web Site" -msgstr "" +msgstr "_Головна веб-сторінка" #: ../plug-ins/script-fu/scripts/xach-effect.scm.h:2 -#, fuzzy msgid "Drop shadow X offset" msgstr "Зсув тіні по X" #: ../plug-ins/script-fu/scripts/xach-effect.scm.h:3 -#, fuzzy msgid "Drop shadow Y offset" msgstr "Зсув тіні по Y" #: ../plug-ins/script-fu/scripts/xach-effect.scm.h:4 -#, fuzzy msgid "Drop shadow blur radius" msgstr "Радіус розмивання тіні" #: ../plug-ins/script-fu/scripts/xach-effect.scm.h:5 -#, fuzzy msgid "Drop shadow color" msgstr "Колір тіні" #: ../plug-ins/script-fu/scripts/xach-effect.scm.h:6 -#, fuzzy msgid "Drop shadow opacity" msgstr "Непрозорість тіні" #: ../plug-ins/script-fu/scripts/xach-effect.scm.h:7 -#, fuzzy msgid "Highlight X offset" msgstr "Зсув відблисків по X" #: ../plug-ins/script-fu/scripts/xach-effect.scm.h:8 -#, fuzzy msgid "Highlight Y offset" msgstr "Зсув відблисків по Y" #: ../plug-ins/script-fu/scripts/xach-effect.scm.h:10 -#, fuzzy msgid "Highlight opacity" msgstr "Непрозорість відблисків" #: ../plug-ins/script-fu/scripts/xach-effect.scm.h:12 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 "/Розш./Скрипт-Фу/_Оновити сценарії" - -#~ msgid "/Script-Fu/Alpha to Logo/3D _Outline..." -#~ msgstr "/Скрипт-Фу/Альфа-канал у емблему/О_б'ємний контур..." - -#~ msgid "/Xtns/Script-Fu/Logos/3D _Outline..." -#~ msgstr "/Розш./Скрипт-Фу/Емблеми/О_б'ємний контур..." - -#~ msgid "/Xtns/Script-Fu/Patterns/3_D Truchet..." -#~ msgstr "/Розш./Скрипт-Фу/Візерунки/_Об'ємний труше..." - -#~ msgid "/Script-Fu/Decor/Add B_evel..." -#~ msgstr "/Скрипт-Фу/Декор/Додати _фаску..." - -#~ msgid "/Script-Fu/Decor/Add _Border..." -#~ msgstr "/Скрипт-Фу/Декор/Додати _рамку..." - -#~ msgid "/Xtns/Script-Fu/Web Page Themes/Alien Glow/_Arrow..." -#~ msgstr "/Розш./Теми веб-сторінок/Чуже сяйво/_Стрілка..." - -#~ msgid "/Xtns/Script-Fu/Web Page Themes/Alien Glow/_Bullet..." -#~ msgstr "/Розш./Теми веб-сторінок/Чуже сяйво/_Маркер..." - -#~ msgid "/Xtns/Script-Fu/Web Page Themes/Alien Glow/B_utton..." -#~ msgstr "/Розш./Теми веб-сторінок/Чуже сяйво/_Кнопка..." - -#~ msgid "/Script-Fu/Alpha to Logo/Alien _Glow..." -#~ msgstr "/Скрипт-Фу/Альфа у емблему/_Чуже сяйво..." - -#~ msgid "/Xtns/Script-Fu/Logos/Alien _Glow..." -#~ msgstr "/Розш./Скрипт-Фу/Емблеми/_Чуже сяйво..." - -#~ msgid "/Script-Fu/Alpha to Logo/Alien _Neon..." -#~ msgstr "/Скрипт-Фу/Альфа у емблему/Чу_жий неон..." - -#~ msgid "/Xtns/Script-Fu/Logos/Alien _Neon..." -#~ msgstr "/Розш./Скрипт-Фу/Емблеми/Чу_жий неон..." - -#~ msgid "/Xtns/Script-Fu/Utils/_ASCII to Image..." -#~ msgstr "/Розш./Скрипт-Фу/Утиліти/_ASCII у зображення..." - -#~ msgid "/Script-Fu/Alpha to Logo/_Basic I..." -#~ msgstr "/Скрипт-Фу/Альфа у емблему/Основа I..." - -#~ msgid "/Xtns/Script-Fu/Logos/_Basic I..." -#~ msgstr "/Розш./Скрипт-Фу/Емблеми/Основа I..." - -#~ msgid "/Script-Fu/Alpha to Logo/B_asic II..." -#~ msgstr "/Скрипт-Фу/Альфа у емблему/Основа II..." - -#~ msgid "/Xtns/Script-Fu/Logos/B_asic II..." -#~ msgstr "/Розш./Скрипт-Фу/Емблеми/Основа II..." - -#~ msgid "/Xtns/Script-Fu/Web Page Themes/Beveled Pattern/_Bullet..." -#~ msgstr "/Розш./Теми веб-сторінок/Опуклий візерунок/_Маркер..." - -#~ msgid "/Xtns/Script-Fu/Web Page Themes/Beveled Pattern/B_utton..." -#~ msgstr "/Розш./Теми веб-сторінок/Опуклий візерунок/_Кнопка..." - -#~ msgid "/Xtns/Script-Fu/Web Page Themes/Beveled Pattern/H_eading..." -#~ msgstr "/Розш./Теми веб-сторінок/Опуклий візерунок/_Заголовок..." - -#~ msgid "/Xtns/Script-Fu/Web Page Themes/Beveled Pattern/_Hrule..." -#~ msgstr "" -#~ "/Розш./Теми веб-сторінок/Опуклий візерунок/_Горизонтальна " -#~ "лінійка..." - -#~ msgid "/Script-Fu/Alpha to Logo/Blen_ded..." -#~ msgstr "/Скрипт-Фу/Альфа у емблему/_Градієнтна..." - -#~ msgid "/Xtns/Script-Fu/Logos/Blen_ded..." -#~ msgstr "/Розш./Скрипт-Фу/Емблеми/_Градієнтна..." - -#~ msgid "/Script-Fu/Alpha to Logo/Bo_vination..." -#~ msgstr "/Скрипт-Фу/Альфа у емблему/_Плямиста корова..." - -#~ msgid "/Xtns/Script-Fu/Logos/Bo_vination..." -#~ msgstr "/Розш./Скрипт-Фу/Емблеми/_Плямиста корова..." - -#~ msgid "/Script-Fu/Animators/B_urn-In..." -#~ msgstr "/Скрипт-Фу/Аніматори/_Плавний перехід..." - -#~ msgid "Burn-in like effect on a fg (text) layer and a bg layer; V2.1" -#~ msgstr "" -#~ "Ефект \"Плавний перехід\" на шар переднього плану (текст) та шар тла; V2.1" - -#~ msgid "/Xtns/Script-Fu/Patterns/_Camouflage..." -#~ msgstr "/Розш./Скрипт-Фу/Візерунки/_Камуфляж..." - -#~ msgid "/Xtns/Script-Fu/Logos/Carved..." -#~ msgstr "/Розш./Скрипт-Фу/Емблеми/Різьба..." - -#~ msgid "/Script-Fu/Alpha to Logo/_Chalk..." -#~ msgstr "/Скрипт-Фу/Альфа у емблему/К_рейда..." - -#~ msgid "/Xtns/Script-Fu/Logos/_Chalk..." -#~ msgstr "/Розш./Скрипт-Фу/Емблеми/К_рейда..." - -#~ msgid "/Script-Fu/Alpha to Logo/Chip Awa_y..." -#~ msgstr "/Скрипт-Фу/Альфа у емблему/_Осколки..." - -#~ msgid "/Xtns/Script-Fu/Logos/Chip Awa_y..." -#~ msgstr "/Розш./Скрипт-Фу/Емблеми/_Осколки..." - -#~ msgid "/Script-Fu/Stencil Ops/C_hrome-It..." -#~ msgstr "/Скрипт-Фу/Параметри трафарету/_Хромувати..." - -#~ msgid "/Script-Fu/Alpha to Logo/C_hrome..." -#~ msgstr "/Скрипт-Фу/Альфа у емблему/_Хром..." - -#~ msgid "/Xtns/Script-Fu/Logos/C_hrome..." -#~ msgstr "/Розш./Скрипт-Фу/Емблеми/_Хром..." - -#~ msgid "/Script-Fu/Render/_Circuit..." -#~ msgstr "/Скрипт-Фу/Візуалізація/Друкована _плата..." - -#~ msgid "/Script-Fu/Alchemy/_Clothify..." -#~ msgstr "/Скрипт-Фу/Алхімія/_Полотнина..." - -#~ msgid "/Script-Fu/Decor/_Coffee Stain..." -#~ msgstr "/Скрипт-Фу/Декор/_Кавова пляма..." - -#~ msgid "/Script-Fu/Alpha to Logo/Comic Boo_k..." -#~ msgstr "/Скрипт-Фу/Альфа у емблему/_Комікс..." - -#~ msgid "/Xtns/Script-Fu/Logos/Comic Boo_k..." -#~ msgstr "/Розш./Скрипт-Фу/Емблеми/_Комікс..." - -#~ msgid "/Script-Fu/Alpha to Logo/Cool _Metal..." -#~ msgstr "/Скрипт-Фу/Альфа у емблему/Холодний м_етал..." - -#~ msgid "/Xtns/Script-Fu/Logos/Cool _Metal..." -#~ msgstr "/Розш./Скрипт-Фу/Емблеми/Холодний м_етал..." - -#, fuzzy -#~ msgid "/Edit/Copy/Copy _Visible" -#~ msgstr "/Правка/Копіювати в_идиме" - -#~ msgid "/Xtns/Script-Fu/Logos/Crystal..." -#~ msgstr "/Розш./Скрипт-Фу/Емблеми/Кришталь..." - -#~ msgid "/Script-Fu/Selection/_Fade Outline..." -#~ msgstr "/Скрипт-Фу/Виділення/З_гасання поза контуром..." - -#~ msgid "/Xtns/Script-Fu/Patterns/_Flatland..." -#~ msgstr "/Розш./Скрипт-Фу/Візерунки/_Плоска земля..." - -#~ msgid "/Xtns/Script-Fu/Utils/_Font Map..." -#~ msgstr "/Розш./Скрипт-Фу/Утиліти/Мапа _шрифтів..." - -#~ msgid "/Script-Fu/Alpha to Logo/_Frosty..." -#~ msgstr "/Скрипт-Фу/Альфа у емблему/_Морозна..." - -#~ msgid "/Xtns/Script-Fu/Logos/_Frosty..." -#~ msgstr "/Розш./Скрипт-Фу/Емблеми/_Морозна..." - -#~ msgid "/Script-Fu/Decor/_Fuzzy Border..." -#~ msgstr "/Скрипт-Фу/Декор/_Нечіткі краї..." - -#, fuzzy -#~ msgid "" -#~ "/Xtns/Script-Fu/Web Page Themes/Classic.Gimp.Org/_Small Header..." -#~ msgstr "/Розш./Теми веб-сторінок/Gimp.Org/_Малий заголовок..." - -#, fuzzy -#~ msgid "" -#~ "/Xtns/Script-Fu/Web Page Themes/Classic.Gimp.Org/T_ube Sub-" -#~ "Button Label..." -#~ msgstr "" -#~ "/Розш./Теми веб-сторінок/Gimp.Org/_Позначки дод.кнопок труби..." - -#, fuzzy -#~ msgid "" -#~ "/Xtns/Script-Fu/Web Page Themes/Classic.Gimp.Org/Tub_e Sub-Sub-" -#~ "Button Label..." -#~ msgstr "" -#~ "/Розш./Теми веб-сторінок/Gimp.Org/_Двічі вкладені кнопки..." - -#, fuzzy -#~ msgid "" -#~ "/Xtns/Script-Fu/Web Page Themes/Classic.Gimp.Org/_General Tube " -#~ "Labels..." -#~ msgstr "" -#~ "/Розш./Теми веб-сторінок/Gimp.Org/Позначки _головної труби..." - -#, fuzzy -#~ msgid "" -#~ "/Xtns/Script-Fu/Web Page Themes/Classic.Gimp.Org/_Tube Button " -#~ "Label..." -#~ msgstr "" -#~ "/Розш./Теми веб-сторінок/Gimp.Org/Позначка кнопки _труби..." - -#~ msgid "/Script-Fu/Alpha to Logo/Glo_ssy..." -#~ msgstr "/Скрипт-Фу/Альфа у емблему/Г_лянцева..." - -#~ msgid "/Xtns/Script-Fu/Logos/Glo_ssy..." -#~ msgstr "/Розш./Скрипт-Фу/Емблеми/Г_лянцева..." - -#, fuzzy -#~ msgid "Use tattern for outline instead of gradient" -#~ msgstr "Використовувати для контуру візерунок замість градієнту" - -#~ msgid "/Script-Fu/Alpha to Logo/Glo_wing Hot..." -#~ msgstr "/Скрипт-Фу/Альфа у емблему/Г_аряче сяйво..." - -#~ msgid "/Xtns/Script-Fu/Logos/Glo_wing Hot..." -#~ msgstr "/Розш./Скрипт-Фу/Емблеми/Г_аряче сяйво..." - -#~ msgid "/Script-Fu/Alpha to Logo/Gradient Beve_l..." -#~ msgstr "/Скрипт-Фу/Альфа у емблему/Оп_уклий градієнт..." - -#~ msgid "/Xtns/Script-Fu/Logos/Gradient Beve_l..." -#~ msgstr "/Розш./Скрипт-Фу/Емблеми/Оп_уклий градієнт..." - -#~ msgid "/Xtns/Script-Fu/Utils/Custom _Gradient..." -#~ msgstr "/Розш./Скрипт-Фу/Утиліти/Користувацький _градієнт..." - -#~ msgid "/Script-Fu/Render/_Grid..." -#~ msgstr "/Скрипт-Фу/Візуалізація/С_ітка..." - -#~ msgid "/Xtns/Script-Fu/Logos/Imigre-26..." -#~ msgstr "/Розш./Скрипт-Фу/Емблеми/Imigre-26..." - -#~ msgid "/Script-Fu/Render/Line _Nova..." -#~ msgstr "/Скрипт-Фу/Візуалізація/Лінійна _нова..." - -#~ msgid "/Xtns/Script-Fu/Make Brush/Elli_ptical, Feathered..." -#~ msgstr "/Розш./Скрипт-Фу/Створити пензель/Е_ліптичний розмитий..." - -#~ msgid "/Xtns/Script-Fu/Make Brush/Re_ctangular, Feathered..." -#~ msgstr "/Розш./Скрипт-Фу/Створити пензель/П_рямокутний розмитий..." - -#~ msgid "/Xtns/Script-Fu/Make Brush/_Rectangular..." -#~ msgstr "/Розш./Скрипт-Фу/Створити пензель/_Прямокутний..." - -#~ msgid "/Xtns/Script-Fu/Logos/N_eon..." -#~ msgstr "/Розш./Скрипт-Фу/Емблеми/_Неон..." - -#~ msgid "/Xtns/Script-Fu/Logos/Newsprint Text..." -#~ msgstr "/Розш./Скрипт-Фу/Емблеми/Газетний текст..." - -#~ msgid "/Script-Fu/Decor/_Old Photo..." -#~ msgstr "/Скрипт-Фу/Декор/Старе ф_ото..." - -#~ msgid "/Script-Fu/Shadow/_Perspective..." -#~ msgstr "/Скрипт-Фу/Тінь/_Перспектива..." - -#~ msgid "/Script-Fu/Alchemy/_Predator..." -#~ msgstr "/Скрипт-Фу/Алхімія/_Хижак..." - -#~ msgid "/Xtns/Script-Fu/Buttons/_Round Button..." -#~ msgstr "/Розш./Скрипт-Фу/Кнопки/_Кругла кнопка..." - -#~ msgid "/Xtns/Script-Fu/Patterns/Render _Map..." -#~ msgstr "/Розш./Скрипт-Фу/Візерунки/Візуалізація _мапи..." - -#~ msgid "/Script-Fu/Animators/_Rippling..." -#~ msgstr "/Скрипт-Фу/Аніматори/_Брижі..." - -#~ msgid "/Script-Fu/Decor/_Round Corners..." -#~ msgstr "/Скрипт-Фу/Декор/_Закруглені кути..." - -#~ msgid "/Script-Fu/Selection/To _Brush..." -#~ msgstr "/Скрипт-Фу/Виділення/У _пензель..." - -#~ msgid "/Script-Fu/Selection/To _Pattern..." -#~ msgstr "/Скрипт-Фу/Виділення/У _візерунок..." - -#~ msgid "/Xtns/Script-Fu/Logos/SOTA Chrome..." -#~ msgstr "/Розш./Скрипт-Фу/Емблеми/SOTA Хром..." - -#~ msgid "/Xtns/Script-Fu/Logos/Speed Text..." -#~ msgstr "/Розш./Скрипт-Фу/Емблеми/Швидкісний текст..." - -#~ msgid "/Xtns/Script-Fu/Misc/_Sphere..." -#~ msgstr "/Розш./Скрипт-Фу/Різне/_Сфера..." - -#~ msgid "/Script-Fu/Animators/_Spinning Globe..." -#~ msgstr "/Скрипт-Фу/Аніматори/_Куля, що обертається..." - -#~ msgid "/Script-Fu/Render/_Spyrogimp..." -#~ msgstr "/Скрипт-Фу/Візуалізація/_Спірограф..." - -#~ msgid "/Script-Fu/Alpha to Logo/Starb_urst..." -#~ msgstr "/Скрипт-Фу/Альфа у емблему/_Спалах зірки..." - -#~ msgid "/Xtns/Script-Fu/Logos/Starb_urst..." -#~ msgstr "/Розш./Скрипт-Фу/Емблеми/_Спалах зірки..." - -#~ msgid "/Script-Fu/Alpha to Logo/Sta_rscape..." -#~ msgstr "/Скрипт-Фу/Альфа у емблему/_Зоряне тло..." - -#~ msgid "/Xtns/Script-Fu/Logos/Sta_rscape..." -#~ msgstr "/Розш./Скрипт-Фу/Емблеми/_Зоряне тло..." - -#~ msgid "/Xtns/Script-Fu/Patterns/Swirl-_Tile..." -#~ msgstr "/Розш./Скрипт-Фу/Візерунки/_Вир..." - -#~ msgid "/Xtns/Script-Fu/Patterns/_Swirly..." -#~ msgstr "/Розш./Скрипт-Фу/Візерунки/_Узор..." - -#~ msgid "/Script-Fu/Alpha to Logo/_Particle Trace..." -#~ msgstr "/Скрипт-Фу/Альфа у емблему/Слід _частинки..." - -#~ msgid "/Xtns/Script-Fu/Logos/_Particle Trace..." -#~ msgstr "/Розш./Скрипт-Фу/Емблеми/Слід _частинки..." - -#~ msgid "/Xtns/Script-Fu/Logos/Text Circle..." -#~ msgstr "/Розш./Скрипт-Фу/Емблеми/Текст по колу..." - -#~ msgid "/Script-Fu/Alpha to Logo/_Textured..." -#~ msgstr "/Скрипт-Фу/Альфа у емблему/_Текстура..." - -#~ msgid "/Xtns/Script-Fu/Logos/_Textured..." -#~ msgstr "/Розш./Скрипт-Фу/Емблеми/_Текстура..." - -#~ msgid "/Xtns/Script-Fu/Logos/Web Title Header..." -#~ msgstr "/Розш./Скрипт-Фу/Емблеми/Заголовок WWW-сторінки..." - -#~ msgid "/Xtns/Script-Fu/Patterns/T_ruchet..." -#~ msgstr "/Розш./Скрипт-Фу/Візерунки/Т_руше..." - -#~ msgid "/Script-Fu/Alchemy/_Unsharp Mask..." -#~ msgstr "/Скрипт-Фу/Алхімія/_Нерізка маска..." - -#~ msgid "/Script-Fu/Animators/_Waves..." -#~ msgstr "/Скрипт-Фу/Аніматори/_Хвилі..." - -#~ msgid "/Help/The GIMP Online/Plug-in _Registry" -#~ msgstr "/Довідка/Веб/_Реєстр доповнень" - -#~ msgid "/Help/The GIMP Online/_Developer Web Site" -#~ msgstr "/Довідка/Веб/_Сайт розробників" - -#~ msgid "/Script-Fu/Shadow/_Xach-Effect..." -#~ msgstr "/Скрипт-Фу/Тінь/Xach-ефект..." - -#~ msgid "Re-read all available scripts" -#~ msgstr "Перечитати усі наявні сценарії" - -#~ msgid "" -#~ "\n" -#~ "\t\t SF-ADJUSTMENT _" -#~ msgstr "" -#~ "\n" -#~ "\t\t SF-ADJUSTMENT _" - -#~ msgid "" -#~ "\n" -#~ "\t\t SF-COLOR _" -#~ msgstr "" -#~ "\n" -#~ "\t\t SF-COLOR _" - -#, fuzzy -#~ msgid "Relative radius" -#~ msgstr "Відносний радіус" - -#, fuzzy -#~ msgid "_About" -#~ msgstr "Про програму" - -#~ msgid "DB Browser" -#~ msgstr "Перегляд бази даних..." - -#~ msgid "Blurb:" -#~ msgstr "Анотація:" - -#~ msgid "In:" -#~ msgstr "У:" - -#~ msgid "Out:" -#~ msgstr "З:" - -#~ msgid "Help:" -#~ msgstr "Довідка:" - -#~ msgid "Font Size (pixels)" -#~ msgstr "Розмір шрифту (у точках)" - -#~ msgid "Text Color" -#~ msgstr "Колір тексту" - -#~ msgid "Transparent Background" -#~ msgstr "Прозоре тло" - -#~ msgid "" -#~ ")))\n" -#~ " (filename (string-append data-dir\n" -#~ "\t\t\t " -#~ msgstr "" -#~ ")))\n" -#~ " (filename (string-append data-dir\n" -#~ "\t\t\t " - -#~ msgid "" -#~ ")))\n" -#~ " (filename (string-append data-dir\n" -#~ " " -#~ msgstr "" -#~ ")))\n" -#~ " (filename (string-append data-dir\n" -#~ " " - -#~ msgid "" -#~ ")))\n" -#~ " (filename (string-append data-dir\n" -#~ " " -#~ msgstr "" -#~ ")))\n" -#~ " (filename (string-append data-dir\n" -#~ " " - -#~ msgid "" -#~ ")))\n" -#~ " (set! filename2 (string-append data-dir\n" -#~ "\t\t\t\t " -#~ msgstr "" -#~ ")))\n" -#~ " (set! filename2 (string-append data-dir\n" -#~ "\t\t\t\t " - -#~ msgid "" -#~ ")))\n" -#~ " (set! filename2 (string-append data-dir\n" -#~ "\t\t\t\t " -#~ msgstr "" -#~ ")))\n" -#~ " (set! filename2 (string-append data-dir\n" -#~ "\t\t\t\t " - -#~ msgid "Unable to open a stream on the SIOD output pipe" -#~ msgstr "Не вдається відкрити потік на каналі виводу SIOD" - -#~ msgid "Unable to open the SIOD output pipe" -#~ msgstr "Не вдається відкрити канал виводу SIOD" - -#, fuzzy -#~ msgid "Blend gradient (sext)" -#~ msgstr "Градієнт (текст)" - -#~ msgid "/Xtns/Script-Fu/Script-Fu _Console" -#~ msgstr "/Розш./Скрипт-Фу/_Консоль Скрипт-Фу..." - -#~ msgid "/Xtns/Script-Fu/_Start Server..." -#~ msgstr "/Розш./Скрипт-Фу/_Сервер..." +msgstr "_Xach-ефект..." diff -uraN gimp-2.2.4/po-script-fu/vi.gmo gimp-2.2.5/po-script-fu/vi.gmo --- gimp-2.2.4/po-script-fu/vi.gmo 2005-02-22 23:12:54.000000000 +0100 +++ gimp-2.2.5/po-script-fu/vi.gmo 2005-04-09 23:09:42.000000000 +0200 @@ -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: 2005-02-22 23:04+0100 +POT-Creation-Date: 2005-04-09 21:56+0200 PO-Revision-Date: 2002-07-20 15:36+0700 Last-Translator: Trinh Minh Thanh Language-Team: Gnome-Vi Team diff -uraN gimp-2.2.4/po-script-fu/vi.po gimp-2.2.5/po-script-fu/vi.po --- gimp-2.2.4/po-script-fu/vi.po 2005-02-22 23:12:52.000000000 +0100 +++ gimp-2.2.5/po-script-fu/vi.po 2005-04-09 23:09:40.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: Gimp-scriptfu for Gnome 2.x\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-02-22 23:04+0100\n" +"POT-Creation-Date: 2005-04-09 21:56+0200\n" "PO-Revision-Date: 2002-07-20 15:36+0700\n" "Last-Translator: Trinh Minh Thanh \n" "Language-Team: Gnome-Vi Team \n" @@ -134,7 +134,7 @@ msgid "Image Types:" msgstr "Kiểu Ảnh:" -#: ../plug-ins/script-fu/script-fu-scripts.c:611 +#: ../plug-ins/script-fu/script-fu-scripts.c:622 #, fuzzy, c-format msgid "" "Error while executing\n" diff -uraN gimp-2.2.4/po-script-fu/yi.gmo gimp-2.2.5/po-script-fu/yi.gmo --- gimp-2.2.4/po-script-fu/yi.gmo 2005-02-22 23:12:54.000000000 +0100 +++ gimp-2.2.5/po-script-fu/yi.gmo 2005-04-09 23:09:42.000000000 +0200 @@ -7,7 +7,7 @@ *3     Author:ColorColumnsFilenameFontHeightLeftOrientationPaddingPatternRightRowsSizeSpacingTextWidthWrapProject-Id-Version: 1.0 Report-Msgid-Bugs-To: -POT-Creation-Date: 2005-02-22 23:04+0100 +POT-Creation-Date: 2005-04-09 21:56+0200 PO-Revision-Date: 2003-03-19 Last-Translator: Raphael Finkel Language-Team: Yiddish diff -uraN gimp-2.2.4/po-script-fu/yi.po gimp-2.2.5/po-script-fu/yi.po --- gimp-2.2.4/po-script-fu/yi.po 2005-02-22 23:12:52.000000000 +0100 +++ gimp-2.2.5/po-script-fu/yi.po 2005-04-09 23:09:40.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: 1.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-02-22 23:04+0100\n" +"POT-Creation-Date: 2005-04-09 21:56+0200\n" "PO-Revision-Date: 2003-03-19\n" "Last-Translator: Raphael Finkel \n" "Language-Team: Yiddish \n" @@ -131,7 +131,7 @@ msgid "Image Types:" msgstr "" -#: ../plug-ins/script-fu/script-fu-scripts.c:611 +#: ../plug-ins/script-fu/script-fu-scripts.c:622 #, c-format msgid "" "Error while executing\n" diff -uraN gimp-2.2.4/po-script-fu/zh_CN.gmo gimp-2.2.5/po-script-fu/zh_CN.gmo --- gimp-2.2.4/po-script-fu/zh_CN.gmo 2005-02-22 23:12:54.000000000 +0100 +++ gimp-2.2.5/po-script-fu/zh_CN.gmo 2005-04-09 23:09:42.000000000 +0200 @@ -46,7 +46,7 @@ %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._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: 2005-02-22 23:04+0100 +POT-Creation-Date: 2005-04-09 21:56+0200 PO-Revision-Date: 2004-11-24 19:30+0800 Last-Translator: Yuheng Xie Language-Team: zh_CN diff -uraN gimp-2.2.4/po-script-fu/zh_CN.po gimp-2.2.5/po-script-fu/zh_CN.po --- gimp-2.2.4/po-script-fu/zh_CN.po 2005-02-22 23:12:52.000000000 +0100 +++ gimp-2.2.5/po-script-fu/zh_CN.po 2005-04-09 23:09:40.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: gimp-script-fu\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-02-22 23:04+0100\n" +"POT-Creation-Date: 2005-04-09 21:56+0200\n" "PO-Revision-Date: 2004-11-24 19:30+0800\n" "Last-Translator: Yuheng Xie \n" "Language-Team: zh_CN \n" @@ -132,7 +132,7 @@ msgid "Image Types:" msgstr "图像类型:" -#: ../plug-ins/script-fu/script-fu-scripts.c:611 +#: ../plug-ins/script-fu/script-fu-scripts.c:622 #, c-format msgid "" "Error while executing\n" diff -uraN gimp-2.2.4/po-script-fu/zh_TW.gmo gimp-2.2.5/po-script-fu/zh_TW.gmo --- gimp-2.2.4/po-script-fu/zh_TW.gmo 2005-02-22 23:12:54.000000000 +0100 +++ gimp-2.2.5/po-script-fu/zh_TW.gmo 2005-04-09 23:09:42.000000000 +0200 @@ -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: 2005-02-22 23:04+0100 +POT-Creation-Date: 2005-04-09 21:56+0200 PO-Revision-Date: 2004-09-28 11:10+0800 Last-Translator: Abel Cheung Language-Team: Chinese (traditional) diff -uraN gimp-2.2.4/po-script-fu/zh_TW.po gimp-2.2.5/po-script-fu/zh_TW.po --- gimp-2.2.4/po-script-fu/zh_TW.po 2005-02-22 23:12:52.000000000 +0100 +++ gimp-2.2.5/po-script-fu/zh_TW.po 2005-04-09 23:09:40.000000000 +0200 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: gimp-script-fu 2.1.6\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-02-22 23:04+0100\n" +"POT-Creation-Date: 2005-04-09 21:56+0200\n" "PO-Revision-Date: 2004-09-28 11:10+0800\n" "Last-Translator: Abel Cheung \n" "Language-Team: Chinese (traditional) \n" @@ -134,7 +134,7 @@ msgid "Image Types:" msgstr "影像類型:" -#: ../plug-ins/script-fu/script-fu-scripts.c:611 +#: ../plug-ins/script-fu/script-fu-scripts.c:622 #, c-format msgid "" "Error while executing\n" diff -uraN gimp-2.2.4/tips/ChangeLog gimp-2.2.5/tips/ChangeLog --- gimp-2.2.4/tips/ChangeLog 2005-02-21 14:15:08.000000000 +0100 +++ gimp-2.2.5/tips/ChangeLog 2005-04-01 12:21:12.000000000 +0200 @@ -1,3 +1,12 @@ +2005-03-31 Takeshi AIHANA + + * ja.po: Fixed a typo reported by + Aaron Madlon-Kay . + +2005-03-20 Ole Laursen + + * da.po: Updated Danish translation. + 2005-02-18 Sven Neumann * Makefile.am (tips_POFILES): added bg.po. diff -uraN gimp-2.2.4/tips/da.po gimp-2.2.5/tips/da.po --- gimp-2.2.4/tips/da.po 2005-02-22 23:05:06.000000000 +0100 +++ gimp-2.2.5/tips/da.po 2005-04-09 22:38:10.000000000 +0200 @@ -1,6 +1,6 @@ # Danish translation of GIMP tips. -# Copyright (C) 2002, 03, 04 Free Software Foundation, Inc. -# Ole Laursen , 2002, 03, 04. +# Copyright (C) 2002, 03, 04, 05 Free Software Foundation, Inc. +# Ole Laursen , 2002, 03, 04, 05. # # Se ../po/da.po for en liste over konventioner i Gimp'en. # @@ -9,7 +9,7 @@ "Project-Id-Version: GIMP tips\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2004-12-18 00:46+0100\n" -"PO-Revision-Date: 2004-03-08 18:56+0100\n" +"PO-Revision-Date: 2005-03-20 13:43+0100\n" "Last-Translator: Ole Laursen \n" "Language-Team: Danish \n" "MIME-Version: 1.0\n" @@ -17,7 +17,6 @@ "Content-Transfer-Encoding: 8bit\n" #: tips/gimp-tips.xml.in.h:1 -#, fuzzy msgid "Welcome to the GIMP!" msgstr "Velkommen til Gimp'en!" @@ -62,7 +61,6 @@ "alle lag pånær dette. Et klik igen viser alle lag." #: tips/gimp-tips.xml.in.h:7 -#, fuzzy msgid "" "A floating selection must be anchored to a new layer or to the last active " "layer before doing other operations on the image. Click on the "New " @@ -70,13 +68,12 @@ "use the menus to do the same." msgstr "" "En flydende markering skal forankres til et nyt lag eller det sidste aktive " -"lag før der kan foretages andre operationer på billedet. Klik på \"Nyt lag" -"\"- eller \"Forankr lag\"-knapperne i lagvinduet eller brug menuerne til at " -"gøre det samme." +"lag før der kan foretages andre operationer på billedet. Klik på "Nyt " +"lag"- eller "Forankr lag"-knappen i lagvinduet eller brug " +"menuerne til at gøre det samme." # mon ikke 'dynamic' dækker over noget i retning af det skrevne #: tips/gimp-tips.xml.in.h:8 -#, fuzzy msgid "" "After you enabled "Dynamic Keyboard Shortcuts" in the Preferences " "dialog, you can reassign shortcut keys. Do so by bringing up the menu, " @@ -84,34 +81,34 @@ "Save Keyboard Shortcuts" is enabled, the key bindings are saved when " "you exit GIMP." msgstr "" -"Hvis du aktiverer \"Dynamiske tastegenveje\" under indstillingerne, kan du " -"omdefinere genvejstaster i menuerne. Bring en menu frem, peg på et menupunkt " -"og tryk den ønskede tastekombination. Genvejen bliver gemt når du afslutter " -"Gimp'en hvis \"Gem tastegenveje\" er aktiveret." +"Hvis du aktiverer "Dynamiske tastegenvejerne" under " +"indstillingerne, kan du omdefinere genvejstaster i menuerne. Bring en menu " +"frem, peg på et menupunkt og tryk den ønskede tastekombination. Genvejen " +"bliver gemt når du afslutter Gimp'en hvis rne"Gem tastegenveje" er " +"aktiveret." #: tips/gimp-tips.xml.in.h:9 -#, fuzzy msgid "" "Click and drag on a ruler to place a guide on an image. All dragged " "selections will snap to the guides. You can remove guides by dragging them " "off the image with the Move tool." msgstr "" "Klik og træk på en lineal for at placere en hjælpelinje i billedet. Alle " -"markeringer der bliver flyttet, vil så følge hjælpelinjerne. Du kan fjerne " +"markeringer som bliver flyttet, vil så følge hjælpelinjerne. Du kan fjerne " "linjerne igen ved at trække dem af billedet med flytteværktøjet." #: tips/gimp-tips.xml.in.h:10 -#, fuzzy msgid "" "If some of your scanned photos do not look colorful enough, you can easily " "improve their tonal range with the "Auto" button in the Levels " "tool (Layer->Colors->Levels). If there are any color casts, you can " "correct them with the Curves tool (Layer->Colors->Curves)." msgstr "" -"Hvis nogle af din indskannede foto ikke ser farverige nok ud, kan du let " -"forbedre deres farvetoneinterval med \"Auto\"-knappen i niveauværktøjet (Lag-" -">Farver->Niveauer). Hvis der er farveudblødninger, kan du rette dem " -"med kurveværktøjet (Lag->Farver->Kurver)." +"Hvis nogle af din indskannede fotografier ikke ser farverige nok ud, kan du " +"let forbedre deres farvetoneinterval med "Auto"-knappen i " +"niveauværktøjet (Lag->Farver->Niveauer). Hvis der er " +"farveudblødninger, kan du rette dem med kurveværktøjet (Lag->Farver->" +"Kurver)." #: tips/gimp-tips.xml.in.h:11 msgid "" @@ -144,7 +141,6 @@ "billedet." #: tips/gimp-tips.xml.in.h:14 -#, fuzzy msgid "" "Not all effects can be applied to all kinds of images. This is indicated by " "a grayed-out menu-entry. You may need to change the image mode to RGB (Image-" @@ -171,6 +167,8 @@ msgid "" "The GIMP can undo most changes to the image, so feel free to experiment." msgstr "" +"Gimp'en kan fortryde de fleste ændringer i et billede, så gå bare i gang med " +"at eksperimentere!" #: tips/gimp-tips.xml.in.h:17 msgid "" @@ -194,20 +192,18 @@ "du en bestemt sammensætning af deres indhold." #: tips/gimp-tips.xml.in.h:19 -#, fuzzy msgid "" "The layer named "Background" is special because it lacks " "transparency. This prevents you from moving the layer up in the stack. You " "may add transparency to it by right-clicking in the Layers dialog and " "selecting "Add Alpha Channel"." msgstr "" -"Laget ved navn \"Baggrund\" er specielt fordi det mangler gennemsigtighed. " -"Dette forhindrer dig i at tilføje en lagmaske eller hæve lageti stakken. Du " -"kan tilføje gennemsigtighed til det ved at højreklikke i lagvinduet og vælge " -"\"Tilføj alfakanal\"." +"Laget ved navn "Baggrund" er specielt fordi det mangler " +"gennemsigtighed. Dette forhindrer dig i at tilføje en lagmaske eller hæve " +"laget i stakken. Du kan tilføje gennemsigtighed til det ved at højreklikke i " +"lagvinduet og vælge "Tilføj alfakanal"." #: tips/gimp-tips.xml.in.h:20 -#, fuzzy msgid "" "To create a circle-shaped selection, hold Shift while doing an " "ellipse select. To place a circle precisely, drag horizontal and vertical " @@ -246,7 +242,6 @@ "projekt er færdigt, kan du gemme det som JPEG, PNG, GIF, ..." #: tips/gimp-tips.xml.in.h:23 -#, fuzzy msgid "" "You can adjust or move a selection by using Alt-drag. If this makes " "the window move, your window manager uses the Alt key already. Try " @@ -321,7 +316,6 @@ "et lag i lagvinduet." #: tips/gimp-tips.xml.in.h:31 -#, fuzzy msgid "" "You can press or release the Shift and Ctrl keys while you " "are making a selection in order to constrain it to a square or a circle, or " @@ -339,9 +333,9 @@ "selection." msgstr "" "Du kan gemme en markering som en kanel (Markering->Gem som kanal) og så " -"ændre denne kanal med maleværktøjerne. Ved hjælp af knapperne i \"Kanaler\"-" -"vinduet kan du slå synligheden af denne nye kanal til eller fra eller " -"konvertere den til en markering." +"ændre denne kanal med maleværktøjerne. Ved hjælp af knapperne i kanalvinduet " +"kan du slå synligheden af denne nye kanal til eller fra eller konvertere den " +"til en markering." #: tips/gimp-tips.xml.in.h:33 msgid "" @@ -360,7 +354,6 @@ "er større end dets fremvisningsvindue." #: tips/gimp-tips.xml.in.h:35 -#, fuzzy msgid "" "You can use the paint tools to change the selection. Click on the "" "Quick Mask" button at the bottom left of an image window. Change your " diff -uraN gimp-2.2.4/tips/gimp-tips.xml gimp-2.2.5/tips/gimp-tips.xml --- gimp-2.2.4/tips/gimp-tips.xml 2005-02-22 23:05:09.000000000 +0100 +++ gimp-2.2.5/tips/gimp-tips.xml 2005-04-09 22:38:13.000000000 +0200 @@ -23,6 +23,7 @@ Welcome to the GIMP! Benvingut al GIMP! Vítá vás GIMP! + Velkommen til Gimp'en! Willkommen bei The GIMP! Welcome to the GIMP! Welcome to the GIMP! @@ -38,10 +39,12 @@ Witaj w programie GIMP! Vitajte v programe GIMP! Välkommen till GIMP! + Ласкаво просимо до GIMP! 欢迎使用 GIMP! The GIMP can undo most changes to the image, so feel free to experiment. El GIMP pot desfer la majoria de canvis en la imatge, així que experimenteu quant vulgueu. GIMP může vrátit zpět většinu změn obráku, takže se nebojte experimentovat. + Gimp'en kan fortryde de fleste ændringer i et billede, så gå bare i gang med at eksperimentere! The GIMP kann die meisten Änderungen an einem Bild rückgänig machen - fühlen Sie sich also frei nach Belieben zu experimentieren. The GIMP can undo most changes to the image, so feel free to experiment. The GIMP can undo most changes to the image, so feel free to experiment. @@ -57,6 +60,7 @@ Program GIMP potrafi cofnąć większość operacji robionych na obrazie. Nie bój się więc eksperymentować. GIMP vie vrátiť späť väčšinu zmien na obrázku, a preto sa nebojte experimentovať. GIMP kan ångra de flesta ändringar i bilden, så experimentera gärna. + У GIMP можна скасувати більшість змін зображення, тому можете сміливо експериментувати. GIMP 可以撤销对图像所做的大多数修改,因此请放心尝试。 @@ -95,7 +99,7 @@ У сваком тренутку можете добити тренутну помоћ за већину особина у Гимпу ако притиснете тастер F1. Ова опција такође функционише и унутар менија. U svakom trenutku možete dobiti trenutnu pomoć za većinu osobina u Gimpu ako pritisnete taster F1. Ova opcija takođe funkcioniše i unutar menija. Du kan få sammanhangskänslig hjälp till de flesta av GIMP:s funktioner genom att när som helst trycka på F1-tangenten. Detta fungerar även inuti menyer. - Контекстну довідку для більшості функцій та меню GIMP можна викликати клавішею F1. + Контекстну довідку для більшості функцій та меню GIMP можна викликати клавішею F1. Це також працює у меню. 任何时候您只要按 F1 键就可以得到大多数的 GIMP 特性的上下文相关的帮助。这在菜单里面也可以。 您可以在任何時候按下 F1 來瀏覽相關功能的說明文件,即使在選單中也同樣適用。 @@ -161,7 +165,7 @@ Можете извести много операција над слојевима десним кликом на текстуалну ознаку слоја у прозорчету „Слојеви, канали и путање“. Možete izvesti mnogo operacija nad slojevima desnim klikom na tekstualnu oznaku sloja u prozorčetu „Slojevi, kanali i putanje“. Du kan utföra många lageråtgärder genom att högerklicka på textetiketten i ett lager i lagerdialogen. - Більшість операцій з шарами можна вибрати з контекстного меню, що відкривається при натисканні правої кнопки миші на назві шару у діалоговому вікні "Шари". + Більшість операцій з шарами можна вибрати з контекстного меню, що відкривається при натисканні правої кнопки миші на назві шару у діалоговому вікні "Шари". 您可以在图层对话框中右点图层的文本标签进行许多图层操作。 在「圖層」對話方塊中,在圖層名稱上按下右邊滑鼠按鈕,可以執行很多不同的圖層功能。 @@ -194,7 +198,7 @@ Када снимите неку слику да би касније наставили њену обрату, одаберите формат XCF, особени формат фајла за ГИМП (користите наставак .xcf). На овај начин ће слојеви и сви аспекти Ваше „обраде у току“ бити сачувани. Једном када завршите пројекат, можете га сачувати као JPEG, PNG, GIF, ... Kada snimite neku sliku da bi kasnije nastavili njenu obratu, odaberite format XCF, osobeni format fajla za GIMP (koristite nastavak .xcf). Na ovaj način će slojevi i svi aspekti Vaše „obrade u toku“ biti sačuvani. Jednom kada završite projekat, možete ga sačuvati kao JPEG, PNG, GIF, ... Prova att använda XCF, GIMP:s inbyggda filformat (använd filtillägget .xcf), då du sparar en bild för att arbeta med den senare. Detta bevarar lager och alla aspekter av ditt pågående arbete. När ett projekt väl är färdigt kan du spara det som JPEG, PNG, GIF, ... - Якщо ви бажаєте продовжити редагування зображення пізніше, збережіть його у форматі XCF. Це внутрішній формат GIMP (розширення файлів .xcf). У ньому зберігаються стан всіх шарів, масок та інших частин зображення. Після закінчення роботи над проектом можете зберегти його у JPEG, PNG, GIF, ... + Якщо ви бажаєте продовжити редагування зображення пізніше, збережіть його у форматі XCF. Це внутрішній формат GIMP (розширення файлів .xcf). У ньому зберігаються стан усіх шарів, масок та інших частин зображення. Після закінчення роботи над проектом можете зберегти його у JPEG, PNG, GIF, ... 当您需要保存图像留待以后继续编辑时,请尝试使用 XCF,GIMP 的主文件格式(使用文件扩展名.xcf)。这将保存图层还有您的工作进程的每个方面。一但一个项目完成了,您就可以把它保存为 JPEG、PNG、GIF、…… 如果儲存一幅將來可能會再修改的影像,可試試使用 XCF,即 GIMP 內定使用的影像格式 (延伸檔名為 .xcf)。這樣會保留所有圖層及任何影像的細節。影像完成後,可以將影像另存為 JPEG、PNG、GIF 等等... @@ -202,6 +206,7 @@ The layer named "Background" is special because it lacks transparency. This prevents you from moving the layer up in the stack. You may add transparency to it by right-clicking in the Layers dialog and selecting "Add Alpha Channel". La capa anomenada "Fons" és especial perquè no té transparència. Això us evita haver d'afegir una màscara de capa o de moure la capa en la pila. Podeu afegir-li transparència clicant amb el botó dret sobre el diàleg capes i seleccionat "Afegeix canal alfa". Vrstva pojmenovaná "Pozadí" je speciální, protože nemá průhlednost. To vám brání přidat masku vrstvy nebo ji zvýšit mezi ostatní. Můžete k ní přidat průhlednost kliknutím pravým tlačítkem v dialogu Vrstvy a zvolením "Přidat alfa kanál". + Laget ved navn "Baggrund" er specielt fordi det mangler gennemsigtighed. Dette forhindrer dig i at tilføje en lagmaske eller hæve laget i stakken. Du kan tilføje gennemsigtighed til det ved at højreklikke i lagvinduet og vælge "Tilføj alfakanal". Ebenen mit dem Namen »Hintergrund« haben eine spezielle Bedeutung, da ihnen Transparenz fehlt. Eine solche Ebene kann im Ebenenstapel nicht nach oben verschoben werden. Sie können jedoch Transparenz hinzufügen, indem Sie die Hintergrundebene im Ebenen-Dialog mit der rechten Maustaste anklicken und »Alphakanal hinzufügen« auswählen. The layer named "Background" is special because it lacks transparency. This prevents you from moving the layer up in the stack. You may add transparency to it by right-clicking in the Layers dialogue and selecting "Add Alpha Channel". The layer named "Background" is special because it lacks transparency. This prevents you from moving the layer up in the stack. You may add transparency to it by right-clicking in the Layers dialogue and selecting "Add Alpha Channel". @@ -216,6 +221,7 @@ Warstwa o nazwie "Tło" jest wyjątkowa ze względu na brak przezroczystości. Uniemożliwia to dodanie maski kanału oraz podniesienie warstwy ponad inne na stosie warstw. Możliwe jest dodanie do warstwy przezroczystości poprzez kliknięcie prawym klawiszem myszy jej podglądu (w oknie z warstwami) i wybór polecenia "Dodaj kanał alfa". Vrstva pomenovaná ako "Pozadie" je špeciálna, lebo neobsahuje priesvitnosť. To vám zabraňuje, aby ste pridali vrstve masku alebo, aby ste vrstvu posunuli vyššie. Priesvitnosť tejto vrstve môžete pridať pomocou pravého tlačítka myši v dialógu Vrstvy a výberom "Pridať alfa kanál". Lagret med namnet "Bakgrund" är speciell eftersom den saknar transparens. Detta förhindrar dig från att lägga till en lagermask eller flytta lagret upp i stacken. Du kan lägga till transparens till den genom att högerklicka i lagerdialogen och välja "Lägga till alfakanal". + Шар "Тло" - особливий. У ньому відсутня прозорість. Це не дає змоги додати до нього маску шару або перемістити шар вгору у стеку шарів. Можна додати до нього прозорість, якщо натиснути праву кнопку миші у діалоговому вікні "Шари" та вибрати "Додати альфа-канал". 名叫“背景”的图层是特殊的,因为它没有透明。这使您不能将这个图层沿堆栈上移。如果您想给它添加透明,可以在图层对话框中右点并选择“添加 Alpha 通道”。 @@ -253,6 +259,7 @@ Not all effects can be applied to all kinds of images. This is indicated by a grayed-out menu-entry. You may need to change the image mode to RGB (Image->Mode->RGB), add an alpha-channel (Layer->Transparency->Add Alpha Channel) or flatten it (Image->Flatten Image). No tots els efectes es poden aplicar a tots els tipus d'imatges. Així s'indica amb un menú en relleu. Potser us caldrà canviar el mode imatge a RGB (Imatge->Mode->RGB), afegir un canal alfa (Capes-> Transparència-> Afegeix canal alfa) o aplanar-la (Imatge->Aplana imatge). Některé efekty nemohou být provedeny na všech druzích obrázků. To je indikováno zešedlou položkou menu. Možná budete muset změnit režim obrázku na RGB (Obrázek->Režim->RGB), přidat alfa kanál (Vrstva->Průhlednost->Přidat alfa kanál), nebo jej zploštit (Obrázek->Zploštit obrázek). + Ikke alle effekter kan bruges på alle typer billeder. Dette bliver indikeret ved et gråtonet menupunkt. Du får måske bruge for at ændre billedtilstanden til RGB (Billede->Tilstand->RGB), tilføje en alfakanal (Lag->Gennemsigtighed>Tilføj alfakanal) eller fladgøre det (Billede->Fladgør billede). Nicht alle Effekte können auf alle Bildtypen angewendet werden. Dies wird durch einen grauen Menüeintrag angezeigt. Es ist dann nötig, das Bild ins RGB-Format umzuwandeln (Bild->Modus->RGB), dem Bild Transparenz hinzuzufügen (Ebene->Transparenz->Alphakanal hinzufügen) oder die Ebenen des Bildes zu vereinigen (Bild->Bild zusammenfügen). Not all effects can be applied to all kinds of images. This is indicated by a grayed-out menu-entry. You may need to change the image mode to RGB (Image->Mode->RGB), add an alpha-channel (Layer->Transparency->Add Alpha Channel) or flatten it (Image->Flatten Image). Not all effects can be applied to all kinds of images. This is indicated by a greyed-out menu-entry. You may need to change the image mode to RGB (Image->Mode->RGB), add an alpha-channel (Layer->Transparency->Add Alpha Channel) or flatten it (Image->Flatten Image). @@ -268,6 +275,7 @@ Nie wszystkie efekty mogą być wykorzystywane na obrazach dowolnych typów. Efekty, których nie można użyć na bieżącym obrazie, są to wyszarzone pozycje menu. Aby ich użyć, należy zazwyczaj zmienić tryb obrazu na RGB ("Obraz>Tryb>RGB"), dodać kanał alfa ("Warstwa>Przezroczystość>Dodaj kanał alfa") lub też spłaszczyć obraz ("Obraz>Spłaszcz obraz"). Nie každý efekt sa dá použiť na všetky typy obrázkov. Môžete to zistiť podľa šedej položky v ponuke. Možno bude potrebné zmeniť mód obrázku na RGB (Obrázok->Režim->RGB), pridať alfa kanál (Vrstvy->Priesvitnosť->Pridať alfa kanál) alebo zlúčiť vrstvy (Obrázok>Do jednej vrstvy). Alla effekter kan inte tillämpas på alla typer av bilder. Detta visas genom att menyposten är gråtonad. Du kan behöva ändra bildläget till RGB (Bild->Läge->RGB), lägga till en alfakanal (Lager->Transparens->Lägg till alfakanal) eller platta till den (Bild->Platta till bild). + Не всі ефекти можуть бути застосовані до усіх типів зображення. Це позначується сірим кольором елементів меню. Можливо знадобиться перевести зображення у режим RGB (Зображення->Режим->RGB), додати канал прозорості (Шари->Прозорість->Додати альфа-канал) або об'єднати шари зображення (Зображення->Звести зображення). 并非所有的效果都可以应用到所有类型的图像的。这会通过灰色的菜单项表示出来。您也许需要将图像模式改变为 RGB (图像->模式->RGB)、添加一个 alpha 通道(图层->透明->添加 Alpha 通道)或者平整图像(图像->平整图像)。 @@ -381,6 +389,7 @@ Click and drag on a ruler to place a guide on an image. All dragged selections will snap to the guides. You can remove guides by dragging them off the image with the Move tool. Cliqueu i arrossegueu en un regle per col·locar una guia en una imatge. Totes les seleccions arrossegades es fixaran a les guies. Podeu treure les guies arrossegant-les fora de la imatge amb l'eina mou. Kliknutím a tažením na pravítku umístíte na obrázek vodítko. Všechny tažené výběry se budou chytat na vodítka. Vodítka můžete odstranit jejich přetažením mimo obrázek nástrojem Přesun. + Klik og træk på en lineal for at placere en hjælpelinje i billedet. Alle markeringer som bliver flyttet, vil så følge hjælpelinjerne. Du kan fjerne linjerne igen ved at trække dem af billedet med flytteværktøjet. Durch Anklicken der Lineale am Rande des Bildes können Hilfslinien auf das Bild gezogen und dort platziert werden. Alle von Ihnen verschobenen Auswahlen werden entlang dieser Hilfslinien einrasten. Sie können Hilfslinien wieder entfernen, indem Sie diese mit dem Verschieben-Werkzeug über die Bildgrenzen hinaus verschieben. Click and drag on a ruler to place a guide on an image. All dragged selections will snap to the guides. You can remove guides by dragging them off the image with the Move tool. Click and drag on a ruler to place a guide on an image. All dragged selections will snap to the guides. You can remove guides by dragging them off the image with the Move tool. @@ -396,6 +405,7 @@ Aby umieścić na obrazie prowadnicę, należy kliknąć linijkę i przeciągnąć ją w wybrane miejsce obrazu. Przy wszystkich operacjach wykonywanych z użyciem myszki wskaźnik będzie przyciągany do prowadnic. Aby usunąć prowadnicę, wystarczy wybrać narzędzie przesuwania, a następnie przeciągnąć prowadnicę poza obraz. Kliknutím a potiahnutím na pravítko umiestnite do obrázka vodítko.Všetky ťahané výbery budú pritiahnuté k týmto vodítkam. Vodítka môže odstrániť tak, že pomocou nástroja Presun ich vytiahnete mimo plochu obrázka. Klicka på en linjal och drag den för att placera en hjälplinje på en bild. Alla markeringar som dras kommer att fästas vid hjälplinjerna. Du kan ta bort hjälplinjer genom att dra dem utanför bilden med flyttverktyget. + Щоб помістити напрямну на зображення натисніть на лінійку та перетягніть. Всі виділені області, які переміщуватимуться, будуть причіплюватись до напрямних. Видалити напрямні можна перетягнувши їх за межі зображення за допомогою інструменту "Переміщення". 点击并拖动标尺可以在图像中放置参考线。所有拖动的选区都会被吸附到参考线上。您可以用移动工具把参考线拖出图像外来删除它们。 @@ -427,7 +437,7 @@ Можете превући слој из прозорчета „Слојеви, канали и путање“ и спустити га на палету алата. На тај начин ће се направити нова слика која садржи само тај слој. Možete prevući sloj iz prozorčeta „Slojevi, kanali i putanje“ i spustiti ga na paletu alata. Na taj način će se napraviti nova slika koja sadrži samo taj sloj. Du kan dra ett lager från lagerdialogen och släppa den på verktygslådan. Detta skapar en ny bild som innehåller endast det lagret. - Можна перемістити шар з діалогового вікна "Шари" на панель інструментів. Це призведе до створення нового зображення, яке буде містити лише цей шар. + Можна перемістити шар з діалогового вікна "Шари" на панель інструментів. Це призведе до створення нового зображення, яке буде містити лише цей шар. 您可以从图层对话框中拖动一个图层到工具箱中释放。这样会创建一幅只含有那个图层的新图像。 您可以在「圖層」對話方塊中拖曳一個圖層並將之放進工具箱內。這樣會產生一幅只含有該圖層的影像。 @@ -435,6 +445,7 @@ A floating selection must be anchored to a new layer or to the last active layer before doing other operations on the image. Click on the "New Layer" or the "Anchor Layer" button in the Layers dialog, or use the menus to do the same. Cal ancorar una selecció flotant en una nova capa o a l'última capa activa abans de fer altres operacions en la imatge. Cliqueu els botons "Nova capa" o "Ancora la capa" en el diàleg capes, o utilitzeu els menús per fer el mateix. Plovoucí výběr musí být před prováděním jiných operací na obrázku ukotven k nové vrstvě nebo k poslední aktivní vrstvě. Klikněte na tlačítko "Nová vrstva" nebo "Ukotvit vrstvu" v dialogu Vrstvy, nebo to proveďte pomocí menu. + En flydende markering skal forankres til et nyt lag eller det sidste aktive lag før der kan foretages andre operationer på billedet. Klik på "Nyt lag"- eller "Forankr lag"-knappen i lagvinduet eller brug menuerne til at gøre det samme. Eine schwebende Auswahl muss mit einer neuen Ebene oder der zuletzt aktiven Ebene verankert werden, bevor Sie andere Funktionen auf das Bild anwenden können. Klicken Sie dazu auf die Schaltfläche »Neue Ebene« oder »Ebene verankern« im Ebenendialog, oder verwenden Sie dafür die Menüs. A floating selection must be anchored to a new layer or to the last active layer before doing other operations on the image. Click on the "New Layer" or the "Anchor Layer" button in the Layers dialogue, or use the menus to do the same. A floating selection must be anchored to a new layer or to the last active layer before doing other operations on the image. Click on the "New Layer" or the "Anchor Layer" button in the Layers dialogue, or use the menus to do the same. @@ -449,6 +460,7 @@ Przed wykonaniem jakichkolwiek operacji na oderwanym zaznaczeniu należy je przytwierdzić do nowej lub istniejącej warstwy. Aby to uzyskać, wystarczy w oknie z warstwami kliknąć przycisk "Nowa warstwa" lub przycisk "Zakotwicz warstwę". Ten sam efekt można uzyskać korzystając z menu kontekstowego. Plávajúci výber musí byť pred použitím v ďalších operáciách ukotvený v novej alebo poslednej aktívnej vrstve. Kliknite na tlačítko "Nová vrstva" alebo "Pohltiť vrstvu" v dialógu Vrstvy, alebo to urobte pomocou ponuky. En flytande markering måste ankras vid ett nytt lager eller i det senast aktiva lagret innan andra åtgärder utförs på bilden. Klicka på knapparna "Nytt lager" eller "Ankra lager" i lagerdialogen, eller använd menyerna för att utföra samma sak. + Плаваюча виділена ділянка повинна бути прикріплена до нового шару або до останнього активного шару, перед виконанням інших маніпуляцій із зображенням. Для цього натисніть "Новий шар" у діалоговому вікні "Шари" або "Прикріпити плаваючий шар", або виберіть цю функцію з меню. 在对图像进行其它操作之前,必须先把浮动选区固定到当前活动图层或者新的图层。点击图层对话框中的“新建图层”或者“固定图层”按钮,或者使用菜单也可以。 @@ -465,7 +477,7 @@ GIMP podržava gzip kompresiju u letu. Jednostavno dodajte nastavak .gz (ili .bz2, ako imate instairanu podršku za bzip2) nazivu datoteke i vaša slika će biti spremljena i sažeta. Naravno, učitavanje sažetih slika u letu takođe radi kao i spremanje. A GIMP-pel automatikus tömörítés is végezhető. A funkció a következő módon használható: hozzá kell fűzni egy .gz végződést (vagy .bz2 végződést, ha telepítve van a bzip2) a fájlnévhez - ennek hatására a kép tömörített formában lesz elmentve. A tömörített képek közvetlen betöltését is támogatja a program. GIMP supporta la compressione gzip al volo. Basta aggiungere .gz (o .bz2, se hai installato bzip2) al nome del file e la tua immagine sarà salvata compressa. Ovviamente funzionerà anche il caricamento di immagini compresse. - GIMP は自動 gzip 圧縮をサポートしているよ.他だ単にファイル名に.gz を (bzip2 がある時には .bz2 の方がいいかな) 付けるだけで,自動的に圧縮されるようになってるんだ.もちろん,読み込む時にも自動で展開されるよ. + GIMP は自動 gzip 圧縮をサポートしているよ.単に拡張子 .gz を (bzip2 がある時には .bz2 の方がいいかな) 付けるだけで,自動的に圧縮されるようになってるんだ.もちろん,読み込む時にも自動で展開されるよ. GIMP galite panaudoti gzip archyvavimą. Pridėkite .gz (arba .bz2, jei turite įdiegtą bzip2) prie bylos pavadinimo, ir išsaugosite suarchyvuotą paveikslėlį. Taip pat ir su atidaromais paveikslėliais. GIMP menyokong pemampatan gzip secara layang. Hanya tambahkan .gz (atau .bz2, jika bzip2 telah dipasang) pada nama fail dan imej anda akan disimpan secara mampat. Sudah tentu, memuatkan imej mampat juga boleh dilakukan. GIMP støtter gzip-kompresjon i farta. Bare legg til .gz (eller .bz2, hvis du har bzip2 installert) til filnavnet, og bildet du lagrer vil bli komprimert. Selvfølgelig støttes også åpning av komprimerte bilder. @@ -480,7 +492,7 @@ ГИМП подржава gzip компресију у лету. Једноставно додајте наставак .gz (или .bz2, ако имате инстаирану подршку за bzip2) називу фајла и Ваша слика ће бити сачувана и компресована. Наравно, учитавање компресованих слика у лету такође функционише као и снимање. GIMP podržava gzip kompresiju u letu. Jednostavno dodajte nastavak .gz (ili .bz2, ako imate instairanu podršku za bzip2) nazivu fajla i Vaša slika će biti sačuvana i kompresovana. Naravno, učitavanje kompresovanih slika u letu takođe funkcioniše kao i snimanje. GIMP stöder direkt gzip-komprimering. Lägg bara till .gz (eller .bz2, om du har bzip2 installerat) till filnamnet och din bild kommer att sparas komprimerad. Givetvis fungerar även inläsning av komprimerade bilder. - GIMP підтримує стискання gzip "на ходу". Просто додайте .gz (чи .bz2, якщо у вас встановлено bzip2) до назви файлу, та ваше зображення буде збережено стисненим. Звичайно, стиснені зображення можна відкривати як звичайні. + GIMP підтримує стискання gzip "на ходу". Просто додайте .gz (чи .bz2, якщо у вас встановлено bzip2) до назви файлу, та ваше зображення буде збережено стисненим. Звичайно, стиснені зображення можна відкривати як звичайні. GIMP 支持即时的 gzip 压缩。只要在文件名后面加上.gz(或者.bz2,如果您安装了 bzip2 的话)您的图像就会被压缩保存起来。当然加载压缩的图像也没问题。 GIMP 支援 gzip 直接壓縮/解壓。只要在檔名加上 .gz (或在安裝了 bzip2 的情況下使用 .bz2),影像會以壓縮狀態儲存。 當然直接打開壓縮圖檔也可以。 @@ -521,6 +533,7 @@ You can press or release the Shift and Ctrl keys while you are making a selection in order to constrain it to a square or a circle, or to have it centered on its starting point. Podeu prémer o deixar les tecles majúscules i Ctrl mentre feu una selecció per forçar un quadrat o cercle exacte, o tenir-la centrada en el seu punt mig. Při provádění výběru můžete stisknout nebo pustit klávesy Shift a Ctrl, abyste výběr omezili na dokonalý čtverec nebo kružnici, nebo abyste jej vycentrovali podle jeho počátečního bodu. + Du kan holde skifte- eller Ctrl-tasterne ned mens du foretager en markering før at begrænse den til en perfekt cirkel eller et kvadrat, eller til at få den centreret ved startpunktet. Durch Drücken der Umschalt- bzw. der Strg-Taste während des Erstellens einer Auswahl kann ein Quadrat oder ein Kreis erzeugt werden, beziehungsweise die Auswahl auf den Startpunkt zentriert werden. You can press or release the Shift and Ctrl keys while you are making a selection in order to constrain it to a square or a circle, or to have it centred on its starting point. You can press or release the Shift and Ctrl keys while you are making a selection in order to constrain it to a square or a circle, or to have it centered on its starting point. @@ -536,12 +549,14 @@ Użycie klawisza Shift i Ctrl w czasie zaznaczania, spowoduje utworzenie idealnego kwadratu lub koła, oraz wymusi wycentrowanie zaznaczenia do początkowego punktu zaznaczenia. Stlačením alebo pustením kláves Shift a Ctrl počas vytvárania výberu môžete vybrať dokonalý štvorec alebo kruh, alebo aby ste ho vycentrovali podľa jeho počiatočného bodu. Du kan trycka eller släppa Skift- och Ctrl-knapparna då du skapar en markering för att begränsa den till en perfekt kvadrat eller cirkel, eller för att centrera den på dess startpunkt. + Щоб створити виділену ділянку у вигляді квадрату або кола, а також, щоб створити виділену ділянку з вказаного центру, використовуйте клавіші Shift та Ctrl. 在进行选择的时候,您可以按下或释放ShiftCtrl键得到一个标准的正方形或圆,或者使它以起始点为中心。 You can adjust or move a selection by using Alt-drag. If this makes the window move, your window manager uses the Alt key already. Try pressing Shift at the same time. Podeu ajustar i remplaçar una selecció utilitzant Alt-arrossega. Si això fa que es mogui la finestra, el vostre gestor de finestres ja utilitza la tecla Alt. Proveu de prémer majúscules al mateix temps. Výběr můžete upravit a nahradit pomocí tažení s Alt. Pokud to hýbe oknem, klávesu Alt již používá váš manažer oken. Zkuste zároveň stisknout Shift. + Du kan justere og genplacere en markering ved at bruge Alt-træk. Hvis dette får vinduet til at flytte sig, bruger din vindueshåndtering allerede Alt-tasten. Prøv at trykke på skiftetasten på samme tid. Sie können eine Auswahl anpassen oder verschieben, indem Sie beim Ziehen die Alt-Taste drücken. Falls dies dazu führt, dass sich Ihr Fenster bewegt, ist die Alt-Taste bereits von Ihrem Fenster-Manager belegt. Versuchen Sie dann gleichzeitig die Umschalt-Taste zu drücken. You can adjust or move a selection by using Alt-drag. If this makes the window move, your window manager uses the Alt key already. Try pressing Shift at the same time. You can adjust or move a selection by using Alt-drag. If this makes the window move, your window manager uses the Alt key already. Try pressing Shift at the same time. @@ -557,6 +572,7 @@ Możesz ustawić zaznaczenie a następnie przesunąć je myszką przytrzymując klawisz Alt. Jeśli to powoduje przesunięcie okna, spróbuj użyć jednocześnie klawiszy Shift+Alt. Výber môžete upraviť a presunúť pomocou ťahania s Alt. Pokiaľ to hýbe oknom, kláves Alt už používa váš správca okien. Vyskúšajte súčasne stlačiť aj Shift. Du kan justera och placera om en markering genom att använda Alt-drag. Om detta gör att fönstret flyttar sig använder din fönsterhanterare redan Alt-tangenten. Prova att trycka Shift på samma gång. + Ви можете скорегувати та перемістити виділену ділянку використовуючи перетягування з утриманням натиснутої Alt. Якщо це призводить до переміщення цілого вікна, це означає ваш менеджер вікон вже використовує клавішу Alt. Спробуйте одночасно з цим натискати Shift. 可以通过Alt+拖动来调整和改变选区。如果这样做使窗口移位了,说明您的窗口管理器已经使用了Alt键,请同时按住Shift键。 @@ -586,7 +602,7 @@ Употребом Уређивање->Исцртај можете цртати једноставне квадрате и кругове. Ово исцртава ивице текућег избора. Сложенији облици се могу цртати помоћу алата за путање или Филтери->Исцртавање->Gfig. Upotrebom Uređivanje->Iscrtaj možete crtati jednostavne kvadrate i krugove. Ovo iscrtava ivice tekućeg izbora. Složeniji oblici se mogu crtati pomoću alata za putanje ili Filteri->Iscrtavanje->Gfig. Du kan rita enkla fyrkanter och cirklar genom att använda Redigera->Stryk längs markering. Det ritar hörnet på din aktuella markering. Mer komplexa figurer kan ritas med slingverktyget eller Filter->Rendera->Gfig. - Можна малювати прості квадрати чи кола використовуючи меню Правка->Обвести за контуром. Даний пункт меню обводить за контуром виділену ділянку. Більш складні геометричні фігури можна намалювати використовуючи інструмент "Контур" або Фільтри->Візуалізація->Gfig. + Можна малювати прості квадрати чи кола використовуючи меню Правка->Обвести за контуром. Даний пункт меню обводить за контуром виділену ділянку. Більш складні геометричні фігури можна намалювати використовуючи інструмент "Контур" або Фільтри->Візуалізація->Gfig. 使用 编辑->勾画 让您可以沿着当前的选区的边缘进行描画,画出简单的方块或者圆。更复杂的形状可以用 滤镜->绘制->几何图形(GFig) 来画。 您可以用「編輯→將選擇區域描邊」來繪畫簡單的矩形或圓形。它會用畫筆描出目前的選擇區域的邊界。至於更複雜的圖形,可以使用「路徑」工具或者「濾鏡→描繪→Gfig」來繪畫。 @@ -616,7 +632,7 @@ Уколико исцртате путању (Уређивање->Исцртај избор), користи се текући алат за цртање и његова подешавања. Можете користити четкицу у режиму претапања, гумицу за брисање или алат за размазивање. Ukoliko iscrtate putanju (Uređivanje->Iscrtaj izbor), koristi se tekući alat za crtanje i njegova podešavanja. Možete koristiti četkicu u režimu pretapanja, gumicu za brisanje ili alat za razmazivanje. Om du stryker en slinga (Redigera->Stryk längs markering) kan ritverktygen användas med deras aktuella inställningar. Du kan använda målarpenseln i toningsläget eller till och med suddaren eller smetverktyget. - При обведенні контуру (Правка->Обвести за контуром), використовується поточний інструмент малювання з усіма настройками. Ви можете використовувати "Пензель" у режимі градієнта, або навіть інструменти "Гумка" чи "Палець". + При обведенні контуру (Правка->Обвести за контуром), використовується поточний інструмент малювання з усіма параметрами. Ви можете використовувати "Пензель" у режимі градієнта, або навіть інструменти "Гумка" чи "Палець". 勾画路径(编辑->勾画路径)时,您可以按当前的设置使用涂画工具。您可以使用渐变模式的画笔,或者甚至橡皮还有涂抹工具。 描畫路徑時(編輯→描畫路徑),可以使用目前的繪畫工具和設定。您可以在漸層模式中使用「畫筆」,甚至「橡皮擦」或「塗污」工具也可以。 @@ -647,7 +663,7 @@ Можете направити и уређивати сложене изборе помоћу алата за путање. Прозорче за путање дозвољава рад са више путања и претварање истих у изборе. Možete napraviti i uređivati složene izbore pomoću alata za putanje. Prozorče za putanje dozvoljava rad sa više putanja i pretvaranje istih u izbore. Du kan skapa och redigera komplexa markeringar genom att använda slingverktyget. Slingdialogen låter dig arbeta med flera slingor och konvertera dem till markeringar. - Можна створювати та редагувати складні ділянки виділення використовуючи інструмент "Контур". У діалоговому вікні "Контур" можна працювати з кількома контурами та перетворювати їх у виділення. + Можна створювати та редагувати складні ділянки виділення використовуючи інструмент "Контур". У діалоговому вікні "Контур" можна працювати з кількома контурами та перетворювати їх у виділення. 您可以用路径工具创建和编辑复杂的选区。路径对话框允许您同时操作多个路径以及把它们转换到选区。 您可以使用路徑工具來製作及修改複雜的選擇區域。在「路徑」對話方塊中,您可以同時處理多個路徑並將它們轉換為選擇區域。 @@ -655,6 +671,7 @@ You can use the paint tools to change the selection. Click on the "Quick Mask" button at the bottom left of an image window. Change your selection by painting in the image and click on the button again to convert it back to a normal selection. Podeu utilitzar les eines de pintura per canviar la selecció. Cliqueu al botó "Màscara ràpida" al fons esquerre d'una finestra d'imatge. Canvieu la vostra selecció pintant en la imatge i cliqueu en el botó de nou per a tornar-la a convertir en una selecció normal. Výběr můžete změnit pomocí kreslicích nástrojů. Klikněte na tlačítko "Rychlá maska" ve spodním levém rohu okna obrázku. Změňte svůj výběr kreslením v obrázku a dalším kliknutím na toto tlačítko jej převeďte zpět na normální výběr. + Du kan bruge tegneværktøjerne til at ændre det markerede. Klik på hurtigmaskeknappen for neden til venstre i et billedvindue. Ændr det markerede ved at tegne i billedet og klikke på knappen igen for at konvertere det tilbage til en normal markering. Sie können die Malwerkzeuge verwenden um eine Auswahl zu ändern. Klicken Sie dazu auf die Schaltfläche »Schnelle Maske« in der unteren linken Ecke eines Bildfensters. Ändern Sie nun die Auswahl indem Sie innerhalb des Bildes malen und klicken Sie anschließend die Schaltfläche erneut an, um alles wieder in eine normale Auswahl umzuwandeln. You can use the paint tools to change the selection. Click on the "Quick Mask" button at the bottom left of an image window. Change your selection by painting in the image and click on the button again to convert it back to a normal selection. You can use the paint tools to change the selection. Click on the "Quick Mask" button at the bottom left of an image window. Change your selection by painting in the image and click on the button again to convert it back to a normal selection. @@ -669,13 +686,14 @@ Do zmiany zaznaczenia możesz używać narzędzi malowania. Kliknij przycisk "Szybka maska" w lewym dolnym rogu okna obrazu (mały kwadracik). Od tej chwili możesz modyfikować zaznaczenie jako kolor, używając bieżącego narzędzia. Po zakończeniu modyfikacji przywróć zwykły widok, klikając jeszcze raz na przycisk z "kwadracikiem". Na zmenu výberu môžete použiť kresliace nástroje. Stačí stlačiť tlačítko "Rýchla maska" na ľavom spodnom okraji okna. Zmena sa uskutoční kreslením do obrázku a opätovné stlačenie tlačítka ju skonvertuje späť na normály výber. Du kan använda målarverktygen för att ändra markeringen. Klicka på "Snabbmask"-knappen i nedre vänstra hörnet i ett bildfönster. Ändra din markering genom att måla i bilden och klicka på knappen igen för att konvertera den tillbaka till en normal markering. + Для редагування меж виділеної ділянки можна використовувати інструменти малювання. Для цього необхідно увімкнути "Швидка маска" у нижньому лівому куті вінка зображення, відредагувати виділену ділянку інструментом малювання, потім ще раз натиснути кнопку для переходу у звичайний режим. 您可以使用涂画工具来改变选区。点击图像窗口左下角的“快速蒙板”按钮,在图像上涂画来修改您的选区,然后再次点击按钮把它转换回一个正常选区。 You can save a selection to a channel (Select->Save to Channel) and then modify this channel with any paint tools. Using the buttons in the Channels dialog, you can toggle the visibility of this new channel or convert it to a selection. Podeu desar una selecció a canal (Selecciona->Desa a canal) i després modificar aquest canal amb qualsevol eina de pintura. Utilitzeu els botons en el diàleg de canals: podreu commutar la visibilitat d'aquest nou canal o convertir-lo a selecció. Výběr můžete uložit do kanálu (Výběr->Uložit do kanálu) a pak tento kanál upravit libovolnými nástroji kreslení. Pomocí tlačítek v dialogu Kanály můžete přepnout viditelnost tohoto nového kanálu nebo jej převést na výběr. - Du kan gemme en markering som en kanel (Markering->Gem som kanal) og så ændre denne kanal med maleværktøjerne. Ved hjælp af knapperne i "Kanaler"-vinduet kan du slå synligheden af denne nye kanal til eller fra eller konvertere den til en markering. + Du kan gemme en markering som en kanel (Markering->Gem som kanal) og så ændre denne kanal med maleværktøjerne. Ved hjælp af knapperne i kanalvinduet kan du slå synligheden af denne nye kanal til eller fra eller konvertere den til en markering. Sie können eine Auswahl in einen Kanal abspeichern (Auswahl->In Kanal speichern) und anschließend diesen Kanal mit jedem Malwerkzeug bearbeiten. Mit Hilfe derSchaltflächen im Kanäle-Dialog können Sie die Sichtbarkeit dieses neuen Kanals beeinflussen oder ihn in eine Auswahl umwandeln. You can save a selection to a channel (Select->Save to Channel) and then modify this channel with any paint tools. Using the buttons in the Channels dialogue, you can toggle the visibility of this new channel or convert it to a selection. You can save a selection to a channel (Select->Save to Channel) and then modify this channel with any paint tools. Using the buttons in the Channels dialog, you can toggle the visibility of this new channel or convert it to a selection. @@ -713,6 +731,7 @@ After you enabled "Dynamic Keyboard Shortcuts" in the Preferences dialog, you can reassign shortcut keys. Do so by bringing up the menu, selecting a menu item, and pressing the desired key combination. If "Save Keyboard Shortcuts" is enabled, the key bindings are saved when you exit GIMP. Després d'activar "Dreceres de teclat dinàmiques" en el diàleg preferències podeu reassignar tecles de dreceres. Fareu això si, dins dels menú, seleccioneu un element, i premeu la combinació de tecles desitjada. Si "Desa dreceres de teclat" està activat, la tecla escollida es desarà quan sortiu del GIMP. Po povolení "Dynamické klávesové zkratky" v dialogu Předvolby můžete měnit klávesové zkratky. Provedete to otevřením menu, vybráním položky menu a stisknutím nové klávesové zkratky. Pokud je povoleno "Uložit klávesové zkratky", jsou zkratky uloženy, když GIMP ukončíte. + Hvis du aktiverer "Dynamiske tastegenvejerne" under indstillingerne, kan du omdefinere genvejstaster i menuerne. Bring en menu frem, peg på et menupunkt og tryk den ønskede tastekombination. Genvejen bliver gemt når du afslutter Gimp'en hvis rne"Gem tastegenveje" er aktiveret. Nachdem Sie in den Einstellungen »Dynamische Tastaturkürzel« aktiviert haben,können Sie Tastaturkürzel einfach zuweisen oder verändern. Wählen Sie dazu mit der Maus den entsprechende Menüeintrag aus und drücken Sie anschließend die neue neue Tastenkombination. Wenn »Tastenkürzel speichern« aktiviert ist, werden die von Ihnen definierten Tastenkürzel gespeichert, wenn Sie GIMP beenden. After you enable "Dynamic Keyboard Shortcuts" in the Preferences dialogue, you can reassign shortcut keys. Do so by bringing up the menu, selecting a menu item, and pressing the desired key combination. If "Save Keyboard Shortcuts" is enabled, the key bindings are saved when you exit GIMP. After you enabled "Dynamic Keyboard Shortcuts" in the Preferences dialog, you can reassign shortcut keys. Do so by bringing up the menu, selecting a menu item, and pressing the desired key combination. If "Save Keyboard Shortcuts" is enabled, the key bindings are saved when you exit GIMP. @@ -727,6 +746,7 @@ Jeśli w preferencjach GIMP-a aktywna jest opcja "Dynamiczne skróty klawiszowe", wówczas program pozwala na zmienianie skrótów klawiszowych w trakcie działania. Aby to zrobić, wystarczy otworzyć menu z wybranym poleceniem, wyróżnić pozycję odpowiadającą poleceniu, a następnie przycisnąć kombinację klawiszy stanowiącą nowy skrót klawiszowy. Jeśli w preferencjach aktywna jest opcja "Zapisz skróty klawiszowe przed zakończeniem", to wszystkie skróty klawiszowe będą zapamiętane przy zakończeniu GIMP-a Po povolení "Dynamické klávesové skratky" v dialógu Nastavenia, môžete meniť klávesové skratky. Spraviť to môžete pomocou otvorenia ponuky, označením položky a stlačením požadovanej klávesovej skratky. Ak je povolené "Uložiť klávesové skratky", tak sa skratky uložia, keď ukončíte GIMP. När du har aktiverat "Dynamiska kortkommandon" i inställningsdialogen kan du ställa om snabbtangenter. Detta gör du genom att ta fram menyn, markera ett menyval och trycka på den önskade snabbtangentskombinationen. Detta sparas då du avslutar GIMP om "Spara kortkommandon" är aktiverat. + Після ввімкнення функції "Динамічні комбінації клавіш" у діалоговому вікні Параметри" ви можете перевизначати комбінації клавіш. Для цього відкрийте меню наведіть вказівник на потрібний пункт меню, та натисніть бажану комбінацію клавіш. Якщо ввімкнено "Зберігати комбінації клавіш при виході", вона буде збережена під час виходу з програми GIMP. 当您在首选项对话框中启用了“动态快捷键”以后,您就可以重新分配快捷键了。只要弹出菜单,选择一个菜单项,然后按新的快捷键组合就行了。如果启用了“保存快捷键”,退出 GIMP 时,这些新的快捷键将会被保存下来。 @@ -825,7 +845,7 @@ Shift-клик на иконицу ока у дијалогу Слојева одређује видљивост свих слојева изузев предметног. Shift-клик враћа претходно стање видљивости слоја. Shift-klik na ikonicu oka u dijalogu Slojeva određuje vidljivost svih slojeva izuzev predmetnog. Shift-klik vraća prethodno stanje vidljivosti sloja. Skift-klicka på ögonikonen i lagerdialogen för att dölja alla lager utom det. Skift-klicka igen för att visa alla lager. - Якщо у діалоговому вікні "Шари" натиснути на значок ока з одночасним утриманням Shift, невидимими стануть всі шари, крім того на чий значок натиснули. Щоб зробити всі шари знову видимими, натисніть на той самий значок, утримуючи клавішу Shift. + Якщо у діалоговому вікні "Шари" натиснути на значок ока з одночасним утриманням Shift, невидимими стануть всі шари, крім того на чий значок натиснули. Щоб зробити всі шари знову видимими, натисніть на той самий значок, утримуючи клавішу Shift. Shift+点击图层对话框的眼睛图标可以隐藏除此以外的其它所有图层。再次Shift+点击显示所有的图层。 在「圖層」對話方塊的眼形圖示中,按 Shift 鍵加上滑鼠按鈕會只顯示指定圖層而隱藏其它圖層。再做一次則會顯示所有圖層。 @@ -957,7 +977,7 @@ Ctrl-клик са алатом за бојење ради коришћења боје позадине уместо боје цртања. Ctrl-klik sa alatom za bojenje radi korišćenja boje pozadine umesto boje crtanja. Ctrl-klicka med fyllnadsverktyget för att göra så att det använder bakgrundsbilden istället för förgrundsfärgen. - Інструмент "Заповнення" зазвичай використовує колір переднього плану. Щоб заповнити ділянку кольором тла, натискайте клавішу Ctrl. + Інструмент "Заповнення" зазвичай використовує колір переднього плану. Щоб заповнити ділянку кольором тла, натискайте клавішу Ctrl. 使用油漆桶填充工具时Ctrl+点击可以让它使用背景色而不是前景色。 使用「油漆桶填色」工具時,按 Ctrl 鍵加上滑鼠按鈕會令填色時使用背景顏色而非前景顏色。 @@ -988,7 +1008,7 @@ Ctrl-превлачење са алатом за ротацију ће ограничити ротацију на углове који су умножак 15 степени. Ctrl-prevlačenje sa alatom za rotaciju će ograničiti rotaciju na uglove koji su umnožak 15 stepeni. Ctrl-drag med rotationsverktyget kommer att begränsa rotationen till 15-gradersvinklar. - Натискання Ctrl у інструменті "Обертання" при обертанні, призводить до повороту на кут кратний 15 градусам. + Натискання Ctrl у інструменті "Обертання" при обертанні, призводить до повороту на кут кратний 15 градусам. 使用旋转工具时,Ctrl+拖动可以使得旋转角度限制在 15 度的整倍数。 在旋轉工具中,按 Ctrl 鍵加上滑鼠按鈕會將旋轉角度限制為 15°的倍數。 @@ -996,6 +1016,7 @@ To create a circle-shaped selection, hold Shift while doing an ellipse select. To place a circle precisely, drag horizontal and vertical guides tangent to the circle you want to select, place your cursor at the intersection of the guides, and the resulting selection will just touch the guides. Per crear un cercle exacte, manteniu premuda majúscules mentre s'està fent una selecció d'el·lipse. Per col·locar un cercle amb precisió, arrossegueu les guies horitzontals i verticals tangents al cercle que vulgueu seleccionar, situar el cursor a la intersecció de les guies, i la selecció resultant tot just tocarà les guies. Dokonalou kružnici vytvoříte držením Shift při provádění výběru elipsy. Pro přesné umístění kružnice táhněte vodorovné a svislé vodítko jako tečny ke kružnici, kterou chcete vybrat, umístěte kurzor na průsečík vodítek a výsledný výběr se bude vodítek přesně dotýkat. + For at lave en perfekt cirkel skal du holde skifte-tasten nede mens du foretager en ellipsemarkering. Cirklen kan placeres præcist hvis du trækker vandrette og lodrette hjælpelinjer så de tangerer cirklen du ønsker at markere, og placerer markøren ved skæringspunktet mellem linjerne. Så vil den resulterende markering lige præcis røre hjælpelinjerne. Um eine kreisrunde Auswahl zu erzeugen, muss die Umschalt-Taste beim Erstellen einer elliptischen Auswahl gedrückt gehalten werden. Um einen Kreis präzise zu platzieren, können Hilfslinien benutzt werden. Diese werden an die Tangente des gewünschten Kreises platziert und die Selektion dann aus dem Schnittpunkt dieser Linien aufgezogen. To create a circle-shaped selection, hold Shift while doing an ellipse select. To place a circle precisely, drag horizontal and vertical guides tangent to the circle you want to select, place your cursor at the intersection of the guides, and the resulting selection will just touch the guides. To create a circle-shaped selection, hold Shift while doing an ellipse select. To place a circle precisely, drag horizontal and vertical guides tangent to the circle you want to select, place your cursor at the intersection of the guides, and the resulting selection will just touch the guides. @@ -1011,12 +1032,14 @@ Aby wykonać zaznaczenie w kształcie okręgu, należy skorzystać z narzędzia zaznaczenia eliptycznego i podczas wyznaczania kształtu elipsy trzymać przyciśnięty klawisz Shift. Precyzyjne utworzenie zaznaczenia stycznego do dwóch prostych ułatwiają prowadnice poziome i pionowe: wystarczy umieścić dwie prostopadłe prowadnice na prostych, z którymi powinien stykać się okrąg, a następnie kliknąć punkt ich przecięcia i ustalić promień okręgu przeciągając wskaźnik myszy. Ak chcete vytvoriť dokonalý kruh, podržte klávesu Shift počas vytvárania elipsovitého výberu. Na presné umiestnenie kruhu potiahnite vodorovné a zvislé vodítka dotýkajúce sa kruhu, ktorý chcete označiť, umiestnite kurzor do priesečníka vodítok a výsledný výber sa bude dotýkať vodítok. För att skapa en perfekt cirkel håller du nere Skift när du gör en ellipsmarkering. För att placera cirkeln exakt drar du horisontella och vertikala hjälplinjer till den cirkel som du vill markera, placerar din markör på skärningen av hjälplinjerna, och den resulterande markeringen kommer att precis röra vid hjälplinjerna. + Щоб створити рівне коло, утримуйте клавішу Shift під час виділення еліптичної ділянки. Щоб досягти точного розташування кола, додайте вертикальні та горизонтальні напрямні, які будуть дотичними майбутнього кола, розташуйте вказівник у точці перетину напрямних та створіть ділянку виділення. 如果需要创建一个圆形选区,可以在进行椭圆选择的时候按住Shift键。需要精确放置一个圆,可以拖动水平和垂直的参考线使之与您想要选择的圆相切,把您的光标放在参考线的相交处,最终的选区就会刚好触到参考线。 If some of your scanned photos do not look colorful enough, you can easily improve their tonal range with the "Auto" button in the Levels tool (Layer->Colors->Levels). If there are any color casts, you can correct them with the Curves tool (Layer->Colors->Curves). Si algunes de les fotos escanejades no tenen prou color, podeu millorar fàcilment el seu to amb el botó "Automàtic" en l'eina nivells (Capes->Colors->Nivells). Si hi ha algun color buit, el podeu corregir amb l'eina corbes (Capes->Colors->Corbes). Jestliže některé vaše naskenované fotky nevypadají dost barevně, můžete jejich rozsah tónů snadno vylepšit tlačítkem "Automaticky" v nástroji Úrovně (Vrstva->Barvy->Úrovně). Případné barevné stíny můžete opravit nástrojem Křivky (Vrstva->Barvy->Křivky). + Hvis nogle af din indskannede fotografier ikke ser farverige nok ud, kan du let forbedre deres farvetoneinterval med "Auto"-knappen i niveauværktøjet (Lag->Farver->Niveauer). Hvis der er farveudblødninger, kan du rette dem med kurveværktøjet (Lag->Farver->Kurver). Wenn einige Ihrer eingescannten Fotos nicht farbenfroh genug aussehen, können Sie einfach einen Farbtonabgleich mit der Schaltfläche »Automatisch« des Farbwerte-Werkzeugs ausführen (Ebene->Farben->Farbwerte). Falls es irgendwelche Farbstiche gibt, können Sie diese mit dem Farbkurven-Werkzeug korrigiert werden (Ebene->Farben->Farbkurven). If some of your scanned photos do not look colourful enough, you can easily improve their tonal range with the "Auto" button in the Levels tool (Layer->Colours->Levels). If there are any colour casts, you can correct them with the Curves tool (Layer->Colours->Curves). If some of your scanned photos do not look colourful enough, you can easily improve their tonal range with the "Auto" button in the Levels tool (Layer->Colors->Levels). If there are any colour casts, you can correct them with the Curves tool (Layer->Colors->Curves). @@ -1031,6 +1054,7 @@ Jeśli zeskanowane zdjęcia wydają się niezbyt kolorowe, można poprawić ich kolorystykę korzystając z narzędzia "Poziomy..." ("Warstwa>Kolory>Poziomy..."). Najprostszym sposobem użycia narzędzia jest kliknięcie w jego oknie dialogowym przycisku "Automatycznie". Występowanie zniekształceń kolorów (ang. color cast) można skorygować za pomocą narzędzia "Krzywe" ("Warstwa>Kolory>Krzywe..."). Ak niektoré vaše naskenované fotografie sa vám nezdajú dostatočne farebné,môžete zlepšiť ich tonálny rozsah tlačítkom "Automaticky" v dialógu Úrovne (Nástroje->Farby->Úrovne). Prípadné farebné nádychy môžete opraviť nástrojom Krivky (Nástroje->Farby->Krivky). Om en del av dina inlästa bilder inte ser ut att vara tillräckligt färggranna kan du enkelt förbättra deras färgtonsintervall med knappen "Auto" i nivåverktyget (Lager->Färger->Nivåer). Om det finns några färgskiftningar kan du korrigera dem med kurvverktyget (Lager->Färger->Kurvor). + Якщо відскановані зображення виглядають недостатньо кольоровими, їх тональний діапазон можна виправити за допомогою кнопки "Авто" у діалоговому вікні "Рівні" (Шар->Кольори->Рівні). Відтінки кольору можна скорегувати інструментом "Криві" (Шар->Кольори->Криві). 如果您扫描的一些照片看起来色彩不足,您可以使用色阶工具(图层->颜色->色阶)中的“自动”按钮轻松改进它们的色彩效果。如果有什么颜色损失,您可以用曲线工具(图层->颜色->曲线)把它们纠正回来。 diff -uraN gimp-2.2.4/tips/ja.po gimp-2.2.5/tips/ja.po --- gimp-2.2.4/tips/ja.po 2005-02-22 23:05:07.000000000 +0100 +++ gimp-2.2.5/tips/ja.po 2005-04-09 22:38:11.000000000 +0200 @@ -9,10 +9,10 @@ # msgid "" msgstr "" -"Project-Id-Version: gimp-tips HEAD\n" +"Project-Id-Version: gimp-tips gimp-2-2\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2004-12-18 00:46+0100\n" -"PO-Revision-Date: 2004-04-18 19:21+0900\n" +"PO-Revision-Date: 2005-04-01 00:21+0900\n" "Last-Translator: Ryoichi INAGAKI \n" "Language-Team: Japanese \n" "MIME-Version: 1.0\n" @@ -178,9 +178,9 @@ ".bz2, if you have bzip2 installed) to the filename and your image " "will be saved compressed. Of course loading compressed images works too." msgstr "" -"GIMP は自動 gzip 圧縮をサポートしているよ.他だ単にファイル名に.gz " -"を (bzip2 がある時には .bz2 の方がいいかな) 付けるだけで,自動的に圧" -"縮されるようになってるんだ.もちろん,読み込む時にも自動で展開されるよ." +"GIMP は自動 gzip 圧縮をサポートしているよ.単に拡張子 .gz を (bzip2 " +"がある時には .bz2 の方がいいかな) 付けるだけで,自動的に圧縮されるよ" +"うになってるんだ.もちろん,読み込む時にも自動で展開されるよ." #: tips/gimp-tips.xml.in.h:18 msgid "" diff -uraN gimp-2.2.4/tips/Makefile.am gimp-2.2.5/tips/Makefile.am --- gimp-2.2.4/tips/Makefile.am 2005-02-21 14:15:08.000000000 +0100 +++ gimp-2.2.5/tips/Makefile.am 2005-04-09 23:08:25.000000000 +0200 @@ -85,7 +85,8 @@ validate: update-po gimp-tips.xml if HAVE_XMLLINT - @$(XMLLINT) --noout --valid gimp-tips.xml || \ + @cd $(srcdir); \ + $(XMLLINT) --noout --valid gimp-tips.xml || \ ( echo "* gimp-tips.xml INVALID *"; exit 1; ) endif diff -uraN gimp-2.2.4/tips/Makefile.in gimp-2.2.5/tips/Makefile.in --- gimp-2.2.4/tips/Makefile.in 2005-02-22 23:11:21.000000000 +0100 +++ gimp-2.2.5/tips/Makefile.in 2005-04-09 23:09:47.000000000 +0200 @@ -623,7 +623,8 @@ done validate: update-po gimp-tips.xml -@HAVE_XMLLINT_TRUE@ @$(XMLLINT) --noout --valid gimp-tips.xml || \ +@HAVE_XMLLINT_TRUE@ @cd $(srcdir); \ +@HAVE_XMLLINT_TRUE@ $(XMLLINT) --noout --valid gimp-tips.xml || \ @HAVE_XMLLINT_TRUE@ ( echo "* gimp-tips.xml INVALID *"; exit 1; ) fortunes: gimp-tips.xml.in fortunes.xsl diff -uraN gimp-2.2.4/tips/uk.po gimp-2.2.5/tips/uk.po --- gimp-2.2.4/tips/uk.po 2005-02-22 23:05:08.000000000 +0100 +++ gimp-2.2.5/tips/uk.po 2005-04-09 22:38:12.000000000 +0200 @@ -8,7 +8,7 @@ "Project-Id-Version: gimp tips\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2004-12-18 00:46+0100\n" -"PO-Revision-Date: 2004-04-12 13:45+0200\n" +"PO-Revision-Date: 2005-02-24 13:45+0200\n" "Last-Translator: Maxim Dziumanenko \n" "Language-Team: Ukrainian \n" "MIME-Version: 1.0\n" @@ -16,9 +16,8 @@ "Content-Transfer-Encoding: 8bit\n" #: tips/gimp-tips.xml.in.h:1 -#, fuzzy msgid "Welcome to the GIMP!" -msgstr "Ласкаво просимо до GIMP !" +msgstr "Ласкаво просимо до GIMP!" #: tips/gimp-tips.xml.in.h:2 msgid "" @@ -41,15 +40,15 @@ "Ctrl-click with the Bucket Fill tool to have it use the background " "color instead of the foreground color." msgstr "" -"Інструмент \"Заповнення\" зазвичай використовує колір переднього плану. Щоб " -"заповнити ділянку кольором тла, натискайте клавішу Ctrl." +"Інструмент "Заповнення" зазвичай використовує колір переднього " +"плану. Щоб заповнити ділянку кольором тла, натискайте клавішу Ctrl." #: tips/gimp-tips.xml.in.h:5 msgid "" "Ctrl-drag with the Rotate tool will constrain the rotation to 15 " "degree angles." msgstr "" -"Натискання Ctrl у інструменті \"Обертання\" при обертанні, " +"Натискання Ctrl у інструменті "Обертання" при обертанні, " "призводить до повороту на кут кратний 15 градусам." #: tips/gimp-tips.xml.in.h:6 @@ -57,13 +56,12 @@ "Shift-click on the eye icon in the Layers dialog to hide all layers " "but that one. Shift-click again to show all layers." msgstr "" -"Якщо у діалоговому вікні \"Шари\" натиснути на значок ока з одночасним " -"утриманням Shift, невидимими стануть всі шари, крім того на чий " -"значок натиснули. Щоб зробити всі шари знову видимими, натисніть на той " -"самий значок, утримуючи клавішу Shift." +"Якщо у діалоговому вікні "Шари" натиснути на значок ока з " +"одночасним утриманням Shift, невидимими стануть всі шари, крім того " +"на чий значок натиснули. Щоб зробити всі шари знову видимими, натисніть на " +"той самий значок, утримуючи клавішу Shift." #: tips/gimp-tips.xml.in.h:7 -#, fuzzy msgid "" "A floating selection must be anchored to a new layer or to the last active " "layer before doing other operations on the image. Click on the "New " @@ -72,11 +70,11 @@ msgstr "" "Плаваюча виділена ділянка повинна бути прикріплена до нового шару або до " "останнього активного шару, перед виконанням інших маніпуляцій із " -"зображенням. Для цього натисніть \"Новий шар\" у діалоговому вікні \"Шари\" " -"або \"Прикріпити плаваючий шар\", або виберіть цю функцію з меню." +"зображенням. Для цього натисніть "Новий шар" у діалоговому вікні " +""Шари" або "Прикріпити плаваючий шар", або виберіть цю " +"функцію з меню." #: tips/gimp-tips.xml.in.h:8 -#, fuzzy msgid "" "After you enabled "Dynamic Keyboard Shortcuts" in the Preferences " "dialog, you can reassign shortcut keys. Do so by bringing up the menu, " @@ -84,14 +82,14 @@ "Save Keyboard Shortcuts" is enabled, the key bindings are saved when " "you exit GIMP." msgstr "" -"Після ввімкнення функції \"Динамічні комбінації клавіш\" у діалоговому вікні " -"\"Настройка\" ви можете перевизначати комбінації клавіш. Для цього відкрийте " -"меню наведіть вказівник на потрібний пункт меню, та натисніть бажану " -"комбінацію клавіш. Якщо ввімкнено \"Зберігати комбінації клавіш при виході" -"\", вона буде збережена під час виходу з програми GIMP." +"Після ввімкнення функції "Динамічні комбінації клавіш" у " +"діалоговому вікні Параметри\" ви можете перевизначати комбінації клавіш. Для " +"цього відкрийте меню наведіть вказівник на потрібний пункт меню, та " +"натисніть бажану комбінацію клавіш. Якщо ввімкнено "Зберігати " +"комбінації клавіш при виході", вона буде збережена під час виходу з " +"програми GIMP." #: tips/gimp-tips.xml.in.h:9 -#, fuzzy msgid "" "Click and drag on a ruler to place a guide on an image. All dragged " "selections will snap to the guides. You can remove guides by dragging them " @@ -100,10 +98,9 @@ "Щоб помістити напрямну на зображення натисніть на лінійку та перетягніть. " "Всі виділені області, які переміщуватимуться, будуть причіплюватись до " "напрямних. Видалити напрямні можна перетягнувши їх за межі зображення за " -"допомогою інструменту \"Переміщення\"." +"допомогою інструменту "Переміщення"." #: tips/gimp-tips.xml.in.h:10 -#, fuzzy msgid "" "If some of your scanned photos do not look colorful enough, you can easily " "improve their tonal range with the "Auto" button in the Levels " @@ -111,9 +108,10 @@ "correct them with the Curves tool (Layer->Colors->Curves)." msgstr "" "Якщо відскановані зображення виглядають недостатньо кольоровими, їх " -"тональний діапазон можна виправити за допомогою кнопки \"Авто\" у " -"діалоговому вікні \"Рівні\" (Шар->Кольори->Рівні). Відтінки кольору " -"можна скорегувати інструментом Криві (Шар->Кольори->Криві)." +"тональний діапазон можна виправити за допомогою кнопки "Авто" у " +"діалоговому вікні "Рівні" (Шар->Кольори->Рівні). Відтінки " +"кольору можна скорегувати інструментом "Криві" (Шар->Кольори-" +">Криві)." #: tips/gimp-tips.xml.in.h:11 msgid "" @@ -122,9 +120,9 @@ "even the Eraser or the Smudge tool." msgstr "" "При обведенні контуру (Правка->Обвести за контуром), використовується " -"поточний інструмент малювання з усіма настройками. Ви можете використовувати " -"\"Пензель\" у режимі градієнта, або навіть інструменти \"Гумка\" чи \"Палець" -"\"." +"поточний інструмент малювання з усіма параметрами. Ви можете використовувати " +""Пензель" у режимі градієнта, або навіть інструменти "" +"Гумка" чи "Палець"." #: tips/gimp-tips.xml.in.h:12 msgid "" @@ -146,7 +144,6 @@ "бажаєте щоб доповнення діяло на все зображення." #: tips/gimp-tips.xml.in.h:14 -#, fuzzy msgid "" "Not all effects can be applied to all kinds of images. This is indicated by " "a grayed-out menu-entry. You may need to change the image mode to RGB (Image-" @@ -154,9 +151,9 @@ "Alpha Channel) or flatten it (Image->Flatten Image)." msgstr "" "Не всі ефекти можуть бути застосовані до усіх типів зображення. Це " -"позначується сірим кольором елемента меню. Можливо знадобиться перевести " +"позначується сірим кольором елементів меню. Можливо знадобиться перевести " "зображення у режим RGB (Зображення->Режим->RGB), додати канал " -"прозорості (Шари->Прозорість->Додати фльфа-канал) або об'єднати шари " +"прозорості (Шари->Прозорість->Додати альфа-канал) або об'єднати шари " "зображення (Зображення->Звести зображення)." #: tips/gimp-tips.xml.in.h:15 @@ -173,6 +170,8 @@ msgid "" "The GIMP can undo most changes to the image, so feel free to experiment." msgstr "" +"У GIMP можна скасувати більшість змін зображення, тому можете сміливо " +"експериментувати." #: tips/gimp-tips.xml.in.h:17 msgid "" @@ -180,8 +179,8 @@ ".bz2, if you have bzip2 installed) to the filename and your image " "will be saved compressed. Of course loading compressed images works too." msgstr "" -"GIMP підтримує стискання gzip \"на ходу\". Просто додайте .gz (чи " -".bz2, якщо у вас встановлено bzip2) до назви файлу, та ваше " +"GIMP підтримує стискання gzip "на ходу". Просто додайте .gz (чи .bz2, якщо у вас встановлено bzip2) до назви файлу, та ваше " "зображення буде збережено стисненим. Звичайно, стиснені зображення можна " "відкривати як звичайні." @@ -196,20 +195,18 @@ "перегляді ви бачите вміст одразу всіх плівок." #: tips/gimp-tips.xml.in.h:19 -#, fuzzy msgid "" "The layer named "Background" is special because it lacks " "transparency. This prevents you from moving the layer up in the stack. You " "may add transparency to it by right-clicking in the Layers dialog and " "selecting "Add Alpha Channel"." msgstr "" -"Шар \"Тло\" - особливий. У ньому відсутня прозорість. Це не дає змоги додати " -"до нього маску шару або перемістити шар вгору у стеку шарів. Можна додати до " -"нього прозорість, якщо натиснути праву кнопку миші у діалоговому вікні \"Шари" -"\" та вбрати \"Додати альфа-канал\"." +"Шар "Тло" - особливий. У ньому відсутня прозорість. Це не дає " +"змоги додати до нього маску шару або перемістити шар вгору у стеку шарів. " +"Можна додати до нього прозорість, якщо натиснути праву кнопку миші у " +"діалоговому вікні "Шари" та вибрати "Додати альфа-канал"." #: tips/gimp-tips.xml.in.h:20 -#, fuzzy msgid "" "To create a circle-shaped selection, hold Shift while doing an " "ellipse select. To place a circle precisely, drag horizontal and vertical " @@ -243,11 +240,10 @@ msgstr "" "Якщо ви бажаєте продовжити редагування зображення пізніше, збережіть його у " "форматі XCF. Це внутрішній формат GIMP (розширення файлів .xcf). У " -"ньому зберігаються стан всіх шарів, масок та інших частин зображення. Після " +"ньому зберігаються стан усіх шарів, масок та інших частин зображення. Після " "закінчення роботи над проектом можете зберегти його у JPEG, PNG, GIF, ..." #: tips/gimp-tips.xml.in.h:23 -#, fuzzy msgid "" "You can adjust or move a selection by using Alt-drag. If this makes " "the window move, your window manager uses the Alt key already. Try " @@ -273,16 +269,17 @@ "selections." msgstr "" "Можна створювати та редагувати складні ділянки виділення використовуючи " -"інструмент \"Контур\". У діалоговому вікні \"Контур\" можна працювати з " -"кількома контурами та перетворювати їх у виділення." +"інструмент "Контур". У діалоговому вікні "Контур" можна " +"працювати з кількома контурами та перетворювати їх у виділення." #: tips/gimp-tips.xml.in.h:26 msgid "" "You can drag a layer from the Layers dialog and drop it onto the toolbox. " "This will create a new image containing only that layer." msgstr "" -"Можна перемістити шар з діалогового вікна \"Шари\" на панель інструментів. " -"Це призведе до створення нового зображення, яке буде містити лише цей шар." +"Можна перемістити шар з діалогового вікна "Шари" на панель " +"інструментів. Це призведе до створення нового зображення, яке буде містити " +"лише цей шар." #: tips/gimp-tips.xml.in.h:27 msgid "" @@ -304,7 +301,7 @@ "Можна малювати прості квадрати чи кола використовуючи меню Правка->" "Обвести за контуром. Даний пункт меню обводить за контуром виділену ділянку. " "Більш складні геометричні фігури можна намалювати використовуючи інструмент " -"\"Контур\" або Фільтри->Візуалізація->Gfig." +""Контур" або Фільтри->Візуалізація->Gfig." #: tips/gimp-tips.xml.in.h:29 msgid "" @@ -312,7 +309,7 @@ "pressing the F1 key at any time. This also works inside the menus." msgstr "" "Контекстну довідку для більшості функцій та меню GIMP можна викликати " -"клавішею F1." +"клавішею F1. Це також працює у меню." #: tips/gimp-tips.xml.in.h:30 msgid "" @@ -321,10 +318,9 @@ msgstr "" "Більшість операцій з шарами можна вибрати з контекстного меню, що " "відкривається при натисканні правої кнопки миші на назві шару у діалоговому " -"вікні \"Шари\"." +"вікні "Шари"." #: tips/gimp-tips.xml.in.h:31 -#, fuzzy msgid "" "You can press or release the Shift and Ctrl keys while you " "are making a selection in order to constrain it to a square or a circle, or " @@ -364,7 +360,6 @@ "середню кнопку миші." #: tips/gimp-tips.xml.in.h:35 -#, fuzzy msgid "" "You can use the paint tools to change the selection. Click on the "" "Quick Mask" button at the bottom left of an image window. Change your " @@ -372,23 +367,6 @@ "it back to a normal selection." msgstr "" "Для редагування меж виділеної ділянки можна використовувати інструменти " -"малювання. Для цього необхідно увімкнути \"Швидка маска\" у нижньому лівому " -"куті вінка зображення, відредагувати виділену ділянку інструментом " +"малювання. Для цього необхідно увімкнути "Швидка маска" у нижньому " +"лівому куті вінка зображення, відредагувати виділену ділянку інструментом " "малювання, потім ще раз натиснути кнопку для переходу у звичайний режим." - -#~ msgid "" -#~ "The file selection dialog box has command-line completion with Tab, just like the shell. Type part of a filename, hit Tab, and " -#~ "voila, it's completed." -#~ msgstr "" -#~ "Як і у командному рядку, у діалозі вибору файлу можна користуватись " -#~ "клавішею Tab для доповнення назв. Введіть частину назви, " -#~ "натисніть Tab, назва буде доповнена." - -#~ msgid "" -#~ "Nearly all image operations are performed by right-clicking on the image. " -#~ "And don't worry, you can undo most mistakes..." -#~ msgstr "" -#~ "Майже всі дії можна виконати з контекстного меню, що з'являється при " -#~ "натисканні правої кнопки миші. Та не переймайтесь, більшість дій можна " -#~ "скувати..." diff -uraN gimp-2.2.4/tools/pdbgen/pdb/drawable_transform.pdb gimp-2.2.5/tools/pdbgen/pdb/drawable_transform.pdb --- gimp-2.2.4/tools/pdbgen/pdb/drawable_transform.pdb 2004-11-28 00:51:39.000000000 +0100 +++ gimp-2.2.5/tools/pdbgen/pdb/drawable_transform.pdb 2005-03-14 11:00:57.000000000 +0100 @@ -571,7 +571,7 @@ &matrix); CODE trans_info[X0] < trans_info[X1] && - trans_info[Y0] < trans_info[X1]); + trans_info[Y0] < trans_info[Y1]); CODE2 } @@ -618,7 +618,7 @@ &matrix); CODE trans_info[X0] < trans_info[X1] && - trans_info[Y0] < trans_info[X1]); + trans_info[Y0] < trans_info[Y1]); CODE2 } diff -uraN gimp-2.2.4/tools/pdbgen/pdb/plug_in.pdb gimp-2.2.5/tools/pdbgen/pdb/plug_in.pdb --- gimp-2.2.4/tools/pdbgen/pdb/plug_in.pdb 2004-11-18 02:57:13.000000000 +0100 +++ gimp-2.2.5/tools/pdbgen/pdb/plug_in.pdb 2005-04-07 12:54:36.000000000 +0200 @@ -65,7 +65,8 @@ %invoke = ( headers => [ qw("libgimpbase/gimpbase.h") ], - vars => [ 'GSList *list', 'gint i = 0', 'regex_t sregex' ], + vars => [ 'GSList *list', 'GSList *matched = NULL', 'gint i = 0', + 'regex_t sregex' ], code => <<'CODE' { if (search_str && strlen (search_str)) @@ -99,10 +100,15 @@ name = proc_def->menu_paths->data; } - if (search_str && match_strings (&sregex, name)) - continue; + name = gimp_strip_uline (name); - num_plugins++; + if (! search_str || ! match_strings (&sregex, name)) + { + num_plugins++; + matched = g_slist_prepend (matched, proc_def); + } + + g_free (name); } } @@ -113,55 +119,35 @@ realname_strs = g_new (gchar *, num_plugins); time_ints = g_new (gint , num_plugins); - for (list = gimp->plug_in_proc_defs; list; list = g_slist_next (list)) + matched = g_slist_reverse (matched); + + for (list = matched; list; list = g_slist_next (list)) { PlugInProcDef *proc_def = list->data; + ProcRecord *proc_rec = &proc_def->db_info; + gchar *name; - if (i > num_plugins) - g_error ("Internal error counting plugins"); - - if (proc_def->prog && proc_def->menu_paths) - { - ProcRecord *pr = &proc_def->db_info; - gchar *name; - - if (proc_def->menu_label) - { - name = proc_def->menu_label; - } - else - { - name = strrchr (proc_def->menu_paths->data, '/'); - - if (name) - name = name + 1; - else - name = proc_def->menu_paths->data; - } - - if (search_str && match_strings (&sregex, name)) - continue; + if (proc_def->menu_label) + name = g_strdup_printf ("%s/%s", + (gchar *) proc_def->menu_paths->data, + proc_def->menu_label); + else + name = g_strdup (proc_def->menu_paths->data); - if (proc_def->menu_label) - name = g_strdup_printf ("%s/%s", - (gchar *) proc_def->menu_paths->data, - proc_def->menu_label); - else - name = g_strdup (proc_def->menu_paths->data); + menu_strs[i] = gimp_strip_uline (name); + accel_strs[i] = NULL; + prog_strs[i] = g_strdup (proc_def->prog); + types_strs[i] = g_strdup (proc_def->image_types); + realname_strs[i] = g_strdup (proc_rec->name); + time_ints[i] = proc_def->mtime; - menu_strs[i] = gimp_strip_uline (name); - accel_strs[i] = NULL; - prog_strs[i] = g_strdup (proc_def->prog); - types_strs[i] = g_strdup (proc_def->image_types); - realname_strs[i] = g_strdup (pr->name); - time_ints[i] = proc_def->mtime; + g_free (name); - g_free (name); - - i++; - } + i++; } + g_slist_free (matched); + if (search_str) regfree (&sregex); } diff -uraN gimp-2.2.4/tools/pdbgen/pdb/transform_tools.pdb gimp-2.2.5/tools/pdbgen/pdb/transform_tools.pdb --- gimp-2.2.4/tools/pdbgen/pdb/transform_tools.pdb 2004-11-16 16:25:13.000000000 +0100 +++ gimp-2.2.5/tools/pdbgen/pdb/transform_tools.pdb 2005-03-14 11:00:57.000000000 +0100 @@ -215,7 +215,7 @@ success = (gimp_item_is_attached (GIMP_ITEM (drawable)) && trans_info[X0] < trans_info[X1] && - trans_info[Y0] < trans_info[X1]); + trans_info[Y0] < trans_info[Y1]); if (success && gimp_drawable_mask_intersect (drawable, &x, &y, &width, &height))