diff --git a/ChangeLog b/ChangeLog index 6ae9d49dcf..b7fefe03bf 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,34 @@ +Tue Mar 14 22:13:35 CET 2000 Sven Neumann + Michael Natterer + + * Makefile.am + * pixmaps/folder.xpm: new file. + * pixmaps/wilber.xpm: removed the shadows. + + * gimprc.in + * user_install: cleanup. + + * app/app_procs.c: only parse unitrc and gimprc if not already + done by install.c. + + * app/gimprc.[ch]: cleanups. parse_buffers_init() returns a + boolean indicating if the buffers are really initialized. + + * app/gimpui.h: include some more stuff from libgimp. + + * app/install.c: Gimp's most beautiful dialog should blow away + first time users. + (does not yet work with themes, please help) + + * app/preferences_dialog.c: removed the mem_size_unit stuff. + + * libgimp/gimpchainbutton.c: cleanup. + + * libgimp/gimpwidgets.[ch]: new function gimp_mem_size_entry_new() + which does the stuff known from the prefs dialog. + + * plug-ins/script-fu/scripts/tileblur.scm: s/tilable/tileable/ + Sun Mar 12 04:26:41 CET 2000 Sven Neumann * plug-ins/gfig.c: reduced the preview_size and tweaked the dialog diff --git a/Makefile.am b/Makefile.am index 0446de4661..79d43149a5 100644 --- a/Makefile.am +++ b/Makefile.am @@ -62,6 +62,7 @@ EXTRA_DIST = \ pixmaps/eek.xpm \ pixmaps/eye.xbm \ pixmaps/first.xpm \ + pixmaps/folder.xpm \ pixmaps/last.xpm \ pixmaps/layer.xbm \ pixmaps/linked.xbm \ diff --git a/app/app_procs.c b/app/app_procs.c index 3a5cafa540..06344cd54a 100644 --- a/app/app_procs.c +++ b/app/app_procs.c @@ -505,9 +505,11 @@ app_init (void) color_display_init (); RESET_BAR(); - parse_buffers_init (); - parse_unitrc (); /* this needs to be done before gimprc loading */ - parse_gimprc (); /* parse the local GIMP configuration file */ + if (parse_buffers_init ()) + { + parse_unitrc (); /* this needs to be done before gimprc loading */ + parse_gimprc (); /* parse the local GIMP configuration file */ + } if (always_restore_session) restore_session = TRUE; diff --git a/app/dialogs/preferences-dialog.c b/app/dialogs/preferences-dialog.c index 4b18d289e9..f3da9dd9cb 100644 --- a/app/dialogs/preferences-dialog.c +++ b/app/dialogs/preferences-dialog.c @@ -32,11 +32,8 @@ #include "session.h" #include "tile_cache.h" -#include "libgimp/gimpchainbutton.h" -#include "libgimp/gimpfileselection.h" -#include "libgimp/gimppatheditor.h" -#include "libgimp/gimpsizeentry.h" #include "libgimp/gimplimits.h" +#include "libgimp/gimpmath.h" #include "libgimp/gimpintl.h" @@ -61,8 +58,6 @@ static void file_prefs_cancel_callback (GtkWidget *, GtkWidget *); static void file_prefs_toggle_callback (GtkWidget *, gpointer); static void file_prefs_preview_size_callback (GtkWidget *, gpointer); static void file_prefs_nav_preview_size_callback (GtkWidget *, gpointer); -static void file_prefs_mem_size_callback (GtkWidget *, gpointer); -static void file_prefs_mem_size_unit_callback (GtkWidget *, gpointer); static void file_prefs_string_callback (GtkWidget *, gpointer); static void file_prefs_text_callback (GtkWidget *, gpointer); static void file_prefs_filename_callback (GtkWidget *, gpointer); @@ -982,67 +977,6 @@ file_prefs_nav_preview_size_callback (GtkWidget *widget, gdisplays_nav_preview_resized (); } -static void -file_prefs_mem_size_callback (GtkWidget *widget, - gpointer data) -{ - gint *mem_size; - gint divided_mem_size; - gint mem_size_unit; - - if (! (mem_size = gtk_object_get_data (GTK_OBJECT (widget), "mem_size"))) - return; - - divided_mem_size = (int) gtk_object_get_data (GTK_OBJECT (widget), - "divided_mem_size"); - mem_size_unit = (int) gtk_object_get_data (GTK_OBJECT (widget), - "mem_size_unit"); - - divided_mem_size = GTK_ADJUSTMENT (widget)->value; - *mem_size = divided_mem_size * mem_size_unit; - - gtk_object_set_data (GTK_OBJECT (widget), "divided_mem_size", - (gpointer) divided_mem_size); -} - -static void -file_prefs_mem_size_unit_callback (GtkWidget *widget, - gpointer data) -{ - GtkObject *adjustment; - gint new_unit; - gint *mem_size; - gint divided_mem_size; - gint mem_size_unit; - - adjustment = GTK_OBJECT (data); - - new_unit = (int) gtk_object_get_user_data (GTK_OBJECT (widget)); - - if (! (mem_size = gtk_object_get_data (GTK_OBJECT (adjustment), "mem_size"))) - return; - - divided_mem_size = (int) gtk_object_get_data (GTK_OBJECT (adjustment), - "divided_mem_size"); - mem_size_unit = (int) gtk_object_get_data (GTK_OBJECT (adjustment), - "mem_size_unit"); - - if (new_unit != mem_size_unit) - { - divided_mem_size = *mem_size / new_unit; - mem_size_unit = new_unit; - - gtk_signal_handler_block_by_data (GTK_OBJECT (adjustment), mem_size); - gtk_adjustment_set_value (GTK_ADJUSTMENT (adjustment), divided_mem_size); - gtk_signal_handler_unblock_by_data (GTK_OBJECT (adjustment), mem_size); - } - - gtk_object_set_data (GTK_OBJECT (adjustment), "divided_mem_size", - (gpointer) divided_mem_size); - gtk_object_set_data (GTK_OBJECT (adjustment), "mem_size_unit", - (gpointer) mem_size_unit); -} - static void file_prefs_string_callback (GtkWidget *widget, gpointer data) @@ -1384,8 +1318,6 @@ file_pref_cmd_callback (GtkWidget *widget, GSList *group; gint i; - gint divided_mem_size; - gint mem_size_unit; gchar *pixels_per_unit; if (prefs_dlg) @@ -1675,46 +1607,13 @@ file_pref_cmd_callback (GtkWidget *widget, _("Default Image Type:"), 1.0, 0.5, optionmenu, 1, TRUE); - /* The maximum size of a new image */ - mem_size_unit = 1; - for (i = 0; i < 3; i++) - { - if (max_new_image_size % (mem_size_unit * 1024) != 0) - break; - mem_size_unit *= 1024; - } - divided_mem_size = max_new_image_size / mem_size_unit; - - hbox = gtk_hbox_new (FALSE, 2); - spinbutton = - gimp_spin_button_new (&adjustment, divided_mem_size, - 0.0, (4069.0 * 1024 * 1024), 1.0, 16.0, 0.0, - 1.0, 0.0); + /* The maximum size of a new image */ + adjustment = gtk_adjustment_new (max_new_image_size, + 0, (4069.0 * 1024 * 1024), 1.0, 1.0, 0.0); + hbox = gimp_mem_size_entry_new (GTK_ADJUSTMENT (adjustment)); gtk_signal_connect (GTK_OBJECT (adjustment), "value_changed", - GTK_SIGNAL_FUNC (file_prefs_mem_size_callback), + GTK_SIGNAL_FUNC (gimp_int_adjustment_update), &max_new_image_size); - gtk_box_pack_start (GTK_BOX (hbox), spinbutton, FALSE, FALSE, 0); - gtk_widget_show (spinbutton); - - /* for the mem_size_unit callback */ - gtk_object_set_data (GTK_OBJECT (adjustment), "mem_size", - &max_new_image_size); - gtk_object_set_data (GTK_OBJECT (adjustment), "divided_mem_size", - (gpointer) divided_mem_size); - gtk_object_set_data (GTK_OBJECT (adjustment), "mem_size_unit", - (gpointer) mem_size_unit); - - optionmenu = - gimp_option_menu_new2 (FALSE, file_prefs_mem_size_unit_callback, - adjustment, (gpointer) mem_size_unit, - - _("Bytes"), (gpointer) 1, NULL, - _("KiloBytes"), (gpointer) 1024, NULL, - _("MegaBytes"), (gpointer) (1024 * 1024), NULL, - - NULL); - gtk_box_pack_start (GTK_BOX (hbox), optionmenu, FALSE, FALSE, 0); - gtk_widget_show (optionmenu); gimp_table_attach_aligned (GTK_TABLE (table), 0, 1, _("Maximum Image Size:"), 1.0, 0.5, hbox, 1, TRUE); @@ -1725,8 +1624,8 @@ file_pref_cmd_callback (GtkWidget *widget, GTK_CTREE (ctree), _("Default Comment"), "dialogs/preferences/default_comment.html", - NULL, - &top_insert, + top_insert, + &child_insert, page_index); gtk_widget_show (vbox); page_index++; @@ -2193,45 +2092,12 @@ file_pref_cmd_callback (GtkWidget *widget, spinbutton, 1, TRUE); /* The tile cache size */ - mem_size_unit = 1; - for (i = 0; i < 3; i++) - { - if (edit_tile_cache_size % (mem_size_unit * 1024) != 0) - break; - mem_size_unit *= 1024; - } - divided_mem_size = edit_tile_cache_size / mem_size_unit; - - hbox = gtk_hbox_new (FALSE, 2); - spinbutton = - gimp_spin_button_new (&adjustment, divided_mem_size, - 0.0, (4069.0 * 1024 * 1024), 1.0, 16.0, 0.0, - 1.0, 0.0); + adjustment = gtk_adjustment_new (edit_tile_cache_size, + 0, (4069.0 * 1024 * 1024), 1.0, 1.0, 0.0); + hbox = gimp_mem_size_entry_new (GTK_ADJUSTMENT (adjustment)); gtk_signal_connect (GTK_OBJECT (adjustment), "value_changed", - GTK_SIGNAL_FUNC (file_prefs_mem_size_callback), + GTK_SIGNAL_FUNC (gimp_int_adjustment_update), &edit_tile_cache_size); - gtk_box_pack_start (GTK_BOX (hbox), spinbutton, FALSE, FALSE, 0); - gtk_widget_show (spinbutton); - - /* for the mem_size_unit callback */ - gtk_object_set_data (GTK_OBJECT (adjustment), "mem_size", - &edit_tile_cache_size); - gtk_object_set_data (GTK_OBJECT (adjustment), "divided_mem_size", - (gpointer) divided_mem_size); - gtk_object_set_data (GTK_OBJECT (adjustment), "mem_size_unit", - (gpointer) mem_size_unit); - - optionmenu = - gimp_option_menu_new2 (FALSE, file_prefs_mem_size_unit_callback, - adjustment, (gpointer) mem_size_unit, - - _("Bytes"), (gpointer) 1, NULL, - _("KiloBytes"), (gpointer) 1024, NULL, - _("MegaBytes"), (gpointer) (1024 * 1024), NULL, - - NULL); - gtk_box_pack_start (GTK_BOX (hbox), optionmenu, FALSE, FALSE, 0); - gtk_widget_show (optionmenu); gimp_table_attach_aligned (GTK_TABLE (table), 0, 1, _("Tile Cache Size:"), 1.0, 0.5, hbox, 1, TRUE); @@ -2387,14 +2253,15 @@ file_pref_cmd_callback (GtkWidget *widget, vbox2 = file_prefs_frame_new (_("Get Monitor Resolution"), GTK_BOX (vbox)); { - gdouble xres, yres; - gchar buf[80]; + gdouble xres, yres; + gchar *str; gdisplay_xserver_resolution (&xres, &yres); - g_snprintf (buf, sizeof (buf), _("(Currently %d x %d dpi)"), - (int) (xres + 0.5), (int) (yres + 0.5)); - label = gtk_label_new (buf); + str = g_strdup_printf (_("(Currently %d x %d dpi)"), + ROUND (xres), ROUND (yres)); + label = gtk_label_new (str); + g_free (str); } abox = gtk_alignment_new (0.5, 0.5, 0.0, 0.0); diff --git a/app/dialogs/user-install-dialog.c b/app/dialogs/user-install-dialog.c index 2c47d27a6b..10e92de788 100644 --- a/app/dialogs/user-install-dialog.c +++ b/app/dialogs/user-install-dialog.c @@ -29,11 +29,20 @@ #include "appenv.h" #include "install.h" +#include "gdisplay_ops.h" #include "gimprc.h" #include "gimpui.h" +#include "unitrc.h" + +#include "libgimp/gimpenv.h" +#include "libgimp/gimplimits.h" +#include "libgimp/gimpmath.h" #include "libgimp/gimpintl.h" -#include "libgimp/gimpenv.h" + +#include "pixmaps/wilber.xpm" +#include "pixmaps/new.xpm" +#include "pixmaps/folder.xpm" #ifndef G_OS_WIN32 # ifndef __EMX__ @@ -48,26 +57,29 @@ # define USER_INSTALL "user_install.bat" #endif -static void install_run (InstallCallback); -static void install_help (InstallCallback); -static void help_install_callback (GtkWidget *, gpointer); -static void help_ignore_callback (GtkWidget *, gpointer); -static void help_quit_callback (GtkWidget *, gpointer); -static void install_continue_callback (GtkWidget *, gpointer); -static void install_quit_callback (GtkWidget *, gpointer); +#define NUM_PAGES 5 +#define WILBER_WIDTH 62 + +static void install_dialog_create (InstallCallback); +static void install_continue_callback (GtkWidget *widget, gpointer data); +static void install_cancel_callback (GtkWidget *widget, gpointer data); + +static gboolean install_run (void); +static void install_tuning (void); +static void install_tuning_done (void); +static void install_resolution (void); +static void install_resolution_done (void); -static GtkWidget *help_widget; -static GtkWidget *install_widget; void install_verify (InstallCallback install_callback) { - int properly_installed = TRUE; - char *filename; + gboolean properly_installed = TRUE; + gchar *filename; struct stat stat_buf; - filename = gimp_directory (); /* gimp_directory now always returns something */ + filename = gimp_directory (); if (stat (filename, &stat_buf) != 0) properly_installed = FALSE; @@ -88,282 +100,674 @@ install_verify (InstallCallback install_callback) } else { - install_help (install_callback); + install_dialog_create (install_callback); } } +/* private stuff */ + +static GtkWidget *install_dialog = NULL; + +static GtkWidget *notebook = NULL; +static gint notebook_index = 0; + +static GtkWidget *log_page = NULL; +static GtkWidget *tuning_page = NULL; +static GtkWidget *resolution_page = NULL; + +static GtkWidget *continue_button = NULL; + +static GtkStyle *title_style = NULL; +static GdkFont *large_font = NULL; + +static GtkStyle *page_style = NULL; +static GdkColormap *colormap = NULL; + +static GdkGC *white_gc = NULL; + +static GdkColor black_color; +static GdkColor white_color; +static GdkColor title_color; + +static struct +{ + gboolean directory; + gchar *text; + gchar *description; +} +tree_items[] = +{ + { + FALSE, "gimprc", + N_("The gimprc is used to store personal preferences\n" + "that affect GIMP's default behavior.\n" + "Paths to search for brushes, palettes, gradients,\n" + "patterns, plug-ins and modules can also configured here.") + }, + { + FALSE, "gtkrc", + N_("GIMP uses an additional gtkrc file so you can\n" + "configure it to look differently than other GTK apps.") + }, + { + FALSE, "pluginrc", + N_("Plug-ins and extensions are external programs run by\n" + "the GIMP which provide additional functionality.\n" + "These programs are searched for at run-time and\n" + "information about their functionality and mod-times\n" + "is cached in this file. This file is intended to\n" + "be GIMP-readable only, and should not be edited.") + }, + { + FALSE, "menurc", + N_("Key shortcuts can be dynamically redefined in The GIMP.\n" + "The menurc is a dump of your configuration so it can.\n" + "be remembered for the next session. You may edit this\n" + "file if you wish, but it is much easier to define the\n" + "keys from within The GIMP. Deleting this file will\n" + "restore the default shortcuts.") + }, + { + FALSE, "sessionrc", + N_("The sessionrc is used to store what dialog windows were\n" + "open the last time you quit The GIMP. You can configure\n" + "The GIMP to reopen these dialogs at the saved position.") + }, + { + FALSE, "unitrc", + N_("The unitrc is used to store your user units database.\n" + "You can define additional units and use them just\n" + "like you use the built-in units inches, millimeters,\n" + "points and picas. This file is overwritten each time\n" + "you quit the GIMP.") + }, + { + TRUE, "brushes", + N_("This is a subdirectory which can be used to store\n" + "user defined brushes. The default gimprc file\n" + "checks this subdirectory in addition to the system-\n" + "wide gimp brushes installation when searching for\n" + "brushes.") + }, + { + TRUE, "generated_brushes", + N_("This is a subdirectory which is used to store brushes\n" + "that are created with the brush editor. The default\n" + "gimprc file checks this subdirectory when searching for\n" + "generated brushes.") + }, + { + TRUE, "gradients", + N_("This is a subdirectory which can be used to store\n" + "user defined gradients. The default gimprc file\n" + "checks this subdirectory in addition to the system-\n" + "wide gimp gradients installation when searching for\n" + "gradients.") + }, + { + TRUE, "palettes", + N_("This is a subdirectory which can be used to store\n" + "user defined palettes. The default gimprc file\n" + "checks only this subdirectory (not the system-wide\n" + "installation) when searching for palettes. During\n" + "installation, the system palettes will be copied\n" + "here. This is done to allow modifications made to\n" + "palettes during GIMP execution to persist across\n" + "sessions.") + }, + { + TRUE, "patterns", + N_("This is a subdirectory which can be used to store\n" + "user defined patterns. The default gimprc file\n" + "checks this subdirectory in addition to the system-\n" + "wide gimp patterns installation when searching for\n" + "patterns.") + }, + { + TRUE, "plug-ins", + N_("This is a subdirectory which can be used to store\n" + "user created, temporary, or otherwise non-system-\n" + "supported plug-ins. The default gimprc file\n" + "checks this subdirectory in addition to the system-\n" + "wide GIMP plug-in directories when searching for\n" + "plug-ins.") + }, + { + TRUE, "modules", + N_("This subdirectory can be used to store user created,\n" + "temporary, or otherwise non-system-supported DLL modules.\n" + "The default gimprc file checks this subdirectory\n" + "in addition to the system-wide GIMP module directory\n" + "when searching for modules to load when initializing.") + }, + { + TRUE, "scripts", + N_("This subdirectory is used by the GIMP to store \n" + "user created and installed scripts. The default gimprc\n" + "file checks this subdirectory in addition to the system-\n" + "wide gimp scripts subdirectory when searching for scripts") + }, + { + TRUE, "tmp", + N_("This subdirectory is used by the GIMP to temporarily\n" + "store undo buffers to reduce memory usage. If GIMP is\n" + "unceremoniously killed, files may persist in this directory\n" + "of the form: gimp<#>.<#>. These files are useless across\n" + "GIMP sessions and can be destroyed with impunity.") + }, + { + TRUE, "curves", + N_("This subdirectory is used to store parameter files for\n" + "the Curves tool.") + }, + { + TRUE, "levels", + N_("This subdirectory is used to store parameter files for\n" + "the Levels tool.") + }, + { + TRUE, "fractalexplorer", + N_("This is a subdirectory which can be used to store\n" + "user defined fractals to be used by the FractalExplorer\n" + "plug-in. The default gimprc file checks this subdirectory in\n" + "addition to the systemwide gimp FractalExplorer installation\n" + "when searching for fractals.") + }, + { + TRUE, "gfig", + N_("This is a subdirectory which can be used to store\n" + "user defined figures to be used by the gfig plug-in.\n" + "The default gimprc file checks this subdirectory in\n" + "addition to the systemwide gimp gfig installation\n" + "when searching for gfig figures.") + }, + { + TRUE, "gflare", + N_("This is a subdirectory which can be used to store\n" + "user defined gflares to be used by the gflare plug-in.\n" + "The default gimprc file checks this subdirectory in\n" + "addition to the systemwide gimp gflares installation\n" + "when searching for gflares.") + }, + { + TRUE, "gimpressionist", + N_("This is a subdirectory which can be used to store\n" + "user defined data to be used by the Gimpressionist\n" + "plug-in. The default gimprc file checks this subdirectory in\n" + "addition to the systemwide gimp Gimpressionist installation\n" + "when searching for data.") + } +}; +static gint num_tree_items = sizeof (tree_items) / sizeof (tree_items[0]); + + +static void +install_continue_callback (GtkWidget *widget, + gpointer data) +{ + InstallCallback callback; + + callback = (InstallCallback) data; + + switch (notebook_index) + { + case 0: + break; + + case 1: + if (!install_run ()) + gtk_widget_set_sensitive (continue_button, FALSE); + break; + + case 2: +#ifdef G_OS_WIN32 + FreeConsole (); +#endif + parse_buffers_init (); + parse_unitrc (); + parse_gimprc (); + install_tuning (); + break; + + case 3: + install_tuning_done (); + install_resolution (); + break; + + case 4: + install_resolution_done (); + gtk_widget_destroy (install_dialog); + gdk_gc_unref (white_gc); + + (* callback) (); + break; + } + + if (notebook_index < NUM_PAGES - 1) + gtk_notebook_set_page (GTK_NOTEBOOK (notebook), ++notebook_index); +} + + +static void +install_cancel_callback (GtkWidget *widget, + gpointer data) +{ + gtk_widget_destroy (install_dialog); + gtk_exit (0); +} + +static gint +install_corner_expose (GtkWidget *widget, + GdkEventExpose *eevent, + gpointer data) +{ + gdk_draw_arc (widget->window, + white_gc, + TRUE, + 0, 0, + widget->allocation.width * 2, widget->allocation.height * 2, + 90 * 64, + 180 * 64); + + return TRUE; +} + +static GtkWidget * +install_notebook_append_page (GtkNotebook *notebook, + gchar *title) +{ + GtkWidget *page; + GtkWidget *vbox; + GtkWidget *hbox; + GtkWidget *ebox; + GtkWidget *wilber; + GtkWidget *label; + GtkWidget *table; + GtkWidget *darea; + + page = gtk_vbox_new (FALSE, 0); + + gtk_widget_push_style (title_style); + + ebox = gtk_event_box_new (); + gtk_widget_set_events (ebox, GDK_EXPOSURE_MASK); + gtk_widget_set_usize (ebox, WILBER_WIDTH + 16, -1); + gtk_box_pack_start (GTK_BOX (page), ebox, FALSE, FALSE, 0); + gtk_widget_show (ebox); + + hbox = gtk_hbox_new (FALSE, 8); + gtk_container_set_border_width (GTK_CONTAINER (hbox), 8); + gtk_container_add (GTK_CONTAINER (ebox), hbox); + gtk_widget_show (hbox); + + wilber = gimp_pixmap_new (wilber_xpm); + gtk_box_pack_start (GTK_BOX (hbox), wilber, FALSE, FALSE, 8); + gtk_widget_show (wilber); + + label = gtk_label_new (title); + gtk_label_set_justify (GTK_LABEL (label), GTK_JUSTIFY_LEFT); + gtk_box_pack_start (GTK_BOX (hbox), label, FALSE, FALSE, 0); + gtk_widget_show (label); + + gtk_widget_pop_style (); + + hbox = gtk_hbox_new (FALSE, 0); + gtk_box_pack_start (GTK_BOX (page), hbox, TRUE, TRUE, 0); + gtk_widget_show (hbox); + + gtk_widget_push_style (title_style); + + ebox = gtk_event_box_new (); + gtk_widget_set_usize (ebox, 16, -1); + gtk_box_pack_start (GTK_BOX (hbox), ebox, FALSE, FALSE, 0); + gtk_widget_show (ebox); + + gtk_widget_pop_style (); + + ebox = gtk_event_box_new (); + gtk_box_pack_start (GTK_BOX (hbox), ebox, TRUE, TRUE, 0); + gtk_widget_show (ebox); + + table = gtk_table_new (3, 3, FALSE); + gtk_table_set_row_spacing (GTK_TABLE (table), 1, 8); + gtk_table_set_col_spacing (GTK_TABLE (table), 1, 8); + gtk_container_add (GTK_CONTAINER (ebox), table); + gtk_widget_show (table); + + gtk_widget_push_style (title_style); + + darea = gtk_drawing_area_new (); + gtk_drawing_area_size (GTK_DRAWING_AREA (darea), 16, 16); + gtk_signal_connect_after (GTK_OBJECT (darea), "expose_event", + GTK_SIGNAL_FUNC (install_corner_expose), + NULL); + gtk_table_attach (GTK_TABLE (table), darea, 0, 1, 0, 1, + GTK_SHRINK, GTK_SHRINK, 0, 0); + gtk_widget_show (darea); + + gtk_widget_pop_style (); + + vbox = gtk_vbox_new (FALSE, 6); + gtk_table_attach_defaults (GTK_TABLE (table), vbox, 1, 2, 1, 2); + gtk_widget_show (vbox); + + gtk_widget_show (page); + + gtk_notebook_append_page (GTK_NOTEBOOK (notebook), page, NULL); + + return vbox; +} + +static void +add_label (GtkBox *box, + gboolean last_line, + gchar *text) +{ + GtkWidget *label; + + label = gtk_label_new (text); + gtk_label_set_justify (GTK_LABEL (label), GTK_JUSTIFY_LEFT); + + if (last_line) + { + gtk_misc_set_alignment (GTK_MISC (label), 1.0, 0.5); + gtk_box_pack_end (box, label, FALSE, FALSE, 0); + } + else + { + gtk_misc_set_alignment (GTK_MISC (label), 0.0, 0.5); + gtk_box_pack_start (box, label, FALSE, FALSE, 0); + } + + gtk_widget_show (label); +} + +static void +install_ctree_select_row (GtkWidget *widget, + gint row, + gint column, + GdkEventButton *bevent, + gpointer data) +{ + GtkNotebook *notebook; + + notebook = (GtkNotebook*) data; + + gtk_notebook_set_page (notebook, row); +} + +void +install_dialog_create (InstallCallback callback) +{ + GtkWidget *dialog; + GtkWidget *page; + GtkWidget *sep; + + notebook_index = 0; + + dialog = install_dialog = + gimp_dialog_new (_("GIMP User Installation"), "user_installation", + NULL, NULL, + GTK_WIN_POS_CENTER, + FALSE, FALSE, FALSE, + + _("Continue"), install_continue_callback, + callback, NULL, &continue_button, TRUE, FALSE, + _("Cancel"), install_cancel_callback, + callback, 1, NULL, FALSE, TRUE, + + NULL); + + gtk_widget_realize (dialog); + + /* B/W Style for the page contents */ + page_style = gtk_style_copy (dialog->style); + colormap = gtk_widget_get_colormap (dialog); + + gdk_color_black (colormap, &black_color); + gdk_color_white (colormap, &white_color); + + page_style->fg[GTK_STATE_NORMAL] = black_color; + page_style->text[GTK_STATE_NORMAL] = black_color; + page_style->bg[GTK_STATE_NORMAL] = white_color; + + /* B/Colored Style for the page title */ + title_style = gtk_style_copy (page_style); + + if (gdk_color_parse ("sienna1", &title_color) && + gdk_colormap_alloc_color (colormap, &title_color, FALSE, TRUE)) + { + title_style->bg[GTK_STATE_NORMAL] = title_color; + } + + /* this is a fontset, e.g. multiple comma-separated font definitions */ + large_font = gdk_fontset_load (_("-*-helvetica-bold-r-normal-*-*-240-*-*-*-*-*-*,*")); + + title_style->font = large_font; + + /* W/W GC for the corner */ + white_gc = gdk_gc_new (dialog->window); + gdk_gc_set_foreground (white_gc, &white_color); + + gtk_widget_push_style (page_style); + + notebook = gtk_notebook_new (); + gtk_notebook_set_show_tabs (GTK_NOTEBOOK (notebook), FALSE); + gtk_notebook_set_show_border (GTK_NOTEBOOK (notebook), FALSE); + gtk_container_add (GTK_CONTAINER (GTK_DIALOG (dialog)->vbox), notebook); + gtk_widget_show (notebook); + + /* Page 1 */ + page = install_notebook_append_page (GTK_NOTEBOOK (notebook), + _("Welcome to\n" + "The GIMP User Installation")); + + add_label (GTK_BOX (page), FALSE, + _("The GIMP - GNU Image Manipulation Program\n" + "Copyright (C) 1995-2000\n" + "Spencer Kimball, Peter Mattis and the GIMP Development Team.")); + + sep = gtk_hseparator_new (); + gtk_box_pack_start (GTK_BOX (page), sep, FALSE, FALSE, 2); + gtk_widget_show (sep); + + add_label (GTK_BOX (page), FALSE, + _("This program is free software; you can redistribute it and/or modify\n" + "it under the terms of the GNU General Public License as published by\n" + "the Free Software Foundation; either version 2 of the License, or\n" + "(at your option) any later version.")); + add_label (GTK_BOX (page), FALSE, + _("This program is distributed in the hope that it will be useful,\n" + "but WITHOUT ANY WARRANTY; without even the implied warranty of\n" + "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n" + "See the GNU General Public License for more details.")); + add_label (GTK_BOX (page), FALSE, + _("You should have received a copy of the GNU General Public License\n" + "along with this program; if not, write to the Free Software\n" + "Foundation, Inc., 59 Temple Place - Suite 330, Boston,\n" + "MA 02111-1307, USA.")); + + add_label (GTK_BOX (page), TRUE, + _("Click \"Continue\" to enter the GIMP user installation.")); + + sep = gtk_hseparator_new (); + gtk_box_pack_end (GTK_BOX (page), sep, FALSE, FALSE, 2); + gtk_widget_show (sep); + + /* Page 2 */ + { + GtkWidget *hbox; + GtkWidget *vbox; + GtkWidget *ctree; + GtkWidget *notebook2; + GtkWidget *page2; + GtkWidget *label; + GtkCTreeNode *main_node = NULL; + GtkCTreeNode *sub_node = NULL; + GdkPixmap *file_pixmap; + GdkBitmap *file_mask; + GdkPixmap *folder_pixmap; + GdkBitmap *folder_mask; + + gint i; + + gchar *node[1]; + + page = install_notebook_append_page (GTK_NOTEBOOK (notebook), + _("Personal GIMP Directory")); + + hbox = gtk_hbox_new (FALSE, 8); + gtk_box_pack_start (GTK_BOX (page), hbox, FALSE, FALSE, 0); + gtk_widget_show (hbox); + + ctree = gtk_ctree_new (1, 0); + gtk_ctree_set_indent (GTK_CTREE (ctree), 12); + gtk_clist_set_shadow_type (GTK_CLIST (ctree), GTK_SHADOW_NONE); + gtk_box_pack_start (GTK_BOX (hbox), ctree, FALSE, FALSE, 0); + gtk_widget_show (ctree); + + vbox = gtk_vbox_new (FALSE, 6); + gtk_box_pack_start (GTK_BOX (hbox), vbox, TRUE, TRUE, 0); + gtk_widget_show (vbox); + + add_label (GTK_BOX (vbox), FALSE, + _("For a proper GIMP installation, a subdirectory needs to be created.\n" + "This subdirectory will contain a number of important files.")); + add_label (GTK_BOX (vbox), FALSE, + _("Click on one of the files or subdirectories in the tree\n" + "to get more information about the selected item.")); + add_label (GTK_BOX (vbox), TRUE, + _("Click \"Continue\" to create your personal GIMP directory.")); + + notebook2 = gtk_notebook_new (); + gtk_container_set_border_width (GTK_CONTAINER (notebook2), 8); + gtk_notebook_set_show_tabs (GTK_NOTEBOOK (notebook2), FALSE); + gtk_notebook_set_show_border (GTK_NOTEBOOK (notebook2), FALSE); + gtk_box_pack_start (GTK_BOX (vbox), notebook2, TRUE, TRUE, 0); + gtk_widget_show (notebook2); + + /* empty page */ + page2 = gtk_vbox_new (FALSE, 0); + gtk_widget_show (page2); + gtk_notebook_append_page (GTK_NOTEBOOK (notebook2), page2, NULL); + + node[0] = gimp_directory (); + + main_node = gtk_ctree_insert_node (GTK_CTREE (ctree), NULL, NULL, + node, 4, + NULL, NULL, NULL, NULL, + FALSE, TRUE); + + gtk_signal_connect (GTK_OBJECT (ctree), "select_row", + GTK_SIGNAL_FUNC (install_ctree_select_row), + notebook2); + + file_pixmap = gdk_pixmap_create_from_xpm_d (dialog->window, + &file_mask, + &page_style->bg[GTK_STATE_NORMAL], + new_xpm); + folder_pixmap = gdk_pixmap_create_from_xpm_d (dialog->window, + &folder_mask, + &page_style->bg[GTK_STATE_NORMAL], + folder_xpm); + + for (i = 0; i < num_tree_items; i++) + { + node[0] = tree_items[i].text; + + if (tree_items[i].directory) + { + sub_node = gtk_ctree_insert_node (GTK_CTREE (ctree), main_node, NULL, + node, 4, + folder_pixmap, folder_mask, + folder_pixmap, folder_mask, + FALSE, TRUE); + } + else + { + sub_node = gtk_ctree_insert_node (GTK_CTREE (ctree), main_node, NULL, + node, 4, + file_pixmap, file_mask, + file_pixmap, file_mask, + FALSE, TRUE); + } + + page2 = gtk_vbox_new (FALSE, 0); + label = gtk_label_new (gettext (tree_items[i].description)); + gtk_label_set_justify (GTK_LABEL (label), GTK_JUSTIFY_LEFT); + gtk_misc_set_alignment (GTK_MISC (label), 0.0, 0.5); + gtk_box_pack_start (GTK_BOX (page2), label, TRUE, TRUE, 0); + gtk_widget_show (label); + gtk_widget_show (page2); + + gtk_notebook_append_page (GTK_NOTEBOOK (notebook2), page2, NULL); + } + + gtk_clist_set_column_width (GTK_CLIST (ctree), 0, + gtk_clist_optimal_column_width (GTK_CLIST (ctree), 0)); + + gtk_widget_set_usize (ctree, -1, ctree->requisition.height); + + gdk_pixmap_unref (file_pixmap); + gdk_bitmap_unref (file_mask); + gdk_pixmap_unref (folder_pixmap); + gdk_bitmap_unref (folder_mask); + } + + /* Page 3 */ + page = log_page = + install_notebook_append_page (GTK_NOTEBOOK (notebook), + _("User Installation Log")); + + /* Page 4 */ + page = tuning_page = + install_notebook_append_page (GTK_NOTEBOOK (notebook), + _("GIMP Performance Tuning")); + + add_label (GTK_BOX (page), FALSE, + _("For optimal GIMP performance, some settings may have to be adjusted.")); + + sep = gtk_hseparator_new (); + gtk_box_pack_start (GTK_BOX (page), sep, FALSE, FALSE, 2); + gtk_widget_show (sep); + + add_label (GTK_BOX (page), TRUE, + _("Click \"Continue\" to accept the settings above.")); + + sep = gtk_hseparator_new (); + gtk_box_pack_end (GTK_BOX (page), sep, FALSE, FALSE, 2); + gtk_widget_show (sep); + + /* Page 5 */ + page = resolution_page = + install_notebook_append_page (GTK_NOTEBOOK (notebook), + _("Monitor Resolution")); + + add_label (GTK_BOX (resolution_page), FALSE, + _("To display images in their natural size, " + "GIMP needs to know your monitor resolution.")); + + sep = gtk_hseparator_new (); + gtk_box_pack_start (GTK_BOX (page), sep, FALSE, FALSE, 2); + gtk_widget_show (sep); + + add_label (GTK_BOX (page), TRUE, + _("Click \"Continue\" to start The GIMP.")); + + sep = gtk_hseparator_new (); + gtk_box_pack_end (GTK_BOX (page), sep, FALSE, FALSE, 2); + gtk_widget_show (sep); + + gtk_widget_show (dialog); + + gtk_style_unref (title_style); + gtk_style_unref (page_style); +} + /*********************/ /* Local functions */ -static void -install_help (InstallCallback callback) -{ - GtkWidget *text; - GtkWidget *table; - GtkWidget *vsb; - GtkAdjustment *vadj; - GdkFont *font_strong; - GdkFont *font_emphasis; - GdkFont *font; - static const struct { - gint font; - char *text; - } help_lines[] = { - { 2, N_("The GIMP - GNU Image Manipulation Program\n\n") }, - { 1, "Copyright (C) 1995 Spencer Kimball and Peter Mattis\n" }, - { 0, "\n" }, - - { 0, - N_("This program is free software; you can redistribute it and/or modify\n" - "it under the terms of the GNU General Public License as published by\n" - "the Free Software Foundation; either version 2 of the License, or\n" - "(at your option) any later version.\n") }, - { 0, "\n" }, - { 0, N_("This program is distributed in the hope that it will be useful,\n" - "but WITHOUT ANY WARRANTY; without even the implied warranty of\n" - "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n" - "See the GNU General Public License for more details.\n") }, - { 0, "\n" }, - { 0, N_("You should have received a copy of the GNU General Public License\n" - "along with this program; if not, write to the Free Software\n" - "Foundation, Inc., 59 Temple Place - Suite 330, Boston,\n" - "MA 02111-1307, USA.\n") }, - { 0, "\n\n" }, - - { 2, N_("Personal GIMP Installation\n\n") }, - { 0, N_("For a proper GIMP installation, a subdirectory called\n") }, - { 1, NULL }, /* will be replaced with gimp_directory() */ - { 0, N_(" needs to be created. This\n" - "subdirectory will contain a number of important files:\n\n") }, - - { 1, "gimprc\n" }, - { 0, N_("\t\tThe gimprc is used to store personal preferences\n" - "\t\tthat affect GIMP's default behavior.\n" - "\t\tPaths to search for brushes, palettes, gradients,\n" - "\t\tpatterns, plug-ins and modules can also configured here.\n") }, - - { 1, "pluginrc\n" }, - { 0, N_("\t\tPlug-ins and extensions are external programs run by\n" - "\t\tthe GIMP which provide additional functionality.\n" - "\t\tThese programs are searched for at run-time and\n" - "\t\tinformation about their functionality and mod-times\n" - "\t\tis cached in this file. This file is intended to\n" - "\t\tbe GIMP-readable only, and should not be edited.\n") }, - - { 1, "menurc\n" }, - { 0, N_("\t\tKey shortcuts can be dynamically redefined in The GIMP.\n" - "\t\tThe menurc is a dump of your configuration so it can.\n" - "\t\tbe remembered for the next session. You may edit this\n" - "\t\tfile if you wish, but it is much easier to define the\n" - "\t\tkeys from within The GIMP. Deleting this file will\n" - "\t\trestore the default shortcuts.\n") }, - - { 1, "sessionrc\n" }, - { 0, N_("\t\tThe sessionrc is used to store what dialog windows were\n" - "\t\topen the last time you quit The GIMP. You can configure\n" - "\t\tThe GIMP to reopen these dialogs at the saved position.\n") }, - - { 1, "unitrc\n" }, - { 0, N_("\t\tThe unitrc is used to store your user units database.\n" - "\t\tYou can define additional units and use them just\n" - "\t\tlike you use the built-in units inches, millimeters,\n" - "\t\tpoints and picas. This file is overwritten each time\n" - "\t\tyou quit the GIMP.\n") }, - - { 1, "brushes\n" }, - { 0, N_("\t\tThis is a subdirectory which can be used to store\n" - "\t\tuser defined brushes. The default gimprc file\n" - "\t\tchecks this subdirectory in addition to the system-\n" - "\t\twide gimp brushes installation when searching for\n" - "\t\tbrushes.\n") }, - - { 1, "generated_brushes\n" }, - { 0, N_("\t\tThis is a subdirectory which is used to store brushes\n" - "\t\tthat are created with the brush editor. The default\n" - "\t\tgimprc file checks this subdirectory when searching for\n" - "\t\tgenerated brushes.\n") }, - - { 1, "gradients\n" }, - { 0, N_("\t\tThis is a subdirectory which can be used to store\n" - "\t\tuser defined gradients. The default gimprc file\n" - "\t\tchecks this subdirectory in addition to the system-\n" - "\t\twide gimp gradients installation when searching for\n" - "\t\tgradients.\n") }, - - { 1, "gfig\n" }, - { 0, N_("\t\tThis is a subdirectory which can be used to store\n" - "\t\tuser defined figures to be used by the gfig plug-in.\n" - "\t\tThe default gimprc file checks this subdirectory in\n" - "\t\taddition to the systemwide gimp gfig installation\n" - "\t\twhen searching for gfig figures.\n") }, - - { 1, "gflares\n" }, - { 0, N_("\t\tThis is a subdirectory which can be used to store\n" - "\t\tuser defined gflares to be used by the gflare plug-in.\n" - "\t\tThe default gimprc file checks this subdirectory in\n" - "\t\taddition to the systemwide gimp gflares installation\n" - "\t\twhen searching for gflares.\n") }, - - { 1, "fractalexplorer\n" }, - { 0, N_("\t\tThis is a subdirectory which can be used to store\n" - "\t\tuser defined fractals to be used by the FractalExplorer\n" - "\t\tplug-in. The default gimprc file checks this subdirectory in\n" - "\t\taddition to the systemwide gimp FractalExplorer installation\n" - "\t\twhen searching for fractals.\n") }, - - { 1, "palettes\n" }, - { 0, N_("\t\tThis is a subdirectory which can be used to store\n" - "\t\tuser defined palettes. The default gimprc file\n" - "\t\tchecks only this subdirectory (not the system-wide\n" - "\t\tinstallation) when searching for palettes. During\n" - "\t\tinstallation, the system palettes will be copied\n" - "\t\there. This is done to allow modifications made to\n" - "\t\tpalettes during GIMP execution to persist across\n" - "\t\tsessions.\n") }, - - { 1, "patterns\n" }, - { 0, N_("\t\tThis is a subdirectory which can be used to store\n" - "\t\tuser defined patterns. The default gimprc file\n" - "\t\tchecks this subdirectory in addition to the system-\n" - "\t\twide gimp patterns installation when searching for\n" - "\t\tpatterns.\n") }, - - { 1, "plug-ins\n" }, - { 0, N_("\t\tThis is a subdirectory which can be used to store\n" - "\t\tuser created, temporary, or otherwise non-system-\n" - "\t\tsupported plug-ins. The default gimprc file\n" - "\t\tchecks this subdirectory in addition to the system-\n" - "\t\twide GIMP plug-in directories when searching for\n" - "\t\tplug-ins.\n") }, - - { 1, "modules\n" }, - { 0, N_("\t\tThis subdirectory can be used to store user created,\n" - "\t\ttemporary, or otherwise non-system-supported DLL modules.\n" - "\t\tThe default gimprc file checks this subdirectory\n" - "\t\tin addition to the system-wide GIMP module directory\n" - "\t\twhen searching for modules to load when initializing.\n") }, - - { 1, "scripts\n" }, - { 0, N_("\t\tThis subdirectory is used by the GIMP to store \n" - "\t\tuser created and installed scripts. The default gimprc\n" - "\t\tfile checks this subdirectory in addition to the system\n" - "\t\t-wide gimp scripts subdirectory when searching for scripts\n") }, - - { 1, "tmp\n" }, - { 0, N_("\t\tThis subdirectory is used by the GIMP to temporarily\n" - "\t\tstore undo buffers to reduce memory usage. If GIMP is\n" - "\t\tunceremoniously killed, files may persist in this directory\n" - "\t\tof the form: gimp<#>.<#>. These files are useless across\n" - "\t\tGIMP sessions and can be destroyed with impunity.\n") } - }; - gint nhelp_lines = sizeof (help_lines) / sizeof (help_lines[0]); - gint i; - - help_widget = gimp_dialog_new (_("GIMP Installation"), "gimp_installation", - NULL, NULL, - GTK_WIN_POS_CENTER, - FALSE, TRUE, FALSE, - - _("Install"), help_install_callback, - callback, NULL, NULL, TRUE, FALSE, - _("Ignore"), help_ignore_callback, - callback, NULL, NULL, FALSE, FALSE, - _("Quit"), help_quit_callback, - callback, NULL, NULL, FALSE, TRUE, - - NULL); - - table = gtk_table_new (1, 2, FALSE); - gtk_container_set_border_width (GTK_CONTAINER (table), 2); - gtk_table_set_col_spacing (GTK_TABLE (table), 0, 2); - gtk_container_add (GTK_CONTAINER (GTK_DIALOG (help_widget)->vbox), table); - - vadj = GTK_ADJUSTMENT (gtk_adjustment_new (0.0, 0.0, 0.0, 0.0, 0.0, 0.0)); - vsb = gtk_vscrollbar_new (vadj); - text = gtk_text_new (NULL, vadj); - gtk_text_set_editable (GTK_TEXT (text), FALSE); - gtk_widget_set_usize (text, 450, 475); - - gtk_table_attach (GTK_TABLE (table), vsb, 1, 2, 0, 1, - 0, GTK_EXPAND | GTK_SHRINK | GTK_FILL, 0, 0); - gtk_table_attach (GTK_TABLE (table), text, 0, 1, 0, 1, - GTK_EXPAND | GTK_SHRINK | GTK_FILL, - GTK_EXPAND | GTK_SHRINK | GTK_FILL, 0, 0); - - /* this is a fontset, e.g. multiple comma-separated font definitions */ - font_strong = gdk_fontset_load (_("-*-helvetica-bold-r-normal-*-*-120-*-*-*-*-*-*,*")); - - /* this is a font, provide only one single font definition */ - font_emphasis = gdk_font_load (_("-*-helvetica-medium-o-normal-*-*-100-*-*-*-*-*-*")); - - /* this is a fontset, e.g. multiple comma-separated font definitions */ - font = gdk_fontset_load (_("-*-helvetica-medium-r-normal-*-*-100-*-*-*-*-*-*,*")); - if (!font_emphasis) - font_emphasis = font; - - /* Realize the widget before allowing new text to be inserted */ - gtk_widget_realize (text); - - for (i = 0; i < nhelp_lines; i++) - if (help_lines[i].text == NULL) - /* inserting gimp_directory () this way is a little ugly */ - gtk_text_insert (GTK_TEXT (text), - (help_lines[i].font == 2) ? font_strong : - (help_lines[i].font == 1) ? font_emphasis : font, - NULL, NULL, - gimp_directory (), -1); - else - gtk_text_insert (GTK_TEXT (text), - (help_lines[i].font == 2) ? font_strong : - (help_lines[i].font == 1) ? font_emphasis : font, - NULL, NULL, - gettext (help_lines[i].text), -1); - - /* scroll back to the top */ - gtk_adjustment_set_value (GTK_ADJUSTMENT (vadj), 0.0); - - gdk_font_unref (font_strong); - if (font_emphasis != font) - gdk_font_unref (font_emphasis); - gdk_font_unref (font); - - gtk_widget_show (vsb); - gtk_widget_show (text); - gtk_widget_show (table); - gtk_widget_show (help_widget); -} - -static void -help_install_callback (GtkWidget *widget, - gpointer client_data) -{ - InstallCallback callback; - - callback = (InstallCallback) client_data; - gtk_widget_destroy (help_widget); - install_run (callback); -} - -static void -help_ignore_callback (GtkWidget *widget, - gpointer client_data) -{ - InstallCallback callback; - - callback = (InstallCallback) client_data; - gtk_widget_destroy (help_widget); - (* callback) (); -} - -static void -help_quit_callback (GtkWidget *widget, - gpointer client_data) -{ - gtk_widget_destroy (help_widget); - gtk_exit (0); -} - #ifdef G_OS_WIN32 char * @@ -405,84 +809,44 @@ quote_spaces (char *string) #endif -static void -install_run (InstallCallback callback) +static gboolean +install_run (void) { - GtkWidget *text; - GtkWidget *table; - GtkWidget *vsb; - GtkAdjustment *vadj; - GdkFont *font_strong; - GdkFont *font; FILE *pfp; - char buffer[2048]; + gchar buffer[2048]; struct stat stat_buf; - int err; - int executable = TRUE; - - install_widget = gimp_dialog_new (_("Installation Log"), "installation_log", - NULL, NULL, - GTK_WIN_POS_CENTER, - FALSE, TRUE, FALSE, - - _("Continue"), install_continue_callback, - callback, NULL, NULL, TRUE, FALSE, - _("Quit"), install_quit_callback, - callback, NULL, NULL, FALSE, TRUE, - - NULL); - - table = gtk_table_new (1, 2, FALSE); - gtk_container_set_border_width (GTK_CONTAINER (table), 2); - gtk_table_set_col_spacing (GTK_TABLE (table), 0, 2); - gtk_container_add (GTK_CONTAINER (GTK_DIALOG (install_widget)->vbox), table); - - vadj = GTK_ADJUSTMENT (gtk_adjustment_new (0.0, 0.0, 0.0, 0.0, 0.0, 0.0)); - vsb = gtk_vscrollbar_new (vadj); - text = gtk_text_new (NULL, vadj); - gtk_widget_set_usize (text, 384, 356); - - gtk_table_attach (GTK_TABLE (table), vsb, 1, 2, 0, 1, - GTK_FILL, GTK_EXPAND | GTK_SHRINK | GTK_FILL, 0, 0); - gtk_table_attach (GTK_TABLE (table), text, 0, 1, 0, 1, - GTK_EXPAND | GTK_SHRINK | GTK_FILL, - GTK_EXPAND | GTK_SHRINK | GTK_FILL, - 0, 0); - - /* this is a fontset, e.g. multiple comma-separated font definitions */ - font_strong = gdk_fontset_load ( _("-*-helvetica-bold-r-normal-*-*-120-*-*-*-*-*-*,*")); - - /* this is a fontset, e.g. multiple comma-separated font definitions */ - font = gdk_fontset_load ( _("-*-helvetica-medium-r-normal-*-*-120-*-*-*-*-*-*,*")); - - /* Realize the text widget before inserting text strings */ - gtk_widget_realize (text); - -#ifndef G_OS_WIN32 - gtk_text_insert (GTK_TEXT (text), font_strong, NULL, NULL, _("User Installation Log\n\n"), -1); -#endif + gint err; + gboolean executable = TRUE; /* Generate output */ - g_snprintf (buffer, sizeof(buffer), "%s" G_DIR_SEPARATOR_S USER_INSTALL, + g_snprintf (buffer, sizeof (buffer), "%s" G_DIR_SEPARATOR_S USER_INSTALL, gimp_data_directory ()); if ((err = stat (buffer, &stat_buf)) != 0) { - gtk_text_insert (GTK_TEXT (text), font, NULL, NULL, buffer, -1); - gtk_text_insert (GTK_TEXT (text), font, NULL, NULL, - _(" does not exist. Cannot install.\n"), -1); + gchar *str; + + str = g_strdup_printf ("%s\n%s", buffer, + _("does not exist. Cannot install.")); + add_label (GTK_BOX (log_page), FALSE, str); + g_free (str); + executable = FALSE; } #ifdef S_IXUSR else if (! (S_IXUSR & stat_buf.st_mode) || ! (S_IRUSR & stat_buf.st_mode)) { - gtk_text_insert (GTK_TEXT (text), font, NULL, NULL, buffer, -1); - gtk_text_insert (GTK_TEXT (text), font, NULL, NULL, - _(" has invalid permissions.\nCannot install."), -1); + gchar *str; + + str = g_strdup_printf ("%s\n%s", buffer, + _("has invalid permissions. Cannot install.")); + add_label (GTK_BOX (log_page), FALSE, str); + g_free (str); + executable = FALSE; } #endif - if (executable == TRUE) + if (executable) { #ifdef G_OS_WIN32 char *quoted_data_dir, *quoted_user_dir; @@ -510,16 +874,17 @@ install_run (InstallCallback callback) g_free (quoted_data_dir); g_free (quoted_user_dir); - gtk_text_insert (GTK_TEXT (text), font_strong, NULL, NULL, - _("Did you notice any error messages\n" - "in the console window? If not, installation\n" - "was successful! Otherwise, quit and investigate\n" - "the possible reason...\n"), -1); + if (executable) + add_label (GTK_BOX (log_page), FALSE, + _("Did you notice any error messages in the console window?\n" + "If not, installation was successful!\n" + "Otherwise, quit and investigate the possible reason...")); #else #ifndef __EMX__ - g_snprintf (buffer, sizeof(buffer), "%s" G_DIR_SEPARATOR_S USER_INSTALL " %s %s", - gimp_data_directory (), gimp_data_directory(), - gimp_directory ()); + g_snprintf (buffer, sizeof(buffer), "%s" G_DIR_SEPARATOR_S USER_INSTALL " %s %s %s", + gimp_data_directory (), + "2>&1", + gimp_data_directory(), gimp_directory ()); #else g_snprintf (buffer, sizeof(buffer), "cmd.exe /c %s" G_DIR_SEPARATOR_S USER_INSTALL " %s %s", gimp_data_directory (), gimp_data_directory(), @@ -538,47 +903,278 @@ install_run (InstallCallback callback) * we can't tell if the installation script failed --austin */ if ((pfp = popen (buffer, "r")) != NULL) { + GtkWidget *table; + GtkWidget *log_text; + GtkWidget *vsb; + GtkAdjustment *vadj; + + table = gtk_table_new (1, 2, FALSE); + gtk_table_set_col_spacing (GTK_TABLE (table), 0, 2); + gtk_box_pack_start (GTK_BOX (log_page), table, TRUE, TRUE, 0); + + gtk_widget_pop_style (); + + vadj = GTK_ADJUSTMENT (gtk_adjustment_new (0.0, 0.0, 0.0, 0.0, 0.0, 0.0)); + vsb = gtk_vscrollbar_new (vadj); + log_text = gtk_text_new (NULL, vadj); + + gtk_widget_push_style (page_style); + + gtk_table_attach (GTK_TABLE (table), vsb, 1, 2, 0, 1, + GTK_FILL, GTK_EXPAND | GTK_SHRINK | GTK_FILL, 0, 0); + gtk_table_attach (GTK_TABLE (table), log_text, 0, 1, 0, 1, + GTK_EXPAND | GTK_SHRINK | GTK_FILL, + GTK_EXPAND | GTK_SHRINK | GTK_FILL, + 0, 0); + + gtk_widget_show (vsb); + gtk_widget_show (log_text); + gtk_widget_show (table); + while (fgets (buffer, sizeof (buffer), pfp)) - gtk_text_insert (GTK_TEXT (text), font, NULL, NULL, buffer, -1); + gtk_text_insert (GTK_TEXT (log_text), NULL, NULL, NULL, buffer, -1); pclose (pfp); - gtk_text_insert (GTK_TEXT (text), font, NULL, NULL, - _("\nInstallation successful!\n"), -1); + add_label (GTK_BOX (log_page), FALSE, + _("Did you notice any error messages in the lines above?\n" + "If not, installation was successful!\n" + "Otherwise, quit and investigate the possible reason...")); } else executable = FALSE; #endif /* !G_OS_WIN32 */ } - if (executable == FALSE) - gtk_text_insert (GTK_TEXT (text), font, NULL, NULL, - _("\nInstallation failed. Contact system administrator.\n"), -1); + if (executable) + { + GtkWidget *sep; - gtk_widget_show (vsb); - gtk_widget_show (text); - gtk_widget_show (table); - gtk_widget_show (install_widget); + add_label (GTK_BOX (log_page), TRUE, + _("Click \"Continue\" to complete GIMP installation.")); + + sep = gtk_hseparator_new (); + gtk_box_pack_end (GTK_BOX (log_page), sep, FALSE, FALSE, 0); + gtk_widget_show (sep); + } + else + { + add_label (GTK_BOX (log_page), FALSE, + _("Installation failed. Contact system administrator.")); + } + + return executable; +} + +static GtkObject *tile_cache_adj = NULL; +static GtkWidget *swap_path_filesel = NULL; +static GtkWidget *xserver_toggle = NULL; +static GtkWidget *resolution_entry = NULL; + +static void +install_tuning (void) +{ + GtkWidget *hbox; + GtkWidget *sep; + GtkWidget *label; + GtkWidget *memsize; + + /* tile cache size */ + add_label (GTK_BOX (tuning_page), FALSE, + _("GIMP uses a limited amount of memory to store image data, the so-called\n" + "\"Tile Cache\". You should adjust it's size to fit into memory. Consider\n" + "the amount of memory used by other running processes.")); + + hbox = gtk_hbox_new (FALSE, 8); + gtk_box_pack_start (GTK_BOX (tuning_page), hbox, FALSE, FALSE, 0); + gtk_widget_show (hbox); + + tile_cache_adj = gtk_adjustment_new (tile_cache_size, + 0, (4069.0 * 1024 * 1024), 1.0, 1.0, 0.0); + gtk_widget_pop_style (); + memsize = gimp_mem_size_entry_new (GTK_ADJUSTMENT (tile_cache_adj)); + gtk_widget_push_style (page_style); + gtk_box_pack_end (GTK_BOX (hbox), memsize, FALSE, FALSE, 0); + gtk_widget_show (memsize); + + label = gtk_label_new (_("Tile Cache Size:")); + gtk_box_pack_end (GTK_BOX (hbox), label, FALSE, FALSE, 0); + gtk_widget_show (label); + + sep = gtk_hseparator_new (); + gtk_box_pack_start (GTK_BOX (tuning_page), sep, FALSE, FALSE, 2); + gtk_widget_show (sep); + + /* swap file location */ + add_label (GTK_BOX (tuning_page), FALSE, + _("All image and undo data which doesn't fit into the Tile Cache will be\n" + "written to a swap file. This file should be located on a local filesystem\n" + "with enough free space (several hundred MB). On a UNIX system, you\n" + "may want to use the system-wide temp-dir (\"/tmp\" or \"/var/tmp\").")); + + hbox = gtk_hbox_new (FALSE, 8); + gtk_box_pack_start (GTK_BOX (tuning_page), hbox, FALSE, FALSE, 0); + gtk_widget_show (hbox); + + gtk_widget_pop_style (); + swap_path_filesel = gimp_file_selection_new (_("Select Swap Dir"), swap_path, + TRUE, TRUE); + gtk_widget_push_style (page_style); + gtk_box_pack_end (GTK_BOX (hbox), swap_path_filesel, FALSE, FALSE, 0); + gtk_widget_show (swap_path_filesel); + + label = gtk_label_new (_("Swap Directory:")); + gtk_box_pack_end (GTK_BOX (hbox), label, FALSE, FALSE, 0); + gtk_widget_show (label); } static void -install_continue_callback (GtkWidget *widget, - gpointer client_data) +install_tuning_done (void) { - InstallCallback callback; - -#ifdef G_OS_WIN32 - FreeConsole (); -#endif - - callback = (InstallCallback) client_data; - gtk_widget_destroy (install_widget); - (* callback) (); } static void -install_quit_callback (GtkWidget *widget, - gpointer client_data) +install_resolution (void) { - gtk_widget_destroy (install_widget); - gtk_exit (0); + GtkWidget *hbox; + GtkWidget *sep; + gchar *pixels_per_unit; + gdouble xres, yres; + gchar *str; + + gdisplay_xserver_resolution (&xres, &yres); + + add_label (GTK_BOX (resolution_page), FALSE, + _("GIMP can obtain this information from your X-server.\n" + "However, most X-servers do not return useful values.")); + + hbox = gtk_hbox_new (FALSE, 0); + gtk_box_pack_start (GTK_BOX (resolution_page), hbox, FALSE, FALSE, 0); + gtk_widget_show (hbox); + + str = g_strdup_printf (_("Get Resolution from X-server (Currently %d x %d dpi)"), + ROUND (xres), ROUND (yres)); + + gtk_widget_pop_style (); + xserver_toggle = gtk_check_button_new_with_label (str); + gtk_widget_push_style (page_style); + + g_free (str); + + gtk_box_pack_end (GTK_BOX (hbox), xserver_toggle, FALSE, FALSE, 0); + gtk_widget_show (xserver_toggle); + + sep = gtk_hseparator_new (); + gtk_box_pack_start (GTK_BOX (resolution_page), sep, FALSE, FALSE, 2); + gtk_widget_show (sep); + + add_label (GTK_BOX (resolution_page), FALSE, + _("Alternatively, you can set the monitor resolution manually.")); + + hbox = gtk_hbox_new (FALSE, 0); + gtk_box_pack_start (GTK_BOX (resolution_page), hbox, FALSE, FALSE, 0); + gtk_widget_show (hbox); + + pixels_per_unit = g_strconcat (_("Pixels"), "/%s", NULL); + + gtk_widget_pop_style (); + resolution_entry = + gimp_coordinates_new (GIMP_UNIT_INCH, pixels_per_unit, + FALSE, FALSE, 75, + GIMP_SIZE_ENTRY_UPDATE_RESOLUTION, + abs (monitor_xres - monitor_yres) < GIMP_MIN_RESOLUTION, + FALSE, + _("Monitor Resolution X:"), + monitor_xres, + 1.0, + GIMP_MIN_RESOLUTION, + GIMP_MAX_RESOLUTION, + 0, 0, + _("Y:"), + monitor_yres, + 1.0, + GIMP_MIN_RESOLUTION, + GIMP_MAX_RESOLUTION, + 0, 0); + gtk_widget_push_style (page_style); + + g_free (pixels_per_unit); + + gtk_box_pack_end (GTK_BOX (hbox), resolution_entry, FALSE, FALSE, 0); + gtk_widget_show (resolution_entry); + + gtk_object_set_data (GTK_OBJECT (xserver_toggle), "inverse_sensitive", + resolution_entry); + gtk_signal_connect (GTK_OBJECT (xserver_toggle), "toggled", + GTK_SIGNAL_FUNC (gimp_toggle_button_sensitive_update), + NULL); + gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (xserver_toggle), + using_xserver_resolution); + + gtk_widget_pop_style (); +} + +static void +install_resolution_done (void) +{ + GList *update = NULL; + GList *remove = NULL; + + gint new_tile_cache_size; + gchar *new_swap_path; + gboolean new_using_xserver_resolution; + gdouble new_monitor_xres; + gdouble new_monitor_yres; + + new_tile_cache_size = GTK_ADJUSTMENT (tile_cache_adj)->value; + new_swap_path = + gimp_file_selection_get_filename (GIMP_FILE_SELECTION (swap_path_filesel)); + new_using_xserver_resolution = + gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (xserver_toggle)); + new_monitor_xres = + gimp_size_entry_get_refval (GIMP_SIZE_ENTRY (resolution_entry), 0); + new_monitor_yres = + gimp_size_entry_get_refval (GIMP_SIZE_ENTRY (resolution_entry), 1); + + if (tile_cache_size != new_tile_cache_size) + { + tile_cache_size = new_tile_cache_size; + update = g_list_append (update, "tile-cache-size"); + } + if (strcmp (swap_path, new_swap_path)) + { + g_free (swap_path); + swap_path = new_swap_path; + update = g_list_append (update, "swap-path"); + } + if (using_xserver_resolution != new_using_xserver_resolution || + ABS (monitor_xres - new_monitor_xres) > GIMP_MIN_RESOLUTION) + { + monitor_xres = new_monitor_xres; + update = g_list_append (update, "monitor-xresolution"); + } + if (using_xserver_resolution != new_using_xserver_resolution || + ABS (monitor_yres - new_monitor_yres) > GIMP_MIN_RESOLUTION) + { + monitor_yres = new_monitor_yres; + update = g_list_append (update, "monitor-yresolution"); + } + + using_xserver_resolution = new_using_xserver_resolution; + + if (using_xserver_resolution) + { + /* special value of 0 for either x or y res in the gimprc file + * means use the xserver's current resolution */ + monitor_xres = 0.0; + monitor_yres = 0.0; + } + + save_gimprc (&update, &remove); + + if (using_xserver_resolution) + gdisplay_xserver_resolution (&monitor_xres, &monitor_yres); + + g_list_free (update); + g_list_free (remove); + } diff --git a/app/gimprc.c b/app/gimprc.c index 408b2c9557..ce61044286 100644 --- a/app/gimprc.c +++ b/app/gimprc.c @@ -57,7 +57,8 @@ #define OK 2 #define LOCALE_DEF 3 -typedef enum { +typedef enum +{ TT_STRING, TT_PATH, TT_DOUBLE, @@ -87,156 +88,156 @@ typedef struct _ParseFunc ParseFunc; struct _ParseFunc { - char *name; - TokenType type; - gpointer val1p; - gpointer val2p; + gchar *name; + TokenType type; + gpointer val1p; + gpointer val2p; }; typedef struct _UnknownToken UnknownToken; struct _UnknownToken { - char *token; - char *value; + gchar *token; + gchar *value; }; /* global gimprc variables */ -char * plug_in_path = NULL; -char * temp_path = NULL; -char * swap_path = NULL; -char * brush_path = NULL; -char * brush_vbr_path = NULL; -char * default_brush = NULL; -char * pattern_path = NULL; -char * default_pattern = NULL; -char * palette_path = NULL; -char * default_palette = NULL; -char * gradient_path = NULL; -char * default_gradient = NULL; -char * pluginrc_path = NULL; -char * module_path = NULL; -int tile_cache_size = 10485760; /* 10 MB */ -int marching_speed = 300; /* 300 ms */ -double gamma_val = 1.0; -int transparency_type = 1; /* Mid-Tone Checks */ -int perfectmouse = 0; /* off (fast and sloppy) */ -int transparency_size = 1; /* Medium sized */ -int levels_of_undo = 2; /* 2 levels of undo default */ -int last_opened_size = 4; /* 4 documents in the MRU list */ -int color_cube_shades[4] = {6, 7, 4, 24}; -int install_cmap = 0; -int cycled_marching_ants = 0; -int default_threshold = 15; -int stingy_memory_use = 0; -int allow_resize_windows = 0; -int no_cursor_updating = 0; -int preview_size = 32; -int nav_preview_size = 112; -int show_rulers = TRUE; -int show_statusbar = TRUE; -GimpUnit default_units = GIMP_UNIT_INCH; -int auto_save = TRUE; -InterpolationType interpolation_type = LINEAR_INTERPOLATION; -int confirm_on_close = TRUE; -int save_session_info = TRUE; -int save_device_status = FALSE; -int always_restore_session = FALSE; -int default_width = 983; -int default_height = 857; +gchar *plug_in_path = NULL; +gchar *temp_path = NULL; +gchar *swap_path = NULL; +gchar *brush_path = NULL; +gchar *brush_vbr_path = NULL; +gchar *default_brush = NULL; +gchar *pattern_path = NULL; +gchar *default_pattern = NULL; +gchar *palette_path = NULL; +gchar *default_palette = NULL; +gchar *gradient_path = NULL; +gchar *default_gradient = NULL; +gchar *pluginrc_path = NULL; +gchar *module_path = NULL; +gint tile_cache_size = 10485760; /* 10 MB */ +gint marching_speed = 300; /* 300 ms */ +gdouble gamma_val = 1.0; +gint transparency_type = 1; /* Mid-Tone Checks */ +gboolean perfectmouse = FALSE; /* off (fast and sloppy) */ +gint transparency_size = 1; /* Medium sized */ +gint levels_of_undo = 2; /* 2 levels of undo default */ +gint last_opened_size = 4; /* 4 documents in the MRU list */ +gint color_cube_shades[4] = { 6, 7, 4, 24 }; +gboolean install_cmap = FALSE; +gint cycled_marching_ants = 0; +gint default_threshold = 15; +gboolean stingy_memory_use = FALSE; +gboolean allow_resize_windows = FALSE; +gboolean no_cursor_updating = FALSE; +gint preview_size = 32; +gint nav_preview_size = 112; +gboolean show_rulers = TRUE; +gboolean show_statusbar = TRUE; +GimpUnit default_units = GIMP_UNIT_INCH; +gboolean auto_save = TRUE; +InterpolationType interpolation_type = LINEAR_INTERPOLATION; +gboolean confirm_on_close = TRUE; +gboolean save_session_info = TRUE; +gboolean save_device_status = FALSE; +gboolean always_restore_session = FALSE; +gint default_width = 983; +gint default_height = 857; /* temporary default size increase to stress test stuff. -- austin 7/11/99 */ -int default_type = RGB; -double default_xresolution = 72.0; -double default_yresolution = 72.0; -GimpUnit default_resolution_units = GIMP_UNIT_INCH; -char * default_comment = NULL; -int default_dot_for_dot = TRUE; -int show_tips = TRUE; -int last_tip = -1; -int show_tool_tips = TRUE; -double monitor_xres = 72.0; -double monitor_yres = 72.0; -int using_xserver_resolution = FALSE; -int num_processors = 1; -char * image_title_format = NULL; -int global_paint_options = TRUE; -int show_indicators = TRUE; -int max_new_image_size = 33554432; /* 32 MB */ -int thumbnail_mode = 1; -int trust_dirty_flag = FALSE; -int use_help = TRUE; -int nav_window_per_display = FALSE; -int info_window_follows_mouse = FALSE; -int help_browser = HELP_BROWSER_GIMP; +gint default_type = RGB; +gdouble default_xresolution = 72.0; +gdouble default_yresolution = 72.0; +GimpUnit default_resolution_units = GIMP_UNIT_INCH; +gchar *default_comment = NULL; +gboolean default_dot_for_dot = TRUE; +gboolean show_tips = TRUE; +gint last_tip = -1; +gboolean show_tool_tips = TRUE; +gdouble monitor_xres = 72.0; +gdouble monitor_yres = 72.0; +gboolean using_xserver_resolution = FALSE; +gint num_processors = 1; +gchar *image_title_format = NULL; +gboolean global_paint_options = TRUE; +gboolean show_indicators = TRUE; +gint max_new_image_size = 33554432; /* 32 MB */ +gint thumbnail_mode = 1; +gboolean trust_dirty_flag = FALSE; +gboolean use_help = TRUE; +gboolean nav_window_per_display = FALSE; +gboolean info_window_follows_mouse = FALSE; +gint help_browser = HELP_BROWSER_GIMP; extern char * module_db_load_inhibit; -static int get_next_token (void); -static int peek_next_token (void); -static int parse_statement (void); +static gint get_next_token (void); +static gint peek_next_token (void); +static gint parse_statement (void); -static int parse_string (gpointer val1p, gpointer val2p); -static int parse_path (gpointer val1p, gpointer val2p); -static int parse_double (gpointer val1p, gpointer val2p); -static int parse_float (gpointer val1p, gpointer val2p); -static int parse_int (gpointer val1p, gpointer val2p); -static int parse_boolean (gpointer val1p, gpointer val2p); -static int parse_position (gpointer val1p, gpointer val2p); -static int parse_mem_size (gpointer val1p, gpointer val2p); -static int parse_image_type (gpointer val1p, gpointer val2p); -static int parse_interpolation_type (gpointer val1p, gpointer val2p); -static int parse_color_cube (gpointer val1p, gpointer val2p); -static int parse_preview_size (gpointer val1p, gpointer val2p); -static int parse_nav_preview_size (gpointer val1p, gpointer val2p); -static int parse_units (gpointer val1p, gpointer val2p); -static int parse_plug_in (gpointer val1p, gpointer val2p); -static int parse_plug_in_def (gpointer val1p, gpointer val2p); -static int parse_device (gpointer val1p, gpointer val2p); -static int parse_menu_path (gpointer val1p, gpointer val2p); -static int parse_session_info (gpointer val1p, gpointer val2p); -static int parse_unit_info (gpointer val1p, gpointer val2p); -static int parse_parasite (gpointer val1p, gpointer val2p); -static int parse_help_browser (gpointer val1p, gpointer val2p); +static gint parse_string (gpointer val1p, gpointer val2p); +static gint parse_path (gpointer val1p, gpointer val2p); +static gint parse_double (gpointer val1p, gpointer val2p); +static gint parse_float (gpointer val1p, gpointer val2p); +static gint parse_int (gpointer val1p, gpointer val2p); +static gint parse_boolean (gpointer val1p, gpointer val2p); +static gint parse_position (gpointer val1p, gpointer val2p); +static gint parse_mem_size (gpointer val1p, gpointer val2p); +static gint parse_image_type (gpointer val1p, gpointer val2p); +static gint parse_interpolation_type (gpointer val1p, gpointer val2p); +static gint parse_color_cube (gpointer val1p, gpointer val2p); +static gint parse_preview_size (gpointer val1p, gpointer val2p); +static gint parse_nav_preview_size (gpointer val1p, gpointer val2p); +static gint parse_units (gpointer val1p, gpointer val2p); +static gint parse_plug_in (gpointer val1p, gpointer val2p); +static gint parse_plug_in_def (gpointer val1p, gpointer val2p); +static gint parse_device (gpointer val1p, gpointer val2p); +static gint parse_menu_path (gpointer val1p, gpointer val2p); +static gint parse_session_info (gpointer val1p, gpointer val2p); +static gint parse_unit_info (gpointer val1p, gpointer val2p); +static gint parse_parasite (gpointer val1p, gpointer val2p); +static gint parse_help_browser (gpointer val1p, gpointer val2p); -static int parse_locale_def (PlugInDef *plug_in_def); -static int parse_proc_def (PlugInProcDef **proc_def); -static int parse_proc_arg (ProcArg *arg); -static int parse_unknown (char *token_sym); +static gint parse_locale_def (PlugInDef *plug_in_def); +static gint parse_proc_def (PlugInProcDef **proc_def); +static gint parse_proc_arg (ProcArg *arg); +static gint parse_unknown (gchar *token_sym); -char* gimprc_value_to_str (char *name); -static char* value_to_str (char *name); + gchar *gimprc_value_to_str (gchar *name); +static gchar *value_to_str (gchar *name); -static inline char * string_to_str (gpointer val1p, gpointer val2p); -static inline char * path_to_str (gpointer val1p, gpointer val2p); -static inline char * double_to_str (gpointer val1p, gpointer val2p); -static inline char * float_to_str (gpointer val1p, gpointer val2p); -static inline char * int_to_str (gpointer val1p, gpointer val2p); -static inline char * boolean_to_str (gpointer val1p, gpointer val2p); -static inline char * position_to_str (gpointer val1p, gpointer val2p); -static inline char * mem_size_to_str (gpointer val1p, gpointer val2p); -static inline char * image_type_to_str (gpointer val1p, gpointer val2p); -static inline char * interpolation_type_to_str (gpointer val1p, gpointer val2p); -static inline char * color_cube_to_str (gpointer val1p, gpointer val2p); -static inline char * preview_size_to_str (gpointer val1p, gpointer val2p); -static inline char * nav_preview_size_to_str (gpointer val1p, gpointer val2p); -static inline char * units_to_str (gpointer val1p, gpointer val2p); -static inline char * help_browser_to_str (gpointer val1p, gpointer val2p); -static inline char * comment_to_str (gpointer val1p, gpointer val2p); +static inline gchar * string_to_str (gpointer val1p, gpointer val2p); +static inline gchar * path_to_str (gpointer val1p, gpointer val2p); +static inline gchar * double_to_str (gpointer val1p, gpointer val2p); +static inline gchar * float_to_str (gpointer val1p, gpointer val2p); +static inline gchar * int_to_str (gpointer val1p, gpointer val2p); +static inline gchar * boolean_to_str (gpointer val1p, gpointer val2p); +static inline gchar * position_to_str (gpointer val1p, gpointer val2p); +static inline gchar * mem_size_to_str (gpointer val1p, gpointer val2p); +static inline gchar * image_type_to_str (gpointer val1p, gpointer val2p); +static inline gchar * interpolation_type_to_str (gpointer val1p, gpointer val2p); +static inline gchar * color_cube_to_str (gpointer val1p, gpointer val2p); +static inline gchar * preview_size_to_str (gpointer val1p, gpointer val2p); +static inline gchar * nav_preview_size_to_str (gpointer val1p, gpointer val2p); +static inline gchar * units_to_str (gpointer val1p, gpointer val2p); +static inline gchar * help_browser_to_str (gpointer val1p, gpointer val2p); +static inline gchar * comment_to_str (gpointer val1p, gpointer val2p); -static char* transform_path (char *path, int destroy); -static void gimprc_set_token (char *token, char *value); -static void add_gimp_directory_token (char *gimp_dir); +static gchar *transform_path (gchar *path, gboolean destroy); +static void gimprc_set_token (gchar *token, gchar *value); +static void add_gimp_directory_token (gchar *gimp_dir); #ifdef __EMX__ -static void add_x11root_token (char *x11root); +static void add_x11root_token (gchar *x11root); #endif -static char* open_backup_file (char *filename, - char *secondary_filename, - char **name_used, - FILE **fp_new, - FILE **fp_old); +static gchar *open_backup_file (gchar *filename, + gchar *secondary_filename, + gchar **name_used, + FILE **fp_new, + FILE **fp_old); -static ParseInfo parse_info; +static ParseInfo parse_info = { NULL }; static GList *unknown_tokens = NULL; @@ -369,13 +370,20 @@ gimp_system_rc_file (void) return value; } -void +gboolean parse_buffers_init (void) { - parse_info.buffer = g_new (char, 4096); - parse_info.tokenbuf = parse_info.buffer + 2048; - parse_info.buffer_size = 2048; - parse_info.tokenbuf_size = 2048; + if (!parse_info.buffer) + { + parse_info.buffer = g_new (gchar, 4096); + parse_info.tokenbuf = parse_info.buffer + 2048; + parse_info.buffer_size = 2048; + parse_info.tokenbuf_size = 2048; + + return TRUE; + } + + return FALSE; } static GList *parse_add_directory_tokens (void) @@ -1784,18 +1792,18 @@ parse_menu_path (gpointer val1p, return ERROR; } -static char* -transform_path (char *path, - int destroy) +static gchar * +transform_path (gchar *path, + gboolean destroy) { - int length; - char *new_path; - char *home; - char *token; - char *tmp; - char *tmp2; - int substituted; - int is_env; + gint length; + gchar *new_path; + gchar *home; + gchar *token; + gchar *tmp; + gchar *tmp2; + gint substituted; + gint is_env; UnknownToken *ut; home = g_get_home_dir (); diff --git a/app/gimprc.h b/app/gimprc.h index 83e3bc9936..5ad62dcfed 100644 --- a/app/gimprc.h +++ b/app/gimprc.h @@ -23,80 +23,82 @@ #include "apptypes.h" /* global gimprc variables */ -extern char * plug_in_path; -extern char * temp_path; -extern char * swap_path; -extern char * brush_path; -extern char * brush_vbr_path; -extern char * default_brush; -extern char * pattern_path; -extern char * default_pattern; -extern char * palette_path; -extern char * default_palette; -extern char * gradient_path; -extern char * default_gradient; -extern char * pluginrc_path; -extern char * module_path; -extern int tile_cache_size; -extern int marching_speed; -extern int last_opened_size; -extern double gamma_val; -extern int transparency_type; -extern int perfectmouse; -extern int transparency_size; -extern int levels_of_undo; -extern int color_cube_shades[]; -extern int install_cmap; -extern int cycled_marching_ants; -extern int default_threshold; -extern int stingy_memory_use; -extern int allow_resize_windows; -extern int no_cursor_updating; -extern int preview_size; -extern int nav_preview_size; -extern int show_rulers; -extern GimpUnit default_units; -extern int show_statusbar; -extern int auto_save; -extern InterpolationType interpolation_type; -extern int confirm_on_close; -extern int default_width, default_height; -extern int default_type; -extern GimpUnit default_resolution_units; -extern double default_xresolution; -extern double default_yresolution; -extern char * default_comment; -extern int default_dot_for_dot; -extern int save_session_info; -extern int save_device_status; -extern int always_restore_session; -extern int show_tips; -extern int last_tip; -extern int show_tool_tips; -extern double monitor_xres; -extern double monitor_yres; -extern int using_xserver_resolution; -extern int num_processors; -extern char * image_title_format; -extern int global_paint_options; -extern int show_indicators; -extern int max_new_image_size; -extern int thumbnail_mode; -extern int trust_dirty_flag; -extern int use_help; -extern int nav_window_per_display; -extern int info_window_follows_mouse; -extern int help_browser; +extern gchar *plug_in_path; +extern gchar *temp_path; +extern gchar *swap_path; +extern gchar *brush_path; +extern gchar *brush_vbr_path; +extern gchar *default_brush; +extern gchar *pattern_path; +extern gchar *default_pattern; +extern gchar *palette_path; +extern gchar *default_palette; +extern gchar *gradient_path; +extern gchar *default_gradient; +extern gchar *pluginrc_path; +extern gchar *module_path; +extern gint tile_cache_size; +extern gint marching_speed; +extern gint last_opened_size; +extern gdouble gamma_val; +extern gint transparency_type; +extern gboolean perfectmouse; +extern gint transparency_size; +extern gint levels_of_undo; +extern gint color_cube_shades[]; +extern gboolean install_cmap; +extern gboolean cycled_marching_ants; +extern gint default_threshold; +extern gboolean stingy_memory_use; +extern gboolean allow_resize_windows; +extern gboolean no_cursor_updating; +extern gint preview_size; +extern gint nav_preview_size; +extern gboolean show_rulers; +extern GimpUnit default_units; +extern gboolean show_statusbar; +extern gboolean auto_save; +extern InterpolationType interpolation_type; +extern gboolean confirm_on_close; +extern gint default_width, default_height; +extern gint default_type; +extern GimpUnit default_resolution_units; +extern gdouble default_xresolution; +extern gdouble default_yresolution; +extern gchar *default_comment; +extern gboolean default_dot_for_dot; +extern gboolean save_session_info; +extern gboolean save_device_status; +extern gboolean always_restore_session; +extern gboolean show_tips; +extern gint last_tip; +extern gboolean show_tool_tips; +extern gdouble monitor_xres; +extern gdouble monitor_yres; +extern gboolean using_xserver_resolution; +extern gint num_processors; +extern gchar *image_title_format; +extern gboolean global_paint_options; +extern gboolean show_indicators; +extern gint max_new_image_size; +extern gint thumbnail_mode; +extern gboolean trust_dirty_flag; +extern gboolean use_help; +extern gboolean nav_window_per_display; +extern gboolean info_window_follows_mouse; +extern gint help_browser; /* function prototypes */ -void parse_buffers_init (); /* this has to be called before any file - * is parsed - */ -void parse_gimprc (void); -gboolean parse_gimprc_file (char *filename); -void save_gimprc (GList **updated_options, GList **conflicting_options); -char * gimprc_find_token (char *token); -char * gimprc_value_to_str (char *name); -void save_gimprc_strings (gchar *token, gchar *value); +gboolean parse_buffers_init (void); /* this has to be called before any file + * is parsed + */ +void parse_gimprc (void); +gboolean parse_gimprc_file (gchar *filename); +void save_gimprc (GList **updated_options, + GList **conflicting_options); +gchar * gimprc_find_token (gchar *token); +gchar * gimprc_value_to_str (gchar *name); +void save_gimprc_strings (gchar *token, + gchar *value); #endif /* __GIMPRC_H__ */ diff --git a/app/gimpui.h b/app/gimpui.h index caf4801f41..d59dd9ed8b 100644 --- a/app/gimpui.h +++ b/app/gimpui.h @@ -25,9 +25,13 @@ #include "gimphelp.h" +#include "libgimp/gimpchainbutton.h" #include "libgimp/gimpdialog.h" +#include "libgimp/gimpfileselection.h" #include "libgimp/gimppixmap.h" +#include "libgimp/gimppatheditor.h" #include "libgimp/gimpquerybox.h" +#include "libgimp/gimpsizeentry.h" #include "libgimp/gimpwidgets.h" /* a simple message box */ diff --git a/app/gui/preferences-dialog.c b/app/gui/preferences-dialog.c index 4b18d289e9..f3da9dd9cb 100644 --- a/app/gui/preferences-dialog.c +++ b/app/gui/preferences-dialog.c @@ -32,11 +32,8 @@ #include "session.h" #include "tile_cache.h" -#include "libgimp/gimpchainbutton.h" -#include "libgimp/gimpfileselection.h" -#include "libgimp/gimppatheditor.h" -#include "libgimp/gimpsizeentry.h" #include "libgimp/gimplimits.h" +#include "libgimp/gimpmath.h" #include "libgimp/gimpintl.h" @@ -61,8 +58,6 @@ static void file_prefs_cancel_callback (GtkWidget *, GtkWidget *); static void file_prefs_toggle_callback (GtkWidget *, gpointer); static void file_prefs_preview_size_callback (GtkWidget *, gpointer); static void file_prefs_nav_preview_size_callback (GtkWidget *, gpointer); -static void file_prefs_mem_size_callback (GtkWidget *, gpointer); -static void file_prefs_mem_size_unit_callback (GtkWidget *, gpointer); static void file_prefs_string_callback (GtkWidget *, gpointer); static void file_prefs_text_callback (GtkWidget *, gpointer); static void file_prefs_filename_callback (GtkWidget *, gpointer); @@ -982,67 +977,6 @@ file_prefs_nav_preview_size_callback (GtkWidget *widget, gdisplays_nav_preview_resized (); } -static void -file_prefs_mem_size_callback (GtkWidget *widget, - gpointer data) -{ - gint *mem_size; - gint divided_mem_size; - gint mem_size_unit; - - if (! (mem_size = gtk_object_get_data (GTK_OBJECT (widget), "mem_size"))) - return; - - divided_mem_size = (int) gtk_object_get_data (GTK_OBJECT (widget), - "divided_mem_size"); - mem_size_unit = (int) gtk_object_get_data (GTK_OBJECT (widget), - "mem_size_unit"); - - divided_mem_size = GTK_ADJUSTMENT (widget)->value; - *mem_size = divided_mem_size * mem_size_unit; - - gtk_object_set_data (GTK_OBJECT (widget), "divided_mem_size", - (gpointer) divided_mem_size); -} - -static void -file_prefs_mem_size_unit_callback (GtkWidget *widget, - gpointer data) -{ - GtkObject *adjustment; - gint new_unit; - gint *mem_size; - gint divided_mem_size; - gint mem_size_unit; - - adjustment = GTK_OBJECT (data); - - new_unit = (int) gtk_object_get_user_data (GTK_OBJECT (widget)); - - if (! (mem_size = gtk_object_get_data (GTK_OBJECT (adjustment), "mem_size"))) - return; - - divided_mem_size = (int) gtk_object_get_data (GTK_OBJECT (adjustment), - "divided_mem_size"); - mem_size_unit = (int) gtk_object_get_data (GTK_OBJECT (adjustment), - "mem_size_unit"); - - if (new_unit != mem_size_unit) - { - divided_mem_size = *mem_size / new_unit; - mem_size_unit = new_unit; - - gtk_signal_handler_block_by_data (GTK_OBJECT (adjustment), mem_size); - gtk_adjustment_set_value (GTK_ADJUSTMENT (adjustment), divided_mem_size); - gtk_signal_handler_unblock_by_data (GTK_OBJECT (adjustment), mem_size); - } - - gtk_object_set_data (GTK_OBJECT (adjustment), "divided_mem_size", - (gpointer) divided_mem_size); - gtk_object_set_data (GTK_OBJECT (adjustment), "mem_size_unit", - (gpointer) mem_size_unit); -} - static void file_prefs_string_callback (GtkWidget *widget, gpointer data) @@ -1384,8 +1318,6 @@ file_pref_cmd_callback (GtkWidget *widget, GSList *group; gint i; - gint divided_mem_size; - gint mem_size_unit; gchar *pixels_per_unit; if (prefs_dlg) @@ -1675,46 +1607,13 @@ file_pref_cmd_callback (GtkWidget *widget, _("Default Image Type:"), 1.0, 0.5, optionmenu, 1, TRUE); - /* The maximum size of a new image */ - mem_size_unit = 1; - for (i = 0; i < 3; i++) - { - if (max_new_image_size % (mem_size_unit * 1024) != 0) - break; - mem_size_unit *= 1024; - } - divided_mem_size = max_new_image_size / mem_size_unit; - - hbox = gtk_hbox_new (FALSE, 2); - spinbutton = - gimp_spin_button_new (&adjustment, divided_mem_size, - 0.0, (4069.0 * 1024 * 1024), 1.0, 16.0, 0.0, - 1.0, 0.0); + /* The maximum size of a new image */ + adjustment = gtk_adjustment_new (max_new_image_size, + 0, (4069.0 * 1024 * 1024), 1.0, 1.0, 0.0); + hbox = gimp_mem_size_entry_new (GTK_ADJUSTMENT (adjustment)); gtk_signal_connect (GTK_OBJECT (adjustment), "value_changed", - GTK_SIGNAL_FUNC (file_prefs_mem_size_callback), + GTK_SIGNAL_FUNC (gimp_int_adjustment_update), &max_new_image_size); - gtk_box_pack_start (GTK_BOX (hbox), spinbutton, FALSE, FALSE, 0); - gtk_widget_show (spinbutton); - - /* for the mem_size_unit callback */ - gtk_object_set_data (GTK_OBJECT (adjustment), "mem_size", - &max_new_image_size); - gtk_object_set_data (GTK_OBJECT (adjustment), "divided_mem_size", - (gpointer) divided_mem_size); - gtk_object_set_data (GTK_OBJECT (adjustment), "mem_size_unit", - (gpointer) mem_size_unit); - - optionmenu = - gimp_option_menu_new2 (FALSE, file_prefs_mem_size_unit_callback, - adjustment, (gpointer) mem_size_unit, - - _("Bytes"), (gpointer) 1, NULL, - _("KiloBytes"), (gpointer) 1024, NULL, - _("MegaBytes"), (gpointer) (1024 * 1024), NULL, - - NULL); - gtk_box_pack_start (GTK_BOX (hbox), optionmenu, FALSE, FALSE, 0); - gtk_widget_show (optionmenu); gimp_table_attach_aligned (GTK_TABLE (table), 0, 1, _("Maximum Image Size:"), 1.0, 0.5, hbox, 1, TRUE); @@ -1725,8 +1624,8 @@ file_pref_cmd_callback (GtkWidget *widget, GTK_CTREE (ctree), _("Default Comment"), "dialogs/preferences/default_comment.html", - NULL, - &top_insert, + top_insert, + &child_insert, page_index); gtk_widget_show (vbox); page_index++; @@ -2193,45 +2092,12 @@ file_pref_cmd_callback (GtkWidget *widget, spinbutton, 1, TRUE); /* The tile cache size */ - mem_size_unit = 1; - for (i = 0; i < 3; i++) - { - if (edit_tile_cache_size % (mem_size_unit * 1024) != 0) - break; - mem_size_unit *= 1024; - } - divided_mem_size = edit_tile_cache_size / mem_size_unit; - - hbox = gtk_hbox_new (FALSE, 2); - spinbutton = - gimp_spin_button_new (&adjustment, divided_mem_size, - 0.0, (4069.0 * 1024 * 1024), 1.0, 16.0, 0.0, - 1.0, 0.0); + adjustment = gtk_adjustment_new (edit_tile_cache_size, + 0, (4069.0 * 1024 * 1024), 1.0, 1.0, 0.0); + hbox = gimp_mem_size_entry_new (GTK_ADJUSTMENT (adjustment)); gtk_signal_connect (GTK_OBJECT (adjustment), "value_changed", - GTK_SIGNAL_FUNC (file_prefs_mem_size_callback), + GTK_SIGNAL_FUNC (gimp_int_adjustment_update), &edit_tile_cache_size); - gtk_box_pack_start (GTK_BOX (hbox), spinbutton, FALSE, FALSE, 0); - gtk_widget_show (spinbutton); - - /* for the mem_size_unit callback */ - gtk_object_set_data (GTK_OBJECT (adjustment), "mem_size", - &edit_tile_cache_size); - gtk_object_set_data (GTK_OBJECT (adjustment), "divided_mem_size", - (gpointer) divided_mem_size); - gtk_object_set_data (GTK_OBJECT (adjustment), "mem_size_unit", - (gpointer) mem_size_unit); - - optionmenu = - gimp_option_menu_new2 (FALSE, file_prefs_mem_size_unit_callback, - adjustment, (gpointer) mem_size_unit, - - _("Bytes"), (gpointer) 1, NULL, - _("KiloBytes"), (gpointer) 1024, NULL, - _("MegaBytes"), (gpointer) (1024 * 1024), NULL, - - NULL); - gtk_box_pack_start (GTK_BOX (hbox), optionmenu, FALSE, FALSE, 0); - gtk_widget_show (optionmenu); gimp_table_attach_aligned (GTK_TABLE (table), 0, 1, _("Tile Cache Size:"), 1.0, 0.5, hbox, 1, TRUE); @@ -2387,14 +2253,15 @@ file_pref_cmd_callback (GtkWidget *widget, vbox2 = file_prefs_frame_new (_("Get Monitor Resolution"), GTK_BOX (vbox)); { - gdouble xres, yres; - gchar buf[80]; + gdouble xres, yres; + gchar *str; gdisplay_xserver_resolution (&xres, &yres); - g_snprintf (buf, sizeof (buf), _("(Currently %d x %d dpi)"), - (int) (xres + 0.5), (int) (yres + 0.5)); - label = gtk_label_new (buf); + str = g_strdup_printf (_("(Currently %d x %d dpi)"), + ROUND (xres), ROUND (yres)); + label = gtk_label_new (str); + g_free (str); } abox = gtk_alignment_new (0.5, 0.5, 0.0, 0.0); diff --git a/app/gui/user-install-dialog.c b/app/gui/user-install-dialog.c index 2c47d27a6b..10e92de788 100644 --- a/app/gui/user-install-dialog.c +++ b/app/gui/user-install-dialog.c @@ -29,11 +29,20 @@ #include "appenv.h" #include "install.h" +#include "gdisplay_ops.h" #include "gimprc.h" #include "gimpui.h" +#include "unitrc.h" + +#include "libgimp/gimpenv.h" +#include "libgimp/gimplimits.h" +#include "libgimp/gimpmath.h" #include "libgimp/gimpintl.h" -#include "libgimp/gimpenv.h" + +#include "pixmaps/wilber.xpm" +#include "pixmaps/new.xpm" +#include "pixmaps/folder.xpm" #ifndef G_OS_WIN32 # ifndef __EMX__ @@ -48,26 +57,29 @@ # define USER_INSTALL "user_install.bat" #endif -static void install_run (InstallCallback); -static void install_help (InstallCallback); -static void help_install_callback (GtkWidget *, gpointer); -static void help_ignore_callback (GtkWidget *, gpointer); -static void help_quit_callback (GtkWidget *, gpointer); -static void install_continue_callback (GtkWidget *, gpointer); -static void install_quit_callback (GtkWidget *, gpointer); +#define NUM_PAGES 5 +#define WILBER_WIDTH 62 + +static void install_dialog_create (InstallCallback); +static void install_continue_callback (GtkWidget *widget, gpointer data); +static void install_cancel_callback (GtkWidget *widget, gpointer data); + +static gboolean install_run (void); +static void install_tuning (void); +static void install_tuning_done (void); +static void install_resolution (void); +static void install_resolution_done (void); -static GtkWidget *help_widget; -static GtkWidget *install_widget; void install_verify (InstallCallback install_callback) { - int properly_installed = TRUE; - char *filename; + gboolean properly_installed = TRUE; + gchar *filename; struct stat stat_buf; - filename = gimp_directory (); /* gimp_directory now always returns something */ + filename = gimp_directory (); if (stat (filename, &stat_buf) != 0) properly_installed = FALSE; @@ -88,282 +100,674 @@ install_verify (InstallCallback install_callback) } else { - install_help (install_callback); + install_dialog_create (install_callback); } } +/* private stuff */ + +static GtkWidget *install_dialog = NULL; + +static GtkWidget *notebook = NULL; +static gint notebook_index = 0; + +static GtkWidget *log_page = NULL; +static GtkWidget *tuning_page = NULL; +static GtkWidget *resolution_page = NULL; + +static GtkWidget *continue_button = NULL; + +static GtkStyle *title_style = NULL; +static GdkFont *large_font = NULL; + +static GtkStyle *page_style = NULL; +static GdkColormap *colormap = NULL; + +static GdkGC *white_gc = NULL; + +static GdkColor black_color; +static GdkColor white_color; +static GdkColor title_color; + +static struct +{ + gboolean directory; + gchar *text; + gchar *description; +} +tree_items[] = +{ + { + FALSE, "gimprc", + N_("The gimprc is used to store personal preferences\n" + "that affect GIMP's default behavior.\n" + "Paths to search for brushes, palettes, gradients,\n" + "patterns, plug-ins and modules can also configured here.") + }, + { + FALSE, "gtkrc", + N_("GIMP uses an additional gtkrc file so you can\n" + "configure it to look differently than other GTK apps.") + }, + { + FALSE, "pluginrc", + N_("Plug-ins and extensions are external programs run by\n" + "the GIMP which provide additional functionality.\n" + "These programs are searched for at run-time and\n" + "information about their functionality and mod-times\n" + "is cached in this file. This file is intended to\n" + "be GIMP-readable only, and should not be edited.") + }, + { + FALSE, "menurc", + N_("Key shortcuts can be dynamically redefined in The GIMP.\n" + "The menurc is a dump of your configuration so it can.\n" + "be remembered for the next session. You may edit this\n" + "file if you wish, but it is much easier to define the\n" + "keys from within The GIMP. Deleting this file will\n" + "restore the default shortcuts.") + }, + { + FALSE, "sessionrc", + N_("The sessionrc is used to store what dialog windows were\n" + "open the last time you quit The GIMP. You can configure\n" + "The GIMP to reopen these dialogs at the saved position.") + }, + { + FALSE, "unitrc", + N_("The unitrc is used to store your user units database.\n" + "You can define additional units and use them just\n" + "like you use the built-in units inches, millimeters,\n" + "points and picas. This file is overwritten each time\n" + "you quit the GIMP.") + }, + { + TRUE, "brushes", + N_("This is a subdirectory which can be used to store\n" + "user defined brushes. The default gimprc file\n" + "checks this subdirectory in addition to the system-\n" + "wide gimp brushes installation when searching for\n" + "brushes.") + }, + { + TRUE, "generated_brushes", + N_("This is a subdirectory which is used to store brushes\n" + "that are created with the brush editor. The default\n" + "gimprc file checks this subdirectory when searching for\n" + "generated brushes.") + }, + { + TRUE, "gradients", + N_("This is a subdirectory which can be used to store\n" + "user defined gradients. The default gimprc file\n" + "checks this subdirectory in addition to the system-\n" + "wide gimp gradients installation when searching for\n" + "gradients.") + }, + { + TRUE, "palettes", + N_("This is a subdirectory which can be used to store\n" + "user defined palettes. The default gimprc file\n" + "checks only this subdirectory (not the system-wide\n" + "installation) when searching for palettes. During\n" + "installation, the system palettes will be copied\n" + "here. This is done to allow modifications made to\n" + "palettes during GIMP execution to persist across\n" + "sessions.") + }, + { + TRUE, "patterns", + N_("This is a subdirectory which can be used to store\n" + "user defined patterns. The default gimprc file\n" + "checks this subdirectory in addition to the system-\n" + "wide gimp patterns installation when searching for\n" + "patterns.") + }, + { + TRUE, "plug-ins", + N_("This is a subdirectory which can be used to store\n" + "user created, temporary, or otherwise non-system-\n" + "supported plug-ins. The default gimprc file\n" + "checks this subdirectory in addition to the system-\n" + "wide GIMP plug-in directories when searching for\n" + "plug-ins.") + }, + { + TRUE, "modules", + N_("This subdirectory can be used to store user created,\n" + "temporary, or otherwise non-system-supported DLL modules.\n" + "The default gimprc file checks this subdirectory\n" + "in addition to the system-wide GIMP module directory\n" + "when searching for modules to load when initializing.") + }, + { + TRUE, "scripts", + N_("This subdirectory is used by the GIMP to store \n" + "user created and installed scripts. The default gimprc\n" + "file checks this subdirectory in addition to the system-\n" + "wide gimp scripts subdirectory when searching for scripts") + }, + { + TRUE, "tmp", + N_("This subdirectory is used by the GIMP to temporarily\n" + "store undo buffers to reduce memory usage. If GIMP is\n" + "unceremoniously killed, files may persist in this directory\n" + "of the form: gimp<#>.<#>. These files are useless across\n" + "GIMP sessions and can be destroyed with impunity.") + }, + { + TRUE, "curves", + N_("This subdirectory is used to store parameter files for\n" + "the Curves tool.") + }, + { + TRUE, "levels", + N_("This subdirectory is used to store parameter files for\n" + "the Levels tool.") + }, + { + TRUE, "fractalexplorer", + N_("This is a subdirectory which can be used to store\n" + "user defined fractals to be used by the FractalExplorer\n" + "plug-in. The default gimprc file checks this subdirectory in\n" + "addition to the systemwide gimp FractalExplorer installation\n" + "when searching for fractals.") + }, + { + TRUE, "gfig", + N_("This is a subdirectory which can be used to store\n" + "user defined figures to be used by the gfig plug-in.\n" + "The default gimprc file checks this subdirectory in\n" + "addition to the systemwide gimp gfig installation\n" + "when searching for gfig figures.") + }, + { + TRUE, "gflare", + N_("This is a subdirectory which can be used to store\n" + "user defined gflares to be used by the gflare plug-in.\n" + "The default gimprc file checks this subdirectory in\n" + "addition to the systemwide gimp gflares installation\n" + "when searching for gflares.") + }, + { + TRUE, "gimpressionist", + N_("This is a subdirectory which can be used to store\n" + "user defined data to be used by the Gimpressionist\n" + "plug-in. The default gimprc file checks this subdirectory in\n" + "addition to the systemwide gimp Gimpressionist installation\n" + "when searching for data.") + } +}; +static gint num_tree_items = sizeof (tree_items) / sizeof (tree_items[0]); + + +static void +install_continue_callback (GtkWidget *widget, + gpointer data) +{ + InstallCallback callback; + + callback = (InstallCallback) data; + + switch (notebook_index) + { + case 0: + break; + + case 1: + if (!install_run ()) + gtk_widget_set_sensitive (continue_button, FALSE); + break; + + case 2: +#ifdef G_OS_WIN32 + FreeConsole (); +#endif + parse_buffers_init (); + parse_unitrc (); + parse_gimprc (); + install_tuning (); + break; + + case 3: + install_tuning_done (); + install_resolution (); + break; + + case 4: + install_resolution_done (); + gtk_widget_destroy (install_dialog); + gdk_gc_unref (white_gc); + + (* callback) (); + break; + } + + if (notebook_index < NUM_PAGES - 1) + gtk_notebook_set_page (GTK_NOTEBOOK (notebook), ++notebook_index); +} + + +static void +install_cancel_callback (GtkWidget *widget, + gpointer data) +{ + gtk_widget_destroy (install_dialog); + gtk_exit (0); +} + +static gint +install_corner_expose (GtkWidget *widget, + GdkEventExpose *eevent, + gpointer data) +{ + gdk_draw_arc (widget->window, + white_gc, + TRUE, + 0, 0, + widget->allocation.width * 2, widget->allocation.height * 2, + 90 * 64, + 180 * 64); + + return TRUE; +} + +static GtkWidget * +install_notebook_append_page (GtkNotebook *notebook, + gchar *title) +{ + GtkWidget *page; + GtkWidget *vbox; + GtkWidget *hbox; + GtkWidget *ebox; + GtkWidget *wilber; + GtkWidget *label; + GtkWidget *table; + GtkWidget *darea; + + page = gtk_vbox_new (FALSE, 0); + + gtk_widget_push_style (title_style); + + ebox = gtk_event_box_new (); + gtk_widget_set_events (ebox, GDK_EXPOSURE_MASK); + gtk_widget_set_usize (ebox, WILBER_WIDTH + 16, -1); + gtk_box_pack_start (GTK_BOX (page), ebox, FALSE, FALSE, 0); + gtk_widget_show (ebox); + + hbox = gtk_hbox_new (FALSE, 8); + gtk_container_set_border_width (GTK_CONTAINER (hbox), 8); + gtk_container_add (GTK_CONTAINER (ebox), hbox); + gtk_widget_show (hbox); + + wilber = gimp_pixmap_new (wilber_xpm); + gtk_box_pack_start (GTK_BOX (hbox), wilber, FALSE, FALSE, 8); + gtk_widget_show (wilber); + + label = gtk_label_new (title); + gtk_label_set_justify (GTK_LABEL (label), GTK_JUSTIFY_LEFT); + gtk_box_pack_start (GTK_BOX (hbox), label, FALSE, FALSE, 0); + gtk_widget_show (label); + + gtk_widget_pop_style (); + + hbox = gtk_hbox_new (FALSE, 0); + gtk_box_pack_start (GTK_BOX (page), hbox, TRUE, TRUE, 0); + gtk_widget_show (hbox); + + gtk_widget_push_style (title_style); + + ebox = gtk_event_box_new (); + gtk_widget_set_usize (ebox, 16, -1); + gtk_box_pack_start (GTK_BOX (hbox), ebox, FALSE, FALSE, 0); + gtk_widget_show (ebox); + + gtk_widget_pop_style (); + + ebox = gtk_event_box_new (); + gtk_box_pack_start (GTK_BOX (hbox), ebox, TRUE, TRUE, 0); + gtk_widget_show (ebox); + + table = gtk_table_new (3, 3, FALSE); + gtk_table_set_row_spacing (GTK_TABLE (table), 1, 8); + gtk_table_set_col_spacing (GTK_TABLE (table), 1, 8); + gtk_container_add (GTK_CONTAINER (ebox), table); + gtk_widget_show (table); + + gtk_widget_push_style (title_style); + + darea = gtk_drawing_area_new (); + gtk_drawing_area_size (GTK_DRAWING_AREA (darea), 16, 16); + gtk_signal_connect_after (GTK_OBJECT (darea), "expose_event", + GTK_SIGNAL_FUNC (install_corner_expose), + NULL); + gtk_table_attach (GTK_TABLE (table), darea, 0, 1, 0, 1, + GTK_SHRINK, GTK_SHRINK, 0, 0); + gtk_widget_show (darea); + + gtk_widget_pop_style (); + + vbox = gtk_vbox_new (FALSE, 6); + gtk_table_attach_defaults (GTK_TABLE (table), vbox, 1, 2, 1, 2); + gtk_widget_show (vbox); + + gtk_widget_show (page); + + gtk_notebook_append_page (GTK_NOTEBOOK (notebook), page, NULL); + + return vbox; +} + +static void +add_label (GtkBox *box, + gboolean last_line, + gchar *text) +{ + GtkWidget *label; + + label = gtk_label_new (text); + gtk_label_set_justify (GTK_LABEL (label), GTK_JUSTIFY_LEFT); + + if (last_line) + { + gtk_misc_set_alignment (GTK_MISC (label), 1.0, 0.5); + gtk_box_pack_end (box, label, FALSE, FALSE, 0); + } + else + { + gtk_misc_set_alignment (GTK_MISC (label), 0.0, 0.5); + gtk_box_pack_start (box, label, FALSE, FALSE, 0); + } + + gtk_widget_show (label); +} + +static void +install_ctree_select_row (GtkWidget *widget, + gint row, + gint column, + GdkEventButton *bevent, + gpointer data) +{ + GtkNotebook *notebook; + + notebook = (GtkNotebook*) data; + + gtk_notebook_set_page (notebook, row); +} + +void +install_dialog_create (InstallCallback callback) +{ + GtkWidget *dialog; + GtkWidget *page; + GtkWidget *sep; + + notebook_index = 0; + + dialog = install_dialog = + gimp_dialog_new (_("GIMP User Installation"), "user_installation", + NULL, NULL, + GTK_WIN_POS_CENTER, + FALSE, FALSE, FALSE, + + _("Continue"), install_continue_callback, + callback, NULL, &continue_button, TRUE, FALSE, + _("Cancel"), install_cancel_callback, + callback, 1, NULL, FALSE, TRUE, + + NULL); + + gtk_widget_realize (dialog); + + /* B/W Style for the page contents */ + page_style = gtk_style_copy (dialog->style); + colormap = gtk_widget_get_colormap (dialog); + + gdk_color_black (colormap, &black_color); + gdk_color_white (colormap, &white_color); + + page_style->fg[GTK_STATE_NORMAL] = black_color; + page_style->text[GTK_STATE_NORMAL] = black_color; + page_style->bg[GTK_STATE_NORMAL] = white_color; + + /* B/Colored Style for the page title */ + title_style = gtk_style_copy (page_style); + + if (gdk_color_parse ("sienna1", &title_color) && + gdk_colormap_alloc_color (colormap, &title_color, FALSE, TRUE)) + { + title_style->bg[GTK_STATE_NORMAL] = title_color; + } + + /* this is a fontset, e.g. multiple comma-separated font definitions */ + large_font = gdk_fontset_load (_("-*-helvetica-bold-r-normal-*-*-240-*-*-*-*-*-*,*")); + + title_style->font = large_font; + + /* W/W GC for the corner */ + white_gc = gdk_gc_new (dialog->window); + gdk_gc_set_foreground (white_gc, &white_color); + + gtk_widget_push_style (page_style); + + notebook = gtk_notebook_new (); + gtk_notebook_set_show_tabs (GTK_NOTEBOOK (notebook), FALSE); + gtk_notebook_set_show_border (GTK_NOTEBOOK (notebook), FALSE); + gtk_container_add (GTK_CONTAINER (GTK_DIALOG (dialog)->vbox), notebook); + gtk_widget_show (notebook); + + /* Page 1 */ + page = install_notebook_append_page (GTK_NOTEBOOK (notebook), + _("Welcome to\n" + "The GIMP User Installation")); + + add_label (GTK_BOX (page), FALSE, + _("The GIMP - GNU Image Manipulation Program\n" + "Copyright (C) 1995-2000\n" + "Spencer Kimball, Peter Mattis and the GIMP Development Team.")); + + sep = gtk_hseparator_new (); + gtk_box_pack_start (GTK_BOX (page), sep, FALSE, FALSE, 2); + gtk_widget_show (sep); + + add_label (GTK_BOX (page), FALSE, + _("This program is free software; you can redistribute it and/or modify\n" + "it under the terms of the GNU General Public License as published by\n" + "the Free Software Foundation; either version 2 of the License, or\n" + "(at your option) any later version.")); + add_label (GTK_BOX (page), FALSE, + _("This program is distributed in the hope that it will be useful,\n" + "but WITHOUT ANY WARRANTY; without even the implied warranty of\n" + "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n" + "See the GNU General Public License for more details.")); + add_label (GTK_BOX (page), FALSE, + _("You should have received a copy of the GNU General Public License\n" + "along with this program; if not, write to the Free Software\n" + "Foundation, Inc., 59 Temple Place - Suite 330, Boston,\n" + "MA 02111-1307, USA.")); + + add_label (GTK_BOX (page), TRUE, + _("Click \"Continue\" to enter the GIMP user installation.")); + + sep = gtk_hseparator_new (); + gtk_box_pack_end (GTK_BOX (page), sep, FALSE, FALSE, 2); + gtk_widget_show (sep); + + /* Page 2 */ + { + GtkWidget *hbox; + GtkWidget *vbox; + GtkWidget *ctree; + GtkWidget *notebook2; + GtkWidget *page2; + GtkWidget *label; + GtkCTreeNode *main_node = NULL; + GtkCTreeNode *sub_node = NULL; + GdkPixmap *file_pixmap; + GdkBitmap *file_mask; + GdkPixmap *folder_pixmap; + GdkBitmap *folder_mask; + + gint i; + + gchar *node[1]; + + page = install_notebook_append_page (GTK_NOTEBOOK (notebook), + _("Personal GIMP Directory")); + + hbox = gtk_hbox_new (FALSE, 8); + gtk_box_pack_start (GTK_BOX (page), hbox, FALSE, FALSE, 0); + gtk_widget_show (hbox); + + ctree = gtk_ctree_new (1, 0); + gtk_ctree_set_indent (GTK_CTREE (ctree), 12); + gtk_clist_set_shadow_type (GTK_CLIST (ctree), GTK_SHADOW_NONE); + gtk_box_pack_start (GTK_BOX (hbox), ctree, FALSE, FALSE, 0); + gtk_widget_show (ctree); + + vbox = gtk_vbox_new (FALSE, 6); + gtk_box_pack_start (GTK_BOX (hbox), vbox, TRUE, TRUE, 0); + gtk_widget_show (vbox); + + add_label (GTK_BOX (vbox), FALSE, + _("For a proper GIMP installation, a subdirectory needs to be created.\n" + "This subdirectory will contain a number of important files.")); + add_label (GTK_BOX (vbox), FALSE, + _("Click on one of the files or subdirectories in the tree\n" + "to get more information about the selected item.")); + add_label (GTK_BOX (vbox), TRUE, + _("Click \"Continue\" to create your personal GIMP directory.")); + + notebook2 = gtk_notebook_new (); + gtk_container_set_border_width (GTK_CONTAINER (notebook2), 8); + gtk_notebook_set_show_tabs (GTK_NOTEBOOK (notebook2), FALSE); + gtk_notebook_set_show_border (GTK_NOTEBOOK (notebook2), FALSE); + gtk_box_pack_start (GTK_BOX (vbox), notebook2, TRUE, TRUE, 0); + gtk_widget_show (notebook2); + + /* empty page */ + page2 = gtk_vbox_new (FALSE, 0); + gtk_widget_show (page2); + gtk_notebook_append_page (GTK_NOTEBOOK (notebook2), page2, NULL); + + node[0] = gimp_directory (); + + main_node = gtk_ctree_insert_node (GTK_CTREE (ctree), NULL, NULL, + node, 4, + NULL, NULL, NULL, NULL, + FALSE, TRUE); + + gtk_signal_connect (GTK_OBJECT (ctree), "select_row", + GTK_SIGNAL_FUNC (install_ctree_select_row), + notebook2); + + file_pixmap = gdk_pixmap_create_from_xpm_d (dialog->window, + &file_mask, + &page_style->bg[GTK_STATE_NORMAL], + new_xpm); + folder_pixmap = gdk_pixmap_create_from_xpm_d (dialog->window, + &folder_mask, + &page_style->bg[GTK_STATE_NORMAL], + folder_xpm); + + for (i = 0; i < num_tree_items; i++) + { + node[0] = tree_items[i].text; + + if (tree_items[i].directory) + { + sub_node = gtk_ctree_insert_node (GTK_CTREE (ctree), main_node, NULL, + node, 4, + folder_pixmap, folder_mask, + folder_pixmap, folder_mask, + FALSE, TRUE); + } + else + { + sub_node = gtk_ctree_insert_node (GTK_CTREE (ctree), main_node, NULL, + node, 4, + file_pixmap, file_mask, + file_pixmap, file_mask, + FALSE, TRUE); + } + + page2 = gtk_vbox_new (FALSE, 0); + label = gtk_label_new (gettext (tree_items[i].description)); + gtk_label_set_justify (GTK_LABEL (label), GTK_JUSTIFY_LEFT); + gtk_misc_set_alignment (GTK_MISC (label), 0.0, 0.5); + gtk_box_pack_start (GTK_BOX (page2), label, TRUE, TRUE, 0); + gtk_widget_show (label); + gtk_widget_show (page2); + + gtk_notebook_append_page (GTK_NOTEBOOK (notebook2), page2, NULL); + } + + gtk_clist_set_column_width (GTK_CLIST (ctree), 0, + gtk_clist_optimal_column_width (GTK_CLIST (ctree), 0)); + + gtk_widget_set_usize (ctree, -1, ctree->requisition.height); + + gdk_pixmap_unref (file_pixmap); + gdk_bitmap_unref (file_mask); + gdk_pixmap_unref (folder_pixmap); + gdk_bitmap_unref (folder_mask); + } + + /* Page 3 */ + page = log_page = + install_notebook_append_page (GTK_NOTEBOOK (notebook), + _("User Installation Log")); + + /* Page 4 */ + page = tuning_page = + install_notebook_append_page (GTK_NOTEBOOK (notebook), + _("GIMP Performance Tuning")); + + add_label (GTK_BOX (page), FALSE, + _("For optimal GIMP performance, some settings may have to be adjusted.")); + + sep = gtk_hseparator_new (); + gtk_box_pack_start (GTK_BOX (page), sep, FALSE, FALSE, 2); + gtk_widget_show (sep); + + add_label (GTK_BOX (page), TRUE, + _("Click \"Continue\" to accept the settings above.")); + + sep = gtk_hseparator_new (); + gtk_box_pack_end (GTK_BOX (page), sep, FALSE, FALSE, 2); + gtk_widget_show (sep); + + /* Page 5 */ + page = resolution_page = + install_notebook_append_page (GTK_NOTEBOOK (notebook), + _("Monitor Resolution")); + + add_label (GTK_BOX (resolution_page), FALSE, + _("To display images in their natural size, " + "GIMP needs to know your monitor resolution.")); + + sep = gtk_hseparator_new (); + gtk_box_pack_start (GTK_BOX (page), sep, FALSE, FALSE, 2); + gtk_widget_show (sep); + + add_label (GTK_BOX (page), TRUE, + _("Click \"Continue\" to start The GIMP.")); + + sep = gtk_hseparator_new (); + gtk_box_pack_end (GTK_BOX (page), sep, FALSE, FALSE, 2); + gtk_widget_show (sep); + + gtk_widget_show (dialog); + + gtk_style_unref (title_style); + gtk_style_unref (page_style); +} + /*********************/ /* Local functions */ -static void -install_help (InstallCallback callback) -{ - GtkWidget *text; - GtkWidget *table; - GtkWidget *vsb; - GtkAdjustment *vadj; - GdkFont *font_strong; - GdkFont *font_emphasis; - GdkFont *font; - static const struct { - gint font; - char *text; - } help_lines[] = { - { 2, N_("The GIMP - GNU Image Manipulation Program\n\n") }, - { 1, "Copyright (C) 1995 Spencer Kimball and Peter Mattis\n" }, - { 0, "\n" }, - - { 0, - N_("This program is free software; you can redistribute it and/or modify\n" - "it under the terms of the GNU General Public License as published by\n" - "the Free Software Foundation; either version 2 of the License, or\n" - "(at your option) any later version.\n") }, - { 0, "\n" }, - { 0, N_("This program is distributed in the hope that it will be useful,\n" - "but WITHOUT ANY WARRANTY; without even the implied warranty of\n" - "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n" - "See the GNU General Public License for more details.\n") }, - { 0, "\n" }, - { 0, N_("You should have received a copy of the GNU General Public License\n" - "along with this program; if not, write to the Free Software\n" - "Foundation, Inc., 59 Temple Place - Suite 330, Boston,\n" - "MA 02111-1307, USA.\n") }, - { 0, "\n\n" }, - - { 2, N_("Personal GIMP Installation\n\n") }, - { 0, N_("For a proper GIMP installation, a subdirectory called\n") }, - { 1, NULL }, /* will be replaced with gimp_directory() */ - { 0, N_(" needs to be created. This\n" - "subdirectory will contain a number of important files:\n\n") }, - - { 1, "gimprc\n" }, - { 0, N_("\t\tThe gimprc is used to store personal preferences\n" - "\t\tthat affect GIMP's default behavior.\n" - "\t\tPaths to search for brushes, palettes, gradients,\n" - "\t\tpatterns, plug-ins and modules can also configured here.\n") }, - - { 1, "pluginrc\n" }, - { 0, N_("\t\tPlug-ins and extensions are external programs run by\n" - "\t\tthe GIMP which provide additional functionality.\n" - "\t\tThese programs are searched for at run-time and\n" - "\t\tinformation about their functionality and mod-times\n" - "\t\tis cached in this file. This file is intended to\n" - "\t\tbe GIMP-readable only, and should not be edited.\n") }, - - { 1, "menurc\n" }, - { 0, N_("\t\tKey shortcuts can be dynamically redefined in The GIMP.\n" - "\t\tThe menurc is a dump of your configuration so it can.\n" - "\t\tbe remembered for the next session. You may edit this\n" - "\t\tfile if you wish, but it is much easier to define the\n" - "\t\tkeys from within The GIMP. Deleting this file will\n" - "\t\trestore the default shortcuts.\n") }, - - { 1, "sessionrc\n" }, - { 0, N_("\t\tThe sessionrc is used to store what dialog windows were\n" - "\t\topen the last time you quit The GIMP. You can configure\n" - "\t\tThe GIMP to reopen these dialogs at the saved position.\n") }, - - { 1, "unitrc\n" }, - { 0, N_("\t\tThe unitrc is used to store your user units database.\n" - "\t\tYou can define additional units and use them just\n" - "\t\tlike you use the built-in units inches, millimeters,\n" - "\t\tpoints and picas. This file is overwritten each time\n" - "\t\tyou quit the GIMP.\n") }, - - { 1, "brushes\n" }, - { 0, N_("\t\tThis is a subdirectory which can be used to store\n" - "\t\tuser defined brushes. The default gimprc file\n" - "\t\tchecks this subdirectory in addition to the system-\n" - "\t\twide gimp brushes installation when searching for\n" - "\t\tbrushes.\n") }, - - { 1, "generated_brushes\n" }, - { 0, N_("\t\tThis is a subdirectory which is used to store brushes\n" - "\t\tthat are created with the brush editor. The default\n" - "\t\tgimprc file checks this subdirectory when searching for\n" - "\t\tgenerated brushes.\n") }, - - { 1, "gradients\n" }, - { 0, N_("\t\tThis is a subdirectory which can be used to store\n" - "\t\tuser defined gradients. The default gimprc file\n" - "\t\tchecks this subdirectory in addition to the system-\n" - "\t\twide gimp gradients installation when searching for\n" - "\t\tgradients.\n") }, - - { 1, "gfig\n" }, - { 0, N_("\t\tThis is a subdirectory which can be used to store\n" - "\t\tuser defined figures to be used by the gfig plug-in.\n" - "\t\tThe default gimprc file checks this subdirectory in\n" - "\t\taddition to the systemwide gimp gfig installation\n" - "\t\twhen searching for gfig figures.\n") }, - - { 1, "gflares\n" }, - { 0, N_("\t\tThis is a subdirectory which can be used to store\n" - "\t\tuser defined gflares to be used by the gflare plug-in.\n" - "\t\tThe default gimprc file checks this subdirectory in\n" - "\t\taddition to the systemwide gimp gflares installation\n" - "\t\twhen searching for gflares.\n") }, - - { 1, "fractalexplorer\n" }, - { 0, N_("\t\tThis is a subdirectory which can be used to store\n" - "\t\tuser defined fractals to be used by the FractalExplorer\n" - "\t\tplug-in. The default gimprc file checks this subdirectory in\n" - "\t\taddition to the systemwide gimp FractalExplorer installation\n" - "\t\twhen searching for fractals.\n") }, - - { 1, "palettes\n" }, - { 0, N_("\t\tThis is a subdirectory which can be used to store\n" - "\t\tuser defined palettes. The default gimprc file\n" - "\t\tchecks only this subdirectory (not the system-wide\n" - "\t\tinstallation) when searching for palettes. During\n" - "\t\tinstallation, the system palettes will be copied\n" - "\t\there. This is done to allow modifications made to\n" - "\t\tpalettes during GIMP execution to persist across\n" - "\t\tsessions.\n") }, - - { 1, "patterns\n" }, - { 0, N_("\t\tThis is a subdirectory which can be used to store\n" - "\t\tuser defined patterns. The default gimprc file\n" - "\t\tchecks this subdirectory in addition to the system-\n" - "\t\twide gimp patterns installation when searching for\n" - "\t\tpatterns.\n") }, - - { 1, "plug-ins\n" }, - { 0, N_("\t\tThis is a subdirectory which can be used to store\n" - "\t\tuser created, temporary, or otherwise non-system-\n" - "\t\tsupported plug-ins. The default gimprc file\n" - "\t\tchecks this subdirectory in addition to the system-\n" - "\t\twide GIMP plug-in directories when searching for\n" - "\t\tplug-ins.\n") }, - - { 1, "modules\n" }, - { 0, N_("\t\tThis subdirectory can be used to store user created,\n" - "\t\ttemporary, or otherwise non-system-supported DLL modules.\n" - "\t\tThe default gimprc file checks this subdirectory\n" - "\t\tin addition to the system-wide GIMP module directory\n" - "\t\twhen searching for modules to load when initializing.\n") }, - - { 1, "scripts\n" }, - { 0, N_("\t\tThis subdirectory is used by the GIMP to store \n" - "\t\tuser created and installed scripts. The default gimprc\n" - "\t\tfile checks this subdirectory in addition to the system\n" - "\t\t-wide gimp scripts subdirectory when searching for scripts\n") }, - - { 1, "tmp\n" }, - { 0, N_("\t\tThis subdirectory is used by the GIMP to temporarily\n" - "\t\tstore undo buffers to reduce memory usage. If GIMP is\n" - "\t\tunceremoniously killed, files may persist in this directory\n" - "\t\tof the form: gimp<#>.<#>. These files are useless across\n" - "\t\tGIMP sessions and can be destroyed with impunity.\n") } - }; - gint nhelp_lines = sizeof (help_lines) / sizeof (help_lines[0]); - gint i; - - help_widget = gimp_dialog_new (_("GIMP Installation"), "gimp_installation", - NULL, NULL, - GTK_WIN_POS_CENTER, - FALSE, TRUE, FALSE, - - _("Install"), help_install_callback, - callback, NULL, NULL, TRUE, FALSE, - _("Ignore"), help_ignore_callback, - callback, NULL, NULL, FALSE, FALSE, - _("Quit"), help_quit_callback, - callback, NULL, NULL, FALSE, TRUE, - - NULL); - - table = gtk_table_new (1, 2, FALSE); - gtk_container_set_border_width (GTK_CONTAINER (table), 2); - gtk_table_set_col_spacing (GTK_TABLE (table), 0, 2); - gtk_container_add (GTK_CONTAINER (GTK_DIALOG (help_widget)->vbox), table); - - vadj = GTK_ADJUSTMENT (gtk_adjustment_new (0.0, 0.0, 0.0, 0.0, 0.0, 0.0)); - vsb = gtk_vscrollbar_new (vadj); - text = gtk_text_new (NULL, vadj); - gtk_text_set_editable (GTK_TEXT (text), FALSE); - gtk_widget_set_usize (text, 450, 475); - - gtk_table_attach (GTK_TABLE (table), vsb, 1, 2, 0, 1, - 0, GTK_EXPAND | GTK_SHRINK | GTK_FILL, 0, 0); - gtk_table_attach (GTK_TABLE (table), text, 0, 1, 0, 1, - GTK_EXPAND | GTK_SHRINK | GTK_FILL, - GTK_EXPAND | GTK_SHRINK | GTK_FILL, 0, 0); - - /* this is a fontset, e.g. multiple comma-separated font definitions */ - font_strong = gdk_fontset_load (_("-*-helvetica-bold-r-normal-*-*-120-*-*-*-*-*-*,*")); - - /* this is a font, provide only one single font definition */ - font_emphasis = gdk_font_load (_("-*-helvetica-medium-o-normal-*-*-100-*-*-*-*-*-*")); - - /* this is a fontset, e.g. multiple comma-separated font definitions */ - font = gdk_fontset_load (_("-*-helvetica-medium-r-normal-*-*-100-*-*-*-*-*-*,*")); - if (!font_emphasis) - font_emphasis = font; - - /* Realize the widget before allowing new text to be inserted */ - gtk_widget_realize (text); - - for (i = 0; i < nhelp_lines; i++) - if (help_lines[i].text == NULL) - /* inserting gimp_directory () this way is a little ugly */ - gtk_text_insert (GTK_TEXT (text), - (help_lines[i].font == 2) ? font_strong : - (help_lines[i].font == 1) ? font_emphasis : font, - NULL, NULL, - gimp_directory (), -1); - else - gtk_text_insert (GTK_TEXT (text), - (help_lines[i].font == 2) ? font_strong : - (help_lines[i].font == 1) ? font_emphasis : font, - NULL, NULL, - gettext (help_lines[i].text), -1); - - /* scroll back to the top */ - gtk_adjustment_set_value (GTK_ADJUSTMENT (vadj), 0.0); - - gdk_font_unref (font_strong); - if (font_emphasis != font) - gdk_font_unref (font_emphasis); - gdk_font_unref (font); - - gtk_widget_show (vsb); - gtk_widget_show (text); - gtk_widget_show (table); - gtk_widget_show (help_widget); -} - -static void -help_install_callback (GtkWidget *widget, - gpointer client_data) -{ - InstallCallback callback; - - callback = (InstallCallback) client_data; - gtk_widget_destroy (help_widget); - install_run (callback); -} - -static void -help_ignore_callback (GtkWidget *widget, - gpointer client_data) -{ - InstallCallback callback; - - callback = (InstallCallback) client_data; - gtk_widget_destroy (help_widget); - (* callback) (); -} - -static void -help_quit_callback (GtkWidget *widget, - gpointer client_data) -{ - gtk_widget_destroy (help_widget); - gtk_exit (0); -} - #ifdef G_OS_WIN32 char * @@ -405,84 +809,44 @@ quote_spaces (char *string) #endif -static void -install_run (InstallCallback callback) +static gboolean +install_run (void) { - GtkWidget *text; - GtkWidget *table; - GtkWidget *vsb; - GtkAdjustment *vadj; - GdkFont *font_strong; - GdkFont *font; FILE *pfp; - char buffer[2048]; + gchar buffer[2048]; struct stat stat_buf; - int err; - int executable = TRUE; - - install_widget = gimp_dialog_new (_("Installation Log"), "installation_log", - NULL, NULL, - GTK_WIN_POS_CENTER, - FALSE, TRUE, FALSE, - - _("Continue"), install_continue_callback, - callback, NULL, NULL, TRUE, FALSE, - _("Quit"), install_quit_callback, - callback, NULL, NULL, FALSE, TRUE, - - NULL); - - table = gtk_table_new (1, 2, FALSE); - gtk_container_set_border_width (GTK_CONTAINER (table), 2); - gtk_table_set_col_spacing (GTK_TABLE (table), 0, 2); - gtk_container_add (GTK_CONTAINER (GTK_DIALOG (install_widget)->vbox), table); - - vadj = GTK_ADJUSTMENT (gtk_adjustment_new (0.0, 0.0, 0.0, 0.0, 0.0, 0.0)); - vsb = gtk_vscrollbar_new (vadj); - text = gtk_text_new (NULL, vadj); - gtk_widget_set_usize (text, 384, 356); - - gtk_table_attach (GTK_TABLE (table), vsb, 1, 2, 0, 1, - GTK_FILL, GTK_EXPAND | GTK_SHRINK | GTK_FILL, 0, 0); - gtk_table_attach (GTK_TABLE (table), text, 0, 1, 0, 1, - GTK_EXPAND | GTK_SHRINK | GTK_FILL, - GTK_EXPAND | GTK_SHRINK | GTK_FILL, - 0, 0); - - /* this is a fontset, e.g. multiple comma-separated font definitions */ - font_strong = gdk_fontset_load ( _("-*-helvetica-bold-r-normal-*-*-120-*-*-*-*-*-*,*")); - - /* this is a fontset, e.g. multiple comma-separated font definitions */ - font = gdk_fontset_load ( _("-*-helvetica-medium-r-normal-*-*-120-*-*-*-*-*-*,*")); - - /* Realize the text widget before inserting text strings */ - gtk_widget_realize (text); - -#ifndef G_OS_WIN32 - gtk_text_insert (GTK_TEXT (text), font_strong, NULL, NULL, _("User Installation Log\n\n"), -1); -#endif + gint err; + gboolean executable = TRUE; /* Generate output */ - g_snprintf (buffer, sizeof(buffer), "%s" G_DIR_SEPARATOR_S USER_INSTALL, + g_snprintf (buffer, sizeof (buffer), "%s" G_DIR_SEPARATOR_S USER_INSTALL, gimp_data_directory ()); if ((err = stat (buffer, &stat_buf)) != 0) { - gtk_text_insert (GTK_TEXT (text), font, NULL, NULL, buffer, -1); - gtk_text_insert (GTK_TEXT (text), font, NULL, NULL, - _(" does not exist. Cannot install.\n"), -1); + gchar *str; + + str = g_strdup_printf ("%s\n%s", buffer, + _("does not exist. Cannot install.")); + add_label (GTK_BOX (log_page), FALSE, str); + g_free (str); + executable = FALSE; } #ifdef S_IXUSR else if (! (S_IXUSR & stat_buf.st_mode) || ! (S_IRUSR & stat_buf.st_mode)) { - gtk_text_insert (GTK_TEXT (text), font, NULL, NULL, buffer, -1); - gtk_text_insert (GTK_TEXT (text), font, NULL, NULL, - _(" has invalid permissions.\nCannot install."), -1); + gchar *str; + + str = g_strdup_printf ("%s\n%s", buffer, + _("has invalid permissions. Cannot install.")); + add_label (GTK_BOX (log_page), FALSE, str); + g_free (str); + executable = FALSE; } #endif - if (executable == TRUE) + if (executable) { #ifdef G_OS_WIN32 char *quoted_data_dir, *quoted_user_dir; @@ -510,16 +874,17 @@ install_run (InstallCallback callback) g_free (quoted_data_dir); g_free (quoted_user_dir); - gtk_text_insert (GTK_TEXT (text), font_strong, NULL, NULL, - _("Did you notice any error messages\n" - "in the console window? If not, installation\n" - "was successful! Otherwise, quit and investigate\n" - "the possible reason...\n"), -1); + if (executable) + add_label (GTK_BOX (log_page), FALSE, + _("Did you notice any error messages in the console window?\n" + "If not, installation was successful!\n" + "Otherwise, quit and investigate the possible reason...")); #else #ifndef __EMX__ - g_snprintf (buffer, sizeof(buffer), "%s" G_DIR_SEPARATOR_S USER_INSTALL " %s %s", - gimp_data_directory (), gimp_data_directory(), - gimp_directory ()); + g_snprintf (buffer, sizeof(buffer), "%s" G_DIR_SEPARATOR_S USER_INSTALL " %s %s %s", + gimp_data_directory (), + "2>&1", + gimp_data_directory(), gimp_directory ()); #else g_snprintf (buffer, sizeof(buffer), "cmd.exe /c %s" G_DIR_SEPARATOR_S USER_INSTALL " %s %s", gimp_data_directory (), gimp_data_directory(), @@ -538,47 +903,278 @@ install_run (InstallCallback callback) * we can't tell if the installation script failed --austin */ if ((pfp = popen (buffer, "r")) != NULL) { + GtkWidget *table; + GtkWidget *log_text; + GtkWidget *vsb; + GtkAdjustment *vadj; + + table = gtk_table_new (1, 2, FALSE); + gtk_table_set_col_spacing (GTK_TABLE (table), 0, 2); + gtk_box_pack_start (GTK_BOX (log_page), table, TRUE, TRUE, 0); + + gtk_widget_pop_style (); + + vadj = GTK_ADJUSTMENT (gtk_adjustment_new (0.0, 0.0, 0.0, 0.0, 0.0, 0.0)); + vsb = gtk_vscrollbar_new (vadj); + log_text = gtk_text_new (NULL, vadj); + + gtk_widget_push_style (page_style); + + gtk_table_attach (GTK_TABLE (table), vsb, 1, 2, 0, 1, + GTK_FILL, GTK_EXPAND | GTK_SHRINK | GTK_FILL, 0, 0); + gtk_table_attach (GTK_TABLE (table), log_text, 0, 1, 0, 1, + GTK_EXPAND | GTK_SHRINK | GTK_FILL, + GTK_EXPAND | GTK_SHRINK | GTK_FILL, + 0, 0); + + gtk_widget_show (vsb); + gtk_widget_show (log_text); + gtk_widget_show (table); + while (fgets (buffer, sizeof (buffer), pfp)) - gtk_text_insert (GTK_TEXT (text), font, NULL, NULL, buffer, -1); + gtk_text_insert (GTK_TEXT (log_text), NULL, NULL, NULL, buffer, -1); pclose (pfp); - gtk_text_insert (GTK_TEXT (text), font, NULL, NULL, - _("\nInstallation successful!\n"), -1); + add_label (GTK_BOX (log_page), FALSE, + _("Did you notice any error messages in the lines above?\n" + "If not, installation was successful!\n" + "Otherwise, quit and investigate the possible reason...")); } else executable = FALSE; #endif /* !G_OS_WIN32 */ } - if (executable == FALSE) - gtk_text_insert (GTK_TEXT (text), font, NULL, NULL, - _("\nInstallation failed. Contact system administrator.\n"), -1); + if (executable) + { + GtkWidget *sep; - gtk_widget_show (vsb); - gtk_widget_show (text); - gtk_widget_show (table); - gtk_widget_show (install_widget); + add_label (GTK_BOX (log_page), TRUE, + _("Click \"Continue\" to complete GIMP installation.")); + + sep = gtk_hseparator_new (); + gtk_box_pack_end (GTK_BOX (log_page), sep, FALSE, FALSE, 0); + gtk_widget_show (sep); + } + else + { + add_label (GTK_BOX (log_page), FALSE, + _("Installation failed. Contact system administrator.")); + } + + return executable; +} + +static GtkObject *tile_cache_adj = NULL; +static GtkWidget *swap_path_filesel = NULL; +static GtkWidget *xserver_toggle = NULL; +static GtkWidget *resolution_entry = NULL; + +static void +install_tuning (void) +{ + GtkWidget *hbox; + GtkWidget *sep; + GtkWidget *label; + GtkWidget *memsize; + + /* tile cache size */ + add_label (GTK_BOX (tuning_page), FALSE, + _("GIMP uses a limited amount of memory to store image data, the so-called\n" + "\"Tile Cache\". You should adjust it's size to fit into memory. Consider\n" + "the amount of memory used by other running processes.")); + + hbox = gtk_hbox_new (FALSE, 8); + gtk_box_pack_start (GTK_BOX (tuning_page), hbox, FALSE, FALSE, 0); + gtk_widget_show (hbox); + + tile_cache_adj = gtk_adjustment_new (tile_cache_size, + 0, (4069.0 * 1024 * 1024), 1.0, 1.0, 0.0); + gtk_widget_pop_style (); + memsize = gimp_mem_size_entry_new (GTK_ADJUSTMENT (tile_cache_adj)); + gtk_widget_push_style (page_style); + gtk_box_pack_end (GTK_BOX (hbox), memsize, FALSE, FALSE, 0); + gtk_widget_show (memsize); + + label = gtk_label_new (_("Tile Cache Size:")); + gtk_box_pack_end (GTK_BOX (hbox), label, FALSE, FALSE, 0); + gtk_widget_show (label); + + sep = gtk_hseparator_new (); + gtk_box_pack_start (GTK_BOX (tuning_page), sep, FALSE, FALSE, 2); + gtk_widget_show (sep); + + /* swap file location */ + add_label (GTK_BOX (tuning_page), FALSE, + _("All image and undo data which doesn't fit into the Tile Cache will be\n" + "written to a swap file. This file should be located on a local filesystem\n" + "with enough free space (several hundred MB). On a UNIX system, you\n" + "may want to use the system-wide temp-dir (\"/tmp\" or \"/var/tmp\").")); + + hbox = gtk_hbox_new (FALSE, 8); + gtk_box_pack_start (GTK_BOX (tuning_page), hbox, FALSE, FALSE, 0); + gtk_widget_show (hbox); + + gtk_widget_pop_style (); + swap_path_filesel = gimp_file_selection_new (_("Select Swap Dir"), swap_path, + TRUE, TRUE); + gtk_widget_push_style (page_style); + gtk_box_pack_end (GTK_BOX (hbox), swap_path_filesel, FALSE, FALSE, 0); + gtk_widget_show (swap_path_filesel); + + label = gtk_label_new (_("Swap Directory:")); + gtk_box_pack_end (GTK_BOX (hbox), label, FALSE, FALSE, 0); + gtk_widget_show (label); } static void -install_continue_callback (GtkWidget *widget, - gpointer client_data) +install_tuning_done (void) { - InstallCallback callback; - -#ifdef G_OS_WIN32 - FreeConsole (); -#endif - - callback = (InstallCallback) client_data; - gtk_widget_destroy (install_widget); - (* callback) (); } static void -install_quit_callback (GtkWidget *widget, - gpointer client_data) +install_resolution (void) { - gtk_widget_destroy (install_widget); - gtk_exit (0); + GtkWidget *hbox; + GtkWidget *sep; + gchar *pixels_per_unit; + gdouble xres, yres; + gchar *str; + + gdisplay_xserver_resolution (&xres, &yres); + + add_label (GTK_BOX (resolution_page), FALSE, + _("GIMP can obtain this information from your X-server.\n" + "However, most X-servers do not return useful values.")); + + hbox = gtk_hbox_new (FALSE, 0); + gtk_box_pack_start (GTK_BOX (resolution_page), hbox, FALSE, FALSE, 0); + gtk_widget_show (hbox); + + str = g_strdup_printf (_("Get Resolution from X-server (Currently %d x %d dpi)"), + ROUND (xres), ROUND (yres)); + + gtk_widget_pop_style (); + xserver_toggle = gtk_check_button_new_with_label (str); + gtk_widget_push_style (page_style); + + g_free (str); + + gtk_box_pack_end (GTK_BOX (hbox), xserver_toggle, FALSE, FALSE, 0); + gtk_widget_show (xserver_toggle); + + sep = gtk_hseparator_new (); + gtk_box_pack_start (GTK_BOX (resolution_page), sep, FALSE, FALSE, 2); + gtk_widget_show (sep); + + add_label (GTK_BOX (resolution_page), FALSE, + _("Alternatively, you can set the monitor resolution manually.")); + + hbox = gtk_hbox_new (FALSE, 0); + gtk_box_pack_start (GTK_BOX (resolution_page), hbox, FALSE, FALSE, 0); + gtk_widget_show (hbox); + + pixels_per_unit = g_strconcat (_("Pixels"), "/%s", NULL); + + gtk_widget_pop_style (); + resolution_entry = + gimp_coordinates_new (GIMP_UNIT_INCH, pixels_per_unit, + FALSE, FALSE, 75, + GIMP_SIZE_ENTRY_UPDATE_RESOLUTION, + abs (monitor_xres - monitor_yres) < GIMP_MIN_RESOLUTION, + FALSE, + _("Monitor Resolution X:"), + monitor_xres, + 1.0, + GIMP_MIN_RESOLUTION, + GIMP_MAX_RESOLUTION, + 0, 0, + _("Y:"), + monitor_yres, + 1.0, + GIMP_MIN_RESOLUTION, + GIMP_MAX_RESOLUTION, + 0, 0); + gtk_widget_push_style (page_style); + + g_free (pixels_per_unit); + + gtk_box_pack_end (GTK_BOX (hbox), resolution_entry, FALSE, FALSE, 0); + gtk_widget_show (resolution_entry); + + gtk_object_set_data (GTK_OBJECT (xserver_toggle), "inverse_sensitive", + resolution_entry); + gtk_signal_connect (GTK_OBJECT (xserver_toggle), "toggled", + GTK_SIGNAL_FUNC (gimp_toggle_button_sensitive_update), + NULL); + gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (xserver_toggle), + using_xserver_resolution); + + gtk_widget_pop_style (); +} + +static void +install_resolution_done (void) +{ + GList *update = NULL; + GList *remove = NULL; + + gint new_tile_cache_size; + gchar *new_swap_path; + gboolean new_using_xserver_resolution; + gdouble new_monitor_xres; + gdouble new_monitor_yres; + + new_tile_cache_size = GTK_ADJUSTMENT (tile_cache_adj)->value; + new_swap_path = + gimp_file_selection_get_filename (GIMP_FILE_SELECTION (swap_path_filesel)); + new_using_xserver_resolution = + gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (xserver_toggle)); + new_monitor_xres = + gimp_size_entry_get_refval (GIMP_SIZE_ENTRY (resolution_entry), 0); + new_monitor_yres = + gimp_size_entry_get_refval (GIMP_SIZE_ENTRY (resolution_entry), 1); + + if (tile_cache_size != new_tile_cache_size) + { + tile_cache_size = new_tile_cache_size; + update = g_list_append (update, "tile-cache-size"); + } + if (strcmp (swap_path, new_swap_path)) + { + g_free (swap_path); + swap_path = new_swap_path; + update = g_list_append (update, "swap-path"); + } + if (using_xserver_resolution != new_using_xserver_resolution || + ABS (monitor_xres - new_monitor_xres) > GIMP_MIN_RESOLUTION) + { + monitor_xres = new_monitor_xres; + update = g_list_append (update, "monitor-xresolution"); + } + if (using_xserver_resolution != new_using_xserver_resolution || + ABS (monitor_yres - new_monitor_yres) > GIMP_MIN_RESOLUTION) + { + monitor_yres = new_monitor_yres; + update = g_list_append (update, "monitor-yresolution"); + } + + using_xserver_resolution = new_using_xserver_resolution; + + if (using_xserver_resolution) + { + /* special value of 0 for either x or y res in the gimprc file + * means use the xserver's current resolution */ + monitor_xres = 0.0; + monitor_yres = 0.0; + } + + save_gimprc (&update, &remove); + + if (using_xserver_resolution) + gdisplay_xserver_resolution (&monitor_xres, &monitor_yres); + + g_list_free (update); + g_list_free (remove); + } diff --git a/app/install.c b/app/install.c index 2c47d27a6b..10e92de788 100644 --- a/app/install.c +++ b/app/install.c @@ -29,11 +29,20 @@ #include "appenv.h" #include "install.h" +#include "gdisplay_ops.h" #include "gimprc.h" #include "gimpui.h" +#include "unitrc.h" + +#include "libgimp/gimpenv.h" +#include "libgimp/gimplimits.h" +#include "libgimp/gimpmath.h" #include "libgimp/gimpintl.h" -#include "libgimp/gimpenv.h" + +#include "pixmaps/wilber.xpm" +#include "pixmaps/new.xpm" +#include "pixmaps/folder.xpm" #ifndef G_OS_WIN32 # ifndef __EMX__ @@ -48,26 +57,29 @@ # define USER_INSTALL "user_install.bat" #endif -static void install_run (InstallCallback); -static void install_help (InstallCallback); -static void help_install_callback (GtkWidget *, gpointer); -static void help_ignore_callback (GtkWidget *, gpointer); -static void help_quit_callback (GtkWidget *, gpointer); -static void install_continue_callback (GtkWidget *, gpointer); -static void install_quit_callback (GtkWidget *, gpointer); +#define NUM_PAGES 5 +#define WILBER_WIDTH 62 + +static void install_dialog_create (InstallCallback); +static void install_continue_callback (GtkWidget *widget, gpointer data); +static void install_cancel_callback (GtkWidget *widget, gpointer data); + +static gboolean install_run (void); +static void install_tuning (void); +static void install_tuning_done (void); +static void install_resolution (void); +static void install_resolution_done (void); -static GtkWidget *help_widget; -static GtkWidget *install_widget; void install_verify (InstallCallback install_callback) { - int properly_installed = TRUE; - char *filename; + gboolean properly_installed = TRUE; + gchar *filename; struct stat stat_buf; - filename = gimp_directory (); /* gimp_directory now always returns something */ + filename = gimp_directory (); if (stat (filename, &stat_buf) != 0) properly_installed = FALSE; @@ -88,282 +100,674 @@ install_verify (InstallCallback install_callback) } else { - install_help (install_callback); + install_dialog_create (install_callback); } } +/* private stuff */ + +static GtkWidget *install_dialog = NULL; + +static GtkWidget *notebook = NULL; +static gint notebook_index = 0; + +static GtkWidget *log_page = NULL; +static GtkWidget *tuning_page = NULL; +static GtkWidget *resolution_page = NULL; + +static GtkWidget *continue_button = NULL; + +static GtkStyle *title_style = NULL; +static GdkFont *large_font = NULL; + +static GtkStyle *page_style = NULL; +static GdkColormap *colormap = NULL; + +static GdkGC *white_gc = NULL; + +static GdkColor black_color; +static GdkColor white_color; +static GdkColor title_color; + +static struct +{ + gboolean directory; + gchar *text; + gchar *description; +} +tree_items[] = +{ + { + FALSE, "gimprc", + N_("The gimprc is used to store personal preferences\n" + "that affect GIMP's default behavior.\n" + "Paths to search for brushes, palettes, gradients,\n" + "patterns, plug-ins and modules can also configured here.") + }, + { + FALSE, "gtkrc", + N_("GIMP uses an additional gtkrc file so you can\n" + "configure it to look differently than other GTK apps.") + }, + { + FALSE, "pluginrc", + N_("Plug-ins and extensions are external programs run by\n" + "the GIMP which provide additional functionality.\n" + "These programs are searched for at run-time and\n" + "information about their functionality and mod-times\n" + "is cached in this file. This file is intended to\n" + "be GIMP-readable only, and should not be edited.") + }, + { + FALSE, "menurc", + N_("Key shortcuts can be dynamically redefined in The GIMP.\n" + "The menurc is a dump of your configuration so it can.\n" + "be remembered for the next session. You may edit this\n" + "file if you wish, but it is much easier to define the\n" + "keys from within The GIMP. Deleting this file will\n" + "restore the default shortcuts.") + }, + { + FALSE, "sessionrc", + N_("The sessionrc is used to store what dialog windows were\n" + "open the last time you quit The GIMP. You can configure\n" + "The GIMP to reopen these dialogs at the saved position.") + }, + { + FALSE, "unitrc", + N_("The unitrc is used to store your user units database.\n" + "You can define additional units and use them just\n" + "like you use the built-in units inches, millimeters,\n" + "points and picas. This file is overwritten each time\n" + "you quit the GIMP.") + }, + { + TRUE, "brushes", + N_("This is a subdirectory which can be used to store\n" + "user defined brushes. The default gimprc file\n" + "checks this subdirectory in addition to the system-\n" + "wide gimp brushes installation when searching for\n" + "brushes.") + }, + { + TRUE, "generated_brushes", + N_("This is a subdirectory which is used to store brushes\n" + "that are created with the brush editor. The default\n" + "gimprc file checks this subdirectory when searching for\n" + "generated brushes.") + }, + { + TRUE, "gradients", + N_("This is a subdirectory which can be used to store\n" + "user defined gradients. The default gimprc file\n" + "checks this subdirectory in addition to the system-\n" + "wide gimp gradients installation when searching for\n" + "gradients.") + }, + { + TRUE, "palettes", + N_("This is a subdirectory which can be used to store\n" + "user defined palettes. The default gimprc file\n" + "checks only this subdirectory (not the system-wide\n" + "installation) when searching for palettes. During\n" + "installation, the system palettes will be copied\n" + "here. This is done to allow modifications made to\n" + "palettes during GIMP execution to persist across\n" + "sessions.") + }, + { + TRUE, "patterns", + N_("This is a subdirectory which can be used to store\n" + "user defined patterns. The default gimprc file\n" + "checks this subdirectory in addition to the system-\n" + "wide gimp patterns installation when searching for\n" + "patterns.") + }, + { + TRUE, "plug-ins", + N_("This is a subdirectory which can be used to store\n" + "user created, temporary, or otherwise non-system-\n" + "supported plug-ins. The default gimprc file\n" + "checks this subdirectory in addition to the system-\n" + "wide GIMP plug-in directories when searching for\n" + "plug-ins.") + }, + { + TRUE, "modules", + N_("This subdirectory can be used to store user created,\n" + "temporary, or otherwise non-system-supported DLL modules.\n" + "The default gimprc file checks this subdirectory\n" + "in addition to the system-wide GIMP module directory\n" + "when searching for modules to load when initializing.") + }, + { + TRUE, "scripts", + N_("This subdirectory is used by the GIMP to store \n" + "user created and installed scripts. The default gimprc\n" + "file checks this subdirectory in addition to the system-\n" + "wide gimp scripts subdirectory when searching for scripts") + }, + { + TRUE, "tmp", + N_("This subdirectory is used by the GIMP to temporarily\n" + "store undo buffers to reduce memory usage. If GIMP is\n" + "unceremoniously killed, files may persist in this directory\n" + "of the form: gimp<#>.<#>. These files are useless across\n" + "GIMP sessions and can be destroyed with impunity.") + }, + { + TRUE, "curves", + N_("This subdirectory is used to store parameter files for\n" + "the Curves tool.") + }, + { + TRUE, "levels", + N_("This subdirectory is used to store parameter files for\n" + "the Levels tool.") + }, + { + TRUE, "fractalexplorer", + N_("This is a subdirectory which can be used to store\n" + "user defined fractals to be used by the FractalExplorer\n" + "plug-in. The default gimprc file checks this subdirectory in\n" + "addition to the systemwide gimp FractalExplorer installation\n" + "when searching for fractals.") + }, + { + TRUE, "gfig", + N_("This is a subdirectory which can be used to store\n" + "user defined figures to be used by the gfig plug-in.\n" + "The default gimprc file checks this subdirectory in\n" + "addition to the systemwide gimp gfig installation\n" + "when searching for gfig figures.") + }, + { + TRUE, "gflare", + N_("This is a subdirectory which can be used to store\n" + "user defined gflares to be used by the gflare plug-in.\n" + "The default gimprc file checks this subdirectory in\n" + "addition to the systemwide gimp gflares installation\n" + "when searching for gflares.") + }, + { + TRUE, "gimpressionist", + N_("This is a subdirectory which can be used to store\n" + "user defined data to be used by the Gimpressionist\n" + "plug-in. The default gimprc file checks this subdirectory in\n" + "addition to the systemwide gimp Gimpressionist installation\n" + "when searching for data.") + } +}; +static gint num_tree_items = sizeof (tree_items) / sizeof (tree_items[0]); + + +static void +install_continue_callback (GtkWidget *widget, + gpointer data) +{ + InstallCallback callback; + + callback = (InstallCallback) data; + + switch (notebook_index) + { + case 0: + break; + + case 1: + if (!install_run ()) + gtk_widget_set_sensitive (continue_button, FALSE); + break; + + case 2: +#ifdef G_OS_WIN32 + FreeConsole (); +#endif + parse_buffers_init (); + parse_unitrc (); + parse_gimprc (); + install_tuning (); + break; + + case 3: + install_tuning_done (); + install_resolution (); + break; + + case 4: + install_resolution_done (); + gtk_widget_destroy (install_dialog); + gdk_gc_unref (white_gc); + + (* callback) (); + break; + } + + if (notebook_index < NUM_PAGES - 1) + gtk_notebook_set_page (GTK_NOTEBOOK (notebook), ++notebook_index); +} + + +static void +install_cancel_callback (GtkWidget *widget, + gpointer data) +{ + gtk_widget_destroy (install_dialog); + gtk_exit (0); +} + +static gint +install_corner_expose (GtkWidget *widget, + GdkEventExpose *eevent, + gpointer data) +{ + gdk_draw_arc (widget->window, + white_gc, + TRUE, + 0, 0, + widget->allocation.width * 2, widget->allocation.height * 2, + 90 * 64, + 180 * 64); + + return TRUE; +} + +static GtkWidget * +install_notebook_append_page (GtkNotebook *notebook, + gchar *title) +{ + GtkWidget *page; + GtkWidget *vbox; + GtkWidget *hbox; + GtkWidget *ebox; + GtkWidget *wilber; + GtkWidget *label; + GtkWidget *table; + GtkWidget *darea; + + page = gtk_vbox_new (FALSE, 0); + + gtk_widget_push_style (title_style); + + ebox = gtk_event_box_new (); + gtk_widget_set_events (ebox, GDK_EXPOSURE_MASK); + gtk_widget_set_usize (ebox, WILBER_WIDTH + 16, -1); + gtk_box_pack_start (GTK_BOX (page), ebox, FALSE, FALSE, 0); + gtk_widget_show (ebox); + + hbox = gtk_hbox_new (FALSE, 8); + gtk_container_set_border_width (GTK_CONTAINER (hbox), 8); + gtk_container_add (GTK_CONTAINER (ebox), hbox); + gtk_widget_show (hbox); + + wilber = gimp_pixmap_new (wilber_xpm); + gtk_box_pack_start (GTK_BOX (hbox), wilber, FALSE, FALSE, 8); + gtk_widget_show (wilber); + + label = gtk_label_new (title); + gtk_label_set_justify (GTK_LABEL (label), GTK_JUSTIFY_LEFT); + gtk_box_pack_start (GTK_BOX (hbox), label, FALSE, FALSE, 0); + gtk_widget_show (label); + + gtk_widget_pop_style (); + + hbox = gtk_hbox_new (FALSE, 0); + gtk_box_pack_start (GTK_BOX (page), hbox, TRUE, TRUE, 0); + gtk_widget_show (hbox); + + gtk_widget_push_style (title_style); + + ebox = gtk_event_box_new (); + gtk_widget_set_usize (ebox, 16, -1); + gtk_box_pack_start (GTK_BOX (hbox), ebox, FALSE, FALSE, 0); + gtk_widget_show (ebox); + + gtk_widget_pop_style (); + + ebox = gtk_event_box_new (); + gtk_box_pack_start (GTK_BOX (hbox), ebox, TRUE, TRUE, 0); + gtk_widget_show (ebox); + + table = gtk_table_new (3, 3, FALSE); + gtk_table_set_row_spacing (GTK_TABLE (table), 1, 8); + gtk_table_set_col_spacing (GTK_TABLE (table), 1, 8); + gtk_container_add (GTK_CONTAINER (ebox), table); + gtk_widget_show (table); + + gtk_widget_push_style (title_style); + + darea = gtk_drawing_area_new (); + gtk_drawing_area_size (GTK_DRAWING_AREA (darea), 16, 16); + gtk_signal_connect_after (GTK_OBJECT (darea), "expose_event", + GTK_SIGNAL_FUNC (install_corner_expose), + NULL); + gtk_table_attach (GTK_TABLE (table), darea, 0, 1, 0, 1, + GTK_SHRINK, GTK_SHRINK, 0, 0); + gtk_widget_show (darea); + + gtk_widget_pop_style (); + + vbox = gtk_vbox_new (FALSE, 6); + gtk_table_attach_defaults (GTK_TABLE (table), vbox, 1, 2, 1, 2); + gtk_widget_show (vbox); + + gtk_widget_show (page); + + gtk_notebook_append_page (GTK_NOTEBOOK (notebook), page, NULL); + + return vbox; +} + +static void +add_label (GtkBox *box, + gboolean last_line, + gchar *text) +{ + GtkWidget *label; + + label = gtk_label_new (text); + gtk_label_set_justify (GTK_LABEL (label), GTK_JUSTIFY_LEFT); + + if (last_line) + { + gtk_misc_set_alignment (GTK_MISC (label), 1.0, 0.5); + gtk_box_pack_end (box, label, FALSE, FALSE, 0); + } + else + { + gtk_misc_set_alignment (GTK_MISC (label), 0.0, 0.5); + gtk_box_pack_start (box, label, FALSE, FALSE, 0); + } + + gtk_widget_show (label); +} + +static void +install_ctree_select_row (GtkWidget *widget, + gint row, + gint column, + GdkEventButton *bevent, + gpointer data) +{ + GtkNotebook *notebook; + + notebook = (GtkNotebook*) data; + + gtk_notebook_set_page (notebook, row); +} + +void +install_dialog_create (InstallCallback callback) +{ + GtkWidget *dialog; + GtkWidget *page; + GtkWidget *sep; + + notebook_index = 0; + + dialog = install_dialog = + gimp_dialog_new (_("GIMP User Installation"), "user_installation", + NULL, NULL, + GTK_WIN_POS_CENTER, + FALSE, FALSE, FALSE, + + _("Continue"), install_continue_callback, + callback, NULL, &continue_button, TRUE, FALSE, + _("Cancel"), install_cancel_callback, + callback, 1, NULL, FALSE, TRUE, + + NULL); + + gtk_widget_realize (dialog); + + /* B/W Style for the page contents */ + page_style = gtk_style_copy (dialog->style); + colormap = gtk_widget_get_colormap (dialog); + + gdk_color_black (colormap, &black_color); + gdk_color_white (colormap, &white_color); + + page_style->fg[GTK_STATE_NORMAL] = black_color; + page_style->text[GTK_STATE_NORMAL] = black_color; + page_style->bg[GTK_STATE_NORMAL] = white_color; + + /* B/Colored Style for the page title */ + title_style = gtk_style_copy (page_style); + + if (gdk_color_parse ("sienna1", &title_color) && + gdk_colormap_alloc_color (colormap, &title_color, FALSE, TRUE)) + { + title_style->bg[GTK_STATE_NORMAL] = title_color; + } + + /* this is a fontset, e.g. multiple comma-separated font definitions */ + large_font = gdk_fontset_load (_("-*-helvetica-bold-r-normal-*-*-240-*-*-*-*-*-*,*")); + + title_style->font = large_font; + + /* W/W GC for the corner */ + white_gc = gdk_gc_new (dialog->window); + gdk_gc_set_foreground (white_gc, &white_color); + + gtk_widget_push_style (page_style); + + notebook = gtk_notebook_new (); + gtk_notebook_set_show_tabs (GTK_NOTEBOOK (notebook), FALSE); + gtk_notebook_set_show_border (GTK_NOTEBOOK (notebook), FALSE); + gtk_container_add (GTK_CONTAINER (GTK_DIALOG (dialog)->vbox), notebook); + gtk_widget_show (notebook); + + /* Page 1 */ + page = install_notebook_append_page (GTK_NOTEBOOK (notebook), + _("Welcome to\n" + "The GIMP User Installation")); + + add_label (GTK_BOX (page), FALSE, + _("The GIMP - GNU Image Manipulation Program\n" + "Copyright (C) 1995-2000\n" + "Spencer Kimball, Peter Mattis and the GIMP Development Team.")); + + sep = gtk_hseparator_new (); + gtk_box_pack_start (GTK_BOX (page), sep, FALSE, FALSE, 2); + gtk_widget_show (sep); + + add_label (GTK_BOX (page), FALSE, + _("This program is free software; you can redistribute it and/or modify\n" + "it under the terms of the GNU General Public License as published by\n" + "the Free Software Foundation; either version 2 of the License, or\n" + "(at your option) any later version.")); + add_label (GTK_BOX (page), FALSE, + _("This program is distributed in the hope that it will be useful,\n" + "but WITHOUT ANY WARRANTY; without even the implied warranty of\n" + "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n" + "See the GNU General Public License for more details.")); + add_label (GTK_BOX (page), FALSE, + _("You should have received a copy of the GNU General Public License\n" + "along with this program; if not, write to the Free Software\n" + "Foundation, Inc., 59 Temple Place - Suite 330, Boston,\n" + "MA 02111-1307, USA.")); + + add_label (GTK_BOX (page), TRUE, + _("Click \"Continue\" to enter the GIMP user installation.")); + + sep = gtk_hseparator_new (); + gtk_box_pack_end (GTK_BOX (page), sep, FALSE, FALSE, 2); + gtk_widget_show (sep); + + /* Page 2 */ + { + GtkWidget *hbox; + GtkWidget *vbox; + GtkWidget *ctree; + GtkWidget *notebook2; + GtkWidget *page2; + GtkWidget *label; + GtkCTreeNode *main_node = NULL; + GtkCTreeNode *sub_node = NULL; + GdkPixmap *file_pixmap; + GdkBitmap *file_mask; + GdkPixmap *folder_pixmap; + GdkBitmap *folder_mask; + + gint i; + + gchar *node[1]; + + page = install_notebook_append_page (GTK_NOTEBOOK (notebook), + _("Personal GIMP Directory")); + + hbox = gtk_hbox_new (FALSE, 8); + gtk_box_pack_start (GTK_BOX (page), hbox, FALSE, FALSE, 0); + gtk_widget_show (hbox); + + ctree = gtk_ctree_new (1, 0); + gtk_ctree_set_indent (GTK_CTREE (ctree), 12); + gtk_clist_set_shadow_type (GTK_CLIST (ctree), GTK_SHADOW_NONE); + gtk_box_pack_start (GTK_BOX (hbox), ctree, FALSE, FALSE, 0); + gtk_widget_show (ctree); + + vbox = gtk_vbox_new (FALSE, 6); + gtk_box_pack_start (GTK_BOX (hbox), vbox, TRUE, TRUE, 0); + gtk_widget_show (vbox); + + add_label (GTK_BOX (vbox), FALSE, + _("For a proper GIMP installation, a subdirectory needs to be created.\n" + "This subdirectory will contain a number of important files.")); + add_label (GTK_BOX (vbox), FALSE, + _("Click on one of the files or subdirectories in the tree\n" + "to get more information about the selected item.")); + add_label (GTK_BOX (vbox), TRUE, + _("Click \"Continue\" to create your personal GIMP directory.")); + + notebook2 = gtk_notebook_new (); + gtk_container_set_border_width (GTK_CONTAINER (notebook2), 8); + gtk_notebook_set_show_tabs (GTK_NOTEBOOK (notebook2), FALSE); + gtk_notebook_set_show_border (GTK_NOTEBOOK (notebook2), FALSE); + gtk_box_pack_start (GTK_BOX (vbox), notebook2, TRUE, TRUE, 0); + gtk_widget_show (notebook2); + + /* empty page */ + page2 = gtk_vbox_new (FALSE, 0); + gtk_widget_show (page2); + gtk_notebook_append_page (GTK_NOTEBOOK (notebook2), page2, NULL); + + node[0] = gimp_directory (); + + main_node = gtk_ctree_insert_node (GTK_CTREE (ctree), NULL, NULL, + node, 4, + NULL, NULL, NULL, NULL, + FALSE, TRUE); + + gtk_signal_connect (GTK_OBJECT (ctree), "select_row", + GTK_SIGNAL_FUNC (install_ctree_select_row), + notebook2); + + file_pixmap = gdk_pixmap_create_from_xpm_d (dialog->window, + &file_mask, + &page_style->bg[GTK_STATE_NORMAL], + new_xpm); + folder_pixmap = gdk_pixmap_create_from_xpm_d (dialog->window, + &folder_mask, + &page_style->bg[GTK_STATE_NORMAL], + folder_xpm); + + for (i = 0; i < num_tree_items; i++) + { + node[0] = tree_items[i].text; + + if (tree_items[i].directory) + { + sub_node = gtk_ctree_insert_node (GTK_CTREE (ctree), main_node, NULL, + node, 4, + folder_pixmap, folder_mask, + folder_pixmap, folder_mask, + FALSE, TRUE); + } + else + { + sub_node = gtk_ctree_insert_node (GTK_CTREE (ctree), main_node, NULL, + node, 4, + file_pixmap, file_mask, + file_pixmap, file_mask, + FALSE, TRUE); + } + + page2 = gtk_vbox_new (FALSE, 0); + label = gtk_label_new (gettext (tree_items[i].description)); + gtk_label_set_justify (GTK_LABEL (label), GTK_JUSTIFY_LEFT); + gtk_misc_set_alignment (GTK_MISC (label), 0.0, 0.5); + gtk_box_pack_start (GTK_BOX (page2), label, TRUE, TRUE, 0); + gtk_widget_show (label); + gtk_widget_show (page2); + + gtk_notebook_append_page (GTK_NOTEBOOK (notebook2), page2, NULL); + } + + gtk_clist_set_column_width (GTK_CLIST (ctree), 0, + gtk_clist_optimal_column_width (GTK_CLIST (ctree), 0)); + + gtk_widget_set_usize (ctree, -1, ctree->requisition.height); + + gdk_pixmap_unref (file_pixmap); + gdk_bitmap_unref (file_mask); + gdk_pixmap_unref (folder_pixmap); + gdk_bitmap_unref (folder_mask); + } + + /* Page 3 */ + page = log_page = + install_notebook_append_page (GTK_NOTEBOOK (notebook), + _("User Installation Log")); + + /* Page 4 */ + page = tuning_page = + install_notebook_append_page (GTK_NOTEBOOK (notebook), + _("GIMP Performance Tuning")); + + add_label (GTK_BOX (page), FALSE, + _("For optimal GIMP performance, some settings may have to be adjusted.")); + + sep = gtk_hseparator_new (); + gtk_box_pack_start (GTK_BOX (page), sep, FALSE, FALSE, 2); + gtk_widget_show (sep); + + add_label (GTK_BOX (page), TRUE, + _("Click \"Continue\" to accept the settings above.")); + + sep = gtk_hseparator_new (); + gtk_box_pack_end (GTK_BOX (page), sep, FALSE, FALSE, 2); + gtk_widget_show (sep); + + /* Page 5 */ + page = resolution_page = + install_notebook_append_page (GTK_NOTEBOOK (notebook), + _("Monitor Resolution")); + + add_label (GTK_BOX (resolution_page), FALSE, + _("To display images in their natural size, " + "GIMP needs to know your monitor resolution.")); + + sep = gtk_hseparator_new (); + gtk_box_pack_start (GTK_BOX (page), sep, FALSE, FALSE, 2); + gtk_widget_show (sep); + + add_label (GTK_BOX (page), TRUE, + _("Click \"Continue\" to start The GIMP.")); + + sep = gtk_hseparator_new (); + gtk_box_pack_end (GTK_BOX (page), sep, FALSE, FALSE, 2); + gtk_widget_show (sep); + + gtk_widget_show (dialog); + + gtk_style_unref (title_style); + gtk_style_unref (page_style); +} + /*********************/ /* Local functions */ -static void -install_help (InstallCallback callback) -{ - GtkWidget *text; - GtkWidget *table; - GtkWidget *vsb; - GtkAdjustment *vadj; - GdkFont *font_strong; - GdkFont *font_emphasis; - GdkFont *font; - static const struct { - gint font; - char *text; - } help_lines[] = { - { 2, N_("The GIMP - GNU Image Manipulation Program\n\n") }, - { 1, "Copyright (C) 1995 Spencer Kimball and Peter Mattis\n" }, - { 0, "\n" }, - - { 0, - N_("This program is free software; you can redistribute it and/or modify\n" - "it under the terms of the GNU General Public License as published by\n" - "the Free Software Foundation; either version 2 of the License, or\n" - "(at your option) any later version.\n") }, - { 0, "\n" }, - { 0, N_("This program is distributed in the hope that it will be useful,\n" - "but WITHOUT ANY WARRANTY; without even the implied warranty of\n" - "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n" - "See the GNU General Public License for more details.\n") }, - { 0, "\n" }, - { 0, N_("You should have received a copy of the GNU General Public License\n" - "along with this program; if not, write to the Free Software\n" - "Foundation, Inc., 59 Temple Place - Suite 330, Boston,\n" - "MA 02111-1307, USA.\n") }, - { 0, "\n\n" }, - - { 2, N_("Personal GIMP Installation\n\n") }, - { 0, N_("For a proper GIMP installation, a subdirectory called\n") }, - { 1, NULL }, /* will be replaced with gimp_directory() */ - { 0, N_(" needs to be created. This\n" - "subdirectory will contain a number of important files:\n\n") }, - - { 1, "gimprc\n" }, - { 0, N_("\t\tThe gimprc is used to store personal preferences\n" - "\t\tthat affect GIMP's default behavior.\n" - "\t\tPaths to search for brushes, palettes, gradients,\n" - "\t\tpatterns, plug-ins and modules can also configured here.\n") }, - - { 1, "pluginrc\n" }, - { 0, N_("\t\tPlug-ins and extensions are external programs run by\n" - "\t\tthe GIMP which provide additional functionality.\n" - "\t\tThese programs are searched for at run-time and\n" - "\t\tinformation about their functionality and mod-times\n" - "\t\tis cached in this file. This file is intended to\n" - "\t\tbe GIMP-readable only, and should not be edited.\n") }, - - { 1, "menurc\n" }, - { 0, N_("\t\tKey shortcuts can be dynamically redefined in The GIMP.\n" - "\t\tThe menurc is a dump of your configuration so it can.\n" - "\t\tbe remembered for the next session. You may edit this\n" - "\t\tfile if you wish, but it is much easier to define the\n" - "\t\tkeys from within The GIMP. Deleting this file will\n" - "\t\trestore the default shortcuts.\n") }, - - { 1, "sessionrc\n" }, - { 0, N_("\t\tThe sessionrc is used to store what dialog windows were\n" - "\t\topen the last time you quit The GIMP. You can configure\n" - "\t\tThe GIMP to reopen these dialogs at the saved position.\n") }, - - { 1, "unitrc\n" }, - { 0, N_("\t\tThe unitrc is used to store your user units database.\n" - "\t\tYou can define additional units and use them just\n" - "\t\tlike you use the built-in units inches, millimeters,\n" - "\t\tpoints and picas. This file is overwritten each time\n" - "\t\tyou quit the GIMP.\n") }, - - { 1, "brushes\n" }, - { 0, N_("\t\tThis is a subdirectory which can be used to store\n" - "\t\tuser defined brushes. The default gimprc file\n" - "\t\tchecks this subdirectory in addition to the system-\n" - "\t\twide gimp brushes installation when searching for\n" - "\t\tbrushes.\n") }, - - { 1, "generated_brushes\n" }, - { 0, N_("\t\tThis is a subdirectory which is used to store brushes\n" - "\t\tthat are created with the brush editor. The default\n" - "\t\tgimprc file checks this subdirectory when searching for\n" - "\t\tgenerated brushes.\n") }, - - { 1, "gradients\n" }, - { 0, N_("\t\tThis is a subdirectory which can be used to store\n" - "\t\tuser defined gradients. The default gimprc file\n" - "\t\tchecks this subdirectory in addition to the system-\n" - "\t\twide gimp gradients installation when searching for\n" - "\t\tgradients.\n") }, - - { 1, "gfig\n" }, - { 0, N_("\t\tThis is a subdirectory which can be used to store\n" - "\t\tuser defined figures to be used by the gfig plug-in.\n" - "\t\tThe default gimprc file checks this subdirectory in\n" - "\t\taddition to the systemwide gimp gfig installation\n" - "\t\twhen searching for gfig figures.\n") }, - - { 1, "gflares\n" }, - { 0, N_("\t\tThis is a subdirectory which can be used to store\n" - "\t\tuser defined gflares to be used by the gflare plug-in.\n" - "\t\tThe default gimprc file checks this subdirectory in\n" - "\t\taddition to the systemwide gimp gflares installation\n" - "\t\twhen searching for gflares.\n") }, - - { 1, "fractalexplorer\n" }, - { 0, N_("\t\tThis is a subdirectory which can be used to store\n" - "\t\tuser defined fractals to be used by the FractalExplorer\n" - "\t\tplug-in. The default gimprc file checks this subdirectory in\n" - "\t\taddition to the systemwide gimp FractalExplorer installation\n" - "\t\twhen searching for fractals.\n") }, - - { 1, "palettes\n" }, - { 0, N_("\t\tThis is a subdirectory which can be used to store\n" - "\t\tuser defined palettes. The default gimprc file\n" - "\t\tchecks only this subdirectory (not the system-wide\n" - "\t\tinstallation) when searching for palettes. During\n" - "\t\tinstallation, the system palettes will be copied\n" - "\t\there. This is done to allow modifications made to\n" - "\t\tpalettes during GIMP execution to persist across\n" - "\t\tsessions.\n") }, - - { 1, "patterns\n" }, - { 0, N_("\t\tThis is a subdirectory which can be used to store\n" - "\t\tuser defined patterns. The default gimprc file\n" - "\t\tchecks this subdirectory in addition to the system-\n" - "\t\twide gimp patterns installation when searching for\n" - "\t\tpatterns.\n") }, - - { 1, "plug-ins\n" }, - { 0, N_("\t\tThis is a subdirectory which can be used to store\n" - "\t\tuser created, temporary, or otherwise non-system-\n" - "\t\tsupported plug-ins. The default gimprc file\n" - "\t\tchecks this subdirectory in addition to the system-\n" - "\t\twide GIMP plug-in directories when searching for\n" - "\t\tplug-ins.\n") }, - - { 1, "modules\n" }, - { 0, N_("\t\tThis subdirectory can be used to store user created,\n" - "\t\ttemporary, or otherwise non-system-supported DLL modules.\n" - "\t\tThe default gimprc file checks this subdirectory\n" - "\t\tin addition to the system-wide GIMP module directory\n" - "\t\twhen searching for modules to load when initializing.\n") }, - - { 1, "scripts\n" }, - { 0, N_("\t\tThis subdirectory is used by the GIMP to store \n" - "\t\tuser created and installed scripts. The default gimprc\n" - "\t\tfile checks this subdirectory in addition to the system\n" - "\t\t-wide gimp scripts subdirectory when searching for scripts\n") }, - - { 1, "tmp\n" }, - { 0, N_("\t\tThis subdirectory is used by the GIMP to temporarily\n" - "\t\tstore undo buffers to reduce memory usage. If GIMP is\n" - "\t\tunceremoniously killed, files may persist in this directory\n" - "\t\tof the form: gimp<#>.<#>. These files are useless across\n" - "\t\tGIMP sessions and can be destroyed with impunity.\n") } - }; - gint nhelp_lines = sizeof (help_lines) / sizeof (help_lines[0]); - gint i; - - help_widget = gimp_dialog_new (_("GIMP Installation"), "gimp_installation", - NULL, NULL, - GTK_WIN_POS_CENTER, - FALSE, TRUE, FALSE, - - _("Install"), help_install_callback, - callback, NULL, NULL, TRUE, FALSE, - _("Ignore"), help_ignore_callback, - callback, NULL, NULL, FALSE, FALSE, - _("Quit"), help_quit_callback, - callback, NULL, NULL, FALSE, TRUE, - - NULL); - - table = gtk_table_new (1, 2, FALSE); - gtk_container_set_border_width (GTK_CONTAINER (table), 2); - gtk_table_set_col_spacing (GTK_TABLE (table), 0, 2); - gtk_container_add (GTK_CONTAINER (GTK_DIALOG (help_widget)->vbox), table); - - vadj = GTK_ADJUSTMENT (gtk_adjustment_new (0.0, 0.0, 0.0, 0.0, 0.0, 0.0)); - vsb = gtk_vscrollbar_new (vadj); - text = gtk_text_new (NULL, vadj); - gtk_text_set_editable (GTK_TEXT (text), FALSE); - gtk_widget_set_usize (text, 450, 475); - - gtk_table_attach (GTK_TABLE (table), vsb, 1, 2, 0, 1, - 0, GTK_EXPAND | GTK_SHRINK | GTK_FILL, 0, 0); - gtk_table_attach (GTK_TABLE (table), text, 0, 1, 0, 1, - GTK_EXPAND | GTK_SHRINK | GTK_FILL, - GTK_EXPAND | GTK_SHRINK | GTK_FILL, 0, 0); - - /* this is a fontset, e.g. multiple comma-separated font definitions */ - font_strong = gdk_fontset_load (_("-*-helvetica-bold-r-normal-*-*-120-*-*-*-*-*-*,*")); - - /* this is a font, provide only one single font definition */ - font_emphasis = gdk_font_load (_("-*-helvetica-medium-o-normal-*-*-100-*-*-*-*-*-*")); - - /* this is a fontset, e.g. multiple comma-separated font definitions */ - font = gdk_fontset_load (_("-*-helvetica-medium-r-normal-*-*-100-*-*-*-*-*-*,*")); - if (!font_emphasis) - font_emphasis = font; - - /* Realize the widget before allowing new text to be inserted */ - gtk_widget_realize (text); - - for (i = 0; i < nhelp_lines; i++) - if (help_lines[i].text == NULL) - /* inserting gimp_directory () this way is a little ugly */ - gtk_text_insert (GTK_TEXT (text), - (help_lines[i].font == 2) ? font_strong : - (help_lines[i].font == 1) ? font_emphasis : font, - NULL, NULL, - gimp_directory (), -1); - else - gtk_text_insert (GTK_TEXT (text), - (help_lines[i].font == 2) ? font_strong : - (help_lines[i].font == 1) ? font_emphasis : font, - NULL, NULL, - gettext (help_lines[i].text), -1); - - /* scroll back to the top */ - gtk_adjustment_set_value (GTK_ADJUSTMENT (vadj), 0.0); - - gdk_font_unref (font_strong); - if (font_emphasis != font) - gdk_font_unref (font_emphasis); - gdk_font_unref (font); - - gtk_widget_show (vsb); - gtk_widget_show (text); - gtk_widget_show (table); - gtk_widget_show (help_widget); -} - -static void -help_install_callback (GtkWidget *widget, - gpointer client_data) -{ - InstallCallback callback; - - callback = (InstallCallback) client_data; - gtk_widget_destroy (help_widget); - install_run (callback); -} - -static void -help_ignore_callback (GtkWidget *widget, - gpointer client_data) -{ - InstallCallback callback; - - callback = (InstallCallback) client_data; - gtk_widget_destroy (help_widget); - (* callback) (); -} - -static void -help_quit_callback (GtkWidget *widget, - gpointer client_data) -{ - gtk_widget_destroy (help_widget); - gtk_exit (0); -} - #ifdef G_OS_WIN32 char * @@ -405,84 +809,44 @@ quote_spaces (char *string) #endif -static void -install_run (InstallCallback callback) +static gboolean +install_run (void) { - GtkWidget *text; - GtkWidget *table; - GtkWidget *vsb; - GtkAdjustment *vadj; - GdkFont *font_strong; - GdkFont *font; FILE *pfp; - char buffer[2048]; + gchar buffer[2048]; struct stat stat_buf; - int err; - int executable = TRUE; - - install_widget = gimp_dialog_new (_("Installation Log"), "installation_log", - NULL, NULL, - GTK_WIN_POS_CENTER, - FALSE, TRUE, FALSE, - - _("Continue"), install_continue_callback, - callback, NULL, NULL, TRUE, FALSE, - _("Quit"), install_quit_callback, - callback, NULL, NULL, FALSE, TRUE, - - NULL); - - table = gtk_table_new (1, 2, FALSE); - gtk_container_set_border_width (GTK_CONTAINER (table), 2); - gtk_table_set_col_spacing (GTK_TABLE (table), 0, 2); - gtk_container_add (GTK_CONTAINER (GTK_DIALOG (install_widget)->vbox), table); - - vadj = GTK_ADJUSTMENT (gtk_adjustment_new (0.0, 0.0, 0.0, 0.0, 0.0, 0.0)); - vsb = gtk_vscrollbar_new (vadj); - text = gtk_text_new (NULL, vadj); - gtk_widget_set_usize (text, 384, 356); - - gtk_table_attach (GTK_TABLE (table), vsb, 1, 2, 0, 1, - GTK_FILL, GTK_EXPAND | GTK_SHRINK | GTK_FILL, 0, 0); - gtk_table_attach (GTK_TABLE (table), text, 0, 1, 0, 1, - GTK_EXPAND | GTK_SHRINK | GTK_FILL, - GTK_EXPAND | GTK_SHRINK | GTK_FILL, - 0, 0); - - /* this is a fontset, e.g. multiple comma-separated font definitions */ - font_strong = gdk_fontset_load ( _("-*-helvetica-bold-r-normal-*-*-120-*-*-*-*-*-*,*")); - - /* this is a fontset, e.g. multiple comma-separated font definitions */ - font = gdk_fontset_load ( _("-*-helvetica-medium-r-normal-*-*-120-*-*-*-*-*-*,*")); - - /* Realize the text widget before inserting text strings */ - gtk_widget_realize (text); - -#ifndef G_OS_WIN32 - gtk_text_insert (GTK_TEXT (text), font_strong, NULL, NULL, _("User Installation Log\n\n"), -1); -#endif + gint err; + gboolean executable = TRUE; /* Generate output */ - g_snprintf (buffer, sizeof(buffer), "%s" G_DIR_SEPARATOR_S USER_INSTALL, + g_snprintf (buffer, sizeof (buffer), "%s" G_DIR_SEPARATOR_S USER_INSTALL, gimp_data_directory ()); if ((err = stat (buffer, &stat_buf)) != 0) { - gtk_text_insert (GTK_TEXT (text), font, NULL, NULL, buffer, -1); - gtk_text_insert (GTK_TEXT (text), font, NULL, NULL, - _(" does not exist. Cannot install.\n"), -1); + gchar *str; + + str = g_strdup_printf ("%s\n%s", buffer, + _("does not exist. Cannot install.")); + add_label (GTK_BOX (log_page), FALSE, str); + g_free (str); + executable = FALSE; } #ifdef S_IXUSR else if (! (S_IXUSR & stat_buf.st_mode) || ! (S_IRUSR & stat_buf.st_mode)) { - gtk_text_insert (GTK_TEXT (text), font, NULL, NULL, buffer, -1); - gtk_text_insert (GTK_TEXT (text), font, NULL, NULL, - _(" has invalid permissions.\nCannot install."), -1); + gchar *str; + + str = g_strdup_printf ("%s\n%s", buffer, + _("has invalid permissions. Cannot install.")); + add_label (GTK_BOX (log_page), FALSE, str); + g_free (str); + executable = FALSE; } #endif - if (executable == TRUE) + if (executable) { #ifdef G_OS_WIN32 char *quoted_data_dir, *quoted_user_dir; @@ -510,16 +874,17 @@ install_run (InstallCallback callback) g_free (quoted_data_dir); g_free (quoted_user_dir); - gtk_text_insert (GTK_TEXT (text), font_strong, NULL, NULL, - _("Did you notice any error messages\n" - "in the console window? If not, installation\n" - "was successful! Otherwise, quit and investigate\n" - "the possible reason...\n"), -1); + if (executable) + add_label (GTK_BOX (log_page), FALSE, + _("Did you notice any error messages in the console window?\n" + "If not, installation was successful!\n" + "Otherwise, quit and investigate the possible reason...")); #else #ifndef __EMX__ - g_snprintf (buffer, sizeof(buffer), "%s" G_DIR_SEPARATOR_S USER_INSTALL " %s %s", - gimp_data_directory (), gimp_data_directory(), - gimp_directory ()); + g_snprintf (buffer, sizeof(buffer), "%s" G_DIR_SEPARATOR_S USER_INSTALL " %s %s %s", + gimp_data_directory (), + "2>&1", + gimp_data_directory(), gimp_directory ()); #else g_snprintf (buffer, sizeof(buffer), "cmd.exe /c %s" G_DIR_SEPARATOR_S USER_INSTALL " %s %s", gimp_data_directory (), gimp_data_directory(), @@ -538,47 +903,278 @@ install_run (InstallCallback callback) * we can't tell if the installation script failed --austin */ if ((pfp = popen (buffer, "r")) != NULL) { + GtkWidget *table; + GtkWidget *log_text; + GtkWidget *vsb; + GtkAdjustment *vadj; + + table = gtk_table_new (1, 2, FALSE); + gtk_table_set_col_spacing (GTK_TABLE (table), 0, 2); + gtk_box_pack_start (GTK_BOX (log_page), table, TRUE, TRUE, 0); + + gtk_widget_pop_style (); + + vadj = GTK_ADJUSTMENT (gtk_adjustment_new (0.0, 0.0, 0.0, 0.0, 0.0, 0.0)); + vsb = gtk_vscrollbar_new (vadj); + log_text = gtk_text_new (NULL, vadj); + + gtk_widget_push_style (page_style); + + gtk_table_attach (GTK_TABLE (table), vsb, 1, 2, 0, 1, + GTK_FILL, GTK_EXPAND | GTK_SHRINK | GTK_FILL, 0, 0); + gtk_table_attach (GTK_TABLE (table), log_text, 0, 1, 0, 1, + GTK_EXPAND | GTK_SHRINK | GTK_FILL, + GTK_EXPAND | GTK_SHRINK | GTK_FILL, + 0, 0); + + gtk_widget_show (vsb); + gtk_widget_show (log_text); + gtk_widget_show (table); + while (fgets (buffer, sizeof (buffer), pfp)) - gtk_text_insert (GTK_TEXT (text), font, NULL, NULL, buffer, -1); + gtk_text_insert (GTK_TEXT (log_text), NULL, NULL, NULL, buffer, -1); pclose (pfp); - gtk_text_insert (GTK_TEXT (text), font, NULL, NULL, - _("\nInstallation successful!\n"), -1); + add_label (GTK_BOX (log_page), FALSE, + _("Did you notice any error messages in the lines above?\n" + "If not, installation was successful!\n" + "Otherwise, quit and investigate the possible reason...")); } else executable = FALSE; #endif /* !G_OS_WIN32 */ } - if (executable == FALSE) - gtk_text_insert (GTK_TEXT (text), font, NULL, NULL, - _("\nInstallation failed. Contact system administrator.\n"), -1); + if (executable) + { + GtkWidget *sep; - gtk_widget_show (vsb); - gtk_widget_show (text); - gtk_widget_show (table); - gtk_widget_show (install_widget); + add_label (GTK_BOX (log_page), TRUE, + _("Click \"Continue\" to complete GIMP installation.")); + + sep = gtk_hseparator_new (); + gtk_box_pack_end (GTK_BOX (log_page), sep, FALSE, FALSE, 0); + gtk_widget_show (sep); + } + else + { + add_label (GTK_BOX (log_page), FALSE, + _("Installation failed. Contact system administrator.")); + } + + return executable; +} + +static GtkObject *tile_cache_adj = NULL; +static GtkWidget *swap_path_filesel = NULL; +static GtkWidget *xserver_toggle = NULL; +static GtkWidget *resolution_entry = NULL; + +static void +install_tuning (void) +{ + GtkWidget *hbox; + GtkWidget *sep; + GtkWidget *label; + GtkWidget *memsize; + + /* tile cache size */ + add_label (GTK_BOX (tuning_page), FALSE, + _("GIMP uses a limited amount of memory to store image data, the so-called\n" + "\"Tile Cache\". You should adjust it's size to fit into memory. Consider\n" + "the amount of memory used by other running processes.")); + + hbox = gtk_hbox_new (FALSE, 8); + gtk_box_pack_start (GTK_BOX (tuning_page), hbox, FALSE, FALSE, 0); + gtk_widget_show (hbox); + + tile_cache_adj = gtk_adjustment_new (tile_cache_size, + 0, (4069.0 * 1024 * 1024), 1.0, 1.0, 0.0); + gtk_widget_pop_style (); + memsize = gimp_mem_size_entry_new (GTK_ADJUSTMENT (tile_cache_adj)); + gtk_widget_push_style (page_style); + gtk_box_pack_end (GTK_BOX (hbox), memsize, FALSE, FALSE, 0); + gtk_widget_show (memsize); + + label = gtk_label_new (_("Tile Cache Size:")); + gtk_box_pack_end (GTK_BOX (hbox), label, FALSE, FALSE, 0); + gtk_widget_show (label); + + sep = gtk_hseparator_new (); + gtk_box_pack_start (GTK_BOX (tuning_page), sep, FALSE, FALSE, 2); + gtk_widget_show (sep); + + /* swap file location */ + add_label (GTK_BOX (tuning_page), FALSE, + _("All image and undo data which doesn't fit into the Tile Cache will be\n" + "written to a swap file. This file should be located on a local filesystem\n" + "with enough free space (several hundred MB). On a UNIX system, you\n" + "may want to use the system-wide temp-dir (\"/tmp\" or \"/var/tmp\").")); + + hbox = gtk_hbox_new (FALSE, 8); + gtk_box_pack_start (GTK_BOX (tuning_page), hbox, FALSE, FALSE, 0); + gtk_widget_show (hbox); + + gtk_widget_pop_style (); + swap_path_filesel = gimp_file_selection_new (_("Select Swap Dir"), swap_path, + TRUE, TRUE); + gtk_widget_push_style (page_style); + gtk_box_pack_end (GTK_BOX (hbox), swap_path_filesel, FALSE, FALSE, 0); + gtk_widget_show (swap_path_filesel); + + label = gtk_label_new (_("Swap Directory:")); + gtk_box_pack_end (GTK_BOX (hbox), label, FALSE, FALSE, 0); + gtk_widget_show (label); } static void -install_continue_callback (GtkWidget *widget, - gpointer client_data) +install_tuning_done (void) { - InstallCallback callback; - -#ifdef G_OS_WIN32 - FreeConsole (); -#endif - - callback = (InstallCallback) client_data; - gtk_widget_destroy (install_widget); - (* callback) (); } static void -install_quit_callback (GtkWidget *widget, - gpointer client_data) +install_resolution (void) { - gtk_widget_destroy (install_widget); - gtk_exit (0); + GtkWidget *hbox; + GtkWidget *sep; + gchar *pixels_per_unit; + gdouble xres, yres; + gchar *str; + + gdisplay_xserver_resolution (&xres, &yres); + + add_label (GTK_BOX (resolution_page), FALSE, + _("GIMP can obtain this information from your X-server.\n" + "However, most X-servers do not return useful values.")); + + hbox = gtk_hbox_new (FALSE, 0); + gtk_box_pack_start (GTK_BOX (resolution_page), hbox, FALSE, FALSE, 0); + gtk_widget_show (hbox); + + str = g_strdup_printf (_("Get Resolution from X-server (Currently %d x %d dpi)"), + ROUND (xres), ROUND (yres)); + + gtk_widget_pop_style (); + xserver_toggle = gtk_check_button_new_with_label (str); + gtk_widget_push_style (page_style); + + g_free (str); + + gtk_box_pack_end (GTK_BOX (hbox), xserver_toggle, FALSE, FALSE, 0); + gtk_widget_show (xserver_toggle); + + sep = gtk_hseparator_new (); + gtk_box_pack_start (GTK_BOX (resolution_page), sep, FALSE, FALSE, 2); + gtk_widget_show (sep); + + add_label (GTK_BOX (resolution_page), FALSE, + _("Alternatively, you can set the monitor resolution manually.")); + + hbox = gtk_hbox_new (FALSE, 0); + gtk_box_pack_start (GTK_BOX (resolution_page), hbox, FALSE, FALSE, 0); + gtk_widget_show (hbox); + + pixels_per_unit = g_strconcat (_("Pixels"), "/%s", NULL); + + gtk_widget_pop_style (); + resolution_entry = + gimp_coordinates_new (GIMP_UNIT_INCH, pixels_per_unit, + FALSE, FALSE, 75, + GIMP_SIZE_ENTRY_UPDATE_RESOLUTION, + abs (monitor_xres - monitor_yres) < GIMP_MIN_RESOLUTION, + FALSE, + _("Monitor Resolution X:"), + monitor_xres, + 1.0, + GIMP_MIN_RESOLUTION, + GIMP_MAX_RESOLUTION, + 0, 0, + _("Y:"), + monitor_yres, + 1.0, + GIMP_MIN_RESOLUTION, + GIMP_MAX_RESOLUTION, + 0, 0); + gtk_widget_push_style (page_style); + + g_free (pixels_per_unit); + + gtk_box_pack_end (GTK_BOX (hbox), resolution_entry, FALSE, FALSE, 0); + gtk_widget_show (resolution_entry); + + gtk_object_set_data (GTK_OBJECT (xserver_toggle), "inverse_sensitive", + resolution_entry); + gtk_signal_connect (GTK_OBJECT (xserver_toggle), "toggled", + GTK_SIGNAL_FUNC (gimp_toggle_button_sensitive_update), + NULL); + gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (xserver_toggle), + using_xserver_resolution); + + gtk_widget_pop_style (); +} + +static void +install_resolution_done (void) +{ + GList *update = NULL; + GList *remove = NULL; + + gint new_tile_cache_size; + gchar *new_swap_path; + gboolean new_using_xserver_resolution; + gdouble new_monitor_xres; + gdouble new_monitor_yres; + + new_tile_cache_size = GTK_ADJUSTMENT (tile_cache_adj)->value; + new_swap_path = + gimp_file_selection_get_filename (GIMP_FILE_SELECTION (swap_path_filesel)); + new_using_xserver_resolution = + gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (xserver_toggle)); + new_monitor_xres = + gimp_size_entry_get_refval (GIMP_SIZE_ENTRY (resolution_entry), 0); + new_monitor_yres = + gimp_size_entry_get_refval (GIMP_SIZE_ENTRY (resolution_entry), 1); + + if (tile_cache_size != new_tile_cache_size) + { + tile_cache_size = new_tile_cache_size; + update = g_list_append (update, "tile-cache-size"); + } + if (strcmp (swap_path, new_swap_path)) + { + g_free (swap_path); + swap_path = new_swap_path; + update = g_list_append (update, "swap-path"); + } + if (using_xserver_resolution != new_using_xserver_resolution || + ABS (monitor_xres - new_monitor_xres) > GIMP_MIN_RESOLUTION) + { + monitor_xres = new_monitor_xres; + update = g_list_append (update, "monitor-xresolution"); + } + if (using_xserver_resolution != new_using_xserver_resolution || + ABS (monitor_yres - new_monitor_yres) > GIMP_MIN_RESOLUTION) + { + monitor_yres = new_monitor_yres; + update = g_list_append (update, "monitor-yresolution"); + } + + using_xserver_resolution = new_using_xserver_resolution; + + if (using_xserver_resolution) + { + /* special value of 0 for either x or y res in the gimprc file + * means use the xserver's current resolution */ + monitor_xres = 0.0; + monitor_yres = 0.0; + } + + save_gimprc (&update, &remove); + + if (using_xserver_resolution) + gdisplay_xserver_resolution (&monitor_xres, &monitor_yres); + + g_list_free (update); + g_list_free (remove); + } diff --git a/app/preferences_dialog.c b/app/preferences_dialog.c index 4b18d289e9..f3da9dd9cb 100644 --- a/app/preferences_dialog.c +++ b/app/preferences_dialog.c @@ -32,11 +32,8 @@ #include "session.h" #include "tile_cache.h" -#include "libgimp/gimpchainbutton.h" -#include "libgimp/gimpfileselection.h" -#include "libgimp/gimppatheditor.h" -#include "libgimp/gimpsizeentry.h" #include "libgimp/gimplimits.h" +#include "libgimp/gimpmath.h" #include "libgimp/gimpintl.h" @@ -61,8 +58,6 @@ static void file_prefs_cancel_callback (GtkWidget *, GtkWidget *); static void file_prefs_toggle_callback (GtkWidget *, gpointer); static void file_prefs_preview_size_callback (GtkWidget *, gpointer); static void file_prefs_nav_preview_size_callback (GtkWidget *, gpointer); -static void file_prefs_mem_size_callback (GtkWidget *, gpointer); -static void file_prefs_mem_size_unit_callback (GtkWidget *, gpointer); static void file_prefs_string_callback (GtkWidget *, gpointer); static void file_prefs_text_callback (GtkWidget *, gpointer); static void file_prefs_filename_callback (GtkWidget *, gpointer); @@ -982,67 +977,6 @@ file_prefs_nav_preview_size_callback (GtkWidget *widget, gdisplays_nav_preview_resized (); } -static void -file_prefs_mem_size_callback (GtkWidget *widget, - gpointer data) -{ - gint *mem_size; - gint divided_mem_size; - gint mem_size_unit; - - if (! (mem_size = gtk_object_get_data (GTK_OBJECT (widget), "mem_size"))) - return; - - divided_mem_size = (int) gtk_object_get_data (GTK_OBJECT (widget), - "divided_mem_size"); - mem_size_unit = (int) gtk_object_get_data (GTK_OBJECT (widget), - "mem_size_unit"); - - divided_mem_size = GTK_ADJUSTMENT (widget)->value; - *mem_size = divided_mem_size * mem_size_unit; - - gtk_object_set_data (GTK_OBJECT (widget), "divided_mem_size", - (gpointer) divided_mem_size); -} - -static void -file_prefs_mem_size_unit_callback (GtkWidget *widget, - gpointer data) -{ - GtkObject *adjustment; - gint new_unit; - gint *mem_size; - gint divided_mem_size; - gint mem_size_unit; - - adjustment = GTK_OBJECT (data); - - new_unit = (int) gtk_object_get_user_data (GTK_OBJECT (widget)); - - if (! (mem_size = gtk_object_get_data (GTK_OBJECT (adjustment), "mem_size"))) - return; - - divided_mem_size = (int) gtk_object_get_data (GTK_OBJECT (adjustment), - "divided_mem_size"); - mem_size_unit = (int) gtk_object_get_data (GTK_OBJECT (adjustment), - "mem_size_unit"); - - if (new_unit != mem_size_unit) - { - divided_mem_size = *mem_size / new_unit; - mem_size_unit = new_unit; - - gtk_signal_handler_block_by_data (GTK_OBJECT (adjustment), mem_size); - gtk_adjustment_set_value (GTK_ADJUSTMENT (adjustment), divided_mem_size); - gtk_signal_handler_unblock_by_data (GTK_OBJECT (adjustment), mem_size); - } - - gtk_object_set_data (GTK_OBJECT (adjustment), "divided_mem_size", - (gpointer) divided_mem_size); - gtk_object_set_data (GTK_OBJECT (adjustment), "mem_size_unit", - (gpointer) mem_size_unit); -} - static void file_prefs_string_callback (GtkWidget *widget, gpointer data) @@ -1384,8 +1318,6 @@ file_pref_cmd_callback (GtkWidget *widget, GSList *group; gint i; - gint divided_mem_size; - gint mem_size_unit; gchar *pixels_per_unit; if (prefs_dlg) @@ -1675,46 +1607,13 @@ file_pref_cmd_callback (GtkWidget *widget, _("Default Image Type:"), 1.0, 0.5, optionmenu, 1, TRUE); - /* The maximum size of a new image */ - mem_size_unit = 1; - for (i = 0; i < 3; i++) - { - if (max_new_image_size % (mem_size_unit * 1024) != 0) - break; - mem_size_unit *= 1024; - } - divided_mem_size = max_new_image_size / mem_size_unit; - - hbox = gtk_hbox_new (FALSE, 2); - spinbutton = - gimp_spin_button_new (&adjustment, divided_mem_size, - 0.0, (4069.0 * 1024 * 1024), 1.0, 16.0, 0.0, - 1.0, 0.0); + /* The maximum size of a new image */ + adjustment = gtk_adjustment_new (max_new_image_size, + 0, (4069.0 * 1024 * 1024), 1.0, 1.0, 0.0); + hbox = gimp_mem_size_entry_new (GTK_ADJUSTMENT (adjustment)); gtk_signal_connect (GTK_OBJECT (adjustment), "value_changed", - GTK_SIGNAL_FUNC (file_prefs_mem_size_callback), + GTK_SIGNAL_FUNC (gimp_int_adjustment_update), &max_new_image_size); - gtk_box_pack_start (GTK_BOX (hbox), spinbutton, FALSE, FALSE, 0); - gtk_widget_show (spinbutton); - - /* for the mem_size_unit callback */ - gtk_object_set_data (GTK_OBJECT (adjustment), "mem_size", - &max_new_image_size); - gtk_object_set_data (GTK_OBJECT (adjustment), "divided_mem_size", - (gpointer) divided_mem_size); - gtk_object_set_data (GTK_OBJECT (adjustment), "mem_size_unit", - (gpointer) mem_size_unit); - - optionmenu = - gimp_option_menu_new2 (FALSE, file_prefs_mem_size_unit_callback, - adjustment, (gpointer) mem_size_unit, - - _("Bytes"), (gpointer) 1, NULL, - _("KiloBytes"), (gpointer) 1024, NULL, - _("MegaBytes"), (gpointer) (1024 * 1024), NULL, - - NULL); - gtk_box_pack_start (GTK_BOX (hbox), optionmenu, FALSE, FALSE, 0); - gtk_widget_show (optionmenu); gimp_table_attach_aligned (GTK_TABLE (table), 0, 1, _("Maximum Image Size:"), 1.0, 0.5, hbox, 1, TRUE); @@ -1725,8 +1624,8 @@ file_pref_cmd_callback (GtkWidget *widget, GTK_CTREE (ctree), _("Default Comment"), "dialogs/preferences/default_comment.html", - NULL, - &top_insert, + top_insert, + &child_insert, page_index); gtk_widget_show (vbox); page_index++; @@ -2193,45 +2092,12 @@ file_pref_cmd_callback (GtkWidget *widget, spinbutton, 1, TRUE); /* The tile cache size */ - mem_size_unit = 1; - for (i = 0; i < 3; i++) - { - if (edit_tile_cache_size % (mem_size_unit * 1024) != 0) - break; - mem_size_unit *= 1024; - } - divided_mem_size = edit_tile_cache_size / mem_size_unit; - - hbox = gtk_hbox_new (FALSE, 2); - spinbutton = - gimp_spin_button_new (&adjustment, divided_mem_size, - 0.0, (4069.0 * 1024 * 1024), 1.0, 16.0, 0.0, - 1.0, 0.0); + adjustment = gtk_adjustment_new (edit_tile_cache_size, + 0, (4069.0 * 1024 * 1024), 1.0, 1.0, 0.0); + hbox = gimp_mem_size_entry_new (GTK_ADJUSTMENT (adjustment)); gtk_signal_connect (GTK_OBJECT (adjustment), "value_changed", - GTK_SIGNAL_FUNC (file_prefs_mem_size_callback), + GTK_SIGNAL_FUNC (gimp_int_adjustment_update), &edit_tile_cache_size); - gtk_box_pack_start (GTK_BOX (hbox), spinbutton, FALSE, FALSE, 0); - gtk_widget_show (spinbutton); - - /* for the mem_size_unit callback */ - gtk_object_set_data (GTK_OBJECT (adjustment), "mem_size", - &edit_tile_cache_size); - gtk_object_set_data (GTK_OBJECT (adjustment), "divided_mem_size", - (gpointer) divided_mem_size); - gtk_object_set_data (GTK_OBJECT (adjustment), "mem_size_unit", - (gpointer) mem_size_unit); - - optionmenu = - gimp_option_menu_new2 (FALSE, file_prefs_mem_size_unit_callback, - adjustment, (gpointer) mem_size_unit, - - _("Bytes"), (gpointer) 1, NULL, - _("KiloBytes"), (gpointer) 1024, NULL, - _("MegaBytes"), (gpointer) (1024 * 1024), NULL, - - NULL); - gtk_box_pack_start (GTK_BOX (hbox), optionmenu, FALSE, FALSE, 0); - gtk_widget_show (optionmenu); gimp_table_attach_aligned (GTK_TABLE (table), 0, 1, _("Tile Cache Size:"), 1.0, 0.5, hbox, 1, TRUE); @@ -2387,14 +2253,15 @@ file_pref_cmd_callback (GtkWidget *widget, vbox2 = file_prefs_frame_new (_("Get Monitor Resolution"), GTK_BOX (vbox)); { - gdouble xres, yres; - gchar buf[80]; + gdouble xres, yres; + gchar *str; gdisplay_xserver_resolution (&xres, &yres); - g_snprintf (buf, sizeof (buf), _("(Currently %d x %d dpi)"), - (int) (xres + 0.5), (int) (yres + 0.5)); - label = gtk_label_new (buf); + str = g_strdup_printf (_("(Currently %d x %d dpi)"), + ROUND (xres), ROUND (yres)); + label = gtk_label_new (str); + g_free (str); } abox = gtk_alignment_new (0.5, 0.5, 0.0, 0.0); diff --git a/app/user_install.c b/app/user_install.c index 2c47d27a6b..10e92de788 100644 --- a/app/user_install.c +++ b/app/user_install.c @@ -29,11 +29,20 @@ #include "appenv.h" #include "install.h" +#include "gdisplay_ops.h" #include "gimprc.h" #include "gimpui.h" +#include "unitrc.h" + +#include "libgimp/gimpenv.h" +#include "libgimp/gimplimits.h" +#include "libgimp/gimpmath.h" #include "libgimp/gimpintl.h" -#include "libgimp/gimpenv.h" + +#include "pixmaps/wilber.xpm" +#include "pixmaps/new.xpm" +#include "pixmaps/folder.xpm" #ifndef G_OS_WIN32 # ifndef __EMX__ @@ -48,26 +57,29 @@ # define USER_INSTALL "user_install.bat" #endif -static void install_run (InstallCallback); -static void install_help (InstallCallback); -static void help_install_callback (GtkWidget *, gpointer); -static void help_ignore_callback (GtkWidget *, gpointer); -static void help_quit_callback (GtkWidget *, gpointer); -static void install_continue_callback (GtkWidget *, gpointer); -static void install_quit_callback (GtkWidget *, gpointer); +#define NUM_PAGES 5 +#define WILBER_WIDTH 62 + +static void install_dialog_create (InstallCallback); +static void install_continue_callback (GtkWidget *widget, gpointer data); +static void install_cancel_callback (GtkWidget *widget, gpointer data); + +static gboolean install_run (void); +static void install_tuning (void); +static void install_tuning_done (void); +static void install_resolution (void); +static void install_resolution_done (void); -static GtkWidget *help_widget; -static GtkWidget *install_widget; void install_verify (InstallCallback install_callback) { - int properly_installed = TRUE; - char *filename; + gboolean properly_installed = TRUE; + gchar *filename; struct stat stat_buf; - filename = gimp_directory (); /* gimp_directory now always returns something */ + filename = gimp_directory (); if (stat (filename, &stat_buf) != 0) properly_installed = FALSE; @@ -88,282 +100,674 @@ install_verify (InstallCallback install_callback) } else { - install_help (install_callback); + install_dialog_create (install_callback); } } +/* private stuff */ + +static GtkWidget *install_dialog = NULL; + +static GtkWidget *notebook = NULL; +static gint notebook_index = 0; + +static GtkWidget *log_page = NULL; +static GtkWidget *tuning_page = NULL; +static GtkWidget *resolution_page = NULL; + +static GtkWidget *continue_button = NULL; + +static GtkStyle *title_style = NULL; +static GdkFont *large_font = NULL; + +static GtkStyle *page_style = NULL; +static GdkColormap *colormap = NULL; + +static GdkGC *white_gc = NULL; + +static GdkColor black_color; +static GdkColor white_color; +static GdkColor title_color; + +static struct +{ + gboolean directory; + gchar *text; + gchar *description; +} +tree_items[] = +{ + { + FALSE, "gimprc", + N_("The gimprc is used to store personal preferences\n" + "that affect GIMP's default behavior.\n" + "Paths to search for brushes, palettes, gradients,\n" + "patterns, plug-ins and modules can also configured here.") + }, + { + FALSE, "gtkrc", + N_("GIMP uses an additional gtkrc file so you can\n" + "configure it to look differently than other GTK apps.") + }, + { + FALSE, "pluginrc", + N_("Plug-ins and extensions are external programs run by\n" + "the GIMP which provide additional functionality.\n" + "These programs are searched for at run-time and\n" + "information about their functionality and mod-times\n" + "is cached in this file. This file is intended to\n" + "be GIMP-readable only, and should not be edited.") + }, + { + FALSE, "menurc", + N_("Key shortcuts can be dynamically redefined in The GIMP.\n" + "The menurc is a dump of your configuration so it can.\n" + "be remembered for the next session. You may edit this\n" + "file if you wish, but it is much easier to define the\n" + "keys from within The GIMP. Deleting this file will\n" + "restore the default shortcuts.") + }, + { + FALSE, "sessionrc", + N_("The sessionrc is used to store what dialog windows were\n" + "open the last time you quit The GIMP. You can configure\n" + "The GIMP to reopen these dialogs at the saved position.") + }, + { + FALSE, "unitrc", + N_("The unitrc is used to store your user units database.\n" + "You can define additional units and use them just\n" + "like you use the built-in units inches, millimeters,\n" + "points and picas. This file is overwritten each time\n" + "you quit the GIMP.") + }, + { + TRUE, "brushes", + N_("This is a subdirectory which can be used to store\n" + "user defined brushes. The default gimprc file\n" + "checks this subdirectory in addition to the system-\n" + "wide gimp brushes installation when searching for\n" + "brushes.") + }, + { + TRUE, "generated_brushes", + N_("This is a subdirectory which is used to store brushes\n" + "that are created with the brush editor. The default\n" + "gimprc file checks this subdirectory when searching for\n" + "generated brushes.") + }, + { + TRUE, "gradients", + N_("This is a subdirectory which can be used to store\n" + "user defined gradients. The default gimprc file\n" + "checks this subdirectory in addition to the system-\n" + "wide gimp gradients installation when searching for\n" + "gradients.") + }, + { + TRUE, "palettes", + N_("This is a subdirectory which can be used to store\n" + "user defined palettes. The default gimprc file\n" + "checks only this subdirectory (not the system-wide\n" + "installation) when searching for palettes. During\n" + "installation, the system palettes will be copied\n" + "here. This is done to allow modifications made to\n" + "palettes during GIMP execution to persist across\n" + "sessions.") + }, + { + TRUE, "patterns", + N_("This is a subdirectory which can be used to store\n" + "user defined patterns. The default gimprc file\n" + "checks this subdirectory in addition to the system-\n" + "wide gimp patterns installation when searching for\n" + "patterns.") + }, + { + TRUE, "plug-ins", + N_("This is a subdirectory which can be used to store\n" + "user created, temporary, or otherwise non-system-\n" + "supported plug-ins. The default gimprc file\n" + "checks this subdirectory in addition to the system-\n" + "wide GIMP plug-in directories when searching for\n" + "plug-ins.") + }, + { + TRUE, "modules", + N_("This subdirectory can be used to store user created,\n" + "temporary, or otherwise non-system-supported DLL modules.\n" + "The default gimprc file checks this subdirectory\n" + "in addition to the system-wide GIMP module directory\n" + "when searching for modules to load when initializing.") + }, + { + TRUE, "scripts", + N_("This subdirectory is used by the GIMP to store \n" + "user created and installed scripts. The default gimprc\n" + "file checks this subdirectory in addition to the system-\n" + "wide gimp scripts subdirectory when searching for scripts") + }, + { + TRUE, "tmp", + N_("This subdirectory is used by the GIMP to temporarily\n" + "store undo buffers to reduce memory usage. If GIMP is\n" + "unceremoniously killed, files may persist in this directory\n" + "of the form: gimp<#>.<#>. These files are useless across\n" + "GIMP sessions and can be destroyed with impunity.") + }, + { + TRUE, "curves", + N_("This subdirectory is used to store parameter files for\n" + "the Curves tool.") + }, + { + TRUE, "levels", + N_("This subdirectory is used to store parameter files for\n" + "the Levels tool.") + }, + { + TRUE, "fractalexplorer", + N_("This is a subdirectory which can be used to store\n" + "user defined fractals to be used by the FractalExplorer\n" + "plug-in. The default gimprc file checks this subdirectory in\n" + "addition to the systemwide gimp FractalExplorer installation\n" + "when searching for fractals.") + }, + { + TRUE, "gfig", + N_("This is a subdirectory which can be used to store\n" + "user defined figures to be used by the gfig plug-in.\n" + "The default gimprc file checks this subdirectory in\n" + "addition to the systemwide gimp gfig installation\n" + "when searching for gfig figures.") + }, + { + TRUE, "gflare", + N_("This is a subdirectory which can be used to store\n" + "user defined gflares to be used by the gflare plug-in.\n" + "The default gimprc file checks this subdirectory in\n" + "addition to the systemwide gimp gflares installation\n" + "when searching for gflares.") + }, + { + TRUE, "gimpressionist", + N_("This is a subdirectory which can be used to store\n" + "user defined data to be used by the Gimpressionist\n" + "plug-in. The default gimprc file checks this subdirectory in\n" + "addition to the systemwide gimp Gimpressionist installation\n" + "when searching for data.") + } +}; +static gint num_tree_items = sizeof (tree_items) / sizeof (tree_items[0]); + + +static void +install_continue_callback (GtkWidget *widget, + gpointer data) +{ + InstallCallback callback; + + callback = (InstallCallback) data; + + switch (notebook_index) + { + case 0: + break; + + case 1: + if (!install_run ()) + gtk_widget_set_sensitive (continue_button, FALSE); + break; + + case 2: +#ifdef G_OS_WIN32 + FreeConsole (); +#endif + parse_buffers_init (); + parse_unitrc (); + parse_gimprc (); + install_tuning (); + break; + + case 3: + install_tuning_done (); + install_resolution (); + break; + + case 4: + install_resolution_done (); + gtk_widget_destroy (install_dialog); + gdk_gc_unref (white_gc); + + (* callback) (); + break; + } + + if (notebook_index < NUM_PAGES - 1) + gtk_notebook_set_page (GTK_NOTEBOOK (notebook), ++notebook_index); +} + + +static void +install_cancel_callback (GtkWidget *widget, + gpointer data) +{ + gtk_widget_destroy (install_dialog); + gtk_exit (0); +} + +static gint +install_corner_expose (GtkWidget *widget, + GdkEventExpose *eevent, + gpointer data) +{ + gdk_draw_arc (widget->window, + white_gc, + TRUE, + 0, 0, + widget->allocation.width * 2, widget->allocation.height * 2, + 90 * 64, + 180 * 64); + + return TRUE; +} + +static GtkWidget * +install_notebook_append_page (GtkNotebook *notebook, + gchar *title) +{ + GtkWidget *page; + GtkWidget *vbox; + GtkWidget *hbox; + GtkWidget *ebox; + GtkWidget *wilber; + GtkWidget *label; + GtkWidget *table; + GtkWidget *darea; + + page = gtk_vbox_new (FALSE, 0); + + gtk_widget_push_style (title_style); + + ebox = gtk_event_box_new (); + gtk_widget_set_events (ebox, GDK_EXPOSURE_MASK); + gtk_widget_set_usize (ebox, WILBER_WIDTH + 16, -1); + gtk_box_pack_start (GTK_BOX (page), ebox, FALSE, FALSE, 0); + gtk_widget_show (ebox); + + hbox = gtk_hbox_new (FALSE, 8); + gtk_container_set_border_width (GTK_CONTAINER (hbox), 8); + gtk_container_add (GTK_CONTAINER (ebox), hbox); + gtk_widget_show (hbox); + + wilber = gimp_pixmap_new (wilber_xpm); + gtk_box_pack_start (GTK_BOX (hbox), wilber, FALSE, FALSE, 8); + gtk_widget_show (wilber); + + label = gtk_label_new (title); + gtk_label_set_justify (GTK_LABEL (label), GTK_JUSTIFY_LEFT); + gtk_box_pack_start (GTK_BOX (hbox), label, FALSE, FALSE, 0); + gtk_widget_show (label); + + gtk_widget_pop_style (); + + hbox = gtk_hbox_new (FALSE, 0); + gtk_box_pack_start (GTK_BOX (page), hbox, TRUE, TRUE, 0); + gtk_widget_show (hbox); + + gtk_widget_push_style (title_style); + + ebox = gtk_event_box_new (); + gtk_widget_set_usize (ebox, 16, -1); + gtk_box_pack_start (GTK_BOX (hbox), ebox, FALSE, FALSE, 0); + gtk_widget_show (ebox); + + gtk_widget_pop_style (); + + ebox = gtk_event_box_new (); + gtk_box_pack_start (GTK_BOX (hbox), ebox, TRUE, TRUE, 0); + gtk_widget_show (ebox); + + table = gtk_table_new (3, 3, FALSE); + gtk_table_set_row_spacing (GTK_TABLE (table), 1, 8); + gtk_table_set_col_spacing (GTK_TABLE (table), 1, 8); + gtk_container_add (GTK_CONTAINER (ebox), table); + gtk_widget_show (table); + + gtk_widget_push_style (title_style); + + darea = gtk_drawing_area_new (); + gtk_drawing_area_size (GTK_DRAWING_AREA (darea), 16, 16); + gtk_signal_connect_after (GTK_OBJECT (darea), "expose_event", + GTK_SIGNAL_FUNC (install_corner_expose), + NULL); + gtk_table_attach (GTK_TABLE (table), darea, 0, 1, 0, 1, + GTK_SHRINK, GTK_SHRINK, 0, 0); + gtk_widget_show (darea); + + gtk_widget_pop_style (); + + vbox = gtk_vbox_new (FALSE, 6); + gtk_table_attach_defaults (GTK_TABLE (table), vbox, 1, 2, 1, 2); + gtk_widget_show (vbox); + + gtk_widget_show (page); + + gtk_notebook_append_page (GTK_NOTEBOOK (notebook), page, NULL); + + return vbox; +} + +static void +add_label (GtkBox *box, + gboolean last_line, + gchar *text) +{ + GtkWidget *label; + + label = gtk_label_new (text); + gtk_label_set_justify (GTK_LABEL (label), GTK_JUSTIFY_LEFT); + + if (last_line) + { + gtk_misc_set_alignment (GTK_MISC (label), 1.0, 0.5); + gtk_box_pack_end (box, label, FALSE, FALSE, 0); + } + else + { + gtk_misc_set_alignment (GTK_MISC (label), 0.0, 0.5); + gtk_box_pack_start (box, label, FALSE, FALSE, 0); + } + + gtk_widget_show (label); +} + +static void +install_ctree_select_row (GtkWidget *widget, + gint row, + gint column, + GdkEventButton *bevent, + gpointer data) +{ + GtkNotebook *notebook; + + notebook = (GtkNotebook*) data; + + gtk_notebook_set_page (notebook, row); +} + +void +install_dialog_create (InstallCallback callback) +{ + GtkWidget *dialog; + GtkWidget *page; + GtkWidget *sep; + + notebook_index = 0; + + dialog = install_dialog = + gimp_dialog_new (_("GIMP User Installation"), "user_installation", + NULL, NULL, + GTK_WIN_POS_CENTER, + FALSE, FALSE, FALSE, + + _("Continue"), install_continue_callback, + callback, NULL, &continue_button, TRUE, FALSE, + _("Cancel"), install_cancel_callback, + callback, 1, NULL, FALSE, TRUE, + + NULL); + + gtk_widget_realize (dialog); + + /* B/W Style for the page contents */ + page_style = gtk_style_copy (dialog->style); + colormap = gtk_widget_get_colormap (dialog); + + gdk_color_black (colormap, &black_color); + gdk_color_white (colormap, &white_color); + + page_style->fg[GTK_STATE_NORMAL] = black_color; + page_style->text[GTK_STATE_NORMAL] = black_color; + page_style->bg[GTK_STATE_NORMAL] = white_color; + + /* B/Colored Style for the page title */ + title_style = gtk_style_copy (page_style); + + if (gdk_color_parse ("sienna1", &title_color) && + gdk_colormap_alloc_color (colormap, &title_color, FALSE, TRUE)) + { + title_style->bg[GTK_STATE_NORMAL] = title_color; + } + + /* this is a fontset, e.g. multiple comma-separated font definitions */ + large_font = gdk_fontset_load (_("-*-helvetica-bold-r-normal-*-*-240-*-*-*-*-*-*,*")); + + title_style->font = large_font; + + /* W/W GC for the corner */ + white_gc = gdk_gc_new (dialog->window); + gdk_gc_set_foreground (white_gc, &white_color); + + gtk_widget_push_style (page_style); + + notebook = gtk_notebook_new (); + gtk_notebook_set_show_tabs (GTK_NOTEBOOK (notebook), FALSE); + gtk_notebook_set_show_border (GTK_NOTEBOOK (notebook), FALSE); + gtk_container_add (GTK_CONTAINER (GTK_DIALOG (dialog)->vbox), notebook); + gtk_widget_show (notebook); + + /* Page 1 */ + page = install_notebook_append_page (GTK_NOTEBOOK (notebook), + _("Welcome to\n" + "The GIMP User Installation")); + + add_label (GTK_BOX (page), FALSE, + _("The GIMP - GNU Image Manipulation Program\n" + "Copyright (C) 1995-2000\n" + "Spencer Kimball, Peter Mattis and the GIMP Development Team.")); + + sep = gtk_hseparator_new (); + gtk_box_pack_start (GTK_BOX (page), sep, FALSE, FALSE, 2); + gtk_widget_show (sep); + + add_label (GTK_BOX (page), FALSE, + _("This program is free software; you can redistribute it and/or modify\n" + "it under the terms of the GNU General Public License as published by\n" + "the Free Software Foundation; either version 2 of the License, or\n" + "(at your option) any later version.")); + add_label (GTK_BOX (page), FALSE, + _("This program is distributed in the hope that it will be useful,\n" + "but WITHOUT ANY WARRANTY; without even the implied warranty of\n" + "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n" + "See the GNU General Public License for more details.")); + add_label (GTK_BOX (page), FALSE, + _("You should have received a copy of the GNU General Public License\n" + "along with this program; if not, write to the Free Software\n" + "Foundation, Inc., 59 Temple Place - Suite 330, Boston,\n" + "MA 02111-1307, USA.")); + + add_label (GTK_BOX (page), TRUE, + _("Click \"Continue\" to enter the GIMP user installation.")); + + sep = gtk_hseparator_new (); + gtk_box_pack_end (GTK_BOX (page), sep, FALSE, FALSE, 2); + gtk_widget_show (sep); + + /* Page 2 */ + { + GtkWidget *hbox; + GtkWidget *vbox; + GtkWidget *ctree; + GtkWidget *notebook2; + GtkWidget *page2; + GtkWidget *label; + GtkCTreeNode *main_node = NULL; + GtkCTreeNode *sub_node = NULL; + GdkPixmap *file_pixmap; + GdkBitmap *file_mask; + GdkPixmap *folder_pixmap; + GdkBitmap *folder_mask; + + gint i; + + gchar *node[1]; + + page = install_notebook_append_page (GTK_NOTEBOOK (notebook), + _("Personal GIMP Directory")); + + hbox = gtk_hbox_new (FALSE, 8); + gtk_box_pack_start (GTK_BOX (page), hbox, FALSE, FALSE, 0); + gtk_widget_show (hbox); + + ctree = gtk_ctree_new (1, 0); + gtk_ctree_set_indent (GTK_CTREE (ctree), 12); + gtk_clist_set_shadow_type (GTK_CLIST (ctree), GTK_SHADOW_NONE); + gtk_box_pack_start (GTK_BOX (hbox), ctree, FALSE, FALSE, 0); + gtk_widget_show (ctree); + + vbox = gtk_vbox_new (FALSE, 6); + gtk_box_pack_start (GTK_BOX (hbox), vbox, TRUE, TRUE, 0); + gtk_widget_show (vbox); + + add_label (GTK_BOX (vbox), FALSE, + _("For a proper GIMP installation, a subdirectory needs to be created.\n" + "This subdirectory will contain a number of important files.")); + add_label (GTK_BOX (vbox), FALSE, + _("Click on one of the files or subdirectories in the tree\n" + "to get more information about the selected item.")); + add_label (GTK_BOX (vbox), TRUE, + _("Click \"Continue\" to create your personal GIMP directory.")); + + notebook2 = gtk_notebook_new (); + gtk_container_set_border_width (GTK_CONTAINER (notebook2), 8); + gtk_notebook_set_show_tabs (GTK_NOTEBOOK (notebook2), FALSE); + gtk_notebook_set_show_border (GTK_NOTEBOOK (notebook2), FALSE); + gtk_box_pack_start (GTK_BOX (vbox), notebook2, TRUE, TRUE, 0); + gtk_widget_show (notebook2); + + /* empty page */ + page2 = gtk_vbox_new (FALSE, 0); + gtk_widget_show (page2); + gtk_notebook_append_page (GTK_NOTEBOOK (notebook2), page2, NULL); + + node[0] = gimp_directory (); + + main_node = gtk_ctree_insert_node (GTK_CTREE (ctree), NULL, NULL, + node, 4, + NULL, NULL, NULL, NULL, + FALSE, TRUE); + + gtk_signal_connect (GTK_OBJECT (ctree), "select_row", + GTK_SIGNAL_FUNC (install_ctree_select_row), + notebook2); + + file_pixmap = gdk_pixmap_create_from_xpm_d (dialog->window, + &file_mask, + &page_style->bg[GTK_STATE_NORMAL], + new_xpm); + folder_pixmap = gdk_pixmap_create_from_xpm_d (dialog->window, + &folder_mask, + &page_style->bg[GTK_STATE_NORMAL], + folder_xpm); + + for (i = 0; i < num_tree_items; i++) + { + node[0] = tree_items[i].text; + + if (tree_items[i].directory) + { + sub_node = gtk_ctree_insert_node (GTK_CTREE (ctree), main_node, NULL, + node, 4, + folder_pixmap, folder_mask, + folder_pixmap, folder_mask, + FALSE, TRUE); + } + else + { + sub_node = gtk_ctree_insert_node (GTK_CTREE (ctree), main_node, NULL, + node, 4, + file_pixmap, file_mask, + file_pixmap, file_mask, + FALSE, TRUE); + } + + page2 = gtk_vbox_new (FALSE, 0); + label = gtk_label_new (gettext (tree_items[i].description)); + gtk_label_set_justify (GTK_LABEL (label), GTK_JUSTIFY_LEFT); + gtk_misc_set_alignment (GTK_MISC (label), 0.0, 0.5); + gtk_box_pack_start (GTK_BOX (page2), label, TRUE, TRUE, 0); + gtk_widget_show (label); + gtk_widget_show (page2); + + gtk_notebook_append_page (GTK_NOTEBOOK (notebook2), page2, NULL); + } + + gtk_clist_set_column_width (GTK_CLIST (ctree), 0, + gtk_clist_optimal_column_width (GTK_CLIST (ctree), 0)); + + gtk_widget_set_usize (ctree, -1, ctree->requisition.height); + + gdk_pixmap_unref (file_pixmap); + gdk_bitmap_unref (file_mask); + gdk_pixmap_unref (folder_pixmap); + gdk_bitmap_unref (folder_mask); + } + + /* Page 3 */ + page = log_page = + install_notebook_append_page (GTK_NOTEBOOK (notebook), + _("User Installation Log")); + + /* Page 4 */ + page = tuning_page = + install_notebook_append_page (GTK_NOTEBOOK (notebook), + _("GIMP Performance Tuning")); + + add_label (GTK_BOX (page), FALSE, + _("For optimal GIMP performance, some settings may have to be adjusted.")); + + sep = gtk_hseparator_new (); + gtk_box_pack_start (GTK_BOX (page), sep, FALSE, FALSE, 2); + gtk_widget_show (sep); + + add_label (GTK_BOX (page), TRUE, + _("Click \"Continue\" to accept the settings above.")); + + sep = gtk_hseparator_new (); + gtk_box_pack_end (GTK_BOX (page), sep, FALSE, FALSE, 2); + gtk_widget_show (sep); + + /* Page 5 */ + page = resolution_page = + install_notebook_append_page (GTK_NOTEBOOK (notebook), + _("Monitor Resolution")); + + add_label (GTK_BOX (resolution_page), FALSE, + _("To display images in their natural size, " + "GIMP needs to know your monitor resolution.")); + + sep = gtk_hseparator_new (); + gtk_box_pack_start (GTK_BOX (page), sep, FALSE, FALSE, 2); + gtk_widget_show (sep); + + add_label (GTK_BOX (page), TRUE, + _("Click \"Continue\" to start The GIMP.")); + + sep = gtk_hseparator_new (); + gtk_box_pack_end (GTK_BOX (page), sep, FALSE, FALSE, 2); + gtk_widget_show (sep); + + gtk_widget_show (dialog); + + gtk_style_unref (title_style); + gtk_style_unref (page_style); +} + /*********************/ /* Local functions */ -static void -install_help (InstallCallback callback) -{ - GtkWidget *text; - GtkWidget *table; - GtkWidget *vsb; - GtkAdjustment *vadj; - GdkFont *font_strong; - GdkFont *font_emphasis; - GdkFont *font; - static const struct { - gint font; - char *text; - } help_lines[] = { - { 2, N_("The GIMP - GNU Image Manipulation Program\n\n") }, - { 1, "Copyright (C) 1995 Spencer Kimball and Peter Mattis\n" }, - { 0, "\n" }, - - { 0, - N_("This program is free software; you can redistribute it and/or modify\n" - "it under the terms of the GNU General Public License as published by\n" - "the Free Software Foundation; either version 2 of the License, or\n" - "(at your option) any later version.\n") }, - { 0, "\n" }, - { 0, N_("This program is distributed in the hope that it will be useful,\n" - "but WITHOUT ANY WARRANTY; without even the implied warranty of\n" - "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n" - "See the GNU General Public License for more details.\n") }, - { 0, "\n" }, - { 0, N_("You should have received a copy of the GNU General Public License\n" - "along with this program; if not, write to the Free Software\n" - "Foundation, Inc., 59 Temple Place - Suite 330, Boston,\n" - "MA 02111-1307, USA.\n") }, - { 0, "\n\n" }, - - { 2, N_("Personal GIMP Installation\n\n") }, - { 0, N_("For a proper GIMP installation, a subdirectory called\n") }, - { 1, NULL }, /* will be replaced with gimp_directory() */ - { 0, N_(" needs to be created. This\n" - "subdirectory will contain a number of important files:\n\n") }, - - { 1, "gimprc\n" }, - { 0, N_("\t\tThe gimprc is used to store personal preferences\n" - "\t\tthat affect GIMP's default behavior.\n" - "\t\tPaths to search for brushes, palettes, gradients,\n" - "\t\tpatterns, plug-ins and modules can also configured here.\n") }, - - { 1, "pluginrc\n" }, - { 0, N_("\t\tPlug-ins and extensions are external programs run by\n" - "\t\tthe GIMP which provide additional functionality.\n" - "\t\tThese programs are searched for at run-time and\n" - "\t\tinformation about their functionality and mod-times\n" - "\t\tis cached in this file. This file is intended to\n" - "\t\tbe GIMP-readable only, and should not be edited.\n") }, - - { 1, "menurc\n" }, - { 0, N_("\t\tKey shortcuts can be dynamically redefined in The GIMP.\n" - "\t\tThe menurc is a dump of your configuration so it can.\n" - "\t\tbe remembered for the next session. You may edit this\n" - "\t\tfile if you wish, but it is much easier to define the\n" - "\t\tkeys from within The GIMP. Deleting this file will\n" - "\t\trestore the default shortcuts.\n") }, - - { 1, "sessionrc\n" }, - { 0, N_("\t\tThe sessionrc is used to store what dialog windows were\n" - "\t\topen the last time you quit The GIMP. You can configure\n" - "\t\tThe GIMP to reopen these dialogs at the saved position.\n") }, - - { 1, "unitrc\n" }, - { 0, N_("\t\tThe unitrc is used to store your user units database.\n" - "\t\tYou can define additional units and use them just\n" - "\t\tlike you use the built-in units inches, millimeters,\n" - "\t\tpoints and picas. This file is overwritten each time\n" - "\t\tyou quit the GIMP.\n") }, - - { 1, "brushes\n" }, - { 0, N_("\t\tThis is a subdirectory which can be used to store\n" - "\t\tuser defined brushes. The default gimprc file\n" - "\t\tchecks this subdirectory in addition to the system-\n" - "\t\twide gimp brushes installation when searching for\n" - "\t\tbrushes.\n") }, - - { 1, "generated_brushes\n" }, - { 0, N_("\t\tThis is a subdirectory which is used to store brushes\n" - "\t\tthat are created with the brush editor. The default\n" - "\t\tgimprc file checks this subdirectory when searching for\n" - "\t\tgenerated brushes.\n") }, - - { 1, "gradients\n" }, - { 0, N_("\t\tThis is a subdirectory which can be used to store\n" - "\t\tuser defined gradients. The default gimprc file\n" - "\t\tchecks this subdirectory in addition to the system-\n" - "\t\twide gimp gradients installation when searching for\n" - "\t\tgradients.\n") }, - - { 1, "gfig\n" }, - { 0, N_("\t\tThis is a subdirectory which can be used to store\n" - "\t\tuser defined figures to be used by the gfig plug-in.\n" - "\t\tThe default gimprc file checks this subdirectory in\n" - "\t\taddition to the systemwide gimp gfig installation\n" - "\t\twhen searching for gfig figures.\n") }, - - { 1, "gflares\n" }, - { 0, N_("\t\tThis is a subdirectory which can be used to store\n" - "\t\tuser defined gflares to be used by the gflare plug-in.\n" - "\t\tThe default gimprc file checks this subdirectory in\n" - "\t\taddition to the systemwide gimp gflares installation\n" - "\t\twhen searching for gflares.\n") }, - - { 1, "fractalexplorer\n" }, - { 0, N_("\t\tThis is a subdirectory which can be used to store\n" - "\t\tuser defined fractals to be used by the FractalExplorer\n" - "\t\tplug-in. The default gimprc file checks this subdirectory in\n" - "\t\taddition to the systemwide gimp FractalExplorer installation\n" - "\t\twhen searching for fractals.\n") }, - - { 1, "palettes\n" }, - { 0, N_("\t\tThis is a subdirectory which can be used to store\n" - "\t\tuser defined palettes. The default gimprc file\n" - "\t\tchecks only this subdirectory (not the system-wide\n" - "\t\tinstallation) when searching for palettes. During\n" - "\t\tinstallation, the system palettes will be copied\n" - "\t\there. This is done to allow modifications made to\n" - "\t\tpalettes during GIMP execution to persist across\n" - "\t\tsessions.\n") }, - - { 1, "patterns\n" }, - { 0, N_("\t\tThis is a subdirectory which can be used to store\n" - "\t\tuser defined patterns. The default gimprc file\n" - "\t\tchecks this subdirectory in addition to the system-\n" - "\t\twide gimp patterns installation when searching for\n" - "\t\tpatterns.\n") }, - - { 1, "plug-ins\n" }, - { 0, N_("\t\tThis is a subdirectory which can be used to store\n" - "\t\tuser created, temporary, or otherwise non-system-\n" - "\t\tsupported plug-ins. The default gimprc file\n" - "\t\tchecks this subdirectory in addition to the system-\n" - "\t\twide GIMP plug-in directories when searching for\n" - "\t\tplug-ins.\n") }, - - { 1, "modules\n" }, - { 0, N_("\t\tThis subdirectory can be used to store user created,\n" - "\t\ttemporary, or otherwise non-system-supported DLL modules.\n" - "\t\tThe default gimprc file checks this subdirectory\n" - "\t\tin addition to the system-wide GIMP module directory\n" - "\t\twhen searching for modules to load when initializing.\n") }, - - { 1, "scripts\n" }, - { 0, N_("\t\tThis subdirectory is used by the GIMP to store \n" - "\t\tuser created and installed scripts. The default gimprc\n" - "\t\tfile checks this subdirectory in addition to the system\n" - "\t\t-wide gimp scripts subdirectory when searching for scripts\n") }, - - { 1, "tmp\n" }, - { 0, N_("\t\tThis subdirectory is used by the GIMP to temporarily\n" - "\t\tstore undo buffers to reduce memory usage. If GIMP is\n" - "\t\tunceremoniously killed, files may persist in this directory\n" - "\t\tof the form: gimp<#>.<#>. These files are useless across\n" - "\t\tGIMP sessions and can be destroyed with impunity.\n") } - }; - gint nhelp_lines = sizeof (help_lines) / sizeof (help_lines[0]); - gint i; - - help_widget = gimp_dialog_new (_("GIMP Installation"), "gimp_installation", - NULL, NULL, - GTK_WIN_POS_CENTER, - FALSE, TRUE, FALSE, - - _("Install"), help_install_callback, - callback, NULL, NULL, TRUE, FALSE, - _("Ignore"), help_ignore_callback, - callback, NULL, NULL, FALSE, FALSE, - _("Quit"), help_quit_callback, - callback, NULL, NULL, FALSE, TRUE, - - NULL); - - table = gtk_table_new (1, 2, FALSE); - gtk_container_set_border_width (GTK_CONTAINER (table), 2); - gtk_table_set_col_spacing (GTK_TABLE (table), 0, 2); - gtk_container_add (GTK_CONTAINER (GTK_DIALOG (help_widget)->vbox), table); - - vadj = GTK_ADJUSTMENT (gtk_adjustment_new (0.0, 0.0, 0.0, 0.0, 0.0, 0.0)); - vsb = gtk_vscrollbar_new (vadj); - text = gtk_text_new (NULL, vadj); - gtk_text_set_editable (GTK_TEXT (text), FALSE); - gtk_widget_set_usize (text, 450, 475); - - gtk_table_attach (GTK_TABLE (table), vsb, 1, 2, 0, 1, - 0, GTK_EXPAND | GTK_SHRINK | GTK_FILL, 0, 0); - gtk_table_attach (GTK_TABLE (table), text, 0, 1, 0, 1, - GTK_EXPAND | GTK_SHRINK | GTK_FILL, - GTK_EXPAND | GTK_SHRINK | GTK_FILL, 0, 0); - - /* this is a fontset, e.g. multiple comma-separated font definitions */ - font_strong = gdk_fontset_load (_("-*-helvetica-bold-r-normal-*-*-120-*-*-*-*-*-*,*")); - - /* this is a font, provide only one single font definition */ - font_emphasis = gdk_font_load (_("-*-helvetica-medium-o-normal-*-*-100-*-*-*-*-*-*")); - - /* this is a fontset, e.g. multiple comma-separated font definitions */ - font = gdk_fontset_load (_("-*-helvetica-medium-r-normal-*-*-100-*-*-*-*-*-*,*")); - if (!font_emphasis) - font_emphasis = font; - - /* Realize the widget before allowing new text to be inserted */ - gtk_widget_realize (text); - - for (i = 0; i < nhelp_lines; i++) - if (help_lines[i].text == NULL) - /* inserting gimp_directory () this way is a little ugly */ - gtk_text_insert (GTK_TEXT (text), - (help_lines[i].font == 2) ? font_strong : - (help_lines[i].font == 1) ? font_emphasis : font, - NULL, NULL, - gimp_directory (), -1); - else - gtk_text_insert (GTK_TEXT (text), - (help_lines[i].font == 2) ? font_strong : - (help_lines[i].font == 1) ? font_emphasis : font, - NULL, NULL, - gettext (help_lines[i].text), -1); - - /* scroll back to the top */ - gtk_adjustment_set_value (GTK_ADJUSTMENT (vadj), 0.0); - - gdk_font_unref (font_strong); - if (font_emphasis != font) - gdk_font_unref (font_emphasis); - gdk_font_unref (font); - - gtk_widget_show (vsb); - gtk_widget_show (text); - gtk_widget_show (table); - gtk_widget_show (help_widget); -} - -static void -help_install_callback (GtkWidget *widget, - gpointer client_data) -{ - InstallCallback callback; - - callback = (InstallCallback) client_data; - gtk_widget_destroy (help_widget); - install_run (callback); -} - -static void -help_ignore_callback (GtkWidget *widget, - gpointer client_data) -{ - InstallCallback callback; - - callback = (InstallCallback) client_data; - gtk_widget_destroy (help_widget); - (* callback) (); -} - -static void -help_quit_callback (GtkWidget *widget, - gpointer client_data) -{ - gtk_widget_destroy (help_widget); - gtk_exit (0); -} - #ifdef G_OS_WIN32 char * @@ -405,84 +809,44 @@ quote_spaces (char *string) #endif -static void -install_run (InstallCallback callback) +static gboolean +install_run (void) { - GtkWidget *text; - GtkWidget *table; - GtkWidget *vsb; - GtkAdjustment *vadj; - GdkFont *font_strong; - GdkFont *font; FILE *pfp; - char buffer[2048]; + gchar buffer[2048]; struct stat stat_buf; - int err; - int executable = TRUE; - - install_widget = gimp_dialog_new (_("Installation Log"), "installation_log", - NULL, NULL, - GTK_WIN_POS_CENTER, - FALSE, TRUE, FALSE, - - _("Continue"), install_continue_callback, - callback, NULL, NULL, TRUE, FALSE, - _("Quit"), install_quit_callback, - callback, NULL, NULL, FALSE, TRUE, - - NULL); - - table = gtk_table_new (1, 2, FALSE); - gtk_container_set_border_width (GTK_CONTAINER (table), 2); - gtk_table_set_col_spacing (GTK_TABLE (table), 0, 2); - gtk_container_add (GTK_CONTAINER (GTK_DIALOG (install_widget)->vbox), table); - - vadj = GTK_ADJUSTMENT (gtk_adjustment_new (0.0, 0.0, 0.0, 0.0, 0.0, 0.0)); - vsb = gtk_vscrollbar_new (vadj); - text = gtk_text_new (NULL, vadj); - gtk_widget_set_usize (text, 384, 356); - - gtk_table_attach (GTK_TABLE (table), vsb, 1, 2, 0, 1, - GTK_FILL, GTK_EXPAND | GTK_SHRINK | GTK_FILL, 0, 0); - gtk_table_attach (GTK_TABLE (table), text, 0, 1, 0, 1, - GTK_EXPAND | GTK_SHRINK | GTK_FILL, - GTK_EXPAND | GTK_SHRINK | GTK_FILL, - 0, 0); - - /* this is a fontset, e.g. multiple comma-separated font definitions */ - font_strong = gdk_fontset_load ( _("-*-helvetica-bold-r-normal-*-*-120-*-*-*-*-*-*,*")); - - /* this is a fontset, e.g. multiple comma-separated font definitions */ - font = gdk_fontset_load ( _("-*-helvetica-medium-r-normal-*-*-120-*-*-*-*-*-*,*")); - - /* Realize the text widget before inserting text strings */ - gtk_widget_realize (text); - -#ifndef G_OS_WIN32 - gtk_text_insert (GTK_TEXT (text), font_strong, NULL, NULL, _("User Installation Log\n\n"), -1); -#endif + gint err; + gboolean executable = TRUE; /* Generate output */ - g_snprintf (buffer, sizeof(buffer), "%s" G_DIR_SEPARATOR_S USER_INSTALL, + g_snprintf (buffer, sizeof (buffer), "%s" G_DIR_SEPARATOR_S USER_INSTALL, gimp_data_directory ()); if ((err = stat (buffer, &stat_buf)) != 0) { - gtk_text_insert (GTK_TEXT (text), font, NULL, NULL, buffer, -1); - gtk_text_insert (GTK_TEXT (text), font, NULL, NULL, - _(" does not exist. Cannot install.\n"), -1); + gchar *str; + + str = g_strdup_printf ("%s\n%s", buffer, + _("does not exist. Cannot install.")); + add_label (GTK_BOX (log_page), FALSE, str); + g_free (str); + executable = FALSE; } #ifdef S_IXUSR else if (! (S_IXUSR & stat_buf.st_mode) || ! (S_IRUSR & stat_buf.st_mode)) { - gtk_text_insert (GTK_TEXT (text), font, NULL, NULL, buffer, -1); - gtk_text_insert (GTK_TEXT (text), font, NULL, NULL, - _(" has invalid permissions.\nCannot install."), -1); + gchar *str; + + str = g_strdup_printf ("%s\n%s", buffer, + _("has invalid permissions. Cannot install.")); + add_label (GTK_BOX (log_page), FALSE, str); + g_free (str); + executable = FALSE; } #endif - if (executable == TRUE) + if (executable) { #ifdef G_OS_WIN32 char *quoted_data_dir, *quoted_user_dir; @@ -510,16 +874,17 @@ install_run (InstallCallback callback) g_free (quoted_data_dir); g_free (quoted_user_dir); - gtk_text_insert (GTK_TEXT (text), font_strong, NULL, NULL, - _("Did you notice any error messages\n" - "in the console window? If not, installation\n" - "was successful! Otherwise, quit and investigate\n" - "the possible reason...\n"), -1); + if (executable) + add_label (GTK_BOX (log_page), FALSE, + _("Did you notice any error messages in the console window?\n" + "If not, installation was successful!\n" + "Otherwise, quit and investigate the possible reason...")); #else #ifndef __EMX__ - g_snprintf (buffer, sizeof(buffer), "%s" G_DIR_SEPARATOR_S USER_INSTALL " %s %s", - gimp_data_directory (), gimp_data_directory(), - gimp_directory ()); + g_snprintf (buffer, sizeof(buffer), "%s" G_DIR_SEPARATOR_S USER_INSTALL " %s %s %s", + gimp_data_directory (), + "2>&1", + gimp_data_directory(), gimp_directory ()); #else g_snprintf (buffer, sizeof(buffer), "cmd.exe /c %s" G_DIR_SEPARATOR_S USER_INSTALL " %s %s", gimp_data_directory (), gimp_data_directory(), @@ -538,47 +903,278 @@ install_run (InstallCallback callback) * we can't tell if the installation script failed --austin */ if ((pfp = popen (buffer, "r")) != NULL) { + GtkWidget *table; + GtkWidget *log_text; + GtkWidget *vsb; + GtkAdjustment *vadj; + + table = gtk_table_new (1, 2, FALSE); + gtk_table_set_col_spacing (GTK_TABLE (table), 0, 2); + gtk_box_pack_start (GTK_BOX (log_page), table, TRUE, TRUE, 0); + + gtk_widget_pop_style (); + + vadj = GTK_ADJUSTMENT (gtk_adjustment_new (0.0, 0.0, 0.0, 0.0, 0.0, 0.0)); + vsb = gtk_vscrollbar_new (vadj); + log_text = gtk_text_new (NULL, vadj); + + gtk_widget_push_style (page_style); + + gtk_table_attach (GTK_TABLE (table), vsb, 1, 2, 0, 1, + GTK_FILL, GTK_EXPAND | GTK_SHRINK | GTK_FILL, 0, 0); + gtk_table_attach (GTK_TABLE (table), log_text, 0, 1, 0, 1, + GTK_EXPAND | GTK_SHRINK | GTK_FILL, + GTK_EXPAND | GTK_SHRINK | GTK_FILL, + 0, 0); + + gtk_widget_show (vsb); + gtk_widget_show (log_text); + gtk_widget_show (table); + while (fgets (buffer, sizeof (buffer), pfp)) - gtk_text_insert (GTK_TEXT (text), font, NULL, NULL, buffer, -1); + gtk_text_insert (GTK_TEXT (log_text), NULL, NULL, NULL, buffer, -1); pclose (pfp); - gtk_text_insert (GTK_TEXT (text), font, NULL, NULL, - _("\nInstallation successful!\n"), -1); + add_label (GTK_BOX (log_page), FALSE, + _("Did you notice any error messages in the lines above?\n" + "If not, installation was successful!\n" + "Otherwise, quit and investigate the possible reason...")); } else executable = FALSE; #endif /* !G_OS_WIN32 */ } - if (executable == FALSE) - gtk_text_insert (GTK_TEXT (text), font, NULL, NULL, - _("\nInstallation failed. Contact system administrator.\n"), -1); + if (executable) + { + GtkWidget *sep; - gtk_widget_show (vsb); - gtk_widget_show (text); - gtk_widget_show (table); - gtk_widget_show (install_widget); + add_label (GTK_BOX (log_page), TRUE, + _("Click \"Continue\" to complete GIMP installation.")); + + sep = gtk_hseparator_new (); + gtk_box_pack_end (GTK_BOX (log_page), sep, FALSE, FALSE, 0); + gtk_widget_show (sep); + } + else + { + add_label (GTK_BOX (log_page), FALSE, + _("Installation failed. Contact system administrator.")); + } + + return executable; +} + +static GtkObject *tile_cache_adj = NULL; +static GtkWidget *swap_path_filesel = NULL; +static GtkWidget *xserver_toggle = NULL; +static GtkWidget *resolution_entry = NULL; + +static void +install_tuning (void) +{ + GtkWidget *hbox; + GtkWidget *sep; + GtkWidget *label; + GtkWidget *memsize; + + /* tile cache size */ + add_label (GTK_BOX (tuning_page), FALSE, + _("GIMP uses a limited amount of memory to store image data, the so-called\n" + "\"Tile Cache\". You should adjust it's size to fit into memory. Consider\n" + "the amount of memory used by other running processes.")); + + hbox = gtk_hbox_new (FALSE, 8); + gtk_box_pack_start (GTK_BOX (tuning_page), hbox, FALSE, FALSE, 0); + gtk_widget_show (hbox); + + tile_cache_adj = gtk_adjustment_new (tile_cache_size, + 0, (4069.0 * 1024 * 1024), 1.0, 1.0, 0.0); + gtk_widget_pop_style (); + memsize = gimp_mem_size_entry_new (GTK_ADJUSTMENT (tile_cache_adj)); + gtk_widget_push_style (page_style); + gtk_box_pack_end (GTK_BOX (hbox), memsize, FALSE, FALSE, 0); + gtk_widget_show (memsize); + + label = gtk_label_new (_("Tile Cache Size:")); + gtk_box_pack_end (GTK_BOX (hbox), label, FALSE, FALSE, 0); + gtk_widget_show (label); + + sep = gtk_hseparator_new (); + gtk_box_pack_start (GTK_BOX (tuning_page), sep, FALSE, FALSE, 2); + gtk_widget_show (sep); + + /* swap file location */ + add_label (GTK_BOX (tuning_page), FALSE, + _("All image and undo data which doesn't fit into the Tile Cache will be\n" + "written to a swap file. This file should be located on a local filesystem\n" + "with enough free space (several hundred MB). On a UNIX system, you\n" + "may want to use the system-wide temp-dir (\"/tmp\" or \"/var/tmp\").")); + + hbox = gtk_hbox_new (FALSE, 8); + gtk_box_pack_start (GTK_BOX (tuning_page), hbox, FALSE, FALSE, 0); + gtk_widget_show (hbox); + + gtk_widget_pop_style (); + swap_path_filesel = gimp_file_selection_new (_("Select Swap Dir"), swap_path, + TRUE, TRUE); + gtk_widget_push_style (page_style); + gtk_box_pack_end (GTK_BOX (hbox), swap_path_filesel, FALSE, FALSE, 0); + gtk_widget_show (swap_path_filesel); + + label = gtk_label_new (_("Swap Directory:")); + gtk_box_pack_end (GTK_BOX (hbox), label, FALSE, FALSE, 0); + gtk_widget_show (label); } static void -install_continue_callback (GtkWidget *widget, - gpointer client_data) +install_tuning_done (void) { - InstallCallback callback; - -#ifdef G_OS_WIN32 - FreeConsole (); -#endif - - callback = (InstallCallback) client_data; - gtk_widget_destroy (install_widget); - (* callback) (); } static void -install_quit_callback (GtkWidget *widget, - gpointer client_data) +install_resolution (void) { - gtk_widget_destroy (install_widget); - gtk_exit (0); + GtkWidget *hbox; + GtkWidget *sep; + gchar *pixels_per_unit; + gdouble xres, yres; + gchar *str; + + gdisplay_xserver_resolution (&xres, &yres); + + add_label (GTK_BOX (resolution_page), FALSE, + _("GIMP can obtain this information from your X-server.\n" + "However, most X-servers do not return useful values.")); + + hbox = gtk_hbox_new (FALSE, 0); + gtk_box_pack_start (GTK_BOX (resolution_page), hbox, FALSE, FALSE, 0); + gtk_widget_show (hbox); + + str = g_strdup_printf (_("Get Resolution from X-server (Currently %d x %d dpi)"), + ROUND (xres), ROUND (yres)); + + gtk_widget_pop_style (); + xserver_toggle = gtk_check_button_new_with_label (str); + gtk_widget_push_style (page_style); + + g_free (str); + + gtk_box_pack_end (GTK_BOX (hbox), xserver_toggle, FALSE, FALSE, 0); + gtk_widget_show (xserver_toggle); + + sep = gtk_hseparator_new (); + gtk_box_pack_start (GTK_BOX (resolution_page), sep, FALSE, FALSE, 2); + gtk_widget_show (sep); + + add_label (GTK_BOX (resolution_page), FALSE, + _("Alternatively, you can set the monitor resolution manually.")); + + hbox = gtk_hbox_new (FALSE, 0); + gtk_box_pack_start (GTK_BOX (resolution_page), hbox, FALSE, FALSE, 0); + gtk_widget_show (hbox); + + pixels_per_unit = g_strconcat (_("Pixels"), "/%s", NULL); + + gtk_widget_pop_style (); + resolution_entry = + gimp_coordinates_new (GIMP_UNIT_INCH, pixels_per_unit, + FALSE, FALSE, 75, + GIMP_SIZE_ENTRY_UPDATE_RESOLUTION, + abs (monitor_xres - monitor_yres) < GIMP_MIN_RESOLUTION, + FALSE, + _("Monitor Resolution X:"), + monitor_xres, + 1.0, + GIMP_MIN_RESOLUTION, + GIMP_MAX_RESOLUTION, + 0, 0, + _("Y:"), + monitor_yres, + 1.0, + GIMP_MIN_RESOLUTION, + GIMP_MAX_RESOLUTION, + 0, 0); + gtk_widget_push_style (page_style); + + g_free (pixels_per_unit); + + gtk_box_pack_end (GTK_BOX (hbox), resolution_entry, FALSE, FALSE, 0); + gtk_widget_show (resolution_entry); + + gtk_object_set_data (GTK_OBJECT (xserver_toggle), "inverse_sensitive", + resolution_entry); + gtk_signal_connect (GTK_OBJECT (xserver_toggle), "toggled", + GTK_SIGNAL_FUNC (gimp_toggle_button_sensitive_update), + NULL); + gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (xserver_toggle), + using_xserver_resolution); + + gtk_widget_pop_style (); +} + +static void +install_resolution_done (void) +{ + GList *update = NULL; + GList *remove = NULL; + + gint new_tile_cache_size; + gchar *new_swap_path; + gboolean new_using_xserver_resolution; + gdouble new_monitor_xres; + gdouble new_monitor_yres; + + new_tile_cache_size = GTK_ADJUSTMENT (tile_cache_adj)->value; + new_swap_path = + gimp_file_selection_get_filename (GIMP_FILE_SELECTION (swap_path_filesel)); + new_using_xserver_resolution = + gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (xserver_toggle)); + new_monitor_xres = + gimp_size_entry_get_refval (GIMP_SIZE_ENTRY (resolution_entry), 0); + new_monitor_yres = + gimp_size_entry_get_refval (GIMP_SIZE_ENTRY (resolution_entry), 1); + + if (tile_cache_size != new_tile_cache_size) + { + tile_cache_size = new_tile_cache_size; + update = g_list_append (update, "tile-cache-size"); + } + if (strcmp (swap_path, new_swap_path)) + { + g_free (swap_path); + swap_path = new_swap_path; + update = g_list_append (update, "swap-path"); + } + if (using_xserver_resolution != new_using_xserver_resolution || + ABS (monitor_xres - new_monitor_xres) > GIMP_MIN_RESOLUTION) + { + monitor_xres = new_monitor_xres; + update = g_list_append (update, "monitor-xresolution"); + } + if (using_xserver_resolution != new_using_xserver_resolution || + ABS (monitor_yres - new_monitor_yres) > GIMP_MIN_RESOLUTION) + { + monitor_yres = new_monitor_yres; + update = g_list_append (update, "monitor-yresolution"); + } + + using_xserver_resolution = new_using_xserver_resolution; + + if (using_xserver_resolution) + { + /* special value of 0 for either x or y res in the gimprc file + * means use the xserver's current resolution */ + monitor_xres = 0.0; + monitor_yres = 0.0; + } + + save_gimprc (&update, &remove); + + if (using_xserver_resolution) + gdisplay_xserver_resolution (&monitor_xres, &monitor_yres); + + g_list_free (update); + g_list_free (remove); + } diff --git a/app/widgets/gimpwidgets-utils.h b/app/widgets/gimpwidgets-utils.h index caf4801f41..d59dd9ed8b 100644 --- a/app/widgets/gimpwidgets-utils.h +++ b/app/widgets/gimpwidgets-utils.h @@ -25,9 +25,13 @@ #include "gimphelp.h" +#include "libgimp/gimpchainbutton.h" #include "libgimp/gimpdialog.h" +#include "libgimp/gimpfileselection.h" #include "libgimp/gimppixmap.h" +#include "libgimp/gimppatheditor.h" #include "libgimp/gimpquerybox.h" +#include "libgimp/gimpsizeentry.h" #include "libgimp/gimpwidgets.h" /* a simple message box */ diff --git a/data/misc/user_install b/data/misc/user_install index 0943e4a305..f05e156cb1 100755 --- a/data/misc/user_install +++ b/data/misc/user_install @@ -3,8 +3,8 @@ # Script to perform the default installation steps for the # specified user home directory. # -# 1) Create ~/.gimp if it doesn't exist -# 2) Copy system gimprc file to ~/.gimp +# 1) Create ~/.gimp-1.2 if it doesn't exist +# 2) Copy system gimprc file to ~/.gimp-1.2 # 3) Create brushes, gradients, palettes, patterns, plug-ins subdirs # 4) Create the tmp subdirectory for disk-swapping undo buffers # 5) Copy the palette files in system palette directory @@ -30,6 +30,8 @@ echo "mkdir $2/gradients" mkdir $2/gradients echo "mkdir $2/palettes" mkdir $2/palettes +echo "cp $1/palettes/* $2/palettes" +cp $1/palettes/* $2/palettes echo "mkdir $2/patterns" mkdir $2/patterns echo "mkdir $2/plug-ins" @@ -40,16 +42,16 @@ echo "mkdir $2/scripts" mkdir $2/scripts echo "mkdir $2/tmp" mkdir $2/tmp -echo "mkdir $2/levels" -mkdir $2/levels echo "mkdir $2/curves" mkdir $2/curves +echo "mkdir $2/levels" +mkdir $2/levels +echo "mkdir $2/fractalexplorer" +mkdir $2/fractalexplorer echo "mkdir $2/gfig" mkdir $2/gfig echo "mkdir $2/gflare" mkdir $2/gflare -echo "mkdir $2/fractalexplorer" -mkdir $2/fractalexplorer echo "mkdir $2/gimpressionist" mkdir $2/gimpressionist echo "mkdir $2/gimpressionist/Brushes" @@ -58,8 +60,3 @@ echo "mkdir $2/gimpressionist/Paper" mkdir $2/gimpressionist/Paper echo "mkdir $2/gimpressionist/Presets" mkdir $2/gimpressionist/Presets -echo "cp $1/palettes/* $2/palettes" -cp $1/palettes/* $2/palettes -echo "NOTICE: GIMP uses an additional gtkrc file so you can" -echo "configure it to look differently than other GTK apps." -echo "You may wish to edit GIMP's gtkrc (in $2/gtkrc)." diff --git a/devel-docs/ChangeLog b/devel-docs/ChangeLog index 78620871c8..915e5d0e1a 100644 --- a/devel-docs/ChangeLog +++ b/devel-docs/ChangeLog @@ -1,3 +1,9 @@ +2000-03-14 Sven Neumann + + * libgimp/libgimp-decl.txt + * libgimp/libgimp-sections.txt + * libgimp/tmpl/gimpwidgets.sgml: updates + Sun Mar 12 01:08:13 CET 2000 Sven Neumann * libgimp/libgimp-decl.txt diff --git a/devel-docs/libgimp/libgimp-decl.txt b/devel-docs/libgimp/libgimp-decl.txt index 6970ac5b33..0587ceeb56 100644 --- a/devel-docs/libgimp/libgimp-decl.txt +++ b/devel-docs/libgimp/libgimp-decl.txt @@ -3903,6 +3903,30 @@ gint *seed,gint *use_time,gint time_t GtkWidget * GimpUnit unit,gchar *unit_format,gboolean menu_show_pixels,gboolean menu_show_percent,gint spinbutton_usize,GimpSizeEntryUpdatePolicy update_policy,gboolean chainbutton_active,gboolean chain_constrains_ratio,gchar *xlabel,gdouble x,gdouble xres,gdouble lower_boundary_x,gdouble upper_boundary_x,gdouble xsize_0,gdouble xsize_100,gchar *ylabel,gdouble y,gdouble yres,gdouble lower_boundary_y,gdouble upper_boundary_y,gdouble ysize_0,gdouble ysize_100 + +GIMP_MEM_SIZE_ENTRY_SPINBUTTON +#define GIMP_MEM_SIZE_ENTRY_SPINBUTTON(memsize) \ + GTK_SPIN_BUTTON (gtk_object_get_data (GTK_OBJECT (memsize), \ + "spinbutton")) + + +GIMP_MEM_SIZE_ENTRY_SPINBUTTON_ADJ +#define GIMP_MEM_SIZE_ENTRY_SPINBUTTON_ADJ(memsize) \ + gtk_spin_button_get_adjustment \ + (GTK_SPIN_BUTTON (gtk_object_get_data (GTK_OBJECT (memsize), \ + "spinbutton"))) + + +GIMP_MEM_SIZE_ENTRY_OPTIONMENU +#define GIMP_MEM_SIZE_ENTRY_OPTIONMENU(memsize) \ + GTK_OPTION_MENU (gtk_object_get_data (GTK_OBJECT (memsize), \ + "optionmenu")) + + +gimp_mem_size_entry_new +GtkWidget * +GtkAdjustment *adjustment + gimp_pixmap_button_new GtkWidget * diff --git a/devel-docs/libgimp/tmpl/gimpwidgets.sgml b/devel-docs/libgimp/tmpl/gimpwidgets.sgml index 74c9274358..eca1ad316c 100644 --- a/devel-docs/libgimp/tmpl/gimpwidgets.sgml +++ b/devel-docs/libgimp/tmpl/gimpwidgets.sgml @@ -358,6 +358,39 @@ Returns the #GimpChainButton which is attached to the #GimpSizeEntry. @sizeentry: The #GimpSizeEntry returned by gimp_coordinates_new(). + + + + + +@adjustment: +@Returns: + + + + + + + +@memsize: + + + + + + + +@memsize: + + + + + + + +@memsize: + + diff --git a/etc/gimprc.in b/etc/gimprc.in index 9e143cc362..1ca7e83065 100644 --- a/etc/gimprc.in +++ b/etc/gimprc.in @@ -299,17 +299,21 @@ # the help pages using the "netscape-remote" command. (help-browser gimp) -# Gfig search path -# This path will be searched for Gfig figures when you use the Gfig plug-in. -(gfig-path "${gimp_dir}/gfig:${gimp_data_dir}/gfig") - # Fractalexplorer path # This path will be searched for fractals when you use the Fractalexplorer # plug-in. (fractalexplorer-path "${gimp_dir}/fractalexplorer:${gimp_data_dir}/fractalexplorer") +# Gfig search path +# This path will be searched for Gfig figures when you use the Gfig plug-in. +(gfig-path "${gimp_dir}/gfig:${gimp_data_dir}/gfig") + # GFlare path # This path will be searched for gflares when you use the GFlare plug-in. (gflare-path "${gimp_dir}/gflare:${gimp_data_dir}/gflare") +# Gimpressionist path +# This path will be searched for data when you use the Gimpressionist plug-in. +(gimpressionist-path "${gimp_dir}/gimpressionist:${gimp_data_dir}/gimpressionist") + # [end of file] diff --git a/gimprc.in b/gimprc.in index 9e143cc362..1ca7e83065 100644 --- a/gimprc.in +++ b/gimprc.in @@ -299,17 +299,21 @@ # the help pages using the "netscape-remote" command. (help-browser gimp) -# Gfig search path -# This path will be searched for Gfig figures when you use the Gfig plug-in. -(gfig-path "${gimp_dir}/gfig:${gimp_data_dir}/gfig") - # Fractalexplorer path # This path will be searched for fractals when you use the Fractalexplorer # plug-in. (fractalexplorer-path "${gimp_dir}/fractalexplorer:${gimp_data_dir}/fractalexplorer") +# Gfig search path +# This path will be searched for Gfig figures when you use the Gfig plug-in. +(gfig-path "${gimp_dir}/gfig:${gimp_data_dir}/gfig") + # GFlare path # This path will be searched for gflares when you use the GFlare plug-in. (gflare-path "${gimp_dir}/gflare:${gimp_data_dir}/gflare") +# Gimpressionist path +# This path will be searched for data when you use the Gimpressionist plug-in. +(gimpressionist-path "${gimp_dir}/gimpressionist:${gimp_data_dir}/gimpressionist") + # [end of file] diff --git a/libgimp/gimpchainbutton.c b/libgimp/gimpchainbutton.c index 308da8f64f..d68171d9e0 100644 --- a/libgimp/gimpchainbutton.c +++ b/libgimp/gimpchainbutton.c @@ -317,13 +317,11 @@ gimp_chain_button_draw_lines (GtkWidget *widget, g_return_if_fail (gcb != NULL); g_return_if_fail (GIMP_IS_CHAIN_BUTTON (gcb)); - if (event); /* avoid unused variable compiler warning */ - gdk_window_clear_area (widget->window, 0, 0, widget->allocation.width, widget->allocation.height); - + points[0].x = widget->allocation.width / 2; points[0].y = widget->allocation.height / 2; diff --git a/libgimp/gimpwidgets.c b/libgimp/gimpwidgets.c index 2dc2387e54..2ad769722b 100644 --- a/libgimp/gimpwidgets.c +++ b/libgimp/gimpwidgets.c @@ -889,7 +889,9 @@ gimp_coordinates_new (GimpUnit unit, gtk_table_attach_defaults (GTK_TABLE (sizeentry), spinbutton, 1, 2, 0, 1); gtk_widget_show (spinbutton); - gimp_size_entry_set_unit (GIMP_SIZE_ENTRY (sizeentry), GIMP_UNIT_PIXEL); + gimp_size_entry_set_unit (GIMP_SIZE_ENTRY (sizeentry), + update_policy == GIMP_SIZE_ENTRY_UPDATE_RESOLUTION ? + GIMP_UNIT_INCH : GIMP_UNIT_PIXEL); gimp_size_entry_set_resolution (GIMP_SIZE_ENTRY (sizeentry), 0, xres, TRUE); gimp_size_entry_set_resolution (GIMP_SIZE_ENTRY (sizeentry), 1, yres, TRUE); @@ -940,6 +942,116 @@ gimp_coordinates_new (GimpUnit unit, return sizeentry; } +typedef struct +{ + GtkAdjustment *adjustment; + GtkAdjustment *divided_adj; + gint mem_size_unit; +} GimpMemSizeEntryData; + +static void +gimp_mem_size_entry_callback (GtkAdjustment *adj, + gpointer data) +{ + GimpMemSizeEntryData *gmsed; + gint new_value; + + gmsed = (GimpMemSizeEntryData *)data; + new_value = adj->value * gmsed->mem_size_unit; + + gtk_adjustment_set_value (gmsed->adjustment, new_value); +} + +static void +gimp_mem_size_unit_callback (GtkWidget *widget, + gpointer data) +{ + GimpMemSizeEntryData *gmsed; + gint divided_mem_size; + gint new_unit; + + gmsed = (GimpMemSizeEntryData *)data; + + new_unit = (gint) gtk_object_get_user_data (GTK_OBJECT (widget)); + + if (new_unit && new_unit != gmsed->mem_size_unit) + { + divided_mem_size = gmsed->adjustment->value / new_unit; + gmsed->mem_size_unit = new_unit; + + gtk_adjustment_set_value (GTK_ADJUSTMENT (gmsed->divided_adj), divided_mem_size); + } +} + +/** + * gimp_mem_size_entry_new: + * @adjustment: The adjustment containing the memsize and it's limits. + * + * Returns: A #GtkHBox with a #GtkSpinButton and a #GtkOptionMenu. + */ +GtkWidget * +gimp_mem_size_entry_new (GtkAdjustment *adjustment) +{ + GtkWidget *hbox; + GtkObject *divided_adj; + GtkWidget *spinbutton; + GtkWidget *optionmenu; + + GimpMemSizeEntryData *gmsed; + gint mem_size_unit = 1; + gint divided_mem_size; + gint i; + + gmsed = g_new (GimpMemSizeEntryData, 1); + + for (i = 0; i < 3; i++) + { + if ( (gint)adjustment->value % (mem_size_unit * 1024) != 0 ) + break; + mem_size_unit *= 1024; + } + divided_mem_size = adjustment->value / mem_size_unit; + + hbox = gtk_hbox_new (FALSE, 2); + spinbutton = + gimp_spin_button_new (÷d_adj, divided_mem_size, + 0.0, (4069.0 * 1024 * 1024), 1.0, 16.0, 0.0, + 1.0, 0.0); + gtk_signal_connect (GTK_OBJECT (divided_adj), "value_changed", + GTK_SIGNAL_FUNC (gimp_mem_size_entry_callback), + gmsed); + gtk_box_pack_start (GTK_BOX (hbox), spinbutton, FALSE, FALSE, 0); + gtk_widget_show (spinbutton); + + optionmenu = + gimp_option_menu_new2 (FALSE, gimp_mem_size_unit_callback, + gmsed, (gpointer) mem_size_unit, + + _("Bytes"), (gpointer) 1, NULL, + _("KiloBytes"), (gpointer) 1024, NULL, + _("MegaBytes"), (gpointer) (1024 * 1024), NULL, + + NULL); + gtk_box_pack_start (GTK_BOX (hbox), optionmenu, FALSE, FALSE, 0); + gtk_widget_show (optionmenu); + + gtk_signal_connect_object (GTK_OBJECT (hbox), "destroy", + GTK_SIGNAL_FUNC (gtk_object_unref), + GTK_OBJECT (adjustment)); + gtk_signal_connect_object (GTK_OBJECT (hbox), "destroy", + GTK_SIGNAL_FUNC (g_free), + (GtkObject *) gmsed); + + gmsed->adjustment = adjustment; + gmsed->divided_adj = GTK_ADJUSTMENT (divided_adj); + gmsed->mem_size_unit = mem_size_unit; + + gtk_object_set_data (GTK_OBJECT (hbox), "spinbutton", spinbutton); + gtk_object_set_data (GTK_OBJECT (hbox), "optionmenu", optionmenu); + + return hbox; +} + /** * gimp_pixmap_button_new: * @xpm_data: The XPM data which will be passed to gimp_pixmap_new(). diff --git a/libgimp/gimpwidgets.h b/libgimp/gimpwidgets.h index 561d8b8737..eb0e292ac5 100644 --- a/libgimp/gimpwidgets.h +++ b/libgimp/gimpwidgets.h @@ -183,8 +183,22 @@ GtkWidget * gimp_coordinates_new (GimpUnit unit, gdouble ysize_0, /* % */ gdouble ysize_100 /* % */); -GtkWidget * gimp_pixmap_button_new (gchar **xpm_data, - gchar *text); +#define GIMP_MEM_SIZE_ENTRY_SPINBUTTON(memsize) \ + GTK_SPIN_BUTTON (gtk_object_get_data (GTK_OBJECT (memsize), \ + "spinbutton")) +#define GIMP_MEM_SIZE_ENTRY_SPINBUTTON_ADJ(memsize) \ + gtk_spin_button_get_adjustment \ + (GTK_SPIN_BUTTON (gtk_object_get_data (GTK_OBJECT (memsize), \ + "spinbutton"))) +#define GIMP_MEM_SIZE_ENTRY_OPTIONMENU(memsize) \ + GTK_OPTION_MENU (gtk_object_get_data (GTK_OBJECT (memsize), \ + "optionmenu")) + +GtkWidget * gimp_mem_size_entry_new (GtkAdjustment *adjustment); + + +GtkWidget * gimp_pixmap_button_new (gchar **xpm_data, + gchar *text); /* * Standard Callbacks diff --git a/libgimpwidgets/gimpchainbutton.c b/libgimpwidgets/gimpchainbutton.c index 308da8f64f..d68171d9e0 100644 --- a/libgimpwidgets/gimpchainbutton.c +++ b/libgimpwidgets/gimpchainbutton.c @@ -317,13 +317,11 @@ gimp_chain_button_draw_lines (GtkWidget *widget, g_return_if_fail (gcb != NULL); g_return_if_fail (GIMP_IS_CHAIN_BUTTON (gcb)); - if (event); /* avoid unused variable compiler warning */ - gdk_window_clear_area (widget->window, 0, 0, widget->allocation.width, widget->allocation.height); - + points[0].x = widget->allocation.width / 2; points[0].y = widget->allocation.height / 2; diff --git a/libgimpwidgets/gimpwidgets.c b/libgimpwidgets/gimpwidgets.c index 2dc2387e54..2ad769722b 100644 --- a/libgimpwidgets/gimpwidgets.c +++ b/libgimpwidgets/gimpwidgets.c @@ -889,7 +889,9 @@ gimp_coordinates_new (GimpUnit unit, gtk_table_attach_defaults (GTK_TABLE (sizeentry), spinbutton, 1, 2, 0, 1); gtk_widget_show (spinbutton); - gimp_size_entry_set_unit (GIMP_SIZE_ENTRY (sizeentry), GIMP_UNIT_PIXEL); + gimp_size_entry_set_unit (GIMP_SIZE_ENTRY (sizeentry), + update_policy == GIMP_SIZE_ENTRY_UPDATE_RESOLUTION ? + GIMP_UNIT_INCH : GIMP_UNIT_PIXEL); gimp_size_entry_set_resolution (GIMP_SIZE_ENTRY (sizeentry), 0, xres, TRUE); gimp_size_entry_set_resolution (GIMP_SIZE_ENTRY (sizeentry), 1, yres, TRUE); @@ -940,6 +942,116 @@ gimp_coordinates_new (GimpUnit unit, return sizeentry; } +typedef struct +{ + GtkAdjustment *adjustment; + GtkAdjustment *divided_adj; + gint mem_size_unit; +} GimpMemSizeEntryData; + +static void +gimp_mem_size_entry_callback (GtkAdjustment *adj, + gpointer data) +{ + GimpMemSizeEntryData *gmsed; + gint new_value; + + gmsed = (GimpMemSizeEntryData *)data; + new_value = adj->value * gmsed->mem_size_unit; + + gtk_adjustment_set_value (gmsed->adjustment, new_value); +} + +static void +gimp_mem_size_unit_callback (GtkWidget *widget, + gpointer data) +{ + GimpMemSizeEntryData *gmsed; + gint divided_mem_size; + gint new_unit; + + gmsed = (GimpMemSizeEntryData *)data; + + new_unit = (gint) gtk_object_get_user_data (GTK_OBJECT (widget)); + + if (new_unit && new_unit != gmsed->mem_size_unit) + { + divided_mem_size = gmsed->adjustment->value / new_unit; + gmsed->mem_size_unit = new_unit; + + gtk_adjustment_set_value (GTK_ADJUSTMENT (gmsed->divided_adj), divided_mem_size); + } +} + +/** + * gimp_mem_size_entry_new: + * @adjustment: The adjustment containing the memsize and it's limits. + * + * Returns: A #GtkHBox with a #GtkSpinButton and a #GtkOptionMenu. + */ +GtkWidget * +gimp_mem_size_entry_new (GtkAdjustment *adjustment) +{ + GtkWidget *hbox; + GtkObject *divided_adj; + GtkWidget *spinbutton; + GtkWidget *optionmenu; + + GimpMemSizeEntryData *gmsed; + gint mem_size_unit = 1; + gint divided_mem_size; + gint i; + + gmsed = g_new (GimpMemSizeEntryData, 1); + + for (i = 0; i < 3; i++) + { + if ( (gint)adjustment->value % (mem_size_unit * 1024) != 0 ) + break; + mem_size_unit *= 1024; + } + divided_mem_size = adjustment->value / mem_size_unit; + + hbox = gtk_hbox_new (FALSE, 2); + spinbutton = + gimp_spin_button_new (÷d_adj, divided_mem_size, + 0.0, (4069.0 * 1024 * 1024), 1.0, 16.0, 0.0, + 1.0, 0.0); + gtk_signal_connect (GTK_OBJECT (divided_adj), "value_changed", + GTK_SIGNAL_FUNC (gimp_mem_size_entry_callback), + gmsed); + gtk_box_pack_start (GTK_BOX (hbox), spinbutton, FALSE, FALSE, 0); + gtk_widget_show (spinbutton); + + optionmenu = + gimp_option_menu_new2 (FALSE, gimp_mem_size_unit_callback, + gmsed, (gpointer) mem_size_unit, + + _("Bytes"), (gpointer) 1, NULL, + _("KiloBytes"), (gpointer) 1024, NULL, + _("MegaBytes"), (gpointer) (1024 * 1024), NULL, + + NULL); + gtk_box_pack_start (GTK_BOX (hbox), optionmenu, FALSE, FALSE, 0); + gtk_widget_show (optionmenu); + + gtk_signal_connect_object (GTK_OBJECT (hbox), "destroy", + GTK_SIGNAL_FUNC (gtk_object_unref), + GTK_OBJECT (adjustment)); + gtk_signal_connect_object (GTK_OBJECT (hbox), "destroy", + GTK_SIGNAL_FUNC (g_free), + (GtkObject *) gmsed); + + gmsed->adjustment = adjustment; + gmsed->divided_adj = GTK_ADJUSTMENT (divided_adj); + gmsed->mem_size_unit = mem_size_unit; + + gtk_object_set_data (GTK_OBJECT (hbox), "spinbutton", spinbutton); + gtk_object_set_data (GTK_OBJECT (hbox), "optionmenu", optionmenu); + + return hbox; +} + /** * gimp_pixmap_button_new: * @xpm_data: The XPM data which will be passed to gimp_pixmap_new(). diff --git a/libgimpwidgets/gimpwidgets.h b/libgimpwidgets/gimpwidgets.h index 561d8b8737..eb0e292ac5 100644 --- a/libgimpwidgets/gimpwidgets.h +++ b/libgimpwidgets/gimpwidgets.h @@ -183,8 +183,22 @@ GtkWidget * gimp_coordinates_new (GimpUnit unit, gdouble ysize_0, /* % */ gdouble ysize_100 /* % */); -GtkWidget * gimp_pixmap_button_new (gchar **xpm_data, - gchar *text); +#define GIMP_MEM_SIZE_ENTRY_SPINBUTTON(memsize) \ + GTK_SPIN_BUTTON (gtk_object_get_data (GTK_OBJECT (memsize), \ + "spinbutton")) +#define GIMP_MEM_SIZE_ENTRY_SPINBUTTON_ADJ(memsize) \ + gtk_spin_button_get_adjustment \ + (GTK_SPIN_BUTTON (gtk_object_get_data (GTK_OBJECT (memsize), \ + "spinbutton"))) +#define GIMP_MEM_SIZE_ENTRY_OPTIONMENU(memsize) \ + GTK_OPTION_MENU (gtk_object_get_data (GTK_OBJECT (memsize), \ + "optionmenu")) + +GtkWidget * gimp_mem_size_entry_new (GtkAdjustment *adjustment); + + +GtkWidget * gimp_pixmap_button_new (gchar **xpm_data, + gchar *text); /* * Standard Callbacks diff --git a/pixmaps/folder.xpm b/pixmaps/folder.xpm new file mode 100644 index 0000000000..cb8069294a --- /dev/null +++ b/pixmaps/folder.xpm @@ -0,0 +1,53 @@ +/* XPM */ +static char * folder_xpm[] = { +"16 16 34 1", +" c None", +". c #000000", +"+ c #B6BB9A", +"@ c #9A9D82", +"# c #9DA285", +"$ c #858871", +"% c #A9AC97", +"& c #90937A", +"* c #A1A588", +"= c #8D9178", +"- c #81846F", +"; c #696B5A", +"> c #595B4C", +", c #313229", +"' c #868972", +") c #DBDEC5", +"! c #DFE2CD", +"~ c #CED3B2", +"{ c #505144", +"] c #606152", +"^ c #E3E5D4", +"/ c #C7CDA4", +"( c #A5AA85", +"_ c #C3C99E", +": c #55574A", +"< c #D6D8C9", +"[ c #787C61", +"} c #353535", +"| c #A0A487", +"1 c #4D4F44", +"2 c #D7DBC0", +"3 c #686B54", +"4 c #B7BAA3", +"5 c #8A8F70", +" ", +" ", +" .... ", +" .+@+@. ", +" .#$#$#$...... ", +" .%&*&*&*=-&-;.", +" ...........>,'.", +".)!~!~!~!~!~.{].", +".^/(_(_(_(_(.{:.", +" .<_(_(_(_(_[.:.", +" }!|_(_(_(_(_.1.", +" }2(_(_(_(_(3..", +" .4(5(5(5(5(5..", +" ............ ", +" ", +" "}; diff --git a/pixmaps/wilber.xpm b/pixmaps/wilber.xpm index 6ed63f7675..bea66901b2 100644 --- a/pixmaps/wilber.xpm +++ b/pixmaps/wilber.xpm @@ -1,6 +1,6 @@ /* XPM */ static char * wilber_xpm[] = { -"62 62 191 2", +"62 62 218 2", " c None", ". c #797561", "+ c #797161", @@ -25,173 +25,200 @@ static char * wilber_xpm[] = { "/ c #696951", "( c #696959", "_ c #696551", -": c #E7DFDF", -"< c #AEA68E", -"[ c #9E9279", -"} c #867D69", -"| c #696151", -"1 c #9E9679", -"2 c #968A71", -"3 c #C7BEB6", -"4 c #696149", -"5 c #616151", -"6 c #CFC7BE", -"7 c #8E8269", -"8 c #797961", -"9 c #BEBEBE", -"0 c #615D49", -"a c #615949", -"b c #968E71", -"c c #867561", -"d c #796D59", -"e c #9E9286", -"f c #A69E96", -"g c #717161", -"h c #DFDBDF", -"i c #A69679", -"j c #9E8E71", -"k c #8E8671", -"l c #868271", -"m c #595541", -"n c #8E8679", -"o c #CFCBC7", -"p c #A69A79", -"q c #AEAEAE", -"r c #968E86", -"s c #595941", -"t c #AEAAAE", -"u c #D7D3D7", -"v c #B6AEA6", -"w c #595949", -"x c #595141", -"y c #C7C3BE", -"z c #867961", -"A c #AEA6A6", -"B c #9E9A8E", -"C c #515549", -"D c #8E8A86", -"E c #C7C7C7", -"F c #AEAAA6", -"G c #968671", -"H c #8E7D69", -"I c #A6A296", -"J c #9E9A96", -"K c #9E968E", -"L c #DFDFDF", -"M c #515141", -"N c #969696", -"O c #EFEBEF", -"P c #EFEFEF", -"Q c #F7F3F7", -"R c #FFFFFF", -"S c #F7EFEF", -"T c #CFCBBE", -"U c #9E9271", -"V c #AEA696", -"W c #DFD7D7", -"X c #F7F3EF", -"Y c #D7D7D7", -"Z c #AEA69E", -"` c #867D61", -" . c #696961", -".. c #F7F7F7", -"+. c #E7E3DF", -"@. c #FFFBFF", -"#. c #D7CFC7", -"$. c #717159", -"%. c #514D41", -"&. c #514D38", -"*. c #514938", -"=. c #9E9E9E", -"-. c #C7C3C7", -";. c #CFCFCF", -">. c #FFF7F7", -",. c #494538", -"'. c #494938", -"). c #8E8A8E", -"!. c #B6B6B6", -"~. c #616561", -"{. c #494D49", -"]. c #595D59", -"^. c #868286", -"/. c #B6B2B6", -"(. c #282C28", -"_. c #B6B2AE", -":. c #BEBAB6", -"<. c #E7E7E7", -"[. c #EFEBE7", -"}. c #414130", -"|. c #494130", -"1. c #797979", -"2. c #A6A2A6", -"3. c #515151", -"4. c #414541", -"5. c #383838", -"6. c #282828", -"7. c #202020", -"8. c #303030", -"9. c #000000", -"0. c #9E9A9E", -"a. c #696969", -"b. c #202420", -"c. c #CFCBCF", -"d. c #413C30", -"e. c #413828", -"f. c #383C28", -"g. c #717171", -"h. c #494949", -"i. c #616161", -"j. c #868686", -"k. c #414141", -"l. c #181818", -"m. c #000400", -"n. c #101010", -"o. c #080808", -"p. c #383828", -"q. c #383C30", -"r. c #696D69", -"s. c #797D79", -"t. c #969296", -"u. c #595959", -"v. c #383830", -"w. c #494941", -"x. c #080C08", -"y. c #181C18", -"z. c #383C38", -"A. c #515551", -"B. c #D7D3CF", -"C. c #101410", -"D. c #383428", -"E. c #303430", -"F. c #AEAA9E", -"G. c #8E8E8E", -"H. c #A6A6A6", -"I. c #303028", -"J. c #616159", -"K. c #383430", -"L. c #717571", -"M. c #302C28", -"N. c #494138", -"O. c #413830", -"P. c #717169", -"Q. c #202018", -"R. c #282820", -"S. c #515541", -"T. c #181810", -"U. c #303020", -"V. c #201C18", -"W. c #413C38", -"X. c #595951", -"Y. c #282420", -"Z. c #414538", -"`. c #181410", -" + c #100C08", -".+ c #101008", -"++ c #080800", -"@+ c #080400", -"#+ c #BEBABE", -"$+ c #A6A29E", -"%+ c #494541", +": c #AEA68E", +"< c #9E9279", +"[ c #867D69", +"} c #696151", +"| c #9E9679", +"1 c #968A71", +"2 c #696149", +"3 c #616151", +"4 c #CFC7BE", +"5 c #8E8269", +"6 c #797961", +"7 c #BEBEBE", +"8 c #615D49", +"9 c #615949", +"0 c #968E71", +"a c #867561", +"b c #796D59", +"c c #9E9286", +"d c #A69E96", +"e c #717161", +"f c #A69679", +"g c #9E8E71", +"h c #8E8671", +"i c #868271", +"j c #595541", +"k c #8E8679", +"l c #CFCBC7", +"m c #A69A79", +"n c #AEAEAE", +"o c #968E86", +"p c #595941", +"q c #AEAAAE", +"r c #B6AEA6", +"s c #595949", +"t c #595141", +"u c #C7C3BE", +"v c #867961", +"w c #AEA6A6", +"x c #9E9A8E", +"y c #515549", +"z c #8E8A86", +"A c #C7C7C7", +"B c #AEAAA6", +"C c #968671", +"D c #8E7D69", +"E c #A6A296", +"F c #9E9A96", +"G c #9E968E", +"H c #DFDFDF", +"I c #515141", +"J c #969696", +"K c #EFEFEF", +"L c #F7F3F7", +"M c #FFFFFF", +"N c #F7EFEF", +"O c #CFCBBE", +"P c #9E9271", +"Q c #AEA696", +"R c #DFD7D7", +"S c #F7F3EF", +"T c #D7D7D7", +"U c #AEA69E", +"V c #867D61", +"W c #696961", +"X c #F7F7F7", +"Y c #E7E3DF", +"Z c #FFFBFF", +"` c #D7CFC7", +" . c #717159", +".. c #514D41", +"+. c #514D38", +"@. c #514938", +"#. c #9E9E9E", +"$. c #EFEBEF", +"%. c #C7C3C7", +"&. c #CFCFCF", +"*. c #FFF7F7", +"=. c #494538", +"-. c #494938", +";. c #8E8A8E", +">. c #B6B6B6", +",. c #616561", +"'. c #494D49", +"). c #595D59", +"!. c #868286", +"~. c #B6B2B6", +"{. c #282C28", +"]. c #B6B2AE", +"^. c #BEBAB6", +"/. c #E7E7E7", +"(. c #EFEBE7", +"_. c #414130", +":. c #494130", +"<. c #797979", +"[. c #A6A2A6", +"}. c #515151", +"|. c #414541", +"1. c #383838", +"2. c #282828", +"3. c #202020", +"4. c #303030", +"5. c #000000", +"6. c #9E9A9E", +"7. c #696969", +"8. c #202420", +"9. c #CFCBCF", +"0. c #C7BEB6", +"a. c #413C30", +"b. c #413828", +"c. c #383C28", +"d. c #717171", +"e. c #494949", +"f. c #616161", +"g. c #868686", +"h. c #414141", +"i. c #181818", +"j. c #000400", +"k. c #101010", +"l. c #080808", +"m. c #DFDBDF", +"n. c #383828", +"o. c #383C30", +"p. c #696D69", +"q. c #969296", +"r. c #595959", +"s. c #383830", +"t. c #494941", +"u. c #080C08", +"v. c #181C18", +"w. c #383C38", +"x. c #515551", +"y. c #D7D3D7", +"z. c #D7D3CF", +"A. c #101410", +"B. c #383428", +"C. c #3E3C30", +"D. c #303430", +"E. c #AEAA9E", +"F. c #8E8E8E", +"G. c #A6A6A6", +"H. c #303028", +"I. c #616159", +"J. c #383430", +"K. c #313029", +"L. c #302C28", +"M. c #494138", +"N. c #3F382E", +"O. c #3D392C", +"P. c #312F25", +"Q. c #797D79", +"R. c #3B382B", +"S. c #303129", +"T. c #717169", +"U. c #202018", +"V. c #282820", +"W. c #515541", +"X. c #303020", +"Y. c #201C18", +"Z. c #413C38", +"`. c #595951", +" + c #413830", +".+ c #282420", +"++ c #414538", +"@+ c #717571", +"#+ c #383829", +"$+ c #383528", +"%+ c #343228", +"&+ c #181410", +"*+ c #181810", +"=+ c #100C08", +"-+ c #101008", +";+ c #333025", +">+ c #080800", +",+ c #080400", +"'+ c #51503E", +")+ c #1E221E", +"!+ c #24211C", +"~+ c #484438", +"{+ c #4F4B3F", +"]+ c #56564D", +"^+ c #5C5B4E", +"/+ c #5E5D4F", +"(+ c #45413A", +"_+ c #383431", +":+ c #504F3D", +"<+ c #262A26", +"[+ c #242220", +"}+ c #2C2C25", +"|+ c #333425", +"1+ c #3B372F", +"2+ c #444035", +"3+ c #3F3D35", +"4+ c #434239", +"5+ c #45443A", " ", " ", " ", @@ -207,46 +234,46 @@ static char * wilber_xpm[] = { " = - ; # * * ", " > , ' * * ) ! ", " ~ { ] ^ * ! / ( _ ", -" : < ] [ [ } ) ) _ _ | ", -" ; ^ 1 2 2 3 } ) / | 4 5 5 ", -" 6 ^ 1 2 7 8 9 * ! _ _ | 0 a 0 ", -" = < 1 b 7 c d e f * _ _ | 0 0 a 0 g ", -" h ; i j k } . * l 7 * * _ _ 5 0 a m m n ", -" o p [ 2 7 c * ! / q r * * ) _ _ 5 0 a s m m t ", -" u v i j k } . d ) _ l & * * ! ) 4 4 0 a w m x _ ", -" y p j 2 7 z . # * ! * } A 6 B * ! ) ) ) _ _ | | 0 0 w m x C D ", -" E F [ b G H } z . . + . . . z z k I f J K K + | | _ _ ) _ _ _ _ 5 5 0 0 w a m m x 0 ", -" L 6 I 1 [ b G H } z z z . z z } z 8 . # # ( _ | 4 5 4 4 0 0 0 0 0 a m a m m x x M M N ", -" O P Q R S T U 2 k 7 } V W X R Q Y Z ` 8 . # ! / | 5 0 0 0 0 a m m m m m m M x x x M . ", -" ....R R R R R +.b G k W R R R R R R @.#.` . $.* _ _ 0 a m m M x M %.M %.&.*.%.M %.&.m =. ", -" Y @.O R ..Y -.;.Q R 6 2 = R R R R R R @.>.Q o . d ) _ 4 0 a m x M %.&.*.,.,.'.'.'.&.&.m ). ", -" !.~.{.{.].^. W X R 9 /.(.(._.R P :.R R R @.<.;.E +.Q Q [.I $./ _ 0 a m x &.'.'.,.}.}.|.|.|.,.'.&.1. ", -" 2.3.4.4.5.6.7.3._.o i R R 3.2.8.9.(.R R +.R R R Y 0.a.b.~.c.O +.3 ) ) _ 0 a m M *.,.}.}.d.e.d.f.d.}.'.g. ", -" /.h.i.j.j.a.h.(.7.k.* j X R l.b.m.9.n.R [.X @.@.R N !./.8.o.1.<.h ;.* _ | 0 s x &.'.,.}.d.p.q.p.e.d.,.i.r.s. ", -" r.3.t.E 9 ).u.v.b.b.w.+ 6 R ~.x.9.x.i.@.3 P ......i.1.1.y.9.h.L Y E / / 4 a m x *.'.}.d.d.p.p.v.p.d.{.].r.^. ", -" z.A.2.Y u N ].5.6.(.5.M 2 = h r.z.a.W B.G B.Q Q ..u.l.C.9.9.3.Y c.A _ 5 0 s M M *.|.d.d.p.p.D.D.q.d.{.].g. ", -" 8.{.j.t 2.1.{.E.8.E.z.h.+ 7 3 <.@.<.3 k k F.P P P =.b.9.9.7.).;.E r | 0 a m %.&.,.}.d.e.p.p.p.D.p.k.{.i.1. ", -" t 7.z.a.^.1.u.z.8.E.z.4.{.w z z z } 7 7 } H H E O <.u N {.h.G.-.-.0._ | 4 a m M ,.,.}.}.q.p.D.p.p.v.z.3.a. ", -" H.b.8.3.i.u.h.z.5.z.4.{.A.A.* . . z z } } } } } :.L h h = h u ;.f * 4 0 0 m x &.'.,.}.d.e.q.p.v.p.I.k.A.g. ", -" 6.b.5.4.4.z.5.z.h.{.A.].J._ * d . 8 z ` ` z z 8 I v E Y ;._.& _ | | a x M %.'.,.|.d.d.p.p.D.p.K.8.4.i. ", -" 8.7.8.E.5.z.k.4.3.u.i.~.~.0 _ ) * # . z c . . + . + * ! * _ _ 4 5 0 w ,.}.*.'.|.}.d.d.D.p.p.p.I.E.{.a. ", -" g.6.6.E.z.k.h.3.u.i.~.g. .m 0 5 / * # # . # d # * ) ( ) _ | | 5 a a %.D.d.,.,.}.d.e.D.D.p.p.D.b.5.A.L. ", -" z.8.5.k.h.3.u.i.a.r.1. .x s a 0 _ ) * $.$.* ) ! _ _ | _ 0 0 a s m M.p.}.N.}.d.p.p.p.p.O.d.b.6.k.i.s. ", -" j.h.k.h.3.u.i.a.g.1.s.w &.M m s a 5 _ ) _ _ _ _ 4 5 5 a a m s x (.I.}.M &.d.q.e.p.v.p.p.(.y.8.{.a. ", -" s.3.A.].~.r.P.1.^.P.'.'.*.&.m x m 0 | 0 0 0 0 a s a m m M '.Q.R.k.C ].S.e.p.D.p.p.p.I.T.b.5.u.1. ", -" E ).~.i.a.g.s.^.s.u.,.,.,.'.*.M x m a a w m s m x x M %.U.V.(.W.x ~.* X.O.p.v.p.p.p.T.l.8.h.J. ", -" 2.^.P.1.^.a.S.'.|.}.|.'.*.*.%.M m M M &.%.M M ,.Y.V.Q.(.q.M _ . + ,.q.p.p.D.p.y.C.7.5.u. ", -" u B _ 0 a x '.,.}.Z.,.,.'.,.'.&.'.&.}.I.Q.y.V.Q.R.E.d.M J.r.L.~.p.p.p.D.I.n.n.y.8.h.~. ", -" !.g d.U.R.I.I.I.I.I.U.Q.`.T.C. +.+T.V.Q.M.D.d.w.x 0 .! _ d.p.O.p.R.n.n.y.(.k.]. ", -" .M..+.+o.++++++@+++x. +C.y.Q.R.E.q.'.M ].J._ _ J.q.q.f.I.C.x.n.y.6.z.A. ", -" #+ 0.J.E.T.x.x.o.x.C.T.Q.R.E.p.Z.&.A.0 ~.~.0 '.O.M.y.x.x.n.T.7.(.W.A.r. ", -" $+t.s.r.].z.I.Q.b.Y.I.p.W.,.%.X.5 5 M W.7.T.o.x.x.n.C.l.b.8.4.u.g. ", -" ).L.~.A.4.5.(.7.l.C.C.n.x.o.x.x.x.x.x.x.n.C.l.y.6.8.z.h. ", -" j.g.~.3.%+5.8.6.b.y.y.l.l.l.l.l.l.y.7.7.Y.(.E. ", -" j.1.a.].{.4.z.5.8.8.8.(.(.(.8.8.8.E.z.k. ", -" j.L.r.i.u.A.3.{.{.h.h.{.h.{.3.A. ", -" ^.1.L.g.r.g.r.r.r. ", -" N t.N ", +" : ] < < [ ) ) _ _ } ", +" ; ^ | 1 1 [ ) / } 2 3 3 ", +" 4 ^ | 1 5 6 7 * ! _ _ } 8 9 8 ", +" : | 0 5 a b c d * _ _ } 8 8 9 8 e ", +" ; f g h [ . * i 5 * * _ _ 3 8 9 j j k ", +" l m < 1 5 a * ! / n o * * ) _ _ 3 8 9 p j j q ", +" r f g h [ . b ) _ i & * * ! ) 2 2 8 9 s j t _ ", +" u m g 1 5 v . # * ! * [ w x * ! ) ) ) _ _ } } 8 8 s j t y z ", +" A B < 0 C D [ v . . + . . . v v h E d F G G + } } _ _ ) _ _ _ _ 3 3 8 8 s 9 j j t 8 ", +" H 4 E | < 0 C D [ v v v . v v [ v 6 . # # ( _ } 2 3 2 2 8 8 8 8 8 9 j 9 j j t t I I J ", +" K L M N O P 1 h 5 [ Q R S M L T U V 6 . # ! / } 3 8 8 8 8 9 j j j j j j I t t t I W ", +" X M M M M M Y 0 C h R M M M M M M Z ` V . .* _ _ 8 9 j j I t I ..I ..+.@...I ..+.j #. ", +" $.M X T %.&.L M 4 1 = M M M M M M Z *.L l . b ) _ 2 8 9 j t I ..+.@.=.=.-.-.-.+.+.j ;. ", +" >.,.'.'.).!. R S M 7 ~.{.{.].M K ^.M M M Z /.&.A Y L L (.E ./ _ 8 9 j t +.-.-.=._._.:.:.:.=.-.+.<. ", +" [.}.|.|.1.2.3.}.].l f M M }.[.4.5.{.M M Y M M M T 6.7.8.,.9.$.Y 0.) ) _ 8 9 j I @.=._._.a.b.a.c.a._.-.d. ", +" ~.e.f.g.g.7.e.{.3.h.* g S M i.8.j.5.k.M (.S Z Z M J >.~.4.l.<./.m.&.* _ } 8 p t +.-.=._.a.n.o.n.b.a.=.f. ", +" p.}.q.A 7 ;.r.s.8.8.t.+ 4 M ,.u.5.u.f.Z 0.K X X X f.<.<.v.5.e.H T A / / 2 9 j t @.-._.a.a.n.n.s.n.a.'. ", +" w.x.[.T y.J ).1.2.{.1.I 1 = m.p.w.7.R z.C z.L L X r.i.A.5.5.}.T 9.w _ 3 8 p I I @.:.a.a.n.n.B.B.o.C. ", +" 4.'.g.q [.<.'.D.4.D.w.e.+ 5 0./.Z /.0.h h E.K K K #.8.5.5.3.;.&.A o } 8 9 j ..+.=._.a.b.n.n.n.B.n.h. ", +" q 3.w.7.!.<.r.w.4.D.w.|.'.s v v v [ 5 5 [ D D A $./.y.J '.e.F.%.%.6._ } 2 9 j I =.=._._.o.n.B.n.n.s. ", +" G.8.4.}.f.r.e.w.1.w.|.'.x.x.* . . v v [ [ [ [ [ ^.H m.m.= m.y.&.d * 2 8 8 j t +.-.=._.a.b.o.n.s.n.H. ", +" 2.8.1.|.|.w.1.w.e.'.x.).I._ * b . 6 v V V v v 6 E r A T &.].& _ } } 9 t I ..-.=.:.a.a.n.n.B.n.J. ", +" 4.3.4.D.1.w.h.|.}.r.f.,.,.8 _ ) * # . v a . . + . + * ! * _ _ 2 3 8 s =._.@.-.:._.a.a.B.n.n.n.K. ", +" d.2.2.D.w.h.e.}.r.f.,.d.W j 8 3 / * # # . # b # * ) ( ) _ } } 3 9 9 ..B.a.=.=._.a.b.B.B.n.n.B. ", +" w.4.1.h.e.}.r.f.7.p.<.W t p 9 8 _ ) * . .* ) ! _ _ } _ 8 8 9 p j L.n._.M._.a.n.n.n.n.N.O.P. ", +" g.e.h.e.}.r.f.7.d.<.Q.s +.I j p 9 3 _ ) _ _ _ _ 2 3 3 9 9 j p t {.H._.I +.a.o.b.n.s.n.R.S. ", +" Q.}.x.).,.p.T.<.!.T.-.-.@.+.j t j 8 } 8 8 8 8 9 p 9 j j I -.U.V.h.y ).W.b.n.B.n.n.n.H. ", +" ;.,.f.7.d.Q.!.Q.r.=.=.=.-.@.I t j 9 9 s j p j t t I ..X.Y.{.Z.t ,.* `. +n.s.n.n.n. ", +" [.!.T.<.!.7.W.-.:._.:.-.@.@...I j I I +...I I =..+Y.U.{.o.I _ . + =.o.n.n.B.n. ", +" x _ 8 9 t -.=._.++=.=.-.=.-.+.-.+._.H.U.v.Y.U.V.D.a.I I.p.@+,.n.#+n.$+%+ ", +" >.e a.X.V.H.H.H.H.H.X.U.&+*+A.=+-+*+Y.U.L.B.a.t.t 8 W ! _ a.n.n.n.;+ ", +" W L.-+-+l.>+>+>+,+>+u.=+A.v.U.V.D.o.-.I ).I._ _ I.o.o.c.n. ", +" 6.I.D.*+u.u.l.u.A.*+U.V.D.n.+++.x.8 ,.,.8 '+ +L.o. ", +" w.H.U.)+!+H.n.Z.~+{+]+^+/+I (+_+:+'+ ", +" 1.<+[+}+|+Z.1+2+3+4+5+5+ ", +" ", +" ", +" ", +" ", +" ", " ", " ", " ", diff --git a/plug-ins/script-fu/scripts/tileblur.scm b/plug-ins/script-fu/scripts/tileblur.scm index 12e8c0cf29..f6c79b9356 100644 --- a/plug-ins/script-fu/scripts/tileblur.scm +++ b/plug-ins/script-fu/scripts/tileblur.scm @@ -62,7 +62,7 @@ (script-fu-register "script-fu-tile-blur" - "/Filters/Blur/Tilable Blur..." + "/Filters/Blur/Tileable Blur..." "Blurs image edges so that the final result tiles seamlessly" "Chris Gutteridge" "1998, Chris Gutteridge / ECS dept, University of Southampton, England." diff --git a/po-script-fu/ChangeLog b/po-script-fu/ChangeLog index 12253a4bf1..cecf859812 100644 --- a/po-script-fu/ChangeLog +++ b/po-script-fu/ChangeLog @@ -1,3 +1,9 @@ +2000-03-15 Sven Neumann + + * po-script-fu/Makefile.in.in + * po-script-fu/script-fu-xgettext: new script which extracts the + menu paths for translation. Thanks to Marc! + Wed Mar 8 22:51:30 CET 2000 Sven Neumann * fr.po: s/// diff --git a/po-script-fu/Makefile.in.in b/po-script-fu/Makefile.in.in index 9703da785c..fb27854b77 100644 --- a/po-script-fu/Makefile.in.in +++ b/po-script-fu/Makefile.in.in @@ -33,6 +33,7 @@ GENCAT = @GENCAT@ GMSGFMT = PATH=../src:$$PATH @GMSGFMT@ MSGFMT = @MSGFMT@ XGETTEXT = PATH=../src:$$PATH @XGETTEXT@ +SXGETTEXT = ./script-fu-xgettext MSGMERGE = PATH=../src:$$PATH msgmerge DEFS = @DEFS@ @@ -47,10 +48,12 @@ SOURCES = cat-id-tbl.c POFILES = @POFILES@ GMOFILES = @GMOFILES@ DISTFILES = ChangeLog Makefile.in.in POTFILES.in $(PACKAGE).pot \ -stamp-cat-id $(POFILES) $(GMOFILES) $(SOURCES) +stamp-cat-id $(POFILES) $(GMOFILES) $(SOURCES) $(SXGETTEXT) POTFILES = \ +POTSCRIPTS = $(top_srcdir)/plug-ins/script-fu/scripts/*.scm + CATALOGS = @CATALOGS@ CATOBJEXT = @CATOBJEXT@ INSTOBJEXT = @INSTOBJEXT@ @@ -86,6 +89,7 @@ $(srcdir)/$(PACKAGE).pot: $(POTFILES) $(XGETTEXT) --default-domain=$(PACKAGE) --directory=$(top_srcdir) \ --add-comments --keyword=_ --keyword=N_ \ --files-from=$(srcdir)/POTFILES.in \ + && $(SXGETTEXT) $(POTSCRIPTS) >> $(srcdir)/$(PACKAGE).po \ && test ! -f $(PACKAGE).po \ || ( rm -f $(srcdir)/$(PACKAGE).pot \ && mv $(PACKAGE).po $(srcdir)/$(PACKAGE).pot ) diff --git a/po-script-fu/script-fu-xgettext b/po-script-fu/script-fu-xgettext new file mode 100755 index 0000000000..dcfebc5379 --- /dev/null +++ b/po-script-fu/script-fu-xgettext @@ -0,0 +1,89 @@ +#!/usr/bin/perl + +use 5.005; + +package token; + +sub new { + my $type = shift; + bless [@_],$type; +} + +package main; + +my $stream; # the stream to tokenize from +my $word; # the current token-word +my $tok; # current token + +# parses a new token [ws, tok, ws] +sub get() { + my($ws1,$ctk,$ws2); + # could be wrapped into one regex + $ws1 = $stream=~s/^((?:\s*(?:(;[^\n]*\n))?)*)// ? $1 : die; + $ctk = $stream=~s/^(\( + |\) + |"(?:[^"]+|\\")*" + |'(?:[^()]+) + |[^ \t\r\n()]+ + ) + (?:[ \t]*(?=\n))?//x ? $1 : undef; + $ws2 = $stream=~s/^([ \t]*;[^\n]*\n)// ? $1 : ""; + $word=$ctk; + +# print "TOKEN:$ws1:$ctk:$ws2\n"; + $tok=new token($ws1,$ctk,$ws2); +} + +# returns a parse tree, which is an array +# of [token, token...] refs. +sub parse() { + my @toks; + $depth++; + for(;;) { +# print "$depth: $word\n"; + if ($word eq "(") { + my $t = $tok; get; + my @t = &parse; + $word eq ")" or die "missing right paranthese (got $word)\n"; + push(@toks,[$t,@t,$tok]); get; + } elsif ($word eq ")") { + $depth--; + return @toks; + } elsif (!defined $word) { + $depth--; + return @toks; + } else { + push(@toks,$tok); + get; + } + } +} + +sub parse_scheme { + get; + my @t = parse; + (@t,$tok); +} + +# dumb dump of the tree structure +sub dump_menupaths { + my $d=shift; + if (isa($_[0],token)) { + if ($_[0][1] eq "script-fu-register") { + print "\nmsgid $_[2][1]\nmsgstr \"\"\n"; + } + } + for(@_) { + if(!isa($_,token)) { + dump_menupaths (@$_); + } + } +} + +*isa = \&UNIVERSAL::isa; + +for (@ARGV) { + $file=$_; + $stream = do { local($/,*X); open X, $file or die "$file: $!"; }; + dump_menupaths parse_scheme; +} diff --git a/po/ChangeLog b/po/ChangeLog index 1c1163165e..037a6d8291 100644 --- a/po/ChangeLog +++ b/po/ChangeLog @@ -1,3 +1,10 @@ +2000-03-14 Sven Neumann + Michael Natterer + + * *.po: merged the slightly changed messages from install.c + and removed the tabs. You will still have to edit the + translations and remove the trailing newlines. + Tue Mar 14 09:58:19 CET 2000 Stanislav Brabec * cs.po: Updated translation. diff --git a/po/cs.po b/po/cs.po index 90f89e1535..eed33a5236 100644 --- a/po/cs.po +++ b/po/cs.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: GIMP 1.1.18\n" -"POT-Creation-Date: 2000-03-12 23:52+0100\n" +"POT-Creation-Date: 2000-03-14 23:09+0100\n" "PO-Revision-Date: 2000-03-12 23:56+01:00\n" "Last-Translator: Stanislav Brabec \n" "Language-Team: Czech \n" @@ -61,45 +61,45 @@ msgstr "pro v msgid "GIMP Startup" msgstr "Spou╧tМ se program GIMP" -#: app/app_procs.c:479 app/gimprc.c:440 +#: app/app_procs.c:479 app/gimprc.c:448 #, c-format msgid "parsing \"%s\"\n" msgstr "analyzuje se \"%s\"\n" #. initialize the xcf file format routines -#: app/app_procs.c:539 +#: app/app_procs.c:541 msgid "Looking for data files" msgstr "HledajМ se datovИ soubory" -#: app/app_procs.c:539 +#: app/app_procs.c:541 msgid "Parasites" msgstr "CizopasnМci" #. initialize the global parasite table -#: app/app_procs.c:541 app/internal_procs.c:71 app/preferences_dialog.c:2530 +#: app/app_procs.c:543 app/internal_procs.c:71 app/preferences_dialog.c:2397 msgid "Brushes" msgstr "Stopy" #. initialize the list of gimp brushes -#: app/app_procs.c:543 app/internal_procs.c:143 app/preferences_dialog.c:2538 +#: app/app_procs.c:545 app/internal_procs.c:143 app/preferences_dialog.c:2405 msgid "Patterns" msgstr "Vzorky" #. initialize the list of gimp patterns -#: app/app_procs.c:545 app/preferences_dialog.c:2542 +#: app/app_procs.c:547 app/preferences_dialog.c:2409 msgid "Palettes" msgstr "Palety" #. initialize the list of gimp palettes -#: app/app_procs.c:547 app/internal_procs.c:113 app/preferences_dialog.c:2546 +#: app/app_procs.c:549 app/internal_procs.c:113 app/preferences_dialog.c:2413 msgid "Gradients" msgstr "PЬechody" -#: app/app_procs.c:735 +#: app/app_procs.c:737 msgid "Really Quit?" msgstr "Opravdu skonХit?" -#: app/app_procs.c:739 +#: app/app_procs.c:741 msgid "" "Some files unsaved.\n" "\n" @@ -109,21 +109,21 @@ msgstr "" "\n" "Opravdu opustit GIMP?" -#: app/app_procs.c:740 app/install.c:272 app/install.c:430 +#: app/app_procs.c:742 msgid "Quit" msgstr "Konec" -#: app/app_procs.c:740 app/brightness_contrast.c:218 app/channel_ops.c:93 +#: app/app_procs.c:742 app/brightness_contrast.c:218 app/channel_ops.c:93 #: app/channels_dialog.c:2463 app/channels_dialog.c:2637 #: app/color_balance.c:275 app/color_notebook.c:125 app/convert.c:506 #: app/curves.c:559 app/file_new_dialog.c:207 app/file_new_dialog.c:357 #: app/gdisplay_color_ui.c:129 app/gdisplay_ops.c:346 app/gimpprogress.c:112 #: app/global_edit.c:739 app/gradient.c:1769 app/gradient.c:4841 -#: app/gradient.c:5402 app/hue_saturation.c:377 app/interface.c:984 -#: app/layers_dialog.c:3326 app/layers_dialog.c:3517 app/layers_dialog.c:3617 -#: app/layers_dialog.c:3889 app/levels.c:341 app/palette.c:1826 -#: app/posterize.c:201 app/preferences_dialog.c:1502 app/qmask.c:281 -#: app/resize.c:195 app/resize.c:1345 app/threshold.c:275 +#: app/gradient.c:5402 app/hue_saturation.c:377 app/install.c:532 +#: app/interface.c:984 app/layers_dialog.c:3326 app/layers_dialog.c:3517 +#: app/layers_dialog.c:3617 app/layers_dialog.c:3889 app/levels.c:341 +#: app/palette.c:1826 app/posterize.c:201 app/preferences_dialog.c:1434 +#: app/qmask.c:281 app/resize.c:195 app/resize.c:1345 app/threshold.c:275 #: modules/cdisplay_gamma.c:358 msgid "Cancel" msgstr "Zru╧it" @@ -168,7 +168,7 @@ msgstr "Vlastn msgid "Blend:" msgstr "MМsenМ:" -#: app/blend.c:320 app/gradient.c:533 app/preferences_dialog.c:2271 +#: app/blend.c:320 app/gradient.c:533 app/preferences_dialog.c:2137 msgid "Linear" msgstr "LineАrnМ" @@ -216,7 +216,7 @@ msgstr "Spir msgid "Gradient:" msgstr "PЬechod:" -#: app/blend.c:342 app/preferences_dialog.c:1870 +#: app/blend.c:342 app/preferences_dialog.c:1769 msgid "None" msgstr "Nic" @@ -279,7 +279,7 @@ msgstr "Jas-kontrast nefunguje na indexovan #: app/gdisplay_color_ui.c:127 app/gimpui.c:122 app/hue_saturation.c:373 #: app/layers_dialog.c:3324 app/layers_dialog.c:3515 app/layers_dialog.c:3615 #: app/layers_dialog.c:3887 app/levels.c:337 app/module_db.c:281 -#: app/posterize.c:197 app/preferences_dialog.c:1498 app/qmask.c:279 +#: app/posterize.c:197 app/preferences_dialog.c:1430 app/qmask.c:279 #: app/resize.c:193 app/resize.c:1345 app/threshold.c:271 #: modules/cdisplay_gamma.c:351 msgid "OK" @@ -323,7 +323,7 @@ msgstr "Editor stop" #: app/lc_dialog.c:195 app/measure.c:286 app/nav_window.c:1345 #: app/palette.c:2072 app/palette.c:2088 app/palette.c:3118 #: app/palette_select.c:66 app/pattern_select.c:172 -#: app/preferences_dialog.c:364 app/tips_dialog.c:171 app/tools.c:1088 +#: app/preferences_dialog.c:359 app/tips_dialog.c:171 app/tools.c:1088 #: app/undo_history.c:752 msgid "Close" msgstr "ZavЬМt" @@ -484,8 +484,8 @@ msgid "Offset X:" msgstr "Posun X:" #: app/channel_ops.c:115 app/crop.c:1063 app/file_new_dialog.c:530 -#: app/resize.c:332 app/resize.c:417 app/resize.c:575 app/rotate_tool.c:106 -#: app/scale_tool.c:100 app/shear_tool.c:82 +#: app/install.c:1108 app/resize.c:332 app/resize.c:417 app/resize.c:575 +#: app/rotate_tool.c:106 app/scale_tool.c:100 app/shear_tool.c:82 msgid "Y:" msgstr "Y:" @@ -971,7 +971,7 @@ msgid "Load" msgstr "NaХМst" #: app/curves.c:704 app/devices.c:753 app/levels.c:608 app/palette.c:2068 -#: app/preferences_dialog.c:362 app/preferences_dialog.c:1500 +#: app/preferences_dialog.c:357 app/preferences_dialog.c:1432 msgid "Save" msgstr "Zapsat" @@ -1182,8 +1182,8 @@ msgstr "Velikost obr msgid "New Image" msgstr "NovЩ obrАzek" -#: app/file_new_dialog.c:453 app/preferences_dialog.c:1573 -#: app/preferences_dialog.c:1610 +#: app/file_new_dialog.c:453 app/install.c:1093 app/preferences_dialog.c:1505 +#: app/preferences_dialog.c:1542 msgid "Pixels" msgstr "pixelЫ" @@ -1306,13 +1306,13 @@ msgstr "Ne" msgid "Flip Tool" msgstr "PЬeklopenМ" -#: app/flip_tool.c:95 app/preferences_dialog.c:1624 -#: app/preferences_dialog.c:2417 +#: app/flip_tool.c:95 app/preferences_dialog.c:1556 +#: app/preferences_dialog.c:2284 msgid "Horizontal" msgstr "VodorovnЛ" -#: app/flip_tool.c:97 app/preferences_dialog.c:1626 -#: app/preferences_dialog.c:2419 +#: app/flip_tool.c:97 app/preferences_dialog.c:1558 +#: app/preferences_dialog.c:2286 msgid "Vertical" msgstr "Svisle" @@ -1337,7 +1337,7 @@ msgstr "" msgid "RGB-empty" msgstr "RGB barvy - prАzdnЩ" -#: app/gdisplay.c:217 app/image_new.c:54 app/preferences_dialog.c:1670 +#: app/gdisplay.c:217 app/image_new.c:54 app/preferences_dialog.c:1602 msgid "RGB" msgstr "RGB barvy" @@ -1602,45 +1602,45 @@ msgstr "Pr msgid "Please wait..." msgstr "ProsМm Хekejte..." -#: app/gimprc.c:407 app/plug_in.c:304 +#: app/gimprc.c:415 app/plug_in.c:304 msgid "Resource configuration" msgstr "Konfigurace zdrojЫ" -#: app/gimprc.c:459 +#: app/gimprc.c:467 #, c-format msgid "error parsing: \"%s\"\n" msgstr "chyba pЬi analЩze: \"%s\"\n" -#: app/gimprc.c:460 +#: app/gimprc.c:468 #, c-format msgid " at line %d column %d\n" msgstr " ЬАdek %d sloupec %d\n" -#: app/gimprc.c:461 +#: app/gimprc.c:469 #, c-format msgid " unexpected token: %s\n" msgstr " neoХekАvanЩ symbol: %s\n" -#: app/gimprc.c:1465 +#: app/gimprc.c:1473 msgid "error parsing pluginrc" msgstr "chyba pЬi analЩze pluginrc" -#: app/gimprc.c:2858 +#: app/gimprc.c:2866 #, c-format msgid "Can't open %s; %s" msgstr "Nelze otevЬМt %s; %s" -#: app/gimprc.c:2877 +#: app/gimprc.c:2885 #, c-format msgid "Can't rename %s to %s.old; %s" msgstr "Nelze pЬejmenovat %s na %s.old; %s" -#: app/gimprc.c:2883 +#: app/gimprc.c:2891 #, c-format msgid "Couldn't reopen %s\n" msgstr "Nelze znovu otevЬМt %s\n" -#: app/gimprc.c:2895 +#: app/gimprc.c:2903 #, c-format msgid "Can't write to %s; %s" msgstr "Nelze zapisovat do %s; %s" @@ -2184,7 +2184,7 @@ msgid "Saturation" msgstr "Sytost" #: app/image_new.c:59 app/info_window.c:65 app/info_window.c:534 -#: app/preferences_dialog.c:1671 +#: app/preferences_dialog.c:1603 msgid "Grayscale" msgstr "OdstМny ╧edi" @@ -2250,8 +2250,8 @@ msgstr "" "AktivnМ pЬechod.\n" "Dialog pЬechodЫ otevЬete klepnutМm." -#: app/info_dialog.c:181 app/preferences_dialog.c:1844 -#: app/preferences_dialog.c:1950 +#: app/info_dialog.c:181 app/preferences_dialog.c:1743 +#: app/preferences_dialog.c:1849 msgid "General" msgstr "V╧eobecnИ" @@ -2383,420 +2383,540 @@ msgstr "Nastaven msgid "Shape" msgstr "Tvar" -#: app/install.c:83 +#: app/install.c:95 msgid "The GIMP is not properly installed for the current user\n" msgstr "GIMP nenМ pro aktuАlnМho u╬ivatele ЬАdnЛ nainstalovАn\n" -#: app/install.c:84 +#: app/install.c:96 msgid "" "User installation was skipped because the '--nointerface' flag was " "encountered\n" msgstr "" "U╬ivatelskА instalace byla pЬeskoХena, proto╬e bylo pou╬ito '--nointerface'\n" -#: app/install.c:85 +#: app/install.c:97 msgid "" "To perform user installation, run the GIMP without the '--nointerface' flag\n" msgstr "" "Abyste provedli u╬ivatelskou instalaci, spus╩te GIMP bez volby " "'--nointerface'\n" -#: app/install.c:113 +#: app/install.c:142 +#, fuzzy +msgid "" +"The gimprc is used to store personal preferences\n" +"that affect GIMP's default behavior.\n" +"Paths to search for brushes, palettes, gradients,\n" +"patterns, plug-ins and modules can also configured here." +msgstr "" +"gimprc uchovАvА u╬ivatelskИ pЬedvolby, kterИ ovlivРujМ\n" +"implicitnМ chovАnМ programu GIMP.\n" +"Lze zde tИ╬ nakonfigurovat cesty pro hledАnМ stop, palety,\n" +"pЬechody, vzorky, zАsuvnИ moduly a moduly.\n" + +#: app/install.c:149 +msgid "" +"GIMP uses an additional gtkrc file so you can\n" +"configure it to look differently than other GTK apps." +msgstr "" + +#: app/install.c:154 +#, fuzzy +msgid "" +"Plug-ins and extensions are external programs run by\n" +"the GIMP which provide additional functionality.\n" +"These programs are searched for at run-time and\n" +"information about their functionality and mod-times\n" +"is cached in this file. This file is intended to\n" +"be GIMP-readable only, and should not be edited." +msgstr "" +"ZАsuvnИ moduly a roz╧МЬenМ jsou vnЛj╧М programy\n" +"s doplРujМcМmi funkcemi, spou╧tЛnИ programem GIMP.\n" +"Tyto programy jsou vyhledАvАny za bЛhu a informace\n" +"o jejich funkci a Хasech zmЛn jsou ulo╬eny do tohoto\n" +"souboru. Tento soubor je navr╬en pro ХtenМ\n" +"pouze programem GIMP a nemЛl by bЩt editovАn.\n" + +#: app/install.c:163 +#, fuzzy +msgid "" +"Key shortcuts can be dynamically redefined in The GIMP.\n" +"The menurc is a dump of your configuration so it can.\n" +"be remembered for the next session. You may edit this\n" +"file if you wish, but it is much easier to define the\n" +"keys from within The GIMP. Deleting this file will\n" +"restore the default shortcuts." +msgstr "" +"KlАvesovИ zkratky je mo╬nИ dynamicky mЛnit za bЛhu programu\n" +"GIMP. Soubor menurc je vЩpisem va╧М konfigurace, tak╬e je\n" +"ulo╬ena pro pЬМ╧tМ sezenМ. Chcete-li, mЫ╬ete jej editovat,\n" +"ale je mnohem jednodu╧╧М definovat klАvesy za bЛhu programu\n" +"GIMP. SmazАnМ souboru navrАtМ implicitnМ zkratky.\n" + +#: app/install.c:172 +#, fuzzy +msgid "" +"The sessionrc is used to store what dialog windows were\n" +"open the last time you quit The GIMP. You can configure\n" +"The GIMP to reopen these dialogs at the saved position." +msgstr "" +"ZАznam GIMP sezenМ pЬechovАvА informace o oknech, kterА byla\n" +"otevЬena pЬi poslednМm ukonХenМ programu GIMP. Programu GIMP\n" +"lze nastavit polohu dialogovЩch oken pЬi otvМrАnМ.\n" + +#: app/install.c:178 +#, fuzzy +msgid "" +"The unitrc is used to store your user units database.\n" +"You can define additional units and use them just\n" +"like you use the built-in units inches, millimeters,\n" +"points and picas. This file is overwritten each time\n" +"you quit the GIMP." +msgstr "" +"unitrc uchovАvА databАzi u╬ivatelskЩch jednotek.\n" +"MЫ╬ete definovat vlastnМ jednotky a pou╬Мvat je\n" +"stejnЛ jako vestavЛnИ palce, milimetry,\n" +"body a piky. Tento soubor je pЬepsАn poka╬dИ,\n" +"kdy╬ opou╧tМte GIMP.\n" + +#: app/install.c:186 +#, fuzzy +msgid "" +"This is a subdirectory which can be used to store\n" +"user defined brushes. The default gimprc file\n" +"checks this subdirectory in addition to the system-\n" +"wide gimp brushes installation when searching for\n" +"brushes." +msgstr "" +"Toto je podadresАЬ, kam je mo╬nИ uklАdat\n" +"u╬ivatelem definovanИ stopy.\n" +"Dle implicitnМho gimprc souboru se pЬi hledАnМ\n" +"stop kontroluje tento podadresАЬ spolu\n" +"se systИmovou instalacМ gimp stop.\n" + +#: app/install.c:194 +#, fuzzy +msgid "" +"This is a subdirectory which is used to store brushes\n" +"that are created with the brush editor. The default\n" +"gimprc file checks this subdirectory when searching for\n" +"generated brushes." +msgstr "" +"Toto je podadresАЬ, kam je mo╬nИ uklАdat\n" +"stopy vytvoЬenИ editorem stop.\n" +"Dle implicitnМho gimprc souboru se pЬi hledАnМ\n" +"generovanЩch stop kontroluje tento\n" +"podadresАЬ.\n" + +#: app/install.c:201 +#, fuzzy +msgid "" +"This is a subdirectory which can be used to store\n" +"user defined gradients. The default gimprc file\n" +"checks this subdirectory in addition to the system-\n" +"wide gimp gradients installation when searching for\n" +"gradients." +msgstr "" +"Toto je podadresАЬ, kam je mo╬nИ uklАdat\n" +"u╬ivatelem definovanИ pЬechody.\n" +"Dle implicitnМho gimprc souboru se pЬi hledАnМ\n" +"pЬechodЫ kontroluje tento podadresАЬ spolu\n" +"se systИmovou instalacМ gimp pЬechodЫ.\n" + +#: app/install.c:209 +#, fuzzy +msgid "" +"This is a subdirectory which can be used to store\n" +"user defined palettes. The default gimprc file\n" +"checks only this subdirectory (not the system-wide\n" +"installation) when searching for palettes. During\n" +"installation, the system palettes will be copied\n" +"here. This is done to allow modifications made to\n" +"palettes during GIMP execution to persist across\n" +"sessions." +msgstr "" +"Toto je podadresАЬ, kam je mo╬nИ uklАdat\n" +"u╬ivatelem definovanИ palety.\n" +"Dle implicitnМho gimprc souboru se pЬi hledАnМ\n" +"palet kontroluje pouze tento podadresАЬ\n" +"(nikoli systИmovА instalace). BЛhem instalace\n" +"sem budou systИmovИ palety zkopМrovАny. Je to proto,\n" +"aby bylo mo╬nИ bЛhem prАce programu GIMP zmЛnЛnИ\n" +"palety uchovat mezi sezenМmi.\n" + +#: app/install.c:220 +#, fuzzy +msgid "" +"This is a subdirectory which can be used to store\n" +"user defined patterns. The default gimprc file\n" +"checks this subdirectory in addition to the system-\n" +"wide gimp patterns installation when searching for\n" +"patterns." +msgstr "" +"Toto je podadresАЬ, kam je mo╬nИ uklАdat\n" +"u╬ivatelem definovanИ vzorky.\n" +"Dle implicitnМho gimprc souboru se pЬi hledАnМ\n" +"vzorkЫ kontroluje tento podadresАЬ spolu\n" +"se systИmovou instalacМ gimp vzorkЫ.\n" + +#: app/install.c:228 +#, fuzzy +msgid "" +"This is a subdirectory which can be used to store\n" +"user created, temporary, or otherwise non-system-\n" +"supported plug-ins. The default gimprc file\n" +"checks this subdirectory in addition to the system-\n" +"wide GIMP plug-in directories when searching for\n" +"plug-ins." +msgstr "" +"Toto je podadresАЬ, kam je mo╬nИ uklАdat\n" +"u╬ivatelem vytvoЬenИ, pomocnИ nebo jinИ v systИmu\n" +"neobsa╬enИ zАsuvnИ moduly.\n" +"Dle implicitnМho gimprc souboru se pЬi hledАnМ\n" +"zАsuvnЩch modulЫ kontroluje tento podadresАЬ spolu\n" +"se systИmovou instalacМ gimp zАsuvnЩch modulЫ.\n" + +#: app/install.c:237 +#, fuzzy +msgid "" +"This subdirectory can be used to store user created,\n" +"temporary, or otherwise non-system-supported DLL modules.\n" +"The default gimprc file checks this subdirectory\n" +"in addition to the system-wide GIMP module directory\n" +"when searching for modules to load when initializing." +msgstr "" +"Tento podadresАЬ mЫ╬e bЩt pou╬it k uchovАnМ u╬ivatelem vytvoЬenЩch,\n" +"pomocnЩch nebo jinЩch v systИmu neobsa╬enЩch DLL modulЫ.\n" +"Dle implicitnМho gimprc souboru se pЬi hledАnМ\n" +"modulЫ kontroluje tento podadresАЬ spolu se systИmovou\n" +"instalacМ modulЫ bЛhem inicializace.\n" + +#: app/install.c:245 +#, fuzzy +msgid "" +"This subdirectory is used by the GIMP to store \n" +"user created and installed scripts. The default gimprc\n" +"file checks this subdirectory in addition to the system-\n" +"wide gimp scripts subdirectory when searching for scripts" +msgstr "" +"Tento podadresАЬ je pou╬МvАn programem GIMP k uchovАnМ\n" +"u╬ivatelem vytvoЬenЩch a instalovanЩch skriptЫ. Dle\n" +"implicitnМho gimprc souboru se pЬi hledАnМ skriptЫ kontroluje\n" +"tento podadresАЬ spolu se systИmovou instalacМ gimp skriptЫ.\n" + +#: app/install.c:252 +#, fuzzy +msgid "" +"This subdirectory is used by the GIMP to temporarily\n" +"store undo buffers to reduce memory usage. If GIMP is\n" +"unceremoniously killed, files may persist in this directory\n" +"of the form: gimp<#>.<#>. These files are useless across\n" +"GIMP sessions and can be destroyed with impunity." +msgstr "" +"Tento podadresАЬ je pou╬МvАn programem GIMP k doХasnИmu\n" +"uchovАnМ bufferЫ pro vracenМ, ХМm╬ se u╧etЬМ pamЛ╩.\n" +"Pokud je program GIMP bez ceremonie zabit, mohou zde zbЩt\n" +"soubory ve formЛ: gimp<#>.<#>. Ty jsou mezi GIMP sezenМmi\n" +"zbyteХnИ a mohou bЩt odstranЛny jako smetМ.\n" + +#: app/install.c:260 +msgid "" +"This subdirectory is used to store parameter files for\n" +"the Curves tool." +msgstr "" + +#: app/install.c:265 +msgid "" +"This subdirectory is used to store parameter files for\n" +"the Levels tool." +msgstr "" + +#: app/install.c:270 +#, fuzzy +msgid "" +"This is a subdirectory which can be used to store\n" +"user defined fractals to be used by the FractalExplorer\n" +"plug-in. The default gimprc file checks this subdirectory in\n" +"addition to the systemwide gimp FractalExplorer installation\n" +"when searching for fractals." +msgstr "" +"Toto je podadresАЬ, kam je mo╬nИ uklАdat\n" +"u╬ivatelem definovanИ fraktАly u╬МvanИ zАsuvnЩm modulem FractalExplorer.\n" +"Dle implicitnМho gimprc souboru se pЬi hledАnМ\n" +"fraktАlЫ kontroluje tento podadresАЬ spolu\n" +"se systИmovou instalacМ gimp fraktАlЫ.\n" + +#: app/install.c:278 +#, fuzzy +msgid "" +"This is a subdirectory which can be used to store\n" +"user defined figures to be used by the gfig plug-in.\n" +"The default gimprc file checks this subdirectory in\n" +"addition to the systemwide gimp gfig installation\n" +"when searching for gfig figures." +msgstr "" +"Toto je podadresАЬ, kam je mo╬nИ uklАdat\n" +"u╬ivatelem definovanИ kresby u╬МvanИ zАsuvnЩm modulem gfig.\n" +"Dle implicitnМho gimprc souboru se pЬi hledАnМ\n" +"kreseb kontroluje tento podadresАЬ spolu\n" +"se systИmovou instalacМ gfig kreseb.\n" + +#: app/install.c:286 +#, fuzzy +msgid "" +"This is a subdirectory which can be used to store\n" +"user defined gflares to be used by the gflare plug-in.\n" +"The default gimprc file checks this subdirectory in\n" +"addition to the systemwide gimp gflares installation\n" +"when searching for gflares." +msgstr "" +"Toto je podadresАЬ, kam je mo╬nИ uklАdat\n" +"u╬ivatelem definovanИ P-zАЬe u╬МvanИ zАsuvnЩm modulem gflare.\n" +"Dle implicitnМho gimprc souboru se pЬi hledАnМ\n" +"P-zАЬМ kontroluje tento podadresАЬ spolu\n" +"se systИmovou instalacМ gflare P-zАЬМ.\n" + +#: app/install.c:294 +#, fuzzy +msgid "" +"This is a subdirectory which can be used to store\n" +"user defined data to be used by the Gimpressionist\n" +"plug-in. The default gimprc file checks this subdirectory in\n" +"addition to the systemwide gimp Gimpressionist installation\n" +"when searching for data." +msgstr "" +"Toto je podadresАЬ, kam je mo╬nИ uklАdat\n" +"u╬ivatelem definovanИ P-zАЬe u╬МvanИ zАsuvnЩm modulem gflare.\n" +"Dle implicitnМho gimprc souboru se pЬi hledАnМ\n" +"P-zАЬМ kontroluje tento podadresАЬ spolu\n" +"se systИmovou instalacМ gflare P-zАЬМ.\n" + +#: app/install.c:525 +#, fuzzy +msgid "GIMP User Installation" +msgstr "Instalace programu GIMP" + +#: app/install.c:530 +msgid "Continue" +msgstr "PokraХovat" + +#. this is a fontset, e.g. multiple comma-separated font definitions +#: app/install.c:560 +#, fuzzy +msgid "-*-helvetica-bold-r-normal-*-*-240-*-*-*-*-*-*,*" +msgstr "-*-helvetica-bold-r-normal-*-*-120-*-*-*-*-*-*,*" + +#: app/install.c:578 +#, fuzzy +msgid "" +"Welcome to\n" +"The GIMP User Installation" +msgstr "Instalace programu GIMP" + +#: app/install.c:582 msgid "" "The GIMP - GNU Image Manipulation Program\n" -"\n" +"Copyright (C) 1995-2000\n" +"Spencer Kimball, Peter Mattis and the GIMP Development Team." msgstr "" -"GIMP - GNU program pro prАci s obrАzky\n" -"(GNU Image Manipulation Program)\n" -"\n" -#: app/install.c:118 +#: app/install.c:591 +#, fuzzy msgid "" "This program is free software; you can redistribute it and/or modify\n" "it under the terms of the GNU General Public License as published by\n" "the Free Software Foundation; either version 2 of the License, or\n" -"(at your option) any later version.\n" +"(at your option) any later version." msgstr "" "Tento program je volnЛ ╧iЬitelnЩ; mЫ╬ete jej redistribuovat a mЛnit\n" "v souladu s Obecnou veЬejnou licencМ GNU publikovanou\n" "Free Software Foundation; buО licencМ verze 2 nebo\n" "(dle va╧i volby) jakoukoliv novЛj╧М.\n" -#: app/install.c:123 +#: app/install.c:596 +#, fuzzy msgid "" "This program is distributed in the hope that it will be useful,\n" "but WITHOUT ANY WARRANTY; without even the implied warranty of\n" "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n" -"See the GNU General Public License for more details.\n" +"See the GNU General Public License for more details." msgstr "" "Tento program je ╧МЬen v nadЛji, ╬e bude u╬iteХnЩ, av╧ak\n" "BEZ JAKиKOLI ZаRUKY; neposkytujМ se ani odvozenИ zАruky\n" "PRODEJNOSTI anebo VHODNOSTI PRO URхITщ зхEL.\n" "Dal╧М podrobnosti hledejte v ObecnИ veЬejnИ licenci GNU.\n" -#: app/install.c:128 +#: app/install.c:601 +#, fuzzy msgid "" "You should have received a copy of the GNU General Public License\n" "along with this program; if not, write to the Free Software\n" "Foundation, Inc., 59 Temple Place - Suite 330, Boston,\n" -"MA 02111-1307, USA.\n" +"MA 02111-1307, USA." msgstr "" "S tМmto programem byste mЛli zМskat kopii ObecnИ veЬejnИ\n" "licenci GNU; pokud tomu tak nenМ, pi╧te na Free Software\n" "Foundation, Inc., 59 Temple Place - Suite 330, Boston,\n" "MA 02111-1307, USA.\n" -#: app/install.c:134 -msgid "" -"Personal GIMP Installation\n" -"\n" +#: app/install.c:607 +msgid "Click \"Continue\" to enter the GIMP user installation." +msgstr "" + +#: app/install.c:633 +#, fuzzy +msgid "Personal GIMP Directory" msgstr "" "U╬ivatelskА instalace programu GIMP\n" "\n" -#: app/install.c:135 -msgid "For a proper GIMP installation, a subdirectory called\n" -msgstr "PЬi ЬАdnИ instalaci programu GIMP bude vytvoЬen podadresАЬ\n" - -#. will be replaced with gimp_directory() -#: app/install.c:137 +#: app/install.c:650 +#, fuzzy msgid "" -" needs to be created. This\n" -"subdirectory will contain a number of important files:\n" -"\n" +"For a proper GIMP installation, a subdirectory needs to be created.\n" +"This subdirectory will contain a number of important files." msgstr "" " je tЬeba vytvoЬit. Tento\n" "podadresАЬ bude obsahovat mno╬stvМ dЫle╬itЩch souborЫ:\n" "\n" -#: app/install.c:141 +#: app/install.c:653 msgid "" -"\t\tThe gimprc is used to store personal preferences\n" -"\t\tthat affect GIMP's default behavior.\n" -"\t\tPaths to search for brushes, palettes, gradients,\n" -"\t\tpatterns, plug-ins and modules can also configured here.\n" +"Click on one of the files or subdirectories in the tree\n" +"to get more information about the selected item." msgstr "" -"\t\tgimprc uchovАvА u╬ivatelskИ pЬedvolby, kterИ ovlivРujМ\n" -"\t\timplicitnМ chovАnМ programu GIMP.\n" -"\t\tLze zde tИ╬ nakonfigurovat cesty pro hledАnМ stop, palety,\n" -"\t\tpЬechody, vzorky, zАsuvnИ moduly a moduly.\n" -#: app/install.c:147 -msgid "" -"\t\tPlug-ins and extensions are external programs run by\n" -"\t\tthe GIMP which provide additional functionality.\n" -"\t\tThese programs are searched for at run-time and\n" -"\t\tinformation about their functionality and mod-times\n" -"\t\tis cached in this file. This file is intended to\n" -"\t\tbe GIMP-readable only, and should not be edited.\n" +#: app/install.c:656 +msgid "Click \"Continue\" to create your personal GIMP directory." msgstr "" -"\t\tZАsuvnИ moduly a roz╧МЬenМ jsou vnЛj╧М programy\n" -"\t\ts doplРujМcМmi funkcemi, spou╧tЛnИ programem GIMP.\n" -"\t\tTyto programy jsou vyhledАvАny za bЛhu a informace\n" -"\t\to jejich funkci a Хasech zmЛn jsou ulo╬eny do tohoto\n" -"\t\tsouboru. Tento soubor je navr╬en pro ХtenМ\n" -"\t\tpouze programem GIMP a nemЛl by bЩt editovАn.\n" -#: app/install.c:155 -msgid "" -"\t\tKey shortcuts can be dynamically redefined in The GIMP.\n" -"\t\tThe menurc is a dump of your configuration so it can.\n" -"\t\tbe remembered for the next session. You may edit this\n" -"\t\tfile if you wish, but it is much easier to define the\n" -"\t\tkeys from within The GIMP. Deleting this file will\n" -"\t\trestore the default shortcuts.\n" -msgstr "" -"\t\tKlАvesovИ zkratky je mo╬nИ dynamicky mЛnit za bЛhu programu\n" -"\t\tGIMP. Soubor menurc je vЩpisem va╧М konfigurace, tak╬e je\n" -"\t\tulo╬ena pro pЬМ╧tМ sezenМ. Chcete-li, mЫ╬ete jej editovat,\n" -"\t\tale je mnohem jednodu╧╧М definovat klАvesy za bЛhu programu\n" -"\t\tGIMP. SmazАnМ souboru navrАtМ implicitnМ zkratky.\n" - -#: app/install.c:163 -msgid "" -"\t\tThe sessionrc is used to store what dialog windows were\n" -"\t\topen the last time you quit The GIMP. You can configure\n" -"\t\tThe GIMP to reopen these dialogs at the saved position.\n" -msgstr "" -"\t\tZАznam GIMP sezenМ pЬechovАvА informace o oknech, kterА byla\n" -"\t\totevЬena pЬi poslednМm ukonХenМ programu GIMP. Programu GIMP\n" -"\t\tlze nastavit polohu dialogovЩch oken pЬi otvМrАnМ.\n" - -#: app/install.c:168 -msgid "" -"\t\tThe unitrc is used to store your user units database.\n" -"\t\tYou can define additional units and use them just\n" -"\t\tlike you use the built-in units inches, millimeters,\n" -"\t\tpoints and picas. This file is overwritten each time\n" -"\t\tyou quit the GIMP.\n" -msgstr "" -"\t\tunitrc uchovАvА databАzi u╬ivatelskЩch jednotek.\n" -"\t\tMЫ╬ete definovat vlastnМ jednotky a pou╬Мvat je\n" -"\t\tstejnЛ jako vestavЛnИ palce, milimetry,\n" -"\t\tbody a piky. Tento soubor je pЬepsАn poka╬dИ,\n" -"\t\tkdy╬ opou╧tМte GIMP.\n" - -#: app/install.c:175 -msgid "" -"\t\tThis is a subdirectory which can be used to store\n" -"\t\tuser defined brushes. The default gimprc file\n" -"\t\tchecks this subdirectory in addition to the system-\n" -"\t\twide gimp brushes installation when searching for\n" -"\t\tbrushes.\n" -msgstr "" -"\t\tToto je podadresАЬ, kam je mo╬nИ uklАdat\n" -"\t\tu╬ivatelem definovanИ stopy.\n" -"\t\tDle implicitnМho gimprc souboru se pЬi hledАnМ\n" -"\t\tstop kontroluje tento podadresАЬ spolu\n" -"\t\tse systИmovou instalacМ gimp stop.\n" - -#: app/install.c:182 -msgid "" -"\t\tThis is a subdirectory which is used to store brushes\n" -"\t\tthat are created with the brush editor. The default\n" -"\t\tgimprc file checks this subdirectory when searching for\n" -"\t\tgenerated brushes.\n" -msgstr "" -"\t\tToto je podadresАЬ, kam je mo╬nИ uklАdat\n" -"\t\tstopy vytvoЬenИ editorem stop.\n" -"\t\tDle implicitnМho gimprc souboru se pЬi hledАnМ\n" -"\t\tgenerovanЩch stop kontroluje tento\n" -"\t\tpodadresАЬ.\n" - -#: app/install.c:188 -msgid "" -"\t\tThis is a subdirectory which can be used to store\n" -"\t\tuser defined gradients. The default gimprc file\n" -"\t\tchecks this subdirectory in addition to the system-\n" -"\t\twide gimp gradients installation when searching for\n" -"\t\tgradients.\n" -msgstr "" -"\t\tToto je podadresАЬ, kam je mo╬nИ uklАdat\n" -"\t\tu╬ivatelem definovanИ pЬechody.\n" -"\t\tDle implicitnМho gimprc souboru se pЬi hledАnМ\n" -"\t\tpЬechodЫ kontroluje tento podadresАЬ spolu\n" -"\t\tse systИmovou instalacМ gimp pЬechodЫ.\n" - -#: app/install.c:195 -msgid "" -"\t\tThis is a subdirectory which can be used to store\n" -"\t\tuser defined figures to be used by the gfig plug-in.\n" -"\t\tThe default gimprc file checks this subdirectory in\n" -"\t\taddition to the systemwide gimp gfig installation\n" -"\t\twhen searching for gfig figures.\n" -msgstr "" -"\t\tToto je podadresАЬ, kam je mo╬nИ uklАdat\n" -"\t\tu╬ivatelem definovanИ kresby u╬МvanИ zАsuvnЩm modulem gfig.\n" -"\t\tDle implicitnМho gimprc souboru se pЬi hledАnМ\n" -"\t\tkreseb kontroluje tento podadresАЬ spolu\n" -"\t\tse systИmovou instalacМ gfig kreseb.\n" - -#: app/install.c:202 -msgid "" -"\t\tThis is a subdirectory which can be used to store\n" -"\t\tuser defined gflares to be used by the gflare plug-in.\n" -"\t\tThe default gimprc file checks this subdirectory in\n" -"\t\taddition to the systemwide gimp gflares installation\n" -"\t\twhen searching for gflares.\n" -msgstr "" -"\t\tToto je podadresАЬ, kam je mo╬nИ uklАdat\n" -"\t\tu╬ivatelem definovanИ P-zАЬe u╬МvanИ zАsuvnЩm modulem gflare.\n" -"\t\tDle implicitnМho gimprc souboru se pЬi hledАnМ\n" -"\t\tP-zАЬМ kontroluje tento podadresАЬ spolu\n" -"\t\tse systИmovou instalacМ gflare P-zАЬМ.\n" - -#: app/install.c:209 -msgid "" -"\t\tThis is a subdirectory which can be used to store\n" -"\t\tuser defined fractals to be used by the FractalExplorer\n" -"\t\tplug-in. The default gimprc file checks this subdirectory in\n" -"\t\taddition to the systemwide gimp FractalExplorer installation\n" -"\t\twhen searching for fractals.\n" -msgstr "" -"\t\tToto je podadresАЬ, kam je mo╬nИ uklАdat\n" -"\t\tu╬ivatelem definovanИ fraktАly u╬МvanИ zАsuvnЩm modulem " -"FractalExplorer.\n" -"\t\tDle implicitnМho gimprc souboru se pЬi hledАnМ\n" -"\t\tfraktАlЫ kontroluje tento podadresАЬ spolu\n" -"\t\tse systИmovou instalacМ gimp fraktАlЫ.\n" - -#: app/install.c:216 -msgid "" -"\t\tThis is a subdirectory which can be used to store\n" -"\t\tuser defined palettes. The default gimprc file\n" -"\t\tchecks only this subdirectory (not the system-wide\n" -"\t\tinstallation) when searching for palettes. During\n" -"\t\tinstallation, the system palettes will be copied\n" -"\t\there. This is done to allow modifications made to\n" -"\t\tpalettes during GIMP execution to persist across\n" -"\t\tsessions.\n" -msgstr "" -"\t\tToto je podadresАЬ, kam je mo╬nИ uklАdat\n" -"\t\tu╬ivatelem definovanИ palety.\n" -"\t\tDle implicitnМho gimprc souboru se pЬi hledАnМ\n" -"\t\tpalet kontroluje pouze tento podadresАЬ\n" -"\t\t(nikoli systИmovА instalace). BЛhem instalace\n" -"\t\tsem budou systИmovИ palety zkopМrovАny. Je to proto,\n" -"\t\taby bylo mo╬nИ bЛhem prАce programu GIMP zmЛnЛnИ\n" -"\t\tpalety uchovat mezi sezenМmi.\n" - -#: app/install.c:226 -msgid "" -"\t\tThis is a subdirectory which can be used to store\n" -"\t\tuser defined patterns. The default gimprc file\n" -"\t\tchecks this subdirectory in addition to the system-\n" -"\t\twide gimp patterns installation when searching for\n" -"\t\tpatterns.\n" -msgstr "" -"\t\tToto je podadresАЬ, kam je mo╬nИ uklАdat\n" -"\t\tu╬ivatelem definovanИ vzorky.\n" -"\t\tDle implicitnМho gimprc souboru se pЬi hledАnМ\n" -"\t\tvzorkЫ kontroluje tento podadresАЬ spolu\n" -"\t\tse systИmovou instalacМ gimp vzorkЫ.\n" - -#: app/install.c:233 -msgid "" -"\t\tThis is a subdirectory which can be used to store\n" -"\t\tuser created, temporary, or otherwise non-system-\n" -"\t\tsupported plug-ins. The default gimprc file\n" -"\t\tchecks this subdirectory in addition to the system-\n" -"\t\twide GIMP plug-in directories when searching for\n" -"\t\tplug-ins.\n" -msgstr "" -"\t\tToto je podadresАЬ, kam je mo╬nИ uklАdat\n" -"\t\tu╬ivatelem vytvoЬenИ, pomocnИ nebo jinИ v systИmu\n" -"\t\tneobsa╬enИ zАsuvnИ moduly.\n" -"\t\tDle implicitnМho gimprc souboru se pЬi hledАnМ\n" -"\t\tzАsuvnЩch modulЫ kontroluje tento podadresАЬ spolu\n" -"\t\tse systИmovou instalacМ gimp zАsuvnЩch modulЫ.\n" - -#: app/install.c:241 -msgid "" -"\t\tThis subdirectory can be used to store user created,\n" -"\t\ttemporary, or otherwise non-system-supported DLL modules.\n" -"\t\tThe default gimprc file checks this subdirectory\n" -"\t\tin addition to the system-wide GIMP module directory\n" -"\t\twhen searching for modules to load when initializing.\n" -msgstr "" -"\t\tTento podadresАЬ mЫ╬e bЩt pou╬it k uchovАnМ u╬ivatelem vytvoЬenЩch,\n" -"\t\tpomocnЩch nebo jinЩch v systИmu neobsa╬enЩch DLL modulЫ.\n" -"\t\tDle implicitnМho gimprc souboru se pЬi hledАnМ\n" -"\t\tmodulЫ kontroluje tento podadresАЬ spolu se systИmovou\n" -"\t\tinstalacМ modulЫ bЛhem inicializace.\n" - -#: app/install.c:248 -msgid "" -"\t\tThis subdirectory is used by the GIMP to store \n" -"\t\tuser created and installed scripts. The default gimprc\n" -"\t\tfile checks this subdirectory in addition to the system\n" -"\t\t-wide gimp scripts subdirectory when searching for scripts\n" -msgstr "" -"\t\tTento podadresАЬ je pou╬МvАn programem GIMP k uchovАnМ\n" -"\t\tu╬ivatelem vytvoЬenЩch a instalovanЩch skriptЫ. Dle\n" -"\t\timplicitnМho gimprc souboru se pЬi hledАnМ skriptЫ kontroluje\n" -"\t\ttento podadresАЬ spolu se systИmovou instalacМ gimp skriptЫ.\n" - -#: app/install.c:254 -msgid "" -"\t\tThis subdirectory is used by the GIMP to temporarily\n" -"\t\tstore undo buffers to reduce memory usage. If GIMP is\n" -"\t\tunceremoniously killed, files may persist in this directory\n" -"\t\tof the form: gimp<#>.<#>. These files are useless across\n" -"\t\tGIMP sessions and can be destroyed with impunity.\n" -msgstr "" -"\t\tTento podadresАЬ je pou╬МvАn programem GIMP k doХasnИmu\n" -"\t\tuchovАnМ bufferЫ pro vracenМ, ХМm╬ se u╧etЬМ pamЛ╩.\n" -"\t\tPokud je program GIMP bez ceremonie zabit, mohou zde zbЩt\n" -"\t\tsoubory ve formЛ: gimp<#>.<#>. Ty jsou mezi GIMP sezenМmi\n" -"\t\tzbyteХnИ a mohou bЩt odstranЛny jako smetМ.\n" - -#: app/install.c:263 -msgid "GIMP Installation" -msgstr "Instalace programu GIMP" - -#: app/install.c:268 -msgid "Install" -msgstr "Instalovat" - -#: app/install.c:270 -msgid "Ignore" -msgstr "Ignorovat" - -#. this is a fontset, e.g. multiple comma-separated font definitions -#: app/install.c:295 app/install.c:453 -msgid "-*-helvetica-bold-r-normal-*-*-120-*-*-*-*-*-*,*" -msgstr "-*-helvetica-bold-r-normal-*-*-120-*-*-*-*-*-*,*" - -#. this is a font, provide only one single font definition -#: app/install.c:298 -msgid "-*-helvetica-medium-o-normal-*-*-100-*-*-*-*-*-*" -msgstr "-*-helvetica-medium-o-normal-*-*-100-*-*-*-*-*-*" - -#. this is a fontset, e.g. multiple comma-separated font definitions -#: app/install.c:301 -msgid "-*-helvetica-medium-r-normal-*-*-100-*-*-*-*-*-*,*" -msgstr "-*-helvetica-medium-r-normal-*-*-100-*-*-*-*-*-*,*" - -#: app/install.c:423 -msgid "Installation Log" -msgstr "Protokol o instalaci" - -#: app/install.c:428 -msgid "Continue" -msgstr "PokraХovat" - -#. this is a fontset, e.g. multiple comma-separated font definitions -#: app/install.c:456 -msgid "-*-helvetica-medium-r-normal-*-*-120-*-*-*-*-*-*,*" -msgstr "-*-helvetica-medium-r-normal-*-*-120-*-*-*-*-*-*,*" - -#: app/install.c:462 -msgid "" -"User Installation Log\n" -"\n" +#: app/install.c:736 +#, fuzzy +msgid "User Installation Log" msgstr "" "Protokol o u╬ivatelskИ instalaci\n" "\n" -#: app/install.c:472 -msgid " does not exist. Cannot install.\n" +#: app/install.c:741 +msgid "GIMP Performance Tuning" +msgstr "" + +#: app/install.c:744 +msgid "For optimal GIMP performance, some settings may have to be adjusted." +msgstr "" + +#: app/install.c:751 +msgid "Click \"Continue\" to accept the settings above." +msgstr "" + +#: app/install.c:760 +#, fuzzy +msgid "Monitor Resolution" +msgstr "Rozli╧enМ monitoru zМskat" + +#: app/install.c:763 +msgid "" +"To display images in their natural size, GIMP needs to know your monitor " +"resolution." +msgstr "" + +#: app/install.c:771 +msgid "Click \"Continue\" to start The GIMP." +msgstr "" + +#: app/install.c:845 +#, fuzzy +msgid "does not exist. Cannot install." msgstr " neexistuje. Nelze instalovat.\n" -#: app/install.c:480 -msgid "" -" has invalid permissions.\n" -"Cannot install." +#: app/install.c:857 +#, fuzzy +msgid "has invalid permissions. Cannot install." msgstr "" " mА neplatnА prАva.\n" "Nelze instalovat." -#: app/install.c:514 +#: app/install.c:895 +#, fuzzy msgid "" -"Did you notice any error messages\n" -"in the console window? If not, installation\n" -"was successful! Otherwise, quit and investigate\n" -"the possible reason...\n" +"Did you notice any error messages in the console window?\n" +"If not, installation was successful!\n" +"Otherwise, quit and investigate the possible reason..." msgstr "" "Zaznamenali jste nejakА chybovА hlА╧enМ\n" "na chybovИ konzoli? Pokud ne, instalace byla\n" "ЗspЛ╧nА! Jinak skonХete a odhalte mo╬nЩ dЫvod...\n" -#: app/install.c:546 +#: app/install.c:955 +#, fuzzy msgid "" -"\n" -"Installation successful!\n" +"Did you notice any error messages in the lines above?\n" +"If not, installation was successful!\n" +"Otherwise, quit and investigate the possible reason..." msgstr "" -"\n" -"Instalace probЛhla ЗspЛ╧nЛ!\n" +"Zaznamenali jste nejakА chybovА hlА╧enМ\n" +"na chybovИ konzoli? Pokud ne, instalace byla\n" +"ЗspЛ╧nА! Jinak skonХete a odhalte mo╬nЩ dЫvod...\n" -#: app/install.c:555 -msgid "" -"\n" -"Installation failed. Contact system administrator.\n" +#: app/install.c:969 +msgid "Click \"Continue\" to complete GIMP installation." +msgstr "" + +#: app/install.c:978 +#, fuzzy +msgid "Installation failed. Contact system administrator." msgstr "" "\n" "Instalace selhala. Spojte se se systИmovЩm administrАtorem.\n" +#: app/install.c:999 +msgid "" +"GIMP uses a limited amount of memory to store image data, the so-called\n" +"\"Tile Cache\". You should adjust it's size to fit into memory. Consider\n" +"the amount of memory used by other running processes." +msgstr "" + +#: app/install.c:1015 app/preferences_dialog.c:2102 +msgid "Tile Cache Size:" +msgstr "Velikost vyrovnАvacМ pamЛti dla╬dic:" + +#: app/install.c:1025 +msgid "" +"All image and undo data which doesn't fit into the Tile Cache will be\n" +"written to a swap file. This file should be located on a local filesystem\n" +"with enough free space (several hundred MB). On a UNIX system, you\n" +"may want to use the system-wide temp-dir (\"/tmp\" or \"/var/tmp\")." +msgstr "" + +#: app/install.c:1035 app/preferences_dialog.c:2361 +msgid "Select Swap Dir" +msgstr "Zvolte odklАdacМ adresАЬ" + +#: app/install.c:1041 +#, fuzzy +msgid "Swap Directory:" +msgstr "OdklАdacМ adresАЬ:" + +#: app/install.c:1063 +msgid "" +"GIMP can obtain this information from your X-server.\n" +"However, most X-servers do not return useful values." +msgstr "" + +#: app/install.c:1070 +#, fuzzy, c-format +msgid "Get Resolution from X-server (Currently %d x %d dpi)" +msgstr "(nynМ %d в %d dpi)" + +#: app/install.c:1087 +msgid "Alternatively, you can set the monitor resolution manually." +msgstr "" + +#: app/install.c:1102 +#, fuzzy +msgid "Monitor Resolution X:" +msgstr "Rozli╧enМ monitoru zМskat" + #: app/interface.c:312 msgid "" "Foreground & background colors. The black and white squares reset colors. " @@ -2874,8 +2994,8 @@ msgstr "Rozhran msgid "Guide procedures" msgstr "Procedury prЫvodce" -#: app/internal_procs.c:122 app/preferences_dialog.c:1834 -#: app/preferences_dialog.c:1836 +#: app/internal_procs.c:122 app/preferences_dialog.c:1733 +#: app/preferences_dialog.c:1735 msgid "Interface" msgstr "RozhranМ" @@ -4516,51 +4636,51 @@ msgstr "Posterizace" msgid "Posterize Levels:" msgstr "зrovnЛ posterizace:" -#: app/preferences_dialog.c:245 +#: app/preferences_dialog.c:240 msgid "Error: Levels of undo must be zero or greater." msgstr "Chyba: PoХet ЗrovnМ vracenМ musМ bЩt nula nebo vЛt╧М." -#: app/preferences_dialog.c:251 +#: app/preferences_dialog.c:246 msgid "Error: Marching speed must be 50 or greater." msgstr "Chyba: Rychlost bЛhu ХАry musМ bЩt 50 nebo vЛt╧М." -#: app/preferences_dialog.c:257 +#: app/preferences_dialog.c:252 msgid "Error: Default width must be one or greater." msgstr "Chyba: ImplicitnМ ╧МЬka musМ bЩt jedna nebo vЛt╧М." -#: app/preferences_dialog.c:263 +#: app/preferences_dialog.c:258 msgid "Error: Default height must be one or greater." msgstr "Chyba: ImplicitnМ vЩ╧ka musМ bЩt jedna nebo vЛt╧М." -#: app/preferences_dialog.c:270 +#: app/preferences_dialog.c:265 msgid "Error: Default unit must be within unit range." msgstr "Chyba: ImplicitnМ jednotky musejМ bЩt v rozsahu jednotek." -#: app/preferences_dialog.c:277 +#: app/preferences_dialog.c:272 msgid "Error: Default resolution must not be zero." msgstr "Chyba: ImplicitnМ rozli╧enМ nesmМ bЩt nula." -#: app/preferences_dialog.c:285 +#: app/preferences_dialog.c:280 msgid "Error: Default resolution unit must be within unit range." msgstr "Chyba: ImplicitnМ jednotky rozli╧enМ musejМ bЩt v rozsahu jednotek." -#: app/preferences_dialog.c:292 +#: app/preferences_dialog.c:287 msgid "Error: Monitor resolution must not be zero." msgstr "Chyba: Rozli╧enМ monitoru nesmМ bЩt nula." -#: app/preferences_dialog.c:299 +#: app/preferences_dialog.c:294 msgid "Error: Image title format must not be NULL." msgstr "Chyba: FormАt titulu obrАzku nesmМ bЩt nikdy NULL." -#: app/preferences_dialog.c:306 +#: app/preferences_dialog.c:301 msgid "Error: Number of processors must be between 1 and 30." msgstr "Chyba: PoХet procesorЫ musМ bЩt mezi 1 a 30." -#: app/preferences_dialog.c:356 +#: app/preferences_dialog.c:351 msgid "Save Preferences ?" msgstr "Zapsat pЬedvolby?" -#: app/preferences_dialog.c:377 +#: app/preferences_dialog.c:372 msgid "" "At least one of the changes you made will only\n" "take effect after you restart the GIMP.\n" @@ -4578,494 +4698,474 @@ msgstr "" "nebo je mo╬nИ zvolit volbu 'ZavЬit', pЬiХem╬\n" "se ov╧em dotyХnИ zmЛny neprojevМ." -#: app/preferences_dialog.c:470 +#: app/preferences_dialog.c:465 msgid "You will need to restart GIMP for these changes to take effect." msgstr "Aby se zmЛny projevily, musМte program GIMP restartovat." -#: app/preferences_dialog.c:1068 +#: app/preferences_dialog.c:1002 #, c-format msgid "The default comments is limited to %d characters." msgstr "ImplicitnМ komentАЬ je omezenЩ na %d znakЫ." -#: app/preferences_dialog.c:1492 +#: app/preferences_dialog.c:1424 msgid "Preferences" msgstr "PЬedvolby" #. The categories tree -#: app/preferences_dialog.c:1514 +#: app/preferences_dialog.c:1446 msgid "Categories" msgstr "Kategorie" -#: app/preferences_dialog.c:1542 app/preferences_dialog.c:1544 +#: app/preferences_dialog.c:1474 app/preferences_dialog.c:1476 msgid "New File" msgstr "NovЩ soubor" -#: app/preferences_dialog.c:1555 +#: app/preferences_dialog.c:1487 msgid "Default Image Size and Unit" msgstr "Velikost a jednotky implicitnМho obrАzku" -#: app/preferences_dialog.c:1569 +#: app/preferences_dialog.c:1501 msgid "Width" msgstr "╘МЬka" -#: app/preferences_dialog.c:1571 +#: app/preferences_dialog.c:1503 msgid "Height" msgstr "VЩ╧ka" -#: app/preferences_dialog.c:1601 +#: app/preferences_dialog.c:1533 msgid "Default Image Resolution and Resolution Unit" msgstr "ImplicitnМ rozli╧enМ obrАzku a jednotky rozli╧enМ" -#: app/preferences_dialog.c:1628 app/preferences_dialog.c:2421 +#: app/preferences_dialog.c:1560 app/preferences_dialog.c:2288 msgid "dpi" msgstr "dpi" -#: app/preferences_dialog.c:1675 +#: app/preferences_dialog.c:1607 msgid "Default Image Type:" msgstr "ImplicitnМ typ obrАzku:" -#: app/preferences_dialog.c:1711 app/preferences_dialog.c:2228 -msgid "Bytes" -msgstr "bajtЫ" - -#: app/preferences_dialog.c:1712 app/preferences_dialog.c:2229 -msgid "KiloBytes" -msgstr "kilobajtЫ" - -#: app/preferences_dialog.c:1713 app/preferences_dialog.c:2230 -msgid "MegaBytes" -msgstr "megabajtЫ" - -#: app/preferences_dialog.c:1719 +#: app/preferences_dialog.c:1618 msgid "Maximum Image Size:" msgstr "NejvЛt╧М velikost obrАzku:" -#: app/preferences_dialog.c:1724 app/preferences_dialog.c:1726 +#: app/preferences_dialog.c:1623 app/preferences_dialog.c:1625 msgid "Default Comment" msgstr "ImplicitnМ komentАЬ" -#: app/preferences_dialog.c:1734 +#: app/preferences_dialog.c:1633 msgid "Comment Used for New Images" msgstr "KomentАЬ pou╬itЩ pro novИ obrАzky" -#: app/preferences_dialog.c:1754 app/preferences_dialog.c:1756 +#: app/preferences_dialog.c:1653 app/preferences_dialog.c:1655 msgid "Display" msgstr "ZobrazovАnМ" -#: app/preferences_dialog.c:1764 +#: app/preferences_dialog.c:1663 msgid "Transparency" msgstr "PrЫhlednost" -#: app/preferences_dialog.c:1783 +#: app/preferences_dialog.c:1682 msgid "Light Checks" msgstr "SvЛtlА ╧achovnice" -#: app/preferences_dialog.c:1784 +#: app/preferences_dialog.c:1683 msgid "Mid-Tone Checks" msgstr "StЬednМ ╧achovnice" -#: app/preferences_dialog.c:1785 +#: app/preferences_dialog.c:1684 msgid "Dark Checks" msgstr "TmavА ╧achovnice" -#: app/preferences_dialog.c:1786 +#: app/preferences_dialog.c:1685 msgid "White Only" msgstr "Pouze bМlА" -#: app/preferences_dialog.c:1787 +#: app/preferences_dialog.c:1686 msgid "Gray Only" msgstr "Pouze ╧edА" -#: app/preferences_dialog.c:1788 +#: app/preferences_dialog.c:1687 msgid "Black Only" msgstr "Pouze ХernА" -#: app/preferences_dialog.c:1792 +#: app/preferences_dialog.c:1691 msgid "Transparency Type:" msgstr "Typ prЫhlednosti:" -#: app/preferences_dialog.c:1799 app/preferences_dialog.c:1872 -#: app/preferences_dialog.c:1886 +#: app/preferences_dialog.c:1698 app/preferences_dialog.c:1771 +#: app/preferences_dialog.c:1785 msgid "Small" msgstr "MalА" -#: app/preferences_dialog.c:1800 app/preferences_dialog.c:1873 -#: app/preferences_dialog.c:1887 +#: app/preferences_dialog.c:1699 app/preferences_dialog.c:1772 +#: app/preferences_dialog.c:1786 msgid "Medium" msgstr "StЬednМ" -#: app/preferences_dialog.c:1801 app/preferences_dialog.c:1874 -#: app/preferences_dialog.c:1888 +#: app/preferences_dialog.c:1700 app/preferences_dialog.c:1773 +#: app/preferences_dialog.c:1787 msgid "Large" msgstr "VelkА" -#: app/preferences_dialog.c:1805 +#: app/preferences_dialog.c:1704 msgid "Check Size:" msgstr "Velikost polМ ╧achovnice:" -#: app/preferences_dialog.c:1808 +#: app/preferences_dialog.c:1707 msgid "8-Bit Displays" msgstr "8bitovИ obrazovky" -#: app/preferences_dialog.c:1813 +#: app/preferences_dialog.c:1712 msgid "Install Colormap" msgstr "Instalovat barevnou mapu" -#: app/preferences_dialog.c:1822 +#: app/preferences_dialog.c:1721 msgid "Colormap Cycling" msgstr "Cyklovat barevnou mapu" -#: app/preferences_dialog.c:1871 +#: app/preferences_dialog.c:1770 msgid "Tiny" msgstr "MalИ" -#: app/preferences_dialog.c:1875 +#: app/preferences_dialog.c:1774 msgid "Huge" msgstr "VelkИ" -#: app/preferences_dialog.c:1879 +#: app/preferences_dialog.c:1778 msgid "Preview Size:" msgstr "Velikost nАhledu:" -#: app/preferences_dialog.c:1892 +#: app/preferences_dialog.c:1791 msgid "Nav Preview Size:" msgstr "Velikost navigaХnМho nАhledu:" -#: app/preferences_dialog.c:1902 +#: app/preferences_dialog.c:1801 msgid "Recent Documents List Size:" msgstr "DИlka seznamu pЬede╧lЩch dokumentЫ:" #. Indicators -#: app/preferences_dialog.c:1906 +#: app/preferences_dialog.c:1805 msgid "Toolbox" msgstr "Panel nАstrojЫ" -#: app/preferences_dialog.c:1909 +#: app/preferences_dialog.c:1808 msgid "Display Brush, Pattern and Gradient Indicators" msgstr "ZnАzornit stopu, vzorek a pЬechod na panelu nАstrojЫ" -#: app/preferences_dialog.c:1918 +#: app/preferences_dialog.c:1817 msgid "Dialog Behaviour" msgstr "ChovАnМ dialogu" -#: app/preferences_dialog.c:1920 +#: app/preferences_dialog.c:1819 msgid "Navigation Window per Display" msgstr "NavigaХnМ okno na obrazovku" -#: app/preferences_dialog.c:1929 +#: app/preferences_dialog.c:1828 msgid "Info Window Follows Mouse" msgstr "InformaХnМ okno sleduje my╧" -#: app/preferences_dialog.c:1940 app/preferences_dialog.c:1942 +#: app/preferences_dialog.c:1839 app/preferences_dialog.c:1841 msgid "Help System" msgstr "SystИm nАpovЛdy" -#: app/preferences_dialog.c:1952 +#: app/preferences_dialog.c:1851 msgid "Show Tool Tips" msgstr "Zobrazovat tipy nАstrojЫ" -#: app/preferences_dialog.c:1962 +#: app/preferences_dialog.c:1861 msgid "Context Sensitive Help with \"F1\"" msgstr "KontextovЛ citlivА nАpovЛda s \"F1\"" -#: app/preferences_dialog.c:1971 +#: app/preferences_dialog.c:1870 msgid "Help Browser" msgstr "ProhlМ╬eХ nАpovЛdy" -#: app/preferences_dialog.c:1983 +#: app/preferences_dialog.c:1882 msgid "Internal" msgstr "VnitЬnМ" -#: app/preferences_dialog.c:1984 +#: app/preferences_dialog.c:1883 msgid "Netscape" msgstr "Netscape" -#: app/preferences_dialog.c:1988 +#: app/preferences_dialog.c:1887 msgid "Help Browser to Use:" msgstr "Pou╬itЩ prohlМ╬eХe nАpovЛdy:" -#: app/preferences_dialog.c:1993 app/preferences_dialog.c:1995 +#: app/preferences_dialog.c:1892 app/preferences_dialog.c:1894 msgid "Image Windows" msgstr "Okna obrАzku" -#: app/preferences_dialog.c:2003 +#: app/preferences_dialog.c:1902 msgid "Appearance" msgstr "ZobrazovАnМ" -#: app/preferences_dialog.c:2005 +#: app/preferences_dialog.c:1904 msgid "Use \"Dot for Dot\" by default" msgstr "Pou╬Мt implicitnЛ \"Bod na bod\"" -#: app/preferences_dialog.c:2014 +#: app/preferences_dialog.c:1913 msgid "Resize Window on Zoom" msgstr "MЛnit velikost okna dle zvЛt╧enМ" -#: app/preferences_dialog.c:2023 +#: app/preferences_dialog.c:1922 msgid "Show Rulers" msgstr "Zobrazovat pravМtka" -#: app/preferences_dialog.c:2032 +#: app/preferences_dialog.c:1931 msgid "Show Statusbar" msgstr "Zobrazovat stavovЩ ЬАdek" -#: app/preferences_dialog.c:2056 +#: app/preferences_dialog.c:1955 msgid "Marching Ants Speed:" msgstr "Rychlost bЛhu ХАry:" #. Set the currently used string as "Custom" -#: app/preferences_dialog.c:2064 +#: app/preferences_dialog.c:1963 msgid "Custom" msgstr "VlastnМ" #. set some commonly used format strings -#: app/preferences_dialog.c:2070 +#: app/preferences_dialog.c:1969 msgid "Standard" msgstr "StandardnМ" -#: app/preferences_dialog.c:2075 +#: app/preferences_dialog.c:1974 msgid "Show zoom percentage" msgstr "Zobrazovat procento zvЛt╧enМ" -#: app/preferences_dialog.c:2080 +#: app/preferences_dialog.c:1979 msgid "Show zoom ratio" msgstr "Zobrazovat pomЛr zvЛt╧enМ" -#: app/preferences_dialog.c:2085 +#: app/preferences_dialog.c:1984 msgid "Show reversed zoom ratio" msgstr "Zobrazovat pomЛr zmen╧enМ" -#: app/preferences_dialog.c:2096 +#: app/preferences_dialog.c:1995 msgid "Image Title Format:" msgstr "FormАt popisku okna:" #. End of the title format string -#: app/preferences_dialog.c:2100 +#: app/preferences_dialog.c:1999 msgid "Pointer Movement Feedback" msgstr "ZpЛtnА vazba pohybu ukazovАtka" -#: app/preferences_dialog.c:2103 +#: app/preferences_dialog.c:2002 msgid "Perfect-but-Slow Pointer Tracking" msgstr "DokonalИ, ale pomalИ ЬМzenМ ukazovАtka" -#: app/preferences_dialog.c:2112 +#: app/preferences_dialog.c:2011 msgid "Disable Cursor Updating" msgstr "ZakАzat aktualizaci kurzoru" -#: app/preferences_dialog.c:2124 app/preferences_dialog.c:2126 +#: app/preferences_dialog.c:2023 app/preferences_dialog.c:2025 #: app/tools.c:1080 msgid "Tool Options" msgstr "Volby nАstrojЫ" -#: app/preferences_dialog.c:2134 +#: app/preferences_dialog.c:2033 msgid "Paint Options" msgstr "Volby ╧tЛtce" -#: app/preferences_dialog.c:2137 +#: app/preferences_dialog.c:2036 msgid "Use Global Paint Options" msgstr "Pou╬Мt globАlnМch voleb ╧tЛtce" -#: app/preferences_dialog.c:2152 app/preferences_dialog.c:2154 +#: app/preferences_dialog.c:2051 app/preferences_dialog.c:2053 msgid "Environment" msgstr "ProstЬedМ" -#: app/preferences_dialog.c:2162 +#: app/preferences_dialog.c:2061 msgid "Resource Consumption" msgstr "PЬМjem zdrojЫ" -#: app/preferences_dialog.c:2164 +#: app/preferences_dialog.c:2063 msgid "Conservative Memory Usage" msgstr "╘etrnИ u╬МvАnМ pamЛti" -#: app/preferences_dialog.c:2192 +#: app/preferences_dialog.c:2091 msgid "Levels of Undo:" msgstr "PoХet ЗrovnМ vracenМ:" -#: app/preferences_dialog.c:2236 -msgid "Tile Cache Size:" -msgstr "Velikost vyrovnАvacМ pamЛti dla╬dic:" - -#: app/preferences_dialog.c:2247 +#: app/preferences_dialog.c:2113 msgid "Number of Processors to Use:" msgstr "PoХet u╬МvanЩch procesorЫ:" -#: app/preferences_dialog.c:2251 app/transform_tool.c:215 +#: app/preferences_dialog.c:2117 app/transform_tool.c:215 msgid "Scaling" msgstr "ZmЛna velikosti" -#: app/preferences_dialog.c:2269 +#: app/preferences_dialog.c:2135 msgid "Nearest Neighbor (Fast)" msgstr "Nejbli╬╧М soused (rychlА)" -#: app/preferences_dialog.c:2273 +#: app/preferences_dialog.c:2139 msgid "Cubic (Slow)" msgstr "KubickА (pomalА)" -#: app/preferences_dialog.c:2278 +#: app/preferences_dialog.c:2144 msgid "Interpolation Type:" msgstr "Typ interpolace:" -#: app/preferences_dialog.c:2281 +#: app/preferences_dialog.c:2147 msgid "File Saving" msgstr "ZАpis souboru" -#: app/preferences_dialog.c:2298 app/preferences_dialog.c:2311 +#: app/preferences_dialog.c:2164 app/preferences_dialog.c:2177 msgid "Always" msgstr "V╬dy" -#: app/preferences_dialog.c:2299 +#: app/preferences_dialog.c:2165 msgid "Never" msgstr "Nikdy" -#: app/preferences_dialog.c:2303 +#: app/preferences_dialog.c:2169 msgid "Try to Write a Thumbnail File:" msgstr "Pokusit se zapsat soubor s miniaturou:" -#: app/preferences_dialog.c:2310 +#: app/preferences_dialog.c:2176 msgid "Only when Modified" msgstr "Pouze pЬi zmЛnЛ" -#: app/preferences_dialog.c:2315 +#: app/preferences_dialog.c:2181 msgid "\"File > Save\" Saves the Image:" msgstr "\"Soubor > Zapsat\" zapisuje obrАzek:" -#: app/preferences_dialog.c:2321 +#: app/preferences_dialog.c:2187 msgid "Session Management" msgstr "SprАva sezenМ" -#: app/preferences_dialog.c:2323 +#: app/preferences_dialog.c:2189 msgid "Session" msgstr "SezenМ" -#: app/preferences_dialog.c:2331 +#: app/preferences_dialog.c:2197 msgid "Window Positions" msgstr "Polohy oken" -#: app/preferences_dialog.c:2333 +#: app/preferences_dialog.c:2199 msgid "Save Window Positions on Exit" msgstr "Zapsat polohy oken pЬi skonХenМ" -#: app/preferences_dialog.c:2347 +#: app/preferences_dialog.c:2213 msgid "Clear Saved Window Positions Now" msgstr "Vymazat zapsanИ polohy oken" -#: app/preferences_dialog.c:2355 +#: app/preferences_dialog.c:2221 msgid "Always Try to Restore Session" msgstr "V╬dy se pokusit o obnovu sezenМ" -#: app/preferences_dialog.c:2364 +#: app/preferences_dialog.c:2230 msgid "Devices" msgstr "ZaЬМzenМ" -#: app/preferences_dialog.c:2366 +#: app/preferences_dialog.c:2232 msgid "Save Device Status on Exit" msgstr "Zapsat stav zaЬМzenМ pЬi skonХenМ" -#: app/preferences_dialog.c:2377 app/preferences_dialog.c:2379 +#: app/preferences_dialog.c:2243 app/preferences_dialog.c:2245 msgid "Monitor" msgstr "Monitor" -#: app/preferences_dialog.c:2387 +#: app/preferences_dialog.c:2253 msgid "Get Monitor Resolution" msgstr "Rozli╧enМ monitoru zМskat" -#: app/preferences_dialog.c:2395 +#: app/preferences_dialog.c:2261 #, c-format msgid "(Currently %d x %d dpi)" msgstr "(nynМ %d в %d dpi)" -#: app/preferences_dialog.c:2446 +#: app/preferences_dialog.c:2313 msgid "From X Server" msgstr "z X serveru" -#: app/preferences_dialog.c:2461 +#: app/preferences_dialog.c:2328 msgid "Manually:" msgstr "RuХnЛ:" -#: app/preferences_dialog.c:2474 app/preferences_dialog.c:2476 +#: app/preferences_dialog.c:2341 app/preferences_dialog.c:2343 msgid "Directories" msgstr "AdresАЬe" -#: app/preferences_dialog.c:2493 +#: app/preferences_dialog.c:2360 msgid "Temp Dir:" msgstr "PomocnЩ adresАЬ:" -#: app/preferences_dialog.c:2493 +#: app/preferences_dialog.c:2360 msgid "Select Temp Dir" msgstr "Zvolte pomocnЩ adresАЬ" -#: app/preferences_dialog.c:2494 +#: app/preferences_dialog.c:2361 msgid "Swap Dir:" msgstr "OdklАdacМ adresАЬ:" -#: app/preferences_dialog.c:2494 -msgid "Select Swap Dir" -msgstr "Zvolte odklАdacМ adresАЬ" - -#: app/preferences_dialog.c:2530 +#: app/preferences_dialog.c:2397 msgid "Brushes Directories" msgstr "AdresАЬe stop" -#: app/preferences_dialog.c:2532 +#: app/preferences_dialog.c:2399 msgid "Select Brushes Dir" msgstr "Zvolte adresАЬ stop" -#: app/preferences_dialog.c:2534 +#: app/preferences_dialog.c:2401 msgid "Generated Brushes" msgstr "GenerovanИ stopy" -#: app/preferences_dialog.c:2534 +#: app/preferences_dialog.c:2401 msgid "Generated Brushes Directories" msgstr "AdresАЬe generovanЩch stop" -#: app/preferences_dialog.c:2536 +#: app/preferences_dialog.c:2403 msgid "Select Generated Brushes Dir" msgstr "Zvolte adresАЬ generovanЩch stop" -#: app/preferences_dialog.c:2538 +#: app/preferences_dialog.c:2405 msgid "Patterns Directories" msgstr "AdresАЬe vzorkЫ" -#: app/preferences_dialog.c:2540 +#: app/preferences_dialog.c:2407 msgid "Select Patterns Dir" msgstr "Zvolte adresАЬ vzorkЫ" -#: app/preferences_dialog.c:2542 +#: app/preferences_dialog.c:2409 msgid "Palettes Directories" msgstr "AdresАЬe palet" -#: app/preferences_dialog.c:2544 +#: app/preferences_dialog.c:2411 msgid "Select Palettes Dir" msgstr "Zvolte adresАЬ palet" -#: app/preferences_dialog.c:2546 +#: app/preferences_dialog.c:2413 msgid "Gradients Directories" msgstr "AdresАЬe pЬechodЫ" -#: app/preferences_dialog.c:2548 +#: app/preferences_dialog.c:2415 msgid "Select Gradients Dir" msgstr "Zvolte adresАЬ pЬechodЫ" -#: app/preferences_dialog.c:2550 +#: app/preferences_dialog.c:2417 msgid "Plug-Ins" msgstr "ZАsuvnИ moduly" -#: app/preferences_dialog.c:2550 +#: app/preferences_dialog.c:2417 msgid "Plug-Ins Directories" msgstr "AdresАЬe zАsuvnЩch modulЫ" -#: app/preferences_dialog.c:2552 +#: app/preferences_dialog.c:2419 msgid "Select Plug-Ins Dir" msgstr "Zvolte adresАЬ zАsuvnЩch modulЫ" -#: app/preferences_dialog.c:2554 +#: app/preferences_dialog.c:2421 msgid "Modules" msgstr "Moduly" -#: app/preferences_dialog.c:2554 +#: app/preferences_dialog.c:2421 msgid "Modules Directories" msgstr "AdresАЬe modulЫ" -#: app/preferences_dialog.c:2556 +#: app/preferences_dialog.c:2423 msgid "Select Modules Dir" msgstr "Zvolte adresАЬ modulЫ" @@ -6095,3 +6195,48 @@ msgstr "Vodov #: modules/colorsel_water.c:640 msgid "Color History" msgstr "Historie barev" + +#~ msgid "" +#~ "The GIMP - GNU Image Manipulation Program\n" +#~ "\n" +#~ msgstr "" +#~ "GIMP - GNU program pro prАci s obrАzky\n" +#~ "(GNU Image Manipulation Program)\n" +#~ "\n" + +#~ msgid "For a proper GIMP installation, a subdirectory called\n" +#~ msgstr "PЬi ЬАdnИ instalaci programu GIMP bude vytvoЬen podadresАЬ\n" + +#~ msgid "Install" +#~ msgstr "Instalovat" + +#~ msgid "Ignore" +#~ msgstr "Ignorovat" + +#~ msgid "-*-helvetica-medium-o-normal-*-*-100-*-*-*-*-*-*" +#~ msgstr "-*-helvetica-medium-o-normal-*-*-100-*-*-*-*-*-*" + +#~ msgid "-*-helvetica-medium-r-normal-*-*-100-*-*-*-*-*-*,*" +#~ msgstr "-*-helvetica-medium-r-normal-*-*-100-*-*-*-*-*-*,*" + +#~ msgid "Installation Log" +#~ msgstr "Protokol o instalaci" + +#~ msgid "-*-helvetica-medium-r-normal-*-*-120-*-*-*-*-*-*,*" +#~ msgstr "-*-helvetica-medium-r-normal-*-*-120-*-*-*-*-*-*,*" + +#~ msgid "" +#~ "\n" +#~ "Installation successful!\n" +#~ msgstr "" +#~ "\n" +#~ "Instalace probЛhla ЗspЛ╧nЛ!\n" + +#~ msgid "Bytes" +#~ msgstr "bajtЫ" + +#~ msgid "KiloBytes" +#~ msgstr "kilobajtЫ" + +#~ msgid "MegaBytes" +#~ msgstr "megabajtЫ" diff --git a/po/da.po b/po/da.po index 0a3acd7aea..6b99c154b2 100644 --- a/po/da.po +++ b/po/da.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: gimp 1.1.13\n" -"POT-Creation-Date: 2000-03-03 17:47-0800\n" +"POT-Creation-Date: 2000-03-14 23:09+0100\n" "PO-Revision-Date: 1999-12-17 21:46+01:00\n" "Last-Translator: Kenneth Christiansen \n" "Language-Team: Danish \n" @@ -63,45 +63,45 @@ msgstr "Version %s bragt til dig af" msgid "GIMP Startup" msgstr "GIMP opstart" -#: app/app_procs.c:479 app/gimprc.c:432 +#: app/app_procs.c:479 app/gimprc.c:448 #, c-format msgid "parsing \"%s\"\n" msgstr "fortolker \"%s\"\n" #. initialize the xcf file format routines -#: app/app_procs.c:539 +#: app/app_procs.c:541 msgid "Looking for data files" msgstr "Ser efter datafiler" -#: app/app_procs.c:539 +#: app/app_procs.c:541 msgid "Parasites" msgstr "Parasitter" #. initialize the global parasite table -#: app/app_procs.c:541 app/internal_procs.c:71 app/preferences_dialog.c:2468 +#: app/app_procs.c:543 app/internal_procs.c:71 app/preferences_dialog.c:2397 msgid "Brushes" msgstr "Pensler" #. initialize the list of gimp brushes -#: app/app_procs.c:543 app/internal_procs.c:143 app/preferences_dialog.c:2476 +#: app/app_procs.c:545 app/internal_procs.c:143 app/preferences_dialog.c:2405 msgid "Patterns" msgstr "MЬnstre" #. initialize the list of gimp patterns -#: app/app_procs.c:545 app/preferences_dialog.c:2480 +#: app/app_procs.c:547 app/preferences_dialog.c:2409 msgid "Palettes" msgstr "Paletter" #. initialize the list of gimp palettes -#: app/app_procs.c:547 app/internal_procs.c:113 app/preferences_dialog.c:2484 +#: app/app_procs.c:549 app/internal_procs.c:113 app/preferences_dialog.c:2413 msgid "Gradients" msgstr "Farveovergange" -#: app/app_procs.c:735 +#: app/app_procs.c:737 msgid "Really Quit?" msgstr "Vil du afslutte?" -#: app/app_procs.c:739 +#: app/app_procs.c:741 msgid "" "Some files unsaved.\n" "\n" @@ -111,21 +111,21 @@ msgstr "" "\n" "Afslut GIMP?" -#: app/app_procs.c:740 app/install.c:272 app/install.c:430 +#: app/app_procs.c:742 msgid "Quit" msgstr "Afslut" -#: app/app_procs.c:740 app/brightness_contrast.c:218 app/channel_ops.c:93 +#: app/app_procs.c:742 app/brightness_contrast.c:218 app/channel_ops.c:93 #: app/channels_dialog.c:2463 app/channels_dialog.c:2637 #: app/color_balance.c:275 app/color_notebook.c:125 app/convert.c:506 #: app/curves.c:559 app/file_new_dialog.c:207 app/file_new_dialog.c:357 #: app/gdisplay_color_ui.c:129 app/gdisplay_ops.c:346 app/gimpprogress.c:112 -#: app/global_edit.c:739 app/gradient.c:1769 app/gradient.c:4839 -#: app/gradient.c:5400 app/hue_saturation.c:377 app/interface.c:984 -#: app/layers_dialog.c:3326 app/layers_dialog.c:3517 app/layers_dialog.c:3617 -#: app/layers_dialog.c:3889 app/levels.c:341 app/palette.c:1826 -#: app/posterize.c:201 app/preferences_dialog.c:1469 app/qmask.c:281 -#: app/resize.c:193 app/resize.c:1343 app/threshold.c:275 +#: app/global_edit.c:739 app/gradient.c:1769 app/gradient.c:4841 +#: app/gradient.c:5402 app/hue_saturation.c:377 app/install.c:532 +#: app/interface.c:984 app/layers_dialog.c:3326 app/layers_dialog.c:3517 +#: app/layers_dialog.c:3617 app/layers_dialog.c:3889 app/levels.c:341 +#: app/palette.c:1826 app/posterize.c:201 app/preferences_dialog.c:1434 +#: app/qmask.c:281 app/resize.c:195 app/resize.c:1345 app/threshold.c:275 #: modules/cdisplay_gamma.c:358 msgid "Cancel" msgstr "AnnullИr" @@ -146,130 +146,130 @@ msgstr "Kurve ikke lukket!" msgid "Paintbrush operation failed." msgstr "Malerpensel-operation fejlede." -#: app/blend.c:272 +#: app/blend.c:294 msgid "Offset:" msgstr "Afstand:" -#: app/blend.c:283 +#: app/blend.c:305 msgid "FG to BG (RGB)" msgstr "FG til BG (RGB)" -#: app/blend.c:284 +#: app/blend.c:306 msgid "FG to BG (HSV)" msgstr "FG til BG (HSV)" -#: app/blend.c:285 +#: app/blend.c:307 msgid "FG to Transparent" msgstr "FG til gennemsigtig" -#: app/blend.c:286 +#: app/blend.c:308 #, fuzzy -msgid "Custom from Editor" -msgstr "Egendefineret fra editor" +msgid "Custom Gradient" +msgstr "KopiИr overgang" -#: app/blend.c:290 +#: app/blend.c:312 msgid "Blend:" msgstr "Blanding:" -#: app/blend.c:298 app/gradient.c:533 app/preferences_dialog.c:2209 +#: app/blend.c:320 app/gradient.c:533 app/preferences_dialog.c:2137 msgid "Linear" msgstr "LineФr" -#: app/blend.c:299 +#: app/blend.c:321 msgid "Bi-Linear" msgstr "Bi-lineФr" -#: app/blend.c:300 +#: app/blend.c:322 msgid "Radial" msgstr "Radial" -#: app/blend.c:301 +#: app/blend.c:323 msgid "Square" msgstr "Firkantet" -#: app/blend.c:302 +#: app/blend.c:324 msgid "Conical (symmetric)" msgstr "Konisk (symmetrisk)" -#: app/blend.c:303 +#: app/blend.c:325 msgid "Conical (asymmetric)" msgstr "Konisk (asymmetrisk)" -#: app/blend.c:304 +#: app/blend.c:326 #, fuzzy msgid "Shapeburst (angular)" msgstr "FormbЬrste (angulФr)" -#: app/blend.c:305 +#: app/blend.c:327 #, fuzzy msgid "Shapeburst (spherical)" msgstr "FormbЬrste (spherical FIXME)" -#: app/blend.c:306 +#: app/blend.c:328 #, fuzzy msgid "Shapeburst (dimpled)" msgstr "FormbЬrste (dimpled FIXME)" -#: app/blend.c:307 +#: app/blend.c:329 msgid "Spiral (clockwise)" msgstr "Spiral (med uret)" -#: app/blend.c:308 +#: app/blend.c:330 msgid "Spiral (anticlockwise)" msgstr "Spiral (mod uret)" -#: app/blend.c:312 +#: app/blend.c:334 #, fuzzy msgid "Gradient:" msgstr "Overgang" -#: app/blend.c:320 app/preferences_dialog.c:1808 +#: app/blend.c:342 app/preferences_dialog.c:1769 msgid "None" msgstr "Ingen" -#: app/blend.c:321 +#: app/blend.c:343 #, fuzzy msgid "Sawtooth Wave" msgstr "Savtakket bЬlge" -#: app/blend.c:322 +#: app/blend.c:344 #, fuzzy msgid "Triangular Wave" msgstr "TriangulФr bЬlge" -#: app/blend.c:326 +#: app/blend.c:348 msgid "Repeat:" msgstr "Gentag:" -#: app/blend.c:345 +#: app/blend.c:367 msgid "Adaptive Supersampling" msgstr "" -#: app/blend.c:373 +#: app/blend.c:395 msgid "Max Depth:" msgstr "Maks dybde:" -#: app/blend.c:386 app/bucket_fill.c:127 app/fuzzy_select.c:657 +#: app/blend.c:408 app/bucket_fill.c:127 app/fuzzy_select.c:661 msgid "Threshold:" msgstr "TФrskel:" -#: app/blend.c:413 +#: app/blend.c:435 msgid "Blend: Invalid for indexed images." msgstr "Blanding: Ugyldig for indekserede billeder." -#: app/blend.c:438 +#: app/blend.c:460 msgid "Blend: 0, 0" msgstr "Blanding: 0, 0" -#: app/blend.c:501 +#: app/blend.c:523 msgid "Blend operation failed." msgstr "Blandingsoperation fejlede." -#: app/blend.c:507 +#: app/blend.c:529 msgid "Blending..." msgstr "Blanding..." -#: app/blend.c:585 app/blend.c:595 +#: app/blend.c:607 app/blend.c:617 msgid "Blend: " msgstr "Bland: " @@ -288,13 +288,13 @@ msgstr "Lysstyrke-kontrast virker ikke p #: app/gdisplay_color_ui.c:127 app/gimpui.c:122 app/hue_saturation.c:373 #: app/layers_dialog.c:3324 app/layers_dialog.c:3515 app/layers_dialog.c:3615 #: app/layers_dialog.c:3887 app/levels.c:337 app/module_db.c:281 -#: app/posterize.c:197 app/preferences_dialog.c:1465 app/qmask.c:279 -#: app/resize.c:191 app/resize.c:1343 app/threshold.c:271 +#: app/posterize.c:197 app/preferences_dialog.c:1430 app/qmask.c:279 +#: app/resize.c:193 app/resize.c:1345 app/threshold.c:271 #: modules/cdisplay_gamma.c:351 msgid "OK" msgstr "OK" -#: app/brightness_contrast.c:216 app/by_color_select.c:634 +#: app/brightness_contrast.c:216 app/by_color_select.c:687 #: app/color_balance.c:273 app/curves.c:557 app/file_new_dialog.c:355 #: app/hue_saturation.c:375 app/levels.c:339 app/posterize.c:199 #: app/threshold.c:273 app/tools.c:1086 app/transform_core.c:412 @@ -324,7 +324,7 @@ msgid "Brush Editor" msgstr "Penselredigering" #. The close button -#: app/brush_edit.c:216 app/brush_select.c:278 app/by_color_select.c:636 +#: app/brush_edit.c:216 app/brush_select.c:278 app/by_color_select.c:689 #: app/color_notebook.c:122 app/color_picker.c:297 app/colormap_dialog.i.c:170 #: app/crop.c:1054 app/devices.c:755 app/docindexif.c:105 #: app/errorconsole.c:281 app/gdisplay_ops.c:346 app/gradient.c:801 @@ -338,7 +338,7 @@ msgid "Close" msgstr "Luk" #. the feather radius scale -#: app/brush_edit.c:276 app/color_picker.c:181 app/tool_options.c:200 +#: app/brush_edit.c:276 app/color_picker.c:181 app/tool_options.c:199 msgid "Radius:" msgstr "Radius:" @@ -368,11 +368,11 @@ msgstr "Opdat msgid "No Brushes available" msgstr "Ingen disponible pensler" -#: app/brush_select.c:445 app/layers_dialog.c:372 app/tool_options.c:505 +#: app/brush_select.c:445 app/layers_dialog.c:372 app/tool_options.c:504 msgid "Opacity:" msgstr "Uigennemsigtighed:" -#: app/brush_select.c:453 app/layers_dialog.c:324 app/tool_options.c:529 +#: app/brush_select.c:453 app/layers_dialog.c:324 app/tool_options.c:528 msgid "Mode:" msgstr "Modus:" @@ -406,7 +406,7 @@ msgstr "" msgid "Sorry, this brush can't be deleted." msgstr "" -#: app/bucket_fill.c:147 app/color_picker.c:156 app/tool_options.c:274 +#: app/bucket_fill.c:147 app/color_picker.c:156 app/tool_options.c:273 msgid "Sample Merged" msgstr "PrЬve fusioneret" @@ -436,36 +436,36 @@ msgid "No available patterns for this operation." msgstr "Ingen tilgФngelige mЬnstre for denne operation." #. The shell and main vbox -#: app/by_color_select.c:629 +#: app/by_color_select.c:682 msgid "By Color Selection" msgstr "Ved farvevalg" -#: app/by_color_select.c:685 +#: app/by_color_select.c:738 msgid "Inactive" msgstr "Inaktiv" -#: app/by_color_select.c:693 +#: app/by_color_select.c:746 msgid "Selection Mode" msgstr "Udvalgsmetode" -#: app/by_color_select.c:695 app/paint_funcs.c:100 +#: app/by_color_select.c:748 app/paint_funcs.c:100 msgid "Replace" msgstr "Erstat" -#: app/by_color_select.c:697 app/colormap_dialog.i.c:127 +#: app/by_color_select.c:750 app/colormap_dialog.i.c:127 #: app/gdisplay_color_ui.c:114 msgid "Add" msgstr "LФg til" -#: app/by_color_select.c:699 app/layers_dialog.c:340 app/tool_options.c:904 +#: app/by_color_select.c:752 app/layers_dialog.c:340 app/tool_options.c:904 msgid "Subtract" msgstr "TrФk fra" -#: app/by_color_select.c:701 +#: app/by_color_select.c:754 msgid "Intersect" msgstr "" -#: app/by_color_select.c:713 +#: app/by_color_select.c:766 msgid "Fuzziness Threshold" msgstr "" @@ -483,7 +483,7 @@ msgstr "%s kopi msgid "Selection Mask" msgstr "Udvalgsmaske" -#: app/channel_ops.c:85 app/resize.c:392 +#: app/channel_ops.c:85 app/resize.c:394 msgid "Offset" msgstr "Forskydning" @@ -493,8 +493,8 @@ msgid "Offset X:" msgstr "Forskydning X:" #: app/channel_ops.c:115 app/crop.c:1063 app/file_new_dialog.c:530 -#: app/resize.c:330 app/resize.c:415 app/resize.c:573 app/rotate_tool.c:106 -#: app/scale_tool.c:100 app/shear_tool.c:82 +#: app/install.c:1108 app/resize.c:332 app/resize.c:417 app/resize.c:575 +#: app/rotate_tool.c:106 app/scale_tool.c:100 app/shear_tool.c:82 msgid "Y:" msgstr "Y:" @@ -504,12 +504,12 @@ msgstr "Y:" msgid "Wrap Around" msgstr "Omflydning" -#: app/channel_ops.c:174 app/image_new.c:69 app/image_new.c:223 +#: app/channel_ops.c:174 app/image_new.c:70 app/image_new.c:234 #: app/layers_dialog.c:3422 msgid "Background" msgstr "Baggrund" -#: app/channel_ops.c:175 app/image_new.c:79 app/layers_dialog.c:3424 +#: app/channel_ops.c:175 app/image_new.c:80 app/layers_dialog.c:3424 msgid "Transparent" msgstr "Transparent" @@ -686,19 +686,19 @@ msgstr "Testgennemsnit" msgid "Update Active Color" msgstr "OpdatИr aktive farve" -#: app/color_picker.c:255 app/color_picker.c:265 +#: app/color_picker.c:255 app/color_picker.c:264 msgid "Red:" msgstr "RЬd:" -#: app/color_picker.c:256 app/color_picker.c:266 +#: app/color_picker.c:256 app/color_picker.c:265 msgid "Green:" msgstr "GrЬn:" -#: app/color_picker.c:257 app/color_picker.c:267 +#: app/color_picker.c:257 app/color_picker.c:266 msgid "Blue:" msgstr "BlЕ:" -#: app/color_picker.c:258 app/color_picker.c:264 app/color_picker.c:273 +#: app/color_picker.c:258 app/color_picker.c:267 app/color_picker.c:273 msgid "Alpha:" msgstr "Alfa:" @@ -719,13 +719,13 @@ msgstr "" msgid "Intensity:" msgstr "Intensitet:" -#: app/color_picker.c:633 app/color_picker.c:634 app/color_picker.c:635 -#: app/color_picker.c:636 app/color_picker.c:637 app/color_picker.c:638 -#: app/color_picker.c:639 app/color_picker.c:657 app/color_picker.c:672 -#: app/color_picker.c:690 app/info_window.c:185 app/info_window.c:191 -#: app/info_window.c:197 app/info_window.c:203 app/info_window.c:422 -#: app/info_window.c:423 app/info_window.c:424 app/info_window.c:425 -#: app/info_window.c:447 +#: app/color_picker.c:626 app/color_picker.c:627 app/color_picker.c:628 +#: app/color_picker.c:629 app/color_picker.c:630 app/color_picker.c:631 +#: app/color_picker.c:632 app/color_picker.c:644 app/color_picker.c:651 +#: app/color_picker.c:669 app/color_picker.c:684 app/info_window.c:185 +#: app/info_window.c:191 app/info_window.c:197 app/info_window.c:203 +#: app/info_window.c:422 app/info_window.c:423 app/info_window.c:424 +#: app/info_window.c:425 app/info_window.c:447 msgid "N/A" msgstr "I/T" @@ -934,13 +934,13 @@ msgstr "X oprindelse:" #. the pixel size labels #: app/crop.c:1076 app/file_new_dialog.c:389 app/file_new_dialog.c:407 -#: app/tool_options.c:334 +#: app/tool_options.c:333 msgid "Width:" msgstr "Bredde:" #: app/crop.c:1079 app/file_new_dialog.c:395 app/file_new_dialog.c:413 -#: app/layers_dialog.c:3363 app/resize.c:240 app/resize.c:265 app/resize.c:510 -#: app/scale_tool.c:79 app/scale_tool.c:86 app/tool_options.c:350 +#: app/layers_dialog.c:3363 app/resize.c:242 app/resize.c:267 app/resize.c:512 +#: app/scale_tool.c:79 app/scale_tool.c:86 app/tool_options.c:349 msgid "Height:" msgstr "HЬjde:" @@ -992,7 +992,7 @@ msgid "Load" msgstr "IndlФs" #: app/curves.c:704 app/devices.c:753 app/levels.c:608 app/palette.c:2068 -#: app/preferences_dialog.c:357 app/preferences_dialog.c:1467 +#: app/preferences_dialog.c:357 app/preferences_dialog.c:1432 msgid "Save" msgstr "Gem" @@ -1025,7 +1025,7 @@ msgstr "" msgid "Device Status" msgstr "Enhedsstatus" -#: app/disp_callbacks.c:755 app/global_edit.c:297 app/global_edit.c:303 +#: app/disp_callbacks.c:760 app/global_edit.c:297 app/global_edit.c:303 #: app/global_edit.c:375 msgid "Pasted Layer" msgstr "" @@ -1197,17 +1197,17 @@ msgstr "Billedest msgid "New Image" msgstr "Ny billede" -#: app/file_new_dialog.c:453 app/preferences_dialog.c:1540 -#: app/preferences_dialog.c:1577 +#: app/file_new_dialog.c:453 app/install.c:1093 app/preferences_dialog.c:1505 +#: app/preferences_dialog.c:1542 msgid "Pixels" msgstr "Pixler" #. the resolution labels -#: app/file_new_dialog.c:524 app/resize.c:567 +#: app/file_new_dialog.c:524 app/resize.c:569 msgid "Resolution X:" msgstr "OplЬsning X:" -#: app/file_new_dialog.c:545 app/resize.c:588 +#: app/file_new_dialog.c:545 app/resize.c:590 msgid "pixels/%a" msgstr "pixler/%a" @@ -1240,7 +1240,7 @@ msgstr "" msgid "No Selection." msgstr "Intet valg." -#: app/fileops.c:418 app/fileops.c:1624 app/fileops.c:1731 +#: app/fileops.c:418 app/fileops.c:1629 app/fileops.c:1736 #, fuzzy, c-format msgid "Save failed: %s" msgstr "Fejl under gemning: " @@ -1266,63 +1266,63 @@ msgstr "" msgid "Revert failed." msgstr "Forkast fejlede." -#: app/fileops.c:1240 +#: app/fileops.c:1245 #, fuzzy msgid "(This thumbnail may be out of date)" msgstr "(denne miniature kan vФre forФldet)" -#: app/fileops.c:1241 +#: app/fileops.c:1246 #, fuzzy msgid "(No Information)" msgstr "(ingen information)" -#: app/fileops.c:1251 +#: app/fileops.c:1256 #, fuzzy msgid "(Thumbnail saving is disabled)" msgstr "(miniaturegemning er slЕet fra)" -#: app/fileops.c:1255 +#: app/fileops.c:1260 #, fuzzy msgid "(Could not write thumbnail file)" msgstr "(kunne ikke skrive miniatyrfil)" -#: app/fileops.c:1259 +#: app/fileops.c:1264 msgid "(Thumbnail file not written)" msgstr "" -#: app/fileops.c:1276 +#: app/fileops.c:1281 #, fuzzy msgid "No preview available" msgstr "kan ikke vise resultat" -#: app/fileops.c:1394 +#: app/fileops.c:1399 msgid "(could not make preview)" msgstr "" -#: app/fileops.c:1467 app/fileops.c:1546 +#: app/fileops.c:1472 app/fileops.c:1551 #, fuzzy, c-format msgid "Open failed: %s" msgstr "Fejl under Еbning: " -#: app/fileops.c:1602 +#: app/fileops.c:1607 #, c-format msgid "%s is an irregular file (%s)" msgstr "%s er en irregulФr fil (%s)" -#: app/fileops.c:1670 +#: app/fileops.c:1675 #, c-format msgid "%s exists, overwrite?" msgstr "%s eksisterer, overskriv?" -#: app/fileops.c:1674 +#: app/fileops.c:1679 msgid "File Exists!" msgstr "Filen eksisterer!" -#: app/fileops.c:1680 +#: app/fileops.c:1685 msgid "Yes" msgstr "Ja" -#: app/fileops.c:1682 +#: app/fileops.c:1687 msgid "No" msgstr "Nej" @@ -1330,13 +1330,13 @@ msgstr "Nej" msgid "Flip Tool" msgstr "" -#: app/flip_tool.c:95 app/preferences_dialog.c:1591 -#: app/preferences_dialog.c:2355 +#: app/flip_tool.c:95 app/preferences_dialog.c:1556 +#: app/preferences_dialog.c:2284 msgid "Horizontal" msgstr "Vandret" -#: app/flip_tool.c:97 app/preferences_dialog.c:1593 -#: app/preferences_dialog.c:2357 +#: app/flip_tool.c:97 app/preferences_dialog.c:1558 +#: app/preferences_dialog.c:2286 msgid "Vertical" msgstr "Lodret" @@ -1357,7 +1357,7 @@ msgstr "" msgid "RGB-empty" msgstr "RGB-tom" -#: app/gdisplay.c:217 app/image_new.c:53 app/preferences_dialog.c:1637 +#: app/gdisplay.c:217 app/image_new.c:54 app/preferences_dialog.c:1602 msgid "RGB" msgstr "RGB" @@ -1484,23 +1484,23 @@ msgstr "" msgid "Failed to load pixmap brush." msgstr "" -#: app/gimpdrawable.c:168 +#: app/gimpdrawable.c:166 msgid "Can't fill unknown image type." msgstr "" -#: app/gimpdrawable.c:512 +#: app/gimpdrawable.c:498 msgid "parasite attach to drawable" msgstr "" -#: app/gimpdrawable.c:548 +#: app/gimpdrawable.c:533 msgid "detach parasite from drawable" msgstr "" -#: app/gimpdrawable.c:770 +#: app/gimpdrawable.c:740 msgid "unnamed" msgstr "unavngivet" -#: app/gimpdrawable.c:787 +#: app/gimpdrawable.c:757 #, c-format msgid "Layer type %d not supported." msgstr "" @@ -1512,79 +1512,79 @@ msgid "" "you don't have GtkXmHTML installed." msgstr "" -#: app/gimpimage.c:1154 +#: app/gimpimage.c:1176 msgid "attach parasite to image" msgstr "" -#: app/gimpimage.c:1177 +#: app/gimpimage.c:1201 msgid "detach parasite from image" msgstr "" -#: app/gimpimage.c:2232 +#: app/gimpimage.c:2305 msgid "Layer cannot be raised any further" msgstr "" -#: app/gimpimage.c:2258 +#: app/gimpimage.c:2333 msgid "Layer cannot be lowered any further" msgstr "" -#: app/gimpimage.c:2282 +#: app/gimpimage.c:2359 msgid "Layer is already on top" msgstr "Lag er allerede Ьverst" -#: app/gimpimage.c:2288 +#: app/gimpimage.c:2365 msgid "Can't raise Layer without alpha" msgstr "" -#: app/gimpimage.c:2315 +#: app/gimpimage.c:2393 msgid "Layer is already on bottom" msgstr "" -#: app/gimpimage.c:2370 +#: app/gimpimage.c:2448 msgid "BG has no alpha, layer was placed above" msgstr "" -#: app/gimpimage.c:2439 +#: app/gimpimage.c:2519 msgid "" "There are not enough visible layers for a merge.\n" "There must be at least two." msgstr "" -#: app/gimpimage.c:2519 +#: app/gimpimage.c:2603 msgid "There are not enough visible layers for a merge down." msgstr "" -#: app/gimpimage.c:2915 +#: app/gimpimage.c:3005 msgid "" "Unable to add a layer mask since\n" "the layer already has one." msgstr "" -#: app/gimpimage.c:2919 +#: app/gimpimage.c:3009 msgid "" "Unable to add a layer mask to a\n" "layer in an indexed image." msgstr "" -#: app/gimpimage.c:2923 +#: app/gimpimage.c:3013 msgid "" "Cannot add layer mask to a layer\n" "with no alpha channel." msgstr "" -#: app/gimpimage.c:2930 +#: app/gimpimage.c:3020 msgid "Cannot add layer mask of different dimensions than specified layer." msgstr "" -#: app/gimpimage.c:3033 +#: app/gimpimage.c:3127 msgid "Channel cannot be raised any further" msgstr "" -#: app/gimpimage.c:3082 +#: app/gimpimage.c:3178 msgid "Channel cannot be lowered any further" msgstr "" -#: app/gimpimage.c:3288 app/palette.c:364 app/palette.c:941 app/palette.c:1077 +#: app/gimpimage.c:3398 app/palette.c:364 app/palette.c:941 app/palette.c:1077 #: app/palette.c:2022 app/palette.c:2749 app/palette.c:2881 msgid "Untitled" msgstr "Unavngivet" @@ -1597,45 +1597,45 @@ msgstr "Fremgang" msgid "Please wait..." msgstr "" -#: app/gimprc.c:401 app/plug_in.c:304 +#: app/gimprc.c:415 app/plug_in.c:304 msgid "Resource configuration" msgstr "Resursekonfiguration" -#: app/gimprc.c:451 +#: app/gimprc.c:467 #, c-format msgid "error parsing: \"%s\"\n" msgstr "" -#: app/gimprc.c:452 +#: app/gimprc.c:468 #, c-format msgid " at line %d column %d\n" msgstr " ved linie %d kolonne %d\n" -#: app/gimprc.c:453 +#: app/gimprc.c:469 #, c-format msgid " unexpected token: %s\n" msgstr "" -#: app/gimprc.c:1455 +#: app/gimprc.c:1473 msgid "error parsing pluginrc" msgstr "" -#: app/gimprc.c:2832 +#: app/gimprc.c:2866 #, c-format msgid "Can't open %s; %s" msgstr "Kan ikke Еbne %s; %s" -#: app/gimprc.c:2851 +#: app/gimprc.c:2885 #, c-format msgid "Can't rename %s to %s.old; %s" msgstr "Kan ikke omdЬbe %s til %s.old; %s" -#: app/gimprc.c:2857 +#: app/gimprc.c:2891 #, c-format msgid "Couldn't reopen %s\n" msgstr "Kunne ikke genЕbne %s\n" -#: app/gimprc.c:2869 +#: app/gimprc.c:2903 #, c-format msgid "Can't write to %s; %s" msgstr "Kan ikke skrive til %s; %s" @@ -1665,7 +1665,7 @@ msgstr "" msgid "pixel" msgstr "pixel" -#: app/gimpunit.c:59 app/measure.c:454 app/measure.c:458 app/paint_core.c:498 +#: app/gimpunit.c:59 app/measure.c:454 app/measure.c:458 app/paint_core.c:511 msgid "pixels" msgstr "pixler" @@ -1908,7 +1908,7 @@ msgstr "" msgid "Distance: %0.6f" msgstr "" -#: app/gradient.c:3387 app/gradient.c:4448 +#: app/gradient.c:3387 app/gradient.c:4450 msgid "Left endpoint's color" msgstr "" @@ -1928,7 +1928,7 @@ msgstr "" msgid "Save to" msgstr "Gem til" -#: app/gradient.c:3429 app/gradient.c:4526 +#: app/gradient.c:3429 app/gradient.c:4528 msgid "Right endpoint's color" msgstr "" @@ -1956,7 +1956,7 @@ msgstr "" msgid "Split segment at midpoint" msgstr "" -#: app/gradient.c:3734 app/gradient.c:4829 +#: app/gradient.c:3734 app/gradient.c:4831 msgid "Split segment uniformly" msgstr "" @@ -1976,7 +1976,7 @@ msgstr "" msgid "Flip segment" msgstr "" -#: app/gradient.c:3744 app/gradient.c:5390 +#: app/gradient.c:3744 app/gradient.c:5392 msgid "Replicate segment" msgstr "" @@ -1992,7 +1992,7 @@ msgstr "" msgid "Split segments at midpoints" msgstr "" -#: app/gradient.c:3755 app/gradient.c:4830 +#: app/gradient.c:3755 app/gradient.c:4832 msgid "Split segments uniformly" msgstr "" @@ -2012,7 +2012,7 @@ msgstr "" msgid "Flip selection" msgstr "" -#: app/gradient.c:3765 app/gradient.c:5391 +#: app/gradient.c:3765 app/gradient.c:5393 msgid "Replicate selection" msgstr "" @@ -2025,49 +2025,49 @@ msgstr "FG farve" msgid "RGBA (%0.3f, %0.3f, %0.3f, %0.3f)" msgstr "RGBA (%0.3f, %0.3f, %0.3f, %0.3f)" -#: app/gradient.c:4615 app/gradient.c:4685 +#: app/gradient.c:4617 app/gradient.c:4687 msgid "(Varies)" msgstr "(Varierer)" -#: app/gradient.c:4837 +#: app/gradient.c:4839 msgid "Split" msgstr "Opdel" #. Instructions -#: app/gradient.c:4851 +#: app/gradient.c:4853 msgid "Please select the number of uniform parts" msgstr "" -#: app/gradient.c:4857 +#: app/gradient.c:4859 msgid "in which you want to split the selected segment" msgstr "" -#: app/gradient.c:4858 +#: app/gradient.c:4860 msgid "in which you want to split the segments in the selection" msgstr "" -#: app/gradient.c:5218 +#: app/gradient.c:5220 msgid "Blend endpoints' colors" msgstr "" -#: app/gradient.c:5230 +#: app/gradient.c:5232 msgid "Blend endpoints' opacity" msgstr "" -#: app/gradient.c:5398 +#: app/gradient.c:5400 msgid "Replicate" msgstr "" #. Instructions -#: app/gradient.c:5411 +#: app/gradient.c:5413 msgid "Please select the number of times" msgstr "" -#: app/gradient.c:5416 +#: app/gradient.c:5418 msgid "you want to replicate the selected segment" msgstr "" -#: app/gradient.c:5417 +#: app/gradient.c:5419 msgid "you want to replicate the selection" msgstr "" @@ -2171,45 +2171,45 @@ msgstr "" msgid "Saturation" msgstr "MФtning" -#: app/image_new.c:58 app/info_window.c:65 app/info_window.c:534 -#: app/preferences_dialog.c:1638 +#: app/image_new.c:59 app/info_window.c:65 app/info_window.c:534 +#: app/preferences_dialog.c:1603 msgid "Grayscale" msgstr "GrЕtone" -#: app/image_new.c:64 app/layers_dialog.c:3421 +#: app/image_new.c:65 app/layers_dialog.c:3421 msgid "Foreground" msgstr "Forgrund" -#: app/image_new.c:74 app/layers_dialog.c:3423 +#: app/image_new.c:75 app/layers_dialog.c:3423 msgid "White" msgstr "Hvid" -#: app/image_new.c:262 +#: app/image_new.c:273 #, c-format msgid "%d Bytes" msgstr "%d bytes" -#: app/image_new.c:264 +#: app/image_new.c:275 #, c-format msgid "%.2f KB" msgstr "%.2f Kb" -#: app/image_new.c:266 +#: app/image_new.c:277 #, c-format msgid "%.1f KB" msgstr "%.1f Kb" -#: app/image_new.c:268 +#: app/image_new.c:279 #, c-format msgid "%d KB" msgstr "%d Kb" -#: app/image_new.c:270 +#: app/image_new.c:281 #, c-format msgid "%.2f MB" msgstr "%.2f Mb" -#: app/image_new.c:272 +#: app/image_new.c:283 #, c-format msgid "%.1f MB" msgstr "%.1f Mb" @@ -2232,8 +2232,8 @@ msgid "" "Click to open the Gradients Dialog." msgstr "" -#: app/info_dialog.c:181 app/preferences_dialog.c:1782 -#: app/preferences_dialog.c:1888 +#: app/info_dialog.c:181 app/preferences_dialog.c:1743 +#: app/preferences_dialog.c:1849 msgid "General" msgstr "Generelt" @@ -2366,311 +2366,400 @@ msgstr "Just msgid "Shape" msgstr "Form" -#: app/install.c:83 +#: app/install.c:95 msgid "The GIMP is not properly installed for the current user\n" msgstr "GIMP er ikke installeret korrekt for nuvФrende bruger\n" -#: app/install.c:84 +#: app/install.c:96 msgid "" "User installation was skipped because the '--nointerface' flag was " "encountered\n" msgstr "" -#: app/install.c:85 +#: app/install.c:97 msgid "" "To perform user installation, run the GIMP without the '--nointerface' flag\n" msgstr "" -#: app/install.c:113 +#: app/install.c:142 msgid "" -"The GIMP - GNU Image Manipulation Program\n" -"\n" -msgstr "" -"GIMP'en - GNU Billede Manipulerings Program\n" -"\n" - -#: app/install.c:118 -msgid "" -"This program is free software; you can redistribute it and/or modify\n" -"it under the terms of the GNU General Public License as published by\n" -"the Free Software Foundation; either version 2 of the License, or\n" -"(at your option) any later version.\n" +"The gimprc is used to store personal preferences\n" +"that affect GIMP's default behavior.\n" +"Paths to search for brushes, palettes, gradients,\n" +"patterns, plug-ins and modules can also configured here." msgstr "" -#: app/install.c:123 +#: app/install.c:149 msgid "" -"This program is distributed in the hope that it will be useful,\n" -"but WITHOUT ANY WARRANTY; without even the implied warranty of\n" -"MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n" -"See the GNU General Public License for more details.\n" +"GIMP uses an additional gtkrc file so you can\n" +"configure it to look differently than other GTK apps." msgstr "" -#: app/install.c:128 +#: app/install.c:154 msgid "" -"You should have received a copy of the GNU General Public License\n" -"along with this program; if not, write to the Free Software\n" -"Foundation, Inc., 59 Temple Place - Suite 330, Boston,\n" -"MA 02111-1307, USA.\n" -msgstr "" - -#: app/install.c:134 -msgid "" -"Personal GIMP Installation\n" -"\n" -msgstr "" -"Personlig GIMP Installation\n" -"\n" - -#: app/install.c:135 -msgid "For a proper GIMP installation, a subdirectory called\n" -msgstr "" - -#. will be replaced with gimp_directory() -#: app/install.c:137 -msgid "" -" needs to be created. This\n" -"subdirectory will contain a number of important files:\n" -"\n" -msgstr "" - -#: app/install.c:141 -msgid "" -"\t\tThe gimprc is used to store personal preferences\n" -"\t\tthat affect GIMP's default behavior.\n" -"\t\tPaths to search for brushes, palettes, gradients,\n" -"\t\tpatterns, plug-ins and modules can also configured here.\n" -msgstr "" - -#: app/install.c:147 -msgid "" -"\t\tPlug-ins and extensions are external programs run by\n" -"\t\tthe GIMP which provide additional functionality.\n" -"\t\tThese programs are searched for at run-time and\n" -"\t\tinformation about their functionality and mod-times\n" -"\t\tis cached in this file. This file is intended to\n" -"\t\tbe GIMP-readable only, and should not be edited.\n" -msgstr "" - -#: app/install.c:155 -msgid "" -"\t\tKey shortcuts can be dynamically redefined in The GIMP.\n" -"\t\tThe menurc is a dump of your configuration so it can.\n" -"\t\tbe remembered for the next session. You may edit this\n" -"\t\tfile if you wish, but it is much easier to define the\n" -"\t\tkeys from within The GIMP. Deleting this file will\n" -"\t\trestore the default shortcuts.\n" +"Plug-ins and extensions are external programs run by\n" +"the GIMP which provide additional functionality.\n" +"These programs are searched for at run-time and\n" +"information about their functionality and mod-times\n" +"is cached in this file. This file is intended to\n" +"be GIMP-readable only, and should not be edited." msgstr "" #: app/install.c:163 msgid "" -"\t\tThe sessionrc is used to store what dialog windows were\n" -"\t\topen the last time you quit The GIMP. You can configure\n" -"\t\tThe GIMP to reopen these dialogs at the saved position.\n" +"Key shortcuts can be dynamically redefined in The GIMP.\n" +"The menurc is a dump of your configuration so it can.\n" +"be remembered for the next session. You may edit this\n" +"file if you wish, but it is much easier to define the\n" +"keys from within The GIMP. Deleting this file will\n" +"restore the default shortcuts." msgstr "" -#: app/install.c:168 +#: app/install.c:172 msgid "" -"\t\tThe unitrc is used to store your user units database.\n" -"\t\tYou can define additional units and use them just\n" -"\t\tlike you use the built-in units inches, millimeters,\n" -"\t\tpoints and picas. This file is overwritten each time\n" -"\t\tyou quit the GIMP.\n" +"The sessionrc is used to store what dialog windows were\n" +"open the last time you quit The GIMP. You can configure\n" +"The GIMP to reopen these dialogs at the saved position." msgstr "" -#: app/install.c:175 +#: app/install.c:178 msgid "" -"\t\tThis is a subdirectory which can be used to store\n" -"\t\tuser defined brushes. The default gimprc file\n" -"\t\tchecks this subdirectory in addition to the system-\n" -"\t\twide gimp brushes installation when searching for\n" -"\t\tbrushes.\n" +"The unitrc is used to store your user units database.\n" +"You can define additional units and use them just\n" +"like you use the built-in units inches, millimeters,\n" +"points and picas. This file is overwritten each time\n" +"you quit the GIMP." msgstr "" -#: app/install.c:182 +#: app/install.c:186 msgid "" -"\t\tThis is a subdirectory which is used to store brushes\n" -"\t\tthat are created with the brush editor. The default\n" -"\t\tgimprc file checks this subdirectory when searching for\n" -"\t\tgenerated brushes.\n" +"This is a subdirectory which can be used to store\n" +"user defined brushes. The default gimprc file\n" +"checks this subdirectory in addition to the system-\n" +"wide gimp brushes installation when searching for\n" +"brushes." msgstr "" -#: app/install.c:188 +#: app/install.c:194 msgid "" -"\t\tThis is a subdirectory which can be used to store\n" -"\t\tuser defined gradients. The default gimprc file\n" -"\t\tchecks this subdirectory in addition to the system-\n" -"\t\twide gimp gradients installation when searching for\n" -"\t\tgradients.\n" +"This is a subdirectory which is used to store brushes\n" +"that are created with the brush editor. The default\n" +"gimprc file checks this subdirectory when searching for\n" +"generated brushes." msgstr "" -#: app/install.c:195 +#: app/install.c:201 msgid "" -"\t\tThis is a subdirectory which can be used to store\n" -"\t\tuser defined figures to be used by the gfig plug-in.\n" -"\t\tThe default gimprc file checks this subdirectory in\n" -"\t\taddition to the systemwide gimp gfig installation\n" -"\t\twhen searching for gfig figures.\n" -msgstr "" - -#: app/install.c:202 -msgid "" -"\t\tThis is a subdirectory which can be used to store\n" -"\t\tuser defined gflares to be used by the gflare plug-in.\n" -"\t\tThe default gimprc file checks this subdirectory in\n" -"\t\taddition to the systemwide gimp gflares installation\n" -"\t\twhen searching for gflares.\n" +"This is a subdirectory which can be used to store\n" +"user defined gradients. The default gimprc file\n" +"checks this subdirectory in addition to the system-\n" +"wide gimp gradients installation when searching for\n" +"gradients." msgstr "" #: app/install.c:209 msgid "" -"\t\tThis is a subdirectory which can be used to store\n" -"\t\tuser defined fractals to be used by the FractalExplorer\n" -"\t\tplug-in. The default gimprc file checks this subdirectory in\n" -"\t\taddition to the systemwide gimp FractalExplorer installation\n" -"\t\twhen searching for fractals.\n" +"This is a subdirectory which can be used to store\n" +"user defined palettes. The default gimprc file\n" +"checks only this subdirectory (not the system-wide\n" +"installation) when searching for palettes. During\n" +"installation, the system palettes will be copied\n" +"here. This is done to allow modifications made to\n" +"palettes during GIMP execution to persist across\n" +"sessions." msgstr "" -#: app/install.c:216 +#: app/install.c:220 msgid "" -"\t\tThis is a subdirectory which can be used to store\n" -"\t\tuser defined palettes. The default gimprc file\n" -"\t\tchecks only this subdirectory (not the system-wide\n" -"\t\tinstallation) when searching for palettes. During\n" -"\t\tinstallation, the system palettes will be copied\n" -"\t\there. This is done to allow modifications made to\n" -"\t\tpalettes during GIMP execution to persist across\n" -"\t\tsessions.\n" +"This is a subdirectory which can be used to store\n" +"user defined patterns. The default gimprc file\n" +"checks this subdirectory in addition to the system-\n" +"wide gimp patterns installation when searching for\n" +"patterns." msgstr "" -#: app/install.c:226 +#: app/install.c:228 msgid "" -"\t\tThis is a subdirectory which can be used to store\n" -"\t\tuser defined patterns. The default gimprc file\n" -"\t\tchecks this subdirectory in addition to the system-\n" -"\t\twide gimp patterns installation when searching for\n" -"\t\tpatterns.\n" +"This is a subdirectory which can be used to store\n" +"user created, temporary, or otherwise non-system-\n" +"supported plug-ins. The default gimprc file\n" +"checks this subdirectory in addition to the system-\n" +"wide GIMP plug-in directories when searching for\n" +"plug-ins." msgstr "" -#: app/install.c:233 +#: app/install.c:237 msgid "" -"\t\tThis is a subdirectory which can be used to store\n" -"\t\tuser created, temporary, or otherwise non-system-\n" -"\t\tsupported plug-ins. The default gimprc file\n" -"\t\tchecks this subdirectory in addition to the system-\n" -"\t\twide GIMP plug-in directories when searching for\n" -"\t\tplug-ins.\n" +"This subdirectory can be used to store user created,\n" +"temporary, or otherwise non-system-supported DLL modules.\n" +"The default gimprc file checks this subdirectory\n" +"in addition to the system-wide GIMP module directory\n" +"when searching for modules to load when initializing." msgstr "" -#: app/install.c:241 +#: app/install.c:245 msgid "" -"\t\tThis subdirectory can be used to store user created,\n" -"\t\ttemporary, or otherwise non-system-supported DLL modules.\n" -"\t\tThe default gimprc file checks this subdirectory\n" -"\t\tin addition to the system-wide GIMP module directory\n" -"\t\twhen searching for modules to load when initializing.\n" +"This subdirectory is used by the GIMP to store \n" +"user created and installed scripts. The default gimprc\n" +"file checks this subdirectory in addition to the system-\n" +"wide gimp scripts subdirectory when searching for scripts" msgstr "" -#: app/install.c:248 +#: app/install.c:252 msgid "" -"\t\tThis subdirectory is used by the GIMP to store \n" -"\t\tuser created and installed scripts. The default gimprc\n" -"\t\tfile checks this subdirectory in addition to the system\n" -"\t\t-wide gimp scripts subdirectory when searching for scripts\n" +"This subdirectory is used by the GIMP to temporarily\n" +"store undo buffers to reduce memory usage. If GIMP is\n" +"unceremoniously killed, files may persist in this directory\n" +"of the form: gimp<#>.<#>. These files are useless across\n" +"GIMP sessions and can be destroyed with impunity." msgstr "" -#: app/install.c:254 +#: app/install.c:260 msgid "" -"\t\tThis subdirectory is used by the GIMP to temporarily\n" -"\t\tstore undo buffers to reduce memory usage. If GIMP is\n" -"\t\tunceremoniously killed, files may persist in this directory\n" -"\t\tof the form: gimp<#>.<#>. These files are useless across\n" -"\t\tGIMP sessions and can be destroyed with impunity.\n" +"This subdirectory is used to store parameter files for\n" +"the Curves tool." msgstr "" -#: app/install.c:263 -msgid "GIMP Installation" -msgstr "GIMP Installation" - -#: app/install.c:268 -msgid "Install" -msgstr "InstallИr" +#: app/install.c:265 +msgid "" +"This subdirectory is used to store parameter files for\n" +"the Levels tool." +msgstr "" #: app/install.c:270 -msgid "Ignore" -msgstr "IgnorИr" - -#. this is a fontset, e.g. multiple comma-separated font definitions -#: app/install.c:295 app/install.c:453 -msgid "-*-helvetica-bold-r-normal-*-*-120-*-*-*-*-*-*,*" +msgid "" +"This is a subdirectory which can be used to store\n" +"user defined fractals to be used by the FractalExplorer\n" +"plug-in. The default gimprc file checks this subdirectory in\n" +"addition to the systemwide gimp FractalExplorer installation\n" +"when searching for fractals." msgstr "" -#. this is a font, provide only one single font definition -#: app/install.c:298 -msgid "-*-helvetica-medium-o-normal-*-*-100-*-*-*-*-*-*" +#: app/install.c:278 +msgid "" +"This is a subdirectory which can be used to store\n" +"user defined figures to be used by the gfig plug-in.\n" +"The default gimprc file checks this subdirectory in\n" +"addition to the systemwide gimp gfig installation\n" +"when searching for gfig figures." msgstr "" -#. this is a fontset, e.g. multiple comma-separated font definitions -#: app/install.c:301 -msgid "-*-helvetica-medium-r-normal-*-*-100-*-*-*-*-*-*,*" +#: app/install.c:286 +msgid "" +"This is a subdirectory which can be used to store\n" +"user defined gflares to be used by the gflare plug-in.\n" +"The default gimprc file checks this subdirectory in\n" +"addition to the systemwide gimp gflares installation\n" +"when searching for gflares." msgstr "" -#: app/install.c:423 -msgid "Installation Log" -msgstr "Installationslog" +#: app/install.c:294 +msgid "" +"This is a subdirectory which can be used to store\n" +"user defined data to be used by the Gimpressionist\n" +"plug-in. The default gimprc file checks this subdirectory in\n" +"addition to the systemwide gimp Gimpressionist installation\n" +"when searching for data." +msgstr "" -#: app/install.c:428 +#: app/install.c:525 +#, fuzzy +msgid "GIMP User Installation" +msgstr "GIMP Installation" + +#: app/install.c:530 msgid "Continue" msgstr "ForsФt" #. this is a fontset, e.g. multiple comma-separated font definitions -#: app/install.c:456 -msgid "-*-helvetica-medium-r-normal-*-*-120-*-*-*-*-*-*,*" +#: app/install.c:560 +msgid "-*-helvetica-bold-r-normal-*-*-240-*-*-*-*-*-*,*" msgstr "" -#: app/install.c:462 +#: app/install.c:578 +#, fuzzy msgid "" -"User Installation Log\n" +"Welcome to\n" +"The GIMP User Installation" +msgstr "GIMP Installation" + +#: app/install.c:582 +msgid "" +"The GIMP - GNU Image Manipulation Program\n" +"Copyright (C) 1995-2000\n" +"Spencer Kimball, Peter Mattis and the GIMP Development Team." +msgstr "" + +#: app/install.c:591 +msgid "" +"This program is free software; you can redistribute it and/or modify\n" +"it under the terms of the GNU General Public License as published by\n" +"the Free Software Foundation; either version 2 of the License, or\n" +"(at your option) any later version." +msgstr "" + +#: app/install.c:596 +msgid "" +"This program is distributed in the hope that it will be useful,\n" +"but WITHOUT ANY WARRANTY; without even the implied warranty of\n" +"MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n" +"See the GNU General Public License for more details." +msgstr "" + +#: app/install.c:601 +msgid "" +"You should have received a copy of the GNU General Public License\n" +"along with this program; if not, write to the Free Software\n" +"Foundation, Inc., 59 Temple Place - Suite 330, Boston,\n" +"MA 02111-1307, USA." +msgstr "" + +#: app/install.c:607 +msgid "Click \"Continue\" to enter the GIMP user installation." +msgstr "" + +#: app/install.c:633 +#, fuzzy +msgid "Personal GIMP Directory" +msgstr "" +"Personlig GIMP Installation\n" "\n" + +#: app/install.c:650 +msgid "" +"For a proper GIMP installation, a subdirectory needs to be created.\n" +"This subdirectory will contain a number of important files." +msgstr "" + +#: app/install.c:653 +msgid "" +"Click on one of the files or subdirectories in the tree\n" +"to get more information about the selected item." +msgstr "" + +#: app/install.c:656 +msgid "Click \"Continue\" to create your personal GIMP directory." +msgstr "" + +#: app/install.c:736 +#, fuzzy +msgid "User Installation Log" msgstr "" "Bruger installationslog\n" "\n" -#: app/install.c:472 -msgid " does not exist. Cannot install.\n" +#: app/install.c:741 +msgid "GIMP Performance Tuning" +msgstr "" + +#: app/install.c:744 +msgid "For optimal GIMP performance, some settings may have to be adjusted." +msgstr "" + +#: app/install.c:751 +msgid "Click \"Continue\" to accept the settings above." +msgstr "" + +#: app/install.c:760 +#, fuzzy +msgid "Monitor Resolution" +msgstr "Hent oplЬsning for monitor" + +#: app/install.c:763 +msgid "" +"To display images in their natural size, GIMP needs to know your monitor " +"resolution." +msgstr "" + +#: app/install.c:771 +msgid "Click \"Continue\" to start The GIMP." +msgstr "" + +#: app/install.c:845 +#, fuzzy +msgid "does not exist. Cannot install." msgstr " eksisterer ikke. Kan ikke installere.\n" -#: app/install.c:480 -msgid "" -" has invalid permissions.\n" -"Cannot install." +#: app/install.c:857 +#, fuzzy +msgid "has invalid permissions. Cannot install." msgstr "" " har ugyldige tilladelser.\n" "Kan ikke installere." -#: app/install.c:514 +#: app/install.c:895 msgid "" -"Did you notice any error messages\n" -"in the console window? If not, installation\n" -"was successful! Otherwise, quit and investigate\n" -"the possible reason...\n" +"Did you notice any error messages in the console window?\n" +"If not, installation was successful!\n" +"Otherwise, quit and investigate the possible reason..." msgstr "" -#: app/install.c:546 +#: app/install.c:955 msgid "" -"\n" -"Installation successful!\n" +"Did you notice any error messages in the lines above?\n" +"If not, installation was successful!\n" +"Otherwise, quit and investigate the possible reason..." msgstr "" -"\n" -"Installation var en success!\n" -#: app/install.c:555 -msgid "" -"\n" -"Installation failed. Contact system administrator.\n" +#: app/install.c:969 +msgid "Click \"Continue\" to complete GIMP installation." +msgstr "" + +#: app/install.c:978 +#, fuzzy +msgid "Installation failed. Contact system administrator." msgstr "" "\n" "Installation mislykkedes. Kontakt din system administrator.\n" +#: app/install.c:999 +msgid "" +"GIMP uses a limited amount of memory to store image data, the so-called\n" +"\"Tile Cache\". You should adjust it's size to fit into memory. Consider\n" +"the amount of memory used by other running processes." +msgstr "" + +#: app/install.c:1015 app/preferences_dialog.c:2102 +msgid "Tile Cache Size:" +msgstr "StЬrrelse pЕ flisbuffer:" + +#: app/install.c:1025 +msgid "" +"All image and undo data which doesn't fit into the Tile Cache will be\n" +"written to a swap file. This file should be located on a local filesystem\n" +"with enough free space (several hundred MB). On a UNIX system, you\n" +"may want to use the system-wide temp-dir (\"/tmp\" or \"/var/tmp\")." +msgstr "" + +#: app/install.c:1035 app/preferences_dialog.c:2361 +msgid "Select Swap Dir" +msgstr "VФlg swap-mappe" + +#: app/install.c:1041 +#, fuzzy +msgid "Swap Directory:" +msgstr "Swap-mappe:" + +#: app/install.c:1063 +msgid "" +"GIMP can obtain this information from your X-server.\n" +"However, most X-servers do not return useful values." +msgstr "" + +#: app/install.c:1070 +#, fuzzy, c-format +msgid "Get Resolution from X-server (Currently %d x %d dpi)" +msgstr "(Den er nu %d x %d dpi)" + +#: app/install.c:1087 +msgid "Alternatively, you can set the monitor resolution manually." +msgstr "" + +#: app/install.c:1102 +#, fuzzy +msgid "Monitor Resolution X:" +msgstr "Hent oplЬsning for monitor" + #: app/interface.c:312 msgid "" "Foreground & background colors. The black and white squares reset colors. " @@ -2747,8 +2836,8 @@ msgstr "Gradient UI" msgid "Guide procedures" msgstr "Procedyrer for guide" -#: app/internal_procs.c:122 app/preferences_dialog.c:1772 -#: app/preferences_dialog.c:1774 +#: app/internal_procs.c:122 app/preferences_dialog.c:1733 +#: app/preferences_dialog.c:1735 msgid "Interface" msgstr "GrФnsesnit" @@ -3168,148 +3257,139 @@ msgid "degrees" msgstr "grader" #. /File -#: app/menus.c:82 +#. the underscore installs an accelerator using the character that follows +#: app/menus.c:85 #, fuzzy msgid "/_File" msgstr "/Filer" -#: app/menus.c:84 app/menus.c:191 +#. /File +#: app/menus.c:87 app/menus.c:193 msgid "/File/New..." msgstr "/Filer/Ny..." -#: app/menus.c:86 app/menus.c:193 +#: app/menus.c:89 app/menus.c:195 msgid "/File/Open..." msgstr "/Filer/еbn..." -#: app/menus.c:93 +#: app/menus.c:96 msgid "/File/Acquire" msgstr "/Filer/Skan" -#: app/menus.c:98 +#: app/menus.c:101 msgid "/File/Preferences..." msgstr "/Filer/PreferФnser..." -#: app/menus.c:105 -msgid "/File/Dialogs" -msgstr "/Filer/Dialoger" - -#: app/menus.c:107 +#: app/menus.c:108 #, fuzzy msgid "/File/Dialogs/Layers, Channels & Paths..." msgstr "/Filer/Dialoger/Lag og kanaler..." -#: app/menus.c:109 +#: app/menus.c:110 msgid "/File/Dialogs/Tool Options..." msgstr "/Filer/Dialoger/Alternativer for vФrktЬj..." -#: app/menus.c:114 +#: app/menus.c:115 msgid "/File/Dialogs/Brushes..." msgstr "/Filer/Dialoger/BЬrster..." -#: app/menus.c:116 +#: app/menus.c:117 msgid "/File/Dialogs/Patterns..." msgstr "/Filer/Dialoger/MЬnstre..." -#: app/menus.c:118 +#: app/menus.c:119 msgid "/File/Dialogs/Gradients..." msgstr "/Filer/Dialoger/Gradient..." -#: app/menus.c:120 +#: app/menus.c:121 msgid "/File/Dialogs/Palette..." msgstr "/Filer/Dialoger/Palette..." -#: app/menus.c:122 +#: app/menus.c:123 msgid "/File/Dialogs/Indexed Palette..." msgstr "/Filer/Dialoger/Indekseret palette..." -#: app/menus.c:127 +#: app/menus.c:128 msgid "/File/Dialogs/Input Devices..." msgstr "/Filer/Dialoger/Ind enheder..." -#: app/menus.c:129 +#: app/menus.c:130 msgid "/File/Dialogs/Device Status..." msgstr "/Filer/Dialoger/Enhedsstatus..." -#: app/menus.c:134 +#: app/menus.c:135 msgid "/File/Dialogs/Document Index..." msgstr "/Filer/Dialoger/Dokumentindeks..." -#: app/menus.c:136 +#: app/menus.c:137 msgid "/File/Dialogs/Error Console..." msgstr "/Filer/Dialoger/Fejl-konsol..." -#: app/menus.c:138 +#: app/menus.c:139 msgid "/File/Dialogs/Display Filters..." msgstr "/Filer/Dialoger/Vis filtrer..." -#: app/menus.c:148 app/menus.c:206 +#: app/menus.c:149 app/menus.c:208 msgid "/File/Quit" msgstr "/Filer/Afslut" #. /Xtns -#: app/menus.c:153 +#. the underscore installs an accelerator using the character that follows +#: app/menus.c:155 #, fuzzy msgid "/_Xtns" msgstr "/Udvd" -#: app/menus.c:155 +#: app/menus.c:157 msgid "/Xtns/Module Browser..." msgstr "/Udvd/Modulvisning..." #. /Help -#: app/menus.c:163 +#. the underscore installs an accelerator using the character that follows +#: app/menus.c:166 #, fuzzy msgid "/_Help" msgstr "/HjФlp" -#: app/menus.c:165 +#: app/menus.c:168 msgid "/Help/Help..." msgstr "/HjФlp/HjФlp..." -#: app/menus.c:167 +#: app/menus.c:170 msgid "/Help/Context Help..." msgstr "/HjФlp/Kontekst hjФlp..." -#: app/menus.c:169 +#: app/menus.c:172 #, fuzzy msgid "/Help/Tip of the Day..." msgstr "/HjФlp/Dagens tips..." -#: app/menus.c:171 +#: app/menus.c:174 msgid "/Help/About..." msgstr "/HjФlp/Om..." -#: app/menus.c:173 +#: app/menus.c:176 msgid "/Help/Dump Items (Debug)" msgstr "" -#. /File -#: app/menus.c:189 -msgid "/File" -msgstr "/Filer" - -#: app/menus.c:195 +#: app/menus.c:197 msgid "/File/Save" msgstr "/Filer/Gem" -#: app/menus.c:197 +#: app/menus.c:199 #, fuzzy msgid "/File/Save As..." msgstr "/Filer/Gem som..." -#: app/menus.c:199 +#: app/menus.c:201 msgid "/File/Revert" msgstr "/Filer/Forkast" -#: app/menus.c:204 +#: app/menus.c:206 msgid "/File/Close" msgstr "/Filer/Luk" #. /Edit -#: app/menus.c:214 -msgid "/Edit" -msgstr "/RedigИr" - #: app/menus.c:216 msgid "/Edit/Undo" msgstr "/RedigИr/Fortryd" @@ -3341,696 +3421,611 @@ msgstr "/Redig #. /Edit/Buffer #: app/menus.c:236 -msgid "/Edit/Buffer" -msgstr "/RedigИr/StЬdpude" - -#: app/menus.c:238 msgid "/Edit/Buffer/Cut Named..." msgstr "/RedigИr/StЬdpude/Klip navngivet" -#: app/menus.c:240 +#: app/menus.c:238 msgid "/Edit/Buffer/Copy Named..." msgstr "/RedigИr/StЬdpude/Kopier navngivet" -#: app/menus.c:242 +#: app/menus.c:240 msgid "/Edit/Buffer/Paste Named..." msgstr "/RedigИr/StЬdpude/IndsФt navngivet" -#: app/menus.c:247 +#: app/menus.c:245 msgid "/Edit/Clear" msgstr "/RedigИr/Nulstil" -#: app/menus.c:249 +#: app/menus.c:247 msgid "/Edit/Fill" msgstr "/RedigИr/Fyld" -#: app/menus.c:251 +#: app/menus.c:249 msgid "/Edit/Stroke" msgstr "/RedigИr/StrЬg" #. /Select -#: app/menus.c:259 -msgid "/Select" -msgstr "/VФlg" - -#: app/menus.c:261 +#: app/menus.c:257 msgid "/Select/Invert" msgstr "/VФlg/Inverter" -#: app/menus.c:263 +#: app/menus.c:259 msgid "/Select/All" msgstr "/VФlg/Alt" -#: app/menus.c:265 +#: app/menus.c:261 msgid "/Select/None" msgstr "/VФlg/Ingen" -#: app/menus.c:267 +#: app/menus.c:263 msgid "/Select/Float" msgstr "/VФlg/Flydende" -#: app/menus.c:272 +#: app/menus.c:268 msgid "/Select/Feather..." msgstr "/VФlg/Fjer..." -#: app/menus.c:274 +#: app/menus.c:270 msgid "/Select/Sharpen" msgstr "/VФlg/Skarpere" -#: app/menus.c:276 +#: app/menus.c:272 msgid "/Select/Shrink..." msgstr "/VФlg/Krymp..." -#: app/menus.c:278 +#: app/menus.c:274 msgid "/Select/Grow..." msgstr "/VФlg/Voks..." -#: app/menus.c:280 +#: app/menus.c:276 msgid "/Select/Border..." msgstr "/VФlg/Kant..." -#: app/menus.c:285 +#: app/menus.c:281 #, fuzzy msgid "/Select/Save to Channel" msgstr "/VФlg/Gem til kanal" #. /View -#: app/menus.c:290 -msgid "/View" -msgstr "/Vis" - -#: app/menus.c:292 +#: app/menus.c:286 msgid "/View/Zoom In" msgstr "/Vis/Zoom ind" -#: app/menus.c:294 +#: app/menus.c:288 msgid "/View/Zoom Out" msgstr "/Vis/Zoom ud" #. /View/Zoom -#: app/menus.c:299 -msgid "/View/Zoom" -msgstr "/Vis/Zoom" - -#: app/menus.c:301 +#: app/menus.c:293 msgid "/View/Zoom/16:1" msgstr "/Vis/Zoom/16:1" -#: app/menus.c:303 +#: app/menus.c:295 msgid "/View/Zoom/8:1" msgstr "/Vis/Zoom/8:1" -#: app/menus.c:305 +#: app/menus.c:297 msgid "/View/Zoom/4:1" msgstr "/Vis/Zoom/4:1" -#: app/menus.c:307 +#: app/menus.c:299 msgid "/View/Zoom/2:1" msgstr "/Vis/Zoom/2:1" -#: app/menus.c:309 +#: app/menus.c:301 msgid "/View/Zoom/1:1" msgstr "/Vis/Zoom/1:1" -#: app/menus.c:311 +#: app/menus.c:303 msgid "/View/Zoom/1:2" msgstr "/Vis/Zoom/1:2" -#: app/menus.c:313 +#: app/menus.c:305 msgid "/View/Zoom/1:4" msgstr "/Vis/Zoom/1:4" -#: app/menus.c:315 +#: app/menus.c:307 msgid "/View/Zoom/1:8" msgstr "/Vis/Zoom/1:8" -#: app/menus.c:317 +#: app/menus.c:309 msgid "/View/Zoom/1:16" msgstr "/Vis/Zoom/1:16" -#: app/menus.c:320 +#: app/menus.c:312 #, fuzzy msgid "/View/Dot for Dot" msgstr "/Vis/Punkt for punkt" -#: app/menus.c:325 +#: app/menus.c:317 msgid "/View/Info Window..." msgstr "/Vis/Infovindue..." -#: app/menus.c:327 +#: app/menus.c:319 msgid "/View/Nav. Window..." msgstr "/Vis/Nav.vindue..." -#: app/menus.c:329 -#, fuzzy -msgid "/View/Undo History..." -msgstr "/Vis/Fortryd historie" - -#: app/menus.c:334 +#: app/menus.c:324 msgid "/View/Toggle Selection" msgstr "/Vis/SlЕ fra/pЕ udvalg" -#: app/menus.c:336 +#: app/menus.c:326 msgid "/View/Toggle Rulers" msgstr "/Vis/SlЕ fra/pЕ linialer" -#: app/menus.c:338 +#: app/menus.c:328 msgid "/View/Toggle Statusbar" msgstr "/Vis/SlЕ fra/pЕ statuslinje" -#: app/menus.c:340 +#: app/menus.c:330 msgid "/View/Toggle Guides" msgstr "/Vis/SlЕ fra/pЕ guider" -#: app/menus.c:342 +#: app/menus.c:332 #, fuzzy msgid "/View/Snap to Guides" msgstr "/Vis/FФstne til guider" -#: app/menus.c:347 +#: app/menus.c:337 msgid "/View/New View" msgstr "/Vis/Ny visning" -#: app/menus.c:349 +#: app/menus.c:339 msgid "/View/Shrink Wrap" msgstr "/Vis/Pak sammen" -#. /Image -#: app/menus.c:357 -msgid "/Image" -msgstr "/Billede" - #. /Image/Mode -#: app/menus.c:362 -msgid "/Image/Mode" -msgstr "/Billede/Modus" - -#: app/menus.c:364 +#: app/menus.c:344 msgid "/Image/Mode/RGB" msgstr "/Billede/Modus/RGB" -#: app/menus.c:366 +#: app/menus.c:346 msgid "/Image/Mode/Grayscale" msgstr "/Billede/Modus/GrЕtone" -#: app/menus.c:368 +#: app/menus.c:348 msgid "/Image/Mode/Indexed..." msgstr "/Billede/Modus/Indekseret" #. /Image/Colors -#: app/menus.c:376 -msgid "/Image/Colors" -msgstr "/Billede/Farver" - -#: app/menus.c:381 +#: app/menus.c:356 msgid "/Image/Colors/Desaturate" msgstr "/Billede/Farver/Mindre mФttet" -#: app/menus.c:383 +#: app/menus.c:358 msgid "/Image/Colors/Invert" msgstr "/Billede/Farver/Inverter" #. /Image/Colors/Auto -#: app/menus.c:391 -msgid "/Image/Colors/Auto" -msgstr "/Billede/Farver/Auto" - -#: app/menus.c:393 +#: app/menus.c:366 msgid "/Image/Colors/Auto/Equalize" msgstr "/Billede/Farver/Auto/UdjФvn" #. /Image/Alpha -#: app/menus.c:401 -msgid "/Image/Alpha" -msgstr "/Billede/Alfa" - -#: app/menus.c:403 +#: app/menus.c:374 msgid "/Image/Alpha/Add Alpha Channel" msgstr "/Billede/Alfa/TilfЬj alfakanal" #. /Image/Transforms -#: app/menus.c:408 -msgid "/Image/Transforms" -msgstr "/Billede/Transformer" - -#: app/menus.c:410 +#: app/menus.c:379 msgid "/Image/Transforms/Offset..." msgstr "/Billede/Transformer/Afstand..." -#: app/menus.c:412 +#: app/menus.c:381 msgid "/Image/Transforms/Rotate" msgstr "/Billede/Transformer/RotИr" -#: app/menus.c:419 +#: app/menus.c:388 msgid "/Image/Canvas Size..." msgstr "/Billede/Kanvas stЬrrelse" -#: app/menus.c:421 +#: app/menus.c:390 msgid "/Image/Scale Image..." msgstr "/Billede/Skaler..." -#: app/menus.c:423 +#: app/menus.c:392 msgid "/Image/Duplicate" msgstr "/Billede/DuplikИr" #. /Layers -#: app/menus.c:431 -msgid "/Layers" -msgstr "/Lag" - -#: app/menus.c:433 +#: app/menus.c:400 #, fuzzy msgid "/Layers/Layers, Channels & Paths..." msgstr "/Lag/Lag og kanaler..." -#. /Layers/Stack -#: app/menus.c:438 -msgid "/Layers/Stack" -msgstr "/Lag/Stabel" - -#: app/menus.c:440 -msgid "/Layers/Stack/Previous Layer" -msgstr "/Lag/Stabel/Forrige lag" - -#: app/menus.c:442 -msgid "/Layers/Stack/Next Layer" -msgstr "/Lag/Stabel/NФste lag" - -#: app/menus.c:444 -msgid "/Layers/Stack/Raise Layer" -msgstr "/Lag/Stabel/HФv lag" - -#: app/menus.c:446 -msgid "/Layers/Stack/Lower Layer" -msgstr "/Lag/Stabel/SФnk lag" - -#: app/menus.c:448 -msgid "/Layers/Stack/Layer to Top" -msgstr "/Lag/Stabel/Lag til top" - -#: app/menus.c:450 -msgid "/Layers/Stack/Layer to Bottom" -msgstr "/Lag/Stabel/Lag til bund" - -#. /Layers/Rotate -#: app/menus.c:457 -msgid "/Layers/Rotate" -msgstr "/Lag/RotИr" - -#: app/menus.c:460 +#: app/menus.c:404 #, fuzzy msgid "/Layers/Layer to Imagesize" msgstr "/Lag/Flat billedet ud" -#: app/menus.c:465 +#. /Layers/Stack +#: app/menus.c:409 +msgid "/Layers/Stack/Previous Layer" +msgstr "/Lag/Stabel/Forrige lag" + +#: app/menus.c:411 +msgid "/Layers/Stack/Next Layer" +msgstr "/Lag/Stabel/NФste lag" + +#: app/menus.c:413 +msgid "/Layers/Stack/Raise Layer" +msgstr "/Lag/Stabel/HФv lag" + +#: app/menus.c:415 +msgid "/Layers/Stack/Lower Layer" +msgstr "/Lag/Stabel/SФnk lag" + +#: app/menus.c:417 +msgid "/Layers/Stack/Layer to Top" +msgstr "/Lag/Stabel/Lag til top" + +#: app/menus.c:419 +msgid "/Layers/Stack/Layer to Bottom" +msgstr "/Lag/Stabel/Lag til bund" + +#. /Layers/Rotate +#: app/menus.c:426 +msgid "/Layers/Rotate" +msgstr "/Lag/RotИr" + +#: app/menus.c:431 msgid "/Layers/Anchor Layer" msgstr "/Lag/Forankre lag" -#: app/menus.c:467 +#: app/menus.c:433 msgid "/Layers/Merge Visible Layers..." msgstr "/Lag/Flet synlige lag sammen..." -#: app/menus.c:469 +#: app/menus.c:435 msgid "/Layers/Flatten Image" msgstr "/Lag/Flat billedet ud" -#: app/menus.c:474 +#: app/menus.c:440 #, fuzzy msgid "/Layers/Mask to Selection" msgstr "/Lag/Maske til udvalg" -#: app/menus.c:479 +#: app/menus.c:445 msgid "/Layers/Add Alpha Channel" msgstr "/Lag/TilfЬj alfakanal" -#: app/menus.c:481 +#: app/menus.c:447 #, fuzzy msgid "/Layers/Alpha to Selection" msgstr "/Lag/TilfЬj alfakanal" #. /Tools -#: app/menus.c:489 -msgid "/Tools" -msgstr "/VФrktЬj" - -#: app/menus.c:491 +#: app/menus.c:455 msgid "/Tools/Toolbox" msgstr "/VФrktЬj/VФrktЬjskrin" -#: app/menus.c:493 +#: app/menus.c:457 msgid "/Tools/Default Colors" msgstr "/VФrktЬj/Standard farver" -#: app/menus.c:495 +#: app/menus.c:459 msgid "/Tools/Swap Colors" msgstr "/VФrktЬj/Byt farver" -#: app/menus.c:501 -#, fuzzy -msgid "/Tools/Select Tools" -msgstr "/VФrktЬj/Standard farver" - -#: app/menus.c:503 -#, fuzzy -msgid "/Tools/Transform Tools" -msgstr "/VФrktЬj/Transformer" - -#: app/menus.c:505 -#, fuzzy -msgid "/Tools/Paint Tools" -msgstr "/VФrktЬj/Malerpensel" - #. /Dialogs -#: app/menus.c:510 -msgid "/Dialogs" -msgstr "/Dialoger" - -#: app/menus.c:512 +#: app/menus.c:466 #, fuzzy msgid "/Dialogs/Layers, Channels & Paths..." msgstr "/Dialoger/Lag og kanaler..." -#: app/menus.c:514 +#: app/menus.c:468 msgid "/Dialogs/Tool Options..." msgstr "/Dialoger/Alternativer for vФrktЬj..." -#: app/menus.c:519 +#: app/menus.c:473 msgid "/Dialogs/Brushes..." msgstr "/Dialoger/BЬrster..." -#: app/menus.c:521 +#: app/menus.c:475 msgid "/Dialogs/Patterns..." msgstr "/Dialoger/MЬnstre..." -#: app/menus.c:523 +#: app/menus.c:477 msgid "/Dialogs/Gradients..." msgstr "/Dialoger/Gradienter..." -#: app/menus.c:525 +#: app/menus.c:479 msgid "/Dialogs/Palette..." msgstr "/Dialoger/Palette..." -#: app/menus.c:527 +#: app/menus.c:481 msgid "/Dialogs/Indexed Palette..." msgstr "/Dialoger/Indekseret palette..." -#: app/menus.c:532 +#: app/menus.c:486 msgid "/Dialogs/Input Devices..." msgstr "/Dialoger/Ind enheder..." -#: app/menus.c:534 +#: app/menus.c:488 msgid "/Dialogs/Device Status..." msgstr "/Dialoger/Enhedsstatus..." -#: app/menus.c:539 +#: app/menus.c:493 msgid "/Dialogs/Document Index..." msgstr "/Dialoger/Dokumentindeks..." -#: app/menus.c:541 +#: app/menus.c:495 msgid "/Dialogs/Error Console..." msgstr "/Dialoger/Fejl-konsol..." -#: app/menus.c:543 +#: app/menus.c:497 msgid "/Dialogs/Display Filters..." msgstr "/Dialoger/Vis filtre..." -#. /Filters -#: app/menus.c:551 -msgid "/Filters" -msgstr "/Filtre" +#: app/menus.c:499 +#, fuzzy +msgid "/Dialogs/Undo History..." +msgstr "/Vis/Fortryd historie" -#: app/menus.c:553 +#. /Filters +#: app/menus.c:508 #, fuzzy msgid "/Filters/Repeat Last" msgstr "/Filtre/Gentag sidste" -#: app/menus.c:555 +#: app/menus.c:510 #, fuzzy msgid "/Filters/Re-Show Last" msgstr "/Filtre/Vis sidste pЕ ny" -#: app/menus.c:561 +#: app/menus.c:515 msgid "/Filters/Blur" msgstr "/Filtre/SlЬr" -#: app/menus.c:564 +#: app/menus.c:517 msgid "/Filters/Colors" msgstr "/Filtre/Farver" -#: app/menus.c:569 +#: app/menus.c:519 msgid "/Filters/Noise" msgstr "/Filtre/StЬj" -#: app/menus.c:571 +#: app/menus.c:521 msgid "/Filters/Edge-Detect" msgstr "/Filtre/Find-kant" -#: app/menus.c:573 +#: app/menus.c:523 #, fuzzy msgid "/Filters/Enhance" msgstr "/Filtre/" -#: app/menus.c:575 +#: app/menus.c:525 msgid "/Filters/Generic" msgstr "/Filtre/Generisk" -#: app/menus.c:580 +#: app/menus.c:530 msgid "/Filters/Glass Effects" msgstr "/Filtre/Glaseffekter" -#: app/menus.c:582 +#: app/menus.c:532 msgid "/Filters/Light Effects" msgstr "/Filtre/Lyseffekter" -#: app/menus.c:584 +#: app/menus.c:534 msgid "/Filters/Distorts" msgstr "/Filtre/ForvrФngning" -#: app/menus.c:586 +#: app/menus.c:536 msgid "/Filters/Artistic" msgstr "/Filtre/Kunstnerisk" -#: app/menus.c:588 +#: app/menus.c:538 msgid "/Filters/Map" msgstr "/Filtre/Map" -#: app/menus.c:590 +#: app/menus.c:540 msgid "/Filters/Render" msgstr "/Filtre/RendИr" -#: app/menus.c:592 +#: app/menus.c:542 msgid "/Filters/Web" msgstr "/Filtre/Web" -#: app/menus.c:597 +#: app/menus.c:547 msgid "/Filters/Animation" msgstr "/Filtre/Animation" -#: app/menus.c:599 +#: app/menus.c:549 msgid "/Filters/Combine" msgstr "/Filer/KombinИr" -#: app/menus.c:604 +#: app/menus.c:554 msgid "/Filters/Toys" msgstr "/Filtre/LejetЬj" -#. /Script-Fu -#: app/menus.c:609 -msgid "/Script-Fu" -msgstr "/Skript-Fu" - -#: app/menus.c:620 +#: app/menus.c:567 msgid "/Automatic" msgstr "/Automatisk" -#: app/menus.c:634 +#: app/menus.c:581 #, fuzzy msgid "/By Extension" msgstr "/Efter endelse" -#: app/menus.c:648 +#: app/menus.c:595 msgid "/New Layer..." msgstr "/Nyt lag..." #. /Stack -#: app/menus.c:653 -msgid "/Stack" -msgstr "/Stabel" - -#: app/menus.c:655 +#: app/menus.c:600 msgid "/Stack/Raise Layer" msgstr "Stabel/HФv lag" -#: app/menus.c:657 +#: app/menus.c:602 msgid "/Stack/Lower Layer" msgstr "/Stabel/SФnk lag" -#: app/menus.c:659 +#: app/menus.c:604 msgid "/Stack/Layer to Top" msgstr "/Stabel/Lag til top" -#: app/menus.c:661 +#: app/menus.c:606 msgid "/Stack/Layer to Bottom" msgstr "/Stabel/Lag til bund" -#: app/menus.c:664 +#: app/menus.c:609 msgid "/Duplicate Layer" msgstr "/DuplikИr lag" -#: app/menus.c:666 +#: app/menus.c:611 msgid "/Anchor Layer" msgstr "/Forankre lag" -#: app/menus.c:668 +#: app/menus.c:613 msgid "/Delete Layer" msgstr "/Slet lag" -#: app/menus.c:673 +#: app/menus.c:618 msgid "/Layer Boundary Size..." msgstr "" -#: app/menus.c:675 +#: app/menus.c:620 #, fuzzy msgid "/Layer to Imagesize" msgstr "/Lag/Flat billedet ud" -#: app/menus.c:677 +#: app/menus.c:622 msgid "/Scale Layer..." msgstr "/Skaler lag..." -#: app/menus.c:682 +#: app/menus.c:627 msgid "/Merge Visible Layers..." msgstr "/FusionИr synlige lag..." -#: app/menus.c:684 +#: app/menus.c:629 msgid "/Merge Down" msgstr "/FusionИr nedover" -#: app/menus.c:686 +#: app/menus.c:631 msgid "/Flatten Image" msgstr "/Flad billedet ud" -#: app/menus.c:691 +#: app/menus.c:636 msgid "/Add Layer Mask..." msgstr "/TilfЬj lagmaske..." -#: app/menus.c:693 +#: app/menus.c:638 #, fuzzy msgid "/Apply Layer Mask" msgstr "/Anvend lagmaske..." -#: app/menus.c:695 +#: app/menus.c:640 #, fuzzy msgid "/Delete Layer Mask" msgstr "/Slet lag" -#: app/menus.c:697 +#: app/menus.c:642 msgid "/Mask to Selection" msgstr "/Maske til udvalg" -#: app/menus.c:702 +#: app/menus.c:647 msgid "/Add Alpha Channel" msgstr "/TilfЬj alfakanal" -#: app/menus.c:704 +#: app/menus.c:649 msgid "/Alpha to Selection" msgstr "/Alfa til udvalg" -#: app/menus.c:709 +#: app/menus.c:654 #, fuzzy msgid "/Edit Layer Attributes..." msgstr "Rediger lagets attributter" -#: app/menus.c:720 +#: app/menus.c:665 msgid "/New Channel..." msgstr "/Ny kanal..." -#: app/menus.c:722 +#: app/menus.c:667 msgid "/Raise Channel" msgstr "/HФv kanal" -#: app/menus.c:724 +#: app/menus.c:669 msgid "/Lower Channel" msgstr "/SФnk kanal" -#: app/menus.c:726 +#: app/menus.c:671 msgid "/Duplicate Channel" msgstr "/DuplikИr kanal" -#: app/menus.c:731 +#: app/menus.c:676 msgid "/Channel to Selection" msgstr "/Kanal til udvalg" -#: app/menus.c:733 +#: app/menus.c:678 msgid "/Add to Selection" msgstr "/LФg til udvalg" -#: app/menus.c:735 +#: app/menus.c:680 #, fuzzy msgid "/Subtract from Selection" msgstr "/TrФk fra udvalg" -#: app/menus.c:737 +#: app/menus.c:682 #, fuzzy msgid "/Intersect with Selection" msgstr "/Krys med udvalg" -#: app/menus.c:742 +#: app/menus.c:687 msgid "/Delete Channel" msgstr "/Slet kanal" -#: app/menus.c:747 +#: app/menus.c:692 #, fuzzy msgid "/Edit Channel Attributes..." msgstr "RedigИr kanalattributter" -#: app/menus.c:758 +#: app/menus.c:703 msgid "/New Path" msgstr "/Ny sti" -#: app/menus.c:760 +#: app/menus.c:705 msgid "/Duplicate Path" msgstr "/DuplikИr sti" -#: app/menus.c:762 +#: app/menus.c:707 msgid "/Path to Selection" msgstr "/Sti til udvalg" -#: app/menus.c:764 +#: app/menus.c:709 #, fuzzy msgid "/Selection to Path" msgstr "Udvalg" -#: app/menus.c:766 +#: app/menus.c:711 msgid "/Stroke Path" msgstr "/StrЬg sti" -#: app/menus.c:768 +#: app/menus.c:713 msgid "/Delete Path" msgstr "/Slet sti" -#: app/menus.c:773 +#: app/menus.c:718 msgid "/Copy Path" msgstr "/KopiИr sti" -#: app/menus.c:775 +#: app/menus.c:720 msgid "/Paste Path" msgstr "/IndsФt sti" -#: app/menus.c:777 +#: app/menus.c:722 msgid "/Import Path..." msgstr "/Importer sti..." -#: app/menus.c:779 +#: app/menus.c:724 msgid "/Export Path..." msgstr "/EksportИr sti..." -#: app/menus.c:784 +#: app/menus.c:729 #, fuzzy msgid "/Edit Path Attributes..." msgstr "Rediger lagets attributter" -#: app/menus.c:1310 +#: app/menus.c:1260 #, c-format msgid "Error opening file: %s\n" msgstr "Fejl under Еbning af fil: %s\n" @@ -4127,7 +4122,7 @@ msgstr "Tilstand: " msgid "Autoload during startup" msgstr "AutolФsning under opstart" -#: app/move.c:456 +#: app/move.c:458 #, fuzzy msgid "Move Tool" msgstr "Alternativer for flyttevФrktЬj" @@ -4142,7 +4137,7 @@ msgstr "Vinduespositioner" msgid "Navigation: No Image" msgstr "" -#: app/paint_core.c:717 +#: app/paint_core.c:735 msgid "No brushes available for use with this tool." msgstr "Ingen pensler tilgФngelig for brug med dette vФrktЬj." @@ -4597,490 +4592,484 @@ msgid "You will need to restart GIMP for these changes to take effect." msgstr "" "Du bliver nЬdt til at starte GIMP pЕ nyt for at Фndringerne trФder i kraft." -#: app/preferences_dialog.c:1459 +#: app/preferences_dialog.c:1002 +#, c-format +msgid "The default comments is limited to %d characters." +msgstr "" + +#: app/preferences_dialog.c:1424 msgid "Preferences" msgstr "PreferФnser" #. The categories tree -#: app/preferences_dialog.c:1481 +#: app/preferences_dialog.c:1446 msgid "Categories" msgstr "Kategorier" -#: app/preferences_dialog.c:1509 app/preferences_dialog.c:1511 +#: app/preferences_dialog.c:1474 app/preferences_dialog.c:1476 msgid "New File" msgstr "Ny fil" -#: app/preferences_dialog.c:1522 +#: app/preferences_dialog.c:1487 msgid "Default Image Size and Unit" msgstr "Standard stЬrrelse og enhed for billede" -#: app/preferences_dialog.c:1536 +#: app/preferences_dialog.c:1501 msgid "Width" msgstr "Bredde" -#: app/preferences_dialog.c:1538 +#: app/preferences_dialog.c:1503 msgid "Height" msgstr "HЬjde" -#: app/preferences_dialog.c:1568 +#: app/preferences_dialog.c:1533 msgid "Default Image Resolution and Resolution Unit" msgstr "Standard oplЬsning og oplЬsningsenhed for billede" -#: app/preferences_dialog.c:1595 app/preferences_dialog.c:2359 +#: app/preferences_dialog.c:1560 app/preferences_dialog.c:2288 msgid "dpi" msgstr "dpi" -#: app/preferences_dialog.c:1642 +#: app/preferences_dialog.c:1607 msgid "Default Image Type:" msgstr "Standard billedetype:" -#: app/preferences_dialog.c:1678 app/preferences_dialog.c:2166 -msgid "Bytes" -msgstr "Bytes" - -#: app/preferences_dialog.c:1679 app/preferences_dialog.c:2167 -msgid "KiloBytes" -msgstr "Kilobytes" - -#: app/preferences_dialog.c:1680 app/preferences_dialog.c:2168 -msgid "MegaBytes" -msgstr "Megabytes" - -#: app/preferences_dialog.c:1686 +#: app/preferences_dialog.c:1618 msgid "Maximum Image Size:" msgstr "Maksimum billedestЬrrelse:" -#: app/preferences_dialog.c:1692 app/preferences_dialog.c:1694 +#: app/preferences_dialog.c:1623 app/preferences_dialog.c:1625 +#, fuzzy +msgid "Default Comment" +msgstr "Standard" + +#: app/preferences_dialog.c:1633 +msgid "Comment Used for New Images" +msgstr "" + +#: app/preferences_dialog.c:1653 app/preferences_dialog.c:1655 msgid "Display" msgstr "SkФrm" -#: app/preferences_dialog.c:1702 +#: app/preferences_dialog.c:1663 msgid "Transparency" msgstr "Gennemsigtighed" -#: app/preferences_dialog.c:1721 +#: app/preferences_dialog.c:1682 msgid "Light Checks" msgstr "Lystjek" -#: app/preferences_dialog.c:1722 +#: app/preferences_dialog.c:1683 msgid "Mid-Tone Checks" msgstr "Tjek af mellemtoner" -#: app/preferences_dialog.c:1723 +#: app/preferences_dialog.c:1684 msgid "Dark Checks" msgstr "Tjek af mЬrke toner" -#: app/preferences_dialog.c:1724 +#: app/preferences_dialog.c:1685 msgid "White Only" msgstr "Kun hvidt" -#: app/preferences_dialog.c:1725 +#: app/preferences_dialog.c:1686 msgid "Gray Only" msgstr "Kun grЕt" -#: app/preferences_dialog.c:1726 +#: app/preferences_dialog.c:1687 msgid "Black Only" msgstr "Kun sort" -#: app/preferences_dialog.c:1730 +#: app/preferences_dialog.c:1691 msgid "Transparency Type:" msgstr "Type gennemsigtighed" -#: app/preferences_dialog.c:1737 app/preferences_dialog.c:1810 -#: app/preferences_dialog.c:1824 +#: app/preferences_dialog.c:1698 app/preferences_dialog.c:1771 +#: app/preferences_dialog.c:1785 msgid "Small" msgstr "Lille" -#: app/preferences_dialog.c:1738 app/preferences_dialog.c:1811 -#: app/preferences_dialog.c:1825 +#: app/preferences_dialog.c:1699 app/preferences_dialog.c:1772 +#: app/preferences_dialog.c:1786 msgid "Medium" msgstr "Medium" -#: app/preferences_dialog.c:1739 app/preferences_dialog.c:1812 -#: app/preferences_dialog.c:1826 +#: app/preferences_dialog.c:1700 app/preferences_dialog.c:1773 +#: app/preferences_dialog.c:1787 msgid "Large" msgstr "Stor" -#: app/preferences_dialog.c:1743 +#: app/preferences_dialog.c:1704 msgid "Check Size:" msgstr "Tjek stЬrrelse:" -#: app/preferences_dialog.c:1746 +#: app/preferences_dialog.c:1707 msgid "8-Bit Displays" msgstr "8-bits skФrme" -#: app/preferences_dialog.c:1751 +#: app/preferences_dialog.c:1712 msgid "Install Colormap" msgstr "Installer farvekort" -#: app/preferences_dialog.c:1760 +#: app/preferences_dialog.c:1721 msgid "Colormap Cycling" msgstr "Bytning af farvekort" -#: app/preferences_dialog.c:1809 +#: app/preferences_dialog.c:1770 msgid "Tiny" msgstr "" -#: app/preferences_dialog.c:1813 +#: app/preferences_dialog.c:1774 #, fuzzy msgid "Huge" msgstr "GlЬd" -#: app/preferences_dialog.c:1817 +#: app/preferences_dialog.c:1778 msgid "Preview Size:" msgstr "StЬrrelse for forhЕndsvisning" -#: app/preferences_dialog.c:1830 +#: app/preferences_dialog.c:1791 #, fuzzy msgid "Nav Preview Size:" msgstr "StЬrrelse for forhЕndsvisning" -#: app/preferences_dialog.c:1840 +#: app/preferences_dialog.c:1801 msgid "Recent Documents List Size:" msgstr "StЬrrelse pЕ liste over nylig Еbnede filer:" #. Indicators -#: app/preferences_dialog.c:1844 +#: app/preferences_dialog.c:1805 #, fuzzy msgid "Toolbox" msgstr "/VФrktЬj/VФrktЬjskrin" -#: app/preferences_dialog.c:1847 +#: app/preferences_dialog.c:1808 #, fuzzy msgid "Display Brush, Pattern and Gradient Indicators" msgstr "Vis pensel- og mЬnsterindikatorer pЕ vФrktЬjlinjen" -#: app/preferences_dialog.c:1856 +#: app/preferences_dialog.c:1817 msgid "Dialog Behaviour" msgstr "" -#: app/preferences_dialog.c:1858 +#: app/preferences_dialog.c:1819 msgid "Navigation Window per Display" msgstr "" -#: app/preferences_dialog.c:1867 +#: app/preferences_dialog.c:1828 msgid "Info Window Follows Mouse" msgstr "" -#: app/preferences_dialog.c:1878 app/preferences_dialog.c:1880 +#: app/preferences_dialog.c:1839 app/preferences_dialog.c:1841 msgid "Help System" msgstr "HjФlpesystem" -#: app/preferences_dialog.c:1890 +#: app/preferences_dialog.c:1851 msgid "Show Tool Tips" msgstr "Vis vФrktЬjtips" -#: app/preferences_dialog.c:1900 +#: app/preferences_dialog.c:1861 msgid "Context Sensitive Help with \"F1\"" msgstr "" -#: app/preferences_dialog.c:1909 +#: app/preferences_dialog.c:1870 #, fuzzy msgid "Help Browser" msgstr "HjФlpesystem" -#: app/preferences_dialog.c:1921 +#: app/preferences_dialog.c:1882 #, fuzzy msgid "Internal" msgstr "Interval:" -#: app/preferences_dialog.c:1922 +#: app/preferences_dialog.c:1883 msgid "Netscape" msgstr "" -#: app/preferences_dialog.c:1926 +#: app/preferences_dialog.c:1887 msgid "Help Browser to Use:" msgstr "" -#: app/preferences_dialog.c:1931 app/preferences_dialog.c:1933 +#: app/preferences_dialog.c:1892 app/preferences_dialog.c:1894 msgid "Image Windows" msgstr "Billedevindue" -#: app/preferences_dialog.c:1941 +#: app/preferences_dialog.c:1902 msgid "Appearance" msgstr "Udseende" -#: app/preferences_dialog.c:1943 +#: app/preferences_dialog.c:1904 msgid "Use \"Dot for Dot\" by default" msgstr "" -#: app/preferences_dialog.c:1952 +#: app/preferences_dialog.c:1913 msgid "Resize Window on Zoom" msgstr "фndre stЬrrelse pЕ vinduet ved zoom" -#: app/preferences_dialog.c:1961 +#: app/preferences_dialog.c:1922 msgid "Show Rulers" msgstr "Vis linialer" -#: app/preferences_dialog.c:1970 +#: app/preferences_dialog.c:1931 msgid "Show Statusbar" msgstr "Vis statuslinje" -#: app/preferences_dialog.c:1994 +#: app/preferences_dialog.c:1955 msgid "Marching Ants Speed:" msgstr "Hastighed for marsherende myrer:" #. Set the currently used string as "Custom" -#: app/preferences_dialog.c:2002 +#: app/preferences_dialog.c:1963 msgid "Custom" msgstr "Personlig" #. set some commonly used format strings -#: app/preferences_dialog.c:2008 +#: app/preferences_dialog.c:1969 msgid "Standard" msgstr "Standard" -#: app/preferences_dialog.c:2013 +#: app/preferences_dialog.c:1974 msgid "Show zoom percentage" msgstr "Vis zoom-prosent" -#: app/preferences_dialog.c:2018 +#: app/preferences_dialog.c:1979 msgid "Show zoom ratio" msgstr "Vis zoom-rate" -#: app/preferences_dialog.c:2023 +#: app/preferences_dialog.c:1984 msgid "Show reversed zoom ratio" msgstr "Vis reversert zoom-rate" -#: app/preferences_dialog.c:2034 +#: app/preferences_dialog.c:1995 msgid "Image Title Format:" msgstr "Titelformat for billede:" #. End of the title format string -#: app/preferences_dialog.c:2038 +#: app/preferences_dialog.c:1999 msgid "Pointer Movement Feedback" msgstr "Tilbagemelding pЕ markЬrbevФgelse" -#: app/preferences_dialog.c:2041 +#: app/preferences_dialog.c:2002 #, fuzzy msgid "Perfect-but-Slow Pointer Tracking" msgstr "Perfekt-men-langsom markЬrfЬlgning" -#: app/preferences_dialog.c:2050 +#: app/preferences_dialog.c:2011 msgid "Disable Cursor Updating" msgstr "SlЕ fra opdatering af markЬren" -#: app/preferences_dialog.c:2062 app/preferences_dialog.c:2064 +#: app/preferences_dialog.c:2023 app/preferences_dialog.c:2025 #: app/tools.c:1080 msgid "Tool Options" msgstr "VФrktЬjsalternativer" -#: app/preferences_dialog.c:2072 +#: app/preferences_dialog.c:2033 msgid "Paint Options" msgstr "Alternativer for tegning" -#: app/preferences_dialog.c:2075 +#: app/preferences_dialog.c:2036 msgid "Use Global Paint Options" msgstr "Brug globale alternativer for tegning" -#: app/preferences_dialog.c:2090 app/preferences_dialog.c:2092 +#: app/preferences_dialog.c:2051 app/preferences_dialog.c:2053 msgid "Environment" msgstr "MiljЬ" -#: app/preferences_dialog.c:2100 +#: app/preferences_dialog.c:2061 msgid "Resource Consumption" msgstr "Resursebrug" -#: app/preferences_dialog.c:2102 +#: app/preferences_dialog.c:2063 msgid "Conservative Memory Usage" msgstr "Konservativt hukommelsebrug" -#: app/preferences_dialog.c:2130 +#: app/preferences_dialog.c:2091 msgid "Levels of Undo:" msgstr "Angreniveauer:" -#: app/preferences_dialog.c:2174 -msgid "Tile Cache Size:" -msgstr "StЬrrelse pЕ flisbuffer:" - -#: app/preferences_dialog.c:2185 +#: app/preferences_dialog.c:2113 msgid "Number of Processors to Use:" msgstr "Antal prosessorer som skal bruges:" -#: app/preferences_dialog.c:2189 app/transform_tool.c:215 +#: app/preferences_dialog.c:2117 app/transform_tool.c:215 msgid "Scaling" msgstr "Skalering" -#: app/preferences_dialog.c:2207 +#: app/preferences_dialog.c:2135 msgid "Nearest Neighbor (Fast)" msgstr "" -#: app/preferences_dialog.c:2211 +#: app/preferences_dialog.c:2139 msgid "Cubic (Slow)" msgstr "" -#: app/preferences_dialog.c:2216 +#: app/preferences_dialog.c:2144 #, fuzzy msgid "Interpolation Type:" msgstr "Kubisk interpolation" -#: app/preferences_dialog.c:2219 +#: app/preferences_dialog.c:2147 #, fuzzy msgid "File Saving" msgstr "/Filer/Gem" -#: app/preferences_dialog.c:2236 app/preferences_dialog.c:2249 +#: app/preferences_dialog.c:2164 app/preferences_dialog.c:2177 msgid "Always" msgstr "Altid" -#: app/preferences_dialog.c:2237 +#: app/preferences_dialog.c:2165 msgid "Never" msgstr "Aldrig" -#: app/preferences_dialog.c:2241 +#: app/preferences_dialog.c:2169 msgid "Try to Write a Thumbnail File:" msgstr "PrЬv at skrive en miniatyrfil:" -#: app/preferences_dialog.c:2248 +#: app/preferences_dialog.c:2176 msgid "Only when Modified" msgstr "" -#: app/preferences_dialog.c:2253 +#: app/preferences_dialog.c:2181 msgid "\"File > Save\" Saves the Image:" msgstr "" -#: app/preferences_dialog.c:2259 +#: app/preferences_dialog.c:2187 msgid "Session Management" msgstr "Sessionsbehandling" -#: app/preferences_dialog.c:2261 +#: app/preferences_dialog.c:2189 msgid "Session" msgstr "Session" -#: app/preferences_dialog.c:2269 +#: app/preferences_dialog.c:2197 msgid "Window Positions" msgstr "Vinduespositioner" -#: app/preferences_dialog.c:2271 +#: app/preferences_dialog.c:2199 msgid "Save Window Positions on Exit" msgstr "Gem vinduespositioner ved afslut" -#: app/preferences_dialog.c:2285 +#: app/preferences_dialog.c:2213 #, fuzzy msgid "Clear Saved Window Positions Now" msgstr "Nulstil gemte vinduespositioner" -#: app/preferences_dialog.c:2293 +#: app/preferences_dialog.c:2221 msgid "Always Try to Restore Session" msgstr "Altid prЬv at genoprette session" -#: app/preferences_dialog.c:2302 +#: app/preferences_dialog.c:2230 msgid "Devices" msgstr "Enheder" -#: app/preferences_dialog.c:2304 +#: app/preferences_dialog.c:2232 msgid "Save Device Status on Exit" msgstr "Gem enhedsstatus ved afslut" -#: app/preferences_dialog.c:2315 app/preferences_dialog.c:2317 +#: app/preferences_dialog.c:2243 app/preferences_dialog.c:2245 msgid "Monitor" msgstr "Monitor" -#: app/preferences_dialog.c:2325 +#: app/preferences_dialog.c:2253 msgid "Get Monitor Resolution" msgstr "Hent oplЬsning for monitor" -#: app/preferences_dialog.c:2333 +#: app/preferences_dialog.c:2261 #, c-format msgid "(Currently %d x %d dpi)" msgstr "(Den er nu %d x %d dpi)" -#: app/preferences_dialog.c:2384 +#: app/preferences_dialog.c:2313 msgid "From X Server" msgstr "Fra X-server" -#: app/preferences_dialog.c:2399 +#: app/preferences_dialog.c:2328 msgid "Manually:" msgstr "Manuelt" -#: app/preferences_dialog.c:2412 app/preferences_dialog.c:2414 +#: app/preferences_dialog.c:2341 app/preferences_dialog.c:2343 msgid "Directories" msgstr "Mapper" -#: app/preferences_dialog.c:2431 +#: app/preferences_dialog.c:2360 msgid "Temp Dir:" msgstr "Temp-mappe:" -#: app/preferences_dialog.c:2431 +#: app/preferences_dialog.c:2360 msgid "Select Temp Dir" msgstr "VФlg temp-mappe" -#: app/preferences_dialog.c:2432 +#: app/preferences_dialog.c:2361 msgid "Swap Dir:" msgstr "Swap-mappe:" -#: app/preferences_dialog.c:2432 -msgid "Select Swap Dir" -msgstr "VФlg swap-mappe" - -#: app/preferences_dialog.c:2468 +#: app/preferences_dialog.c:2397 msgid "Brushes Directories" msgstr "Pensel mapper" -#: app/preferences_dialog.c:2470 +#: app/preferences_dialog.c:2399 msgid "Select Brushes Dir" msgstr "VФlg mappe til pensler" -#: app/preferences_dialog.c:2472 +#: app/preferences_dialog.c:2401 #, fuzzy msgid "Generated Brushes" msgstr "VФlg mappe til pensler" -#: app/preferences_dialog.c:2472 +#: app/preferences_dialog.c:2401 #, fuzzy msgid "Generated Brushes Directories" msgstr "Pensel mapper" -#: app/preferences_dialog.c:2474 +#: app/preferences_dialog.c:2403 #, fuzzy msgid "Select Generated Brushes Dir" msgstr "VФlg mappe til pensler" -#: app/preferences_dialog.c:2476 +#: app/preferences_dialog.c:2405 msgid "Patterns Directories" msgstr "MЬnster mapper" -#: app/preferences_dialog.c:2478 +#: app/preferences_dialog.c:2407 msgid "Select Patterns Dir" msgstr "VФlg mappe til mЬnstre" -#: app/preferences_dialog.c:2480 +#: app/preferences_dialog.c:2409 msgid "Palettes Directories" msgstr "Palette mapper" -#: app/preferences_dialog.c:2482 +#: app/preferences_dialog.c:2411 msgid "Select Palettes Dir" msgstr "VФlg mappe til paletter" -#: app/preferences_dialog.c:2484 +#: app/preferences_dialog.c:2413 msgid "Gradients Directories" msgstr "Gradient mapper" -#: app/preferences_dialog.c:2486 +#: app/preferences_dialog.c:2415 msgid "Select Gradients Dir" msgstr "VФlg mappe til gradienter" -#: app/preferences_dialog.c:2488 +#: app/preferences_dialog.c:2417 msgid "Plug-Ins" msgstr "TillФg" -#: app/preferences_dialog.c:2488 +#: app/preferences_dialog.c:2417 msgid "Plug-Ins Directories" msgstr "TillФgsmapper" -#: app/preferences_dialog.c:2490 +#: app/preferences_dialog.c:2419 msgid "Select Plug-Ins Dir" msgstr "VФlg mappe til tillФg" -#: app/preferences_dialog.c:2492 +#: app/preferences_dialog.c:2421 msgid "Modules" msgstr "Moduler" -#: app/preferences_dialog.c:2492 +#: app/preferences_dialog.c:2421 msgid "Modules Directories" msgstr "Modul mapper" -#: app/preferences_dialog.c:2494 +#: app/preferences_dialog.c:2423 msgid "Select Modules Dir" msgstr "VФlg mappe til moduler" @@ -5157,67 +5146,67 @@ msgstr "Udvalg: REPLACE" msgid "Selection: " msgstr "Udvalg" -#: app/resize.c:154 +#: app/resize.c:156 msgid "Scale Layer" msgstr "Skaler lag" -#: app/resize.c:156 app/resize.c:181 app/tool_options.c:774 +#: app/resize.c:158 app/resize.c:183 app/tool_options.c:774 msgid "Size" msgstr "StЬrrelse" -#: app/resize.c:160 +#: app/resize.c:162 #, fuzzy msgid "Scale Image" msgstr "Gem billede" -#: app/resize.c:162 +#: app/resize.c:164 msgid "Pixel Dimensions" msgstr "Pixeldimentioner" -#: app/resize.c:172 +#: app/resize.c:174 msgid "Set Layer Boundary Size" msgstr "" -#: app/resize.c:177 +#: app/resize.c:179 msgid "Set Canvas Size" msgstr "" #. the original width & height labels -#: app/resize.c:234 app/scale_tool.c:77 +#: app/resize.c:236 app/scale_tool.c:77 msgid "Original Width:" msgstr "Original bredde:" #. the new size labels -#: app/resize.c:259 app/resize.c:504 +#: app/resize.c:261 app/resize.c:506 msgid "New Width:" msgstr "Ny bredde:" #. the scale ratio labels -#: app/resize.c:324 +#: app/resize.c:326 msgid "Ratio X:" msgstr "X-rate:" #. the x and y offset labels -#: app/resize.c:409 +#: app/resize.c:411 msgid "X:" msgstr "X:" -#: app/resize.c:490 +#: app/resize.c:492 msgid "Print Size & Display Unit" msgstr "Udskriv stЬrrelse og vis enhed" -#: app/resize.c:1252 +#: app/resize.c:1254 msgid "Scale Error: Both width and height must be greater than zero." msgstr "" -#: app/resize.c:1334 +#: app/resize.c:1336 msgid "" "The chosen image size will shrink\n" "some layers completely away.\n" "Is this what you want?" msgstr "" -#: app/resize.c:1338 +#: app/resize.c:1340 msgid "Layer Too Small" msgstr "" @@ -5266,7 +5255,7 @@ msgstr "" msgid "Text Tool" msgstr "TekstvФrktЬj" -#: app/text_tool.c:162 app/tool_options.c:233 +#: app/text_tool.c:162 app/tool_options.c:232 msgid "Antialiasing" msgstr "Antialiasing" @@ -5343,110 +5332,110 @@ msgid "" "GIMP data directory. Please check your installation." msgstr "" -#: app/tool_options.c:122 +#: app/tool_options.c:121 msgid "This tool has no options." msgstr "" -#: app/tool_options.c:146 +#: app/tool_options.c:145 #, fuzzy msgid "Rectangular Selection" msgstr "Fjerpensvalg" -#: app/tool_options.c:148 +#: app/tool_options.c:147 #, fuzzy msgid "Elliptical Selection" msgstr "Flydende udvalg" -#: app/tool_options.c:150 +#: app/tool_options.c:149 #, fuzzy msgid "Free-Hand Selection" msgstr "Fra udvalg" -#: app/tool_options.c:152 +#: app/tool_options.c:151 #, fuzzy msgid "Fuzzy Selection" msgstr "Fra udvalg" -#: app/tool_options.c:154 +#: app/tool_options.c:153 #, fuzzy msgid "Bezier Selection" msgstr "Kantvalg" -#: app/tool_options.c:156 app/tools.c:178 +#: app/tool_options.c:155 app/tools.c:178 msgid "Intelligent Scissors" msgstr "" -#: app/tool_options.c:158 +#: app/tool_options.c:157 #, fuzzy msgid "By-Color Selection" msgstr "Ved farvevalg" -#: app/tool_options.c:189 +#: app/tool_options.c:188 msgid "Feather" msgstr "Fjer" -#: app/tool_options.c:297 +#: app/tool_options.c:296 #, fuzzy msgid "Fixed Size / Aspect Ratio" msgstr "Aspektrate:" -#: app/tool_options.c:363 +#: app/tool_options.c:362 msgid "Unit:" msgstr "Enhed:" -#: app/tool_options.c:448 app/tools.c:376 +#: app/tool_options.c:447 app/tools.c:376 msgid "Bucket Fill" msgstr "Udfyldning" -#: app/tool_options.c:450 +#: app/tool_options.c:449 #, fuzzy msgid "Blend Tool" msgstr "Bland: " -#: app/tool_options.c:452 app/tools.c:412 +#: app/tool_options.c:451 app/tools.c:412 msgid "Pencil" msgstr "Blyant" -#: app/tool_options.c:454 app/tools.c:430 +#: app/tool_options.c:453 app/tools.c:430 msgid "Paintbrush" msgstr "Malerpensel" -#: app/tool_options.c:456 app/tools.c:448 +#: app/tool_options.c:455 app/tools.c:448 msgid "Eraser" msgstr "ViskelФder" -#: app/tool_options.c:458 app/tools.c:466 +#: app/tool_options.c:457 app/tools.c:466 msgid "Airbrush" msgstr "" -#: app/tool_options.c:460 +#: app/tool_options.c:459 #, fuzzy msgid "Clone Tool" msgstr "Alternativer for kloneverktЬy" -#: app/tool_options.c:462 +#: app/tool_options.c:461 #, fuzzy msgid "Convolver" msgstr "Konverter" -#: app/tool_options.c:464 +#: app/tool_options.c:463 msgid "Ink Tool" msgstr "" -#: app/tool_options.c:466 app/tools.c:538 app/tools.c:544 +#: app/tool_options.c:465 app/tools.c:538 app/tools.c:544 msgid "Dodge or Burn" msgstr "" -#: app/tool_options.c:468 +#: app/tool_options.c:467 #, fuzzy msgid "Smudge Tool" msgstr "Alternativer for Smudge" -#: app/tool_options.c:583 +#: app/tool_options.c:582 msgid "Incremental" msgstr "Inkremental" -#: app/tool_options.c:689 +#: app/tool_options.c:688 #, fuzzy msgid "Pressure Sensitivity" msgstr "FЬlsomhed:" @@ -6196,6 +6185,114 @@ msgstr "Statisk farve" msgid "Color History" msgstr "FarvevФlger" +#, fuzzy +#~ msgid "Custom from Editor" +#~ msgstr "Egendefineret fra editor" + +#~ msgid "" +#~ "The GIMP - GNU Image Manipulation Program\n" +#~ "\n" +#~ msgstr "" +#~ "GIMP'en - GNU Billede Manipulerings Program\n" +#~ "\n" + +#~ msgid "Install" +#~ msgstr "InstallИr" + +#~ msgid "Ignore" +#~ msgstr "IgnorИr" + +#~ msgid "Installation Log" +#~ msgstr "Installationslog" + +#~ msgid "" +#~ "\n" +#~ "Installation successful!\n" +#~ msgstr "" +#~ "\n" +#~ "Installation var en success!\n" + +#~ msgid "/File/Dialogs" +#~ msgstr "/Filer/Dialoger" + +#~ msgid "/File" +#~ msgstr "/Filer" + +#~ msgid "/Edit" +#~ msgstr "/RedigИr" + +#~ msgid "/Edit/Buffer" +#~ msgstr "/RedigИr/StЬdpude" + +#~ msgid "/Select" +#~ msgstr "/VФlg" + +#~ msgid "/View" +#~ msgstr "/Vis" + +#~ msgid "/View/Zoom" +#~ msgstr "/Vis/Zoom" + +#~ msgid "/Image" +#~ msgstr "/Billede" + +#~ msgid "/Image/Mode" +#~ msgstr "/Billede/Modus" + +#~ msgid "/Image/Colors" +#~ msgstr "/Billede/Farver" + +#~ msgid "/Image/Colors/Auto" +#~ msgstr "/Billede/Farver/Auto" + +#~ msgid "/Image/Alpha" +#~ msgstr "/Billede/Alfa" + +#~ msgid "/Image/Transforms" +#~ msgstr "/Billede/Transformer" + +#~ msgid "/Layers" +#~ msgstr "/Lag" + +#~ msgid "/Layers/Stack" +#~ msgstr "/Lag/Stabel" + +#~ msgid "/Tools" +#~ msgstr "/VФrktЬj" + +#, fuzzy +#~ msgid "/Tools/Select Tools" +#~ msgstr "/VФrktЬj/Standard farver" + +#, fuzzy +#~ msgid "/Tools/Transform Tools" +#~ msgstr "/VФrktЬj/Transformer" + +#, fuzzy +#~ msgid "/Tools/Paint Tools" +#~ msgstr "/VФrktЬj/Malerpensel" + +#~ msgid "/Dialogs" +#~ msgstr "/Dialoger" + +#~ msgid "/Filters" +#~ msgstr "/Filtre" + +#~ msgid "/Script-Fu" +#~ msgstr "/Skript-Fu" + +#~ msgid "/Stack" +#~ msgstr "/Stabel" + +#~ msgid "Bytes" +#~ msgstr "Bytes" + +#~ msgid "KiloBytes" +#~ msgstr "Kilobytes" + +#~ msgid "MegaBytes" +#~ msgstr "Megabytes" + #~ msgid "Fill Options" #~ msgstr "Indstillinger for fyld" diff --git a/po/de.po b/po/de.po index 014b00694d..183e9d7d18 100644 --- a/po/de.po +++ b/po/de.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: GIMP 1.1.18\n" -"POT-Creation-Date: 2000-03-11 19:40+0100\n" -"PO-Revision-Date: 2000-03-11 14:40+0100\n" +"POT-Creation-Date: 2000-03-14 23:09+0100\n" +"PO-Revision-Date: 2000-03-14 23:33+0100\n" "Last-Translator: Sven Neumann \n" "Language-Team: German \n" "MIME-Version: 1.0\n" @@ -62,45 +62,45 @@ msgstr "wurde Euch gebracht von" msgid "GIMP Startup" msgstr "GIMP Start" -#: app/app_procs.c:479 app/gimprc.c:440 +#: app/app_procs.c:479 app/gimprc.c:448 #, c-format msgid "parsing \"%s\"\n" msgstr "bearbeite \"%s\"\n" #. initialize the xcf file format routines -#: app/app_procs.c:539 +#: app/app_procs.c:541 msgid "Looking for data files" msgstr "Suche nach Arbeitsdaten" -#: app/app_procs.c:539 +#: app/app_procs.c:541 msgid "Parasites" msgstr "Parasiten" #. initialize the global parasite table -#: app/app_procs.c:541 app/internal_procs.c:71 app/preferences_dialog.c:2530 +#: app/app_procs.c:543 app/internal_procs.c:71 app/preferences_dialog.c:2397 msgid "Brushes" msgstr "Pinsel" #. initialize the list of gimp brushes -#: app/app_procs.c:543 app/internal_procs.c:143 app/preferences_dialog.c:2538 +#: app/app_procs.c:545 app/internal_procs.c:143 app/preferences_dialog.c:2405 msgid "Patterns" msgstr "Muster" #. initialize the list of gimp patterns -#: app/app_procs.c:545 app/preferences_dialog.c:2542 +#: app/app_procs.c:547 app/preferences_dialog.c:2409 msgid "Palettes" msgstr "Farbpaletten" #. initialize the list of gimp palettes -#: app/app_procs.c:547 app/internal_procs.c:113 app/preferences_dialog.c:2546 +#: app/app_procs.c:549 app/internal_procs.c:113 app/preferences_dialog.c:2413 msgid "Gradients" msgstr "FarbverlДufe" -#: app/app_procs.c:735 +#: app/app_procs.c:737 msgid "Really Quit?" msgstr "Wirklich Beenden?" -#: app/app_procs.c:739 +#: app/app_procs.c:741 msgid "" "Some files unsaved.\n" "\n" @@ -110,21 +110,21 @@ msgstr "" "\n" "GIMP wirklich beenden?" -#: app/app_procs.c:740 app/install.c:272 app/install.c:430 +#: app/app_procs.c:742 msgid "Quit" msgstr "Beenden" -#: app/app_procs.c:740 app/brightness_contrast.c:218 app/channel_ops.c:93 +#: app/app_procs.c:742 app/brightness_contrast.c:218 app/channel_ops.c:93 #: app/channels_dialog.c:2463 app/channels_dialog.c:2637 #: app/color_balance.c:275 app/color_notebook.c:125 app/convert.c:506 #: app/curves.c:559 app/file_new_dialog.c:207 app/file_new_dialog.c:357 #: app/gdisplay_color_ui.c:129 app/gdisplay_ops.c:346 app/gimpprogress.c:112 -#: app/global_edit.c:739 app/gradient.c:1769 app/gradient.c:4839 -#: app/gradient.c:5400 app/hue_saturation.c:377 app/interface.c:984 -#: app/layers_dialog.c:3326 app/layers_dialog.c:3517 app/layers_dialog.c:3617 -#: app/layers_dialog.c:3889 app/levels.c:341 app/palette.c:1826 -#: app/posterize.c:201 app/preferences_dialog.c:1502 app/qmask.c:281 -#: app/resize.c:195 app/resize.c:1345 app/threshold.c:275 +#: app/global_edit.c:739 app/gradient.c:1769 app/gradient.c:4841 +#: app/gradient.c:5402 app/hue_saturation.c:377 app/install.c:532 +#: app/interface.c:984 app/layers_dialog.c:3326 app/layers_dialog.c:3517 +#: app/layers_dialog.c:3617 app/layers_dialog.c:3889 app/levels.c:341 +#: app/palette.c:1826 app/posterize.c:201 app/preferences_dialog.c:1434 +#: app/qmask.c:281 app/resize.c:195 app/resize.c:1345 app/threshold.c:275 #: modules/cdisplay_gamma.c:358 msgid "Cancel" msgstr "Abbrechen" @@ -169,7 +169,7 @@ msgstr "Eigener Farbverlauf" msgid "Blend:" msgstr "эbergang:" -#: app/blend.c:320 app/gradient.c:533 app/preferences_dialog.c:2271 +#: app/blend.c:320 app/gradient.c:533 app/preferences_dialog.c:2137 msgid "Linear" msgstr "Linear" @@ -217,7 +217,7 @@ msgstr "Spirale (linksdrehend)" msgid "Gradient:" msgstr "Farbverlauf:" -#: app/blend.c:342 app/preferences_dialog.c:1870 +#: app/blend.c:342 app/preferences_dialog.c:1769 msgid "None" msgstr "Keine" @@ -280,7 +280,7 @@ msgstr "Helligkeit-Kontrast funktioniert nicht bei indizierten Bildern." #: app/gdisplay_color_ui.c:127 app/gimpui.c:122 app/hue_saturation.c:373 #: app/layers_dialog.c:3324 app/layers_dialog.c:3515 app/layers_dialog.c:3615 #: app/layers_dialog.c:3887 app/levels.c:337 app/module_db.c:281 -#: app/posterize.c:197 app/preferences_dialog.c:1498 app/qmask.c:279 +#: app/posterize.c:197 app/preferences_dialog.c:1430 app/qmask.c:279 #: app/resize.c:193 app/resize.c:1345 app/threshold.c:271 #: modules/cdisplay_gamma.c:351 msgid "OK" @@ -324,7 +324,7 @@ msgstr "Pinseleditor" #: app/lc_dialog.c:195 app/measure.c:286 app/nav_window.c:1345 #: app/palette.c:2072 app/palette.c:2088 app/palette.c:3118 #: app/palette_select.c:66 app/pattern_select.c:172 -#: app/preferences_dialog.c:364 app/tips_dialog.c:171 app/tools.c:1088 +#: app/preferences_dialog.c:359 app/tips_dialog.c:171 app/tools.c:1088 #: app/undo_history.c:752 msgid "Close" msgstr "Schlieъen" @@ -485,8 +485,8 @@ msgid "Offset X:" msgstr "Versatz X:" #: app/channel_ops.c:115 app/crop.c:1063 app/file_new_dialog.c:530 -#: app/resize.c:332 app/resize.c:417 app/resize.c:575 app/rotate_tool.c:106 -#: app/scale_tool.c:100 app/shear_tool.c:82 +#: app/install.c:1108 app/resize.c:332 app/resize.c:417 app/resize.c:575 +#: app/rotate_tool.c:106 app/scale_tool.c:100 app/shear_tool.c:82 msgid "Y:" msgstr "Y:" @@ -975,7 +975,7 @@ msgid "Load" msgstr "жffnen" #: app/curves.c:704 app/devices.c:753 app/levels.c:608 app/palette.c:2068 -#: app/preferences_dialog.c:362 app/preferences_dialog.c:1500 +#: app/preferences_dialog.c:357 app/preferences_dialog.c:1432 msgid "Save" msgstr "Sichern" @@ -1186,8 +1186,8 @@ msgstr "Bildgr msgid "New Image" msgstr "Neues Bild" -#: app/file_new_dialog.c:453 app/preferences_dialog.c:1573 -#: app/preferences_dialog.c:1610 +#: app/file_new_dialog.c:453 app/install.c:1093 app/preferences_dialog.c:1505 +#: app/preferences_dialog.c:1542 msgid "Pixels" msgstr "Pixel" @@ -1226,7 +1226,7 @@ msgstr "" msgid "No Selection." msgstr "Keine Auswahl." -#: app/fileops.c:418 app/fileops.c:1624 app/fileops.c:1731 +#: app/fileops.c:418 app/fileops.c:1629 app/fileops.c:1736 #, c-format msgid "Save failed: %s" msgstr "Sichern schlug fehl: %s" @@ -1252,58 +1252,58 @@ msgstr "" msgid "Revert failed." msgstr "ZurЭcksetzen schlug fehl." -#: app/fileops.c:1240 +#: app/fileops.c:1245 msgid "(This thumbnail may be out of date)" msgstr "(Diese Vorschau kЖnnte veraltet sein)" -#: app/fileops.c:1241 +#: app/fileops.c:1246 msgid "(No Information)" msgstr "(Keine Information)" -#: app/fileops.c:1251 +#: app/fileops.c:1256 msgid "(Thumbnail saving is disabled)" msgstr "(Vorschau-Sicherung ist abgeschaltet)" -#: app/fileops.c:1255 +#: app/fileops.c:1260 msgid "(Could not write thumbnail file)" msgstr "(Konnte Vorschau-Datei nicht schreiben)" -#: app/fileops.c:1259 +#: app/fileops.c:1264 msgid "(Thumbnail file not written)" msgstr "(Vorschau-Datei nicht geschrieben)" -#: app/fileops.c:1276 +#: app/fileops.c:1281 msgid "No preview available" msgstr "Keine Vorschau verfЭgbar" -#: app/fileops.c:1394 +#: app/fileops.c:1399 msgid "(could not make preview)" msgstr "(konnte keine Vorschau erstellen)" -#: app/fileops.c:1467 app/fileops.c:1546 +#: app/fileops.c:1472 app/fileops.c:1551 #, c-format msgid "Open failed: %s" msgstr "жffnen schlug fehl: %s" -#: app/fileops.c:1602 +#: app/fileops.c:1607 #, c-format msgid "%s is an irregular file (%s)" msgstr "%s ist keine regulДre Datei (%s)" -#: app/fileops.c:1670 +#: app/fileops.c:1675 #, c-format msgid "%s exists, overwrite?" msgstr "%s existiert, Эberschreiben?" -#: app/fileops.c:1674 +#: app/fileops.c:1679 msgid "File Exists!" msgstr "Datei Existiert!" -#: app/fileops.c:1680 +#: app/fileops.c:1685 msgid "Yes" msgstr "Ja" -#: app/fileops.c:1682 +#: app/fileops.c:1687 msgid "No" msgstr "Nein" @@ -1311,13 +1311,13 @@ msgstr "Nein" msgid "Flip Tool" msgstr "Spiegeln" -#: app/flip_tool.c:95 app/preferences_dialog.c:1624 -#: app/preferences_dialog.c:2417 +#: app/flip_tool.c:95 app/preferences_dialog.c:1556 +#: app/preferences_dialog.c:2284 msgid "Horizontal" msgstr "Horizontal" -#: app/flip_tool.c:97 app/preferences_dialog.c:1626 -#: app/preferences_dialog.c:2419 +#: app/flip_tool.c:97 app/preferences_dialog.c:1558 +#: app/preferences_dialog.c:2286 msgid "Vertical" msgstr "Vertikal" @@ -1343,7 +1343,7 @@ msgstr "" msgid "RGB-empty" msgstr "RGB leer" -#: app/gdisplay.c:217 app/image_new.c:54 app/preferences_dialog.c:1670 +#: app/gdisplay.c:217 app/image_new.c:54 app/preferences_dialog.c:1602 msgid "RGB" msgstr "RGB" @@ -1612,45 +1612,45 @@ msgstr "Fortschritt" msgid "Please wait..." msgstr "Bitte warten..." -#: app/gimprc.c:407 app/plug_in.c:304 +#: app/gimprc.c:415 app/plug_in.c:304 msgid "Resource configuration" msgstr "Ressourcen Konfiguration" -#: app/gimprc.c:459 +#: app/gimprc.c:467 #, c-format msgid "error parsing: \"%s\"\n" msgstr "Fehler bei Bearbeitung von: \"%s\"\n" -#: app/gimprc.c:460 +#: app/gimprc.c:468 #, c-format msgid " at line %d column %d\n" msgstr " in Zeile %d Spalte %d\n" -#: app/gimprc.c:461 +#: app/gimprc.c:469 #, c-format msgid " unexpected token: %s\n" msgstr " unerwartetes Symbol: %s\n" -#: app/gimprc.c:1465 +#: app/gimprc.c:1473 msgid "error parsing pluginrc" msgstr "Fehler beim Lesen der pluginrc" -#: app/gimprc.c:2858 +#: app/gimprc.c:2866 #, c-format msgid "Can't open %s; %s" msgstr "Kann %s nicht Жffnen; %s" -#: app/gimprc.c:2877 +#: app/gimprc.c:2885 #, c-format msgid "Can't rename %s to %s.old; %s" msgstr "Kann %s nicht in %s.old umbenennen; %s" -#: app/gimprc.c:2883 +#: app/gimprc.c:2891 #, c-format msgid "Couldn't reopen %s\n" msgstr "Konnte %s nicht wieder Жffnen\n" -#: app/gimprc.c:2895 +#: app/gimprc.c:2903 #, c-format msgid "Can't write to %s; %s" msgstr "Kann nicht in %s schreiben; %s" @@ -1929,7 +1929,7 @@ msgstr "Markerposition: %0.6f" msgid "Distance: %0.6f" msgstr "Abstand: %0.6f" -#: app/gradient.c:3387 app/gradient.c:4448 +#: app/gradient.c:3387 app/gradient.c:4450 msgid "Left endpoint's color" msgstr "Farbe des linken Endpunktes" @@ -1949,7 +1949,7 @@ msgstr "Rechter Endpunkt" msgid "Save to" msgstr "Sichern unter" -#: app/gradient.c:3429 app/gradient.c:4526 +#: app/gradient.c:3429 app/gradient.c:4528 msgid "Right endpoint's color" msgstr "Farbe des rechten Endpunktes" @@ -1977,7 +1977,7 @@ msgstr "Farbe f msgid "Split segment at midpoint" msgstr "Segment mittig teilen" -#: app/gradient.c:3734 app/gradient.c:4829 +#: app/gradient.c:3734 app/gradient.c:4831 msgid "Split segment uniformly" msgstr "Segment gleichmДъig teilen" @@ -1997,7 +1997,7 @@ msgstr "Punkte gleichm msgid "Flip segment" msgstr "Segment spiegeln" -#: app/gradient.c:3744 app/gradient.c:5390 +#: app/gradient.c:3744 app/gradient.c:5392 msgid "Replicate segment" msgstr "Segment duplizieren" @@ -2013,7 +2013,7 @@ msgstr "F msgid "Split segments at midpoints" msgstr "Segment an Mittelpunkten aufteilen" -#: app/gradient.c:3755 app/gradient.c:4830 +#: app/gradient.c:3755 app/gradient.c:4832 msgid "Split segments uniformly" msgstr "Segment gleichmДъig aufteilen" @@ -2033,7 +2033,7 @@ msgstr "Punkte gleichm msgid "Flip selection" msgstr "Auswahl spiegeln" -#: app/gradient.c:3765 app/gradient.c:5391 +#: app/gradient.c:3765 app/gradient.c:5393 msgid "Replicate selection" msgstr "Auswahl duplizieren" @@ -2046,49 +2046,49 @@ msgstr "VG Farbe" msgid "RGBA (%0.3f, %0.3f, %0.3f, %0.3f)" msgstr "RGBA (%0.3f, %0.3f, %0.3f, %0.3f)" -#: app/gradient.c:4615 app/gradient.c:4685 +#: app/gradient.c:4617 app/gradient.c:4687 msgid "(Varies)" msgstr "(verДnderlich)" -#: app/gradient.c:4837 +#: app/gradient.c:4839 msgid "Split" msgstr "Teilen" #. Instructions -#: app/gradient.c:4851 +#: app/gradient.c:4853 msgid "Please select the number of uniform parts" msgstr "Bitte Anzahl der Abschnitte eingeben" -#: app/gradient.c:4857 +#: app/gradient.c:4859 msgid "in which you want to split the selected segment" msgstr "in der Sie das ausgewДhlte Segment teilen wollen" -#: app/gradient.c:4858 +#: app/gradient.c:4860 msgid "in which you want to split the segments in the selection" msgstr "in der Sie die Segmente in der Auswahl teilen woll" -#: app/gradient.c:5218 +#: app/gradient.c:5220 msgid "Blend endpoints' colors" msgstr "эbergang zwischen den Endpunktfarben" -#: app/gradient.c:5230 +#: app/gradient.c:5232 msgid "Blend endpoints' opacity" msgstr "эbergang zwischen der Endpunktdeckkraft" -#: app/gradient.c:5398 +#: app/gradient.c:5400 msgid "Replicate" msgstr "Duplizieren" #. Instructions -#: app/gradient.c:5411 +#: app/gradient.c:5413 msgid "Please select the number of times" msgstr "Bitte Anzahl der Nachbildungen" -#: app/gradient.c:5416 +#: app/gradient.c:5418 msgid "you want to replicate the selected segment" msgstr "des ausgweДhlten Segments eingeben" -#: app/gradient.c:5417 +#: app/gradient.c:5419 msgid "you want to replicate the selection" msgstr "der Auswahl eingeben" @@ -2193,7 +2193,7 @@ msgid "Saturation" msgstr "SДttigung" #: app/image_new.c:59 app/info_window.c:65 app/info_window.c:534 -#: app/preferences_dialog.c:1671 +#: app/preferences_dialog.c:1603 msgid "Grayscale" msgstr "Graustufen" @@ -2259,8 +2259,8 @@ msgstr "" "Der aktive Farbverlauf.\n" "Klick Жffnet die Farbverlaufsauswahl." -#: app/info_dialog.c:181 app/preferences_dialog.c:1844 -#: app/preferences_dialog.c:1950 +#: app/info_dialog.c:181 app/preferences_dialog.c:1743 +#: app/preferences_dialog.c:1849 msgid "General" msgstr "Allgemein" @@ -2392,11 +2392,11 @@ msgstr "Anpassen:" msgid "Shape" msgstr "Form" -#: app/install.c:83 +#: app/install.c:95 msgid "The GIMP is not properly installed for the current user\n" msgstr "GIMP ist fЭr den aktuellen Benutzer nicht richtig installiert\n" -#: app/install.c:84 +#: app/install.c:96 msgid "" "User installation was skipped because the '--nointerface' flag was " "encountered\n" @@ -2404,418 +2404,495 @@ msgstr "" "Benutzerinstallation wurde Эbersprungen, weil '--nointerface' Эbergeben " "wurde\n" -#: app/install.c:85 +#: app/install.c:97 msgid "" "To perform user installation, run the GIMP without the '--nointerface' flag\n" msgstr "" "Um die Benutzerinstallation auszufЭhren, starten sie GIMP ohne " "'--nointerface'\n" -#: app/install.c:113 +#: app/install.c:142 +msgid "" +"The gimprc is used to store personal preferences\n" +"that affect GIMP's default behavior.\n" +"Paths to search for brushes, palettes, gradients,\n" +"patterns, plug-ins and modules can also configured here." +msgstr "" +"Die Datei gimprc wird benutzt um persЖnliche Einstellungen\n" +"wie GIMPs Standardverhalten zu sichern.\n" +"Auch die Suchpfade fЭr Pinsel, Paletten, FarbverlДufe,\n" +"Muster, Plugins und Module kЖnnen hier konfiguriert werden." + +#: app/install.c:149 +msgid "" +"GIMP uses an additional gtkrc file so you can\n" +"configure it to look differently than other GTK apps." +msgstr "" + +#: app/install.c:154 +msgid "" +"Plug-ins and extensions are external programs run by\n" +"the GIMP which provide additional functionality.\n" +"These programs are searched for at run-time and\n" +"information about their functionality and mod-times\n" +"is cached in this file. This file is intended to\n" +"be GIMP-readable only, and should not be edited." +msgstr "" +"Plugins und Erweiterungen sind externe Programme, die\n" +"von GIMP gestartet werden und die weitere FunktionalitДt\n" +"bereitstellen. Diese Programme werden zur Laufzeit gesucht\n" +"und die Informationen Эber ihre FunktionalitДt und ihr\n" +"Erzeugungsdatum werden in dieser Datei gesichert.\n" +"Diese Datei sollte nur von GIMP gelesen und nicht\n" +"bearbeitet werden." + +#: app/install.c:163 +msgid "" +"Key shortcuts can be dynamically redefined in The GIMP.\n" +"The menurc is a dump of your configuration so it can.\n" +"be remembered for the next session. You may edit this\n" +"file if you wish, but it is much easier to define the\n" +"keys from within The GIMP. Deleting this file will\n" +"restore the default shortcuts." +msgstr "" +"TastaturkЭrzel kЖnnen in GIMP dynamisch vergeben werden.\n" +"Die Datei menurc ist eine Sicherung Ihrer Konfiguration,\n" +"so daъ diese auch in der nДchsten Sitzung erhalten bleibt.\n" +"Diese Datei kann editiert werden, aber es ist einfacher,\n" +"die TastaturkЭrzel aus GIMP heraus zu konfigurieren.\n" +"Wird diese Datei gelЖscht, so wird die Standard\n" +"Tastaturbelegung wiederhergestellt." + +#: app/install.c:172 +msgid "" +"The sessionrc is used to store what dialog windows were\n" +"open the last time you quit The GIMP. You can configure\n" +"The GIMP to reopen these dialogs at the saved position." +msgstr "" +"Die Datei sessionrc wird benutzt, um zu sichern, welche\n" +"Fenster beim Schliessen von GIMP geЖffnet waren. Sie kЖnnen\n" +"GIMP so konfigurieren, daъ diese Dialoge beim Start an der\n" +"gesicherten Position wieder geЖffnet werden." + +#: app/install.c:178 +msgid "" +"The unitrc is used to store your user units database.\n" +"You can define additional units and use them just\n" +"like you use the built-in units inches, millimeters,\n" +"points and picas. This file is overwritten each time\n" +"you quit the GIMP." +msgstr "" +"Die Datei unitrc wird benutzt, um Ihre Einheiten-Datenbank\n" +"zu sichern. Sie kЖnnen zusДtzliche Einheiten definieren\n" +"und sie wie die vordefinierten Einheiten wie Inch,\n" +"Millimeter, Punkt und Pica benutzen. Diese Datei wird\n" +"jedesmal Эberschrieben, wenn Sie GIMP beenden." + +#: app/install.c:186 +msgid "" +"This is a subdirectory which can be used to store\n" +"user defined brushes. The default gimprc file\n" +"checks this subdirectory in addition to the system-\n" +"wide gimp brushes installation when searching for\n" +"brushes." +msgstr "" +"Dies ist ein Unterverzeichnis, das verwendet werden kann,\n" +"um benutzerdefinierte Pinsel zu sichern. Entsprechend der\n" +"Standard gimprc Datei wird dieses Verzeichnis zusДtzlich zum\n" +"systemweiten Pinselinstallation durchsucht, wenn nach Pinsel\n" +"gesucht wird." + +#: app/install.c:194 +msgid "" +"This is a subdirectory which is used to store brushes\n" +"that are created with the brush editor. The default\n" +"gimprc file checks this subdirectory when searching for\n" +"generated brushes." +msgstr "" +"Dies ist ein Unterverzeichnis, das verwendet wird, um\n" +"Pinsel zu sichern, die mit dem Pinseleditor erstellt wurden\n" +"Entsprechend der Standard gimprc wird dieses Verzeichnis\n" +"durchsucht, wenn nach erzeugten Pinsel gesucht wird." + +#: app/install.c:201 +msgid "" +"This is a subdirectory which can be used to store\n" +"user defined gradients. The default gimprc file\n" +"checks this subdirectory in addition to the system-\n" +"wide gimp gradients installation when searching for\n" +"gradients." +msgstr "" +"Dies ist ein Unterverzeichnis, das verwendet werden kann,\n" +"um benutzerdefinierte FarbverlДufe zu sichern.\n" +"Entsprechend der Standard gimprc wird dieses Verzeichnis\n" +"zusДtzlich zur systemweiten Verlaufsinstallation durchsucht,\n" +"wenn nach FarbverlДufen gesucht wird." + +#: app/install.c:209 +msgid "" +"This is a subdirectory which can be used to store\n" +"user defined palettes. The default gimprc file\n" +"checks only this subdirectory (not the system-wide\n" +"installation) when searching for palettes. During\n" +"installation, the system palettes will be copied\n" +"here. This is done to allow modifications made to\n" +"palettes during GIMP execution to persist across\n" +"sessions." +msgstr "" +"Dies ist ein Unterverzeichnis, das verwendet werden kann,\n" +"um benutzerdefinierte Paletten zu sichern. Entsprechend\n" +"der Standard gimprc Datei wird nur dieses Verzeichnis\n" +"(nicht die systemweite Installation) durchsucht, wenn nach\n" +"Paletten gesucht wird. WДhrend der Installation werden die\n" +"Systempaletten hierher kopiert, damit дnderungen an den\n" +"Paletten wДhrend der AusfЭhrung von GIMP erhalten bleiben." + +#: app/install.c:220 +msgid "" +"This is a subdirectory which can be used to store\n" +"user defined patterns. The default gimprc file\n" +"checks this subdirectory in addition to the system-\n" +"wide gimp patterns installation when searching for\n" +"patterns." +msgstr "" +"Dies ist ein Unterverzeichnis, das verwendet werden kann,\n" +"um benutzerdefinierte FЭllmuster zu sichern. Entsprechend\n" +"der Standard gimprc wird dieses Verzeichnis zusДtzlich zur\n" +"systemweiten Musterinstallation durchsucht, wenn nach\n" +"FЭllmustern gesucht wird." + +#: app/install.c:228 +msgid "" +"This is a subdirectory which can be used to store\n" +"user created, temporary, or otherwise non-system-\n" +"supported plug-ins. The default gimprc file\n" +"checks this subdirectory in addition to the system-\n" +"wide GIMP plug-in directories when searching for\n" +"plug-ins." +msgstr "" +"Dies ist ein Unterverzeichnis, das verwendet werden kann,\n" +"um selbsterstellte, temporДre oder in anderer Weise nicht\n" +"systemweit unterstЭtzte Plugins zu speichern. Entsprechend\n" +"der Standard gimprc wird dieses Verzeichnis zusДtzlich zum\n" +"systemweiten Pluginverzeichnis durchsucht, wenn nach\n" +"Plugins gesucht wird." + +#: app/install.c:237 +msgid "" +"This subdirectory can be used to store user created,\n" +"temporary, or otherwise non-system-supported DLL modules.\n" +"The default gimprc file checks this subdirectory\n" +"in addition to the system-wide GIMP module directory\n" +"when searching for modules to load when initializing." +msgstr "" +"Dieses Unterverzeichnis kann verwendet werden, um\n" +"selbsterstellte, temporДre oder in anderer Weise nicht\n" +"systemweit unterstЭtzte DLL Module zu speichern.\n" +"Entsprechend der Standard gimprc wird dieses Verzeichnis\n" +"zusДtzlich zum systemweiten Modulverzeichnis durchsucht,\n" +"wenn nach Modulen gesucht wird." + +#: app/install.c:245 +msgid "" +"This subdirectory is used by the GIMP to store \n" +"user created and installed scripts. The default gimprc\n" +"file checks this subdirectory in addition to the system-\n" +"wide gimp scripts subdirectory when searching for scripts" +msgstr "" +"Dieses Unterverzeichnis kann verwendet werden, um\n" +"selbsterstellte Skripte zu speichern. Entsprechend der\n" +"Standard gimprc wird dieses Verzeichnis zusДtzlich zum\n" +"systemweiten Skriptverzeichnis durchsucht, wenn nach\n" +"Skripten gesucht wird." + +#: app/install.c:252 +msgid "" +"This subdirectory is used by the GIMP to temporarily\n" +"store undo buffers to reduce memory usage. If GIMP is\n" +"unceremoniously killed, files may persist in this directory\n" +"of the form: gimp<#>.<#>. These files are useless across\n" +"GIMP sessions and can be destroyed with impunity." +msgstr "" +"Dieses Unterverzeichnis wird von GIMP verwendet, um\n" +"temporДr Bilddaten abzulegen, um so den Bedarf an\n" +"Hauptspeicher zu verringern. When GIMP unschЖn beendet\n" +"wird, kann es passieren, das hier Dateien mit Namen wie\n" +"gimp<#>.<#> zurЭckbleiben. Diese Dateien sind fЭr eine\n" +"andere GIMP-Session nutzlos und kЖnnen bedenkenlos\n" +"entfernt werden." + +#: app/install.c:260 +msgid "" +"This subdirectory is used to store parameter files for\n" +"the Curves tool." +msgstr "" + +#: app/install.c:265 +msgid "" +"This subdirectory is used to store parameter files for\n" +"the Levels tool." +msgstr "" + +#: app/install.c:270 +msgid "" +"This is a subdirectory which can be used to store\n" +"user defined fractals to be used by the FractalExplorer\n" +"plug-in. The default gimprc file checks this subdirectory in\n" +"addition to the systemwide gimp FractalExplorer installation\n" +"when searching for fractals." +msgstr "" +"Dies ist ein Unterverzeichnis, das verwendet werden kann,\n" +"um benutzerdefinierte Fraktale zu sichern, die mit dem\n" +"Fraktalexplorer Plugin benutzt werden. Entsprechend der\n" +"Standard gimprc wird dieses Verzeichnis zusДtzlich zur\n" +"systemweiten Fraktalinstallation durchsucht, wenn nach\n" +"Fraktalen gesucht wird." + +#: app/install.c:278 +msgid "" +"This is a subdirectory which can be used to store\n" +"user defined figures to be used by the gfig plug-in.\n" +"The default gimprc file checks this subdirectory in\n" +"addition to the systemwide gimp gfig installation\n" +"when searching for gfig figures." +msgstr "" +"Dies ist ein Unterverzeichnis, das verwendet werden kann,\n" +"um benutzerdefinierte Figuren zu sichern, die mit dem\n" +"GFig Plugin benutzt werden. Entsprechend der Standard gimprc\n" +"wird dieses Verzeichnis zusДtzlich zur systemweiten GFig\n" +"Installation durchsucht, wenn nach GFig Figuren gesucht\n" +"wird." + +#: app/install.c:286 +msgid "" +"This is a subdirectory which can be used to store\n" +"user defined gflares to be used by the gflare plug-in.\n" +"The default gimprc file checks this subdirectory in\n" +"addition to the systemwide gimp gflares installation\n" +"when searching for gflares." +msgstr "" +"Dies ist ein Unterverzeichnis, das verwendet werden kann,\n" +"um benutzerdefinierte GFlares zu sichern, die mit dem\n" +"GFlare Plugin benutzt werden. Entsprechend der Standard gimprc\n" +"wird dieses Verzeichnis zusДtzlich zur systemweiten GFlare\n" +"Installation durchsucht, wenn nach GFlares gesucht wird." + +#: app/install.c:294 +msgid "" +"This is a subdirectory which can be used to store\n" +"user defined data to be used by the Gimpressionist\n" +"plug-in. The default gimprc file checks this subdirectory in\n" +"addition to the systemwide gimp Gimpressionist installation\n" +"when searching for data." +msgstr "" +"Dies ist ein Unterverzeichnis, das verwendet werden kann,\n" +"um benutzerdefinierte GFlares zu sichern, die mit dem\n" +"GFlare Plugin benutzt werden. Entsprechend der Standard gimprc\n" +"wird dieses Verzeichnis zusДtzlich zur systemweiten GFlare\n" +"Installation durchsucht, wenn nach GFlares gesucht wird." + +#: app/install.c:525 +msgid "GIMP User Installation" +msgstr "GIMP Benutzer-Installation" + +#: app/install.c:530 +msgid "Continue" +msgstr "Weiter" + +#. this is a fontset, e.g. multiple comma-separated font definitions +#: app/install.c:560 +msgid "-*-helvetica-bold-r-normal-*-*-240-*-*-*-*-*-*,*" +msgstr "-*-helvetica-bold-r-normal-*-*-240-*-*-*-*-*-*,*" + +#: app/install.c:578 +msgid "" +"Welcome to\n" +"The GIMP User Installation" +msgstr "" +"Willkommen zur\n" +"GIMP Benutzer-Installation" + +#: app/install.c:582 msgid "" "The GIMP - GNU Image Manipulation Program\n" -"\n" +"Copyright (C) 1995-2000\n" +"Spencer Kimball, Peter Mattis and the GIMP Development Team." msgstr "" -"The GIMP - GNU Image Manipulation Program\n" -"GIMP - Das GNU Bildbearbeitungsprogramm\n" -"\n" -#: app/install.c:118 +#: app/install.c:591 msgid "" "This program is free software; you can redistribute it and/or modify\n" "it under the terms of the GNU General Public License as published by\n" "the Free Software Foundation; either version 2 of the License, or\n" -"(at your option) any later version.\n" +"(at your option) any later version." msgstr "" "Dieses Programm ist freie Software. Sie kЖnnen es unter\n" "den Bedingungen der GNU General Public License, wie von der\n" "Free Software Foundation herausgegeben, weitergeben und/oder\n" "modifizieren, entweder unter Version 2 der Lizenz oder (wenn\n" -"Sie es wЭnschen) jeder spДteren Version.\n" +"Sie es wЭnschen) jeder spДteren Version." -#: app/install.c:123 +#: app/install.c:596 msgid "" "This program is distributed in the hope that it will be useful,\n" "but WITHOUT ANY WARRANTY; without even the implied warranty of\n" "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n" -"See the GNU General Public License for more details.\n" +"See the GNU General Public License for more details." msgstr "" "Die VerЖffentlichung dieses Programms erfolgt in der\n" "Hoffnung, daъ es Ihnen von Nutzen sein wird, aber OHNE JEDE\n" "GEWдHRLEISTUNG - sogar ohne die implizite GewДhrleistung\n" "der MARKTREIFE oder der EIGNUNG FэR EINEN BESTIMMTEN ZWECK.\n" -"Details finden Sie in der GNU General Public License.\n" +"Details finden Sie in der GNU General Public License." -#: app/install.c:128 +#: app/install.c:601 msgid "" "You should have received a copy of the GNU General Public License\n" "along with this program; if not, write to the Free Software\n" "Foundation, Inc., 59 Temple Place - Suite 330, Boston,\n" -"MA 02111-1307, USA.\n" +"MA 02111-1307, USA." msgstr "" "Sie sollten eine Kopie der GNU General Public License zusammen\n" "mit diesem Programm erhalten haben. Falls nicht, schreiben Sie\n" "an die Free Software Foundation, Inc., 59 Temple Place - Suite 330,\n" -"Boston, MA 02111-1307, USA.\n" +"Boston, MA 02111-1307, USA." -#: app/install.c:134 -msgid "" -"Personal GIMP Installation\n" -"\n" +#: app/install.c:607 +msgid "Click \"Continue\" to enter the GIMP user installation." msgstr "" -"PersЖnliche GIMP Installation\n" -"\n" -#: app/install.c:135 -msgid "For a proper GIMP installation, a subdirectory called\n" -msgstr "FЭr eine ordnungsgemДъe GIMP Installation muъ ein Verzeichnis names\n" +#: app/install.c:633 +msgid "Personal GIMP Directory" +msgstr "PersЖnliches GIMP Verzeichnis" -#. will be replaced with gimp_directory() -#: app/install.c:137 +#: app/install.c:650 msgid "" -" needs to be created. This\n" -"subdirectory will contain a number of important files:\n" -"\n" +"For a proper GIMP installation, a subdirectory needs to be created.\n" +"This subdirectory will contain a number of important files." msgstr "" -" muъ erstellt werden. Dieses\n" -"Unterverzeichnis wird ein paar wichtige Dateien enthalten:\n" -"\n" -#: app/install.c:141 +#: app/install.c:653 msgid "" -"\t\tThe gimprc is used to store personal preferences\n" -"\t\tthat affect GIMP's default behavior.\n" -"\t\tPaths to search for brushes, palettes, gradients,\n" -"\t\tpatterns, plug-ins and modules can also configured here.\n" +"Click on one of the files or subdirectories in the tree\n" +"to get more information about the selected item." msgstr "" -"\t\tDie Datei gimprc wird benutzt um persЖnliche Einstellungen\n" -"\t\twie GIMPs Standardverhalten zu sichern.\n" -"\t\tAuch die Suchpfade fЭr Pinsel, Paletten, FarbverlДufe,\n" -"\t\tMuster, Plugins und Module kЖnnen hier konfiguriert werden.\n" -#: app/install.c:147 -msgid "" -"\t\tPlug-ins and extensions are external programs run by\n" -"\t\tthe GIMP which provide additional functionality.\n" -"\t\tThese programs are searched for at run-time and\n" -"\t\tinformation about their functionality and mod-times\n" -"\t\tis cached in this file. This file is intended to\n" -"\t\tbe GIMP-readable only, and should not be edited.\n" +#: app/install.c:656 +msgid "Click \"Continue\" to create your personal GIMP directory." msgstr "" -"\t\tPlugins und Erweiterungen sind externe Programme, die\n" -"\t\tvon GIMP gestartet werden und die weitere FunktionalitДt\n" -"\t\tbereitstellen. Diese Programme werden zur Laufzeit gesucht\n" -"\t\tund die Informationen Эber ihre FunktionalitДt und ihr\n" -"\t\tErzeugungsdatum werden in dieser Datei gesichert.\n" -"\t\tDiese Datei sollte nur von GIMP gelesen und nicht\n" -"\t\tbearbeitet werden.\n" -#: app/install.c:155 -msgid "" -"\t\tKey shortcuts can be dynamically redefined in The GIMP.\n" -"\t\tThe menurc is a dump of your configuration so it can.\n" -"\t\tbe remembered for the next session. You may edit this\n" -"\t\tfile if you wish, but it is much easier to define the\n" -"\t\tkeys from within The GIMP. Deleting this file will\n" -"\t\trestore the default shortcuts.\n" +#: app/install.c:736 +msgid "User Installation Log" +msgstr "Benutzer-Installation Logbuch" + +#: app/install.c:741 +msgid "GIMP Performance Tuning" msgstr "" -"\t\tTastaturkЭrzel kЖnnen in GIMP dynamisch vergeben werden.\n" -"\t\tDie Datei menurc ist eine Sicherung Ihrer Konfiguration,\n" -"\t\tso daъ diese auch in der nДchsten Sitzung erhalten bleibt.\n" -"\t\tDiese Datei kann editiert werden, aber es ist einfacher,\n" -"\t\tdie TastaturkЭrzel aus GIMP heraus zu konfigurieren.\n" -"\t\tWird diese Datei gelЖscht, so wird die Standard\n" -"\t\tTastaturbelegung wiederhergestellt.\n" -#: app/install.c:163 -msgid "" -"\t\tThe sessionrc is used to store what dialog windows were\n" -"\t\topen the last time you quit The GIMP. You can configure\n" -"\t\tThe GIMP to reopen these dialogs at the saved position.\n" +#: app/install.c:744 +msgid "For optimal GIMP performance, some settings may have to be adjusted." msgstr "" -"\t\tDie Datei sessionrc wird benutzt, um zu sichern, welche\n" -"\t\tFenster beim Schliessen von GIMP geЖffnet waren. Sie kЖnnen\n" -"\t\tGIMP so konfigurieren, daъ diese Dialoge beim Start an der\n" -"\t\tgesicherten Position wieder geЖffnet werden.\n" -#: app/install.c:168 -msgid "" -"\t\tThe unitrc is used to store your user units database.\n" -"\t\tYou can define additional units and use them just\n" -"\t\tlike you use the built-in units inches, millimeters,\n" -"\t\tpoints and picas. This file is overwritten each time\n" -"\t\tyou quit the GIMP.\n" +#: app/install.c:751 +msgid "Click \"Continue\" to accept the settings above." msgstr "" -"\t\tDie Datei unitrc wird benutzt, um Ihre Einheiten-Datenbank\n" -"\t\tzu sichern. Sie kЖnnen zusДtzliche Einheiten definieren\n" -"\t\tund sie wie die vordefinierten Einheiten wie Inch,\n" -"\t\tMillimeter, Punkt und Pica benutzen. Diese Datei wird\n" -"\t\tjedesmal Эberschrieben, wenn sie GIMP beenden.\n" -#: app/install.c:175 +#: app/install.c:760 +msgid "Monitor Resolution" +msgstr "BildschirmauflЖsung" + +#: app/install.c:763 msgid "" -"\t\tThis is a subdirectory which can be used to store\n" -"\t\tuser defined brushes. The default gimprc file\n" -"\t\tchecks this subdirectory in addition to the system-\n" -"\t\twide gimp brushes installation when searching for\n" -"\t\tbrushes.\n" +"To display images in their natural size, GIMP needs to know your monitor " +"resolution." msgstr "" -"\t\tDies ist ein Unterverzeichnis, das verwendet werden kann,\n" -"\t\tum benutzerdefinierte Pinsel zu sichern. Entsprechend der\n" -"\t\tStandard gimprc Datei wird dieses Verzeichnis zusДtzlich zum\n" -"\t\tsystemweiten Pinselinstallation durchsucht, wenn nach Pinsel\n" -"\t\tgesucht wird.\n" -#: app/install.c:182 -msgid "" -"\t\tThis is a subdirectory which is used to store brushes\n" -"\t\tthat are created with the brush editor. The default\n" -"\t\tgimprc file checks this subdirectory when searching for\n" -"\t\tgenerated brushes.\n" +#: app/install.c:771 +msgid "Click \"Continue\" to start The GIMP." msgstr "" -"\t\tDies ist ein Unterverzeichnis, das verwendet wird, um\n" -"\t\tPinsel zu sichern, die mit dem Pinseleditor erstellt wurden\n" -"\t\tEntsprechend der Standard gimprc wird dieses Verzeichnis\n" -"\t\tdurchsucht, wenn nach erzeugten Pinsel gesucht wird.\n" -#: app/install.c:188 +#: app/install.c:845 +msgid "does not exist. Cannot install." +msgstr "existiert nicht. Kann nicht installieren." + +#: app/install.c:857 +msgid "has invalid permissions. Cannot install." +msgstr "hat falsche Zugriffsrechte. Kann nicht installieren." + +#: app/install.c:895 msgid "" -"\t\tThis is a subdirectory which can be used to store\n" -"\t\tuser defined gradients. The default gimprc file\n" -"\t\tchecks this subdirectory in addition to the system-\n" -"\t\twide gimp gradients installation when searching for\n" -"\t\tgradients.\n" +"Did you notice any error messages in the console window?\n" +"If not, installation was successful!\n" +"Otherwise, quit and investigate the possible reason..." msgstr "" -"\t\tDies ist ein Unterverzeichnis, das verwendet werden kann,\n" -"\t\tum benutzerdefinierte FarbverlДufe zu sichern.\n" -"\t\tEntsprechend der Standard gimprc wird dieses Verzeichnis\n" -"\t\tzusДtzlich zur systemweiten Verlaufsinstallation durchsucht,\n" -"\t\twenn nach FarbverlДufen gesucht wird.\n" +"Haben Sie irgendwelche Fehlermeldungen im Konsolefenster bemerkt?\n" +"Wenn nicht, war die Installation erfolgreich!\n" +"Ansonsten beenden Sie die Installation und suchen Sie nach der mЖglichen Fehlerursache..." -#: app/install.c:195 +#: app/install.c:955 msgid "" -"\t\tThis is a subdirectory which can be used to store\n" -"\t\tuser defined figures to be used by the gfig plug-in.\n" -"\t\tThe default gimprc file checks this subdirectory in\n" -"\t\taddition to the systemwide gimp gfig installation\n" -"\t\twhen searching for gfig figures.\n" -msgstr "" -"\t\tDies ist ein Unterverzeichnis, das verwendet werden kann,\n" -"\t\tum benutzerdefinierte Figuren zu sichern, die mit dem\n" -"\t\tGFig Plugin benutzt werden. Entsprechend der Standard gimprc\n" -"\t\twird dieses Verzeichnis zusДtzlich zur systemweiten GFig\n" -"\t\tInstallation durchsucht, wenn nach GFig Figuren gesucht\n" -"\t\twird.\n" - -#: app/install.c:202 -msgid "" -"\t\tThis is a subdirectory which can be used to store\n" -"\t\tuser defined gflares to be used by the gflare plug-in.\n" -"\t\tThe default gimprc file checks this subdirectory in\n" -"\t\taddition to the systemwide gimp gflares installation\n" -"\t\twhen searching for gflares.\n" -msgstr "" -"\t\tDies ist ein Unterverzeichnis, das verwendet werden kann,\n" -"\t\tum benutzerdefinierte GFlares zu sichern, die mit dem\n" -"\t\tGFlare Plugin benutzt werden. Entsprechend der Standard gimprc\n" -"\t\twird dieses Verzeichnis zusДtzlich zur systemweiten GFlare\n" -"\t\tInstallation durchsucht, wenn nach GFlares gesucht wird.\n" - -#: app/install.c:209 -msgid "" -"\t\tThis is a subdirectory which can be used to store\n" -"\t\tuser defined fractals to be used by the FractalExplorer\n" -"\t\tplug-in. The default gimprc file checks this subdirectory in\n" -"\t\taddition to the systemwide gimp FractalExplorer installation\n" -"\t\twhen searching for fractals.\n" -msgstr "" -"\t\tDies ist ein Unterverzeichnis, das verwendet werden kann,\n" -"\t\tum benutzerdefinierte Fraktale zu sichern, die mit dem\n" -"\t\tFraktalexplorer Plugin benutzt werden. Entsprechend der\n" -"\t\tStandard gimprc wird dieses Verzeichnis zusДtzlich zur\n" -"\t\tsystemweiten Fraktalinstallation durchsucht, wenn nach\n" -"\t\tFraktalen gesucht wird.\n" - -#: app/install.c:216 -msgid "" -"\t\tThis is a subdirectory which can be used to store\n" -"\t\tuser defined palettes. The default gimprc file\n" -"\t\tchecks only this subdirectory (not the system-wide\n" -"\t\tinstallation) when searching for palettes. During\n" -"\t\tinstallation, the system palettes will be copied\n" -"\t\there. This is done to allow modifications made to\n" -"\t\tpalettes during GIMP execution to persist across\n" -"\t\tsessions.\n" -msgstr "" -"\t\tDies ist ein Unterverzeichnis, das verwendet werden kann,\n" -"\t\tum benutzerdefinierte Paletten zu sichern. Entsprechend\n" -"\t\tder Standard gimprc Datei wird nur dieses Verzeichnis\n" -"\t\t(nicht die systemweite Installation) durchsucht, wenn nach\n" -"\t\tPaletten gesucht wird. WДhrend der Installation werden die\n" -"\t\tSystempaletten hierher kopiert, damit дnderungen an den\n" -"\t\tPaletten wДhrend der AusfЭhrung von GIMP erhalten bleiben.\n" - -#: app/install.c:226 -msgid "" -"\t\tThis is a subdirectory which can be used to store\n" -"\t\tuser defined patterns. The default gimprc file\n" -"\t\tchecks this subdirectory in addition to the system-\n" -"\t\twide gimp patterns installation when searching for\n" -"\t\tpatterns.\n" -msgstr "" -"\t\tDies ist ein Unterverzeichnis, das verwendet werden kann,\n" -"\t\tum benutzerdefinierte FЭllmuster zu sichern. Entsprechend\n" -"\t\tder Standard gimprc wird dieses Verzeichnis zusДtzlich zur\n" -"\t\tsystemweiten Musterinstallation durchsucht, wenn nach\n" -"\t\tFЭllmustern gesucht wird.\n" - -#: app/install.c:233 -msgid "" -"\t\tThis is a subdirectory which can be used to store\n" -"\t\tuser created, temporary, or otherwise non-system-\n" -"\t\tsupported plug-ins. The default gimprc file\n" -"\t\tchecks this subdirectory in addition to the system-\n" -"\t\twide GIMP plug-in directories when searching for\n" -"\t\tplug-ins.\n" -msgstr "" -"\t\tDies ist ein Unterverzeichnis, das verwendet werden kann,\n" -"\t\tum selbsterstellte, temporДre oder in anderer Weise nicht\n" -"\t\tsystemweit unterstЭtzte Plugins zu speichern. Entsprechend\n" -"\t\tder Standard gimprc wird dieses Verzeichnis zusДtzlich zum\n" -"\t\tsystemweiten Pluginverzeichnis durchsucht, wenn nach\n" -"\t\tPlugins gesucht wird.\n" - -#: app/install.c:241 -msgid "" -"\t\tThis subdirectory can be used to store user created,\n" -"\t\ttemporary, or otherwise non-system-supported DLL modules.\n" -"\t\tThe default gimprc file checks this subdirectory\n" -"\t\tin addition to the system-wide GIMP module directory\n" -"\t\twhen searching for modules to load when initializing.\n" -msgstr "" -"\t\tDieses Unterverzeichnis kann verwendet werden, um\n" -"\t\tselbsterstellte, temporДre oder in anderer Weise nicht\n" -"\t\tsystemweit unterstЭtzte DLL Module zu speichern.\n" -"\t\tEntsprechend der Standard gimprc wird dieses Verzeichnis\n" -"\t\tzusДtzlich zum systemweiten Modulverzeichnis durchsucht,\n" -"\t\twenn nach Modulen gesucht wird.\n" - -#: app/install.c:248 -msgid "" -"\t\tThis subdirectory is used by the GIMP to store \n" -"\t\tuser created and installed scripts. The default gimprc\n" -"\t\tfile checks this subdirectory in addition to the system\n" -"\t\t-wide gimp scripts subdirectory when searching for scripts\n" -msgstr "" -"\t\tDieses Unterverzeichnis kann verwendet werden, um\n" -"\t\tselbsterstellte Skripte zu speichern. Entsprechend der\n" -"\t\tStandard gimprc wird dieses Verzeichnis zusДtzlich zum\n" -"\t\tsystemweiten Skriptverzeichnis durchsucht, wenn nach\n" -"\t\tSkripten gesucht wird.\n" - -#: app/install.c:254 -msgid "" -"\t\tThis subdirectory is used by the GIMP to temporarily\n" -"\t\tstore undo buffers to reduce memory usage. If GIMP is\n" -"\t\tunceremoniously killed, files may persist in this directory\n" -"\t\tof the form: gimp<#>.<#>. These files are useless across\n" -"\t\tGIMP sessions and can be destroyed with impunity.\n" -msgstr "" -"\t\tDieses Unterverzeichnis wird von GIMP verwendet, um\n" -"\t\ttemporДr Bilddaten abzulegen, um so den Bedarf an\n" -"\t\tHauptspeicher zu verringern. When GIMP unschЖn beendet\n" -"\t\twird, kann es passieren, das hier Dateien mit Namen wie\n" -"\t\tgimp<#>.<#> zurЭckbleiben. Diese Dateien sind fЭr eine\n" -"\t\tandere GIMP-Session nutzlos und kЖnnen bedenkenlos\n" -"\t\tentfernt werden.\n" - -#: app/install.c:263 -msgid "GIMP Installation" -msgstr "GIMP Installation" - -#: app/install.c:268 -msgid "Install" -msgstr "Installieren" - -#: app/install.c:270 -msgid "Ignore" -msgstr "Ignorieren" - -#. this is a fontset, e.g. multiple comma-separated font definitions -#: app/install.c:295 app/install.c:453 -msgid "-*-helvetica-bold-r-normal-*-*-120-*-*-*-*-*-*,*" -msgstr "-*-helvetica-bold-r-normal-*-*-120-*-*-*-*-*-*,*" - -#. this is a font, provide only one single font definition -#: app/install.c:298 -msgid "-*-helvetica-medium-o-normal-*-*-100-*-*-*-*-*-*" -msgstr "-*-helvetica-medium-o-normal-*-*-100-*-*-*-*-*-*" - -#. this is a fontset, e.g. multiple comma-separated font definitions -#: app/install.c:301 -msgid "-*-helvetica-medium-r-normal-*-*-100-*-*-*-*-*-*,*" -msgstr "-*-helvetica-medium-r-normal-*-*-100-*-*-*-*-*-*,*" - -#: app/install.c:423 -msgid "Installation Log" -msgstr "Installation Logbuch" - -#: app/install.c:428 -msgid "Continue" -msgstr "Weiter" - -#. this is a fontset, e.g. multiple comma-separated font definitions -#: app/install.c:456 -msgid "-*-helvetica-medium-r-normal-*-*-120-*-*-*-*-*-*,*" -msgstr "-*-helvetica-medium-r-normal-*-*-120-*-*-*-*-*-*,*" - -#: app/install.c:462 -msgid "" -"User Installation Log\n" -"\n" -msgstr "" -"Benutzerinstallation Logbuch\n" -"\n" - -#: app/install.c:472 -msgid " does not exist. Cannot install.\n" -msgstr " existiert nicht. Kann nicht installieren.\n" - -#: app/install.c:480 -msgid "" -" has invalid permissions.\n" -"Cannot install." -msgstr "" -" hat falsche Zugriffsrechte.\n" -"Kann nicht installieren." - -#: app/install.c:514 -msgid "" -"Did you notice any error messages\n" -"in the console window? If not, installation\n" -"was successful! Otherwise, quit and investigate\n" -"the possible reason...\n" +"Did you notice any error messages in the lines above?\n" +"If not, installation was successful!\n" +"Otherwise, quit and investigate the possible reason..." msgstr "" "Haben Sie irgendwelche Fehlermeldungen bemerkt?\n" "Wenn nicht, war die Installation erfolgreich!\n" -"Ansonsten beenden Sie das Programm jetzt und suchen\n" -"Sie nach der mЖglichen Fehlerursache...\n" +"Ansonsten beenden Sie die Installation und suchen Sie nach der mЖglichen Fehlerursache..." -#: app/install.c:546 -msgid "" -"\n" -"Installation successful!\n" +#: app/install.c:969 +msgid "Click \"Continue\" to complete GIMP installation." msgstr "" -"\n" -"Installation erfolgreich!\n" -#: app/install.c:555 -msgid "" -"\n" -"Installation failed. Contact system administrator.\n" +#: app/install.c:978 +msgid "Installation failed. Contact system administrator." msgstr "" -"\n" -"Installation fehlgeschlagen. Wenden Sie sich an den System Administrator.\n" +"Installation fehlgeschlagen. Wenden Sie sich an den Systemverwalter." + +#: app/install.c:999 +msgid "" +"GIMP uses a limited amount of memory to store image data, the so-called\n" +"\"Tile Cache\". You should adjust it's size to fit into memory. Consider\n" +"the amount of memory used by other running processes." +msgstr "" + +#: app/install.c:1015 app/preferences_dialog.c:2102 +msgid "Tile Cache Size:" +msgstr "GrЖъe des Datenspeichers:" + +#: app/install.c:1025 +msgid "" +"All image and undo data which doesn't fit into the Tile Cache will be\n" +"written to a swap file. This file should be located on a local filesystem\n" +"with enough free space (several hundred MB). On a UNIX system, you\n" +"may want to use the system-wide temp-dir (\"/tmp\" or \"/var/tmp\")." +msgstr "" + +#: app/install.c:1035 app/preferences_dialog.c:2361 +msgid "Select Swap Dir" +msgstr "Auslagerverzeichnis auswДhlen" + +#: app/install.c:1041 +msgid "Swap Directory:" +msgstr "Auslagerungsverzeichnis:" + +#: app/install.c:1063 +msgid "" +"GIMP can obtain this information from your X-server.\n" +"However, most X-servers do not return useful values." +msgstr "" + +#: app/install.c:1070 +#, c-format +msgid "Get Resolution from X-server (Currently %d x %d dpi)" +msgstr "AuflЖsung vom X-Server beziehen (zur Zeit %d x %d dpi)" + +#: app/install.c:1087 +msgid "Alternatively, you can set the monitor resolution manually." +msgstr "" + +#: app/install.c:1102 +msgid "Monitor Resolution X:" +msgstr "BildschirmauflЖsung X:" #: app/interface.c:312 msgid "" @@ -2895,8 +2972,8 @@ msgstr "Farbverlauf UI" msgid "Guide procedures" msgstr "Hilfslinien Prozeduren" -#: app/internal_procs.c:122 app/preferences_dialog.c:1834 -#: app/preferences_dialog.c:1836 +#: app/internal_procs.c:122 app/preferences_dialog.c:1733 +#: app/preferences_dialog.c:1735 msgid "Interface" msgstr "OberflДche" @@ -4542,55 +4619,55 @@ msgstr "Posterisieren" msgid "Posterize Levels:" msgstr "Posterisieren Werte:" -#: app/preferences_dialog.c:245 +#: app/preferences_dialog.c:240 msgid "Error: Levels of undo must be zero or greater." msgstr "" "Fehler: Die Anzahl der Stufen der RЭckgДngigmachung\n" "muss grЖъer oder gleich Null sein." -#: app/preferences_dialog.c:251 +#: app/preferences_dialog.c:246 msgid "Error: Marching speed must be 50 or greater." msgstr "" "Fehler: Die Geschwindigkeit der laufenden Ameisen\n" "muss mindestens 50 betragen." -#: app/preferences_dialog.c:257 +#: app/preferences_dialog.c:252 msgid "Error: Default width must be one or greater." msgstr "Fehler: Die Standardbreite muss mindestens 1 sein." -#: app/preferences_dialog.c:263 +#: app/preferences_dialog.c:258 msgid "Error: Default height must be one or greater." msgstr "Fehler: Die StandardhЖhe muss mindestens 1 sein." -#: app/preferences_dialog.c:270 +#: app/preferences_dialog.c:265 msgid "Error: Default unit must be within unit range." msgstr "Fehler: Die gewДhlte Standardeinheit ist ungЭltig." -#: app/preferences_dialog.c:277 +#: app/preferences_dialog.c:272 msgid "Error: Default resolution must not be zero." msgstr "Fehler: Die StandardauflЖsung darf nicht Null sein." -#: app/preferences_dialog.c:285 +#: app/preferences_dialog.c:280 msgid "Error: Default resolution unit must be within unit range." msgstr "Fehler: Die gewДhlte StandardauflЖsung ist ungЭltig." -#: app/preferences_dialog.c:292 +#: app/preferences_dialog.c:287 msgid "Error: Monitor resolution must not be zero." msgstr "Fehler: Die MonitorauflЖung darf nicht Null sein." -#: app/preferences_dialog.c:299 +#: app/preferences_dialog.c:294 msgid "Error: Image title format must not be NULL." msgstr "Fehler: Der gewДhlte Fenstertitel ist ungЭltig." -#: app/preferences_dialog.c:306 +#: app/preferences_dialog.c:301 msgid "Error: Number of processors must be between 1 and 30." msgstr "Fehler: Die Anzahl der Prozessoren muss zwischen 1 und 30 liegen." -#: app/preferences_dialog.c:356 +#: app/preferences_dialog.c:351 msgid "Save Preferences ?" msgstr "Einstellungen sichern ?" -#: app/preferences_dialog.c:377 +#: app/preferences_dialog.c:372 msgid "" "At least one of the changes you made will only\n" "take effect after you restart the GIMP.\n" @@ -4608,494 +4685,474 @@ msgstr "" "werden kann, oder Sie wДhlen 'Schlieъen' und die\n" "fraglichen дnderungen werden nicht angewendet." -#: app/preferences_dialog.c:470 +#: app/preferences_dialog.c:465 msgid "You will need to restart GIMP for these changes to take effect." msgstr "Sie mЭssen GIMP neu starten, damit die дnderungen aktiv werden." -#: app/preferences_dialog.c:1068 +#: app/preferences_dialog.c:1002 #, c-format msgid "The default comments is limited to %d characters." msgstr "Der Standard-Kommentar ist auf %d Zeichen beschrДnkt." -#: app/preferences_dialog.c:1492 +#: app/preferences_dialog.c:1424 msgid "Preferences" msgstr "Einstellungen" #. The categories tree -#: app/preferences_dialog.c:1514 +#: app/preferences_dialog.c:1446 msgid "Categories" msgstr "Kategorien" -#: app/preferences_dialog.c:1542 app/preferences_dialog.c:1544 +#: app/preferences_dialog.c:1474 app/preferences_dialog.c:1476 msgid "New File" msgstr "Neues Bild" -#: app/preferences_dialog.c:1555 +#: app/preferences_dialog.c:1487 msgid "Default Image Size and Unit" msgstr "Standard BildgrЖъe und LДngeneinheit" -#: app/preferences_dialog.c:1569 +#: app/preferences_dialog.c:1501 msgid "Width" msgstr "Breite" -#: app/preferences_dialog.c:1571 +#: app/preferences_dialog.c:1503 msgid "Height" msgstr "HЖhe" -#: app/preferences_dialog.c:1601 +#: app/preferences_dialog.c:1533 msgid "Default Image Resolution and Resolution Unit" msgstr "Standard AuflЖsung und AuflЖsungseinheit" -#: app/preferences_dialog.c:1628 app/preferences_dialog.c:2421 +#: app/preferences_dialog.c:1560 app/preferences_dialog.c:2288 msgid "dpi" msgstr "dpi" -#: app/preferences_dialog.c:1675 +#: app/preferences_dialog.c:1607 msgid "Default Image Type:" msgstr "Standard Bildtyp:" -#: app/preferences_dialog.c:1711 app/preferences_dialog.c:2228 -msgid "Bytes" -msgstr "Byte" - -#: app/preferences_dialog.c:1712 app/preferences_dialog.c:2229 -msgid "KiloBytes" -msgstr "KiloByte" - -#: app/preferences_dialog.c:1713 app/preferences_dialog.c:2230 -msgid "MegaBytes" -msgstr "MegaByte" - -#: app/preferences_dialog.c:1719 +#: app/preferences_dialog.c:1618 msgid "Maximum Image Size:" msgstr "Maximale BildgrЖъe:" -#: app/preferences_dialog.c:1724 app/preferences_dialog.c:1726 +#: app/preferences_dialog.c:1623 app/preferences_dialog.c:1625 msgid "Default Comment" msgstr "Standard Kommentar" -#: app/preferences_dialog.c:1734 +#: app/preferences_dialog.c:1633 msgid "Comment Used for New Images" msgstr "Kommentar fЭr neue Bilder" -#: app/preferences_dialog.c:1754 app/preferences_dialog.c:1756 +#: app/preferences_dialog.c:1653 app/preferences_dialog.c:1655 msgid "Display" msgstr "Anzeige" -#: app/preferences_dialog.c:1764 +#: app/preferences_dialog.c:1663 msgid "Transparency" msgstr "Transparenz" -#: app/preferences_dialog.c:1783 +#: app/preferences_dialog.c:1682 msgid "Light Checks" msgstr "Helle Quadrate" -#: app/preferences_dialog.c:1784 +#: app/preferences_dialog.c:1683 msgid "Mid-Tone Checks" msgstr "Halbhelle Quadrate" -#: app/preferences_dialog.c:1785 +#: app/preferences_dialog.c:1684 msgid "Dark Checks" msgstr "Dunkle Quadrate" -#: app/preferences_dialog.c:1786 +#: app/preferences_dialog.c:1685 msgid "White Only" msgstr "Nur Weiъ" -#: app/preferences_dialog.c:1787 +#: app/preferences_dialog.c:1686 msgid "Gray Only" msgstr "Nur Grau" -#: app/preferences_dialog.c:1788 +#: app/preferences_dialog.c:1687 msgid "Black Only" msgstr "Nur Schwarz" -#: app/preferences_dialog.c:1792 +#: app/preferences_dialog.c:1691 msgid "Transparency Type:" msgstr "Transparenz Typ:" -#: app/preferences_dialog.c:1799 app/preferences_dialog.c:1872 -#: app/preferences_dialog.c:1886 +#: app/preferences_dialog.c:1698 app/preferences_dialog.c:1771 +#: app/preferences_dialog.c:1785 msgid "Small" msgstr "Klein" -#: app/preferences_dialog.c:1800 app/preferences_dialog.c:1873 -#: app/preferences_dialog.c:1887 +#: app/preferences_dialog.c:1699 app/preferences_dialog.c:1772 +#: app/preferences_dialog.c:1786 msgid "Medium" msgstr "Mittel" -#: app/preferences_dialog.c:1801 app/preferences_dialog.c:1874 -#: app/preferences_dialog.c:1888 +#: app/preferences_dialog.c:1700 app/preferences_dialog.c:1773 +#: app/preferences_dialog.c:1787 msgid "Large" msgstr "Groъ" -#: app/preferences_dialog.c:1805 +#: app/preferences_dialog.c:1704 msgid "Check Size:" msgstr "Schachbrett GrЖъe:" -#: app/preferences_dialog.c:1808 +#: app/preferences_dialog.c:1707 msgid "8-Bit Displays" msgstr "8-Bit Anzeigen" -#: app/preferences_dialog.c:1813 +#: app/preferences_dialog.c:1712 msgid "Install Colormap" msgstr "Installiere Farbtabelle" -#: app/preferences_dialog.c:1822 +#: app/preferences_dialog.c:1721 msgid "Colormap Cycling" msgstr "Farbtabelle rotieren" -#: app/preferences_dialog.c:1871 +#: app/preferences_dialog.c:1770 msgid "Tiny" msgstr "Winzig" -#: app/preferences_dialog.c:1875 +#: app/preferences_dialog.c:1774 msgid "Huge" msgstr "Riesig" -#: app/preferences_dialog.c:1879 +#: app/preferences_dialog.c:1778 msgid "Preview Size:" msgstr "VorschaugrЖъe:" -#: app/preferences_dialog.c:1892 +#: app/preferences_dialog.c:1791 msgid "Nav Preview Size:" msgstr "GrЖъe der Navigationsvorschau:" -#: app/preferences_dialog.c:1902 +#: app/preferences_dialog.c:1801 msgid "Recent Documents List Size:" msgstr "GrЖъe der Dokumentenliste:" #. Indicators -#: app/preferences_dialog.c:1906 +#: app/preferences_dialog.c:1805 msgid "Toolbox" msgstr "Werkzeugkasten" -#: app/preferences_dialog.c:1909 +#: app/preferences_dialog.c:1808 msgid "Display Brush, Pattern and Gradient Indicators" msgstr "Zeige Pinsel, Muster und Gradienten" -#: app/preferences_dialog.c:1918 +#: app/preferences_dialog.c:1817 msgid "Dialog Behaviour" msgstr "Verhalten von Dialogen" -#: app/preferences_dialog.c:1920 +#: app/preferences_dialog.c:1819 msgid "Navigation Window per Display" msgstr "Ein Navigations-Fenster pro Bildfenster" -#: app/preferences_dialog.c:1929 +#: app/preferences_dialog.c:1828 msgid "Info Window Follows Mouse" msgstr "Info-Fenster folgt der Maus" -#: app/preferences_dialog.c:1940 app/preferences_dialog.c:1942 +#: app/preferences_dialog.c:1839 app/preferences_dialog.c:1841 msgid "Help System" msgstr "Hilfesystem" -#: app/preferences_dialog.c:1952 +#: app/preferences_dialog.c:1851 msgid "Show Tool Tips" msgstr "Zeige Popup-Hilfen" -#: app/preferences_dialog.c:1962 +#: app/preferences_dialog.c:1861 msgid "Context Sensitive Help with \"F1\"" msgstr "\"F1\" zeigt kontextabhДngige Hilfe" -#: app/preferences_dialog.c:1971 +#: app/preferences_dialog.c:1870 msgid "Help Browser" msgstr "Hilfe Browser" -#: app/preferences_dialog.c:1983 +#: app/preferences_dialog.c:1882 msgid "Internal" msgstr "Intern" -#: app/preferences_dialog.c:1984 +#: app/preferences_dialog.c:1883 msgid "Netscape" msgstr "Netscape" -#: app/preferences_dialog.c:1988 +#: app/preferences_dialog.c:1887 msgid "Help Browser to Use:" msgstr "Programm zum Lesen der Hilfe:" -#: app/preferences_dialog.c:1993 app/preferences_dialog.c:1995 +#: app/preferences_dialog.c:1892 app/preferences_dialog.c:1894 msgid "Image Windows" msgstr "Bildfenster" -#: app/preferences_dialog.c:2003 +#: app/preferences_dialog.c:1902 msgid "Appearance" msgstr "Aussehen" -#: app/preferences_dialog.c:2005 +#: app/preferences_dialog.c:1904 msgid "Use \"Dot for Dot\" by default" msgstr "Benutze standardmДъig \"Punkt fЭr Punkt\"" -#: app/preferences_dialog.c:2014 +#: app/preferences_dialog.c:1913 msgid "Resize Window on Zoom" msgstr "VerДndere FenstergrЖъe beim Zoomen" -#: app/preferences_dialog.c:2023 +#: app/preferences_dialog.c:1922 msgid "Show Rulers" msgstr "Zeige Lineale" -#: app/preferences_dialog.c:2032 +#: app/preferences_dialog.c:1931 msgid "Show Statusbar" msgstr "Zeige Statusanzeige" -#: app/preferences_dialog.c:2056 +#: app/preferences_dialog.c:1955 msgid "Marching Ants Speed:" msgstr "Geschwindigkeit der laufenden Ameisen:" #. Set the currently used string as "Custom" -#: app/preferences_dialog.c:2064 +#: app/preferences_dialog.c:1963 msgid "Custom" msgstr "Eigene" #. set some commonly used format strings -#: app/preferences_dialog.c:2070 +#: app/preferences_dialog.c:1969 msgid "Standard" msgstr "Standard" -#: app/preferences_dialog.c:2075 +#: app/preferences_dialog.c:1974 msgid "Show zoom percentage" msgstr "VergrЖъerung prozentual" -#: app/preferences_dialog.c:2080 +#: app/preferences_dialog.c:1979 msgid "Show zoom ratio" msgstr "VergrЖъerung als VerhДltnis" -#: app/preferences_dialog.c:2085 +#: app/preferences_dialog.c:1984 msgid "Show reversed zoom ratio" msgstr "VergrЖъerung als umgekehrtes VerhДltnis" -#: app/preferences_dialog.c:2096 +#: app/preferences_dialog.c:1995 msgid "Image Title Format:" msgstr "Bildtitel Format:" #. End of the title format string -#: app/preferences_dialog.c:2100 +#: app/preferences_dialog.c:1999 msgid "Pointer Movement Feedback" msgstr "Zeigerbewegung" -#: app/preferences_dialog.c:2103 +#: app/preferences_dialog.c:2002 msgid "Perfect-but-Slow Pointer Tracking" msgstr "Genaue aber langsame MauszeigernachfЭhrung" -#: app/preferences_dialog.c:2112 +#: app/preferences_dialog.c:2011 msgid "Disable Cursor Updating" msgstr "Deaktiviere MauszeigerДnderungen" -#: app/preferences_dialog.c:2124 app/preferences_dialog.c:2126 +#: app/preferences_dialog.c:2023 app/preferences_dialog.c:2025 #: app/tools.c:1080 msgid "Tool Options" msgstr "Werkzeugeinstellungen" -#: app/preferences_dialog.c:2134 +#: app/preferences_dialog.c:2033 msgid "Paint Options" msgstr "Pinseleinstellungen" -#: app/preferences_dialog.c:2137 +#: app/preferences_dialog.c:2036 msgid "Use Global Paint Options" msgstr "Benutze globale Pinseleinstellungen" -#: app/preferences_dialog.c:2152 app/preferences_dialog.c:2154 +#: app/preferences_dialog.c:2051 app/preferences_dialog.c:2053 msgid "Environment" msgstr "Umgebung" -#: app/preferences_dialog.c:2162 +#: app/preferences_dialog.c:2061 msgid "Resource Consumption" msgstr "Ressourcenverbrauch" -#: app/preferences_dialog.c:2164 +#: app/preferences_dialog.c:2063 msgid "Conservative Memory Usage" msgstr "ZurЭckhaltende Speicherausnutzung" -#: app/preferences_dialog.c:2192 +#: app/preferences_dialog.c:2091 msgid "Levels of Undo:" msgstr "Stufen der RЭckgДngigmachung:" -#: app/preferences_dialog.c:2236 -msgid "Tile Cache Size:" -msgstr "GrЖъe des Datenspeichers:" - -#: app/preferences_dialog.c:2247 +#: app/preferences_dialog.c:2113 msgid "Number of Processors to Use:" msgstr "Zahl der zu benutzenden Prozessoren:" -#: app/preferences_dialog.c:2251 app/transform_tool.c:215 +#: app/preferences_dialog.c:2117 app/transform_tool.c:215 msgid "Scaling" msgstr "Skalierung" -#: app/preferences_dialog.c:2269 +#: app/preferences_dialog.c:2135 msgid "Nearest Neighbor (Fast)" msgstr "NДchster Nachbar (schnell)" -#: app/preferences_dialog.c:2273 +#: app/preferences_dialog.c:2139 msgid "Cubic (Slow)" msgstr "Kubisch (langsam)" -#: app/preferences_dialog.c:2278 +#: app/preferences_dialog.c:2144 msgid "Interpolation Type:" msgstr "Interpolationsart:" -#: app/preferences_dialog.c:2281 +#: app/preferences_dialog.c:2147 msgid "File Saving" msgstr "Dateien Sichern" -#: app/preferences_dialog.c:2298 app/preferences_dialog.c:2311 +#: app/preferences_dialog.c:2164 app/preferences_dialog.c:2177 msgid "Always" msgstr "Immer" -#: app/preferences_dialog.c:2299 +#: app/preferences_dialog.c:2165 msgid "Never" msgstr "Nie" -#: app/preferences_dialog.c:2303 +#: app/preferences_dialog.c:2169 msgid "Try to Write a Thumbnail File:" msgstr "Schreibe Vorschau-Dateien:" -#: app/preferences_dialog.c:2310 +#: app/preferences_dialog.c:2176 msgid "Only when Modified" msgstr "Nur wenn verДndert" -#: app/preferences_dialog.c:2315 +#: app/preferences_dialog.c:2181 msgid "\"File > Save\" Saves the Image:" msgstr "\"Datei > Sichern\" sichert das Bild:" -#: app/preferences_dialog.c:2321 +#: app/preferences_dialog.c:2187 msgid "Session Management" msgstr "Sitzungsmanagement" -#: app/preferences_dialog.c:2323 +#: app/preferences_dialog.c:2189 msgid "Session" msgstr "Sitzung" -#: app/preferences_dialog.c:2331 +#: app/preferences_dialog.c:2197 msgid "Window Positions" msgstr "Fensterpositionen" -#: app/preferences_dialog.c:2333 +#: app/preferences_dialog.c:2199 msgid "Save Window Positions on Exit" msgstr "Fensterpositionen beim Beenden sichern" -#: app/preferences_dialog.c:2347 +#: app/preferences_dialog.c:2213 msgid "Clear Saved Window Positions Now" msgstr "Gesicherte Fensterpositionen jetzt lЖschen" -#: app/preferences_dialog.c:2355 +#: app/preferences_dialog.c:2221 msgid "Always Try to Restore Session" msgstr "Versuche immer Sitzung wiederherzustellen" -#: app/preferences_dialog.c:2364 +#: app/preferences_dialog.c:2230 msgid "Devices" msgstr "GerДte" -#: app/preferences_dialog.c:2366 +#: app/preferences_dialog.c:2232 msgid "Save Device Status on Exit" msgstr "GerДtestatus beim Beenden sichern" -#: app/preferences_dialog.c:2377 app/preferences_dialog.c:2379 +#: app/preferences_dialog.c:2243 app/preferences_dialog.c:2245 msgid "Monitor" msgstr "Monitor" -#: app/preferences_dialog.c:2387 +#: app/preferences_dialog.c:2253 msgid "Get Monitor Resolution" msgstr "Quelle fЭr MonitorauflЖsung" -#: app/preferences_dialog.c:2395 +#: app/preferences_dialog.c:2261 #, c-format msgid "(Currently %d x %d dpi)" msgstr "(Zur Zeit %d x %d dpi)" -#: app/preferences_dialog.c:2446 +#: app/preferences_dialog.c:2313 msgid "From X Server" msgstr "Vom X Server" -#: app/preferences_dialog.c:2461 +#: app/preferences_dialog.c:2328 msgid "Manually:" msgstr "Manuell:" -#: app/preferences_dialog.c:2474 app/preferences_dialog.c:2476 +#: app/preferences_dialog.c:2341 app/preferences_dialog.c:2343 msgid "Directories" msgstr "Verzeichnisse" -#: app/preferences_dialog.c:2493 +#: app/preferences_dialog.c:2360 msgid "Temp Dir:" msgstr "TemporДres Verzeichnis:" -#: app/preferences_dialog.c:2493 +#: app/preferences_dialog.c:2360 msgid "Select Temp Dir" msgstr "TemporДres Verzeichnis auswДhlen" -#: app/preferences_dialog.c:2494 +#: app/preferences_dialog.c:2361 msgid "Swap Dir:" msgstr "Auslagerungsverzeichnis:" -#: app/preferences_dialog.c:2494 -msgid "Select Swap Dir" -msgstr "Auslagerverzeichnis auswДhlen" - -#: app/preferences_dialog.c:2530 +#: app/preferences_dialog.c:2397 msgid "Brushes Directories" msgstr "Pinselverzeichnisse" -#: app/preferences_dialog.c:2532 +#: app/preferences_dialog.c:2399 msgid "Select Brushes Dir" msgstr "Pinselverzeichnis auswДhlen" -#: app/preferences_dialog.c:2534 +#: app/preferences_dialog.c:2401 msgid "Generated Brushes" msgstr "Erzeugte Pinsel" -#: app/preferences_dialog.c:2534 +#: app/preferences_dialog.c:2401 msgid "Generated Brushes Directories" msgstr "Erzeugte Pinsel Verzeichnisse" -#: app/preferences_dialog.c:2536 +#: app/preferences_dialog.c:2403 msgid "Select Generated Brushes Dir" msgstr "Verzeichnis fЭr erzeugte Pinsel auswДhlen" -#: app/preferences_dialog.c:2538 +#: app/preferences_dialog.c:2405 msgid "Patterns Directories" msgstr "Musterverzeichnisse" -#: app/preferences_dialog.c:2540 +#: app/preferences_dialog.c:2407 msgid "Select Patterns Dir" msgstr "Musterverzeichnis auswДhlen" -#: app/preferences_dialog.c:2542 +#: app/preferences_dialog.c:2409 msgid "Palettes Directories" msgstr "Palettenverzeichnisse" -#: app/preferences_dialog.c:2544 +#: app/preferences_dialog.c:2411 msgid "Select Palettes Dir" msgstr "Palettenverzeichnis auswДhlen" -#: app/preferences_dialog.c:2546 +#: app/preferences_dialog.c:2413 msgid "Gradients Directories" msgstr "Farbverlaufverzeichnisse" -#: app/preferences_dialog.c:2548 +#: app/preferences_dialog.c:2415 msgid "Select Gradients Dir" msgstr "Farbverlaufverzeichnis auswДhlen" -#: app/preferences_dialog.c:2550 +#: app/preferences_dialog.c:2417 msgid "Plug-Ins" msgstr "Plugins" -#: app/preferences_dialog.c:2550 +#: app/preferences_dialog.c:2417 msgid "Plug-Ins Directories" msgstr "Plugins-Verzeichnisse" -#: app/preferences_dialog.c:2552 +#: app/preferences_dialog.c:2419 msgid "Select Plug-Ins Dir" msgstr "Plugins-Verzeichnis auswДhlen" -#: app/preferences_dialog.c:2554 +#: app/preferences_dialog.c:2421 msgid "Modules" msgstr "Module" -#: app/preferences_dialog.c:2554 +#: app/preferences_dialog.c:2421 msgid "Modules Directories" msgstr "Modulverzeichnisse" -#: app/preferences_dialog.c:2556 +#: app/preferences_dialog.c:2423 msgid "Select Modules Dir" msgstr "Modulverzeichnis auswДhlen" @@ -6131,3 +6188,49 @@ msgstr "Wasserfarbe" #: modules/colorsel_water.c:640 msgid "Color History" msgstr "Farbliste" + +#~ msgid "" +#~ "The GIMP - GNU Image Manipulation Program\n" +#~ "\n" +#~ msgstr "" +#~ "The GIMP - GNU Image Manipulation Program\n" +#~ "GIMP - Das GNU Bildbearbeitungsprogramm\n" +#~ "\n" + +#~ msgid "For a proper GIMP installation, a subdirectory called\n" +#~ msgstr "" +#~ "FЭr eine ordnungsgemДъe GIMP Installation muъ ein Verzeichnis names\n" + +#~ msgid "Install" +#~ msgstr "Installieren" + +#~ msgid "Ignore" +#~ msgstr "Ignorieren" + +#~ msgid "-*-helvetica-medium-o-normal-*-*-100-*-*-*-*-*-*" +#~ msgstr "-*-helvetica-medium-o-normal-*-*-100-*-*-*-*-*-*" + +#~ msgid "-*-helvetica-medium-r-normal-*-*-100-*-*-*-*-*-*,*" +#~ msgstr "-*-helvetica-medium-r-normal-*-*-100-*-*-*-*-*-*,*" + +#~ msgid "Installation Log" +#~ msgstr "Installation Logbuch" + +#~ msgid "-*-helvetica-medium-r-normal-*-*-120-*-*-*-*-*-*,*" +#~ msgstr "-*-helvetica-medium-r-normal-*-*-120-*-*-*-*-*-*,*" + +#~ msgid "" +#~ "\n" +#~ "Installation successful!\n" +#~ msgstr "" +#~ "\n" +#~ "Installation erfolgreich!\n" + +#~ msgid "Bytes" +#~ msgstr "Byte" + +#~ msgid "KiloBytes" +#~ msgstr "KiloByte" + +#~ msgid "MegaBytes" +#~ msgstr "MegaByte" diff --git a/po/en_GB.po b/po/en_GB.po index 1740f63398..c787d3f9f4 100644 --- a/po/en_GB.po +++ b/po/en_GB.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: gimp CVS\n" -"POT-Creation-Date: 2000-03-03 17:47-0800\n" +"POT-Creation-Date: 2000-03-14 23:09+0100\n" "PO-Revision-Date: 2000-02-02 13:36+0000\n" "Last-Translator: Robert Brady \n" "Language-Team: \n" @@ -61,66 +61,66 @@ msgstr "" msgid "GIMP Startup" msgstr "" -#: app/app_procs.c:479 app/gimprc.c:432 +#: app/app_procs.c:479 app/gimprc.c:448 #, c-format msgid "parsing \"%s\"\n" msgstr "" #. initialize the xcf file format routines -#: app/app_procs.c:539 +#: app/app_procs.c:541 msgid "Looking for data files" msgstr "" -#: app/app_procs.c:539 +#: app/app_procs.c:541 msgid "Parasites" msgstr "" #. initialize the global parasite table -#: app/app_procs.c:541 app/internal_procs.c:71 app/preferences_dialog.c:2468 +#: app/app_procs.c:543 app/internal_procs.c:71 app/preferences_dialog.c:2397 msgid "Brushes" msgstr "" #. initialize the list of gimp brushes -#: app/app_procs.c:543 app/internal_procs.c:143 app/preferences_dialog.c:2476 +#: app/app_procs.c:545 app/internal_procs.c:143 app/preferences_dialog.c:2405 msgid "Patterns" msgstr "" #. initialize the list of gimp patterns -#: app/app_procs.c:545 app/preferences_dialog.c:2480 +#: app/app_procs.c:547 app/preferences_dialog.c:2409 msgid "Palettes" msgstr "" #. initialize the list of gimp palettes -#: app/app_procs.c:547 app/internal_procs.c:113 app/preferences_dialog.c:2484 +#: app/app_procs.c:549 app/internal_procs.c:113 app/preferences_dialog.c:2413 msgid "Gradients" msgstr "" -#: app/app_procs.c:735 +#: app/app_procs.c:737 msgid "Really Quit?" msgstr "" -#: app/app_procs.c:739 +#: app/app_procs.c:741 msgid "" "Some files unsaved.\n" "\n" "Quit the GIMP?" msgstr "" -#: app/app_procs.c:740 app/install.c:272 app/install.c:430 +#: app/app_procs.c:742 msgid "Quit" msgstr "" -#: app/app_procs.c:740 app/brightness_contrast.c:218 app/channel_ops.c:93 +#: app/app_procs.c:742 app/brightness_contrast.c:218 app/channel_ops.c:93 #: app/channels_dialog.c:2463 app/channels_dialog.c:2637 #: app/color_balance.c:275 app/color_notebook.c:125 app/convert.c:506 #: app/curves.c:559 app/file_new_dialog.c:207 app/file_new_dialog.c:357 #: app/gdisplay_color_ui.c:129 app/gdisplay_ops.c:346 app/gimpprogress.c:112 -#: app/global_edit.c:739 app/gradient.c:1769 app/gradient.c:4839 -#: app/gradient.c:5400 app/hue_saturation.c:377 app/interface.c:984 -#: app/layers_dialog.c:3326 app/layers_dialog.c:3517 app/layers_dialog.c:3617 -#: app/layers_dialog.c:3889 app/levels.c:341 app/palette.c:1826 -#: app/posterize.c:201 app/preferences_dialog.c:1469 app/qmask.c:281 -#: app/resize.c:193 app/resize.c:1343 app/threshold.c:275 +#: app/global_edit.c:739 app/gradient.c:1769 app/gradient.c:4841 +#: app/gradient.c:5402 app/hue_saturation.c:377 app/install.c:532 +#: app/interface.c:984 app/layers_dialog.c:3326 app/layers_dialog.c:3517 +#: app/layers_dialog.c:3617 app/layers_dialog.c:3889 app/levels.c:341 +#: app/palette.c:1826 app/posterize.c:201 app/preferences_dialog.c:1434 +#: app/qmask.c:281 app/resize.c:195 app/resize.c:1345 app/threshold.c:275 #: modules/cdisplay_gamma.c:358 msgid "Cancel" msgstr "" @@ -141,123 +141,123 @@ msgstr "" msgid "Paintbrush operation failed." msgstr "" -#: app/blend.c:272 +#: app/blend.c:294 msgid "Offset:" msgstr "" -#: app/blend.c:283 +#: app/blend.c:305 msgid "FG to BG (RGB)" msgstr "" -#: app/blend.c:284 +#: app/blend.c:306 msgid "FG to BG (HSV)" msgstr "" -#: app/blend.c:285 +#: app/blend.c:307 msgid "FG to Transparent" msgstr "" -#: app/blend.c:286 -msgid "Custom from Editor" -msgstr "" - -#: app/blend.c:290 -msgid "Blend:" -msgstr "" - -#: app/blend.c:298 app/gradient.c:533 app/preferences_dialog.c:2209 -msgid "Linear" -msgstr "" - -#: app/blend.c:299 -msgid "Bi-Linear" -msgstr "" - -#: app/blend.c:300 -msgid "Radial" -msgstr "" - -#: app/blend.c:301 -msgid "Square" -msgstr "" - -#: app/blend.c:302 -msgid "Conical (symmetric)" -msgstr "" - -#: app/blend.c:303 -msgid "Conical (asymmetric)" -msgstr "" - -#: app/blend.c:304 -msgid "Shapeburst (angular)" -msgstr "" - -#: app/blend.c:305 -msgid "Shapeburst (spherical)" -msgstr "" - -#: app/blend.c:306 -msgid "Shapeburst (dimpled)" -msgstr "" - -#: app/blend.c:307 -msgid "Spiral (clockwise)" -msgstr "" - #: app/blend.c:308 -msgid "Spiral (anticlockwise)" +msgid "Custom Gradient" msgstr "" #: app/blend.c:312 -msgid "Gradient:" +msgid "Blend:" msgstr "" -#: app/blend.c:320 app/preferences_dialog.c:1808 -msgid "None" +#: app/blend.c:320 app/gradient.c:533 app/preferences_dialog.c:2137 +msgid "Linear" msgstr "" #: app/blend.c:321 -msgid "Sawtooth Wave" +msgid "Bi-Linear" msgstr "" #: app/blend.c:322 -msgid "Triangular Wave" +msgid "Radial" +msgstr "" + +#: app/blend.c:323 +msgid "Square" +msgstr "" + +#: app/blend.c:324 +msgid "Conical (symmetric)" +msgstr "" + +#: app/blend.c:325 +msgid "Conical (asymmetric)" msgstr "" #: app/blend.c:326 +msgid "Shapeburst (angular)" +msgstr "" + +#: app/blend.c:327 +msgid "Shapeburst (spherical)" +msgstr "" + +#: app/blend.c:328 +msgid "Shapeburst (dimpled)" +msgstr "" + +#: app/blend.c:329 +msgid "Spiral (clockwise)" +msgstr "" + +#: app/blend.c:330 +msgid "Spiral (anticlockwise)" +msgstr "" + +#: app/blend.c:334 +msgid "Gradient:" +msgstr "" + +#: app/blend.c:342 app/preferences_dialog.c:1769 +msgid "None" +msgstr "" + +#: app/blend.c:343 +msgid "Sawtooth Wave" +msgstr "" + +#: app/blend.c:344 +msgid "Triangular Wave" +msgstr "" + +#: app/blend.c:348 msgid "Repeat:" msgstr "" -#: app/blend.c:345 +#: app/blend.c:367 msgid "Adaptive Supersampling" msgstr "" -#: app/blend.c:373 +#: app/blend.c:395 msgid "Max Depth:" msgstr "" -#: app/blend.c:386 app/bucket_fill.c:127 app/fuzzy_select.c:657 +#: app/blend.c:408 app/bucket_fill.c:127 app/fuzzy_select.c:661 msgid "Threshold:" msgstr "" -#: app/blend.c:413 +#: app/blend.c:435 msgid "Blend: Invalid for indexed images." msgstr "" -#: app/blend.c:438 +#: app/blend.c:460 msgid "Blend: 0, 0" msgstr "" -#: app/blend.c:501 +#: app/blend.c:523 msgid "Blend operation failed." msgstr "" -#: app/blend.c:507 +#: app/blend.c:529 msgid "Blending..." msgstr "" -#: app/blend.c:585 app/blend.c:595 +#: app/blend.c:607 app/blend.c:617 msgid "Blend: " msgstr "" @@ -276,13 +276,13 @@ msgstr "" #: app/gdisplay_color_ui.c:127 app/gimpui.c:122 app/hue_saturation.c:373 #: app/layers_dialog.c:3324 app/layers_dialog.c:3515 app/layers_dialog.c:3615 #: app/layers_dialog.c:3887 app/levels.c:337 app/module_db.c:281 -#: app/posterize.c:197 app/preferences_dialog.c:1465 app/qmask.c:279 -#: app/resize.c:191 app/resize.c:1343 app/threshold.c:271 +#: app/posterize.c:197 app/preferences_dialog.c:1430 app/qmask.c:279 +#: app/resize.c:193 app/resize.c:1345 app/threshold.c:271 #: modules/cdisplay_gamma.c:351 msgid "OK" msgstr "" -#: app/brightness_contrast.c:216 app/by_color_select.c:634 +#: app/brightness_contrast.c:216 app/by_color_select.c:687 #: app/color_balance.c:273 app/curves.c:557 app/file_new_dialog.c:355 #: app/hue_saturation.c:375 app/levels.c:339 app/posterize.c:199 #: app/threshold.c:273 app/tools.c:1086 app/transform_core.c:412 @@ -312,7 +312,7 @@ msgid "Brush Editor" msgstr "" #. The close button -#: app/brush_edit.c:216 app/brush_select.c:278 app/by_color_select.c:636 +#: app/brush_edit.c:216 app/brush_select.c:278 app/by_color_select.c:689 #: app/color_notebook.c:122 app/color_picker.c:297 app/colormap_dialog.i.c:170 #: app/crop.c:1054 app/devices.c:755 app/docindexif.c:105 #: app/errorconsole.c:281 app/gdisplay_ops.c:346 app/gradient.c:801 @@ -326,7 +326,7 @@ msgid "Close" msgstr "" #. the feather radius scale -#: app/brush_edit.c:276 app/color_picker.c:181 app/tool_options.c:200 +#: app/brush_edit.c:276 app/color_picker.c:181 app/tool_options.c:199 msgid "Radius:" msgstr "" @@ -356,11 +356,11 @@ msgstr "" msgid "No Brushes available" msgstr "" -#: app/brush_select.c:445 app/layers_dialog.c:372 app/tool_options.c:505 +#: app/brush_select.c:445 app/layers_dialog.c:372 app/tool_options.c:504 msgid "Opacity:" msgstr "" -#: app/brush_select.c:453 app/layers_dialog.c:324 app/tool_options.c:529 +#: app/brush_select.c:453 app/layers_dialog.c:324 app/tool_options.c:528 msgid "Mode:" msgstr "" @@ -394,7 +394,7 @@ msgstr "" msgid "Sorry, this brush can't be deleted." msgstr "" -#: app/bucket_fill.c:147 app/color_picker.c:156 app/tool_options.c:274 +#: app/bucket_fill.c:147 app/color_picker.c:156 app/tool_options.c:273 msgid "Sample Merged" msgstr "" @@ -424,36 +424,36 @@ msgid "No available patterns for this operation." msgstr "" #. The shell and main vbox -#: app/by_color_select.c:629 +#: app/by_color_select.c:682 msgid "By Color Selection" msgstr "By Colour Selection" -#: app/by_color_select.c:685 +#: app/by_color_select.c:738 msgid "Inactive" msgstr "" -#: app/by_color_select.c:693 +#: app/by_color_select.c:746 msgid "Selection Mode" msgstr "" -#: app/by_color_select.c:695 app/paint_funcs.c:100 +#: app/by_color_select.c:748 app/paint_funcs.c:100 msgid "Replace" msgstr "" -#: app/by_color_select.c:697 app/colormap_dialog.i.c:127 +#: app/by_color_select.c:750 app/colormap_dialog.i.c:127 #: app/gdisplay_color_ui.c:114 msgid "Add" msgstr "" -#: app/by_color_select.c:699 app/layers_dialog.c:340 app/tool_options.c:904 +#: app/by_color_select.c:752 app/layers_dialog.c:340 app/tool_options.c:904 msgid "Subtract" msgstr "" -#: app/by_color_select.c:701 +#: app/by_color_select.c:754 msgid "Intersect" msgstr "" -#: app/by_color_select.c:713 +#: app/by_color_select.c:766 msgid "Fuzziness Threshold" msgstr "" @@ -471,7 +471,7 @@ msgstr "" msgid "Selection Mask" msgstr "" -#: app/channel_ops.c:85 app/resize.c:392 +#: app/channel_ops.c:85 app/resize.c:394 msgid "Offset" msgstr "" @@ -481,8 +481,8 @@ msgid "Offset X:" msgstr "" #: app/channel_ops.c:115 app/crop.c:1063 app/file_new_dialog.c:530 -#: app/resize.c:330 app/resize.c:415 app/resize.c:573 app/rotate_tool.c:106 -#: app/scale_tool.c:100 app/shear_tool.c:82 +#: app/install.c:1108 app/resize.c:332 app/resize.c:417 app/resize.c:575 +#: app/rotate_tool.c:106 app/scale_tool.c:100 app/shear_tool.c:82 msgid "Y:" msgstr "" @@ -491,12 +491,12 @@ msgstr "" msgid "Wrap Around" msgstr "" -#: app/channel_ops.c:174 app/image_new.c:69 app/image_new.c:223 +#: app/channel_ops.c:174 app/image_new.c:70 app/image_new.c:234 #: app/layers_dialog.c:3422 msgid "Background" msgstr "" -#: app/channel_ops.c:175 app/image_new.c:79 app/layers_dialog.c:3424 +#: app/channel_ops.c:175 app/image_new.c:80 app/layers_dialog.c:3424 msgid "Transparent" msgstr "" @@ -673,19 +673,19 @@ msgstr "" msgid "Update Active Color" msgstr "Update Active Colour" -#: app/color_picker.c:255 app/color_picker.c:265 +#: app/color_picker.c:255 app/color_picker.c:264 msgid "Red:" msgstr "" -#: app/color_picker.c:256 app/color_picker.c:266 +#: app/color_picker.c:256 app/color_picker.c:265 msgid "Green:" msgstr "" -#: app/color_picker.c:257 app/color_picker.c:267 +#: app/color_picker.c:257 app/color_picker.c:266 msgid "Blue:" msgstr "" -#: app/color_picker.c:258 app/color_picker.c:264 app/color_picker.c:273 +#: app/color_picker.c:258 app/color_picker.c:267 app/color_picker.c:273 msgid "Alpha:" msgstr "" @@ -706,13 +706,13 @@ msgstr "" msgid "Intensity:" msgstr "" -#: app/color_picker.c:633 app/color_picker.c:634 app/color_picker.c:635 -#: app/color_picker.c:636 app/color_picker.c:637 app/color_picker.c:638 -#: app/color_picker.c:639 app/color_picker.c:657 app/color_picker.c:672 -#: app/color_picker.c:690 app/info_window.c:185 app/info_window.c:191 -#: app/info_window.c:197 app/info_window.c:203 app/info_window.c:422 -#: app/info_window.c:423 app/info_window.c:424 app/info_window.c:425 -#: app/info_window.c:447 +#: app/color_picker.c:626 app/color_picker.c:627 app/color_picker.c:628 +#: app/color_picker.c:629 app/color_picker.c:630 app/color_picker.c:631 +#: app/color_picker.c:632 app/color_picker.c:644 app/color_picker.c:651 +#: app/color_picker.c:669 app/color_picker.c:684 app/info_window.c:185 +#: app/info_window.c:191 app/info_window.c:197 app/info_window.c:203 +#: app/info_window.c:422 app/info_window.c:423 app/info_window.c:424 +#: app/info_window.c:425 app/info_window.c:447 msgid "N/A" msgstr "" @@ -912,13 +912,13 @@ msgstr "" #. the pixel size labels #: app/crop.c:1076 app/file_new_dialog.c:389 app/file_new_dialog.c:407 -#: app/tool_options.c:334 +#: app/tool_options.c:333 msgid "Width:" msgstr "" #: app/crop.c:1079 app/file_new_dialog.c:395 app/file_new_dialog.c:413 -#: app/layers_dialog.c:3363 app/resize.c:240 app/resize.c:265 app/resize.c:510 -#: app/scale_tool.c:79 app/scale_tool.c:86 app/tool_options.c:350 +#: app/layers_dialog.c:3363 app/resize.c:242 app/resize.c:267 app/resize.c:512 +#: app/scale_tool.c:79 app/scale_tool.c:86 app/tool_options.c:349 msgid "Height:" msgstr "" @@ -970,7 +970,7 @@ msgid "Load" msgstr "" #: app/curves.c:704 app/devices.c:753 app/levels.c:608 app/palette.c:2068 -#: app/preferences_dialog.c:357 app/preferences_dialog.c:1467 +#: app/preferences_dialog.c:357 app/preferences_dialog.c:1432 msgid "Save" msgstr "" @@ -1000,7 +1000,7 @@ msgstr "Desaturate operates only on RGB colour drawables." msgid "Device Status" msgstr "" -#: app/disp_callbacks.c:755 app/global_edit.c:297 app/global_edit.c:303 +#: app/disp_callbacks.c:760 app/global_edit.c:297 app/global_edit.c:303 #: app/global_edit.c:375 msgid "Pasted Layer" msgstr "" @@ -1171,17 +1171,17 @@ msgstr "" msgid "New Image" msgstr "" -#: app/file_new_dialog.c:453 app/preferences_dialog.c:1540 -#: app/preferences_dialog.c:1577 +#: app/file_new_dialog.c:453 app/install.c:1093 app/preferences_dialog.c:1505 +#: app/preferences_dialog.c:1542 msgid "Pixels" msgstr "" #. the resolution labels -#: app/file_new_dialog.c:524 app/resize.c:567 +#: app/file_new_dialog.c:524 app/resize.c:569 msgid "Resolution X:" msgstr "" -#: app/file_new_dialog.c:545 app/resize.c:588 +#: app/file_new_dialog.c:545 app/resize.c:590 msgid "pixels/%a" msgstr "" @@ -1209,7 +1209,7 @@ msgstr "" msgid "No Selection." msgstr "" -#: app/fileops.c:418 app/fileops.c:1624 app/fileops.c:1731 +#: app/fileops.c:418 app/fileops.c:1629 app/fileops.c:1736 #, c-format msgid "Save failed: %s" msgstr "" @@ -1234,58 +1234,58 @@ msgstr "" msgid "Revert failed." msgstr "" -#: app/fileops.c:1240 +#: app/fileops.c:1245 msgid "(This thumbnail may be out of date)" msgstr "" -#: app/fileops.c:1241 +#: app/fileops.c:1246 msgid "(No Information)" msgstr "" -#: app/fileops.c:1251 +#: app/fileops.c:1256 msgid "(Thumbnail saving is disabled)" msgstr "" -#: app/fileops.c:1255 +#: app/fileops.c:1260 msgid "(Could not write thumbnail file)" msgstr "" -#: app/fileops.c:1259 +#: app/fileops.c:1264 msgid "(Thumbnail file not written)" msgstr "" -#: app/fileops.c:1276 +#: app/fileops.c:1281 msgid "No preview available" msgstr "" -#: app/fileops.c:1394 +#: app/fileops.c:1399 msgid "(could not make preview)" msgstr "" -#: app/fileops.c:1467 app/fileops.c:1546 +#: app/fileops.c:1472 app/fileops.c:1551 #, c-format msgid "Open failed: %s" msgstr "" -#: app/fileops.c:1602 +#: app/fileops.c:1607 #, c-format msgid "%s is an irregular file (%s)" msgstr "" -#: app/fileops.c:1670 +#: app/fileops.c:1675 #, c-format msgid "%s exists, overwrite?" msgstr "" -#: app/fileops.c:1674 +#: app/fileops.c:1679 msgid "File Exists!" msgstr "" -#: app/fileops.c:1680 +#: app/fileops.c:1685 msgid "Yes" msgstr "" -#: app/fileops.c:1682 +#: app/fileops.c:1687 msgid "No" msgstr "" @@ -1293,13 +1293,13 @@ msgstr "" msgid "Flip Tool" msgstr "" -#: app/flip_tool.c:95 app/preferences_dialog.c:1591 -#: app/preferences_dialog.c:2355 +#: app/flip_tool.c:95 app/preferences_dialog.c:1556 +#: app/preferences_dialog.c:2284 msgid "Horizontal" msgstr "" -#: app/flip_tool.c:97 app/preferences_dialog.c:1593 -#: app/preferences_dialog.c:2357 +#: app/flip_tool.c:97 app/preferences_dialog.c:1558 +#: app/preferences_dialog.c:2286 msgid "Vertical" msgstr "" @@ -1320,7 +1320,7 @@ msgstr "" msgid "RGB-empty" msgstr "" -#: app/gdisplay.c:217 app/image_new.c:53 app/preferences_dialog.c:1637 +#: app/gdisplay.c:217 app/image_new.c:54 app/preferences_dialog.c:1602 msgid "RGB" msgstr "" @@ -1445,23 +1445,23 @@ msgstr "" msgid "Failed to load pixmap brush." msgstr "" -#: app/gimpdrawable.c:168 +#: app/gimpdrawable.c:166 msgid "Can't fill unknown image type." msgstr "" -#: app/gimpdrawable.c:512 +#: app/gimpdrawable.c:498 msgid "parasite attach to drawable" msgstr "" -#: app/gimpdrawable.c:548 +#: app/gimpdrawable.c:533 msgid "detach parasite from drawable" msgstr "" -#: app/gimpdrawable.c:770 +#: app/gimpdrawable.c:740 msgid "unnamed" msgstr "" -#: app/gimpdrawable.c:787 +#: app/gimpdrawable.c:757 #, c-format msgid "Layer type %d not supported." msgstr "" @@ -1473,79 +1473,79 @@ msgid "" "you don't have GtkXmHTML installed." msgstr "" -#: app/gimpimage.c:1154 +#: app/gimpimage.c:1176 msgid "attach parasite to image" msgstr "" -#: app/gimpimage.c:1177 +#: app/gimpimage.c:1201 msgid "detach parasite from image" msgstr "" -#: app/gimpimage.c:2232 +#: app/gimpimage.c:2305 msgid "Layer cannot be raised any further" msgstr "" -#: app/gimpimage.c:2258 +#: app/gimpimage.c:2333 msgid "Layer cannot be lowered any further" msgstr "" -#: app/gimpimage.c:2282 +#: app/gimpimage.c:2359 msgid "Layer is already on top" msgstr "" -#: app/gimpimage.c:2288 +#: app/gimpimage.c:2365 msgid "Can't raise Layer without alpha" msgstr "" -#: app/gimpimage.c:2315 +#: app/gimpimage.c:2393 msgid "Layer is already on bottom" msgstr "" -#: app/gimpimage.c:2370 +#: app/gimpimage.c:2448 msgid "BG has no alpha, layer was placed above" msgstr "" -#: app/gimpimage.c:2439 +#: app/gimpimage.c:2519 msgid "" "There are not enough visible layers for a merge.\n" "There must be at least two." msgstr "" -#: app/gimpimage.c:2519 +#: app/gimpimage.c:2603 msgid "There are not enough visible layers for a merge down." msgstr "" -#: app/gimpimage.c:2915 +#: app/gimpimage.c:3005 msgid "" "Unable to add a layer mask since\n" "the layer already has one." msgstr "" -#: app/gimpimage.c:2919 +#: app/gimpimage.c:3009 msgid "" "Unable to add a layer mask to a\n" "layer in an indexed image." msgstr "" -#: app/gimpimage.c:2923 +#: app/gimpimage.c:3013 msgid "" "Cannot add layer mask to a layer\n" "with no alpha channel." msgstr "" -#: app/gimpimage.c:2930 +#: app/gimpimage.c:3020 msgid "Cannot add layer mask of different dimensions than specified layer." msgstr "" -#: app/gimpimage.c:3033 +#: app/gimpimage.c:3127 msgid "Channel cannot be raised any further" msgstr "" -#: app/gimpimage.c:3082 +#: app/gimpimage.c:3178 msgid "Channel cannot be lowered any further" msgstr "" -#: app/gimpimage.c:3288 app/palette.c:364 app/palette.c:941 app/palette.c:1077 +#: app/gimpimage.c:3398 app/palette.c:364 app/palette.c:941 app/palette.c:1077 #: app/palette.c:2022 app/palette.c:2749 app/palette.c:2881 msgid "Untitled" msgstr "" @@ -1558,45 +1558,45 @@ msgstr "" msgid "Please wait..." msgstr "" -#: app/gimprc.c:401 app/plug_in.c:304 +#: app/gimprc.c:415 app/plug_in.c:304 msgid "Resource configuration" msgstr "" -#: app/gimprc.c:451 +#: app/gimprc.c:467 #, c-format msgid "error parsing: \"%s\"\n" msgstr "" -#: app/gimprc.c:452 +#: app/gimprc.c:468 #, c-format msgid " at line %d column %d\n" msgstr "" -#: app/gimprc.c:453 +#: app/gimprc.c:469 #, c-format msgid " unexpected token: %s\n" msgstr "" -#: app/gimprc.c:1455 +#: app/gimprc.c:1473 msgid "error parsing pluginrc" msgstr "" -#: app/gimprc.c:2832 +#: app/gimprc.c:2866 #, c-format msgid "Can't open %s; %s" msgstr "" -#: app/gimprc.c:2851 +#: app/gimprc.c:2885 #, c-format msgid "Can't rename %s to %s.old; %s" msgstr "" -#: app/gimprc.c:2857 +#: app/gimprc.c:2891 #, c-format msgid "Couldn't reopen %s\n" msgstr "" -#: app/gimprc.c:2869 +#: app/gimprc.c:2903 #, c-format msgid "Can't write to %s; %s" msgstr "" @@ -1626,7 +1626,7 @@ msgstr "" msgid "pixel" msgstr "" -#: app/gimpunit.c:59 app/measure.c:454 app/measure.c:458 app/paint_core.c:498 +#: app/gimpunit.c:59 app/measure.c:454 app/measure.c:458 app/paint_core.c:511 msgid "pixels" msgstr "" @@ -1866,7 +1866,7 @@ msgstr "" msgid "Distance: %0.6f" msgstr "" -#: app/gradient.c:3387 app/gradient.c:4448 +#: app/gradient.c:3387 app/gradient.c:4450 msgid "Left endpoint's color" msgstr "Left endpoint's colour" @@ -1886,7 +1886,7 @@ msgstr "" msgid "Save to" msgstr "" -#: app/gradient.c:3429 app/gradient.c:4526 +#: app/gradient.c:3429 app/gradient.c:4528 msgid "Right endpoint's color" msgstr "Right endpoint's colour" @@ -1914,7 +1914,7 @@ msgstr "Colouring type for segment" msgid "Split segment at midpoint" msgstr "" -#: app/gradient.c:3734 app/gradient.c:4829 +#: app/gradient.c:3734 app/gradient.c:4831 msgid "Split segment uniformly" msgstr "" @@ -1934,7 +1934,7 @@ msgstr "" msgid "Flip segment" msgstr "" -#: app/gradient.c:3744 app/gradient.c:5390 +#: app/gradient.c:3744 app/gradient.c:5392 msgid "Replicate segment" msgstr "" @@ -1950,7 +1950,7 @@ msgstr "Colouring type for selection" msgid "Split segments at midpoints" msgstr "" -#: app/gradient.c:3755 app/gradient.c:4830 +#: app/gradient.c:3755 app/gradient.c:4832 msgid "Split segments uniformly" msgstr "" @@ -1970,7 +1970,7 @@ msgstr "" msgid "Flip selection" msgstr "" -#: app/gradient.c:3765 app/gradient.c:5391 +#: app/gradient.c:3765 app/gradient.c:5393 msgid "Replicate selection" msgstr "" @@ -1983,49 +1983,49 @@ msgstr "FG colour" msgid "RGBA (%0.3f, %0.3f, %0.3f, %0.3f)" msgstr "" -#: app/gradient.c:4615 app/gradient.c:4685 +#: app/gradient.c:4617 app/gradient.c:4687 msgid "(Varies)" msgstr "" -#: app/gradient.c:4837 +#: app/gradient.c:4839 msgid "Split" msgstr "" #. Instructions -#: app/gradient.c:4851 +#: app/gradient.c:4853 msgid "Please select the number of uniform parts" msgstr "" -#: app/gradient.c:4857 +#: app/gradient.c:4859 msgid "in which you want to split the selected segment" msgstr "" -#: app/gradient.c:4858 +#: app/gradient.c:4860 msgid "in which you want to split the segments in the selection" msgstr "" -#: app/gradient.c:5218 +#: app/gradient.c:5220 msgid "Blend endpoints' colors" msgstr "Blend endpoints' colours" -#: app/gradient.c:5230 +#: app/gradient.c:5232 msgid "Blend endpoints' opacity" msgstr "" -#: app/gradient.c:5398 +#: app/gradient.c:5400 msgid "Replicate" msgstr "" #. Instructions -#: app/gradient.c:5411 +#: app/gradient.c:5413 msgid "Please select the number of times" msgstr "" -#: app/gradient.c:5416 +#: app/gradient.c:5418 msgid "you want to replicate the selected segment" msgstr "" -#: app/gradient.c:5417 +#: app/gradient.c:5419 msgid "you want to replicate the selection" msgstr "" @@ -2129,45 +2129,45 @@ msgstr "" msgid "Saturation" msgstr "" -#: app/image_new.c:58 app/info_window.c:65 app/info_window.c:534 -#: app/preferences_dialog.c:1638 +#: app/image_new.c:59 app/info_window.c:65 app/info_window.c:534 +#: app/preferences_dialog.c:1603 msgid "Grayscale" msgstr "Greyscale" -#: app/image_new.c:64 app/layers_dialog.c:3421 +#: app/image_new.c:65 app/layers_dialog.c:3421 msgid "Foreground" msgstr "" -#: app/image_new.c:74 app/layers_dialog.c:3423 +#: app/image_new.c:75 app/layers_dialog.c:3423 msgid "White" msgstr "" -#: app/image_new.c:262 +#: app/image_new.c:273 #, c-format msgid "%d Bytes" msgstr "" -#: app/image_new.c:264 +#: app/image_new.c:275 #, c-format msgid "%.2f KB" msgstr "" -#: app/image_new.c:266 +#: app/image_new.c:277 #, c-format msgid "%.1f KB" msgstr "" -#: app/image_new.c:268 +#: app/image_new.c:279 #, c-format msgid "%d KB" msgstr "" -#: app/image_new.c:270 +#: app/image_new.c:281 #, c-format msgid "%.2f MB" msgstr "" -#: app/image_new.c:272 +#: app/image_new.c:283 #, c-format msgid "%.1f MB" msgstr "" @@ -2190,8 +2190,8 @@ msgid "" "Click to open the Gradients Dialog." msgstr "" -#: app/info_dialog.c:181 app/preferences_dialog.c:1782 -#: app/preferences_dialog.c:1888 +#: app/info_dialog.c:181 app/preferences_dialog.c:1743 +#: app/preferences_dialog.c:1849 msgid "General" msgstr "" @@ -2324,314 +2324,402 @@ msgstr "" msgid "Shape" msgstr "" -#: app/install.c:83 +#: app/install.c:95 msgid "The GIMP is not properly installed for the current user\n" msgstr "" -#: app/install.c:84 +#: app/install.c:96 msgid "" "User installation was skipped because the '--nointerface' flag was " "encountered\n" msgstr "" -#: app/install.c:85 +#: app/install.c:97 msgid "" "To perform user installation, run the GIMP without the '--nointerface' flag\n" msgstr "" -#: app/install.c:113 +#: app/install.c:142 msgid "" -"The GIMP - GNU Image Manipulation Program\n" -"\n" +"The gimprc is used to store personal preferences\n" +"that affect GIMP's default behavior.\n" +"Paths to search for brushes, palettes, gradients,\n" +"patterns, plug-ins and modules can also configured here." msgstr "" -#: app/install.c:118 +#: app/install.c:149 +msgid "" +"GIMP uses an additional gtkrc file so you can\n" +"configure it to look differently than other GTK apps." +msgstr "" + +#: app/install.c:154 +msgid "" +"Plug-ins and extensions are external programs run by\n" +"the GIMP which provide additional functionality.\n" +"These programs are searched for at run-time and\n" +"information about their functionality and mod-times\n" +"is cached in this file. This file is intended to\n" +"be GIMP-readable only, and should not be edited." +msgstr "" + +#: app/install.c:163 +msgid "" +"Key shortcuts can be dynamically redefined in The GIMP.\n" +"The menurc is a dump of your configuration so it can.\n" +"be remembered for the next session. You may edit this\n" +"file if you wish, but it is much easier to define the\n" +"keys from within The GIMP. Deleting this file will\n" +"restore the default shortcuts." +msgstr "" + +#: app/install.c:172 +msgid "" +"The sessionrc is used to store what dialog windows were\n" +"open the last time you quit The GIMP. You can configure\n" +"The GIMP to reopen these dialogs at the saved position." +msgstr "" + +#: app/install.c:178 +#, fuzzy +msgid "" +"The unitrc is used to store your user units database.\n" +"You can define additional units and use them just\n" +"like you use the built-in units inches, millimeters,\n" +"points and picas. This file is overwritten each time\n" +"you quit the GIMP." +msgstr "" +"The unitrc is used to store your user units database.\n" +"You can define additional units and use them just\n" +"like you use the built-in units inches, millimetres,\n" +"points and picas. This file is overwritten each time\n" +"you quit the GIMP.\n" + +#: app/install.c:186 +msgid "" +"This is a subdirectory which can be used to store\n" +"user defined brushes. The default gimprc file\n" +"checks this subdirectory in addition to the system-\n" +"wide gimp brushes installation when searching for\n" +"brushes." +msgstr "" + +#: app/install.c:194 +msgid "" +"This is a subdirectory which is used to store brushes\n" +"that are created with the brush editor. The default\n" +"gimprc file checks this subdirectory when searching for\n" +"generated brushes." +msgstr "" + +#: app/install.c:201 +msgid "" +"This is a subdirectory which can be used to store\n" +"user defined gradients. The default gimprc file\n" +"checks this subdirectory in addition to the system-\n" +"wide gimp gradients installation when searching for\n" +"gradients." +msgstr "" + +#: app/install.c:209 +msgid "" +"This is a subdirectory which can be used to store\n" +"user defined palettes. The default gimprc file\n" +"checks only this subdirectory (not the system-wide\n" +"installation) when searching for palettes. During\n" +"installation, the system palettes will be copied\n" +"here. This is done to allow modifications made to\n" +"palettes during GIMP execution to persist across\n" +"sessions." +msgstr "" + +#: app/install.c:220 +msgid "" +"This is a subdirectory which can be used to store\n" +"user defined patterns. The default gimprc file\n" +"checks this subdirectory in addition to the system-\n" +"wide gimp patterns installation when searching for\n" +"patterns." +msgstr "" + +#: app/install.c:228 +msgid "" +"This is a subdirectory which can be used to store\n" +"user created, temporary, or otherwise non-system-\n" +"supported plug-ins. The default gimprc file\n" +"checks this subdirectory in addition to the system-\n" +"wide GIMP plug-in directories when searching for\n" +"plug-ins." +msgstr "" + +#: app/install.c:237 +msgid "" +"This subdirectory can be used to store user created,\n" +"temporary, or otherwise non-system-supported DLL modules.\n" +"The default gimprc file checks this subdirectory\n" +"in addition to the system-wide GIMP module directory\n" +"when searching for modules to load when initializing." +msgstr "" + +#: app/install.c:245 +msgid "" +"This subdirectory is used by the GIMP to store \n" +"user created and installed scripts. The default gimprc\n" +"file checks this subdirectory in addition to the system-\n" +"wide gimp scripts subdirectory when searching for scripts" +msgstr "" + +#: app/install.c:252 +msgid "" +"This subdirectory is used by the GIMP to temporarily\n" +"store undo buffers to reduce memory usage. If GIMP is\n" +"unceremoniously killed, files may persist in this directory\n" +"of the form: gimp<#>.<#>. These files are useless across\n" +"GIMP sessions and can be destroyed with impunity." +msgstr "" + +#: app/install.c:260 +msgid "" +"This subdirectory is used to store parameter files for\n" +"the Curves tool." +msgstr "" + +#: app/install.c:265 +msgid "" +"This subdirectory is used to store parameter files for\n" +"the Levels tool." +msgstr "" + +#: app/install.c:270 +msgid "" +"This is a subdirectory which can be used to store\n" +"user defined fractals to be used by the FractalExplorer\n" +"plug-in. The default gimprc file checks this subdirectory in\n" +"addition to the systemwide gimp FractalExplorer installation\n" +"when searching for fractals." +msgstr "" + +#: app/install.c:278 +msgid "" +"This is a subdirectory which can be used to store\n" +"user defined figures to be used by the gfig plug-in.\n" +"The default gimprc file checks this subdirectory in\n" +"addition to the systemwide gimp gfig installation\n" +"when searching for gfig figures." +msgstr "" + +#: app/install.c:286 +msgid "" +"This is a subdirectory which can be used to store\n" +"user defined gflares to be used by the gflare plug-in.\n" +"The default gimprc file checks this subdirectory in\n" +"addition to the systemwide gimp gflares installation\n" +"when searching for gflares." +msgstr "" + +#: app/install.c:294 +msgid "" +"This is a subdirectory which can be used to store\n" +"user defined data to be used by the Gimpressionist\n" +"plug-in. The default gimprc file checks this subdirectory in\n" +"addition to the systemwide gimp Gimpressionist installation\n" +"when searching for data." +msgstr "" + +#: app/install.c:525 +msgid "GIMP User Installation" +msgstr "" + +#: app/install.c:530 +msgid "Continue" +msgstr "" + +#. this is a fontset, e.g. multiple comma-separated font definitions +#: app/install.c:560 +msgid "-*-helvetica-bold-r-normal-*-*-240-*-*-*-*-*-*,*" +msgstr "" + +#: app/install.c:578 +msgid "" +"Welcome to\n" +"The GIMP User Installation" +msgstr "" + +#: app/install.c:582 +msgid "" +"The GIMP - GNU Image Manipulation Program\n" +"Copyright (C) 1995-2000\n" +"Spencer Kimball, Peter Mattis and the GIMP Development Team." +msgstr "" + +#: app/install.c:591 +#, fuzzy msgid "" "This program is free software; you can redistribute it and/or modify\n" "it under the terms of the GNU General Public License as published by\n" "the Free Software Foundation; either version 2 of the License, or\n" -"(at your option) any later version.\n" +"(at your option) any later version." msgstr "" "This program is free software; you can redistribute it and/or modify\n" "it under the terms of the GNU General Public License as published by\n" "the Free Software Foundation; either version 2 of the Licence, or\n" "(at your option) any later version.\n" -#: app/install.c:123 +#: app/install.c:596 +#, fuzzy msgid "" "This program is distributed in the hope that it will be useful,\n" "but WITHOUT ANY WARRANTY; without even the implied warranty of\n" "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n" -"See the GNU General Public License for more details.\n" +"See the GNU General Public License for more details." msgstr "" "This program is distributed in the hope that it will be useful,\n" "but WITHOUT ANY WARRANTY; without even the implied warranty of\n" "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n" "See the GNU General Public Licence for more details.\n" -#: app/install.c:128 +#: app/install.c:601 +#, fuzzy msgid "" "You should have received a copy of the GNU General Public License\n" "along with this program; if not, write to the Free Software\n" "Foundation, Inc., 59 Temple Place - Suite 330, Boston,\n" -"MA 02111-1307, USA.\n" +"MA 02111-1307, USA." msgstr "" "You should have received a copy of the GNU General Public Licence\n" "along with this program; if not, write to the Free Software\n" "Foundation, Inc., 59 Temple Place - Suite 330, Boston,\n" "MA 02111-1307, USA.\n" -#: app/install.c:134 +#: app/install.c:607 +msgid "Click \"Continue\" to enter the GIMP user installation." +msgstr "" + +#: app/install.c:633 +msgid "Personal GIMP Directory" +msgstr "" + +#: app/install.c:650 msgid "" -"Personal GIMP Installation\n" -"\n" +"For a proper GIMP installation, a subdirectory needs to be created.\n" +"This subdirectory will contain a number of important files." msgstr "" -#: app/install.c:135 -msgid "For a proper GIMP installation, a subdirectory called\n" -msgstr "" - -#. will be replaced with gimp_directory() -#: app/install.c:137 +#: app/install.c:653 msgid "" -" needs to be created. This\n" -"subdirectory will contain a number of important files:\n" -"\n" +"Click on one of the files or subdirectories in the tree\n" +"to get more information about the selected item." msgstr "" -#: app/install.c:141 +#: app/install.c:656 +msgid "Click \"Continue\" to create your personal GIMP directory." +msgstr "" + +#: app/install.c:736 +msgid "User Installation Log" +msgstr "" + +#: app/install.c:741 +msgid "GIMP Performance Tuning" +msgstr "" + +#: app/install.c:744 +msgid "For optimal GIMP performance, some settings may have to be adjusted." +msgstr "" + +#: app/install.c:751 +msgid "Click \"Continue\" to accept the settings above." +msgstr "" + +#: app/install.c:760 +#, fuzzy +msgid "Monitor Resolution" +msgstr "Colour Selection" + +#: app/install.c:763 msgid "" -"\t\tThe gimprc is used to store personal preferences\n" -"\t\tthat affect GIMP's default behavior.\n" -"\t\tPaths to search for brushes, palettes, gradients,\n" -"\t\tpatterns, plug-ins and modules can also configured here.\n" +"To display images in their natural size, GIMP needs to know your monitor " +"resolution." msgstr "" -#: app/install.c:147 +#: app/install.c:771 +msgid "Click \"Continue\" to start The GIMP." +msgstr "" + +#: app/install.c:845 +msgid "does not exist. Cannot install." +msgstr "" + +#: app/install.c:857 +msgid "has invalid permissions. Cannot install." +msgstr "" + +#: app/install.c:895 msgid "" -"\t\tPlug-ins and extensions are external programs run by\n" -"\t\tthe GIMP which provide additional functionality.\n" -"\t\tThese programs are searched for at run-time and\n" -"\t\tinformation about their functionality and mod-times\n" -"\t\tis cached in this file. This file is intended to\n" -"\t\tbe GIMP-readable only, and should not be edited.\n" +"Did you notice any error messages in the console window?\n" +"If not, installation was successful!\n" +"Otherwise, quit and investigate the possible reason..." msgstr "" -#: app/install.c:155 +#: app/install.c:955 msgid "" -"\t\tKey shortcuts can be dynamically redefined in The GIMP.\n" -"\t\tThe menurc is a dump of your configuration so it can.\n" -"\t\tbe remembered for the next session. You may edit this\n" -"\t\tfile if you wish, but it is much easier to define the\n" -"\t\tkeys from within The GIMP. Deleting this file will\n" -"\t\trestore the default shortcuts.\n" +"Did you notice any error messages in the lines above?\n" +"If not, installation was successful!\n" +"Otherwise, quit and investigate the possible reason..." msgstr "" -#: app/install.c:163 +#: app/install.c:969 +msgid "Click \"Continue\" to complete GIMP installation." +msgstr "" + +#: app/install.c:978 +msgid "Installation failed. Contact system administrator." +msgstr "" + +#: app/install.c:999 msgid "" -"\t\tThe sessionrc is used to store what dialog windows were\n" -"\t\topen the last time you quit The GIMP. You can configure\n" -"\t\tThe GIMP to reopen these dialogs at the saved position.\n" +"GIMP uses a limited amount of memory to store image data, the so-called\n" +"\"Tile Cache\". You should adjust it's size to fit into memory. Consider\n" +"the amount of memory used by other running processes." msgstr "" -#: app/install.c:168 +#: app/install.c:1015 app/preferences_dialog.c:2102 +msgid "Tile Cache Size:" +msgstr "" + +#: app/install.c:1025 msgid "" -"\t\tThe unitrc is used to store your user units database.\n" -"\t\tYou can define additional units and use them just\n" -"\t\tlike you use the built-in units inches, millimeters,\n" -"\t\tpoints and picas. This file is overwritten each time\n" -"\t\tyou quit the GIMP.\n" +"All image and undo data which doesn't fit into the Tile Cache will be\n" +"written to a swap file. This file should be located on a local filesystem\n" +"with enough free space (several hundred MB). On a UNIX system, you\n" +"may want to use the system-wide temp-dir (\"/tmp\" or \"/var/tmp\")." msgstr "" -"\t\tThe unitrc is used to store your user units database.\n" -"\t\tYou can define additional units and use them just\n" -"\t\tlike you use the built-in units inches, millimetres,\n" -"\t\tpoints and picas. This file is overwritten each time\n" -"\t\tyou quit the GIMP.\n" -#: app/install.c:175 +#: app/install.c:1035 app/preferences_dialog.c:2361 +msgid "Select Swap Dir" +msgstr "" + +#: app/install.c:1041 +msgid "Swap Directory:" +msgstr "" + +#: app/install.c:1063 msgid "" -"\t\tThis is a subdirectory which can be used to store\n" -"\t\tuser defined brushes. The default gimprc file\n" -"\t\tchecks this subdirectory in addition to the system-\n" -"\t\twide gimp brushes installation when searching for\n" -"\t\tbrushes.\n" +"GIMP can obtain this information from your X-server.\n" +"However, most X-servers do not return useful values." msgstr "" -#: app/install.c:182 -msgid "" -"\t\tThis is a subdirectory which is used to store brushes\n" -"\t\tthat are created with the brush editor. The default\n" -"\t\tgimprc file checks this subdirectory when searching for\n" -"\t\tgenerated brushes.\n" +#: app/install.c:1070 +#, c-format +msgid "Get Resolution from X-server (Currently %d x %d dpi)" msgstr "" -#: app/install.c:188 -msgid "" -"\t\tThis is a subdirectory which can be used to store\n" -"\t\tuser defined gradients. The default gimprc file\n" -"\t\tchecks this subdirectory in addition to the system-\n" -"\t\twide gimp gradients installation when searching for\n" -"\t\tgradients.\n" +#: app/install.c:1087 +msgid "Alternatively, you can set the monitor resolution manually." msgstr "" -#: app/install.c:195 -msgid "" -"\t\tThis is a subdirectory which can be used to store\n" -"\t\tuser defined figures to be used by the gfig plug-in.\n" -"\t\tThe default gimprc file checks this subdirectory in\n" -"\t\taddition to the systemwide gimp gfig installation\n" -"\t\twhen searching for gfig figures.\n" -msgstr "" - -#: app/install.c:202 -msgid "" -"\t\tThis is a subdirectory which can be used to store\n" -"\t\tuser defined gflares to be used by the gflare plug-in.\n" -"\t\tThe default gimprc file checks this subdirectory in\n" -"\t\taddition to the systemwide gimp gflares installation\n" -"\t\twhen searching for gflares.\n" -msgstr "" - -#: app/install.c:209 -msgid "" -"\t\tThis is a subdirectory which can be used to store\n" -"\t\tuser defined fractals to be used by the FractalExplorer\n" -"\t\tplug-in. The default gimprc file checks this subdirectory in\n" -"\t\taddition to the systemwide gimp FractalExplorer installation\n" -"\t\twhen searching for fractals.\n" -msgstr "" - -#: app/install.c:216 -msgid "" -"\t\tThis is a subdirectory which can be used to store\n" -"\t\tuser defined palettes. The default gimprc file\n" -"\t\tchecks only this subdirectory (not the system-wide\n" -"\t\tinstallation) when searching for palettes. During\n" -"\t\tinstallation, the system palettes will be copied\n" -"\t\there. This is done to allow modifications made to\n" -"\t\tpalettes during GIMP execution to persist across\n" -"\t\tsessions.\n" -msgstr "" - -#: app/install.c:226 -msgid "" -"\t\tThis is a subdirectory which can be used to store\n" -"\t\tuser defined patterns. The default gimprc file\n" -"\t\tchecks this subdirectory in addition to the system-\n" -"\t\twide gimp patterns installation when searching for\n" -"\t\tpatterns.\n" -msgstr "" - -#: app/install.c:233 -msgid "" -"\t\tThis is a subdirectory which can be used to store\n" -"\t\tuser created, temporary, or otherwise non-system-\n" -"\t\tsupported plug-ins. The default gimprc file\n" -"\t\tchecks this subdirectory in addition to the system-\n" -"\t\twide GIMP plug-in directories when searching for\n" -"\t\tplug-ins.\n" -msgstr "" - -#: app/install.c:241 -msgid "" -"\t\tThis subdirectory can be used to store user created,\n" -"\t\ttemporary, or otherwise non-system-supported DLL modules.\n" -"\t\tThe default gimprc file checks this subdirectory\n" -"\t\tin addition to the system-wide GIMP module directory\n" -"\t\twhen searching for modules to load when initializing.\n" -msgstr "" - -#: app/install.c:248 -msgid "" -"\t\tThis subdirectory is used by the GIMP to store \n" -"\t\tuser created and installed scripts. The default gimprc\n" -"\t\tfile checks this subdirectory in addition to the system\n" -"\t\t-wide gimp scripts subdirectory when searching for scripts\n" -msgstr "" - -#: app/install.c:254 -msgid "" -"\t\tThis subdirectory is used by the GIMP to temporarily\n" -"\t\tstore undo buffers to reduce memory usage. If GIMP is\n" -"\t\tunceremoniously killed, files may persist in this directory\n" -"\t\tof the form: gimp<#>.<#>. These files are useless across\n" -"\t\tGIMP sessions and can be destroyed with impunity.\n" -msgstr "" - -#: app/install.c:263 -msgid "GIMP Installation" -msgstr "" - -#: app/install.c:268 -msgid "Install" -msgstr "" - -#: app/install.c:270 -msgid "Ignore" -msgstr "" - -#. this is a fontset, e.g. multiple comma-separated font definitions -#: app/install.c:295 app/install.c:453 -msgid "-*-helvetica-bold-r-normal-*-*-120-*-*-*-*-*-*,*" -msgstr "" - -#. this is a font, provide only one single font definition -#: app/install.c:298 -msgid "-*-helvetica-medium-o-normal-*-*-100-*-*-*-*-*-*" -msgstr "" - -#. this is a fontset, e.g. multiple comma-separated font definitions -#: app/install.c:301 -msgid "-*-helvetica-medium-r-normal-*-*-100-*-*-*-*-*-*,*" -msgstr "" - -#: app/install.c:423 -msgid "Installation Log" -msgstr "" - -#: app/install.c:428 -msgid "Continue" -msgstr "" - -#. this is a fontset, e.g. multiple comma-separated font definitions -#: app/install.c:456 -msgid "-*-helvetica-medium-r-normal-*-*-120-*-*-*-*-*-*,*" -msgstr "" - -#: app/install.c:462 -msgid "" -"User Installation Log\n" -"\n" -msgstr "" - -#: app/install.c:472 -msgid " does not exist. Cannot install.\n" -msgstr "" - -#: app/install.c:480 -msgid "" -" has invalid permissions.\n" -"Cannot install." -msgstr "" - -#: app/install.c:514 -msgid "" -"Did you notice any error messages\n" -"in the console window? If not, installation\n" -"was successful! Otherwise, quit and investigate\n" -"the possible reason...\n" -msgstr "" - -#: app/install.c:546 -msgid "" -"\n" -"Installation successful!\n" -msgstr "" - -#: app/install.c:555 -msgid "" -"\n" -"Installation failed. Contact system administrator.\n" +#: app/install.c:1102 +msgid "Monitor Resolution X:" msgstr "" #: app/interface.c:312 @@ -2712,8 +2800,8 @@ msgstr "" msgid "Guide procedures" msgstr "" -#: app/internal_procs.c:122 app/preferences_dialog.c:1772 -#: app/preferences_dialog.c:1774 +#: app/internal_procs.c:122 app/preferences_dialog.c:1733 +#: app/preferences_dialog.c:1735 msgid "Interface" msgstr "" @@ -3117,142 +3205,133 @@ msgid "degrees" msgstr "" #. /File -#: app/menus.c:82 +#. the underscore installs an accelerator using the character that follows +#: app/menus.c:85 msgid "/_File" msgstr "" -#: app/menus.c:84 app/menus.c:191 +#. /File +#: app/menus.c:87 app/menus.c:193 msgid "/File/New..." msgstr "" -#: app/menus.c:86 app/menus.c:193 +#: app/menus.c:89 app/menus.c:195 msgid "/File/Open..." msgstr "" -#: app/menus.c:93 +#: app/menus.c:96 msgid "/File/Acquire" msgstr "" -#: app/menus.c:98 +#: app/menus.c:101 msgid "/File/Preferences..." msgstr "" -#: app/menus.c:105 -msgid "/File/Dialogs" -msgstr "" - -#: app/menus.c:107 +#: app/menus.c:108 msgid "/File/Dialogs/Layers, Channels & Paths..." msgstr "" -#: app/menus.c:109 +#: app/menus.c:110 msgid "/File/Dialogs/Tool Options..." msgstr "" -#: app/menus.c:114 +#: app/menus.c:115 msgid "/File/Dialogs/Brushes..." msgstr "" -#: app/menus.c:116 +#: app/menus.c:117 msgid "/File/Dialogs/Patterns..." msgstr "" -#: app/menus.c:118 +#: app/menus.c:119 msgid "/File/Dialogs/Gradients..." msgstr "" -#: app/menus.c:120 +#: app/menus.c:121 msgid "/File/Dialogs/Palette..." msgstr "" -#: app/menus.c:122 +#: app/menus.c:123 msgid "/File/Dialogs/Indexed Palette..." msgstr "" -#: app/menus.c:127 +#: app/menus.c:128 msgid "/File/Dialogs/Input Devices..." msgstr "" -#: app/menus.c:129 +#: app/menus.c:130 msgid "/File/Dialogs/Device Status..." msgstr "" -#: app/menus.c:134 +#: app/menus.c:135 msgid "/File/Dialogs/Document Index..." msgstr "" -#: app/menus.c:136 +#: app/menus.c:137 msgid "/File/Dialogs/Error Console..." msgstr "" -#: app/menus.c:138 +#: app/menus.c:139 msgid "/File/Dialogs/Display Filters..." msgstr "" -#: app/menus.c:148 app/menus.c:206 +#: app/menus.c:149 app/menus.c:208 msgid "/File/Quit" msgstr "" #. /Xtns -#: app/menus.c:153 +#. the underscore installs an accelerator using the character that follows +#: app/menus.c:155 msgid "/_Xtns" msgstr "" -#: app/menus.c:155 +#: app/menus.c:157 msgid "/Xtns/Module Browser..." msgstr "" #. /Help -#: app/menus.c:163 +#. the underscore installs an accelerator using the character that follows +#: app/menus.c:166 msgid "/_Help" msgstr "" -#: app/menus.c:165 +#: app/menus.c:168 msgid "/Help/Help..." msgstr "" -#: app/menus.c:167 +#: app/menus.c:170 msgid "/Help/Context Help..." msgstr "" -#: app/menus.c:169 +#: app/menus.c:172 msgid "/Help/Tip of the Day..." msgstr "" -#: app/menus.c:171 +#: app/menus.c:174 msgid "/Help/About..." msgstr "" -#: app/menus.c:173 +#: app/menus.c:176 msgid "/Help/Dump Items (Debug)" msgstr "" -#. /File -#: app/menus.c:189 -msgid "/File" -msgstr "" - -#: app/menus.c:195 +#: app/menus.c:197 msgid "/File/Save" msgstr "" -#: app/menus.c:197 +#: app/menus.c:199 msgid "/File/Save As..." msgstr "" -#: app/menus.c:199 +#: app/menus.c:201 msgid "/File/Revert" msgstr "" -#: app/menus.c:204 +#: app/menus.c:206 msgid "/File/Close" msgstr "" #. /Edit -#: app/menus.c:214 -msgid "/Edit" -msgstr "" - #: app/menus.c:216 msgid "/Edit/Undo" msgstr "" @@ -3283,671 +3362,589 @@ msgstr "" #. /Edit/Buffer #: app/menus.c:236 -msgid "/Edit/Buffer" -msgstr "" - -#: app/menus.c:238 msgid "/Edit/Buffer/Cut Named..." msgstr "" -#: app/menus.c:240 +#: app/menus.c:238 msgid "/Edit/Buffer/Copy Named..." msgstr "" -#: app/menus.c:242 +#: app/menus.c:240 msgid "/Edit/Buffer/Paste Named..." msgstr "" -#: app/menus.c:247 +#: app/menus.c:245 msgid "/Edit/Clear" msgstr "" -#: app/menus.c:249 +#: app/menus.c:247 msgid "/Edit/Fill" msgstr "" -#: app/menus.c:251 +#: app/menus.c:249 msgid "/Edit/Stroke" msgstr "" #. /Select -#: app/menus.c:259 -msgid "/Select" -msgstr "" - -#: app/menus.c:261 +#: app/menus.c:257 msgid "/Select/Invert" msgstr "" -#: app/menus.c:263 +#: app/menus.c:259 msgid "/Select/All" msgstr "" -#: app/menus.c:265 +#: app/menus.c:261 msgid "/Select/None" msgstr "" -#: app/menus.c:267 +#: app/menus.c:263 msgid "/Select/Float" msgstr "" -#: app/menus.c:272 +#: app/menus.c:268 msgid "/Select/Feather..." msgstr "" -#: app/menus.c:274 +#: app/menus.c:270 msgid "/Select/Sharpen" msgstr "" -#: app/menus.c:276 +#: app/menus.c:272 msgid "/Select/Shrink..." msgstr "" -#: app/menus.c:278 +#: app/menus.c:274 msgid "/Select/Grow..." msgstr "" -#: app/menus.c:280 +#: app/menus.c:276 msgid "/Select/Border..." msgstr "" -#: app/menus.c:285 +#: app/menus.c:281 msgid "/Select/Save to Channel" msgstr "" #. /View -#: app/menus.c:290 -msgid "/View" -msgstr "" - -#: app/menus.c:292 +#: app/menus.c:286 msgid "/View/Zoom In" msgstr "" -#: app/menus.c:294 +#: app/menus.c:288 msgid "/View/Zoom Out" msgstr "" #. /View/Zoom -#: app/menus.c:299 -msgid "/View/Zoom" -msgstr "" - -#: app/menus.c:301 +#: app/menus.c:293 msgid "/View/Zoom/16:1" msgstr "" -#: app/menus.c:303 +#: app/menus.c:295 msgid "/View/Zoom/8:1" msgstr "" -#: app/menus.c:305 +#: app/menus.c:297 msgid "/View/Zoom/4:1" msgstr "" -#: app/menus.c:307 +#: app/menus.c:299 msgid "/View/Zoom/2:1" msgstr "" -#: app/menus.c:309 +#: app/menus.c:301 msgid "/View/Zoom/1:1" msgstr "" -#: app/menus.c:311 +#: app/menus.c:303 msgid "/View/Zoom/1:2" msgstr "" -#: app/menus.c:313 +#: app/menus.c:305 msgid "/View/Zoom/1:4" msgstr "" -#: app/menus.c:315 +#: app/menus.c:307 msgid "/View/Zoom/1:8" msgstr "" -#: app/menus.c:317 +#: app/menus.c:309 msgid "/View/Zoom/1:16" msgstr "" -#: app/menus.c:320 +#: app/menus.c:312 msgid "/View/Dot for Dot" msgstr "" -#: app/menus.c:325 +#: app/menus.c:317 msgid "/View/Info Window..." msgstr "" -#: app/menus.c:327 +#: app/menus.c:319 msgid "/View/Nav. Window..." msgstr "" -#: app/menus.c:329 -msgid "/View/Undo History..." -msgstr "" - -#: app/menus.c:334 +#: app/menus.c:324 msgid "/View/Toggle Selection" msgstr "" -#: app/menus.c:336 +#: app/menus.c:326 msgid "/View/Toggle Rulers" msgstr "" -#: app/menus.c:338 +#: app/menus.c:328 msgid "/View/Toggle Statusbar" msgstr "" -#: app/menus.c:340 +#: app/menus.c:330 msgid "/View/Toggle Guides" msgstr "" -#: app/menus.c:342 +#: app/menus.c:332 msgid "/View/Snap to Guides" msgstr "" -#: app/menus.c:347 +#: app/menus.c:337 msgid "/View/New View" msgstr "" -#: app/menus.c:349 +#: app/menus.c:339 msgid "/View/Shrink Wrap" msgstr "" -#. /Image -#: app/menus.c:357 -msgid "/Image" -msgstr "" - #. /Image/Mode -#: app/menus.c:362 -msgid "/Image/Mode" -msgstr "" - -#: app/menus.c:364 +#: app/menus.c:344 msgid "/Image/Mode/RGB" msgstr "" -#: app/menus.c:366 +#: app/menus.c:346 msgid "/Image/Mode/Grayscale" msgstr "/Image/Mode/Greyscale" -#: app/menus.c:368 +#: app/menus.c:348 msgid "/Image/Mode/Indexed..." msgstr "" #. /Image/Colors -#: app/menus.c:376 -msgid "/Image/Colors" -msgstr "/Image/Colours" - -#: app/menus.c:381 +#: app/menus.c:356 msgid "/Image/Colors/Desaturate" msgstr "/Image/Colours/Desaturate" -#: app/menus.c:383 +#: app/menus.c:358 msgid "/Image/Colors/Invert" msgstr "/Image/Colours/Invert" #. /Image/Colors/Auto -#: app/menus.c:391 -msgid "/Image/Colors/Auto" -msgstr "/Image/Colours/Auto" - -#: app/menus.c:393 +#: app/menus.c:366 msgid "/Image/Colors/Auto/Equalize" msgstr "/Image/Colours/Auto/Equalise" #. /Image/Alpha -#: app/menus.c:401 -msgid "/Image/Alpha" -msgstr "" - -#: app/menus.c:403 +#: app/menus.c:374 msgid "/Image/Alpha/Add Alpha Channel" msgstr "" #. /Image/Transforms -#: app/menus.c:408 -msgid "/Image/Transforms" -msgstr "" - -#: app/menus.c:410 +#: app/menus.c:379 msgid "/Image/Transforms/Offset..." msgstr "" -#: app/menus.c:412 +#: app/menus.c:381 msgid "/Image/Transforms/Rotate" msgstr "" -#: app/menus.c:419 +#: app/menus.c:388 msgid "/Image/Canvas Size..." msgstr "" -#: app/menus.c:421 +#: app/menus.c:390 msgid "/Image/Scale Image..." msgstr "" -#: app/menus.c:423 +#: app/menus.c:392 msgid "/Image/Duplicate" msgstr "" #. /Layers -#: app/menus.c:431 -msgid "/Layers" -msgstr "" - -#: app/menus.c:433 +#: app/menus.c:400 msgid "/Layers/Layers, Channels & Paths..." msgstr "" -#. /Layers/Stack -#: app/menus.c:438 -msgid "/Layers/Stack" +#: app/menus.c:404 +msgid "/Layers/Layer to Imagesize" msgstr "" -#: app/menus.c:440 +#. /Layers/Stack +#: app/menus.c:409 msgid "/Layers/Stack/Previous Layer" msgstr "" -#: app/menus.c:442 +#: app/menus.c:411 msgid "/Layers/Stack/Next Layer" msgstr "" -#: app/menus.c:444 +#: app/menus.c:413 msgid "/Layers/Stack/Raise Layer" msgstr "" -#: app/menus.c:446 +#: app/menus.c:415 msgid "/Layers/Stack/Lower Layer" msgstr "" -#: app/menus.c:448 +#: app/menus.c:417 msgid "/Layers/Stack/Layer to Top" msgstr "" -#: app/menus.c:450 +#: app/menus.c:419 msgid "/Layers/Stack/Layer to Bottom" msgstr "" #. /Layers/Rotate -#: app/menus.c:457 +#: app/menus.c:426 msgid "/Layers/Rotate" msgstr "" -#: app/menus.c:460 -msgid "/Layers/Layer to Imagesize" -msgstr "" - -#: app/menus.c:465 +#: app/menus.c:431 msgid "/Layers/Anchor Layer" msgstr "" -#: app/menus.c:467 +#: app/menus.c:433 msgid "/Layers/Merge Visible Layers..." msgstr "" -#: app/menus.c:469 +#: app/menus.c:435 msgid "/Layers/Flatten Image" msgstr "" -#: app/menus.c:474 +#: app/menus.c:440 msgid "/Layers/Mask to Selection" msgstr "" -#: app/menus.c:479 +#: app/menus.c:445 msgid "/Layers/Add Alpha Channel" msgstr "" -#: app/menus.c:481 +#: app/menus.c:447 msgid "/Layers/Alpha to Selection" msgstr "" #. /Tools -#: app/menus.c:489 -msgid "/Tools" -msgstr "" - -#: app/menus.c:491 +#: app/menus.c:455 msgid "/Tools/Toolbox" msgstr "" -#: app/menus.c:493 +#: app/menus.c:457 msgid "/Tools/Default Colors" msgstr "/Tools/Default Colours" -#: app/menus.c:495 +#: app/menus.c:459 msgid "/Tools/Swap Colors" msgstr "/Tools/Swap Colours" -#: app/menus.c:501 -msgid "/Tools/Select Tools" -msgstr "" - -#: app/menus.c:503 -msgid "/Tools/Transform Tools" -msgstr "" - -#: app/menus.c:505 -msgid "/Tools/Paint Tools" -msgstr "" - #. /Dialogs -#: app/menus.c:510 -msgid "/Dialogs" -msgstr "" - -#: app/menus.c:512 +#: app/menus.c:466 msgid "/Dialogs/Layers, Channels & Paths..." msgstr "" -#: app/menus.c:514 +#: app/menus.c:468 msgid "/Dialogs/Tool Options..." msgstr "" -#: app/menus.c:519 +#: app/menus.c:473 msgid "/Dialogs/Brushes..." msgstr "" -#: app/menus.c:521 +#: app/menus.c:475 msgid "/Dialogs/Patterns..." msgstr "" -#: app/menus.c:523 +#: app/menus.c:477 msgid "/Dialogs/Gradients..." msgstr "" -#: app/menus.c:525 +#: app/menus.c:479 msgid "/Dialogs/Palette..." msgstr "" -#: app/menus.c:527 +#: app/menus.c:481 msgid "/Dialogs/Indexed Palette..." msgstr "" -#: app/menus.c:532 +#: app/menus.c:486 msgid "/Dialogs/Input Devices..." msgstr "" -#: app/menus.c:534 +#: app/menus.c:488 msgid "/Dialogs/Device Status..." msgstr "" -#: app/menus.c:539 +#: app/menus.c:493 msgid "/Dialogs/Document Index..." msgstr "" -#: app/menus.c:541 +#: app/menus.c:495 msgid "/Dialogs/Error Console..." msgstr "" -#: app/menus.c:543 +#: app/menus.c:497 msgid "/Dialogs/Display Filters..." msgstr "" -#. /Filters -#: app/menus.c:551 -msgid "/Filters" +#: app/menus.c:499 +msgid "/Dialogs/Undo History..." msgstr "" -#: app/menus.c:553 +#. /Filters +#: app/menus.c:508 msgid "/Filters/Repeat Last" msgstr "" -#: app/menus.c:555 +#: app/menus.c:510 msgid "/Filters/Re-Show Last" msgstr "" -#: app/menus.c:561 +#: app/menus.c:515 msgid "/Filters/Blur" msgstr "" -#: app/menus.c:564 +#: app/menus.c:517 msgid "/Filters/Colors" msgstr "/Filters/Colours" -#: app/menus.c:569 +#: app/menus.c:519 msgid "/Filters/Noise" msgstr "" -#: app/menus.c:571 +#: app/menus.c:521 msgid "/Filters/Edge-Detect" msgstr "" -#: app/menus.c:573 +#: app/menus.c:523 msgid "/Filters/Enhance" msgstr "" -#: app/menus.c:575 +#: app/menus.c:525 msgid "/Filters/Generic" msgstr "" -#: app/menus.c:580 +#: app/menus.c:530 msgid "/Filters/Glass Effects" msgstr "" -#: app/menus.c:582 +#: app/menus.c:532 msgid "/Filters/Light Effects" msgstr "" -#: app/menus.c:584 +#: app/menus.c:534 msgid "/Filters/Distorts" msgstr "" -#: app/menus.c:586 +#: app/menus.c:536 msgid "/Filters/Artistic" msgstr "" -#: app/menus.c:588 +#: app/menus.c:538 msgid "/Filters/Map" msgstr "" -#: app/menus.c:590 +#: app/menus.c:540 msgid "/Filters/Render" msgstr "" -#: app/menus.c:592 +#: app/menus.c:542 msgid "/Filters/Web" msgstr "" -#: app/menus.c:597 +#: app/menus.c:547 msgid "/Filters/Animation" msgstr "" -#: app/menus.c:599 +#: app/menus.c:549 msgid "/Filters/Combine" msgstr "" -#: app/menus.c:604 +#: app/menus.c:554 msgid "/Filters/Toys" msgstr "" -#. /Script-Fu -#: app/menus.c:609 -msgid "/Script-Fu" -msgstr "" - -#: app/menus.c:620 +#: app/menus.c:567 msgid "/Automatic" msgstr "" -#: app/menus.c:634 +#: app/menus.c:581 msgid "/By Extension" msgstr "" -#: app/menus.c:648 +#: app/menus.c:595 msgid "/New Layer..." msgstr "" #. /Stack -#: app/menus.c:653 -msgid "/Stack" -msgstr "" - -#: app/menus.c:655 +#: app/menus.c:600 msgid "/Stack/Raise Layer" msgstr "" -#: app/menus.c:657 +#: app/menus.c:602 msgid "/Stack/Lower Layer" msgstr "" -#: app/menus.c:659 +#: app/menus.c:604 msgid "/Stack/Layer to Top" msgstr "" -#: app/menus.c:661 +#: app/menus.c:606 msgid "/Stack/Layer to Bottom" msgstr "" -#: app/menus.c:664 +#: app/menus.c:609 msgid "/Duplicate Layer" msgstr "" -#: app/menus.c:666 +#: app/menus.c:611 msgid "/Anchor Layer" msgstr "" -#: app/menus.c:668 +#: app/menus.c:613 msgid "/Delete Layer" msgstr "" -#: app/menus.c:673 +#: app/menus.c:618 msgid "/Layer Boundary Size..." msgstr "" -#: app/menus.c:675 +#: app/menus.c:620 msgid "/Layer to Imagesize" msgstr "" -#: app/menus.c:677 +#: app/menus.c:622 msgid "/Scale Layer..." msgstr "" -#: app/menus.c:682 +#: app/menus.c:627 msgid "/Merge Visible Layers..." msgstr "" -#: app/menus.c:684 +#: app/menus.c:629 msgid "/Merge Down" msgstr "" -#: app/menus.c:686 +#: app/menus.c:631 msgid "/Flatten Image" msgstr "" -#: app/menus.c:691 +#: app/menus.c:636 msgid "/Add Layer Mask..." msgstr "" -#: app/menus.c:693 +#: app/menus.c:638 msgid "/Apply Layer Mask" msgstr "" -#: app/menus.c:695 +#: app/menus.c:640 msgid "/Delete Layer Mask" msgstr "" -#: app/menus.c:697 +#: app/menus.c:642 msgid "/Mask to Selection" msgstr "" -#: app/menus.c:702 +#: app/menus.c:647 msgid "/Add Alpha Channel" msgstr "" -#: app/menus.c:704 +#: app/menus.c:649 msgid "/Alpha to Selection" msgstr "" -#: app/menus.c:709 +#: app/menus.c:654 msgid "/Edit Layer Attributes..." msgstr "" -#: app/menus.c:720 +#: app/menus.c:665 msgid "/New Channel..." msgstr "" -#: app/menus.c:722 +#: app/menus.c:667 msgid "/Raise Channel" msgstr "" -#: app/menus.c:724 +#: app/menus.c:669 msgid "/Lower Channel" msgstr "" -#: app/menus.c:726 +#: app/menus.c:671 msgid "/Duplicate Channel" msgstr "" -#: app/menus.c:731 +#: app/menus.c:676 msgid "/Channel to Selection" msgstr "" -#: app/menus.c:733 +#: app/menus.c:678 msgid "/Add to Selection" msgstr "" -#: app/menus.c:735 +#: app/menus.c:680 msgid "/Subtract from Selection" msgstr "" -#: app/menus.c:737 +#: app/menus.c:682 msgid "/Intersect with Selection" msgstr "" -#: app/menus.c:742 +#: app/menus.c:687 msgid "/Delete Channel" msgstr "" -#: app/menus.c:747 +#: app/menus.c:692 msgid "/Edit Channel Attributes..." msgstr "" -#: app/menus.c:758 +#: app/menus.c:703 msgid "/New Path" msgstr "" -#: app/menus.c:760 +#: app/menus.c:705 msgid "/Duplicate Path" msgstr "" -#: app/menus.c:762 +#: app/menus.c:707 msgid "/Path to Selection" msgstr "" -#: app/menus.c:764 +#: app/menus.c:709 msgid "/Selection to Path" msgstr "" -#: app/menus.c:766 +#: app/menus.c:711 msgid "/Stroke Path" msgstr "" -#: app/menus.c:768 +#: app/menus.c:713 msgid "/Delete Path" msgstr "" -#: app/menus.c:773 +#: app/menus.c:718 msgid "/Copy Path" msgstr "" -#: app/menus.c:775 +#: app/menus.c:720 msgid "/Paste Path" msgstr "" -#: app/menus.c:777 +#: app/menus.c:722 msgid "/Import Path..." msgstr "" -#: app/menus.c:779 +#: app/menus.c:724 msgid "/Export Path..." msgstr "" -#: app/menus.c:784 +#: app/menus.c:729 msgid "/Edit Path Attributes..." msgstr "" -#: app/menus.c:1310 +#: app/menus.c:1260 #, c-format msgid "Error opening file: %s\n" msgstr "" @@ -4043,7 +4040,7 @@ msgstr "" msgid "Autoload during startup" msgstr "" -#: app/move.c:456 +#: app/move.c:458 msgid "Move Tool" msgstr "" @@ -4057,7 +4054,7 @@ msgstr "" msgid "Navigation: No Image" msgstr "" -#: app/paint_core.c:717 +#: app/paint_core.c:735 msgid "No brushes available for use with this tool." msgstr "" @@ -4475,477 +4472,470 @@ msgstr "" msgid "You will need to restart GIMP for these changes to take effect." msgstr "" -#: app/preferences_dialog.c:1459 +#: app/preferences_dialog.c:1002 +#, c-format +msgid "The default comments is limited to %d characters." +msgstr "" + +#: app/preferences_dialog.c:1424 msgid "Preferences" msgstr "" #. The categories tree -#: app/preferences_dialog.c:1481 +#: app/preferences_dialog.c:1446 msgid "Categories" msgstr "" -#: app/preferences_dialog.c:1509 app/preferences_dialog.c:1511 +#: app/preferences_dialog.c:1474 app/preferences_dialog.c:1476 msgid "New File" msgstr "" -#: app/preferences_dialog.c:1522 +#: app/preferences_dialog.c:1487 msgid "Default Image Size and Unit" msgstr "" -#: app/preferences_dialog.c:1536 +#: app/preferences_dialog.c:1501 msgid "Width" msgstr "" -#: app/preferences_dialog.c:1538 +#: app/preferences_dialog.c:1503 msgid "Height" msgstr "" -#: app/preferences_dialog.c:1568 +#: app/preferences_dialog.c:1533 msgid "Default Image Resolution and Resolution Unit" msgstr "" -#: app/preferences_dialog.c:1595 app/preferences_dialog.c:2359 +#: app/preferences_dialog.c:1560 app/preferences_dialog.c:2288 msgid "dpi" msgstr "" -#: app/preferences_dialog.c:1642 +#: app/preferences_dialog.c:1607 msgid "Default Image Type:" msgstr "" -#: app/preferences_dialog.c:1678 app/preferences_dialog.c:2166 -msgid "Bytes" -msgstr "" - -#: app/preferences_dialog.c:1679 app/preferences_dialog.c:2167 -msgid "KiloBytes" -msgstr "" - -#: app/preferences_dialog.c:1680 app/preferences_dialog.c:2168 -msgid "MegaBytes" -msgstr "" - -#: app/preferences_dialog.c:1686 +#: app/preferences_dialog.c:1618 msgid "Maximum Image Size:" msgstr "" -#: app/preferences_dialog.c:1692 app/preferences_dialog.c:1694 +#: app/preferences_dialog.c:1623 app/preferences_dialog.c:1625 +msgid "Default Comment" +msgstr "" + +#: app/preferences_dialog.c:1633 +msgid "Comment Used for New Images" +msgstr "" + +#: app/preferences_dialog.c:1653 app/preferences_dialog.c:1655 msgid "Display" msgstr "" -#: app/preferences_dialog.c:1702 +#: app/preferences_dialog.c:1663 msgid "Transparency" msgstr "" -#: app/preferences_dialog.c:1721 +#: app/preferences_dialog.c:1682 msgid "Light Checks" msgstr "" -#: app/preferences_dialog.c:1722 +#: app/preferences_dialog.c:1683 msgid "Mid-Tone Checks" msgstr "" -#: app/preferences_dialog.c:1723 +#: app/preferences_dialog.c:1684 msgid "Dark Checks" msgstr "" -#: app/preferences_dialog.c:1724 +#: app/preferences_dialog.c:1685 msgid "White Only" msgstr "" -#: app/preferences_dialog.c:1725 +#: app/preferences_dialog.c:1686 msgid "Gray Only" msgstr "Grey Only" -#: app/preferences_dialog.c:1726 +#: app/preferences_dialog.c:1687 msgid "Black Only" msgstr "" -#: app/preferences_dialog.c:1730 +#: app/preferences_dialog.c:1691 msgid "Transparency Type:" msgstr "" -#: app/preferences_dialog.c:1737 app/preferences_dialog.c:1810 -#: app/preferences_dialog.c:1824 +#: app/preferences_dialog.c:1698 app/preferences_dialog.c:1771 +#: app/preferences_dialog.c:1785 msgid "Small" msgstr "" -#: app/preferences_dialog.c:1738 app/preferences_dialog.c:1811 -#: app/preferences_dialog.c:1825 +#: app/preferences_dialog.c:1699 app/preferences_dialog.c:1772 +#: app/preferences_dialog.c:1786 msgid "Medium" msgstr "" -#: app/preferences_dialog.c:1739 app/preferences_dialog.c:1812 -#: app/preferences_dialog.c:1826 +#: app/preferences_dialog.c:1700 app/preferences_dialog.c:1773 +#: app/preferences_dialog.c:1787 msgid "Large" msgstr "" -#: app/preferences_dialog.c:1743 +#: app/preferences_dialog.c:1704 msgid "Check Size:" msgstr "" -#: app/preferences_dialog.c:1746 +#: app/preferences_dialog.c:1707 msgid "8-Bit Displays" msgstr "" -#: app/preferences_dialog.c:1751 +#: app/preferences_dialog.c:1712 msgid "Install Colormap" msgstr "Install Colourmap" -#: app/preferences_dialog.c:1760 +#: app/preferences_dialog.c:1721 msgid "Colormap Cycling" msgstr "Colourmap Cycling" -#: app/preferences_dialog.c:1809 +#: app/preferences_dialog.c:1770 msgid "Tiny" msgstr "" -#: app/preferences_dialog.c:1813 +#: app/preferences_dialog.c:1774 msgid "Huge" msgstr "" -#: app/preferences_dialog.c:1817 +#: app/preferences_dialog.c:1778 msgid "Preview Size:" msgstr "" -#: app/preferences_dialog.c:1830 +#: app/preferences_dialog.c:1791 msgid "Nav Preview Size:" msgstr "" -#: app/preferences_dialog.c:1840 +#: app/preferences_dialog.c:1801 msgid "Recent Documents List Size:" msgstr "" #. Indicators -#: app/preferences_dialog.c:1844 +#: app/preferences_dialog.c:1805 msgid "Toolbox" msgstr "" -#: app/preferences_dialog.c:1847 +#: app/preferences_dialog.c:1808 msgid "Display Brush, Pattern and Gradient Indicators" msgstr "" -#: app/preferences_dialog.c:1856 +#: app/preferences_dialog.c:1817 msgid "Dialog Behaviour" msgstr "" -#: app/preferences_dialog.c:1858 +#: app/preferences_dialog.c:1819 msgid "Navigation Window per Display" msgstr "" -#: app/preferences_dialog.c:1867 +#: app/preferences_dialog.c:1828 msgid "Info Window Follows Mouse" msgstr "" -#: app/preferences_dialog.c:1878 app/preferences_dialog.c:1880 +#: app/preferences_dialog.c:1839 app/preferences_dialog.c:1841 msgid "Help System" msgstr "" -#: app/preferences_dialog.c:1890 +#: app/preferences_dialog.c:1851 msgid "Show Tool Tips" msgstr "" -#: app/preferences_dialog.c:1900 +#: app/preferences_dialog.c:1861 msgid "Context Sensitive Help with \"F1\"" msgstr "" -#: app/preferences_dialog.c:1909 +#: app/preferences_dialog.c:1870 msgid "Help Browser" msgstr "" -#: app/preferences_dialog.c:1921 +#: app/preferences_dialog.c:1882 msgid "Internal" msgstr "" -#: app/preferences_dialog.c:1922 +#: app/preferences_dialog.c:1883 msgid "Netscape" msgstr "" -#: app/preferences_dialog.c:1926 +#: app/preferences_dialog.c:1887 msgid "Help Browser to Use:" msgstr "" -#: app/preferences_dialog.c:1931 app/preferences_dialog.c:1933 +#: app/preferences_dialog.c:1892 app/preferences_dialog.c:1894 msgid "Image Windows" msgstr "" -#: app/preferences_dialog.c:1941 +#: app/preferences_dialog.c:1902 msgid "Appearance" msgstr "" -#: app/preferences_dialog.c:1943 +#: app/preferences_dialog.c:1904 msgid "Use \"Dot for Dot\" by default" msgstr "" -#: app/preferences_dialog.c:1952 +#: app/preferences_dialog.c:1913 msgid "Resize Window on Zoom" msgstr "" -#: app/preferences_dialog.c:1961 +#: app/preferences_dialog.c:1922 msgid "Show Rulers" msgstr "" -#: app/preferences_dialog.c:1970 +#: app/preferences_dialog.c:1931 msgid "Show Statusbar" msgstr "" -#: app/preferences_dialog.c:1994 +#: app/preferences_dialog.c:1955 msgid "Marching Ants Speed:" msgstr "" #. Set the currently used string as "Custom" -#: app/preferences_dialog.c:2002 +#: app/preferences_dialog.c:1963 msgid "Custom" msgstr "" #. set some commonly used format strings -#: app/preferences_dialog.c:2008 +#: app/preferences_dialog.c:1969 msgid "Standard" msgstr "" -#: app/preferences_dialog.c:2013 +#: app/preferences_dialog.c:1974 msgid "Show zoom percentage" msgstr "" -#: app/preferences_dialog.c:2018 +#: app/preferences_dialog.c:1979 msgid "Show zoom ratio" msgstr "" -#: app/preferences_dialog.c:2023 +#: app/preferences_dialog.c:1984 msgid "Show reversed zoom ratio" msgstr "" -#: app/preferences_dialog.c:2034 +#: app/preferences_dialog.c:1995 msgid "Image Title Format:" msgstr "" #. End of the title format string -#: app/preferences_dialog.c:2038 +#: app/preferences_dialog.c:1999 msgid "Pointer Movement Feedback" msgstr "" -#: app/preferences_dialog.c:2041 +#: app/preferences_dialog.c:2002 msgid "Perfect-but-Slow Pointer Tracking" msgstr "" -#: app/preferences_dialog.c:2050 +#: app/preferences_dialog.c:2011 msgid "Disable Cursor Updating" msgstr "" -#: app/preferences_dialog.c:2062 app/preferences_dialog.c:2064 +#: app/preferences_dialog.c:2023 app/preferences_dialog.c:2025 #: app/tools.c:1080 msgid "Tool Options" msgstr "" -#: app/preferences_dialog.c:2072 +#: app/preferences_dialog.c:2033 msgid "Paint Options" msgstr "" -#: app/preferences_dialog.c:2075 +#: app/preferences_dialog.c:2036 msgid "Use Global Paint Options" msgstr "" -#: app/preferences_dialog.c:2090 app/preferences_dialog.c:2092 +#: app/preferences_dialog.c:2051 app/preferences_dialog.c:2053 msgid "Environment" msgstr "" -#: app/preferences_dialog.c:2100 +#: app/preferences_dialog.c:2061 msgid "Resource Consumption" msgstr "" -#: app/preferences_dialog.c:2102 +#: app/preferences_dialog.c:2063 msgid "Conservative Memory Usage" msgstr "" -#: app/preferences_dialog.c:2130 +#: app/preferences_dialog.c:2091 msgid "Levels of Undo:" msgstr "" -#: app/preferences_dialog.c:2174 -msgid "Tile Cache Size:" -msgstr "" - -#: app/preferences_dialog.c:2185 +#: app/preferences_dialog.c:2113 msgid "Number of Processors to Use:" msgstr "" -#: app/preferences_dialog.c:2189 app/transform_tool.c:215 +#: app/preferences_dialog.c:2117 app/transform_tool.c:215 msgid "Scaling" msgstr "" -#: app/preferences_dialog.c:2207 +#: app/preferences_dialog.c:2135 msgid "Nearest Neighbor (Fast)" msgstr "" -#: app/preferences_dialog.c:2211 +#: app/preferences_dialog.c:2139 msgid "Cubic (Slow)" msgstr "" -#: app/preferences_dialog.c:2216 +#: app/preferences_dialog.c:2144 msgid "Interpolation Type:" msgstr "" -#: app/preferences_dialog.c:2219 +#: app/preferences_dialog.c:2147 msgid "File Saving" msgstr "" -#: app/preferences_dialog.c:2236 app/preferences_dialog.c:2249 +#: app/preferences_dialog.c:2164 app/preferences_dialog.c:2177 msgid "Always" msgstr "" -#: app/preferences_dialog.c:2237 +#: app/preferences_dialog.c:2165 msgid "Never" msgstr "" -#: app/preferences_dialog.c:2241 +#: app/preferences_dialog.c:2169 msgid "Try to Write a Thumbnail File:" msgstr "" -#: app/preferences_dialog.c:2248 +#: app/preferences_dialog.c:2176 msgid "Only when Modified" msgstr "" -#: app/preferences_dialog.c:2253 +#: app/preferences_dialog.c:2181 msgid "\"File > Save\" Saves the Image:" msgstr "" -#: app/preferences_dialog.c:2259 +#: app/preferences_dialog.c:2187 msgid "Session Management" msgstr "" -#: app/preferences_dialog.c:2261 +#: app/preferences_dialog.c:2189 msgid "Session" msgstr "" -#: app/preferences_dialog.c:2269 +#: app/preferences_dialog.c:2197 msgid "Window Positions" msgstr "" -#: app/preferences_dialog.c:2271 +#: app/preferences_dialog.c:2199 msgid "Save Window Positions on Exit" msgstr "" -#: app/preferences_dialog.c:2285 +#: app/preferences_dialog.c:2213 msgid "Clear Saved Window Positions Now" msgstr "" -#: app/preferences_dialog.c:2293 +#: app/preferences_dialog.c:2221 msgid "Always Try to Restore Session" msgstr "" -#: app/preferences_dialog.c:2302 +#: app/preferences_dialog.c:2230 msgid "Devices" msgstr "" -#: app/preferences_dialog.c:2304 +#: app/preferences_dialog.c:2232 msgid "Save Device Status on Exit" msgstr "" -#: app/preferences_dialog.c:2315 app/preferences_dialog.c:2317 +#: app/preferences_dialog.c:2243 app/preferences_dialog.c:2245 msgid "Monitor" msgstr "" -#: app/preferences_dialog.c:2325 +#: app/preferences_dialog.c:2253 msgid "Get Monitor Resolution" msgstr "" -#: app/preferences_dialog.c:2333 +#: app/preferences_dialog.c:2261 #, c-format msgid "(Currently %d x %d dpi)" msgstr "" -#: app/preferences_dialog.c:2384 +#: app/preferences_dialog.c:2313 msgid "From X Server" msgstr "" -#: app/preferences_dialog.c:2399 +#: app/preferences_dialog.c:2328 msgid "Manually:" msgstr "" -#: app/preferences_dialog.c:2412 app/preferences_dialog.c:2414 +#: app/preferences_dialog.c:2341 app/preferences_dialog.c:2343 msgid "Directories" msgstr "" -#: app/preferences_dialog.c:2431 +#: app/preferences_dialog.c:2360 msgid "Temp Dir:" msgstr "" -#: app/preferences_dialog.c:2431 +#: app/preferences_dialog.c:2360 msgid "Select Temp Dir" msgstr "" -#: app/preferences_dialog.c:2432 +#: app/preferences_dialog.c:2361 msgid "Swap Dir:" msgstr "" -#: app/preferences_dialog.c:2432 -msgid "Select Swap Dir" -msgstr "" - -#: app/preferences_dialog.c:2468 +#: app/preferences_dialog.c:2397 msgid "Brushes Directories" msgstr "" -#: app/preferences_dialog.c:2470 +#: app/preferences_dialog.c:2399 msgid "Select Brushes Dir" msgstr "" -#: app/preferences_dialog.c:2472 +#: app/preferences_dialog.c:2401 msgid "Generated Brushes" msgstr "" -#: app/preferences_dialog.c:2472 +#: app/preferences_dialog.c:2401 msgid "Generated Brushes Directories" msgstr "" -#: app/preferences_dialog.c:2474 +#: app/preferences_dialog.c:2403 msgid "Select Generated Brushes Dir" msgstr "" -#: app/preferences_dialog.c:2476 +#: app/preferences_dialog.c:2405 msgid "Patterns Directories" msgstr "" -#: app/preferences_dialog.c:2478 +#: app/preferences_dialog.c:2407 msgid "Select Patterns Dir" msgstr "" -#: app/preferences_dialog.c:2480 +#: app/preferences_dialog.c:2409 msgid "Palettes Directories" msgstr "" -#: app/preferences_dialog.c:2482 +#: app/preferences_dialog.c:2411 msgid "Select Palettes Dir" msgstr "" -#: app/preferences_dialog.c:2484 +#: app/preferences_dialog.c:2413 msgid "Gradients Directories" msgstr "" -#: app/preferences_dialog.c:2486 +#: app/preferences_dialog.c:2415 msgid "Select Gradients Dir" msgstr "" -#: app/preferences_dialog.c:2488 +#: app/preferences_dialog.c:2417 msgid "Plug-Ins" msgstr "" -#: app/preferences_dialog.c:2488 +#: app/preferences_dialog.c:2417 msgid "Plug-Ins Directories" msgstr "" -#: app/preferences_dialog.c:2490 +#: app/preferences_dialog.c:2419 msgid "Select Plug-Ins Dir" msgstr "" -#: app/preferences_dialog.c:2492 +#: app/preferences_dialog.c:2421 msgid "Modules" msgstr "" -#: app/preferences_dialog.c:2492 +#: app/preferences_dialog.c:2421 msgid "Modules Directories" msgstr "" -#: app/preferences_dialog.c:2494 +#: app/preferences_dialog.c:2423 msgid "Select Modules Dir" msgstr "" @@ -5015,66 +5005,66 @@ msgstr "" msgid "Selection: " msgstr "" -#: app/resize.c:154 +#: app/resize.c:156 msgid "Scale Layer" msgstr "" -#: app/resize.c:156 app/resize.c:181 app/tool_options.c:774 +#: app/resize.c:158 app/resize.c:183 app/tool_options.c:774 msgid "Size" msgstr "" -#: app/resize.c:160 +#: app/resize.c:162 msgid "Scale Image" msgstr "" -#: app/resize.c:162 +#: app/resize.c:164 msgid "Pixel Dimensions" msgstr "" -#: app/resize.c:172 +#: app/resize.c:174 msgid "Set Layer Boundary Size" msgstr "" -#: app/resize.c:177 +#: app/resize.c:179 msgid "Set Canvas Size" msgstr "" #. the original width & height labels -#: app/resize.c:234 app/scale_tool.c:77 +#: app/resize.c:236 app/scale_tool.c:77 msgid "Original Width:" msgstr "" #. the new size labels -#: app/resize.c:259 app/resize.c:504 +#: app/resize.c:261 app/resize.c:506 msgid "New Width:" msgstr "" #. the scale ratio labels -#: app/resize.c:324 +#: app/resize.c:326 msgid "Ratio X:" msgstr "" #. the x and y offset labels -#: app/resize.c:409 +#: app/resize.c:411 msgid "X:" msgstr "" -#: app/resize.c:490 +#: app/resize.c:492 msgid "Print Size & Display Unit" msgstr "" -#: app/resize.c:1252 +#: app/resize.c:1254 msgid "Scale Error: Both width and height must be greater than zero." msgstr "" -#: app/resize.c:1334 +#: app/resize.c:1336 msgid "" "The chosen image size will shrink\n" "some layers completely away.\n" "Is this what you want?" msgstr "" -#: app/resize.c:1338 +#: app/resize.c:1340 msgid "Layer Too Small" msgstr "" @@ -5123,7 +5113,7 @@ msgstr "" msgid "Text Tool" msgstr "" -#: app/text_tool.c:162 app/tool_options.c:233 +#: app/text_tool.c:162 app/tool_options.c:232 msgid "Antialiasing" msgstr "" @@ -5195,99 +5185,99 @@ msgid "" "GIMP data directory. Please check your installation." msgstr "" -#: app/tool_options.c:122 +#: app/tool_options.c:121 msgid "This tool has no options." msgstr "" -#: app/tool_options.c:146 +#: app/tool_options.c:145 msgid "Rectangular Selection" msgstr "" -#: app/tool_options.c:148 +#: app/tool_options.c:147 msgid "Elliptical Selection" msgstr "" -#: app/tool_options.c:150 +#: app/tool_options.c:149 msgid "Free-Hand Selection" msgstr "" -#: app/tool_options.c:152 +#: app/tool_options.c:151 msgid "Fuzzy Selection" msgstr "" -#: app/tool_options.c:154 +#: app/tool_options.c:153 msgid "Bezier Selection" msgstr "" -#: app/tool_options.c:156 app/tools.c:178 +#: app/tool_options.c:155 app/tools.c:178 msgid "Intelligent Scissors" msgstr "" -#: app/tool_options.c:158 +#: app/tool_options.c:157 msgid "By-Color Selection" msgstr "By-Colour Selection" -#: app/tool_options.c:189 +#: app/tool_options.c:188 msgid "Feather" msgstr "" -#: app/tool_options.c:297 +#: app/tool_options.c:296 msgid "Fixed Size / Aspect Ratio" msgstr "" -#: app/tool_options.c:363 +#: app/tool_options.c:362 msgid "Unit:" msgstr "" -#: app/tool_options.c:448 app/tools.c:376 +#: app/tool_options.c:447 app/tools.c:376 msgid "Bucket Fill" msgstr "" -#: app/tool_options.c:450 +#: app/tool_options.c:449 msgid "Blend Tool" msgstr "" -#: app/tool_options.c:452 app/tools.c:412 +#: app/tool_options.c:451 app/tools.c:412 msgid "Pencil" msgstr "" -#: app/tool_options.c:454 app/tools.c:430 +#: app/tool_options.c:453 app/tools.c:430 msgid "Paintbrush" msgstr "" -#: app/tool_options.c:456 app/tools.c:448 +#: app/tool_options.c:455 app/tools.c:448 msgid "Eraser" msgstr "" -#: app/tool_options.c:458 app/tools.c:466 +#: app/tool_options.c:457 app/tools.c:466 msgid "Airbrush" msgstr "" -#: app/tool_options.c:460 +#: app/tool_options.c:459 msgid "Clone Tool" msgstr "" -#: app/tool_options.c:462 +#: app/tool_options.c:461 msgid "Convolver" msgstr "" -#: app/tool_options.c:464 +#: app/tool_options.c:463 msgid "Ink Tool" msgstr "" -#: app/tool_options.c:466 app/tools.c:538 app/tools.c:544 +#: app/tool_options.c:465 app/tools.c:538 app/tools.c:544 msgid "Dodge or Burn" msgstr "" -#: app/tool_options.c:468 +#: app/tool_options.c:467 msgid "Smudge Tool" msgstr "" -#: app/tool_options.c:583 +#: app/tool_options.c:582 msgid "Incremental" msgstr "" -#: app/tool_options.c:689 +#: app/tool_options.c:688 msgid "Pressure Sensitivity" msgstr "" @@ -5964,6 +5954,12 @@ msgstr "Watercolour" msgid "Color History" msgstr "Colour History" +#~ msgid "/Image/Colors" +#~ msgstr "/Image/Colours" + +#~ msgid "/Image/Colors/Auto" +#~ msgstr "/Image/Colours/Auto" + #~ msgid "/Filters/Colors/Map" #~ msgstr "/Filters/Colours/Map" diff --git a/po/fi.po b/po/fi.po index f457544024..3e9f9a24cd 100644 --- a/po/fi.po +++ b/po/fi.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: GIMP 1.1\n" -"POT-Creation-Date: 2000-03-03 17:47-0800\n" +"POT-Creation-Date: 2000-03-14 23:09+0100\n" "PO-Revision-Date: 2000-02-11 23:15+0200\n" "Last-Translator: Tor Lillqvist \n" "Language-Team: fi \n" @@ -62,45 +62,45 @@ msgstr "tekij msgid "GIMP Startup" msgstr "GIMP kДynnistyy" -#: app/app_procs.c:479 app/gimprc.c:432 +#: app/app_procs.c:479 app/gimprc.c:448 #, c-format msgid "parsing \"%s\"\n" msgstr "luen tiedostoa \"%s\"\n" #. initialize the xcf file format routines -#: app/app_procs.c:539 +#: app/app_procs.c:541 msgid "Looking for data files" msgstr "Etsin datatiedostoja" -#: app/app_procs.c:539 +#: app/app_procs.c:541 msgid "Parasites" msgstr "Loiset" #. initialize the global parasite table -#: app/app_procs.c:541 app/internal_procs.c:71 app/preferences_dialog.c:2468 +#: app/app_procs.c:543 app/internal_procs.c:71 app/preferences_dialog.c:2397 msgid "Brushes" msgstr "Siveltimet" #. initialize the list of gimp brushes -#: app/app_procs.c:543 app/internal_procs.c:143 app/preferences_dialog.c:2476 +#: app/app_procs.c:545 app/internal_procs.c:143 app/preferences_dialog.c:2405 msgid "Patterns" msgstr "Kuviot" #. initialize the list of gimp patterns -#: app/app_procs.c:545 app/preferences_dialog.c:2480 +#: app/app_procs.c:547 app/preferences_dialog.c:2409 msgid "Palettes" msgstr "Paletit" #. initialize the list of gimp palettes -#: app/app_procs.c:547 app/internal_procs.c:113 app/preferences_dialog.c:2484 +#: app/app_procs.c:549 app/internal_procs.c:113 app/preferences_dialog.c:2413 msgid "Gradients" msgstr "VДriliukumat" -#: app/app_procs.c:735 +#: app/app_procs.c:737 msgid "Really Quit?" msgstr "Haluatko todella poistua?" -#: app/app_procs.c:739 +#: app/app_procs.c:741 msgid "" "Some files unsaved.\n" "\n" @@ -110,21 +110,21 @@ msgstr "" "\n" "Poistu silti GIMPistД?" -#: app/app_procs.c:740 app/install.c:272 app/install.c:430 +#: app/app_procs.c:742 msgid "Quit" msgstr "Poistu" -#: app/app_procs.c:740 app/brightness_contrast.c:218 app/channel_ops.c:93 +#: app/app_procs.c:742 app/brightness_contrast.c:218 app/channel_ops.c:93 #: app/channels_dialog.c:2463 app/channels_dialog.c:2637 #: app/color_balance.c:275 app/color_notebook.c:125 app/convert.c:506 #: app/curves.c:559 app/file_new_dialog.c:207 app/file_new_dialog.c:357 #: app/gdisplay_color_ui.c:129 app/gdisplay_ops.c:346 app/gimpprogress.c:112 -#: app/global_edit.c:739 app/gradient.c:1769 app/gradient.c:4839 -#: app/gradient.c:5400 app/hue_saturation.c:377 app/interface.c:984 -#: app/layers_dialog.c:3326 app/layers_dialog.c:3517 app/layers_dialog.c:3617 -#: app/layers_dialog.c:3889 app/levels.c:341 app/palette.c:1826 -#: app/posterize.c:201 app/preferences_dialog.c:1469 app/qmask.c:281 -#: app/resize.c:193 app/resize.c:1343 app/threshold.c:275 +#: app/global_edit.c:739 app/gradient.c:1769 app/gradient.c:4841 +#: app/gradient.c:5402 app/hue_saturation.c:377 app/install.c:532 +#: app/interface.c:984 app/layers_dialog.c:3326 app/layers_dialog.c:3517 +#: app/layers_dialog.c:3617 app/layers_dialog.c:3889 app/levels.c:341 +#: app/palette.c:1826 app/posterize.c:201 app/preferences_dialog.c:1434 +#: app/qmask.c:281 app/resize.c:195 app/resize.c:1345 app/threshold.c:275 #: modules/cdisplay_gamma.c:358 msgid "Cancel" msgstr "Peru" @@ -145,123 +145,124 @@ msgstr "Polku ei ole suljettu!" msgid "Paintbrush operation failed." msgstr "Sivellintoiminto epДonnistui." -#: app/blend.c:272 +#: app/blend.c:294 msgid "Offset:" msgstr "SiirtymД:" -#: app/blend.c:283 +#: app/blend.c:305 msgid "FG to BG (RGB)" msgstr "EdustavДristД taustavДriin (RGB)" -#: app/blend.c:284 +#: app/blend.c:306 msgid "FG to BG (HSV)" msgstr "EdustavДristД taustavДriin (HSV)" -#: app/blend.c:285 +#: app/blend.c:307 msgid "FG to Transparent" msgstr "EdustavДristД lДpinДkyvДДn" -#: app/blend.c:286 -msgid "Custom from Editor" -msgstr "RДДrДlЖity muokkaimesta" +#: app/blend.c:308 +#, fuzzy +msgid "Custom Gradient" +msgstr "Kopioi vДriliukuma" -#: app/blend.c:290 +#: app/blend.c:312 msgid "Blend:" msgstr "Sekoita:" -#: app/blend.c:298 app/gradient.c:533 app/preferences_dialog.c:2209 +#: app/blend.c:320 app/gradient.c:533 app/preferences_dialog.c:2137 msgid "Linear" msgstr "lineaarinen" -#: app/blend.c:299 +#: app/blend.c:321 msgid "Bi-Linear" msgstr "bilineaarinen" -#: app/blend.c:300 +#: app/blend.c:322 msgid "Radial" msgstr "sДteitteinen" -#: app/blend.c:301 +#: app/blend.c:323 msgid "Square" msgstr "neliЖmДinen" -#: app/blend.c:302 +#: app/blend.c:324 msgid "Conical (symmetric)" msgstr "kartiomainen (symmetrinen)" -#: app/blend.c:303 +#: app/blend.c:325 msgid "Conical (asymmetric)" msgstr "kartoimainen (epДsymmetrinen)" -#: app/blend.c:304 +#: app/blend.c:326 msgid "Shapeburst (angular)" msgstr "muotopurske (kulma)" -#: app/blend.c:305 +#: app/blend.c:327 msgid "Shapeburst (spherical)" msgstr "muotopurske (pallo)" -#: app/blend.c:306 +#: app/blend.c:328 msgid "Shapeburst (dimpled)" msgstr "muotopurske (nДppylДinen)" -#: app/blend.c:307 +#: app/blend.c:329 msgid "Spiral (clockwise)" msgstr "spiraali (myЖtДpДivДДn)" -#: app/blend.c:308 +#: app/blend.c:330 msgid "Spiral (anticlockwise)" msgstr "spiraali (vastapДivДДn)" -#: app/blend.c:312 +#: app/blend.c:334 msgid "Gradient:" msgstr "VДrilukuma:" -#: app/blend.c:320 app/preferences_dialog.c:1808 +#: app/blend.c:342 app/preferences_dialog.c:1769 msgid "None" msgstr "ei mikДДn" -#: app/blend.c:321 +#: app/blend.c:343 msgid "Sawtooth Wave" msgstr "sahalaita-aalto" -#: app/blend.c:322 +#: app/blend.c:344 msgid "Triangular Wave" msgstr "kolmioaalto" -#: app/blend.c:326 +#: app/blend.c:348 msgid "Repeat:" msgstr "Toista:" -#: app/blend.c:345 +#: app/blend.c:367 msgid "Adaptive Supersampling" msgstr "Adaptiivinen ylinДytteistys" -#: app/blend.c:373 +#: app/blend.c:395 msgid "Max Depth:" msgstr "EnimmДissyvyys:" -#: app/blend.c:386 app/bucket_fill.c:127 app/fuzzy_select.c:657 +#: app/blend.c:408 app/bucket_fill.c:127 app/fuzzy_select.c:661 msgid "Threshold:" msgstr "Raja:" -#: app/blend.c:413 +#: app/blend.c:435 msgid "Blend: Invalid for indexed images." msgstr "Sekoittaminen ei sallittu indeksoiduille kuville." -#: app/blend.c:438 +#: app/blend.c:460 msgid "Blend: 0, 0" msgstr "Sekoita: 0, 0" -#: app/blend.c:501 +#: app/blend.c:523 msgid "Blend operation failed." msgstr "Sekoitustoiminto epДonnistui." -#: app/blend.c:507 +#: app/blend.c:529 msgid "Blending..." msgstr "Sekoitan..." -#: app/blend.c:585 app/blend.c:595 +#: app/blend.c:607 app/blend.c:617 msgid "Blend: " msgstr "Sekoita: " @@ -280,13 +281,13 @@ msgstr "Kirkkaus- ja kontrastis #: app/gdisplay_color_ui.c:127 app/gimpui.c:122 app/hue_saturation.c:373 #: app/layers_dialog.c:3324 app/layers_dialog.c:3515 app/layers_dialog.c:3615 #: app/layers_dialog.c:3887 app/levels.c:337 app/module_db.c:281 -#: app/posterize.c:197 app/preferences_dialog.c:1465 app/qmask.c:279 -#: app/resize.c:191 app/resize.c:1343 app/threshold.c:271 +#: app/posterize.c:197 app/preferences_dialog.c:1430 app/qmask.c:279 +#: app/resize.c:193 app/resize.c:1345 app/threshold.c:271 #: modules/cdisplay_gamma.c:351 msgid "OK" msgstr "" -#: app/brightness_contrast.c:216 app/by_color_select.c:634 +#: app/brightness_contrast.c:216 app/by_color_select.c:687 #: app/color_balance.c:273 app/curves.c:557 app/file_new_dialog.c:355 #: app/hue_saturation.c:375 app/levels.c:339 app/posterize.c:199 #: app/threshold.c:273 app/tools.c:1086 app/transform_core.c:412 @@ -316,7 +317,7 @@ msgid "Brush Editor" msgstr "Sivellinmuokkain" #. The close button -#: app/brush_edit.c:216 app/brush_select.c:278 app/by_color_select.c:636 +#: app/brush_edit.c:216 app/brush_select.c:278 app/by_color_select.c:689 #: app/color_notebook.c:122 app/color_picker.c:297 app/colormap_dialog.i.c:170 #: app/crop.c:1054 app/devices.c:755 app/docindexif.c:105 #: app/errorconsole.c:281 app/gdisplay_ops.c:346 app/gradient.c:801 @@ -330,7 +331,7 @@ msgid "Close" msgstr "Sulje" #. the feather radius scale -#: app/brush_edit.c:276 app/color_picker.c:181 app/tool_options.c:200 +#: app/brush_edit.c:276 app/color_picker.c:181 app/tool_options.c:199 msgid "Radius:" msgstr "SДde:" @@ -360,11 +361,11 @@ msgstr "Virkist msgid "No Brushes available" msgstr "Ei siveltimiД" -#: app/brush_select.c:445 app/layers_dialog.c:372 app/tool_options.c:505 +#: app/brush_select.c:445 app/layers_dialog.c:372 app/tool_options.c:504 msgid "Opacity:" msgstr "Peitto:" -#: app/brush_select.c:453 app/layers_dialog.c:324 app/tool_options.c:529 +#: app/brush_select.c:453 app/layers_dialog.c:324 app/tool_options.c:528 msgid "Mode:" msgstr "Toiminta:" @@ -398,7 +399,7 @@ msgstr "T msgid "Sorry, this brush can't be deleted." msgstr "TДtД sivellintД ei voi poistaa." -#: app/bucket_fill.c:147 app/color_picker.c:156 app/tool_options.c:274 +#: app/bucket_fill.c:147 app/color_picker.c:156 app/tool_options.c:273 msgid "Sample Merged" msgstr "NДytteistys yhdistetystД kuvasta" @@ -428,36 +429,36 @@ msgid "No available patterns for this operation." msgstr "Ei kuvioita tДlle toiminnolle." #. The shell and main vbox -#: app/by_color_select.c:629 +#: app/by_color_select.c:682 msgid "By Color Selection" msgstr "Valinta vДrin mukaan" -#: app/by_color_select.c:685 +#: app/by_color_select.c:738 msgid "Inactive" msgstr "Ei kДytЖssД" -#: app/by_color_select.c:693 +#: app/by_color_select.c:746 msgid "Selection Mode" msgstr "Valintatapa" -#: app/by_color_select.c:695 app/paint_funcs.c:100 +#: app/by_color_select.c:748 app/paint_funcs.c:100 msgid "Replace" msgstr "Korvaa" -#: app/by_color_select.c:697 app/colormap_dialog.i.c:127 +#: app/by_color_select.c:750 app/colormap_dialog.i.c:127 #: app/gdisplay_color_ui.c:114 msgid "Add" msgstr "LisДД" -#: app/by_color_select.c:699 app/layers_dialog.c:340 app/tool_options.c:904 +#: app/by_color_select.c:752 app/layers_dialog.c:340 app/tool_options.c:904 msgid "Subtract" msgstr "VДhennД" -#: app/by_color_select.c:701 +#: app/by_color_select.c:754 msgid "Intersect" msgstr "Leikkaa" -#: app/by_color_select.c:713 +#: app/by_color_select.c:766 msgid "Fuzziness Threshold" msgstr "Himmeyden raja" @@ -475,7 +476,7 @@ msgstr "%s:n kopio" msgid "Selection Mask" msgstr "Valintamaski" -#: app/channel_ops.c:85 app/resize.c:392 +#: app/channel_ops.c:85 app/resize.c:394 msgid "Offset" msgstr "SiirtymД" @@ -485,8 +486,8 @@ msgid "Offset X:" msgstr "SiirtymД X:" #: app/channel_ops.c:115 app/crop.c:1063 app/file_new_dialog.c:530 -#: app/resize.c:330 app/resize.c:415 app/resize.c:573 app/rotate_tool.c:106 -#: app/scale_tool.c:100 app/shear_tool.c:82 +#: app/install.c:1108 app/resize.c:332 app/resize.c:417 app/resize.c:575 +#: app/rotate_tool.c:106 app/scale_tool.c:100 app/shear_tool.c:82 msgid "Y:" msgstr "Y:" @@ -495,12 +496,12 @@ msgstr "Y:" msgid "Wrap Around" msgstr "Reunan yli kierto" -#: app/channel_ops.c:174 app/image_new.c:69 app/image_new.c:223 +#: app/channel_ops.c:174 app/image_new.c:70 app/image_new.c:234 #: app/layers_dialog.c:3422 msgid "Background" msgstr "TaustavДri" -#: app/channel_ops.c:175 app/image_new.c:79 app/layers_dialog.c:3424 +#: app/channel_ops.c:175 app/image_new.c:80 app/layers_dialog.c:3424 msgid "Transparent" msgstr "LДpinДkyvД" @@ -679,19 +680,19 @@ msgstr "N msgid "Update Active Color" msgstr "PДivitД kДytЖssД oleva vДri" -#: app/color_picker.c:255 app/color_picker.c:265 +#: app/color_picker.c:255 app/color_picker.c:264 msgid "Red:" msgstr "Punainen:" -#: app/color_picker.c:256 app/color_picker.c:266 +#: app/color_picker.c:256 app/color_picker.c:265 msgid "Green:" msgstr "VihreД:" -#: app/color_picker.c:257 app/color_picker.c:267 +#: app/color_picker.c:257 app/color_picker.c:266 msgid "Blue:" msgstr "Sininen:" -#: app/color_picker.c:258 app/color_picker.c:264 app/color_picker.c:273 +#: app/color_picker.c:258 app/color_picker.c:267 app/color_picker.c:273 msgid "Alpha:" msgstr "Peitto:" @@ -712,13 +713,13 @@ msgstr "Heksa" msgid "Intensity:" msgstr "Voimakkuus:" -#: app/color_picker.c:633 app/color_picker.c:634 app/color_picker.c:635 -#: app/color_picker.c:636 app/color_picker.c:637 app/color_picker.c:638 -#: app/color_picker.c:639 app/color_picker.c:657 app/color_picker.c:672 -#: app/color_picker.c:690 app/info_window.c:185 app/info_window.c:191 -#: app/info_window.c:197 app/info_window.c:203 app/info_window.c:422 -#: app/info_window.c:423 app/info_window.c:424 app/info_window.c:425 -#: app/info_window.c:447 +#: app/color_picker.c:626 app/color_picker.c:627 app/color_picker.c:628 +#: app/color_picker.c:629 app/color_picker.c:630 app/color_picker.c:631 +#: app/color_picker.c:632 app/color_picker.c:644 app/color_picker.c:651 +#: app/color_picker.c:669 app/color_picker.c:684 app/info_window.c:185 +#: app/info_window.c:191 app/info_window.c:197 app/info_window.c:203 +#: app/info_window.c:422 app/info_window.c:423 app/info_window.c:424 +#: app/info_window.c:425 app/info_window.c:447 msgid "N/A" msgstr " - " @@ -915,13 +916,13 @@ msgstr "Origo X:" #. the pixel size labels #: app/crop.c:1076 app/file_new_dialog.c:389 app/file_new_dialog.c:407 -#: app/tool_options.c:334 +#: app/tool_options.c:333 msgid "Width:" msgstr "Leveys:" #: app/crop.c:1079 app/file_new_dialog.c:395 app/file_new_dialog.c:413 -#: app/layers_dialog.c:3363 app/resize.c:240 app/resize.c:265 app/resize.c:510 -#: app/scale_tool.c:79 app/scale_tool.c:86 app/tool_options.c:350 +#: app/layers_dialog.c:3363 app/resize.c:242 app/resize.c:267 app/resize.c:512 +#: app/scale_tool.c:79 app/scale_tool.c:86 app/tool_options.c:349 msgid "Height:" msgstr "Korkeus:" @@ -973,7 +974,7 @@ msgid "Load" msgstr "Lataa" #: app/curves.c:704 app/devices.c:753 app/levels.c:608 app/palette.c:2068 -#: app/preferences_dialog.c:357 app/preferences_dialog.c:1467 +#: app/preferences_dialog.c:357 app/preferences_dialog.c:1432 msgid "Save" msgstr "Tallenna" @@ -1003,7 +1004,7 @@ msgstr "V msgid "Device Status" msgstr "Laitteiden tila" -#: app/disp_callbacks.c:755 app/global_edit.c:297 app/global_edit.c:303 +#: app/disp_callbacks.c:760 app/global_edit.c:297 app/global_edit.c:303 #: app/global_edit.c:375 msgid "Pasted Layer" msgstr "Liimattu taso" @@ -1184,17 +1185,17 @@ msgstr "Kuvan koko: %s" msgid "New Image" msgstr "Uusi kuva" -#: app/file_new_dialog.c:453 app/preferences_dialog.c:1540 -#: app/preferences_dialog.c:1577 +#: app/file_new_dialog.c:453 app/install.c:1093 app/preferences_dialog.c:1505 +#: app/preferences_dialog.c:1542 msgid "Pixels" msgstr "pikseliД" #. the resolution labels -#: app/file_new_dialog.c:524 app/resize.c:567 +#: app/file_new_dialog.c:524 app/resize.c:569 msgid "Resolution X:" msgstr "Tarkkuus X:" -#: app/file_new_dialog.c:545 app/resize.c:588 +#: app/file_new_dialog.c:545 app/resize.c:590 msgid "pixels/%a" msgstr "pikseliД/%a" @@ -1224,7 +1225,7 @@ msgstr "" msgid "No Selection." msgstr "Ei valintaa" -#: app/fileops.c:418 app/fileops.c:1624 app/fileops.c:1731 +#: app/fileops.c:418 app/fileops.c:1629 app/fileops.c:1736 #, c-format msgid "Save failed: %s" msgstr "Tallennus epДonnistui: %s" @@ -1251,58 +1252,58 @@ msgstr "" msgid "Revert failed." msgstr "Palautus epДonnistui." -#: app/fileops.c:1240 +#: app/fileops.c:1245 msgid "(This thumbnail may be out of date)" msgstr "(tДmД esikatselukuva saattaa olla vanhentunut)" -#: app/fileops.c:1241 +#: app/fileops.c:1246 msgid "(No Information)" msgstr "(ei tietoa)" -#: app/fileops.c:1251 +#: app/fileops.c:1256 msgid "(Thumbnail saving is disabled)" msgstr "(esikatselukuvien tallennus ei kДytЖssД)" -#: app/fileops.c:1255 +#: app/fileops.c:1260 msgid "(Could not write thumbnail file)" msgstr "(esikatselukuvan tallennus epДonnistui)" -#: app/fileops.c:1259 +#: app/fileops.c:1264 msgid "(Thumbnail file not written)" msgstr "(esikatselukuvaa ei tallennettu)" -#: app/fileops.c:1276 +#: app/fileops.c:1281 msgid "No preview available" msgstr "Esikatselukuvaa ei saatavana" -#: app/fileops.c:1394 +#: app/fileops.c:1399 msgid "(could not make preview)" msgstr "(esikatselukuvaa ei voitu tehdД)" -#: app/fileops.c:1467 app/fileops.c:1546 +#: app/fileops.c:1472 app/fileops.c:1551 #, c-format msgid "Open failed: %s" msgstr "Avaus epДonnistui: %s" -#: app/fileops.c:1602 +#: app/fileops.c:1607 #, c-format msgid "%s is an irregular file (%s)" msgstr "%s ei ole tavallinen tiedosto (%s)" -#: app/fileops.c:1670 +#: app/fileops.c:1675 #, c-format msgid "%s exists, overwrite?" msgstr "Tiedosto %s on jo olemassa, kirjoitetaanko pДДlle?" -#: app/fileops.c:1674 +#: app/fileops.c:1679 msgid "File Exists!" msgstr "Tiedosto on jo olemassa!" -#: app/fileops.c:1680 +#: app/fileops.c:1685 msgid "Yes" msgstr "KyllД" -#: app/fileops.c:1682 +#: app/fileops.c:1687 msgid "No" msgstr "Ei" @@ -1310,13 +1311,13 @@ msgstr "Ei" msgid "Flip Tool" msgstr "PeilikuvatyЖkalu" -#: app/flip_tool.c:95 app/preferences_dialog.c:1591 -#: app/preferences_dialog.c:2355 +#: app/flip_tool.c:95 app/preferences_dialog.c:1556 +#: app/preferences_dialog.c:2284 msgid "Horizontal" msgstr "Vaaka" -#: app/flip_tool.c:97 app/preferences_dialog.c:1593 -#: app/preferences_dialog.c:2357 +#: app/flip_tool.c:97 app/preferences_dialog.c:1558 +#: app/preferences_dialog.c:2286 msgid "Vertical" msgstr "Pysty" @@ -1342,7 +1343,7 @@ msgstr "" msgid "RGB-empty" msgstr "RGB-tyhjД" -#: app/gdisplay.c:217 app/image_new.c:53 app/preferences_dialog.c:1637 +#: app/gdisplay.c:217 app/image_new.c:54 app/preferences_dialog.c:1602 msgid "RGB" msgstr "" @@ -1481,23 +1482,23 @@ msgstr "Yht msgid "Failed to load pixmap brush." msgstr "Kuvasiveltimen lataus epДonnostui." -#: app/gimpdrawable.c:168 +#: app/gimpdrawable.c:166 msgid "Can't fill unknown image type." msgstr "Tuntemattoman kuvatyypin tДyttЖ ei mahdollista." -#: app/gimpdrawable.c:512 +#: app/gimpdrawable.c:498 msgid "parasite attach to drawable" msgstr "" -#: app/gimpdrawable.c:548 +#: app/gimpdrawable.c:533 msgid "detach parasite from drawable" msgstr "" -#: app/gimpdrawable.c:770 +#: app/gimpdrawable.c:740 msgid "unnamed" msgstr "nimetЖn" -#: app/gimpdrawable.c:787 +#: app/gimpdrawable.c:757 #, c-format msgid "Layer type %d not supported." msgstr "Taso tyyppiД %d ei tuettu." @@ -1509,39 +1510,39 @@ msgid "" "you don't have GtkXmHTML installed." msgstr "" -#: app/gimpimage.c:1154 +#: app/gimpimage.c:1176 msgid "attach parasite to image" msgstr "" -#: app/gimpimage.c:1177 +#: app/gimpimage.c:1201 msgid "detach parasite from image" msgstr "" -#: app/gimpimage.c:2232 +#: app/gimpimage.c:2305 msgid "Layer cannot be raised any further" msgstr "Tasoa ei voi nostaa enempДД" -#: app/gimpimage.c:2258 +#: app/gimpimage.c:2333 msgid "Layer cannot be lowered any further" msgstr "Tasoa ei voi laskea enempДД" -#: app/gimpimage.c:2282 +#: app/gimpimage.c:2359 msgid "Layer is already on top" msgstr "Taso on jo pДДllimmДisenД" -#: app/gimpimage.c:2288 +#: app/gimpimage.c:2365 msgid "Can't raise Layer without alpha" msgstr "Tasoa ilman alfakanavaa ei voi nostaa" -#: app/gimpimage.c:2315 +#: app/gimpimage.c:2393 msgid "Layer is already on bottom" msgstr "Taso on jo pohjimmaisena" -#: app/gimpimage.c:2370 +#: app/gimpimage.c:2448 msgid "BG has no alpha, layer was placed above" msgstr "Taustalla ei ole alfakanavaa, taso sijoitettiin ylДpuolelle" -#: app/gimpimage.c:2439 +#: app/gimpimage.c:2519 msgid "" "There are not enough visible layers for a merge.\n" "There must be at least two." @@ -1549,11 +1550,11 @@ msgstr "" "Ei ole tarpeeksi nДkyviД tasoja yhdisteltДvДksi.\n" "VДhintДДn kaksi tarvitaan." -#: app/gimpimage.c:2519 +#: app/gimpimage.c:2603 msgid "There are not enough visible layers for a merge down." msgstr "Ei ole tarpeeksi nДkyviД tasola alaspДin yhdisteltДvДksi." -#: app/gimpimage.c:2915 +#: app/gimpimage.c:3005 msgid "" "Unable to add a layer mask since\n" "the layer already has one." @@ -1561,7 +1562,7 @@ msgstr "" "Tasomaskin lisДys ei onnistu\n" "koska tasolla on jo maski." -#: app/gimpimage.c:2919 +#: app/gimpimage.c:3009 msgid "" "Unable to add a layer mask to a\n" "layer in an indexed image." @@ -1569,7 +1570,7 @@ msgstr "" "Tasomaskin lisДys indeksoidun kuvan\n" "tasoon ei onnistu." -#: app/gimpimage.c:2923 +#: app/gimpimage.c:3013 msgid "" "Cannot add layer mask to a layer\n" "with no alpha channel." @@ -1577,19 +1578,19 @@ msgstr "" "Tasomaski lisДys tasoon jolla\n" "ei ole alfakanavaa ei onnistu." -#: app/gimpimage.c:2930 +#: app/gimpimage.c:3020 msgid "Cannot add layer mask of different dimensions than specified layer." msgstr "Erikokoisen tasomaskin lisДys ei onnistu." -#: app/gimpimage.c:3033 +#: app/gimpimage.c:3127 msgid "Channel cannot be raised any further" msgstr "Kanavaa ei voi nostaa enempДД" -#: app/gimpimage.c:3082 +#: app/gimpimage.c:3178 msgid "Channel cannot be lowered any further" msgstr "Kanavaa ei voi laskea enempДД" -#: app/gimpimage.c:3288 app/palette.c:364 app/palette.c:941 app/palette.c:1077 +#: app/gimpimage.c:3398 app/palette.c:364 app/palette.c:941 app/palette.c:1077 #: app/palette.c:2022 app/palette.c:2749 app/palette.c:2881 msgid "Untitled" msgstr "NimetЖn" @@ -1602,45 +1603,45 @@ msgstr "Toiminnon eteneminen" msgid "Please wait..." msgstr "" -#: app/gimprc.c:401 app/plug_in.c:304 +#: app/gimprc.c:415 app/plug_in.c:304 msgid "Resource configuration" msgstr "Resurssien konfigurointi" -#: app/gimprc.c:451 +#: app/gimprc.c:467 #, c-format msgid "error parsing: \"%s\"\n" msgstr "virhe tiedostoa \"%s\" luettaessa\n" -#: app/gimprc.c:452 +#: app/gimprc.c:468 #, c-format msgid " at line %d column %d\n" msgstr " rivillД %d sarakkeessa %d\n" -#: app/gimprc.c:453 +#: app/gimprc.c:469 #, c-format msgid " unexpected token: %s\n" msgstr " odottamaton alkio: %s\n" -#: app/gimprc.c:1455 +#: app/gimprc.c:1473 msgid "error parsing pluginrc" msgstr "virhe pluginrc-tiedostoa luettaessa" -#: app/gimprc.c:2832 +#: app/gimprc.c:2866 #, c-format msgid "Can't open %s; %s" msgstr "Tiedostoa %s ei saada avattua: %s" -#: app/gimprc.c:2851 +#: app/gimprc.c:2885 #, c-format msgid "Can't rename %s to %s.old; %s" msgstr "Tiedonston %s uudelleennimeДminen %s.old:ksi epДonnistui; %s" -#: app/gimprc.c:2857 +#: app/gimprc.c:2891 #, c-format msgid "Couldn't reopen %s\n" msgstr "Tiedoston %s uudelleen avaus epДonnistui\n" -#: app/gimprc.c:2869 +#: app/gimprc.c:2903 #, c-format msgid "Can't write to %s; %s" msgstr "Kirjoittaminen tiedostoon %s epДonnistui; %s" @@ -1673,7 +1674,7 @@ msgstr "GIMP-ilmoitus" msgid "pixel" msgstr "pikseli" -#: app/gimpunit.c:59 app/measure.c:454 app/measure.c:458 app/paint_core.c:498 +#: app/gimpunit.c:59 app/measure.c:454 app/measure.c:458 app/paint_core.c:511 msgid "pixels" msgstr "pikseleitД" @@ -1919,7 +1920,7 @@ msgstr "Kahvan sijainti: %.06f" msgid "Distance: %0.6f" msgstr "EtДisyys: %0.6f" -#: app/gradient.c:3387 app/gradient.c:4448 +#: app/gradient.c:3387 app/gradient.c:4450 msgid "Left endpoint's color" msgstr "Vasemmanpuoleisen pДДtypisteen vДri" @@ -1939,7 +1940,7 @@ msgstr "Oikea p msgid "Save to" msgstr "Tallennuksen kohde" -#: app/gradient.c:3429 app/gradient.c:4526 +#: app/gradient.c:3429 app/gradient.c:4528 msgid "Right endpoint's color" msgstr "Oikeanpuoleisen pДДtypisteen vДri" @@ -1967,7 +1968,7 @@ msgstr "Osan v msgid "Split segment at midpoint" msgstr "Jaa osa keskiЖkohdalta" -#: app/gradient.c:3734 app/gradient.c:4829 +#: app/gradient.c:3734 app/gradient.c:4831 msgid "Split segment uniformly" msgstr "Jaa osat tasaisesti" @@ -1987,7 +1988,7 @@ msgstr "Jaa osan kahvat uudelleen" msgid "Flip segment" msgstr "Tee osasta peilikuva" -#: app/gradient.c:3744 app/gradient.c:5390 +#: app/gradient.c:3744 app/gradient.c:5392 msgid "Replicate segment" msgstr "Kahdenna osa" @@ -2003,7 +2004,7 @@ msgstr "Valitun alueen v msgid "Split segments at midpoints" msgstr "Jaa osat keskiЖkohdilta" -#: app/gradient.c:3755 app/gradient.c:4830 +#: app/gradient.c:3755 app/gradient.c:4832 msgid "Split segments uniformly" msgstr "Jaa osat tasaisesti" @@ -2023,7 +2024,7 @@ msgstr "Jaa valitun alueen kahvat uudelleen" msgid "Flip selection" msgstr "Tee valitusta alueesta peilikuva" -#: app/gradient.c:3765 app/gradient.c:5391 +#: app/gradient.c:3765 app/gradient.c:5393 msgid "Replicate selection" msgstr "Kahdenna valittu alue" @@ -2036,49 +2037,49 @@ msgstr "edustav msgid "RGBA (%0.3f, %0.3f, %0.3f, %0.3f)" msgstr "" -#: app/gradient.c:4615 app/gradient.c:4685 +#: app/gradient.c:4617 app/gradient.c:4687 msgid "(Varies)" msgstr "(vaihtelee)" -#: app/gradient.c:4837 +#: app/gradient.c:4839 msgid "Split" msgstr "Jakaa" #. Instructions -#: app/gradient.c:4851 +#: app/gradient.c:4853 msgid "Please select the number of uniform parts" msgstr "Valitse se yhtenДisten osien lukumДДrД" -#: app/gradient.c:4857 +#: app/gradient.c:4859 msgid "in which you want to split the selected segment" msgstr "johon haluat jakaa valittu polun osa" -#: app/gradient.c:4858 +#: app/gradient.c:4860 msgid "in which you want to split the segments in the selection" msgstr "johon haluat jakaa valuttuja polun osia" -#: app/gradient.c:5218 +#: app/gradient.c:5220 msgid "Blend endpoints' colors" msgstr "Sekoita pДДtepisteitten vДrit" -#: app/gradient.c:5230 +#: app/gradient.c:5232 msgid "Blend endpoints' opacity" msgstr "Sekoita pДДtepisteitten peitot" -#: app/gradient.c:5398 +#: app/gradient.c:5400 msgid "Replicate" msgstr "Kahdenna" #. Instructions -#: app/gradient.c:5411 +#: app/gradient.c:5413 msgid "Please select the number of times" msgstr "SyЖtД lukumДДrД" -#: app/gradient.c:5416 +#: app/gradient.c:5418 msgid "you want to replicate the selected segment" msgstr "sinun pitДisi kahdentaa valittu osa" -#: app/gradient.c:5417 +#: app/gradient.c:5419 msgid "you want to replicate the selection" msgstr "sinun pitДisi kahdentaa valittu alue" @@ -2182,45 +2183,45 @@ msgstr "Valoisuus (L)" msgid "Saturation" msgstr "VДrikyllДisyys (S)" -#: app/image_new.c:58 app/info_window.c:65 app/info_window.c:534 -#: app/preferences_dialog.c:1638 +#: app/image_new.c:59 app/info_window.c:65 app/info_window.c:534 +#: app/preferences_dialog.c:1603 msgid "Grayscale" msgstr "HarmaasДvy" -#: app/image_new.c:64 app/layers_dialog.c:3421 +#: app/image_new.c:65 app/layers_dialog.c:3421 msgid "Foreground" msgstr "EdustavДri" -#: app/image_new.c:74 app/layers_dialog.c:3423 +#: app/image_new.c:75 app/layers_dialog.c:3423 msgid "White" msgstr "Valkoinen" -#: app/image_new.c:262 +#: app/image_new.c:273 #, c-format msgid "%d Bytes" msgstr "%d tavua" -#: app/image_new.c:264 +#: app/image_new.c:275 #, c-format msgid "%.2f KB" msgstr "" -#: app/image_new.c:266 +#: app/image_new.c:277 #, c-format msgid "%.1f KB" msgstr "" -#: app/image_new.c:268 +#: app/image_new.c:279 #, c-format msgid "%d KB" msgstr "" -#: app/image_new.c:270 +#: app/image_new.c:281 #, c-format msgid "%.2f MB" msgstr "" -#: app/image_new.c:272 +#: app/image_new.c:283 #, c-format msgid "%.1f MB" msgstr "" @@ -2249,8 +2250,8 @@ msgstr "" "TДmД on kДytЖssД oleva vДriluikuma.\n" "Napsauta avataksesi vДriliukumavalitsijaa." -#: app/info_dialog.c:181 app/preferences_dialog.c:1782 -#: app/preferences_dialog.c:1888 +#: app/info_dialog.c:181 app/preferences_dialog.c:1743 +#: app/preferences_dialog.c:1849 msgid "General" msgstr "YleistД" @@ -2382,397 +2383,519 @@ msgstr "S msgid "Shape" msgstr "Muoto" -#: app/install.c:83 +#: app/install.c:95 msgid "The GIMP is not properly installed for the current user\n" msgstr "GIMP ei ole asennettu oikein sinulle\n" -#: app/install.c:84 +#: app/install.c:96 msgid "" "User installation was skipped because the '--nointerface' flag was " "encountered\n" msgstr "KДyttДjДlle asennus ohitettiin --nointerface -vivun takia\n" -#: app/install.c:85 +#: app/install.c:97 msgid "" "To perform user installation, run the GIMP without the '--nointerface' flag\n" msgstr "" "Asentaaksesi GIMPin henkilЖkohtaiseen kДyttЖЖsi, aja se ilman --nointerface " "-vipua\n" -#: app/install.c:113 +#: app/install.c:142 +#, fuzzy msgid "" -"The GIMP - GNU Image Manipulation Program\n" -"\n" +"The gimprc is used to store personal preferences\n" +"that affect GIMP's default behavior.\n" +"Paths to search for brushes, palettes, gradients,\n" +"patterns, plug-ins and modules can also configured here." +msgstr "" +"gimprc-tiedostoa kДytetДДn henkilЖkohtaisten asetusten tallentamiseksi\n" +"LisДksi hakupolut sivelitmiД, paletteja, vДriliukumia, kuvioita,\n" +"liitДnnДisiД ja moduuleja varten voi myЖs asettaa siinД.\n" + +#: app/install.c:149 +msgid "" +"GIMP uses an additional gtkrc file so you can\n" +"configure it to look differently than other GTK apps." msgstr "" -#: app/install.c:118 +#: app/install.c:154 +#, fuzzy +msgid "" +"Plug-ins and extensions are external programs run by\n" +"the GIMP which provide additional functionality.\n" +"These programs are searched for at run-time and\n" +"information about their functionality and mod-times\n" +"is cached in this file. This file is intended to\n" +"be GIMP-readable only, and should not be edited." +msgstr "" +"LiitДnnДiset ja laajennukset ovat erillisiД ohjelmia joita GIMP suorittaa\n" +"jotka laajentavat sen toiminnallisuutta.\n" +"NДitД ohjelmia etsitДДn ajonaikana ja tietoa niiden toiminnoista\n" +"sekД niitten aikaleimat sДilЖtДДn tДssД tiedostossa.\n" +"TДtД tiedostoa ei pidД muokata kДsin.\n" + +#: app/install.c:163 +#, fuzzy +msgid "" +"Key shortcuts can be dynamically redefined in The GIMP.\n" +"The menurc is a dump of your configuration so it can.\n" +"be remembered for the next session. You may edit this\n" +"file if you wish, but it is much easier to define the\n" +"keys from within The GIMP. Deleting this file will\n" +"restore the default shortcuts." +msgstr "" +"Voit muuttaa nДppДikomentoja dynaamisesti.\n" +"menurc-tiedostossa luetellaan nДppДinkomennot jotta ne voidaan\n" +"ottaa kДyttЖЖn seuraavallakin kerralla. Voit muokata tДtД tiedostoa\n" +"jos haluat, mutta on paljon helpompaa sitoa nДppДinkomennot uudestaan\n" +"GIMPissД. Poistamalla tДmДn tiedoston palautat oletusnДppДinkomennot.\n" + +#: app/install.c:172 +#, fuzzy +msgid "" +"The sessionrc is used to store what dialog windows were\n" +"open the last time you quit The GIMP. You can configure\n" +"The GIMP to reopen these dialogs at the saved position." +msgstr "" +"sessionrc-tiedostoon tallentuu dialogi-ikkunoiden sijainnit\n" +"viime kerralla kun ajoit GIMPiД. Voi pyytДД GIMPiД avaamaan dialogit\n" +"uudelleen samaan paikkaan missД ne oli viimeksi.\n" + +#: app/install.c:178 +#, fuzzy +msgid "" +"The unitrc is used to store your user units database.\n" +"You can define additional units and use them just\n" +"like you use the built-in units inches, millimeters,\n" +"points and picas. This file is overwritten each time\n" +"you quit the GIMP." +msgstr "" +"unitrc-tiedostoon tallentuu kДyttДmДsi lisДmittayksikЖt.\n" +"Voit ottaa kДyttЖЖn GIMPissД lisДД mittayksikЖitД ja kДyttДД\n" +"ne samaan tapaan kuin sisДДnrakennettuja yksikЖitД (tuumaa, millimetri,\n" +"typografiset piste ja pica). TДmД tiedosto kirjoitetaan uusiksi joka\n" +"kerta kun lopetat GIMPin\n" + +#: app/install.c:186 +#, fuzzy +msgid "" +"This is a subdirectory which can be used to store\n" +"user defined brushes. The default gimprc file\n" +"checks this subdirectory in addition to the system-\n" +"wide gimp brushes installation when searching for\n" +"brushes." +msgstr "" +"TДmД on kansio jonne voit tallentaa luomiasi siveltimiД.\n" +"Oletusarvoisesti gimprc-tiedosto ohjaa GIMPiД etsimДДn siveltimiД\n" +"tДstД kansiosta jДrjestelmДlaajuisen sivellinkansion lisДksi.\n" + +#: app/install.c:194 +#, fuzzy +msgid "" +"This is a subdirectory which is used to store brushes\n" +"that are created with the brush editor. The default\n" +"gimprc file checks this subdirectory when searching for\n" +"generated brushes." +msgstr "" +"TДmД on kansio jonne tallentuu sivellinmuokkaimella luodut siveltiet.\n" +"Oletusarvoisesti gimprc-tiedosto ohjaa GIMPiД etsimДДn siveltimiД\n" +"tДstД kansiosta jДrjestelmДlaajuisen sivellinkansion lisДksi.\n" + +#: app/install.c:201 +#, fuzzy +msgid "" +"This is a subdirectory which can be used to store\n" +"user defined gradients. The default gimprc file\n" +"checks this subdirectory in addition to the system-\n" +"wide gimp gradients installation when searching for\n" +"gradients." +msgstr "" +"TДmД on kansio jonne voit tallentaa luomiasi vДriliukumia.\n" +"Oletusarvoisesti gimprc-tiedosto ohjaa GIMPiД etsimДДn vДriliukumia\n" +"tДstД kansiosta jДrjestelmДlaajuisen vДriliukumakansion lisДksi.\n" + +#: app/install.c:209 +#, fuzzy +msgid "" +"This is a subdirectory which can be used to store\n" +"user defined palettes. The default gimprc file\n" +"checks only this subdirectory (not the system-wide\n" +"installation) when searching for palettes. During\n" +"installation, the system palettes will be copied\n" +"here. This is done to allow modifications made to\n" +"palettes during GIMP execution to persist across\n" +"sessions." +msgstr "" +"TДmД on kansio jonne voit tallentaa luomiasi vДripaletteja.\n" +"Oletusarvoisesti gimprc-tiedosto ohjaa GIMPiД etsimДДn\n" +"paletteja vain tДstД kansiosta, ei mistДДn jДrjestelmДlaajuisesta\n" +"kansiosta. NДin jotta paletteihin tekemДsi muutokset sДilyisivДt\n" +"kДyttЖkertojen vДlillД.\n" + +#: app/install.c:220 +#, fuzzy +msgid "" +"This is a subdirectory which can be used to store\n" +"user defined patterns. The default gimprc file\n" +"checks this subdirectory in addition to the system-\n" +"wide gimp patterns installation when searching for\n" +"patterns." +msgstr "" +"TДmД on kansio jonne voit tallentaa luomiasi kuvioita.\n" +"Oletusarvoisesti gimprc-tiedosto ohjaa GIMPiД etsimДДn\n" +"paletteja tДstД kansiosta jДrjestelmДlaajuisesn kuviokansion lisДksi.\n" + +#: app/install.c:228 +#, fuzzy +msgid "" +"This is a subdirectory which can be used to store\n" +"user created, temporary, or otherwise non-system-\n" +"supported plug-ins. The default gimprc file\n" +"checks this subdirectory in addition to the system-\n" +"wide GIMP plug-in directories when searching for\n" +"plug-ins." +msgstr "" +"TДmД on kansio jonne voit tallentaa liitДnnДisohjelmia.\n" +"Oletusarvoisesti gimprc-tiedosto ohjaa GIMPiД etsimДДn\n" +"liitДnnДisiД tДstД kansiosta jДrjestelmДlaajuisen liitДnnДiskansion\n" +"lisДksi.\n" + +#: app/install.c:237 +#, fuzzy +msgid "" +"This subdirectory can be used to store user created,\n" +"temporary, or otherwise non-system-supported DLL modules.\n" +"The default gimprc file checks this subdirectory\n" +"in addition to the system-wide GIMP module directory\n" +"when searching for modules to load when initializing." +msgstr "" +"TДmД on kansio jonne voit tallentaa GIMPin lisДmoduuleja.\n" +"Oletusarvoisesti gimprc-tiedosto ohjaa GIMPiД etsimДДn\n" +"moduuleja tДstД kansiosta jДrjestelmДlaajuisen moduulikansion\n" +"lisДksi.\n" + +#: app/install.c:245 +#, fuzzy +msgid "" +"This subdirectory is used by the GIMP to store \n" +"user created and installed scripts. The default gimprc\n" +"file checks this subdirectory in addition to the system-\n" +"wide gimp scripts subdirectory when searching for scripts" +msgstr "" +"TДmД on kansio jonne voit tallentaa script-fu skriptejД.\n" +"Oletusarvoisesti gimprc-tiedosto ohjaa GIMPiД etsimДДn\n" +"skriptejД tДstД kansiosta jДrjestelmДlaajuisen skriptikansion\n" +"lisДksi.\n" + +#: app/install.c:252 +#, fuzzy +msgid "" +"This subdirectory is used by the GIMP to temporarily\n" +"store undo buffers to reduce memory usage. If GIMP is\n" +"unceremoniously killed, files may persist in this directory\n" +"of the form: gimp<#>.<#>. These files are useless across\n" +"GIMP sessions and can be destroyed with impunity." +msgstr "" +"TДmД on kansio jonne GIMP tallentaa tilapДisiД puskureita\n" +"muistikДytЖn sДДstДmiseksi. Jos GIMPin suoritus pysДhtyy virheeseen\n" +"tДhДn kansioon voi jДДdД tiedostoja joiden nimet ovat muotoa: gimp#.#.\n" +"NДitД tiedostoja ei tarvitse sДilyttДД kДyttДkertojen vДlillД, ja\n" +"niitД voi poistaa ilman haittaa.\n" + +#: app/install.c:260 +msgid "" +"This subdirectory is used to store parameter files for\n" +"the Curves tool." +msgstr "" + +#: app/install.c:265 +msgid "" +"This subdirectory is used to store parameter files for\n" +"the Levels tool." +msgstr "" + +#: app/install.c:270 +#, fuzzy +msgid "" +"This is a subdirectory which can be used to store\n" +"user defined fractals to be used by the FractalExplorer\n" +"plug-in. The default gimprc file checks this subdirectory in\n" +"addition to the systemwide gimp FractalExplorer installation\n" +"when searching for fractals." +msgstr "" +"TДmД on kansio jonne voit tallentaa luomiasi fraktaaliparametreja\n" +"FractalExplorer-liitДnnДistД varten. Oletusarvoisesti gimprc-tiedosto\n" +"ohjaa FractalExplorer-liitДnnДistД etsimДДn fraktaaliparametreja\n" +"tДstД kansiosta jДrjestelmДlaajuisen kansion lisДksi.\n" + +#: app/install.c:278 +#, fuzzy +msgid "" +"This is a subdirectory which can be used to store\n" +"user defined figures to be used by the gfig plug-in.\n" +"The default gimprc file checks this subdirectory in\n" +"addition to the systemwide gimp gfig installation\n" +"when searching for gfig figures." +msgstr "" +"TДmД on kansio jonne voit tallentaa luomiasi piirroksia\n" +"gfig-liitДnnДistД varten. Oletusarvoisesti gimprc-tiedosto\n" +"ohjaa gfig:iД etsimДДn piirroksia tДstД kansiosta jДrjestelmДlaajuisen\n" +"piirroskansion lisДksi.\n" + +#: app/install.c:286 +#, fuzzy +msgid "" +"This is a subdirectory which can be used to store\n" +"user defined gflares to be used by the gflare plug-in.\n" +"The default gimprc file checks this subdirectory in\n" +"addition to the systemwide gimp gflares installation\n" +"when searching for gflares." +msgstr "" +"TДmД on kansio jonne voit tallentaa luomiasi \"flareja\"\n" +"gflare-liitДnnДistД varten. Oletusarvoisesti gimprc-tiedosto\n" +"ohjaa gflare-liitДnnДistД etsimДДn flareja tДstД kansiosta\n" +"jДrjestelmДlaajuisen kansion lisДksi.\n" + +#: app/install.c:294 +#, fuzzy +msgid "" +"This is a subdirectory which can be used to store\n" +"user defined data to be used by the Gimpressionist\n" +"plug-in. The default gimprc file checks this subdirectory in\n" +"addition to the systemwide gimp Gimpressionist installation\n" +"when searching for data." +msgstr "" +"TДmД on kansio jonne voit tallentaa luomiasi \"flareja\"\n" +"gflare-liitДnnДistД varten. Oletusarvoisesti gimprc-tiedosto\n" +"ohjaa gflare-liitДnnДistД etsimДДn flareja tДstД kansiosta\n" +"jДrjestelmДlaajuisen kansion lisДksi.\n" + +#: app/install.c:525 +#, fuzzy +msgid "GIMP User Installation" +msgstr "GIMPin asennus" + +#: app/install.c:530 +msgid "Continue" +msgstr "Jatka" + +#. this is a fontset, e.g. multiple comma-separated font definitions +#: app/install.c:560 +msgid "-*-helvetica-bold-r-normal-*-*-240-*-*-*-*-*-*,*" +msgstr "" + +#: app/install.c:578 +#, fuzzy +msgid "" +"Welcome to\n" +"The GIMP User Installation" +msgstr "GIMPin asennus" + +#: app/install.c:582 +msgid "" +"The GIMP - GNU Image Manipulation Program\n" +"Copyright (C) 1995-2000\n" +"Spencer Kimball, Peter Mattis and the GIMP Development Team." +msgstr "" + +#: app/install.c:591 +#, fuzzy msgid "" "This program is free software; you can redistribute it and/or modify\n" "it under the terms of the GNU General Public License as published by\n" "the Free Software Foundation; either version 2 of the License, or\n" -"(at your option) any later version.\n" +"(at your option) any later version." msgstr "" "TДmД on vapaa ohjelma; voit levittДД ja/tai muokata sitД GNU:n yleisen\n" "julkisen lisenssin sopimusehtojen mukaisesti sellaisina kun\n" "Free Software Foundation on ne julkaissut. Voit soveltaa\n" "lisenssin versiota 2 tai myЖhempДД.\n" -#: app/install.c:123 +#: app/install.c:596 +#, fuzzy msgid "" "This program is distributed in the hope that it will be useful,\n" "but WITHOUT ANY WARRANTY; without even the implied warranty of\n" "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n" -"See the GNU General Public License for more details.\n" +"See the GNU General Public License for more details." msgstr "" "TДmД ohjelma levitetДДn siinД toivossa, ettД siitД on hyЖtyД,\n" "mutta ILMAN MITддN TAKUUTA; jopa ilman konkludenttista takuuta\n" "MYYNTIKELPOISUUTTA TAI SOVELTUMISESTA TIETTYYN ERITYISEEN TARKOITUKSEEN.\n" "Yksityiskohtien osalta katso GNU:n yleistД julkista lisenssiД.\n" -#: app/install.c:128 +#: app/install.c:601 +#, fuzzy msgid "" "You should have received a copy of the GNU General Public License\n" "along with this program; if not, write to the Free Software\n" "Foundation, Inc., 59 Temple Place - Suite 330, Boston,\n" -"MA 02111-1307, USA.\n" +"MA 02111-1307, USA." msgstr "" "Sinun olisi pitДnyt saada kopion GNU:n yleisestД julkisesta lisenssistД\n" "tДmДn ohjelman mukana; jos et sitД saanut, niin lДhetД kirje osoitteella\n" "Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,\n" "MA 02111-1307, USA.\n" -#: app/install.c:134 -msgid "" -"Personal GIMP Installation\n" -"\n" +#: app/install.c:607 +msgid "Click \"Continue\" to enter the GIMP user installation." +msgstr "" + +#: app/install.c:633 +#, fuzzy +msgid "Personal GIMP Directory" msgstr "" "HenkilЖkohtainen GIMP-asennus\n" "\n" -#: app/install.c:135 -msgid "For a proper GIMP installation, a subdirectory called\n" -msgstr "Kunnollista GIMP-asennusta varten kansio nimeltД\n" - -#. will be replaced with gimp_directory() -#: app/install.c:137 +#: app/install.c:650 +#, fuzzy msgid "" -" needs to be created. This\n" -"subdirectory will contain a number of important files:\n" -"\n" +"For a proper GIMP installation, a subdirectory needs to be created.\n" +"This subdirectory will contain a number of important files." msgstr "" "tДytyy luoda. TДmД kansio tulee sisДltДmДДn joukon\n" "tДrkeitД tiedostoja:\n" -#: app/install.c:141 +#: app/install.c:653 msgid "" -"\t\tThe gimprc is used to store personal preferences\n" -"\t\tthat affect GIMP's default behavior.\n" -"\t\tPaths to search for brushes, palettes, gradients,\n" -"\t\tpatterns, plug-ins and modules can also configured here.\n" -msgstr "" -"\t\tgimprc-tiedostoa kДytetДДn henkilЖkohtaisten asetusten tallentamiseksi\n" -"\t\tLisДksi hakupolut sivelitmiД, paletteja, vДriliukumia, kuvioita,\n" -"\t\tliitДnnДisiД ja moduuleja varten voi myЖs asettaa siinД.\n" - -#: app/install.c:147 -msgid "" -"\t\tPlug-ins and extensions are external programs run by\n" -"\t\tthe GIMP which provide additional functionality.\n" -"\t\tThese programs are searched for at run-time and\n" -"\t\tinformation about their functionality and mod-times\n" -"\t\tis cached in this file. This file is intended to\n" -"\t\tbe GIMP-readable only, and should not be edited.\n" -msgstr "" -"\t\tLiitДnnДiset ja laajennukset ovat erillisiД ohjelmia joita GIMP " -"suorittaa\n" -"\t\tjotka laajentavat sen toiminnallisuutta.\n" -"\t\tNДitД ohjelmia etsitДДn ajonaikana ja tietoa niiden toiminnoista\n" -"\t\tsekД niitten aikaleimat sДilЖtДДn tДssД tiedostossa.\n" -"\t\tTДtД tiedostoa ei pidД muokata kДsin.\n" - -#: app/install.c:155 -msgid "" -"\t\tKey shortcuts can be dynamically redefined in The GIMP.\n" -"\t\tThe menurc is a dump of your configuration so it can.\n" -"\t\tbe remembered for the next session. You may edit this\n" -"\t\tfile if you wish, but it is much easier to define the\n" -"\t\tkeys from within The GIMP. Deleting this file will\n" -"\t\trestore the default shortcuts.\n" -msgstr "" -"\t\tVoit muuttaa nДppДikomentoja dynaamisesti.\n" -"\t\tmenurc-tiedostossa luetellaan nДppДinkomennot jotta ne voidaan\n" -"\t\tottaa kДyttЖЖn seuraavallakin kerralla. Voit muokata tДtД tiedostoa\n" -"\t\tjos haluat, mutta on paljon helpompaa sitoa nДppДinkomennot uudestaan\n" -"\t\tGIMPissД. Poistamalla tДmДn tiedoston palautat oletusnДppДinkomennot.\n" - -#: app/install.c:163 -msgid "" -"\t\tThe sessionrc is used to store what dialog windows were\n" -"\t\topen the last time you quit The GIMP. You can configure\n" -"\t\tThe GIMP to reopen these dialogs at the saved position.\n" -msgstr "" -"\t\tsessionrc-tiedostoon tallentuu dialogi-ikkunoiden sijainnit\n" -"\t\tviime kerralla kun ajoit GIMPiД. Voi pyytДД GIMPiД avaamaan dialogit\n" -"\t\tuudelleen samaan paikkaan missД ne oli viimeksi.\n" - -#: app/install.c:168 -msgid "" -"\t\tThe unitrc is used to store your user units database.\n" -"\t\tYou can define additional units and use them just\n" -"\t\tlike you use the built-in units inches, millimeters,\n" -"\t\tpoints and picas. This file is overwritten each time\n" -"\t\tyou quit the GIMP.\n" -msgstr "" -"\t\tunitrc-tiedostoon tallentuu kДyttДmДsi lisДmittayksikЖt.\n" -"\t\tVoit ottaa kДyttЖЖn GIMPissД lisДД mittayksikЖitД ja kДyttДД\n" -"\t\tne samaan tapaan kuin sisДДnrakennettuja yksikЖitД (tuumaa, millimetri,\n" -"\t\ttypografiset piste ja pica). TДmД tiedosto kirjoitetaan uusiksi joka\n" -"\t\tkerta kun lopetat GIMPin\n" - -#: app/install.c:175 -msgid "" -"\t\tThis is a subdirectory which can be used to store\n" -"\t\tuser defined brushes. The default gimprc file\n" -"\t\tchecks this subdirectory in addition to the system-\n" -"\t\twide gimp brushes installation when searching for\n" -"\t\tbrushes.\n" -msgstr "" -"\t\tTДmД on kansio jonne voit tallentaa luomiasi siveltimiД.\n" -"\t\tOletusarvoisesti gimprc-tiedosto ohjaa GIMPiД etsimДДn siveltimiД\n" -"\t\ttДstД kansiosta jДrjestelmДlaajuisen sivellinkansion lisДksi.\n" - -#: app/install.c:182 -msgid "" -"\t\tThis is a subdirectory which is used to store brushes\n" -"\t\tthat are created with the brush editor. The default\n" -"\t\tgimprc file checks this subdirectory when searching for\n" -"\t\tgenerated brushes.\n" -msgstr "" -"\t\tTДmД on kansio jonne tallentuu sivellinmuokkaimella luodut siveltiet.\n" -"\t\tOletusarvoisesti gimprc-tiedosto ohjaa GIMPiД etsimДДn siveltimiД\n" -"\t\ttДstД kansiosta jДrjestelmДlaajuisen sivellinkansion lisДksi.\n" - -#: app/install.c:188 -msgid "" -"\t\tThis is a subdirectory which can be used to store\n" -"\t\tuser defined gradients. The default gimprc file\n" -"\t\tchecks this subdirectory in addition to the system-\n" -"\t\twide gimp gradients installation when searching for\n" -"\t\tgradients.\n" -msgstr "" -"\t\tTДmД on kansio jonne voit tallentaa luomiasi vДriliukumia.\n" -"\t\tOletusarvoisesti gimprc-tiedosto ohjaa GIMPiД etsimДДn vДriliukumia\n" -"\t\ttДstД kansiosta jДrjestelmДlaajuisen vДriliukumakansion lisДksi.\n" - -#: app/install.c:195 -msgid "" -"\t\tThis is a subdirectory which can be used to store\n" -"\t\tuser defined figures to be used by the gfig plug-in.\n" -"\t\tThe default gimprc file checks this subdirectory in\n" -"\t\taddition to the systemwide gimp gfig installation\n" -"\t\twhen searching for gfig figures.\n" -msgstr "" -"\t\tTДmД on kansio jonne voit tallentaa luomiasi piirroksia\n" -"\t\tgfig-liitДnnДistД varten. Oletusarvoisesti gimprc-tiedosto\n" -"\t\tohjaa gfig:iД etsimДДn piirroksia tДstД kansiosta jДrjestelmДlaajuisen\n" -"\t\tpiirroskansion lisДksi.\n" - -#: app/install.c:202 -msgid "" -"\t\tThis is a subdirectory which can be used to store\n" -"\t\tuser defined gflares to be used by the gflare plug-in.\n" -"\t\tThe default gimprc file checks this subdirectory in\n" -"\t\taddition to the systemwide gimp gflares installation\n" -"\t\twhen searching for gflares.\n" -msgstr "" -"\t\tTДmД on kansio jonne voit tallentaa luomiasi \"flareja\"\n" -"\t\tgflare-liitДnnДistД varten. Oletusarvoisesti gimprc-tiedosto\n" -"\t\tohjaa gflare-liitДnnДistД etsimДДn flareja tДstД kansiosta\n" -"\t\tjДrjestelmДlaajuisen kansion lisДksi.\n" - -#: app/install.c:209 -msgid "" -"\t\tThis is a subdirectory which can be used to store\n" -"\t\tuser defined fractals to be used by the FractalExplorer\n" -"\t\tplug-in. The default gimprc file checks this subdirectory in\n" -"\t\taddition to the systemwide gimp FractalExplorer installation\n" -"\t\twhen searching for fractals.\n" -msgstr "" -"\t\tTДmД on kansio jonne voit tallentaa luomiasi fraktaaliparametreja\n" -"\t\tFractalExplorer-liitДnnДistД varten. Oletusarvoisesti gimprc-tiedosto\n" -"\t\tohjaa FractalExplorer-liitДnnДistД etsimДДn fraktaaliparametreja\n" -"\t\ttДstД kansiosta jДrjestelmДlaajuisen kansion lisДksi.\n" - -#: app/install.c:216 -msgid "" -"\t\tThis is a subdirectory which can be used to store\n" -"\t\tuser defined palettes. The default gimprc file\n" -"\t\tchecks only this subdirectory (not the system-wide\n" -"\t\tinstallation) when searching for palettes. During\n" -"\t\tinstallation, the system palettes will be copied\n" -"\t\there. This is done to allow modifications made to\n" -"\t\tpalettes during GIMP execution to persist across\n" -"\t\tsessions.\n" -msgstr "" -"\t\tTДmД on kansio jonne voit tallentaa luomiasi vДripaletteja.\n" -"\t\tOletusarvoisesti gimprc-tiedosto ohjaa GIMPiД etsimДДn\n" -"\t\tpaletteja vain tДstД kansiosta, ei mistДДn jДrjestelmДlaajuisesta\n" -"\t\tkansiosta. NДin jotta paletteihin tekemДsi muutokset sДilyisivДt\n" -"\t\tkДyttЖkertojen vДlillД.\n" - -#: app/install.c:226 -msgid "" -"\t\tThis is a subdirectory which can be used to store\n" -"\t\tuser defined patterns. The default gimprc file\n" -"\t\tchecks this subdirectory in addition to the system-\n" -"\t\twide gimp patterns installation when searching for\n" -"\t\tpatterns.\n" -msgstr "" -"\t\tTДmД on kansio jonne voit tallentaa luomiasi kuvioita.\n" -"\t\tOletusarvoisesti gimprc-tiedosto ohjaa GIMPiД etsimДДn\n" -"\t\tpaletteja tДstД kansiosta jДrjestelmДlaajuisesn kuviokansion lisДksi.\n" - -#: app/install.c:233 -msgid "" -"\t\tThis is a subdirectory which can be used to store\n" -"\t\tuser created, temporary, or otherwise non-system-\n" -"\t\tsupported plug-ins. The default gimprc file\n" -"\t\tchecks this subdirectory in addition to the system-\n" -"\t\twide GIMP plug-in directories when searching for\n" -"\t\tplug-ins.\n" -msgstr "" -"\t\tTДmД on kansio jonne voit tallentaa liitДnnДisohjelmia.\n" -"\t\tOletusarvoisesti gimprc-tiedosto ohjaa GIMPiД etsimДДn\n" -"\t\tliitДnnДisiД tДstД kansiosta jДrjestelmДlaajuisen liitДnnДiskansion\n" -"\t\tlisДksi.\n" - -#: app/install.c:241 -msgid "" -"\t\tThis subdirectory can be used to store user created,\n" -"\t\ttemporary, or otherwise non-system-supported DLL modules.\n" -"\t\tThe default gimprc file checks this subdirectory\n" -"\t\tin addition to the system-wide GIMP module directory\n" -"\t\twhen searching for modules to load when initializing.\n" -msgstr "" -"\t\tTДmД on kansio jonne voit tallentaa GIMPin lisДmoduuleja.\n" -"\t\tOletusarvoisesti gimprc-tiedosto ohjaa GIMPiД etsimДДn\n" -"\t\tmoduuleja tДstД kansiosta jДrjestelmДlaajuisen moduulikansion\n" -"\t\tlisДksi.\n" - -#: app/install.c:248 -msgid "" -"\t\tThis subdirectory is used by the GIMP to store \n" -"\t\tuser created and installed scripts. The default gimprc\n" -"\t\tfile checks this subdirectory in addition to the system\n" -"\t\t-wide gimp scripts subdirectory when searching for scripts\n" -msgstr "" -"\t\tTДmД on kansio jonne voit tallentaa script-fu skriptejД.\n" -"\t\tOletusarvoisesti gimprc-tiedosto ohjaa GIMPiД etsimДДn\n" -"\t\tskriptejД tДstД kansiosta jДrjestelmДlaajuisen skriptikansion\n" -"\t\tlisДksi.\n" - -#: app/install.c:254 -msgid "" -"\t\tThis subdirectory is used by the GIMP to temporarily\n" -"\t\tstore undo buffers to reduce memory usage. If GIMP is\n" -"\t\tunceremoniously killed, files may persist in this directory\n" -"\t\tof the form: gimp<#>.<#>. These files are useless across\n" -"\t\tGIMP sessions and can be destroyed with impunity.\n" -msgstr "" -"\t\tTДmД on kansio jonne GIMP tallentaa tilapДisiД puskureita\n" -"\t\tmuistikДytЖn sДДstДmiseksi. Jos GIMPin suoritus pysДhtyy virheeseen\n" -"\t\ttДhДn kansioon voi jДДdД tiedostoja joiden nimet ovat muotoa: gimp#.#.\n" -"\t\tNДitД tiedostoja ei tarvitse sДilyttДД kДyttДkertojen vДlillД, ja\n" -"\t\tniitД voi poistaa ilman haittaa.\n" - -#: app/install.c:263 -msgid "GIMP Installation" -msgstr "GIMPin asennus" - -#: app/install.c:268 -msgid "Install" -msgstr "Asenna" - -#: app/install.c:270 -msgid "Ignore" -msgstr "Ohita" - -#. this is a fontset, e.g. multiple comma-separated font definitions -#: app/install.c:295 app/install.c:453 -msgid "-*-helvetica-bold-r-normal-*-*-120-*-*-*-*-*-*,*" +"Click on one of the files or subdirectories in the tree\n" +"to get more information about the selected item." msgstr "" -#. this is a font, provide only one single font definition -#: app/install.c:298 -msgid "-*-helvetica-medium-o-normal-*-*-100-*-*-*-*-*-*" +#: app/install.c:656 +msgid "Click \"Continue\" to create your personal GIMP directory." msgstr "" -#. this is a fontset, e.g. multiple comma-separated font definitions -#: app/install.c:301 -msgid "-*-helvetica-medium-r-normal-*-*-100-*-*-*-*-*-*,*" -msgstr "" - -#: app/install.c:423 -msgid "Installation Log" -msgstr "Asennusloki" - -#: app/install.c:428 -msgid "Continue" -msgstr "Jatka" - -#. this is a fontset, e.g. multiple comma-separated font definitions -#: app/install.c:456 -msgid "-*-helvetica-medium-r-normal-*-*-120-*-*-*-*-*-*,*" -msgstr "" - -#: app/install.c:462 -msgid "" -"User Installation Log\n" -"\n" +#: app/install.c:736 +#, fuzzy +msgid "User Installation Log" msgstr "" "KДyttДjДkohtaisen asennuksen loki\n" "\n" -#: app/install.c:472 -msgid " does not exist. Cannot install.\n" +#: app/install.c:741 +msgid "GIMP Performance Tuning" +msgstr "" + +#: app/install.c:744 +msgid "For optimal GIMP performance, some settings may have to be adjusted." +msgstr "" + +#: app/install.c:751 +msgid "Click \"Continue\" to accept the settings above." +msgstr "" + +#: app/install.c:760 +#, fuzzy +msgid "Monitor Resolution" +msgstr "Hae nДytЖn resoluutio" + +#: app/install.c:763 +msgid "" +"To display images in their natural size, GIMP needs to know your monitor " +"resolution." +msgstr "" + +#: app/install.c:771 +msgid "Click \"Continue\" to start The GIMP." +msgstr "" + +#: app/install.c:845 +#, fuzzy +msgid "does not exist. Cannot install." msgstr " ei ole olemassa. KДyttДjДkohtaista asennusta ei voi tehdД.\n" -#: app/install.c:480 -msgid "" -" has invalid permissions.\n" -"Cannot install." +#: app/install.c:857 +#, fuzzy +msgid "has invalid permissions. Cannot install." msgstr "" " on suojattu virheellisesti.\n" "KДyttДjДkohtaista asennusta ei voi tehdД." -#: app/install.c:514 +#: app/install.c:895 +#, fuzzy msgid "" -"Did you notice any error messages\n" -"in the console window? If not, installation\n" -"was successful! Otherwise, quit and investigate\n" -"the possible reason...\n" +"Did you notice any error messages in the console window?\n" +"If not, installation was successful!\n" +"Otherwise, quit and investigate the possible reason..." msgstr "" "Huomasitko mitДДn virheilmoituksia\n" "konsoli-ikkunassa? Jos et, niin asennus\n" "onnistui! Muuten, poistu ja tutki mistД\n" "virheet mahtoivat johtua...\n" -#: app/install.c:546 +#: app/install.c:955 +#, fuzzy msgid "" -"\n" -"Installation successful!\n" +"Did you notice any error messages in the lines above?\n" +"If not, installation was successful!\n" +"Otherwise, quit and investigate the possible reason..." msgstr "" -"\n" -"KДyttДjДkohtainen asennus onnistui!\n" +"Huomasitko mitДДn virheilmoituksia\n" +"konsoli-ikkunassa? Jos et, niin asennus\n" +"onnistui! Muuten, poistu ja tutki mistД\n" +"virheet mahtoivat johtua...\n" -#: app/install.c:555 -msgid "" -"\n" -"Installation failed. Contact system administrator.\n" +#: app/install.c:969 +msgid "Click \"Continue\" to complete GIMP installation." +msgstr "" + +#: app/install.c:978 +#, fuzzy +msgid "Installation failed. Contact system administrator." msgstr "" "\n" "KДyttДjДkohtainen asennus epДonnistui. Ota yhteys yllДpitoon.\n" +#: app/install.c:999 +msgid "" +"GIMP uses a limited amount of memory to store image data, the so-called\n" +"\"Tile Cache\". You should adjust it's size to fit into memory. Consider\n" +"the amount of memory used by other running processes." +msgstr "" + +#: app/install.c:1015 app/preferences_dialog.c:2102 +msgid "Tile Cache Size:" +msgstr "KuvatiilivДlimuistin koko:" + +#: app/install.c:1025 +msgid "" +"All image and undo data which doesn't fit into the Tile Cache will be\n" +"written to a swap file. This file should be located on a local filesystem\n" +"with enough free space (several hundred MB). On a UNIX system, you\n" +"may want to use the system-wide temp-dir (\"/tmp\" or \"/var/tmp\")." +msgstr "" + +#: app/install.c:1035 app/preferences_dialog.c:2361 +msgid "Select Swap Dir" +msgstr "Valitse sivutuskansio" + +#: app/install.c:1041 +#, fuzzy +msgid "Swap Directory:" +msgstr "Sivutuskansio:" + +#: app/install.c:1063 +msgid "" +"GIMP can obtain this information from your X-server.\n" +"However, most X-servers do not return useful values." +msgstr "" + +#: app/install.c:1070 +#, fuzzy, c-format +msgid "Get Resolution from X-server (Currently %d x %d dpi)" +msgstr "(Nyt %d x %d dpi)" + +#: app/install.c:1087 +msgid "Alternatively, you can set the monitor resolution manually." +msgstr "" + +#: app/install.c:1102 +#, fuzzy +msgid "Monitor Resolution X:" +msgstr "Hae nДytЖn resoluutio" + #: app/interface.c:312 msgid "" "Foreground & background colors. The black and white squares reset colors. " @@ -2850,8 +2973,8 @@ msgstr "V msgid "Guide procedures" msgstr "Apuviivojen proseduurit" -#: app/internal_procs.c:122 app/preferences_dialog.c:1772 -#: app/preferences_dialog.c:1774 +#: app/internal_procs.c:122 app/preferences_dialog.c:1733 +#: app/preferences_dialog.c:1735 msgid "Interface" msgstr "KДyttЖliittymД" @@ -3197,8 +3320,7 @@ msgid "" " --no-data Do not load patterns, gradients, palettes, " "brushes.\n" msgstr "" -" --no-data\t\t дlД lataa kuvioita, vДriliukumia, paletteja tai " -"siveltimiД.\n" +" --no-data дlД lataa kuvioita, vДriliukumia, paletteja tai siveltimiД.\n" #: app/main.c:284 msgid " --verbose Show startup messages.\n" @@ -3271,142 +3393,133 @@ msgid "degrees" msgstr "astetta" #. /File -#: app/menus.c:82 +#. the underscore installs an accelerator using the character that follows +#: app/menus.c:85 msgid "/_File" msgstr "/_Tiedosto" -#: app/menus.c:84 app/menus.c:191 +#. /File +#: app/menus.c:87 app/menus.c:193 msgid "/File/New..." msgstr "/Tiedosto/Uusi..." -#: app/menus.c:86 app/menus.c:193 +#: app/menus.c:89 app/menus.c:195 msgid "/File/Open..." msgstr "/Tiedosto/Avaa..." -#: app/menus.c:93 +#: app/menus.c:96 msgid "/File/Acquire" msgstr "/Tiedosto/Kuvan syЖttЖ" -#: app/menus.c:98 +#: app/menus.c:101 msgid "/File/Preferences..." msgstr "/Tiedosto/Asetukset..." -#: app/menus.c:105 -msgid "/File/Dialogs" -msgstr "/Tiedosto/Dialogit" - -#: app/menus.c:107 +#: app/menus.c:108 msgid "/File/Dialogs/Layers, Channels & Paths..." msgstr "/Tiedosto/Dialogit/Tasot, kanavat ja polut..." -#: app/menus.c:109 +#: app/menus.c:110 msgid "/File/Dialogs/Tool Options..." msgstr "/Tiedosto/Dialogit/TyЖkalujen asetukset..." -#: app/menus.c:114 +#: app/menus.c:115 msgid "/File/Dialogs/Brushes..." msgstr "/Tiedosto/Dialogit/Siveltimet..." -#: app/menus.c:116 +#: app/menus.c:117 msgid "/File/Dialogs/Patterns..." msgstr "/Tiedosto/Dialogit/Kuviot..." -#: app/menus.c:118 +#: app/menus.c:119 msgid "/File/Dialogs/Gradients..." msgstr "/Tiedosto/Dialogit/VДriliukumat..." -#: app/menus.c:120 +#: app/menus.c:121 msgid "/File/Dialogs/Palette..." msgstr "/Tiedosto/Dialogit/Paletit..." -#: app/menus.c:122 +#: app/menus.c:123 msgid "/File/Dialogs/Indexed Palette..." msgstr "/Tiedosto/Dialogit/Indeksoitu paletti..." -#: app/menus.c:127 +#: app/menus.c:128 msgid "/File/Dialogs/Input Devices..." msgstr "/Tiedosto/Dialogs/Piirtolaitteet..." -#: app/menus.c:129 +#: app/menus.c:130 msgid "/File/Dialogs/Device Status..." msgstr "/Tiedosto/Dialogit/Laitteiden tila..." -#: app/menus.c:134 +#: app/menus.c:135 msgid "/File/Dialogs/Document Index..." msgstr "/Tiedosto/Dialogit/Kuvahakemisto..." -#: app/menus.c:136 +#: app/menus.c:137 msgid "/File/Dialogs/Error Console..." msgstr "/Tiedosto/Dialogit/Konsoli virheilmoituksille..." -#: app/menus.c:138 +#: app/menus.c:139 msgid "/File/Dialogs/Display Filters..." msgstr "/Tiedosto/Dialogit/NДyttЖsuotimet..." -#: app/menus.c:148 app/menus.c:206 +#: app/menus.c:149 app/menus.c:208 msgid "/File/Quit" msgstr "/Tiedosto/Poistu" #. /Xtns -#: app/menus.c:153 +#. the underscore installs an accelerator using the character that follows +#: app/menus.c:155 msgid "/_Xtns" msgstr "/_LisДykset" -#: app/menus.c:155 +#: app/menus.c:157 msgid "/Xtns/Module Browser..." msgstr "/LisДykset/Moduuliselain..." #. /Help -#: app/menus.c:163 +#. the underscore installs an accelerator using the character that follows +#: app/menus.c:166 msgid "/_Help" msgstr "/_Apua" -#: app/menus.c:165 +#: app/menus.c:168 msgid "/Help/Help..." msgstr "/Apua/Apua..." -#: app/menus.c:167 +#: app/menus.c:170 msgid "/Help/Context Help..." msgstr "/Apua/Yhteysriippuva avustus..." -#: app/menus.c:169 +#: app/menus.c:172 msgid "/Help/Tip of the Day..." msgstr "/Apua/PДivДn vihje..." -#: app/menus.c:171 +#: app/menus.c:174 msgid "/Help/About..." msgstr "/Apua/Tietoja..." -#: app/menus.c:173 +#: app/menus.c:176 msgid "/Help/Dump Items (Debug)" msgstr "/Apua/" -#. /File -#: app/menus.c:189 -msgid "/File" -msgstr "/Tiedosto" - -#: app/menus.c:195 +#: app/menus.c:197 msgid "/File/Save" msgstr "/Tiedosto/Talleta" -#: app/menus.c:197 +#: app/menus.c:199 msgid "/File/Save As..." msgstr "/Tiedosto/Talleta nimellД..." -#: app/menus.c:199 +#: app/menus.c:201 msgid "/File/Revert" msgstr "/Tiedosto/Palauta" -#: app/menus.c:204 +#: app/menus.c:206 msgid "/File/Close" msgstr "/Tiedosto/Sulje" #. /Edit -#: app/menus.c:214 -msgid "/Edit" -msgstr "/Muokkaa" - #: app/menus.c:216 msgid "/Edit/Undo" msgstr "/Tiedosto/Kumoa" @@ -3437,671 +3550,590 @@ msgstr "/Muokkaa/Liimaa uutena" #. /Edit/Buffer #: app/menus.c:236 -msgid "/Edit/Buffer" -msgstr "/Muokkaa/LeikepЖytД" - -#: app/menus.c:238 msgid "/Edit/Buffer/Cut Named..." msgstr "/Muokkaa/LeikepЖytД/Leikkaa nimetty..." -#: app/menus.c:240 +#: app/menus.c:238 msgid "/Edit/Buffer/Copy Named..." msgstr "/Muokkaa/LeikepЖytД/Kopioi nimetty..." -#: app/menus.c:242 +#: app/menus.c:240 msgid "/Edit/Buffer/Paste Named..." msgstr "/Muokkaa/LeikepЖytД/Liimaa nimetty..." -#: app/menus.c:247 +#: app/menus.c:245 msgid "/Edit/Clear" msgstr "/Muokkaa/TyhjennД" -#: app/menus.c:249 +#: app/menus.c:247 msgid "/Edit/Fill" msgstr "/Muokkaa/TДytД" -#: app/menus.c:251 +#: app/menus.c:249 msgid "/Edit/Stroke" msgstr "/Muokkaa/PiirrД polkua pitkin" #. /Select -#: app/menus.c:259 -msgid "/Select" -msgstr "/Valitse" - -#: app/menus.c:261 +#: app/menus.c:257 msgid "/Select/Invert" msgstr "/Valitse/Invertoi" -#: app/menus.c:263 +#: app/menus.c:259 msgid "/Select/All" msgstr "/Valitse/Kokonaan" -#: app/menus.c:265 +#: app/menus.c:261 msgid "/Select/None" msgstr "/Valitse/Ei mitДДn" -#: app/menus.c:267 +#: app/menus.c:263 msgid "/Select/Float" msgstr "/Valitse/Kelluva" -#: app/menus.c:272 +#: app/menus.c:268 msgid "/Select/Feather..." msgstr "/Valitse/PehmennД..." -#: app/menus.c:274 +#: app/menus.c:270 msgid "/Select/Sharpen" msgstr "/Valitse/TerДvЖitД" -#: app/menus.c:276 +#: app/menus.c:272 msgid "/Select/Shrink..." msgstr "/Valitse/PienennД..." -#: app/menus.c:278 +#: app/menus.c:274 msgid "/Select/Grow..." msgstr "/Valitse/Kasvata..." -#: app/menus.c:280 +#: app/menus.c:276 msgid "/Select/Border..." msgstr "/Valitse/Reuna..." -#: app/menus.c:285 +#: app/menus.c:281 msgid "/Select/Save to Channel" msgstr "/Valitse/Talleta kanavalle" #. /View -#: app/menus.c:290 -msgid "/View" -msgstr "/NДytД" - -#: app/menus.c:292 +#: app/menus.c:286 msgid "/View/Zoom In" msgstr "/NДytД/Zoomaa sisДДn" -#: app/menus.c:294 +#: app/menus.c:288 msgid "/View/Zoom Out" msgstr "/NДytД/Zoomaa ulos" #. /View/Zoom -#: app/menus.c:299 -msgid "/View/Zoom" -msgstr "/NДytД/Zoomaa sisДДn" - -#: app/menus.c:301 +#: app/menus.c:293 msgid "/View/Zoom/16:1" msgstr "/NДytД/Zoom/16:1" -#: app/menus.c:303 +#: app/menus.c:295 msgid "/View/Zoom/8:1" msgstr "/NДytД/Zoom/8:1" -#: app/menus.c:305 +#: app/menus.c:297 msgid "/View/Zoom/4:1" msgstr "/NДytД/Zoom/4:1" -#: app/menus.c:307 +#: app/menus.c:299 msgid "/View/Zoom/2:1" msgstr "/NДytД/Zoom/2:1" -#: app/menus.c:309 +#: app/menus.c:301 msgid "/View/Zoom/1:1" msgstr "/NДytД/Zoom/1:1" -#: app/menus.c:311 +#: app/menus.c:303 msgid "/View/Zoom/1:2" msgstr "/NДytД/Zoom/1:2" -#: app/menus.c:313 +#: app/menus.c:305 msgid "/View/Zoom/1:4" msgstr "/NДytД/Zoom/1:4" -#: app/menus.c:315 +#: app/menus.c:307 msgid "/View/Zoom/1:8" msgstr "/NДytД/Zoom/1:8" -#: app/menus.c:317 +#: app/menus.c:309 msgid "/View/Zoom/1:16" msgstr "/NДytД/Zoom/1:16" -#: app/menus.c:320 +#: app/menus.c:312 msgid "/View/Dot for Dot" msgstr "/NДytД/Piste pisteeltД" -#: app/menus.c:325 +#: app/menus.c:317 msgid "/View/Info Window..." msgstr "/NДytД/Ikkunan tiedot..." -#: app/menus.c:327 +#: app/menus.c:319 msgid "/View/Nav. Window..." msgstr "/NДytД/Ikkunan tiedot..." -#: app/menus.c:329 -msgid "/View/Undo History..." -msgstr "/NДytД/Toimintohistoria..." - -#: app/menus.c:334 +#: app/menus.c:324 msgid "/View/Toggle Selection" msgstr "/NДytД/Vaihda valinta" -#: app/menus.c:336 +#: app/menus.c:326 msgid "/View/Toggle Rulers" msgstr "/NДytД/Vaihda viivottimet" -#: app/menus.c:338 +#: app/menus.c:328 msgid "/View/Toggle Statusbar" msgstr "/NДytД/Vaihda infopalkki" -#: app/menus.c:340 +#: app/menus.c:330 msgid "/View/Toggle Guides" msgstr "/NДytД/Vaihda apuviivat" -#: app/menus.c:342 +#: app/menus.c:332 msgid "/View/Snap to Guides" msgstr "/NДytД/Naksahda apuviivoihin" -#: app/menus.c:347 +#: app/menus.c:337 msgid "/View/New View" msgstr "/NДytД/Uusi nДkymД" -#: app/menus.c:349 +#: app/menus.c:339 msgid "/View/Shrink Wrap" msgstr "/NДytД/Koko kuva" -#. /Image -#: app/menus.c:357 -msgid "/Image" -msgstr "/Kuva" - #. /Image/Mode -#: app/menus.c:362 -msgid "/Image/Mode" -msgstr "/Kuva/Muoto" - -#: app/menus.c:364 +#: app/menus.c:344 msgid "/Image/Mode/RGB" msgstr "/Kuva/Muoto/RGB" -#: app/menus.c:366 +#: app/menus.c:346 msgid "/Image/Mode/Grayscale" msgstr "/Kuva/Muoto/HarmaasДvy" -#: app/menus.c:368 +#: app/menus.c:348 msgid "/Image/Mode/Indexed..." msgstr "/Kuva/Muoto/Indeksoitu" #. /Image/Colors -#: app/menus.c:376 -msgid "/Image/Colors" -msgstr "/Kuva/VДrit" - -#: app/menus.c:381 +#: app/menus.c:356 msgid "/Image/Colors/Desaturate" msgstr "/Kuva/VДrit/VДhennД kyllДisyyttД" -#: app/menus.c:383 +#: app/menus.c:358 msgid "/Image/Colors/Invert" msgstr "/Kuva/VДrit/Invertoi" #. /Image/Colors/Auto -#: app/menus.c:391 -msgid "/Image/Colors/Auto" -msgstr "/Kuva/VДrit/Automaattinen" - -#: app/menus.c:393 +#: app/menus.c:366 msgid "/Image/Colors/Auto/Equalize" msgstr "/Kuva/VДrit/Automaattinen/Ekvalisoi" #. /Image/Alpha -#: app/menus.c:401 -msgid "/Image/Alpha" -msgstr "/Kuva/Alfakanava" - -#: app/menus.c:403 +#: app/menus.c:374 msgid "/Image/Alpha/Add Alpha Channel" msgstr "/Kuva/Alfakanava/LisДД alfakanava" #. /Image/Transforms -#: app/menus.c:408 -msgid "/Image/Transforms" -msgstr "/Kuva/Muunnokset" - -#: app/menus.c:410 +#: app/menus.c:379 msgid "/Image/Transforms/Offset..." msgstr "/Kuva/Muunnokset/SiirtymД..." -#: app/menus.c:412 +#: app/menus.c:381 msgid "/Image/Transforms/Rotate" msgstr "/Kuva/Muunnokset/Kierto" -#: app/menus.c:419 +#: app/menus.c:388 msgid "/Image/Canvas Size..." msgstr "/Kuva/Muokkaa kokoa..." -#: app/menus.c:421 +#: app/menus.c:390 msgid "/Image/Scale Image..." msgstr "/Kuva/Skaalaa..." -#: app/menus.c:423 +#: app/menus.c:392 msgid "/Image/Duplicate" msgstr "/Kuva/Kahdenna" #. /Layers -#: app/menus.c:431 -msgid "/Layers" -msgstr "/Tasot" - -#: app/menus.c:433 +#: app/menus.c:400 msgid "/Layers/Layers, Channels & Paths..." msgstr "/Tasot/Tasot, kanavat & polut..." -#. /Layers/Stack -#: app/menus.c:438 -msgid "/Layers/Stack" -msgstr "/Tasot/Pino" +#: app/menus.c:404 +msgid "/Layers/Layer to Imagesize" +msgstr "/Tasot/Tasosta kuvan kokoinen" -#: app/menus.c:440 +#. /Layers/Stack +#: app/menus.c:409 msgid "/Layers/Stack/Previous Layer" msgstr "/Tasot/Pino/Edellinen taso" -#: app/menus.c:442 +#: app/menus.c:411 msgid "/Layers/Stack/Next Layer" msgstr "/Tasot/Pino/Seuraava taso" -#: app/menus.c:444 +#: app/menus.c:413 msgid "/Layers/Stack/Raise Layer" msgstr "/Tasot/Pino/Nosta taso" -#: app/menus.c:446 +#: app/menus.c:415 msgid "/Layers/Stack/Lower Layer" msgstr "/Tasot/Pino/Alenna taso" -#: app/menus.c:448 +#: app/menus.c:417 msgid "/Layers/Stack/Layer to Top" msgstr "/Tasot/Pino/Nosta taso pДДllimmДiseksi" -#: app/menus.c:450 +#: app/menus.c:419 msgid "/Layers/Stack/Layer to Bottom" msgstr "/Tasot/Pino/Laske taso pohjimmaiseksi" #. /Layers/Rotate -#: app/menus.c:457 +#: app/menus.c:426 msgid "/Layers/Rotate" msgstr "/Tasot/KierrДtД" -#: app/menus.c:460 -msgid "/Layers/Layer to Imagesize" -msgstr "/Tasot/Tasosta kuvan kokoinen" - -#: app/menus.c:465 +#: app/menus.c:431 msgid "/Layers/Anchor Layer" msgstr "/Tasot/Ankkuroi taso" -#: app/menus.c:467 +#: app/menus.c:433 msgid "/Layers/Merge Visible Layers..." msgstr "/Tasot/YhdistД nДkyvДt tasot..." -#: app/menus.c:469 +#: app/menus.c:435 msgid "/Layers/Flatten Image" msgstr "/Tasot/YhdistД kuva" -#: app/menus.c:474 +#: app/menus.c:440 msgid "/Layers/Mask to Selection" msgstr "/Tasot/Maski valinnaksi" -#: app/menus.c:479 +#: app/menus.c:445 msgid "/Layers/Add Alpha Channel" msgstr "/Tasot/LisДД alfakanava" -#: app/menus.c:481 +#: app/menus.c:447 msgid "/Layers/Alpha to Selection" msgstr "/Tasot/Alfakanava valinnaksi" #. /Tools -#: app/menus.c:489 -msgid "/Tools" -msgstr "/TyЖkalut" - -#: app/menus.c:491 +#: app/menus.c:455 msgid "/Tools/Toolbox" msgstr "/TyЖkalut/TyЖkalulaatikko" -#: app/menus.c:493 +#: app/menus.c:457 msgid "/Tools/Default Colors" msgstr "/TyЖkalut/OletusvДrit" -#: app/menus.c:495 +#: app/menus.c:459 msgid "/Tools/Swap Colors" msgstr "/TyЖkalut/Vaihda vДrit" -#: app/menus.c:501 -msgid "/Tools/Select Tools" -msgstr "/TyЖkalut/Valinnat" - -#: app/menus.c:503 -msgid "/Tools/Transform Tools" -msgstr "/TyЖkalut/Muunnokset" - -#: app/menus.c:505 -msgid "/Tools/Paint Tools" -msgstr "/TyЖkalut/PiirtotyЖkalut" - #. /Dialogs -#: app/menus.c:510 -msgid "/Dialogs" -msgstr "/Dialogit" - -#: app/menus.c:512 +#: app/menus.c:466 msgid "/Dialogs/Layers, Channels & Paths..." msgstr "/Dialogit/Tasot, kanavat & polut..." -#: app/menus.c:514 +#: app/menus.c:468 msgid "/Dialogs/Tool Options..." msgstr "/Dialogit/TyЖkalujen asetukset" -#: app/menus.c:519 +#: app/menus.c:473 msgid "/Dialogs/Brushes..." msgstr "/Dialogit/Siveltimet..." -#: app/menus.c:521 +#: app/menus.c:475 msgid "/Dialogs/Patterns..." msgstr "/Dialogit/Kuviot..." -#: app/menus.c:523 +#: app/menus.c:477 msgid "/Dialogs/Gradients..." msgstr "/Dialogit/VДriliukumien muokkain..." -#: app/menus.c:525 +#: app/menus.c:479 msgid "/Dialogs/Palette..." msgstr "/Dialogit/Paletit..." -#: app/menus.c:527 +#: app/menus.c:481 msgid "/Dialogs/Indexed Palette..." msgstr "/Dialogit/Indeksoitu paletti..." -#: app/menus.c:532 +#: app/menus.c:486 msgid "/Dialogs/Input Devices..." msgstr "/Dialogit/Piirtolaitteet..." -#: app/menus.c:534 +#: app/menus.c:488 msgid "/Dialogs/Device Status..." msgstr "/Dialogit/Laitteiden tila..." -#: app/menus.c:539 +#: app/menus.c:493 msgid "/Dialogs/Document Index..." msgstr "/Dialogit/Kuvahakemisto..." -#: app/menus.c:541 +#: app/menus.c:495 msgid "/Dialogs/Error Console..." msgstr "/Dialogit/Konsoli virheilmoituksille..." -#: app/menus.c:543 +#: app/menus.c:497 msgid "/Dialogs/Display Filters..." msgstr "/Dialogit/NДyttЖsuotimet..." -#. /Filters -#: app/menus.c:551 -msgid "/Filters" -msgstr "/Suotimet" +#: app/menus.c:499 +#, fuzzy +msgid "/Dialogs/Undo History..." +msgstr "/NДytД/Toimintohistoria..." -#: app/menus.c:553 +#. /Filters +#: app/menus.c:508 msgid "/Filters/Repeat Last" msgstr "/Suotimet/Toista edellinen" -#: app/menus.c:555 +#: app/menus.c:510 msgid "/Filters/Re-Show Last" msgstr "/Suotimet/NДytД uudelleen edellinen" -#: app/menus.c:561 +#: app/menus.c:515 msgid "/Filters/Blur" msgstr "/Suotimet/Tee epДterДvДksi" -#: app/menus.c:564 +#: app/menus.c:517 msgid "/Filters/Colors" msgstr "/Suotimet/VДrit" -#: app/menus.c:569 +#: app/menus.c:519 msgid "/Filters/Noise" msgstr "/Suotimet/LisДД kohinaa" -#: app/menus.c:571 +#: app/menus.c:521 msgid "/Filters/Edge-Detect" msgstr "/Suotimet/LЖydД reunoja" -#: app/menus.c:573 +#: app/menus.c:523 msgid "/Filters/Enhance" msgstr "/Suotimet/Paranna" -#: app/menus.c:575 +#: app/menus.c:525 msgid "/Filters/Generic" msgstr "/Suotimet/Yleiset" -#: app/menus.c:580 +#: app/menus.c:530 msgid "/Filters/Glass Effects" msgstr "/Suotimet/Lasiefektit" -#: app/menus.c:582 +#: app/menus.c:532 msgid "/Filters/Light Effects" msgstr "/Suotimet/Valoefektit" -#: app/menus.c:584 +#: app/menus.c:534 msgid "/Filters/Distorts" msgstr "/Suotimet/VДДristykset" -#: app/menus.c:586 +#: app/menus.c:536 msgid "/Filters/Artistic" msgstr "/Suotimet/Taiteelliset" -#: app/menus.c:588 +#: app/menus.c:538 msgid "/Filters/Map" msgstr "/Suotimet/Kuvaukset" -#: app/menus.c:590 +#: app/menus.c:540 msgid "/Filters/Render" msgstr "/Suotimet/Muodosta kuva" -#: app/menus.c:592 +#: app/menus.c:542 msgid "/Filters/Web" msgstr "/Suotimet/Webbi" -#: app/menus.c:597 +#: app/menus.c:547 msgid "/Filters/Animation" msgstr "/Suotimet/Animaatio" -#: app/menus.c:599 +#: app/menus.c:549 msgid "/Filters/Combine" msgstr "/Suotimet/YhdistД" -#: app/menus.c:604 +#: app/menus.c:554 msgid "/Filters/Toys" msgstr "/Suotimet/Lelut" -#. /Script-Fu -#: app/menus.c:609 -msgid "/Script-Fu" -msgstr "/Script-Fu" - -#: app/menus.c:620 +#: app/menus.c:567 msgid "/Automatic" msgstr "/Automaattinen" -#: app/menus.c:634 +#: app/menus.c:581 msgid "/By Extension" msgstr "/Nimen loppuliitteen mukaan" -#: app/menus.c:648 +#: app/menus.c:595 msgid "/New Layer..." msgstr "/Uusi taso..." #. /Stack -#: app/menus.c:653 -msgid "/Stack" -msgstr "/Pino" - -#: app/menus.c:655 +#: app/menus.c:600 msgid "/Stack/Raise Layer" msgstr "/Pino/Nosta taso" -#: app/menus.c:657 +#: app/menus.c:602 msgid "/Stack/Lower Layer" msgstr "/Pino/Alenna taso" -#: app/menus.c:659 +#: app/menus.c:604 msgid "/Stack/Layer to Top" msgstr "/Pino/Nosta taso pДДllimmДiseksi" -#: app/menus.c:661 +#: app/menus.c:606 msgid "/Stack/Layer to Bottom" msgstr "/Pino/Alenna taso pohjimmaiseksi" -#: app/menus.c:664 +#: app/menus.c:609 msgid "/Duplicate Layer" msgstr "/Kahdenna taso" -#: app/menus.c:666 +#: app/menus.c:611 msgid "/Anchor Layer" msgstr "/Ankkuroi taso" -#: app/menus.c:668 +#: app/menus.c:613 msgid "/Delete Layer" msgstr "/Poista taso" -#: app/menus.c:673 +#: app/menus.c:618 msgid "/Layer Boundary Size..." msgstr "/Tason rajan koko..." -#: app/menus.c:675 +#: app/menus.c:620 msgid "/Layer to Imagesize" msgstr "/Taso kuvan kokoiseksi" -#: app/menus.c:677 +#: app/menus.c:622 msgid "/Scale Layer..." msgstr "/Skaalaa tasoa..." -#: app/menus.c:682 +#: app/menus.c:627 msgid "/Merge Visible Layers..." msgstr "/YhdistД nДkyvДt tasot..." -#: app/menus.c:684 +#: app/menus.c:629 msgid "/Merge Down" msgstr "/YhdistД alas" -#: app/menus.c:686 +#: app/menus.c:631 msgid "/Flatten Image" msgstr "/YhdistД kuva" -#: app/menus.c:691 +#: app/menus.c:636 msgid "/Add Layer Mask..." msgstr "/LisДД tason maski..." -#: app/menus.c:693 +#: app/menus.c:638 msgid "/Apply Layer Mask" msgstr "/Sovella tason maskia" -#: app/menus.c:695 +#: app/menus.c:640 msgid "/Delete Layer Mask" msgstr "/Poista tason maski" -#: app/menus.c:697 +#: app/menus.c:642 msgid "/Mask to Selection" msgstr "/Maski valinnaksi" -#: app/menus.c:702 +#: app/menus.c:647 msgid "/Add Alpha Channel" msgstr "/LisДД alfakanava" -#: app/menus.c:704 +#: app/menus.c:649 msgid "/Alpha to Selection" msgstr "/Alfakanava valinnaksi" -#: app/menus.c:709 +#: app/menus.c:654 msgid "/Edit Layer Attributes..." msgstr "/Muokkaa tason ominaisuuksia..." -#: app/menus.c:720 +#: app/menus.c:665 msgid "/New Channel..." msgstr "/Uusi kanava..." -#: app/menus.c:722 +#: app/menus.c:667 msgid "/Raise Channel" msgstr "/Nosta kanava" -#: app/menus.c:724 +#: app/menus.c:669 msgid "/Lower Channel" msgstr "/Laske kanava" -#: app/menus.c:726 +#: app/menus.c:671 msgid "/Duplicate Channel" msgstr "/Kahdenna kanava" -#: app/menus.c:731 +#: app/menus.c:676 msgid "/Channel to Selection" msgstr "/Kanava valinnaksi" -#: app/menus.c:733 +#: app/menus.c:678 msgid "/Add to Selection" msgstr "/LisДД valintaan" -#: app/menus.c:735 +#: app/menus.c:680 msgid "/Subtract from Selection" msgstr "/VДhennД valinnasta" -#: app/menus.c:737 +#: app/menus.c:682 msgid "/Intersect with Selection" msgstr "/Leikkaa valinnan kanssa" -#: app/menus.c:742 +#: app/menus.c:687 msgid "/Delete Channel" msgstr "/Poista kanava" -#: app/menus.c:747 +#: app/menus.c:692 msgid "/Edit Channel Attributes..." msgstr "/Muokkaa kanavan ominaisuuksia..." -#: app/menus.c:758 +#: app/menus.c:703 msgid "/New Path" msgstr "/Uusi polku" -#: app/menus.c:760 +#: app/menus.c:705 msgid "/Duplicate Path" msgstr "/Kahdenna polku" -#: app/menus.c:762 +#: app/menus.c:707 msgid "/Path to Selection" msgstr "/Polku valinnaksi" -#: app/menus.c:764 +#: app/menus.c:709 msgid "/Selection to Path" msgstr "/Valinta poluksi" -#: app/menus.c:766 +#: app/menus.c:711 msgid "/Stroke Path" msgstr "/PiittД polkua pitkin" -#: app/menus.c:768 +#: app/menus.c:713 msgid "/Delete Path" msgstr "/Poista polku" -#: app/menus.c:773 +#: app/menus.c:718 msgid "/Copy Path" msgstr "/Kopioi polku" -#: app/menus.c:775 +#: app/menus.c:720 msgid "/Paste Path" msgstr "/Liimaa polku" -#: app/menus.c:777 +#: app/menus.c:722 msgid "/Import Path..." msgstr "/Tuo polku tiedostosta..." -#: app/menus.c:779 +#: app/menus.c:724 msgid "/Export Path..." msgstr "/Vie polku tiedostoon..." -#: app/menus.c:784 +#: app/menus.c:729 msgid "/Edit Path Attributes..." msgstr "/Muokkaa polun ominaisuuksia" -#: app/menus.c:1310 +#: app/menus.c:1260 #, c-format msgid "Error opening file: %s\n" msgstr "Virhe tiedoston avauksessa: %s\n" @@ -4197,7 +4229,7 @@ msgstr "Tila: " msgid "Autoload during startup" msgstr "Lataa automaattisesti kДynnistyksessД" -#: app/move.c:456 +#: app/move.c:458 msgid "Move Tool" msgstr "SiirtotyЖkalu" @@ -4211,7 +4243,7 @@ msgstr "Ikkuna-navigointi:%s-%d.%d" msgid "Navigation: No Image" msgstr "" -#: app/paint_core.c:717 +#: app/paint_core.c:735 msgid "No brushes available for use with this tool." msgstr "Ei siveltimiД kДytettДvissД tДlle tyЖkalulle." @@ -4636,477 +4668,471 @@ msgid "You will need to restart GIMP for these changes to take effect." msgstr "" "Sinun pitДД kДynnistДД GIMP uudestaan jotta muutokset astuisivat voimaan." -#: app/preferences_dialog.c:1459 +#: app/preferences_dialog.c:1002 +#, c-format +msgid "The default comments is limited to %d characters." +msgstr "" + +#: app/preferences_dialog.c:1424 msgid "Preferences" msgstr "Asetukset" #. The categories tree -#: app/preferences_dialog.c:1481 +#: app/preferences_dialog.c:1446 msgid "Categories" msgstr "Osa-alueet" -#: app/preferences_dialog.c:1509 app/preferences_dialog.c:1511 +#: app/preferences_dialog.c:1474 app/preferences_dialog.c:1476 msgid "New File" msgstr "Uusi tiedosto" -#: app/preferences_dialog.c:1522 +#: app/preferences_dialog.c:1487 msgid "Default Image Size and Unit" msgstr "Kuvan oletuskoko ja kДytetty mittayksikkЖ" -#: app/preferences_dialog.c:1536 +#: app/preferences_dialog.c:1501 msgid "Width" msgstr "Leveys" -#: app/preferences_dialog.c:1538 +#: app/preferences_dialog.c:1503 msgid "Height" msgstr "Korkeus" -#: app/preferences_dialog.c:1568 +#: app/preferences_dialog.c:1533 msgid "Default Image Resolution and Resolution Unit" msgstr "Kuvan oletusresoluutio ja sen mittayksikkЖ" -#: app/preferences_dialog.c:1595 app/preferences_dialog.c:2359 +#: app/preferences_dialog.c:1560 app/preferences_dialog.c:2288 msgid "dpi" msgstr "" -#: app/preferences_dialog.c:1642 +#: app/preferences_dialog.c:1607 msgid "Default Image Type:" msgstr "Oletuskuvamuoto" -#: app/preferences_dialog.c:1678 app/preferences_dialog.c:2166 -msgid "Bytes" -msgstr "Tavuja" - -#: app/preferences_dialog.c:1679 app/preferences_dialog.c:2167 -msgid "KiloBytes" -msgstr "Kilotavujan" - -#: app/preferences_dialog.c:1680 app/preferences_dialog.c:2168 -msgid "MegaBytes" -msgstr "megatavua" - -#: app/preferences_dialog.c:1686 +#: app/preferences_dialog.c:1618 msgid "Maximum Image Size:" msgstr "Kuvan enimmДiskoko:" -#: app/preferences_dialog.c:1692 app/preferences_dialog.c:1694 +#: app/preferences_dialog.c:1623 app/preferences_dialog.c:1625 +#, fuzzy +msgid "Default Comment" +msgstr "Oletus" + +#: app/preferences_dialog.c:1633 +msgid "Comment Used for New Images" +msgstr "" + +#: app/preferences_dialog.c:1653 app/preferences_dialog.c:1655 msgid "Display" msgstr "NДyttЖ" -#: app/preferences_dialog.c:1702 +#: app/preferences_dialog.c:1663 msgid "Transparency" msgstr "LДpinДkyvДt alueet" -#: app/preferences_dialog.c:1721 +#: app/preferences_dialog.c:1682 msgid "Light Checks" msgstr "vaalea ruudutus" -#: app/preferences_dialog.c:1722 +#: app/preferences_dialog.c:1683 msgid "Mid-Tone Checks" msgstr "keskitumma ruudutus" -#: app/preferences_dialog.c:1723 +#: app/preferences_dialog.c:1684 msgid "Dark Checks" msgstr "tumma ruudutus" -#: app/preferences_dialog.c:1724 +#: app/preferences_dialog.c:1685 msgid "White Only" msgstr "pelkkДД valkoista" -#: app/preferences_dialog.c:1725 +#: app/preferences_dialog.c:1686 msgid "Gray Only" msgstr "pelkkДД harmaata" -#: app/preferences_dialog.c:1726 +#: app/preferences_dialog.c:1687 msgid "Black Only" msgstr "pelkkДД mustaa" -#: app/preferences_dialog.c:1730 +#: app/preferences_dialog.c:1691 msgid "Transparency Type:" msgstr "LДpinДkyvДt alueet:" -#: app/preferences_dialog.c:1737 app/preferences_dialog.c:1810 -#: app/preferences_dialog.c:1824 +#: app/preferences_dialog.c:1698 app/preferences_dialog.c:1771 +#: app/preferences_dialog.c:1785 msgid "Small" msgstr "pieni" -#: app/preferences_dialog.c:1738 app/preferences_dialog.c:1811 -#: app/preferences_dialog.c:1825 +#: app/preferences_dialog.c:1699 app/preferences_dialog.c:1772 +#: app/preferences_dialog.c:1786 msgid "Medium" msgstr "keski" -#: app/preferences_dialog.c:1739 app/preferences_dialog.c:1812 -#: app/preferences_dialog.c:1826 +#: app/preferences_dialog.c:1700 app/preferences_dialog.c:1773 +#: app/preferences_dialog.c:1787 msgid "Large" msgstr "iso" -#: app/preferences_dialog.c:1743 +#: app/preferences_dialog.c:1704 msgid "Check Size:" msgstr "Ruudutuksen koko:" -#: app/preferences_dialog.c:1746 +#: app/preferences_dialog.c:1707 msgid "8-Bit Displays" msgstr "8-bittiset nДytЖt" -#: app/preferences_dialog.c:1751 +#: app/preferences_dialog.c:1712 msgid "Install Colormap" msgstr "Asenna oma vДripaletti" -#: app/preferences_dialog.c:1760 +#: app/preferences_dialog.c:1721 msgid "Colormap Cycling" msgstr "KierrДtД palettia" -#: app/preferences_dialog.c:1809 +#: app/preferences_dialog.c:1770 msgid "Tiny" msgstr "hyvin pieni" -#: app/preferences_dialog.c:1813 +#: app/preferences_dialog.c:1774 msgid "Huge" msgstr "valtava" -#: app/preferences_dialog.c:1817 +#: app/preferences_dialog.c:1778 msgid "Preview Size:" msgstr "Esikatselukoko:" -#: app/preferences_dialog.c:1830 +#: app/preferences_dialog.c:1791 msgid "Nav Preview Size:" msgstr "Suunnistusikkunan koko:" -#: app/preferences_dialog.c:1840 +#: app/preferences_dialog.c:1801 msgid "Recent Documents List Size:" msgstr "дskettДisten kuvien lukumДДrД Tiedosto-valikossa:" #. Indicators -#: app/preferences_dialog.c:1844 +#: app/preferences_dialog.c:1805 msgid "Toolbox" msgstr "TyЖkalulaatikko" -#: app/preferences_dialog.c:1847 +#: app/preferences_dialog.c:1808 msgid "Display Brush, Pattern and Gradient Indicators" msgstr "NДytД sivellin, kuvio ja vДriluikuma tyЖkalulaatikossa" -#: app/preferences_dialog.c:1856 +#: app/preferences_dialog.c:1817 msgid "Dialog Behaviour" msgstr "Dialogin kДyttДytyminen" -#: app/preferences_dialog.c:1858 +#: app/preferences_dialog.c:1819 msgid "Navigation Window per Display" msgstr "Suunnistusikkuna nДyttЖД kohti" -#: app/preferences_dialog.c:1867 +#: app/preferences_dialog.c:1828 msgid "Info Window Follows Mouse" msgstr "Infoikkuna seuraa osoitinta" -#: app/preferences_dialog.c:1878 app/preferences_dialog.c:1880 +#: app/preferences_dialog.c:1839 app/preferences_dialog.c:1841 msgid "Help System" msgstr "Avustukset" -#: app/preferences_dialog.c:1890 +#: app/preferences_dialog.c:1851 msgid "Show Tool Tips" msgstr "NДytД tyЖkaluvihjeet" -#: app/preferences_dialog.c:1900 +#: app/preferences_dialog.c:1861 msgid "Context Sensitive Help with \"F1\"" msgstr "Yhteysriippuvaa avustusta \"F1\":llД" -#: app/preferences_dialog.c:1909 +#: app/preferences_dialog.c:1870 msgid "Help Browser" msgstr "Selain avustuksille" -#: app/preferences_dialog.c:1921 +#: app/preferences_dialog.c:1882 msgid "Internal" msgstr "sisДinen" -#: app/preferences_dialog.c:1922 +#: app/preferences_dialog.c:1883 msgid "Netscape" msgstr "" -#: app/preferences_dialog.c:1926 +#: app/preferences_dialog.c:1887 msgid "Help Browser to Use:" msgstr "KДytettДvД selain avustuksille" -#: app/preferences_dialog.c:1931 app/preferences_dialog.c:1933 +#: app/preferences_dialog.c:1892 app/preferences_dialog.c:1894 msgid "Image Windows" msgstr "Kuvaikkunat" -#: app/preferences_dialog.c:1941 +#: app/preferences_dialog.c:1902 msgid "Appearance" msgstr "Kuvaikkunan esitys" -#: app/preferences_dialog.c:1943 +#: app/preferences_dialog.c:1904 msgid "Use \"Dot for Dot\" by default" msgstr "" -#: app/preferences_dialog.c:1952 +#: app/preferences_dialog.c:1913 msgid "Resize Window on Zoom" msgstr "Muuta ikkunan kokoa zoomattaessa" -#: app/preferences_dialog.c:1961 +#: app/preferences_dialog.c:1922 msgid "Show Rulers" msgstr "NДytД viivottimet" -#: app/preferences_dialog.c:1970 +#: app/preferences_dialog.c:1931 msgid "Show Statusbar" msgstr "NДytД infopalkki" -#: app/preferences_dialog.c:1994 +#: app/preferences_dialog.c:1955 msgid "Marching Ants Speed:" msgstr "Muurahaisten nopeus:" #. Set the currently used string as "Custom" -#: app/preferences_dialog.c:2002 +#: app/preferences_dialog.c:1963 msgid "Custom" msgstr "RДДtДlЖity" #. set some commonly used format strings -#: app/preferences_dialog.c:2008 +#: app/preferences_dialog.c:1969 msgid "Standard" msgstr "Vakio" -#: app/preferences_dialog.c:2013 +#: app/preferences_dialog.c:1974 msgid "Show zoom percentage" msgstr "NДytД zoomausprosentti" -#: app/preferences_dialog.c:2018 +#: app/preferences_dialog.c:1979 msgid "Show zoom ratio" msgstr "NДytД zoomaussuhde" -#: app/preferences_dialog.c:2023 +#: app/preferences_dialog.c:1984 msgid "Show reversed zoom ratio" msgstr "NДytД kДДnteinen zoomaussuhde" -#: app/preferences_dialog.c:2034 +#: app/preferences_dialog.c:1995 msgid "Image Title Format:" msgstr "Kuvan otsikon formaatti" #. End of the title format string -#: app/preferences_dialog.c:2038 +#: app/preferences_dialog.c:1999 msgid "Pointer Movement Feedback" msgstr "Osoittimen liikkeen palaute" -#: app/preferences_dialog.c:2041 +#: app/preferences_dialog.c:2002 msgid "Perfect-but-Slow Pointer Tracking" msgstr "TДydellinen mutta hidas osoittimen seuranta" -#: app/preferences_dialog.c:2050 +#: app/preferences_dialog.c:2011 msgid "Disable Cursor Updating" msgstr "Ei osoittimen pДivitystД" -#: app/preferences_dialog.c:2062 app/preferences_dialog.c:2064 +#: app/preferences_dialog.c:2023 app/preferences_dialog.c:2025 #: app/tools.c:1080 msgid "Tool Options" msgstr "TyЖkalujen asetukset" -#: app/preferences_dialog.c:2072 +#: app/preferences_dialog.c:2033 msgid "Paint Options" msgstr "Piirtoasetukset" -#: app/preferences_dialog.c:2075 +#: app/preferences_dialog.c:2036 msgid "Use Global Paint Options" msgstr "KДytД globaaleja piirtoasetuksia" -#: app/preferences_dialog.c:2090 app/preferences_dialog.c:2092 +#: app/preferences_dialog.c:2051 app/preferences_dialog.c:2053 msgid "Environment" msgstr "YmpДristЖ" -#: app/preferences_dialog.c:2100 +#: app/preferences_dialog.c:2061 msgid "Resource Consumption" msgstr "Resurssikulutus" -#: app/preferences_dialog.c:2102 +#: app/preferences_dialog.c:2063 msgid "Conservative Memory Usage" msgstr "SДДstД muistia" -#: app/preferences_dialog.c:2130 +#: app/preferences_dialog.c:2091 msgid "Levels of Undo:" msgstr "Kumoamistasoja" -#: app/preferences_dialog.c:2174 -msgid "Tile Cache Size:" -msgstr "KuvatiilivДlimuistin koko:" - -#: app/preferences_dialog.c:2185 +#: app/preferences_dialog.c:2113 msgid "Number of Processors to Use:" msgstr "KДytettДvien suorittimien lukumДДrД:" -#: app/preferences_dialog.c:2189 app/transform_tool.c:215 +#: app/preferences_dialog.c:2117 app/transform_tool.c:215 msgid "Scaling" msgstr "Skaalaus" -#: app/preferences_dialog.c:2207 +#: app/preferences_dialog.c:2135 msgid "Nearest Neighbor (Fast)" msgstr "lДhin naapuri (nopea)" -#: app/preferences_dialog.c:2211 +#: app/preferences_dialog.c:2139 msgid "Cubic (Slow)" msgstr "kuutiollinen (hidas)" -#: app/preferences_dialog.c:2216 +#: app/preferences_dialog.c:2144 msgid "Interpolation Type:" msgstr "InterpolaatiomenetelmД:" -#: app/preferences_dialog.c:2219 +#: app/preferences_dialog.c:2147 msgid "File Saving" msgstr "Tiedoston tallennus" -#: app/preferences_dialog.c:2236 app/preferences_dialog.c:2249 +#: app/preferences_dialog.c:2164 app/preferences_dialog.c:2177 msgid "Always" msgstr "aina" -#: app/preferences_dialog.c:2237 +#: app/preferences_dialog.c:2165 msgid "Never" msgstr "ei koskaan" -#: app/preferences_dialog.c:2241 +#: app/preferences_dialog.c:2169 msgid "Try to Write a Thumbnail File:" msgstr "YritД kirjoittaa esikatselukuva:" -#: app/preferences_dialog.c:2248 +#: app/preferences_dialog.c:2176 msgid "Only when Modified" msgstr "ainoastaan jos muokattu" -#: app/preferences_dialog.c:2253 +#: app/preferences_dialog.c:2181 msgid "\"File > Save\" Saves the Image:" msgstr "'Tiedosto > Talleta' tallettaa kuvan:" -#: app/preferences_dialog.c:2259 +#: app/preferences_dialog.c:2187 msgid "Session Management" msgstr "Istunnon hallinta" -#: app/preferences_dialog.c:2261 +#: app/preferences_dialog.c:2189 msgid "Session" msgstr "Istunto" -#: app/preferences_dialog.c:2269 +#: app/preferences_dialog.c:2197 msgid "Window Positions" msgstr "Ikkunoiden sijainnit" -#: app/preferences_dialog.c:2271 +#: app/preferences_dialog.c:2199 msgid "Save Window Positions on Exit" msgstr "Talleta ikkunoiden sijainnit poistuttaessa" -#: app/preferences_dialog.c:2285 +#: app/preferences_dialog.c:2213 msgid "Clear Saved Window Positions Now" msgstr "Unohda tallennetut ikkunoiden sijainnit" -#: app/preferences_dialog.c:2293 +#: app/preferences_dialog.c:2221 msgid "Always Try to Restore Session" msgstr "YritД aina palauttaa istunto" -#: app/preferences_dialog.c:2302 +#: app/preferences_dialog.c:2230 msgid "Devices" msgstr "Laitteet" -#: app/preferences_dialog.c:2304 +#: app/preferences_dialog.c:2232 msgid "Save Device Status on Exit" msgstr "Tallenna laitteiden tila poistuessa" -#: app/preferences_dialog.c:2315 app/preferences_dialog.c:2317 +#: app/preferences_dialog.c:2243 app/preferences_dialog.c:2245 msgid "Monitor" msgstr "NДyttЖ" -#: app/preferences_dialog.c:2325 +#: app/preferences_dialog.c:2253 msgid "Get Monitor Resolution" msgstr "Hae nДytЖn resoluutio" -#: app/preferences_dialog.c:2333 +#: app/preferences_dialog.c:2261 #, c-format msgid "(Currently %d x %d dpi)" msgstr "(Nyt %d x %d dpi)" -#: app/preferences_dialog.c:2384 +#: app/preferences_dialog.c:2313 msgid "From X Server" msgstr "Ohjelmallisesti" -#: app/preferences_dialog.c:2399 +#: app/preferences_dialog.c:2328 msgid "Manually:" msgstr "Manuaalisesti:" -#: app/preferences_dialog.c:2412 app/preferences_dialog.c:2414 +#: app/preferences_dialog.c:2341 app/preferences_dialog.c:2343 msgid "Directories" msgstr "Kansiot" -#: app/preferences_dialog.c:2431 +#: app/preferences_dialog.c:2360 msgid "Temp Dir:" msgstr "TilapДistiedostoille:" -#: app/preferences_dialog.c:2431 +#: app/preferences_dialog.c:2360 msgid "Select Temp Dir" msgstr "Valitse tilapДistiedostojen kansio" -#: app/preferences_dialog.c:2432 +#: app/preferences_dialog.c:2361 msgid "Swap Dir:" msgstr "Sivutuskansio:" -#: app/preferences_dialog.c:2432 -msgid "Select Swap Dir" -msgstr "Valitse sivutuskansio" - -#: app/preferences_dialog.c:2468 +#: app/preferences_dialog.c:2397 msgid "Brushes Directories" msgstr "Sivellinkansiot" -#: app/preferences_dialog.c:2470 +#: app/preferences_dialog.c:2399 msgid "Select Brushes Dir" msgstr "Valitse sivellinkansio" -#: app/preferences_dialog.c:2472 +#: app/preferences_dialog.c:2401 msgid "Generated Brushes" msgstr "Generoidut siveltimet" -#: app/preferences_dialog.c:2472 +#: app/preferences_dialog.c:2401 msgid "Generated Brushes Directories" msgstr "Generoitujen siveltimien kansiot" -#: app/preferences_dialog.c:2474 +#: app/preferences_dialog.c:2403 msgid "Select Generated Brushes Dir" msgstr "Valitse kansio generoiduille siveltimille" -#: app/preferences_dialog.c:2476 +#: app/preferences_dialog.c:2405 msgid "Patterns Directories" msgstr "Kuviokansiot" -#: app/preferences_dialog.c:2478 +#: app/preferences_dialog.c:2407 msgid "Select Patterns Dir" msgstr "Valitse kansio kuvioille" -#: app/preferences_dialog.c:2480 +#: app/preferences_dialog.c:2409 msgid "Palettes Directories" msgstr "Palettien kansiot" -#: app/preferences_dialog.c:2482 +#: app/preferences_dialog.c:2411 msgid "Select Palettes Dir" msgstr "Valitse kansio paleteille" -#: app/preferences_dialog.c:2484 +#: app/preferences_dialog.c:2413 msgid "Gradients Directories" msgstr "VДriliukumien kansiot" -#: app/preferences_dialog.c:2486 +#: app/preferences_dialog.c:2415 msgid "Select Gradients Dir" msgstr "Valitse kansio vДriliukumille" -#: app/preferences_dialog.c:2488 +#: app/preferences_dialog.c:2417 msgid "Plug-Ins" msgstr "LiitДnnДiset" -#: app/preferences_dialog.c:2488 +#: app/preferences_dialog.c:2417 msgid "Plug-Ins Directories" msgstr "LiitДnnДisten kansiot" -#: app/preferences_dialog.c:2490 +#: app/preferences_dialog.c:2419 msgid "Select Plug-Ins Dir" msgstr "Valitse kansio liitДnnДisille" -#: app/preferences_dialog.c:2492 +#: app/preferences_dialog.c:2421 msgid "Modules" msgstr "Moduulit" -#: app/preferences_dialog.c:2492 +#: app/preferences_dialog.c:2421 msgid "Modules Directories" msgstr "Moduulien kansiot" -#: app/preferences_dialog.c:2494 +#: app/preferences_dialog.c:2423 msgid "Select Modules Dir" msgstr "Valitse kansio moduuleille" @@ -5178,66 +5204,66 @@ msgstr "VALINTA: KORVAA" msgid "Selection: " msgstr "Valinta: " -#: app/resize.c:154 +#: app/resize.c:156 msgid "Scale Layer" msgstr "" -#: app/resize.c:156 app/resize.c:181 app/tool_options.c:774 +#: app/resize.c:158 app/resize.c:183 app/tool_options.c:774 msgid "Size" msgstr "Koko" -#: app/resize.c:160 +#: app/resize.c:162 msgid "Scale Image" msgstr "Skaalaa kuvaa" -#: app/resize.c:162 +#: app/resize.c:164 msgid "Pixel Dimensions" msgstr "Koko pikseleissД" -#: app/resize.c:172 +#: app/resize.c:174 msgid "Set Layer Boundary Size" msgstr "Aseta tason rajan koko" -#: app/resize.c:177 +#: app/resize.c:179 msgid "Set Canvas Size" msgstr "Aseta kankaan koko" #. the original width & height labels -#: app/resize.c:234 app/scale_tool.c:77 +#: app/resize.c:236 app/scale_tool.c:77 msgid "Original Width:" msgstr "AlkuperДinen leveys:" #. the new size labels -#: app/resize.c:259 app/resize.c:504 +#: app/resize.c:261 app/resize.c:506 msgid "New Width:" msgstr "Uusi leveys:" #. the scale ratio labels -#: app/resize.c:324 +#: app/resize.c:326 msgid "Ratio X:" msgstr "X-suhde:" #. the x and y offset labels -#: app/resize.c:409 +#: app/resize.c:411 msgid "X:" msgstr "" -#: app/resize.c:490 +#: app/resize.c:492 msgid "Print Size & Display Unit" msgstr "Tulostuskoko ja nДyttЖyksikkЖ" -#: app/resize.c:1252 +#: app/resize.c:1254 msgid "Scale Error: Both width and height must be greater than zero." msgstr "Virhe: SekД leveyden ettД korkeuden pitДД olla nollaa suurempia." -#: app/resize.c:1334 +#: app/resize.c:1336 msgid "" "The chosen image size will shrink\n" "some layers completely away.\n" "Is this what you want?" msgstr "" -#: app/resize.c:1338 +#: app/resize.c:1340 msgid "Layer Too Small" msgstr "" @@ -5286,7 +5312,7 @@ msgstr "V msgid "Text Tool" msgstr "TekstityЖkalu" -#: app/text_tool.c:162 app/tool_options.c:233 +#: app/text_tool.c:162 app/tool_options.c:232 msgid "Antialiasing" msgstr "Antialiasointi" @@ -5364,100 +5390,100 @@ msgstr "" "GIMPin asennuskansiossa pitДisi olla tiedosto nimeltДДn gimp_tips.txt.\n" "Tarkista asennuksen oikeellisuus." -#: app/tool_options.c:122 +#: app/tool_options.c:121 msgid "This tool has no options." msgstr "TДllД tyЖkalulla ei ole asetuksia." -#: app/tool_options.c:146 +#: app/tool_options.c:145 msgid "Rectangular Selection" msgstr "Suorakulmiovalinta" -#: app/tool_options.c:148 +#: app/tool_options.c:147 msgid "Elliptical Selection" msgstr "Ellipsivalinta" -#: app/tool_options.c:150 +#: app/tool_options.c:149 msgid "Free-Hand Selection" msgstr "Vapaa valinta" -#: app/tool_options.c:152 +#: app/tool_options.c:151 msgid "Fuzzy Selection" msgstr "EpДterДvД valinta" -#: app/tool_options.c:154 +#: app/tool_options.c:153 msgid "Bezier Selection" msgstr "Bezier-valinta" -#: app/tool_options.c:156 app/tools.c:178 +#: app/tool_options.c:155 app/tools.c:178 msgid "Intelligent Scissors" msgstr "дlysakset" -#: app/tool_options.c:158 +#: app/tool_options.c:157 msgid "By-Color Selection" msgstr "Valinta vДrin mukaan" -#: app/tool_options.c:189 +#: app/tool_options.c:188 msgid "Feather" msgstr "PehmennД" -#: app/tool_options.c:297 +#: app/tool_options.c:296 msgid "Fixed Size / Aspect Ratio" msgstr "KiinteД koko / kuvasuhde" -#: app/tool_options.c:363 +#: app/tool_options.c:362 msgid "Unit:" msgstr "MittayksikkЖ:" -#: app/tool_options.c:448 app/tools.c:376 +#: app/tool_options.c:447 app/tools.c:376 msgid "Bucket Fill" msgstr "TДyttЖ" -#: app/tool_options.c:450 +#: app/tool_options.c:449 msgid "Blend Tool" msgstr "SekoitustyЖkalu" -#: app/tool_options.c:452 app/tools.c:412 +#: app/tool_options.c:451 app/tools.c:412 msgid "Pencil" msgstr "KynД" -#: app/tool_options.c:454 app/tools.c:430 +#: app/tool_options.c:453 app/tools.c:430 msgid "Paintbrush" msgstr "Sivellin" -#: app/tool_options.c:456 app/tools.c:448 +#: app/tool_options.c:455 app/tools.c:448 msgid "Eraser" msgstr "Pyyhekumi" -#: app/tool_options.c:458 app/tools.c:466 +#: app/tool_options.c:457 app/tools.c:466 msgid "Airbrush" msgstr "Ruisku" -#: app/tool_options.c:460 +#: app/tool_options.c:459 msgid "Clone Tool" msgstr "KloonaustyЖkalu" # MikДhДn tДmДkin on??? -#: app/tool_options.c:462 +#: app/tool_options.c:461 msgid "Convolver" msgstr "Konvolveri" -#: app/tool_options.c:464 +#: app/tool_options.c:463 msgid "Ink Tool" msgstr "MustekynД" -#: app/tool_options.c:466 app/tools.c:538 app/tools.c:544 +#: app/tool_options.c:465 app/tools.c:538 app/tools.c:544 msgid "Dodge or Burn" msgstr "Tummenna tai valkaise" -#: app/tool_options.c:468 +#: app/tool_options.c:467 msgid "Smudge Tool" msgstr "Sormi" -#: app/tool_options.c:583 +#: app/tool_options.c:582 msgid "Incremental" msgstr "Inkrementaalinen" -#: app/tool_options.c:689 +#: app/tool_options.c:688 msgid "Pressure Sensitivity" msgstr "Paineherkkyys" @@ -6131,6 +6157,106 @@ msgstr "Vesiv msgid "Color History" msgstr "VДrihistoria" +#~ msgid "Custom from Editor" +#~ msgstr "RДДrДlЖity muokkaimesta" + +#~ msgid "For a proper GIMP installation, a subdirectory called\n" +#~ msgstr "Kunnollista GIMP-asennusta varten kansio nimeltД\n" + +#~ msgid "Install" +#~ msgstr "Asenna" + +#~ msgid "Ignore" +#~ msgstr "Ohita" + +#~ msgid "Installation Log" +#~ msgstr "Asennusloki" + +#~ msgid "" +#~ "\n" +#~ "Installation successful!\n" +#~ msgstr "" +#~ "\n" +#~ "KДyttДjДkohtainen asennus onnistui!\n" + +#~ msgid "/File/Dialogs" +#~ msgstr "/Tiedosto/Dialogit" + +#~ msgid "/File" +#~ msgstr "/Tiedosto" + +#~ msgid "/Edit" +#~ msgstr "/Muokkaa" + +#~ msgid "/Edit/Buffer" +#~ msgstr "/Muokkaa/LeikepЖytД" + +#~ msgid "/Select" +#~ msgstr "/Valitse" + +#~ msgid "/View" +#~ msgstr "/NДytД" + +#~ msgid "/View/Zoom" +#~ msgstr "/NДytД/Zoomaa sisДДn" + +#~ msgid "/Image" +#~ msgstr "/Kuva" + +#~ msgid "/Image/Mode" +#~ msgstr "/Kuva/Muoto" + +#~ msgid "/Image/Colors" +#~ msgstr "/Kuva/VДrit" + +#~ msgid "/Image/Colors/Auto" +#~ msgstr "/Kuva/VДrit/Automaattinen" + +#~ msgid "/Image/Alpha" +#~ msgstr "/Kuva/Alfakanava" + +#~ msgid "/Image/Transforms" +#~ msgstr "/Kuva/Muunnokset" + +#~ msgid "/Layers" +#~ msgstr "/Tasot" + +#~ msgid "/Layers/Stack" +#~ msgstr "/Tasot/Pino" + +#~ msgid "/Tools" +#~ msgstr "/TyЖkalut" + +#~ msgid "/Tools/Select Tools" +#~ msgstr "/TyЖkalut/Valinnat" + +#~ msgid "/Tools/Transform Tools" +#~ msgstr "/TyЖkalut/Muunnokset" + +#~ msgid "/Tools/Paint Tools" +#~ msgstr "/TyЖkalut/PiirtotyЖkalut" + +#~ msgid "/Dialogs" +#~ msgstr "/Dialogit" + +#~ msgid "/Filters" +#~ msgstr "/Suotimet" + +#~ msgid "/Script-Fu" +#~ msgstr "/Script-Fu" + +#~ msgid "/Stack" +#~ msgstr "/Pino" + +#~ msgid "Bytes" +#~ msgstr "Tavuja" + +#~ msgid "KiloBytes" +#~ msgstr "Kilotavujan" + +#~ msgid "MegaBytes" +#~ msgstr "megatavua" + #~ msgid "Fill Options" #~ msgstr "TДyttЖasetukset" diff --git a/po/fr.po b/po/fr.po index 1b826331fc..b1dcbb465b 100644 --- a/po/fr.po +++ b/po/fr.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: gimp 1.1.12\n" -"POT-Creation-Date: 2000-03-03 17:47-0800\n" +"POT-Creation-Date: 2000-03-14 23:09+0100\n" "PO-Revision-Date: 1999-11-05 15:37+0100\n" "Last-Translator: Vincent Renardias \n" "Language-Team: GNOME French Team \n" @@ -66,45 +66,45 @@ msgstr "pr msgid "GIMP Startup" msgstr "Lancement de GIMP" -#: app/app_procs.c:479 app/gimprc.c:432 +#: app/app_procs.c:479 app/gimprc.c:448 #, c-format msgid "parsing \"%s\"\n" msgstr "lecture de \"%s\"\n" #. initialize the xcf file format routines -#: app/app_procs.c:539 +#: app/app_procs.c:541 msgid "Looking for data files" msgstr "Recherche des fichiers de donnИes" -#: app/app_procs.c:539 +#: app/app_procs.c:541 msgid "Parasites" msgstr "Parasites" #. initialize the global parasite table -#: app/app_procs.c:541 app/internal_procs.c:71 app/preferences_dialog.c:2468 +#: app/app_procs.c:543 app/internal_procs.c:71 app/preferences_dialog.c:2397 msgid "Brushes" msgstr "Pinceaux" #. initialize the list of gimp brushes -#: app/app_procs.c:543 app/internal_procs.c:143 app/preferences_dialog.c:2476 +#: app/app_procs.c:545 app/internal_procs.c:143 app/preferences_dialog.c:2405 msgid "Patterns" msgstr "Motifs" #. initialize the list of gimp patterns -#: app/app_procs.c:545 app/preferences_dialog.c:2480 +#: app/app_procs.c:547 app/preferences_dialog.c:2409 msgid "Palettes" msgstr "Palettes" #. initialize the list of gimp palettes -#: app/app_procs.c:547 app/internal_procs.c:113 app/preferences_dialog.c:2484 +#: app/app_procs.c:549 app/internal_procs.c:113 app/preferences_dialog.c:2413 msgid "Gradients" msgstr "DИgradИs" -#: app/app_procs.c:735 +#: app/app_procs.c:737 msgid "Really Quit?" msgstr "Vraiment Quitter?" -#: app/app_procs.c:739 +#: app/app_procs.c:741 msgid "" "Some files unsaved.\n" "\n" @@ -114,21 +114,21 @@ msgstr "" "\n" "Quitter The GIMP?" -#: app/app_procs.c:740 app/install.c:272 app/install.c:430 +#: app/app_procs.c:742 msgid "Quit" msgstr "Quitter" -#: app/app_procs.c:740 app/brightness_contrast.c:218 app/channel_ops.c:93 +#: app/app_procs.c:742 app/brightness_contrast.c:218 app/channel_ops.c:93 #: app/channels_dialog.c:2463 app/channels_dialog.c:2637 #: app/color_balance.c:275 app/color_notebook.c:125 app/convert.c:506 #: app/curves.c:559 app/file_new_dialog.c:207 app/file_new_dialog.c:357 #: app/gdisplay_color_ui.c:129 app/gdisplay_ops.c:346 app/gimpprogress.c:112 -#: app/global_edit.c:739 app/gradient.c:1769 app/gradient.c:4839 -#: app/gradient.c:5400 app/hue_saturation.c:377 app/interface.c:984 -#: app/layers_dialog.c:3326 app/layers_dialog.c:3517 app/layers_dialog.c:3617 -#: app/layers_dialog.c:3889 app/levels.c:341 app/palette.c:1826 -#: app/posterize.c:201 app/preferences_dialog.c:1469 app/qmask.c:281 -#: app/resize.c:193 app/resize.c:1343 app/threshold.c:275 +#: app/global_edit.c:739 app/gradient.c:1769 app/gradient.c:4841 +#: app/gradient.c:5402 app/hue_saturation.c:377 app/install.c:532 +#: app/interface.c:984 app/layers_dialog.c:3326 app/layers_dialog.c:3517 +#: app/layers_dialog.c:3617 app/layers_dialog.c:3889 app/levels.c:341 +#: app/palette.c:1826 app/posterize.c:201 app/preferences_dialog.c:1434 +#: app/qmask.c:281 app/resize.c:195 app/resize.c:1345 app/threshold.c:275 #: modules/cdisplay_gamma.c:358 msgid "Cancel" msgstr "Annuler" @@ -149,123 +149,124 @@ msgstr "Courbe non ferm msgid "Paintbrush operation failed." msgstr "иchec de l'opИration pinceau." -#: app/blend.c:272 +#: app/blend.c:294 msgid "Offset:" msgstr "DИcalage :" -#: app/blend.c:283 +#: app/blend.c:305 msgid "FG to BG (RGB)" msgstr "AV vers AR (RVB)" -#: app/blend.c:284 +#: app/blend.c:306 msgid "FG to BG (HSV)" msgstr "AV vers AR (TSV)" -#: app/blend.c:285 +#: app/blend.c:307 msgid "FG to Transparent" msgstr "AV vers Transparent" -#: app/blend.c:286 -msgid "Custom from Editor" -msgstr "PersonnalisИ Ю partir de l'Иditeur" +#: app/blend.c:308 +#, fuzzy +msgid "Custom Gradient" +msgstr "Copier dИgradИ" -#: app/blend.c:290 +#: app/blend.c:312 msgid "Blend:" msgstr "MИlange :" -#: app/blend.c:298 app/gradient.c:533 app/preferences_dialog.c:2209 +#: app/blend.c:320 app/gradient.c:533 app/preferences_dialog.c:2137 msgid "Linear" msgstr "LinИaire" -#: app/blend.c:299 +#: app/blend.c:321 msgid "Bi-Linear" msgstr "BilinИaire" -#: app/blend.c:300 +#: app/blend.c:322 msgid "Radial" msgstr "Radial" -#: app/blend.c:301 +#: app/blend.c:323 msgid "Square" msgstr "CarrИ" -#: app/blend.c:302 +#: app/blend.c:324 msgid "Conical (symmetric)" msgstr "Conique (symИtrique)" -#: app/blend.c:303 +#: app/blend.c:325 msgid "Conical (asymmetric)" msgstr "Conique (asymИtrique)" -#: app/blend.c:304 +#: app/blend.c:326 msgid "Shapeburst (angular)" msgstr "Suivant la forme (angulaire)" -#: app/blend.c:305 +#: app/blend.c:327 msgid "Shapeburst (spherical)" msgstr "Suivant la forme (sphИrique)" -#: app/blend.c:306 +#: app/blend.c:328 msgid "Shapeburst (dimpled)" msgstr "Suivant la forme (excroissances)" -#: app/blend.c:307 +#: app/blend.c:329 msgid "Spiral (clockwise)" msgstr "Spiral (sens des aiguilles d'une montre)" -#: app/blend.c:308 +#: app/blend.c:330 msgid "Spiral (anticlockwise)" msgstr "Spiral (sens inverse des aiguilles d'une montre)" -#: app/blend.c:312 +#: app/blend.c:334 msgid "Gradient:" msgstr "DИgradИ :" -#: app/blend.c:320 app/preferences_dialog.c:1808 +#: app/blend.c:342 app/preferences_dialog.c:1769 msgid "None" msgstr "Aucun" -#: app/blend.c:321 +#: app/blend.c:343 msgid "Sawtooth Wave" msgstr "Onde en dents de scie" -#: app/blend.c:322 +#: app/blend.c:344 msgid "Triangular Wave" msgstr "Onde triangulaire" -#: app/blend.c:326 +#: app/blend.c:348 msgid "Repeat:" msgstr "RИpИtition :" -#: app/blend.c:345 +#: app/blend.c:367 msgid "Adaptive Supersampling" msgstr "Super-Иchantillonnage adaptatif" -#: app/blend.c:373 +#: app/blend.c:395 msgid "Max Depth:" msgstr "Profondeur max :" -#: app/blend.c:386 app/bucket_fill.c:127 app/fuzzy_select.c:657 +#: app/blend.c:408 app/bucket_fill.c:127 app/fuzzy_select.c:661 msgid "Threshold:" msgstr "Seuil :" -#: app/blend.c:413 +#: app/blend.c:435 msgid "Blend: Invalid for indexed images." msgstr "MИlange : Non valide pour les images indexИes." -#: app/blend.c:438 +#: app/blend.c:460 msgid "Blend: 0, 0" msgstr "MИlange : 0, 0" -#: app/blend.c:501 +#: app/blend.c:523 msgid "Blend operation failed." msgstr "иchec de l'opИration de mИlange." -#: app/blend.c:507 +#: app/blend.c:529 msgid "Blending..." msgstr "MИlange en cours..." -#: app/blend.c:585 app/blend.c:595 +#: app/blend.c:607 app/blend.c:617 msgid "Blend: " msgstr "MИlange : " @@ -284,13 +285,13 @@ msgstr "Luminosit #: app/gdisplay_color_ui.c:127 app/gimpui.c:122 app/hue_saturation.c:373 #: app/layers_dialog.c:3324 app/layers_dialog.c:3515 app/layers_dialog.c:3615 #: app/layers_dialog.c:3887 app/levels.c:337 app/module_db.c:281 -#: app/posterize.c:197 app/preferences_dialog.c:1465 app/qmask.c:279 -#: app/resize.c:191 app/resize.c:1343 app/threshold.c:271 +#: app/posterize.c:197 app/preferences_dialog.c:1430 app/qmask.c:279 +#: app/resize.c:193 app/resize.c:1345 app/threshold.c:271 #: modules/cdisplay_gamma.c:351 msgid "OK" msgstr "OK" -#: app/brightness_contrast.c:216 app/by_color_select.c:634 +#: app/brightness_contrast.c:216 app/by_color_select.c:687 #: app/color_balance.c:273 app/curves.c:557 app/file_new_dialog.c:355 #: app/hue_saturation.c:375 app/levels.c:339 app/posterize.c:199 #: app/threshold.c:273 app/tools.c:1086 app/transform_core.c:412 @@ -320,7 +321,7 @@ msgid "Brush Editor" msgstr "иditeur de pinceau" #. The close button -#: app/brush_edit.c:216 app/brush_select.c:278 app/by_color_select.c:636 +#: app/brush_edit.c:216 app/brush_select.c:278 app/by_color_select.c:689 #: app/color_notebook.c:122 app/color_picker.c:297 app/colormap_dialog.i.c:170 #: app/crop.c:1054 app/devices.c:755 app/docindexif.c:105 #: app/errorconsole.c:281 app/gdisplay_ops.c:346 app/gradient.c:801 @@ -334,7 +335,7 @@ msgid "Close" msgstr "Fermer" #. the feather radius scale -#: app/brush_edit.c:276 app/color_picker.c:181 app/tool_options.c:200 +#: app/brush_edit.c:276 app/color_picker.c:181 app/tool_options.c:199 msgid "Radius:" msgstr "Rayon :" @@ -364,11 +365,11 @@ msgstr "Rafra msgid "No Brushes available" msgstr "Aucun pinceau disponible." -#: app/brush_select.c:445 app/layers_dialog.c:372 app/tool_options.c:505 +#: app/brush_select.c:445 app/layers_dialog.c:372 app/tool_options.c:504 msgid "Opacity:" msgstr "OpacitИ :" -#: app/brush_select.c:453 app/layers_dialog.c:324 app/tool_options.c:529 +#: app/brush_select.c:453 app/layers_dialog.c:324 app/tool_options.c:528 msgid "Mode:" msgstr "Mode :" @@ -402,7 +403,7 @@ msgstr "D msgid "Sorry, this brush can't be deleted." msgstr "DИsolИ, ce pinceau ne peut Йtre supprimИ." -#: app/bucket_fill.c:147 app/color_picker.c:156 app/tool_options.c:274 +#: app/bucket_fill.c:147 app/color_picker.c:156 app/tool_options.c:273 msgid "Sample Merged" msgstr "иchantillons mИlangИs" @@ -432,36 +433,36 @@ msgid "No available patterns for this operation." msgstr "Aucun motif disponible pour cette opИration." #. The shell and main vbox -#: app/by_color_select.c:629 +#: app/by_color_select.c:682 msgid "By Color Selection" msgstr "SИlection par Couleur" -#: app/by_color_select.c:685 +#: app/by_color_select.c:738 msgid "Inactive" msgstr "Inactif" -#: app/by_color_select.c:693 +#: app/by_color_select.c:746 msgid "Selection Mode" msgstr "Mode de sИlection" -#: app/by_color_select.c:695 app/paint_funcs.c:100 +#: app/by_color_select.c:748 app/paint_funcs.c:100 msgid "Replace" msgstr "Remplacer" -#: app/by_color_select.c:697 app/colormap_dialog.i.c:127 +#: app/by_color_select.c:750 app/colormap_dialog.i.c:127 #: app/gdisplay_color_ui.c:114 msgid "Add" msgstr "Ajouter" -#: app/by_color_select.c:699 app/layers_dialog.c:340 app/tool_options.c:904 +#: app/by_color_select.c:752 app/layers_dialog.c:340 app/tool_options.c:904 msgid "Subtract" msgstr "Soustraction" -#: app/by_color_select.c:701 +#: app/by_color_select.c:754 msgid "Intersect" msgstr "Intersection" -#: app/by_color_select.c:713 +#: app/by_color_select.c:766 msgid "Fuzziness Threshold" msgstr "Seuil de Flou" @@ -479,7 +480,7 @@ msgstr "Copie de %s" msgid "Selection Mask" msgstr "Masque de sИlection" -#: app/channel_ops.c:85 app/resize.c:392 +#: app/channel_ops.c:85 app/resize.c:394 msgid "Offset" msgstr "DИcalage" @@ -489,8 +490,8 @@ msgid "Offset X:" msgstr "DИcalage X :" #: app/channel_ops.c:115 app/crop.c:1063 app/file_new_dialog.c:530 -#: app/resize.c:330 app/resize.c:415 app/resize.c:573 app/rotate_tool.c:106 -#: app/scale_tool.c:100 app/shear_tool.c:82 +#: app/install.c:1108 app/resize.c:332 app/resize.c:417 app/resize.c:575 +#: app/rotate_tool.c:106 app/scale_tool.c:100 app/shear_tool.c:82 msgid "Y:" msgstr "Y :" @@ -499,12 +500,12 @@ msgstr "Y :" msgid "Wrap Around" msgstr "Espace enroulИ" -#: app/channel_ops.c:174 app/image_new.c:69 app/image_new.c:223 +#: app/channel_ops.c:174 app/image_new.c:70 app/image_new.c:234 #: app/layers_dialog.c:3422 msgid "Background" msgstr "Fond" -#: app/channel_ops.c:175 app/image_new.c:79 app/layers_dialog.c:3424 +#: app/channel_ops.c:175 app/image_new.c:80 app/layers_dialog.c:3424 msgid "Transparent" msgstr "Transparent" @@ -683,19 +684,19 @@ msgstr " msgid "Update Active Color" msgstr "Mettre Ю jour la couleur active" -#: app/color_picker.c:255 app/color_picker.c:265 +#: app/color_picker.c:255 app/color_picker.c:264 msgid "Red:" msgstr "Rouge :" -#: app/color_picker.c:256 app/color_picker.c:266 +#: app/color_picker.c:256 app/color_picker.c:265 msgid "Green:" msgstr "Vert :" -#: app/color_picker.c:257 app/color_picker.c:267 +#: app/color_picker.c:257 app/color_picker.c:266 msgid "Blue:" msgstr "Bleu :" -#: app/color_picker.c:258 app/color_picker.c:264 app/color_picker.c:273 +#: app/color_picker.c:258 app/color_picker.c:267 app/color_picker.c:273 msgid "Alpha:" msgstr "Alpha :" @@ -716,13 +717,13 @@ msgstr "Triplet H msgid "Intensity:" msgstr "IntensitИ :" -#: app/color_picker.c:633 app/color_picker.c:634 app/color_picker.c:635 -#: app/color_picker.c:636 app/color_picker.c:637 app/color_picker.c:638 -#: app/color_picker.c:639 app/color_picker.c:657 app/color_picker.c:672 -#: app/color_picker.c:690 app/info_window.c:185 app/info_window.c:191 -#: app/info_window.c:197 app/info_window.c:203 app/info_window.c:422 -#: app/info_window.c:423 app/info_window.c:424 app/info_window.c:425 -#: app/info_window.c:447 +#: app/color_picker.c:626 app/color_picker.c:627 app/color_picker.c:628 +#: app/color_picker.c:629 app/color_picker.c:630 app/color_picker.c:631 +#: app/color_picker.c:632 app/color_picker.c:644 app/color_picker.c:651 +#: app/color_picker.c:669 app/color_picker.c:684 app/info_window.c:185 +#: app/info_window.c:191 app/info_window.c:197 app/info_window.c:203 +#: app/info_window.c:422 app/info_window.c:423 app/info_window.c:424 +#: app/info_window.c:425 app/info_window.c:447 msgid "N/A" msgstr "N/C" @@ -920,13 +921,13 @@ msgstr "Origine X:" #. the pixel size labels #: app/crop.c:1076 app/file_new_dialog.c:389 app/file_new_dialog.c:407 -#: app/tool_options.c:334 +#: app/tool_options.c:333 msgid "Width:" msgstr "Largeur:" #: app/crop.c:1079 app/file_new_dialog.c:395 app/file_new_dialog.c:413 -#: app/layers_dialog.c:3363 app/resize.c:240 app/resize.c:265 app/resize.c:510 -#: app/scale_tool.c:79 app/scale_tool.c:86 app/tool_options.c:350 +#: app/layers_dialog.c:3363 app/resize.c:242 app/resize.c:267 app/resize.c:512 +#: app/scale_tool.c:79 app/scale_tool.c:86 app/tool_options.c:349 msgid "Height:" msgstr "Hauteur:" @@ -978,7 +979,7 @@ msgid "Load" msgstr "Charger" #: app/curves.c:704 app/devices.c:753 app/levels.c:608 app/palette.c:2068 -#: app/preferences_dialog.c:357 app/preferences_dialog.c:1467 +#: app/preferences_dialog.c:357 app/preferences_dialog.c:1432 msgid "Save" msgstr "Enregistrer" @@ -1008,7 +1009,7 @@ msgstr "La d msgid "Device Status" msgstr "иtat du pИriphИrique" -#: app/disp_callbacks.c:755 app/global_edit.c:297 app/global_edit.c:303 +#: app/disp_callbacks.c:760 app/global_edit.c:297 app/global_edit.c:303 #: app/global_edit.c:375 msgid "Pasted Layer" msgstr "Calque CopiИ" @@ -1191,17 +1192,17 @@ msgstr "Taille d'image : %s" msgid "New Image" msgstr "Nouvelle Image" -#: app/file_new_dialog.c:453 app/preferences_dialog.c:1540 -#: app/preferences_dialog.c:1577 +#: app/file_new_dialog.c:453 app/install.c:1093 app/preferences_dialog.c:1505 +#: app/preferences_dialog.c:1542 msgid "Pixels" msgstr "Pixels" #. the resolution labels -#: app/file_new_dialog.c:524 app/resize.c:567 +#: app/file_new_dialog.c:524 app/resize.c:569 msgid "Resolution X:" msgstr "RИsolution X:" -#: app/file_new_dialog.c:545 app/resize.c:588 +#: app/file_new_dialog.c:545 app/resize.c:590 msgid "pixels/%a" msgstr "pixels/%a" @@ -1231,7 +1232,7 @@ msgstr "" msgid "No Selection." msgstr "Pas de sИlection." -#: app/fileops.c:418 app/fileops.c:1624 app/fileops.c:1731 +#: app/fileops.c:418 app/fileops.c:1629 app/fileops.c:1736 #, c-format msgid "Save failed: %s" msgstr "иchec de l'enregistrement: %s" @@ -1258,58 +1259,58 @@ msgstr "" msgid "Revert failed." msgstr "иchec lors du retour Ю l'image sur disque." -#: app/fileops.c:1240 +#: app/fileops.c:1245 msgid "(This thumbnail may be out of date)" msgstr "(cette icТne peut ne pas Йtre Ю jour)" -#: app/fileops.c:1241 +#: app/fileops.c:1246 msgid "(No Information)" msgstr "(aucune information)" -#: app/fileops.c:1251 +#: app/fileops.c:1256 msgid "(Thumbnail saving is disabled)" msgstr "(enregistrement des icТnes dИsactivИ)" -#: app/fileops.c:1255 +#: app/fileops.c:1260 msgid "(Could not write thumbnail file)" msgstr "(impossible d'Иcrire le fichier d'icТne)" -#: app/fileops.c:1259 +#: app/fileops.c:1264 msgid "(Thumbnail file not written)" msgstr "(fichier d'icТne non Иcrit)" -#: app/fileops.c:1276 +#: app/fileops.c:1281 msgid "No preview available" msgstr "aucun aperГu disponible" -#: app/fileops.c:1394 +#: app/fileops.c:1399 msgid "(could not make preview)" msgstr "(impossible de crИer un aperГu)" -#: app/fileops.c:1467 app/fileops.c:1546 +#: app/fileops.c:1472 app/fileops.c:1551 #, c-format msgid "Open failed: %s" msgstr "иchec de l'ouverture : %s" -#: app/fileops.c:1602 +#: app/fileops.c:1607 #, c-format msgid "%s is an irregular file (%s)" msgstr "%s n'est pas un fichier ordinaire (%s)" -#: app/fileops.c:1670 +#: app/fileops.c:1675 #, c-format msgid "%s exists, overwrite?" msgstr "%s existe, Иcraser?" -#: app/fileops.c:1674 +#: app/fileops.c:1679 msgid "File Exists!" msgstr "Le fichier existe!" -#: app/fileops.c:1680 +#: app/fileops.c:1685 msgid "Yes" msgstr "Oui" -#: app/fileops.c:1682 +#: app/fileops.c:1687 msgid "No" msgstr "Non" @@ -1317,13 +1318,13 @@ msgstr "Non" msgid "Flip Tool" msgstr "Outil SymИtrie" -#: app/flip_tool.c:95 app/preferences_dialog.c:1591 -#: app/preferences_dialog.c:2355 +#: app/flip_tool.c:95 app/preferences_dialog.c:1556 +#: app/preferences_dialog.c:2284 msgid "Horizontal" msgstr "Horizontal" -#: app/flip_tool.c:97 app/preferences_dialog.c:1593 -#: app/preferences_dialog.c:2357 +#: app/flip_tool.c:97 app/preferences_dialog.c:1558 +#: app/preferences_dialog.c:2286 msgid "Vertical" msgstr "Vertical" @@ -1349,7 +1350,7 @@ msgstr "" msgid "RGB-empty" msgstr "RVB-vide" -#: app/gdisplay.c:217 app/image_new.c:53 app/preferences_dialog.c:1637 +#: app/gdisplay.c:217 app/image_new.c:54 app/preferences_dialog.c:1602 msgid "RGB" msgstr "RVB" @@ -1488,23 +1489,23 @@ msgstr "" msgid "Failed to load pixmap brush." msgstr "иchec de la lecture du pinceau pixmap." -#: app/gimpdrawable.c:168 +#: app/gimpdrawable.c:166 msgid "Can't fill unknown image type." msgstr "Impossible de remplir un type d'image inconnu." -#: app/gimpdrawable.c:512 +#: app/gimpdrawable.c:498 msgid "parasite attach to drawable" msgstr "attacher un parasite Ю la feuille" -#: app/gimpdrawable.c:548 +#: app/gimpdrawable.c:533 msgid "detach parasite from drawable" msgstr "dИtacher parasite de la feuille" -#: app/gimpdrawable.c:770 +#: app/gimpdrawable.c:740 msgid "unnamed" msgstr "sansnom" -#: app/gimpdrawable.c:787 +#: app/gimpdrawable.c:757 #, c-format msgid "Layer type %d not supported." msgstr "Type de calque %d non supportИ." @@ -1526,39 +1527,39 @@ msgstr "" "pour accИder Ю l'aide. RИglez cela dans les\n" "prИfИrences." -#: app/gimpimage.c:1154 +#: app/gimpimage.c:1176 msgid "attach parasite to image" msgstr "attacher un parasite l'image" -#: app/gimpimage.c:1177 +#: app/gimpimage.c:1201 msgid "detach parasite from image" msgstr "dИtacher un parasite de l'image" -#: app/gimpimage.c:2232 +#: app/gimpimage.c:2305 msgid "Layer cannot be raised any further" msgstr "Impossible de remonter encore ce calque" -#: app/gimpimage.c:2258 +#: app/gimpimage.c:2333 msgid "Layer cannot be lowered any further" msgstr "Impossible de descendre encore ce calque" -#: app/gimpimage.c:2282 +#: app/gimpimage.c:2359 msgid "Layer is already on top" msgstr "Calque dИjЮ en haut" -#: app/gimpimage.c:2288 +#: app/gimpimage.c:2365 msgid "Can't raise Layer without alpha" msgstr "Impossible de remonter un Calque sans alpha" -#: app/gimpimage.c:2315 +#: app/gimpimage.c:2393 msgid "Layer is already on bottom" msgstr "Calque dИjЮ en bas" -#: app/gimpimage.c:2370 +#: app/gimpimage.c:2448 msgid "BG has no alpha, layer was placed above" msgstr "Fond sans alpha, calque placИ par dessus" -#: app/gimpimage.c:2439 +#: app/gimpimage.c:2519 msgid "" "There are not enough visible layers for a merge.\n" "There must be at least two." @@ -1566,11 +1567,11 @@ msgstr "" "Il n'y a pas assez de calques visibles pour une\n" "fusion. Il en faut au moins deux." -#: app/gimpimage.c:2519 +#: app/gimpimage.c:2603 msgid "There are not enough visible layers for a merge down." msgstr "Il n'y a pas assez de calques visibles pour une fusion." -#: app/gimpimage.c:2915 +#: app/gimpimage.c:3005 msgid "" "Unable to add a layer mask since\n" "the layer already has one." @@ -1578,7 +1579,7 @@ msgstr "" "Impossible d'ajouter un masque au\n" "calque car il en a dИjЮ un." -#: app/gimpimage.c:2919 +#: app/gimpimage.c:3009 msgid "" "Unable to add a layer mask to a\n" "layer in an indexed image." @@ -1586,7 +1587,7 @@ msgstr "" "Impossible d'ajouter un masque\n" "au calque dans une image indexИe." -#: app/gimpimage.c:2923 +#: app/gimpimage.c:3013 msgid "" "Cannot add layer mask to a layer\n" "with no alpha channel." @@ -1594,21 +1595,21 @@ msgstr "" "Impossible d'ajouter un masque\n" "dans un calque sans canal alpha." -#: app/gimpimage.c:2930 +#: app/gimpimage.c:3020 msgid "Cannot add layer mask of different dimensions than specified layer." msgstr "" "Impossible d'ajouter un masque de calque de dimensions diffИrente que le " "calque spИcifiИ." -#: app/gimpimage.c:3033 +#: app/gimpimage.c:3127 msgid "Channel cannot be raised any further" msgstr "Le canal ne peux pas Йtre plus remontИ" -#: app/gimpimage.c:3082 +#: app/gimpimage.c:3178 msgid "Channel cannot be lowered any further" msgstr "Le canal ne peux pas Йtre abaissИ plus" -#: app/gimpimage.c:3288 app/palette.c:364 app/palette.c:941 app/palette.c:1077 +#: app/gimpimage.c:3398 app/palette.c:364 app/palette.c:941 app/palette.c:1077 #: app/palette.c:2022 app/palette.c:2749 app/palette.c:2881 msgid "Untitled" msgstr "SansTitre" @@ -1621,45 +1622,45 @@ msgstr "Avancement" msgid "Please wait..." msgstr "Veuillez patienter..." -#: app/gimprc.c:401 app/plug_in.c:304 +#: app/gimprc.c:415 app/plug_in.c:304 msgid "Resource configuration" msgstr "Configuration des Ressources" -#: app/gimprc.c:451 +#: app/gimprc.c:467 #, c-format msgid "error parsing: \"%s\"\n" msgstr "erreur de lecture: \"%s\"\n" -#: app/gimprc.c:452 +#: app/gimprc.c:468 #, c-format msgid " at line %d column %d\n" msgstr " Ю la ligne %d, colonne %d\n" -#: app/gimprc.c:453 +#: app/gimprc.c:469 #, c-format msgid " unexpected token: %s\n" msgstr " mot inattendu : %s\n" -#: app/gimprc.c:1455 +#: app/gimprc.c:1473 msgid "error parsing pluginrc" msgstr "erreur d'analyse dans pluginrc" -#: app/gimprc.c:2832 +#: app/gimprc.c:2866 #, c-format msgid "Can't open %s; %s" msgstr "Je ne puis ouvrir %s; %s" -#: app/gimprc.c:2851 +#: app/gimprc.c:2885 #, c-format msgid "Can't rename %s to %s.old; %s" msgstr "Je ne puis renommer %s en %s.old; %s" -#: app/gimprc.c:2857 +#: app/gimprc.c:2891 #, c-format msgid "Couldn't reopen %s\n" msgstr "Je ne peux rИouvrir %s\n" -#: app/gimprc.c:2869 +#: app/gimprc.c:2903 #, c-format msgid "Can't write to %s; %s" msgstr "Je ne puis Иcrire dans %s; %s" @@ -1692,7 +1693,7 @@ msgstr "Message de Gimp" msgid "pixel" msgstr "pixel" -#: app/gimpunit.c:59 app/measure.c:454 app/measure.c:458 app/paint_core.c:498 +#: app/gimpunit.c:59 app/measure.c:454 app/measure.c:458 app/paint_core.c:511 msgid "pixels" msgstr "pixels" @@ -1938,7 +1939,7 @@ msgstr "Position du taquet: %0.6f" msgid "Distance: %0.6f" msgstr "Distance: %0.6f" -#: app/gradient.c:3387 app/gradient.c:4448 +#: app/gradient.c:3387 app/gradient.c:4450 msgid "Left endpoint's color" msgstr "Couleur de l'extrИmitИ gauche" @@ -1958,7 +1959,7 @@ msgstr "Extr msgid "Save to" msgstr "Enregistrer dans" -#: app/gradient.c:3429 app/gradient.c:4526 +#: app/gradient.c:3429 app/gradient.c:4528 msgid "Right endpoint's color" msgstr "Couleur de l'extrИmitИ droite" @@ -1986,7 +1987,7 @@ msgstr "Type de coloriage pour le segment" msgid "Split segment at midpoint" msgstr "Couper le segment en son point mИdian" -#: app/gradient.c:3734 app/gradient.c:4829 +#: app/gradient.c:3734 app/gradient.c:4831 msgid "Split segment uniformly" msgstr "Couper le segment uniformИment" @@ -2006,7 +2007,7 @@ msgstr "Redistribuer les taquets dans le segment" msgid "Flip segment" msgstr "Retourner le segment" -#: app/gradient.c:3744 app/gradient.c:5390 +#: app/gradient.c:3744 app/gradient.c:5392 msgid "Replicate segment" msgstr "Dupliquer le segment" @@ -2022,7 +2023,7 @@ msgstr "Type de coloriage pour la s msgid "Split segments at midpoints" msgstr "Couper les segments en leur milieu" -#: app/gradient.c:3755 app/gradient.c:4830 +#: app/gradient.c:3755 app/gradient.c:4832 msgid "Split segments uniformly" msgstr "Couper les segments uniformИment" @@ -2042,7 +2043,7 @@ msgstr "Redistribuer les taquets dans la s msgid "Flip selection" msgstr "Retourner la sИlection" -#: app/gradient.c:3765 app/gradient.c:5391 +#: app/gradient.c:3765 app/gradient.c:5393 msgid "Replicate selection" msgstr "Dupliquer la sИlection" @@ -2055,49 +2056,49 @@ msgstr "Couleur AV" msgid "RGBA (%0.3f, %0.3f, %0.3f, %0.3f)" msgstr "RVBA (%0.3f, %0.3f, %0.3f, %0.3f)" -#: app/gradient.c:4615 app/gradient.c:4685 +#: app/gradient.c:4617 app/gradient.c:4687 msgid "(Varies)" msgstr "(Variable)" -#: app/gradient.c:4837 +#: app/gradient.c:4839 msgid "Split" msgstr "иclater" #. Instructions -#: app/gradient.c:4851 +#: app/gradient.c:4853 msgid "Please select the number of uniform parts" msgstr "SИlectionnez le nombre de parties uniformes" -#: app/gradient.c:4857 +#: app/gradient.c:4859 msgid "in which you want to split the selected segment" msgstr "en lequel vous voulez couper le segment sИlectionnИ" -#: app/gradient.c:4858 +#: app/gradient.c:4860 msgid "in which you want to split the segments in the selection" msgstr "en lequel vous voulez couper les segments sИlectionnИs" -#: app/gradient.c:5218 +#: app/gradient.c:5220 msgid "Blend endpoints' colors" msgstr "MИlanger les couleurs des extrИmitИs" -#: app/gradient.c:5230 +#: app/gradient.c:5232 msgid "Blend endpoints' opacity" msgstr "MИlanger les opacitИs des extrИmitИs" -#: app/gradient.c:5398 +#: app/gradient.c:5400 msgid "Replicate" msgstr "Dupliquer" #. Instructions -#: app/gradient.c:5411 +#: app/gradient.c:5413 msgid "Please select the number of times" msgstr "Veuillez sИlectionner le nombre d'exemplaires" -#: app/gradient.c:5416 +#: app/gradient.c:5418 msgid "you want to replicate the selected segment" msgstr "en lesquels dupliquer le segment sИlectionnИ." -#: app/gradient.c:5417 +#: app/gradient.c:5419 msgid "you want to replicate the selection" msgstr "en lesquels dupliquer la sИlection" @@ -2201,45 +2202,45 @@ msgstr "Luminosit msgid "Saturation" msgstr "Saturation" -#: app/image_new.c:58 app/info_window.c:65 app/info_window.c:534 -#: app/preferences_dialog.c:1638 +#: app/image_new.c:59 app/info_window.c:65 app/info_window.c:534 +#: app/preferences_dialog.c:1603 msgid "Grayscale" msgstr "Niveaux de gris" -#: app/image_new.c:64 app/layers_dialog.c:3421 +#: app/image_new.c:65 app/layers_dialog.c:3421 msgid "Foreground" msgstr "Avant-Plan" -#: app/image_new.c:74 app/layers_dialog.c:3423 +#: app/image_new.c:75 app/layers_dialog.c:3423 msgid "White" msgstr "Blanc" -#: app/image_new.c:262 +#: app/image_new.c:273 #, c-format msgid "%d Bytes" msgstr "%d Octets" -#: app/image_new.c:264 +#: app/image_new.c:275 #, c-format msgid "%.2f KB" msgstr "%.2f ko" -#: app/image_new.c:266 +#: app/image_new.c:277 #, c-format msgid "%.1f KB" msgstr "%.1f ko" -#: app/image_new.c:268 +#: app/image_new.c:279 #, c-format msgid "%d KB" msgstr "%d ko" -#: app/image_new.c:270 +#: app/image_new.c:281 #, c-format msgid "%.2f MB" msgstr "%.2f Mo" -#: app/image_new.c:272 +#: app/image_new.c:283 #, c-format msgid "%.1f MB" msgstr "%.1f Mo" @@ -2268,8 +2269,8 @@ msgstr "" "Le dИgradИ actif.\n" "Cliquez pour ouvrir le dialogue de dИgradИs." -#: app/info_dialog.c:181 app/preferences_dialog.c:1782 -#: app/preferences_dialog.c:1888 +#: app/info_dialog.c:181 app/preferences_dialog.c:1743 +#: app/preferences_dialog.c:1849 msgid "General" msgstr "GИnИral" @@ -2401,11 +2402,11 @@ msgstr "Ajustement :" msgid "Shape" msgstr "Forme" -#: app/install.c:83 +#: app/install.c:95 msgid "The GIMP is not properly installed for the current user\n" msgstr "The GIMP n'est pas installИ correctement pour l'utilisateur courant\n" -#: app/install.c:84 +#: app/install.c:96 msgid "" "User installation was skipped because the '--nointerface' flag was " "encountered\n" @@ -2413,419 +2414,543 @@ msgstr "" "Installation personnelle non effectuИe car le paramХtre '--nointerface'a ИtИ " "dИtectИ\n" -#: app/install.c:85 +#: app/install.c:97 msgid "" "To perform user installation, run the GIMP without the '--nointerface' flag\n" msgstr "" "Pour effectuer l'installation, lancer GIMP avec le paramХtre " "'--nointerface'\n" -#: app/install.c:113 +#: app/install.c:142 +#, fuzzy +msgid "" +"The gimprc is used to store personal preferences\n" +"that affect GIMP's default behavior.\n" +"Paths to search for brushes, palettes, gradients,\n" +"patterns, plug-ins and modules can also configured here." +msgstr "" +"Le fichier gimprc est utilisИ pour stocker les prИfИrences\n" +"personnelles telles que les comportements par dИfaut.\n" +"Les chemins pour rechercher les brosses, palettes, dИgradИs\n" +"motifs, extensions et modules sont Иgalement paramИtrИs ici.\n" + +#: app/install.c:149 +msgid "" +"GIMP uses an additional gtkrc file so you can\n" +"configure it to look differently than other GTK apps." +msgstr "" + +#: app/install.c:154 +#, fuzzy +msgid "" +"Plug-ins and extensions are external programs run by\n" +"the GIMP which provide additional functionality.\n" +"These programs are searched for at run-time and\n" +"information about their functionality and mod-times\n" +"is cached in this file. This file is intended to\n" +"be GIMP-readable only, and should not be edited." +msgstr "" +"Les extensions et extensions sont des programmes\n" +"externes, lancИs par GIMP, qui fournissent des\n" +"fonctionnalitИes additionnelles. Ces programmes sont\n" +"interrogИs lors du lancement de GIMP et des\n" +"informations sur leurs fonctionnalitИs et dates de\n" +"modifications sont stockИes dans ce fichier pour des\n" +"lancements ultИrieurs plus rapides.\n" +"Ce fichier est prИvu pour n'Йtre lu que par GIMP\n" +"et ne doit pas Йtre ИditИ.\n" + +#: app/install.c:163 +#, fuzzy +msgid "" +"Key shortcuts can be dynamically redefined in The GIMP.\n" +"The menurc is a dump of your configuration so it can.\n" +"be remembered for the next session. You may edit this\n" +"file if you wish, but it is much easier to define the\n" +"keys from within The GIMP. Deleting this file will\n" +"restore the default shortcuts." +msgstr "" +"Les raccourcis clavier peuvent Йtre redИfinis dynamiquement\n" +"dans Gimp. Le fichier menurc est un enregistrement de votre\n" +"configuration, afin que celle-ci puisse Йtre reprise de\n" +"session en session. Vous pouvez Иditer ce fichier Ю la main\n" +"si vous le dИsirez, mais il est bien plus facile de dИfinir\n" +"les touches depuis Gimp. Effacer ce fichier redonne les\n" +"raccourcis clavier par dИfaut.\n" + +#: app/install.c:172 +#, fuzzy +msgid "" +"The sessionrc is used to store what dialog windows were\n" +"open the last time you quit The GIMP. You can configure\n" +"The GIMP to reopen these dialogs at the saved position." +msgstr "" +"Le fichier sessionrc est utilisИ pour sauvegarder la\n" +"position des fenЙtres de dialogue au moment de quitter\n" +"Gimp. Vous pouvez configurer Gimp pour qu'il rouvre\n" +"au lancement ces dialogues Ю leur positions sauvegardИe.\n" + +#: app/install.c:178 +#, fuzzy +msgid "" +"The unitrc is used to store your user units database.\n" +"You can define additional units and use them just\n" +"like you use the built-in units inches, millimeters,\n" +"points and picas. This file is overwritten each time\n" +"you quit the GIMP." +msgstr "" +"unitrc est utilisИ pour stocker les unitИs de mesure\n" +"personnelles. Vous pouvez dИfinir des unitИs supplИmentaires\n" +"et les utiliser comme les unitИs intИgrИes (pouces,\n" +"millimХtres, points, picas). Ce fichier est rИИcrit chaque\n" +"fois que vous quittez GIMP.\n" + +#: app/install.c:186 +#, fuzzy +msgid "" +"This is a subdirectory which can be used to store\n" +"user defined brushes. The default gimprc file\n" +"checks this subdirectory in addition to the system-\n" +"wide gimp brushes installation when searching for\n" +"brushes." +msgstr "" +"RИpertoire qui peut Йtre utilisИ pour stocker vos\n" +"pinceaux personnels. Avec les paramХtres (gimprc)\n" +"par dИfaut, GIMP regarde dans ce rИpertoire et dans\n" +"le rИpertoire de pinceaux global Ю tous les\n" +"utilisateurs lorsqu'il recherche des pinceaux.\n" + +#: app/install.c:194 +#, fuzzy +msgid "" +"This is a subdirectory which is used to store brushes\n" +"that are created with the brush editor. The default\n" +"gimprc file checks this subdirectory when searching for\n" +"generated brushes." +msgstr "" +"RИpertoire qui peut Йtre utilisИ pour stocker les\n" +"pinceaux crИИs avec l'Иditeur de pinceaux.\n" +"Avec les paramХtres (gimprc) par dИfaut, GIMP\n" +"regarde dans ce rИpertoire lorsqu'il recherche des\n" +"pinceaux gИnИrИs.\n" + +#: app/install.c:201 +#, fuzzy +msgid "" +"This is a subdirectory which can be used to store\n" +"user defined gradients. The default gimprc file\n" +"checks this subdirectory in addition to the system-\n" +"wide gimp gradients installation when searching for\n" +"gradients." +msgstr "" +"RИpertoire qui peut Йtre utilisИ pour stocker vos\n" +"dИgradИs personnels. Avec les paramХtres (gimprc)\n" +"par dИfaut, GIMP regarde dans ce rИpertoire et dans\n" +"le rИpertoire de dИgradИs global Ю tous les\n" +"utilisateurs lorsqu'il recherche des dИgradИs.\n" + +#: app/install.c:209 +#, fuzzy +msgid "" +"This is a subdirectory which can be used to store\n" +"user defined palettes. The default gimprc file\n" +"checks only this subdirectory (not the system-wide\n" +"installation) when searching for palettes. During\n" +"installation, the system palettes will be copied\n" +"here. This is done to allow modifications made to\n" +"palettes during GIMP execution to persist across\n" +"sessions." +msgstr "" +"RИpertoire contenant vos palettes personnelles.\n" +"La configuration (gimprc) par dИfaut ne regarde que\n" +"dans ce rИpertoire (et non dans celui global au systХme)\n" +"lorsqu'il recherche des palettes. Pendant l'installation,\n" +"les palettes du systХme seront copiИes dans ce\n" +"rИpertoire.\n" +"Ceci est fait de sorte que les modifications faites aux\n" +"palettes pendant l'exИcution de GIMP persistent entre les\n" +"sessions.\n" + +#: app/install.c:220 +#, fuzzy +msgid "" +"This is a subdirectory which can be used to store\n" +"user defined patterns. The default gimprc file\n" +"checks this subdirectory in addition to the system-\n" +"wide gimp patterns installation when searching for\n" +"patterns." +msgstr "" +"RИpertoire qui peut Йtre utilisИ pour stocker vos\n" +"motifs personnels. Avec les paramХtres (gimprc)\n" +"par dИfaut, GIMP regarde dans ce rИpertoire et dans\n" +"le rИpertoire de motifs global Ю tous les\n" +"utilisateurs lorsqu'il recherche des motifss.\n" + +#: app/install.c:228 +#, fuzzy +msgid "" +"This is a subdirectory which can be used to store\n" +"user created, temporary, or otherwise non-system-\n" +"supported plug-ins. The default gimprc file\n" +"checks this subdirectory in addition to the system-\n" +"wide GIMP plug-in directories when searching for\n" +"plug-ins." +msgstr "" +"RИpertoire qui peut Йtre utilisИ pour stocker vos\n" +"extensions (plug-ins) personnels (p.ex. temporaires,\n" +"non supportИs par les administrateurs). Avec les\n" +"paramХtres (gimprc) par dИfaut, GIMP regarde dans ce\n" +"rИpertoire et dans rИpertoire d'extensions global\n" +"lorsqu'il recherche des plug-ins.\n" + +#: app/install.c:237 +#, fuzzy +msgid "" +"This subdirectory can be used to store user created,\n" +"temporary, or otherwise non-system-supported DLL modules.\n" +"The default gimprc file checks this subdirectory\n" +"in addition to the system-wide GIMP module directory\n" +"when searching for modules to load when initializing." +msgstr "" +"RИpertoire qui peut Йtre utilisИ pour stocker vos\n" +"modules DLL personnels (p.ex. temporaires,\n" +"non supportИs par les administrateurs). Avec les\n" +"paramХtres (gimprc) par dИfaut, GIMP regarde dans ce\n" +"rИpertoire et dans rИpertoire de modules global\n" +"lorsqu'il recherche des modules DLL.\n" + +#: app/install.c:245 +#, fuzzy +msgid "" +"This subdirectory is used by the GIMP to store \n" +"user created and installed scripts. The default gimprc\n" +"file checks this subdirectory in addition to the system-\n" +"wide gimp scripts subdirectory when searching for scripts" +msgstr "" +"RИpertoire qui peut Йtre utilisИ pour stocker vos\n" +"scripts personnels. Avec les paramХtres (gimprc)\n" +"par dИfaut, GIMP regarde dans ce rИpertoire et dans\n" +"le rИpertoire de scripts global Ю tous les\n" +"utilisateurs lorsqu'il recherche des scripts.\n" + +#: app/install.c:252 +#, fuzzy +msgid "" +"This subdirectory is used by the GIMP to temporarily\n" +"store undo buffers to reduce memory usage. If GIMP is\n" +"unceremoniously killed, files may persist in this directory\n" +"of the form: gimp<#>.<#>. These files are useless across\n" +"GIMP sessions and can be destroyed with impunity." +msgstr "" +"Ce rИpertoire est utilisИ par GIMP pour stocker\n" +"temporairement des tampons d'annulation, afin de rИduire\n" +"la place mИmoire utilisИe. Si GIMP est tuИ brutalement\n" +"des fichiers de la forme gimp.. peuvent rester\n" +"dans ce rИpertoire. Ces fichiers sont inutiles lors des\n" +"utilisations ultИrieures de GIMP et peuvent Йtre dИtruits\n" +"sans prИjudice entre deux utilisations.\n" + +#: app/install.c:260 +msgid "" +"This subdirectory is used to store parameter files for\n" +"the Curves tool." +msgstr "" + +#: app/install.c:265 +msgid "" +"This subdirectory is used to store parameter files for\n" +"the Levels tool." +msgstr "" + +#: app/install.c:270 +#, fuzzy +msgid "" +"This is a subdirectory which can be used to store\n" +"user defined fractals to be used by the FractalExplorer\n" +"plug-in. The default gimprc file checks this subdirectory in\n" +"addition to the systemwide gimp FractalExplorer installation\n" +"when searching for fractals." +msgstr "" +"RИpertoire qui peut Йtre utilisИ pour stocker vos\n" +"figures fractales personnelles. Avec les paramХtres (gimprc)\n" +"par dИfaut, GIMP regarde dans ce rИpertoire et dans\n" +"le rИpertoire de dИgradИs global Ю tous les\n" +"utilisateurs lorsqu'il recherche des figures pour\n" +"le plug-in FractalExplorer.\n" + +#: app/install.c:278 +#, fuzzy +msgid "" +"This is a subdirectory which can be used to store\n" +"user defined figures to be used by the gfig plug-in.\n" +"The default gimprc file checks this subdirectory in\n" +"addition to the systemwide gimp gfig installation\n" +"when searching for gfig figures." +msgstr "" +"RИpertoire qui peut Йtre utilisИ pour stocker vos\n" +"figures au trait personnelles. Avec les paramХtres (gimprc)\n" +"par dИfaut, GIMP regarde dans ce rИpertoire et dans\n" +"le rИpertoire de dИgradИs global Ю tous les\n" +"utilisateurs lorsqu'il recherche des figures pour\n" +"l'extension gfig.\n" + +#: app/install.c:286 +#, fuzzy +msgid "" +"This is a subdirectory which can be used to store\n" +"user defined gflares to be used by the gflare plug-in.\n" +"The default gimprc file checks this subdirectory in\n" +"addition to the systemwide gimp gflares installation\n" +"when searching for gflares." +msgstr "" +"RИpertoire qui peut Йtre utilisИ pour stocker vos\n" +"paramХtres personnels pour l'effet ╚ Иblouissement ╩.\n" +"Avec les paramХtres (gimprc) par dИfaut, GIMP regarde\n" +"dans ce rИpertoire et dans le rИpertoire de dИgradИs\n" +"global Ю tous les utilisateurs lorsqu'il recherche des\n" +"paramХtres pour l'extension gflare.\n" + +#: app/install.c:294 +#, fuzzy +msgid "" +"This is a subdirectory which can be used to store\n" +"user defined data to be used by the Gimpressionist\n" +"plug-in. The default gimprc file checks this subdirectory in\n" +"addition to the systemwide gimp Gimpressionist installation\n" +"when searching for data." +msgstr "" +"RИpertoire qui peut Йtre utilisИ pour stocker vos\n" +"paramХtres personnels pour l'effet ╚ Иblouissement ╩.\n" +"Avec les paramХtres (gimprc) par dИfaut, GIMP regarde\n" +"dans ce rИpertoire et dans le rИpertoire de dИgradИs\n" +"global Ю tous les utilisateurs lorsqu'il recherche des\n" +"paramХtres pour l'extension gflare.\n" + +#: app/install.c:525 +#, fuzzy +msgid "GIMP User Installation" +msgstr "Installation de GIMP" + +#: app/install.c:530 +msgid "Continue" +msgstr "Continuer" + +#. this is a fontset, e.g. multiple comma-separated font definitions +#: app/install.c:560 +#, fuzzy +msgid "-*-helvetica-bold-r-normal-*-*-240-*-*-*-*-*-*,*" +msgstr "-*-helvetica-bold-r-normal-*-*-120-*-*-*-*-iso8859-1,*" + +#: app/install.c:578 +#, fuzzy +msgid "" +"Welcome to\n" +"The GIMP User Installation" +msgstr "Installation de GIMP" + +#: app/install.c:582 msgid "" "The GIMP - GNU Image Manipulation Program\n" -"\n" +"Copyright (C) 1995-2000\n" +"Spencer Kimball, Peter Mattis and the GIMP Development Team." msgstr "" -"The GIMP - Programme GNU de Manipulation d'Image\n" -"\n" -#: app/install.c:118 +#: app/install.c:591 +#, fuzzy msgid "" "This program is free software; you can redistribute it and/or modify\n" "it under the terms of the GNU General Public License as published by\n" "the Free Software Foundation; either version 2 of the License, or\n" -"(at your option) any later version.\n" +"(at your option) any later version." msgstr "" "Ce logiciel est un logiciel libre; vous pouvez le diffuser et le\n" "modifier suivant les termes de la GNU General Public License telle\n" "que publiИe par la Free Software Foundation; soit la version 2 de cette\n" "license, soit (Ю votre convenance) une version ultИrieure.\n" -#: app/install.c:123 +#: app/install.c:596 +#, fuzzy msgid "" "This program is distributed in the hope that it will be useful,\n" "but WITHOUT ANY WARRANTY; without even the implied warranty of\n" "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n" -"See the GNU General Public License for more details.\n" +"See the GNU General Public License for more details." msgstr "" "Ce programme est diffusИ dans l'espoir qu'il sera utile, mais\n" "SANS AUCUNE GARANTIE; sans mЙme une garantie implicite de\n" "COMMERCIALISABILITи ou d'ADиQUATION ю UN USAGE PARTICULIER.\n" "Voyez la GNU General Public License pour plus de dИtails.\n" -#: app/install.c:128 +#: app/install.c:601 +#, fuzzy msgid "" "You should have received a copy of the GNU General Public License\n" "along with this program; if not, write to the Free Software\n" "Foundation, Inc., 59 Temple Place - Suite 330, Boston,\n" -"MA 02111-1307, USA.\n" +"MA 02111-1307, USA." msgstr "" "Vous devriez avoir reГu une copie de la GNU General Public License\n" "avec ce programme; sinon, veuillez Иcrire Ю la Free Software\n" "Foundation, Inc., 59 Temple Place - Suite 330, Boston,\n" "MA 02111-1307, иtats-Unis.\n" -#: app/install.c:134 -msgid "" -"Personal GIMP Installation\n" -"\n" +#: app/install.c:607 +msgid "Click \"Continue\" to enter the GIMP user installation." +msgstr "" + +#: app/install.c:633 +#, fuzzy +msgid "Personal GIMP Directory" msgstr "" "Installation personnelle de GIMP\n" "\n" -#: app/install.c:135 -msgid "For a proper GIMP installation, a subdirectory called\n" -msgstr "Pour une installation correcte de GIMP, un sous-rИpertoire nommИ\n" - -#. will be replaced with gimp_directory() -#: app/install.c:137 +#: app/install.c:650 +#, fuzzy msgid "" -" needs to be created. This\n" -"subdirectory will contain a number of important files:\n" -"\n" +"For a proper GIMP installation, a subdirectory needs to be created.\n" +"This subdirectory will contain a number of important files." msgstr "contiendra un nombre de fichiers importants:\n" -#: app/install.c:141 +#: app/install.c:653 msgid "" -"\t\tThe gimprc is used to store personal preferences\n" -"\t\tthat affect GIMP's default behavior.\n" -"\t\tPaths to search for brushes, palettes, gradients,\n" -"\t\tpatterns, plug-ins and modules can also configured here.\n" +"Click on one of the files or subdirectories in the tree\n" +"to get more information about the selected item." msgstr "" -"\t\tLe fichier gimprc est utilisИ pour stocker les prИfИrences\n" -"\t\tpersonnelles telles que les comportements par dИfaut.\n" -"\t\tLes chemins pour rechercher les brosses, palettes, dИgradИs\n" -"\t\tmotifs, extensions et modules sont Иgalement paramИtrИs ici.\n" -#: app/install.c:147 -msgid "" -"\t\tPlug-ins and extensions are external programs run by\n" -"\t\tthe GIMP which provide additional functionality.\n" -"\t\tThese programs are searched for at run-time and\n" -"\t\tinformation about their functionality and mod-times\n" -"\t\tis cached in this file. This file is intended to\n" -"\t\tbe GIMP-readable only, and should not be edited.\n" +#: app/install.c:656 +msgid "Click \"Continue\" to create your personal GIMP directory." msgstr "" -"\t\tLes extensions et extensions sont des programmes\n" -"\t\texternes, lancИs par GIMP, qui fournissent des\n" -"\t\tfonctionnalitИes additionnelles. Ces programmes sont\n" -"\t\tinterrogИs lors du lancement de GIMP et des\n" -"\t\tinformations sur leurs fonctionnalitИs et dates de\n" -"\t\tmodifications sont stockИes dans ce fichier pour des\n" -"\t\tlancements ultИrieurs plus rapides.\n" -"\t\tCe fichier est prИvu pour n'Йtre lu que par GIMP\n" -"\t\tet ne doit pas Йtre ИditИ.\n" -#: app/install.c:155 -msgid "" -"\t\tKey shortcuts can be dynamically redefined in The GIMP.\n" -"\t\tThe menurc is a dump of your configuration so it can.\n" -"\t\tbe remembered for the next session. You may edit this\n" -"\t\tfile if you wish, but it is much easier to define the\n" -"\t\tkeys from within The GIMP. Deleting this file will\n" -"\t\trestore the default shortcuts.\n" -msgstr "" -"\t\tLes raccourcis clavier peuvent Йtre redИfinis dynamiquement\n" -"\t\tdans Gimp. Le fichier menurc est un enregistrement de votre\n" -"\t\tconfiguration, afin que celle-ci puisse Йtre reprise de\n" -"\t\tsession en session. Vous pouvez Иditer ce fichier Ю la main\n" -"\t\tsi vous le dИsirez, mais il est bien plus facile de dИfinir\n" -"\t\tles touches depuis Gimp. Effacer ce fichier redonne les\n" -"\t\traccourcis clavier par dИfaut.\n" - -#: app/install.c:163 -msgid "" -"\t\tThe sessionrc is used to store what dialog windows were\n" -"\t\topen the last time you quit The GIMP. You can configure\n" -"\t\tThe GIMP to reopen these dialogs at the saved position.\n" -msgstr "" -"\t\tLe fichier sessionrc est utilisИ pour sauvegarder la\n" -"\t\tposition des fenЙtres de dialogue au moment de quitter\n" -"\t\tGimp. Vous pouvez configurer Gimp pour qu'il rouvre\n" -"\t\tau lancement ces dialogues Ю leur positions sauvegardИe.\n" - -#: app/install.c:168 -msgid "" -"\t\tThe unitrc is used to store your user units database.\n" -"\t\tYou can define additional units and use them just\n" -"\t\tlike you use the built-in units inches, millimeters,\n" -"\t\tpoints and picas. This file is overwritten each time\n" -"\t\tyou quit the GIMP.\n" -msgstr "" -"\t\tunitrc est utilisИ pour stocker les unitИs de mesure\n" -"\t\tpersonnelles. Vous pouvez dИfinir des unitИs supplИmentaires\n" -"\t\tet les utiliser comme les unitИs intИgrИes (pouces,\n" -"\t\tmillimХtres, points, picas). Ce fichier est rИИcrit chaque\n" -"\t\tfois que vous quittez GIMP.\n" - -#: app/install.c:175 -msgid "" -"\t\tThis is a subdirectory which can be used to store\n" -"\t\tuser defined brushes. The default gimprc file\n" -"\t\tchecks this subdirectory in addition to the system-\n" -"\t\twide gimp brushes installation when searching for\n" -"\t\tbrushes.\n" -msgstr "" -"\t\tRИpertoire qui peut Йtre utilisИ pour stocker vos\n" -"\t\tpinceaux personnels. Avec les paramХtres (gimprc)\n" -"\t\tpar dИfaut, GIMP regarde dans ce rИpertoire et dans\n" -"\t\tle rИpertoire de pinceaux global Ю tous les\n" -"\t\tutilisateurs lorsqu'il recherche des pinceaux.\n" - -#: app/install.c:182 -msgid "" -"\t\tThis is a subdirectory which is used to store brushes\n" -"\t\tthat are created with the brush editor. The default\n" -"\t\tgimprc file checks this subdirectory when searching for\n" -"\t\tgenerated brushes.\n" -msgstr "" -"\t\tRИpertoire qui peut Йtre utilisИ pour stocker les\n" -"\t\tpinceaux crИИs avec l'Иditeur de pinceaux.\n" -"\t\tAvec les paramХtres (gimprc) par dИfaut, GIMP\n" -"\t\tregarde dans ce rИpertoire lorsqu'il recherche des\n" -"\t\tpinceaux gИnИrИs.\n" - -#: app/install.c:188 -msgid "" -"\t\tThis is a subdirectory which can be used to store\n" -"\t\tuser defined gradients. The default gimprc file\n" -"\t\tchecks this subdirectory in addition to the system-\n" -"\t\twide gimp gradients installation when searching for\n" -"\t\tgradients.\n" -msgstr "" -"\t\tRИpertoire qui peut Йtre utilisИ pour stocker vos\n" -"\t\tdИgradИs personnels. Avec les paramХtres (gimprc)\n" -"\t\tpar dИfaut, GIMP regarde dans ce rИpertoire et dans\n" -"\t\tle rИpertoire de dИgradИs global Ю tous les\n" -"\t\tutilisateurs lorsqu'il recherche des dИgradИs.\n" - -#: app/install.c:195 -msgid "" -"\t\tThis is a subdirectory which can be used to store\n" -"\t\tuser defined figures to be used by the gfig plug-in.\n" -"\t\tThe default gimprc file checks this subdirectory in\n" -"\t\taddition to the systemwide gimp gfig installation\n" -"\t\twhen searching for gfig figures.\n" -msgstr "" -"\t\tRИpertoire qui peut Йtre utilisИ pour stocker vos\n" -"\t\tfigures au trait personnelles. Avec les paramХtres (gimprc)\n" -"\t\tpar dИfaut, GIMP regarde dans ce rИpertoire et dans\n" -"\t\tle rИpertoire de dИgradИs global Ю tous les\n" -"\t\tutilisateurs lorsqu'il recherche des figures pour\n" -"\t\tl'extension gfig.\n" - -#: app/install.c:202 -msgid "" -"\t\tThis is a subdirectory which can be used to store\n" -"\t\tuser defined gflares to be used by the gflare plug-in.\n" -"\t\tThe default gimprc file checks this subdirectory in\n" -"\t\taddition to the systemwide gimp gflares installation\n" -"\t\twhen searching for gflares.\n" -msgstr "" -"\t\tRИpertoire qui peut Йtre utilisИ pour stocker vos\n" -"\t\tparamХtres personnels pour l'effet ╚ Иblouissement ╩.\n" -"\t\tAvec les paramХtres (gimprc) par dИfaut, GIMP regarde\n" -"\t\tdans ce rИpertoire et dans le rИpertoire de dИgradИs\n" -"\t\tglobal Ю tous les utilisateurs lorsqu'il recherche des\n" -"\t\tparamХtres pour l'extension gflare.\n" - -#: app/install.c:209 -msgid "" -"\t\tThis is a subdirectory which can be used to store\n" -"\t\tuser defined fractals to be used by the FractalExplorer\n" -"\t\tplug-in. The default gimprc file checks this subdirectory in\n" -"\t\taddition to the systemwide gimp FractalExplorer installation\n" -"\t\twhen searching for fractals.\n" -msgstr "" -"\t\tRИpertoire qui peut Йtre utilisИ pour stocker vos\n" -"\t\tfigures fractales personnelles. Avec les paramХtres (gimprc)\n" -"\t\tpar dИfaut, GIMP regarde dans ce rИpertoire et dans\n" -"\t\tle rИpertoire de dИgradИs global Ю tous les\n" -"\t\tutilisateurs lorsqu'il recherche des figures pour\n" -"\t\tle plug-in FractalExplorer.\n" - -#: app/install.c:216 -msgid "" -"\t\tThis is a subdirectory which can be used to store\n" -"\t\tuser defined palettes. The default gimprc file\n" -"\t\tchecks only this subdirectory (not the system-wide\n" -"\t\tinstallation) when searching for palettes. During\n" -"\t\tinstallation, the system palettes will be copied\n" -"\t\there. This is done to allow modifications made to\n" -"\t\tpalettes during GIMP execution to persist across\n" -"\t\tsessions.\n" -msgstr "" -"\t\tRИpertoire contenant vos palettes personnelles.\n" -"\t\tLa configuration (gimprc) par dИfaut ne regarde que\n" -"\t\tdans ce rИpertoire (et non dans celui global au systХme)\n" -"\t\tlorsqu'il recherche des palettes. Pendant l'installation,\n" -"\t\tles palettes du systХme seront copiИes dans ce\n" -"\t\trИpertoire.\n" -"\t\tCeci est fait de sorte que les modifications faites aux\n" -"\t\tpalettes pendant l'exИcution de GIMP persistent entre les\n" -"\t\tsessions.\n" - -#: app/install.c:226 -msgid "" -"\t\tThis is a subdirectory which can be used to store\n" -"\t\tuser defined patterns. The default gimprc file\n" -"\t\tchecks this subdirectory in addition to the system-\n" -"\t\twide gimp patterns installation when searching for\n" -"\t\tpatterns.\n" -msgstr "" -"\t\tRИpertoire qui peut Йtre utilisИ pour stocker vos\n" -"\t\tmotifs personnels. Avec les paramХtres (gimprc)\n" -"\t\tpar dИfaut, GIMP regarde dans ce rИpertoire et dans\n" -"\t\tle rИpertoire de motifs global Ю tous les\n" -"\t\tutilisateurs lorsqu'il recherche des motifss.\n" - -#: app/install.c:233 -msgid "" -"\t\tThis is a subdirectory which can be used to store\n" -"\t\tuser created, temporary, or otherwise non-system-\n" -"\t\tsupported plug-ins. The default gimprc file\n" -"\t\tchecks this subdirectory in addition to the system-\n" -"\t\twide GIMP plug-in directories when searching for\n" -"\t\tplug-ins.\n" -msgstr "" -"\t\tRИpertoire qui peut Йtre utilisИ pour stocker vos\n" -"\t\textensions (plug-ins) personnels (p.ex. temporaires,\n" -"\t\tnon supportИs par les administrateurs). Avec les\n" -"\t\tparamХtres (gimprc) par dИfaut, GIMP regarde dans ce\n" -"\t\trИpertoire et dans rИpertoire d'extensions global\n" -"\t\tlorsqu'il recherche des plug-ins.\n" - -#: app/install.c:241 -msgid "" -"\t\tThis subdirectory can be used to store user created,\n" -"\t\ttemporary, or otherwise non-system-supported DLL modules.\n" -"\t\tThe default gimprc file checks this subdirectory\n" -"\t\tin addition to the system-wide GIMP module directory\n" -"\t\twhen searching for modules to load when initializing.\n" -msgstr "" -"\t\tRИpertoire qui peut Йtre utilisИ pour stocker vos\n" -"\t\tmodules DLL personnels (p.ex. temporaires,\n" -"\t\tnon supportИs par les administrateurs). Avec les\n" -"\t\tparamХtres (gimprc) par dИfaut, GIMP regarde dans ce\n" -"\t\trИpertoire et dans rИpertoire de modules global\n" -"\t\tlorsqu'il recherche des modules DLL.\n" - -#: app/install.c:248 -msgid "" -"\t\tThis subdirectory is used by the GIMP to store \n" -"\t\tuser created and installed scripts. The default gimprc\n" -"\t\tfile checks this subdirectory in addition to the system\n" -"\t\t-wide gimp scripts subdirectory when searching for scripts\n" -msgstr "" -"\t\tRИpertoire qui peut Йtre utilisИ pour stocker vos\n" -"\t\tscripts personnels. Avec les paramХtres (gimprc)\n" -"\t\tpar dИfaut, GIMP regarde dans ce rИpertoire et dans\n" -"\t\tle rИpertoire de scripts global Ю tous les\n" -"\t\tutilisateurs lorsqu'il recherche des scripts.\n" - -#: app/install.c:254 -msgid "" -"\t\tThis subdirectory is used by the GIMP to temporarily\n" -"\t\tstore undo buffers to reduce memory usage. If GIMP is\n" -"\t\tunceremoniously killed, files may persist in this directory\n" -"\t\tof the form: gimp<#>.<#>. These files are useless across\n" -"\t\tGIMP sessions and can be destroyed with impunity.\n" -msgstr "" -"\t\tCe rИpertoire est utilisИ par GIMP pour stocker\n" -"\t\ttemporairement des tampons d'annulation, afin de rИduire\n" -"\t\tla place mИmoire utilisИe. Si GIMP est tuИ brutalement\n" -"\t\tdes fichiers de la forme gimp.. peuvent rester\n" -"\t\tdans ce rИpertoire. Ces fichiers sont inutiles lors des\n" -"\t\tutilisations ultИrieures de GIMP et peuvent Йtre dИtruits\n" -"\t\tsans prИjudice entre deux utilisations.\n" - -#: app/install.c:263 -msgid "GIMP Installation" -msgstr "Installation de GIMP" - -#: app/install.c:268 -msgid "Install" -msgstr "Installer" - -#: app/install.c:270 -msgid "Ignore" -msgstr "Ignorer" - -#. this is a fontset, e.g. multiple comma-separated font definitions -#: app/install.c:295 app/install.c:453 -msgid "-*-helvetica-bold-r-normal-*-*-120-*-*-*-*-*-*,*" -msgstr "-*-helvetica-bold-r-normal-*-*-120-*-*-*-*-iso8859-1,*" - -#. this is a font, provide only one single font definition -#: app/install.c:298 -msgid "-*-helvetica-medium-o-normal-*-*-100-*-*-*-*-*-*" -msgstr "-*-helvetica-medium-r-normal-*-*-100-*-*-*-*-iso8859-1,*" - -#. this is a fontset, e.g. multiple comma-separated font definitions -#: app/install.c:301 -msgid "-*-helvetica-medium-r-normal-*-*-100-*-*-*-*-*-*,*" -msgstr "-*-helvetica-medium-r-normal-*-*-100-*-*-*-*-iso8859-1,*" - -#: app/install.c:423 -msgid "Installation Log" -msgstr "Historique de l'installation" - -#: app/install.c:428 -msgid "Continue" -msgstr "Continuer" - -#. this is a fontset, e.g. multiple comma-separated font definitions -#: app/install.c:456 -msgid "-*-helvetica-medium-r-normal-*-*-120-*-*-*-*-*-*,*" -msgstr "-*-helvetica-medium-r-normal-*-*-120-*-*-*-*-iso8859-1,*" - -#: app/install.c:462 -msgid "" -"User Installation Log\n" -"\n" +#: app/install.c:736 +#, fuzzy +msgid "User Installation Log" msgstr "" "Historique de l'installation\n" "\n" -#: app/install.c:472 -msgid " does not exist. Cannot install.\n" +#: app/install.c:741 +msgid "GIMP Performance Tuning" +msgstr "" + +#: app/install.c:744 +msgid "For optimal GIMP performance, some settings may have to be adjusted." +msgstr "" + +#: app/install.c:751 +msgid "Click \"Continue\" to accept the settings above." +msgstr "" + +#: app/install.c:760 +#, fuzzy +msgid "Monitor Resolution" +msgstr "Obtenir la rИsolution du moniteur" + +#: app/install.c:763 +msgid "" +"To display images in their natural size, GIMP needs to know your monitor " +"resolution." +msgstr "" + +#: app/install.c:771 +msgid "Click \"Continue\" to start The GIMP." +msgstr "" + +#: app/install.c:845 +#, fuzzy +msgid "does not exist. Cannot install." msgstr " n'existe pas. Impossible d'installer.\n" -#: app/install.c:480 -msgid "" -" has invalid permissions.\n" -"Cannot install." +#: app/install.c:857 +#, fuzzy +msgid "has invalid permissions. Cannot install." msgstr "" " a des permissions invalides.\n" "Impossible d'installer." -#: app/install.c:514 +#: app/install.c:895 +#, fuzzy msgid "" -"Did you notice any error messages\n" -"in the console window? If not, installation\n" -"was successful! Otherwise, quit and investigate\n" -"the possible reason...\n" +"Did you notice any error messages in the console window?\n" +"If not, installation was successful!\n" +"Otherwise, quit and investigate the possible reason..." msgstr "" "Avez vous remarquИ des messages d'erreur dans\n" "la fenЙtre de console ? S'il n'y en a pas, c'est\n" "que l'installation a rИussi ! Sinon, quittez\n" "et recherchez les causes du problХme...\n" -#: app/install.c:546 +#: app/install.c:955 +#, fuzzy msgid "" -"\n" -"Installation successful!\n" +"Did you notice any error messages in the lines above?\n" +"If not, installation was successful!\n" +"Otherwise, quit and investigate the possible reason..." msgstr "" -"\n" -"Installation terminИe avec succХs !\n" +"Avez vous remarquИ des messages d'erreur dans\n" +"la fenЙtre de console ? S'il n'y en a pas, c'est\n" +"que l'installation a rИussi ! Sinon, quittez\n" +"et recherchez les causes du problХme...\n" -#: app/install.c:555 -msgid "" -"\n" -"Installation failed. Contact system administrator.\n" +#: app/install.c:969 +msgid "Click \"Continue\" to complete GIMP installation." +msgstr "" + +#: app/install.c:978 +#, fuzzy +msgid "Installation failed. Contact system administrator." msgstr "" "\n" "иchec de l'installation. Contactez votre administrateur systХme.\n" +#: app/install.c:999 +msgid "" +"GIMP uses a limited amount of memory to store image data, the so-called\n" +"\"Tile Cache\". You should adjust it's size to fit into memory. Consider\n" +"the amount of memory used by other running processes." +msgstr "" + +#: app/install.c:1015 app/preferences_dialog.c:2102 +msgid "Tile Cache Size:" +msgstr "Taille du cache de carreaux:" + +#: app/install.c:1025 +msgid "" +"All image and undo data which doesn't fit into the Tile Cache will be\n" +"written to a swap file. This file should be located on a local filesystem\n" +"with enough free space (several hundred MB). On a UNIX system, you\n" +"may want to use the system-wide temp-dir (\"/tmp\" or \"/var/tmp\")." +msgstr "" + +#: app/install.c:1035 app/preferences_dialog.c:2361 +msgid "Select Swap Dir" +msgstr "Choisir rИpertoire d'Иchange" + +#: app/install.c:1041 +#, fuzzy +msgid "Swap Directory:" +msgstr "RИpertoire d'Иchange :" + +#: app/install.c:1063 +msgid "" +"GIMP can obtain this information from your X-server.\n" +"However, most X-servers do not return useful values." +msgstr "" + +#: app/install.c:1070 +#, fuzzy, c-format +msgid "Get Resolution from X-server (Currently %d x %d dpi)" +msgstr "(actuellement %d x %d ppp)" + +#: app/install.c:1087 +msgid "Alternatively, you can set the monitor resolution manually." +msgstr "" + +#: app/install.c:1102 +#, fuzzy +msgid "Monitor Resolution X:" +msgstr "Obtenir la rИsolution du moniteur" + #: app/interface.c:312 msgid "" "Foreground & background colors. The black and white squares reset colors. " @@ -2905,8 +3030,8 @@ msgstr "D msgid "Guide procedures" msgstr "ProcИdures sur les guides" -#: app/internal_procs.c:122 app/preferences_dialog.c:1772 -#: app/preferences_dialog.c:1774 +#: app/internal_procs.c:122 app/preferences_dialog.c:1733 +#: app/preferences_dialog.c:1735 msgid "Interface" msgstr "Interface" @@ -3328,142 +3453,133 @@ msgid "degrees" msgstr "degrИs" #. /File -#: app/menus.c:82 +#. the underscore installs an accelerator using the character that follows +#: app/menus.c:85 msgid "/_File" msgstr "/_Fichier" -#: app/menus.c:84 app/menus.c:191 +#. /File +#: app/menus.c:87 app/menus.c:193 msgid "/File/New..." msgstr "/Fichier/Nouveau..." -#: app/menus.c:86 app/menus.c:193 +#: app/menus.c:89 app/menus.c:195 msgid "/File/Open..." msgstr "/Fichier/Ouvrir..." -#: app/menus.c:93 +#: app/menus.c:96 msgid "/File/Acquire" msgstr "/Fichier/Acquisition" -#: app/menus.c:98 +#: app/menus.c:101 msgid "/File/Preferences..." msgstr "/Fichier/PrИfИrences..." -#: app/menus.c:105 -msgid "/File/Dialogs" -msgstr "/Fichier/Dialogues" - -#: app/menus.c:107 +#: app/menus.c:108 msgid "/File/Dialogs/Layers, Channels & Paths..." msgstr "/Fichier/Dialogues/Calques, canaux & chemins...." -#: app/menus.c:109 +#: app/menus.c:110 msgid "/File/Dialogs/Tool Options..." msgstr "/Fichier/Dialogues/Options des outils..." -#: app/menus.c:114 +#: app/menus.c:115 msgid "/File/Dialogs/Brushes..." msgstr "/Fichier/Dialogues/Pinceaux..." -#: app/menus.c:116 +#: app/menus.c:117 msgid "/File/Dialogs/Patterns..." msgstr "/Fichier/Dialogues/Motifs..." -#: app/menus.c:118 +#: app/menus.c:119 msgid "/File/Dialogs/Gradients..." msgstr "/Fichier/Dialogues/DИgradИ..." -#: app/menus.c:120 +#: app/menus.c:121 msgid "/File/Dialogs/Palette..." msgstr "/Fichier/Dialogues/Palette..." -#: app/menus.c:122 +#: app/menus.c:123 msgid "/File/Dialogs/Indexed Palette..." msgstr "/Fichier/Dialogues/Palette IndexИe..." -#: app/menus.c:127 +#: app/menus.c:128 msgid "/File/Dialogs/Input Devices..." msgstr "/Fichier/Dialogues/PИriphИriques d'Acquisition..." -#: app/menus.c:129 +#: app/menus.c:130 msgid "/File/Dialogs/Device Status..." msgstr "/Fichier/Dialogues/иtat des PИriphИriques..." -#: app/menus.c:134 +#: app/menus.c:135 msgid "/File/Dialogs/Document Index..." msgstr "/Fichier/Dialogues/Index des Documents..." -#: app/menus.c:136 +#: app/menus.c:137 msgid "/File/Dialogs/Error Console..." msgstr "/Fichier/Dialogues/Console d'Erreur..." -#: app/menus.c:138 +#: app/menus.c:139 msgid "/File/Dialogs/Display Filters..." msgstr "/Fichier/Dialogues/Montrer les filtres..." -#: app/menus.c:148 app/menus.c:206 +#: app/menus.c:149 app/menus.c:208 msgid "/File/Quit" msgstr "/Fichier/Quitter" #. /Xtns -#: app/menus.c:153 +#. the underscore installs an accelerator using the character that follows +#: app/menus.c:155 msgid "/_Xtns" msgstr "/E_xtensions" -#: app/menus.c:155 +#: app/menus.c:157 msgid "/Xtns/Module Browser..." msgstr "/Extensions/Explorateur de Modules..." #. /Help -#: app/menus.c:163 +#. the underscore installs an accelerator using the character that follows +#: app/menus.c:166 msgid "/_Help" msgstr "/_Aide" -#: app/menus.c:165 +#: app/menus.c:168 msgid "/Help/Help..." msgstr "/Help/Aide..." -#: app/menus.c:167 +#: app/menus.c:170 msgid "/Help/Context Help..." msgstr "/Aide/Aide contextuelle..." -#: app/menus.c:169 +#: app/menus.c:172 msgid "/Help/Tip of the Day..." msgstr "/Aide/Conseil du jour..." -#: app/menus.c:171 +#: app/menus.c:174 msgid "/Help/About..." msgstr "/Aide/ю Propos..." -#: app/menus.c:173 +#: app/menus.c:176 msgid "/Help/Dump Items (Debug)" msgstr "/Aide/Dump d'ИlИments (Debug)" -#. /File -#: app/menus.c:189 -msgid "/File" -msgstr "/Fichier" - -#: app/menus.c:195 +#: app/menus.c:197 msgid "/File/Save" msgstr "/Fichier/Enregistrer" -#: app/menus.c:197 +#: app/menus.c:199 msgid "/File/Save As..." msgstr "/Fichier/Enregistrer sous..." -#: app/menus.c:199 +#: app/menus.c:201 msgid "/File/Revert" msgstr "/Fichier/Revenir au fichier" -#: app/menus.c:204 +#: app/menus.c:206 msgid "/File/Close" msgstr "/Fichier/Fermer" #. /Edit -#: app/menus.c:214 -msgid "/Edit" -msgstr "/иdition" - #: app/menus.c:216 msgid "/Edit/Undo" msgstr "/иdition/DИfaire" @@ -3494,671 +3610,590 @@ msgstr "/ #. /Edit/Buffer #: app/menus.c:236 -msgid "/Edit/Buffer" -msgstr "/иdition/Tampon" - -#: app/menus.c:238 msgid "/Edit/Buffer/Cut Named..." msgstr "/иdition/Tampon/Couper NommИ" -#: app/menus.c:240 +#: app/menus.c:238 msgid "/Edit/Buffer/Copy Named..." msgstr "/иdition/Tampon/Copier NommИ" -#: app/menus.c:242 +#: app/menus.c:240 msgid "/Edit/Buffer/Paste Named..." msgstr "/иdition/Tampon/Coller NommИ" -#: app/menus.c:247 +#: app/menus.c:245 msgid "/Edit/Clear" msgstr "/иdition/Effacer" -#: app/menus.c:249 +#: app/menus.c:247 msgid "/Edit/Fill" msgstr "/иdition/Remplir" -#: app/menus.c:251 +#: app/menus.c:249 msgid "/Edit/Stroke" msgstr "/иdition/Coup de Pinceau" #. /Select -#: app/menus.c:259 -msgid "/Select" -msgstr "/SИlection" - -#: app/menus.c:261 +#: app/menus.c:257 msgid "/Select/Invert" msgstr "/SИlection/Inverser" -#: app/menus.c:263 +#: app/menus.c:259 msgid "/Select/All" msgstr "/SИlection/Tout sИlectionner" -#: app/menus.c:265 +#: app/menus.c:261 msgid "/Select/None" msgstr "/SИlection/Aucune" -#: app/menus.c:267 +#: app/menus.c:263 msgid "/Select/Float" msgstr "/SИlection/Flottante" -#: app/menus.c:272 +#: app/menus.c:268 msgid "/Select/Feather..." msgstr "/SИlection/Plume..." -#: app/menus.c:274 +#: app/menus.c:270 msgid "/Select/Sharpen" msgstr "/SИlection/Affiner" -#: app/menus.c:276 +#: app/menus.c:272 msgid "/Select/Shrink..." msgstr "/SИlection/Rapetisser..." -#: app/menus.c:278 +#: app/menus.c:274 msgid "/Select/Grow..." msgstr "/SИlection/Agrandir..." -#: app/menus.c:280 +#: app/menus.c:276 msgid "/Select/Border..." msgstr "/SИlection/Bordure..." -#: app/menus.c:285 +#: app/menus.c:281 msgid "/Select/Save to Channel" msgstr "/SИlection/Enregistrer dans un canal" #. /View -#: app/menus.c:290 -msgid "/View" -msgstr "/Vue" - -#: app/menus.c:292 +#: app/menus.c:286 msgid "/View/Zoom In" msgstr "/Vue/Zoom +" -#: app/menus.c:294 +#: app/menus.c:288 msgid "/View/Zoom Out" msgstr "/Vue/Zoom -" #. /View/Zoom -#: app/menus.c:299 -msgid "/View/Zoom" -msgstr "/Vue/Zoom" - -#: app/menus.c:301 +#: app/menus.c:293 msgid "/View/Zoom/16:1" msgstr "/Vue/Zoom/16:1" -#: app/menus.c:303 +#: app/menus.c:295 msgid "/View/Zoom/8:1" msgstr "/Vue/Zoom/8:1" -#: app/menus.c:305 +#: app/menus.c:297 msgid "/View/Zoom/4:1" msgstr "/Vue/Zoom/4:1" -#: app/menus.c:307 +#: app/menus.c:299 msgid "/View/Zoom/2:1" msgstr "/Vue/Zoom/2:1" -#: app/menus.c:309 +#: app/menus.c:301 msgid "/View/Zoom/1:1" msgstr "/Vue/Zoom/1:1" -#: app/menus.c:311 +#: app/menus.c:303 msgid "/View/Zoom/1:2" msgstr "/Vue/Zoom/1:2" -#: app/menus.c:313 +#: app/menus.c:305 msgid "/View/Zoom/1:4" msgstr "/Vue/Zoom/1:4" -#: app/menus.c:315 +#: app/menus.c:307 msgid "/View/Zoom/1:8" msgstr "/Vue/Zoom/1:8" -#: app/menus.c:317 +#: app/menus.c:309 msgid "/View/Zoom/1:16" msgstr "/Vue/Zoom/1:16" -#: app/menus.c:320 +#: app/menus.c:312 msgid "/View/Dot for Dot" msgstr "/Vue/Point pour point" -#: app/menus.c:325 +#: app/menus.c:317 msgid "/View/Info Window..." msgstr "/Vue/Info. fenЙtre..." -#: app/menus.c:327 +#: app/menus.c:319 msgid "/View/Nav. Window..." msgstr "/Vue/Nav. entre fenЙtres..." -#: app/menus.c:329 -msgid "/View/Undo History..." -msgstr "/Vue/Historique d'annulation..." - -#: app/menus.c:334 +#: app/menus.c:324 msgid "/View/Toggle Selection" msgstr "/Vue/(DИs)activer SИlection" -#: app/menus.c:336 +#: app/menus.c:326 msgid "/View/Toggle Rulers" msgstr "/Vue/(DИs)activer les RХgles" -#: app/menus.c:338 +#: app/menus.c:328 msgid "/View/Toggle Statusbar" msgstr "/Vue/(DИs)activer la Barre d'иtat" -#: app/menus.c:340 +#: app/menus.c:330 msgid "/View/Toggle Guides" msgstr "/Vue/(DИs)activer les Guides" -#: app/menus.c:342 +#: app/menus.c:332 msgid "/View/Snap to Guides" msgstr "/Vue/Aligner sur les Guides" -#: app/menus.c:347 +#: app/menus.c:337 msgid "/View/New View" msgstr "/Vue/Nouvelle vue" -#: app/menus.c:349 +#: app/menus.c:339 msgid "/View/Shrink Wrap" msgstr "/Vue/Empaqueter" -#. /Image -#: app/menus.c:357 -msgid "/Image" -msgstr "/Image" - #. /Image/Mode -#: app/menus.c:362 -msgid "/Image/Mode" -msgstr "/Image/Mode" - -#: app/menus.c:364 +#: app/menus.c:344 msgid "/Image/Mode/RGB" msgstr "/Image/Mode/RVB" -#: app/menus.c:366 +#: app/menus.c:346 msgid "/Image/Mode/Grayscale" msgstr "/Image/Mode/Niveaux de Gris" -#: app/menus.c:368 +#: app/menus.c:348 msgid "/Image/Mode/Indexed..." msgstr "/Image/Mode/IndexИe" #. /Image/Colors -#: app/menus.c:376 -msgid "/Image/Colors" -msgstr "/Image/Couleurs" - -#: app/menus.c:381 +#: app/menus.c:356 msgid "/Image/Colors/Desaturate" msgstr "/Image/Couleurs/DИsaturer" -#: app/menus.c:383 +#: app/menus.c:358 msgid "/Image/Colors/Invert" msgstr "/Image/Couleurs/Inverser" #. /Image/Colors/Auto -#: app/menus.c:391 -msgid "/Image/Colors/Auto" -msgstr "/Image/Couleurs/Auto" - -#: app/menus.c:393 +#: app/menus.c:366 msgid "/Image/Colors/Auto/Equalize" msgstr "/Image/Couleurs/Auto/иgaliser" #. /Image/Alpha -#: app/menus.c:401 -msgid "/Image/Alpha" -msgstr "/Image/Alpha" - -#: app/menus.c:403 +#: app/menus.c:374 msgid "/Image/Alpha/Add Alpha Channel" msgstr "/Image/Alpha/Ajouter Canal Alpha" #. /Image/Transforms -#: app/menus.c:408 -msgid "/Image/Transforms" -msgstr "/Image/Transformations" - -#: app/menus.c:410 +#: app/menus.c:379 msgid "/Image/Transforms/Offset..." msgstr "/Image/Transformations/DИcalage..." -#: app/menus.c:412 +#: app/menus.c:381 msgid "/Image/Transforms/Rotate" msgstr "/Image/Transformations/Rotation" -#: app/menus.c:419 +#: app/menus.c:388 msgid "/Image/Canvas Size..." msgstr "/Image/Taille du canevas..." -#: app/menus.c:421 +#: app/menus.c:390 msgid "/Image/Scale Image..." msgstr "/Image/иchelle de l'image..." -#: app/menus.c:423 +#: app/menus.c:392 msgid "/Image/Duplicate" msgstr "/Image/Dupliquer" #. /Layers -#: app/menus.c:431 -msgid "/Layers" -msgstr "/Calques" - -#: app/menus.c:433 +#: app/menus.c:400 msgid "/Layers/Layers, Channels & Paths..." msgstr "/Calques/Calques, canaux & chemins..." -#. /Layers/Stack -#: app/menus.c:438 -msgid "/Layers/Stack" -msgstr "/Calques/Pile" +#: app/menus.c:404 +msgid "/Layers/Layer to Imagesize" +msgstr "/Calques/Mettre aux dimensions de l'image" -#: app/menus.c:440 +#. /Layers/Stack +#: app/menus.c:409 msgid "/Layers/Stack/Previous Layer" msgstr "/Calques/Pile/Calque prИcИdent" -#: app/menus.c:442 +#: app/menus.c:411 msgid "/Layers/Stack/Next Layer" msgstr "/Calques/Pile/Calque suivant" -#: app/menus.c:444 +#: app/menus.c:413 msgid "/Layers/Stack/Raise Layer" msgstr "/Calques/Pile/Remonter calque" -#: app/menus.c:446 +#: app/menus.c:415 msgid "/Layers/Stack/Lower Layer" msgstr "/Calques/Pile/Descendre calque" -#: app/menus.c:448 +#: app/menus.c:417 msgid "/Layers/Stack/Layer to Top" msgstr "/Calques/Pile/Calque vers le sommet" -#: app/menus.c:450 +#: app/menus.c:419 msgid "/Layers/Stack/Layer to Bottom" msgstr "/Calques/Pile/Calque vers le fond" #. /Layers/Rotate -#: app/menus.c:457 +#: app/menus.c:426 msgid "/Layers/Rotate" msgstr "/Calques/Rotation" -#: app/menus.c:460 -msgid "/Layers/Layer to Imagesize" -msgstr "/Calques/Mettre aux dimensions de l'image" - -#: app/menus.c:465 +#: app/menus.c:431 msgid "/Layers/Anchor Layer" msgstr "/Calques/Ancrer Calque" -#: app/menus.c:467 +#: app/menus.c:433 msgid "/Layers/Merge Visible Layers..." msgstr "/Calques/Fusionner les calques visibles..." -#: app/menus.c:469 +#: app/menus.c:435 msgid "/Layers/Flatten Image" msgstr "/Calques/Aplatir Image" -#: app/menus.c:474 +#: app/menus.c:440 msgid "/Layers/Mask to Selection" msgstr "/Calques/Masque vers SИlection" -#: app/menus.c:479 +#: app/menus.c:445 msgid "/Layers/Add Alpha Channel" msgstr "/Calques/Ajouter Canal Alpha" -#: app/menus.c:481 +#: app/menus.c:447 msgid "/Layers/Alpha to Selection" msgstr "/Calques/Alpha vers SИlection" #. /Tools -#: app/menus.c:489 -msgid "/Tools" -msgstr "/Outils" - -#: app/menus.c:491 +#: app/menus.c:455 msgid "/Tools/Toolbox" msgstr "/Outils/BoНte Ю outils" -#: app/menus.c:493 +#: app/menus.c:457 msgid "/Tools/Default Colors" msgstr "/Outils/Couleurs par dИfaut" -#: app/menus.c:495 +#: app/menus.c:459 msgid "/Tools/Swap Colors" msgstr "/Outils/иchanger les Couleurs" -#: app/menus.c:501 -msgid "/Tools/Select Tools" -msgstr "/Outils/SИlectionner" - -#: app/menus.c:503 -msgid "/Tools/Transform Tools" -msgstr "/Outils/Transformer" - -#: app/menus.c:505 -msgid "/Tools/Paint Tools" -msgstr "/Outils/Dessiner" - #. /Dialogs -#: app/menus.c:510 -msgid "/Dialogs" -msgstr "/Dialogues" - -#: app/menus.c:512 +#: app/menus.c:466 msgid "/Dialogs/Layers, Channels & Paths..." msgstr "/Dialogues/Calques, canaux & chemins..." -#: app/menus.c:514 +#: app/menus.c:468 msgid "/Dialogs/Tool Options..." msgstr "/Dialogues/Options des Outils..." -#: app/menus.c:519 +#: app/menus.c:473 msgid "/Dialogs/Brushes..." msgstr "/Dialogues/Pinceaux..." -#: app/menus.c:521 +#: app/menus.c:475 msgid "/Dialogs/Patterns..." msgstr "/Dialogues/Motifs..." -#: app/menus.c:523 +#: app/menus.c:477 msgid "/Dialogs/Gradients..." msgstr "/Dialogues/DИgradИ..." -#: app/menus.c:525 +#: app/menus.c:479 msgid "/Dialogs/Palette..." msgstr "/Dialogues/Palette..." -#: app/menus.c:527 +#: app/menus.c:481 msgid "/Dialogs/Indexed Palette..." msgstr "/Dialogues/Palette IndexИe..." -#: app/menus.c:532 +#: app/menus.c:486 msgid "/Dialogs/Input Devices..." msgstr "/Dialogues/PИriphИriques d'EntrИe..." -#: app/menus.c:534 +#: app/menus.c:488 msgid "/Dialogs/Device Status..." msgstr "/Dialogues/иtat des PИriphИriques..." -#: app/menus.c:539 +#: app/menus.c:493 msgid "/Dialogs/Document Index..." msgstr "/Dialogues/Index des Documents..." -#: app/menus.c:541 +#: app/menus.c:495 msgid "/Dialogs/Error Console..." msgstr "/Dialogues/Console d'Erreur..." -#: app/menus.c:543 +#: app/menus.c:497 msgid "/Dialogs/Display Filters..." msgstr "/Dialogues/Afficher les filtres..." -#. /Filters -#: app/menus.c:551 -msgid "/Filters" -msgstr "/Filtres" +#: app/menus.c:499 +#, fuzzy +msgid "/Dialogs/Undo History..." +msgstr "/Vue/Historique d'annulation..." -#: app/menus.c:553 +#. /Filters +#: app/menus.c:508 msgid "/Filters/Repeat Last" msgstr "/Filtres/RИpИter le dernier" -#: app/menus.c:555 +#: app/menus.c:510 msgid "/Filters/Re-Show Last" msgstr "/Filtres/Remontrer le dernier" -#: app/menus.c:561 +#: app/menus.c:515 msgid "/Filters/Blur" msgstr "/Filtres/Flou" -#: app/menus.c:564 +#: app/menus.c:517 msgid "/Filters/Colors" msgstr "/Filtres/Couleurs" -#: app/menus.c:569 +#: app/menus.c:519 msgid "/Filters/Noise" msgstr "/Filtres/Bruit" -#: app/menus.c:571 +#: app/menus.c:521 msgid "/Filters/Edge-Detect" msgstr "/Filtres/DИtection de bord" -#: app/menus.c:573 +#: app/menus.c:523 msgid "/Filters/Enhance" msgstr "/Filtres/Enhance" -#: app/menus.c:575 +#: app/menus.c:525 msgid "/Filters/Generic" msgstr "/Filtres/GИnИrique" -#: app/menus.c:580 +#: app/menus.c:530 msgid "/Filters/Glass Effects" msgstr "/Filtres/Effets de verre" -#: app/menus.c:582 +#: app/menus.c:532 msgid "/Filters/Light Effects" msgstr "/Filtres/Effets de lumiХre" -#: app/menus.c:584 +#: app/menus.c:534 msgid "/Filters/Distorts" msgstr "/Fichier/Distorsions" -#: app/menus.c:586 +#: app/menus.c:536 msgid "/Filters/Artistic" msgstr "/Filtres/Artistique" -#: app/menus.c:588 +#: app/menus.c:538 msgid "/Filters/Map" msgstr "/Filtres/Carte" -#: app/menus.c:590 +#: app/menus.c:540 msgid "/Filters/Render" msgstr "/Fichier/Render" -#: app/menus.c:592 +#: app/menus.c:542 msgid "/Filters/Web" msgstr "/Filtres/Web" -#: app/menus.c:597 +#: app/menus.c:547 msgid "/Filters/Animation" msgstr "/Filtres/Animation" -#: app/menus.c:599 +#: app/menus.c:549 msgid "/Filters/Combine" msgstr "/Fichier/Combiner" -#: app/menus.c:604 +#: app/menus.c:554 msgid "/Filters/Toys" msgstr "/Filtres/Jouets" -#. /Script-Fu -#: app/menus.c:609 -msgid "/Script-Fu" -msgstr "/Script-Fu" - -#: app/menus.c:620 +#: app/menus.c:567 msgid "/Automatic" msgstr "/Automatique" -#: app/menus.c:634 +#: app/menus.c:581 msgid "/By Extension" msgstr "/Par extension" -#: app/menus.c:648 +#: app/menus.c:595 msgid "/New Layer..." msgstr "/Nouveau Calque..." #. /Stack -#: app/menus.c:653 -msgid "/Stack" -msgstr "/Pile" - -#: app/menus.c:655 +#: app/menus.c:600 msgid "/Stack/Raise Layer" msgstr "/Pile/Remonter calque" -#: app/menus.c:657 +#: app/menus.c:602 msgid "/Stack/Lower Layer" msgstr "/Pile/Descendre calque" -#: app/menus.c:659 +#: app/menus.c:604 msgid "/Stack/Layer to Top" msgstr "/Pile/Calque vers le sommet" -#: app/menus.c:661 +#: app/menus.c:606 msgid "/Stack/Layer to Bottom" msgstr "/Pile/Calque vers le fond" -#: app/menus.c:664 +#: app/menus.c:609 msgid "/Duplicate Layer" msgstr "/Dupliquer Calque" -#: app/menus.c:666 +#: app/menus.c:611 msgid "/Anchor Layer" msgstr "/Ancrer calque" -#: app/menus.c:668 +#: app/menus.c:613 msgid "/Delete Layer" msgstr "/Effacer Calque" -#: app/menus.c:673 +#: app/menus.c:618 msgid "/Layer Boundary Size..." msgstr "/Taille des bord du calque..." -#: app/menus.c:675 +#: app/menus.c:620 msgid "/Layer to Imagesize" msgstr "/Mettre aux dimensions de l'image" -#: app/menus.c:677 +#: app/menus.c:622 msgid "/Scale Layer..." msgstr "/Mettre calque Ю l'Иchelle..." -#: app/menus.c:682 +#: app/menus.c:627 msgid "/Merge Visible Layers..." msgstr "/Fusionner les calques visibles..." -#: app/menus.c:684 +#: app/menus.c:629 msgid "/Merge Down" msgstr "/Fusionner vers le bas" -#: app/menus.c:686 +#: app/menus.c:631 msgid "/Flatten Image" msgstr "/Aplatir l'image" -#: app/menus.c:691 +#: app/menus.c:636 msgid "/Add Layer Mask..." msgstr "/Ajouter un masque de calque..." -#: app/menus.c:693 +#: app/menus.c:638 msgid "/Apply Layer Mask" msgstr "/Appliquer le masque de calque" -#: app/menus.c:695 +#: app/menus.c:640 msgid "/Delete Layer Mask" msgstr "/Effacer le masque de calque" -#: app/menus.c:697 +#: app/menus.c:642 msgid "/Mask to Selection" msgstr "/Masque vers SИlection" -#: app/menus.c:702 +#: app/menus.c:647 msgid "/Add Alpha Channel" msgstr "/Ajouter Canal Alpha" -#: app/menus.c:704 +#: app/menus.c:649 msgid "/Alpha to Selection" msgstr "/Alpha vers SИlection" -#: app/menus.c:709 +#: app/menus.c:654 msgid "/Edit Layer Attributes..." msgstr "/иditer les Attributs du Calque" -#: app/menus.c:720 +#: app/menus.c:665 msgid "/New Channel..." msgstr "/Nouveau Canal..." -#: app/menus.c:722 +#: app/menus.c:667 msgid "/Raise Channel" msgstr "/Remonter Canal" -#: app/menus.c:724 +#: app/menus.c:669 msgid "/Lower Channel" msgstr "/Descendre Canal" -#: app/menus.c:726 +#: app/menus.c:671 msgid "/Duplicate Channel" msgstr "/Dupliquer Canal" -#: app/menus.c:731 +#: app/menus.c:676 msgid "/Channel to Selection" msgstr "/Canal vers SИlection" -#: app/menus.c:733 +#: app/menus.c:678 msgid "/Add to Selection" msgstr "/Ajouter Ю la SИlection" -#: app/menus.c:735 +#: app/menus.c:680 msgid "/Subtract from Selection" msgstr "/Soustraire de la sИlection" -#: app/menus.c:737 +#: app/menus.c:682 msgid "/Intersect with Selection" msgstr "/Intersection avec la sИlection" -#: app/menus.c:742 +#: app/menus.c:687 msgid "/Delete Channel" msgstr "/Effacer Canal" -#: app/menus.c:747 +#: app/menus.c:692 msgid "/Edit Channel Attributes..." msgstr "/иditer les attributs du canal..." -#: app/menus.c:758 +#: app/menus.c:703 msgid "/New Path" msgstr "/Nouveau Chemin" -#: app/menus.c:760 +#: app/menus.c:705 msgid "/Duplicate Path" msgstr "/Dupliquer Chemin" -#: app/menus.c:762 +#: app/menus.c:707 msgid "/Path to Selection" msgstr "/Chemin vers SИlection" -#: app/menus.c:764 +#: app/menus.c:709 msgid "/Selection to Path" msgstr "/SИlection vers chemin" -#: app/menus.c:766 +#: app/menus.c:711 msgid "/Stroke Path" msgstr "/Chemin du coup de pinceau" -#: app/menus.c:768 +#: app/menus.c:713 msgid "/Delete Path" msgstr "/Effacer Chemin" -#: app/menus.c:773 +#: app/menus.c:718 msgid "/Copy Path" msgstr "/Copier Chemin" -#: app/menus.c:775 +#: app/menus.c:720 msgid "/Paste Path" msgstr "/Coller Chemin" -#: app/menus.c:777 +#: app/menus.c:722 msgid "/Import Path..." msgstr "/Importer Chemin..." -#: app/menus.c:779 +#: app/menus.c:724 msgid "/Export Path..." msgstr "/Exporter Chemin..." -#: app/menus.c:784 +#: app/menus.c:729 msgid "/Edit Path Attributes..." msgstr "/иditer les attributs du chemin" -#: app/menus.c:1310 +#: app/menus.c:1260 #, c-format msgid "Error opening file: %s\n" msgstr "Erreur lors de l'ouverture du fichier: %s\n" @@ -4254,7 +4289,7 @@ msgstr " msgid "Autoload during startup" msgstr "Charger automatiquement durant le dИmarrage" -#: app/move.c:456 +#: app/move.c:458 msgid "Move Tool" msgstr "Outil dИplacement" @@ -4268,7 +4303,7 @@ msgstr "Navigation : %s-%d.%d" msgid "Navigation: No Image" msgstr "Navigation : pas d'image" -#: app/paint_core.c:717 +#: app/paint_core.c:735 msgid "No brushes available for use with this tool." msgstr "Pas de brosse disponible pour Йtre utilisИe avec cet outil." @@ -4709,478 +4744,472 @@ msgstr "" msgid "You will need to restart GIMP for these changes to take effect." msgstr "Vous devez relancer GIMP pour que ces changements prennent effet." -#: app/preferences_dialog.c:1459 +#: app/preferences_dialog.c:1002 +#, c-format +msgid "The default comments is limited to %d characters." +msgstr "" + +#: app/preferences_dialog.c:1424 msgid "Preferences" msgstr "PrИfИrences" #. The categories tree -#: app/preferences_dialog.c:1481 +#: app/preferences_dialog.c:1446 msgid "Categories" msgstr "CatИgories" -#: app/preferences_dialog.c:1509 app/preferences_dialog.c:1511 +#: app/preferences_dialog.c:1474 app/preferences_dialog.c:1476 msgid "New File" msgstr "Nouveau Fichier" -#: app/preferences_dialog.c:1522 +#: app/preferences_dialog.c:1487 msgid "Default Image Size and Unit" msgstr "Taille et unitИ par dИfaut de l'image" -#: app/preferences_dialog.c:1536 +#: app/preferences_dialog.c:1501 msgid "Width" msgstr "Largeur" -#: app/preferences_dialog.c:1538 +#: app/preferences_dialog.c:1503 msgid "Height" msgstr "Hauteur" -#: app/preferences_dialog.c:1568 +#: app/preferences_dialog.c:1533 msgid "Default Image Resolution and Resolution Unit" msgstr "RИsolution et unitИs par dИfaut de l'image" -#: app/preferences_dialog.c:1595 app/preferences_dialog.c:2359 +#: app/preferences_dialog.c:1560 app/preferences_dialog.c:2288 msgid "dpi" msgstr "pts par pouce" -#: app/preferences_dialog.c:1642 +#: app/preferences_dialog.c:1607 msgid "Default Image Type:" msgstr "Type d'image par dИfaut" -#: app/preferences_dialog.c:1678 app/preferences_dialog.c:2166 -msgid "Bytes" -msgstr "Octets" - -#: app/preferences_dialog.c:1679 app/preferences_dialog.c:2167 -msgid "KiloBytes" -msgstr "Kilo-octets" - -#: app/preferences_dialog.c:1680 app/preferences_dialog.c:2168 -msgid "MegaBytes" -msgstr "MИga-octets" - -#: app/preferences_dialog.c:1686 +#: app/preferences_dialog.c:1618 msgid "Maximum Image Size:" msgstr "Taille maximal de l'image:" -#: app/preferences_dialog.c:1692 app/preferences_dialog.c:1694 +#: app/preferences_dialog.c:1623 app/preferences_dialog.c:1625 +#, fuzzy +msgid "Default Comment" +msgstr "DИfaut" + +#: app/preferences_dialog.c:1633 +msgid "Comment Used for New Images" +msgstr "" + +#: app/preferences_dialog.c:1653 app/preferences_dialog.c:1655 msgid "Display" msgstr "Affichage" -#: app/preferences_dialog.c:1702 +#: app/preferences_dialog.c:1663 msgid "Transparency" msgstr "Transparence" -#: app/preferences_dialog.c:1721 +#: app/preferences_dialog.c:1682 msgid "Light Checks" msgstr "Damier clair" -#: app/preferences_dialog.c:1722 +#: app/preferences_dialog.c:1683 msgid "Mid-Tone Checks" msgstr "Damier gris moyen" -#: app/preferences_dialog.c:1723 +#: app/preferences_dialog.c:1684 msgid "Dark Checks" msgstr "Damier sombre" -#: app/preferences_dialog.c:1724 +#: app/preferences_dialog.c:1685 msgid "White Only" msgstr "Blanc Seulement" -#: app/preferences_dialog.c:1725 +#: app/preferences_dialog.c:1686 msgid "Gray Only" msgstr "Gris Seulement" -#: app/preferences_dialog.c:1726 +#: app/preferences_dialog.c:1687 msgid "Black Only" msgstr "Noir Seulement" -#: app/preferences_dialog.c:1730 +#: app/preferences_dialog.c:1691 msgid "Transparency Type:" msgstr "Type de Transparence:" -#: app/preferences_dialog.c:1737 app/preferences_dialog.c:1810 -#: app/preferences_dialog.c:1824 +#: app/preferences_dialog.c:1698 app/preferences_dialog.c:1771 +#: app/preferences_dialog.c:1785 msgid "Small" msgstr "Petit" -#: app/preferences_dialog.c:1738 app/preferences_dialog.c:1811 -#: app/preferences_dialog.c:1825 +#: app/preferences_dialog.c:1699 app/preferences_dialog.c:1772 +#: app/preferences_dialog.c:1786 msgid "Medium" msgstr "Moyen" -#: app/preferences_dialog.c:1739 app/preferences_dialog.c:1812 -#: app/preferences_dialog.c:1826 +#: app/preferences_dialog.c:1700 app/preferences_dialog.c:1773 +#: app/preferences_dialog.c:1787 msgid "Large" msgstr "Large" -#: app/preferences_dialog.c:1743 +#: app/preferences_dialog.c:1704 msgid "Check Size:" msgstr "Taille des Cases :" -#: app/preferences_dialog.c:1746 +#: app/preferences_dialog.c:1707 msgid "8-Bit Displays" msgstr "Affichages 8-bits" -#: app/preferences_dialog.c:1751 +#: app/preferences_dialog.c:1712 msgid "Install Colormap" msgstr "Installer la palette de couleurs (8-bits uniquement)" -#: app/preferences_dialog.c:1760 +#: app/preferences_dialog.c:1721 msgid "Colormap Cycling" msgstr "Cyclage de la palette de couleurs (8-bits uniquement)" -#: app/preferences_dialog.c:1809 +#: app/preferences_dialog.c:1770 msgid "Tiny" msgstr "Petit" -#: app/preferences_dialog.c:1813 +#: app/preferences_dialog.c:1774 msgid "Huge" msgstr "иnorme" -#: app/preferences_dialog.c:1817 +#: app/preferences_dialog.c:1778 msgid "Preview Size:" msgstr "Taille de l'aperГu :" -#: app/preferences_dialog.c:1830 +#: app/preferences_dialog.c:1791 msgid "Nav Preview Size:" msgstr "Taille de l'aperГu de navigation :" -#: app/preferences_dialog.c:1840 +#: app/preferences_dialog.c:1801 msgid "Recent Documents List Size:" msgstr "Taille de la liste des documents rИcents :" #. Indicators -#: app/preferences_dialog.c:1844 +#: app/preferences_dialog.c:1805 msgid "Toolbox" msgstr "BoНte Ю outils" -#: app/preferences_dialog.c:1847 +#: app/preferences_dialog.c:1808 msgid "Display Brush, Pattern and Gradient Indicators" msgstr "" "Afficher les indicateurs de brosse, motif et dИgradИ sur la barre d'outils" -#: app/preferences_dialog.c:1856 +#: app/preferences_dialog.c:1817 msgid "Dialog Behaviour" msgstr "Comportement du dialogue" -#: app/preferences_dialog.c:1858 +#: app/preferences_dialog.c:1819 msgid "Navigation Window per Display" msgstr "FenЙtre de navigation par Affichage" -#: app/preferences_dialog.c:1867 +#: app/preferences_dialog.c:1828 msgid "Info Window Follows Mouse" msgstr "la fenЙtre d'information suit la souris" -#: app/preferences_dialog.c:1878 app/preferences_dialog.c:1880 +#: app/preferences_dialog.c:1839 app/preferences_dialog.c:1841 msgid "Help System" msgstr "SystХme d'aide" -#: app/preferences_dialog.c:1890 +#: app/preferences_dialog.c:1851 msgid "Show Tool Tips" msgstr "Afficher les bulles d'aide" -#: app/preferences_dialog.c:1900 +#: app/preferences_dialog.c:1861 msgid "Context Sensitive Help with \"F1\"" msgstr "Aide contextuelle avec \"F1\"" -#: app/preferences_dialog.c:1909 +#: app/preferences_dialog.c:1870 msgid "Help Browser" msgstr "Navigateur d'aide" -#: app/preferences_dialog.c:1921 +#: app/preferences_dialog.c:1882 msgid "Internal" msgstr "Interne" -#: app/preferences_dialog.c:1922 +#: app/preferences_dialog.c:1883 msgid "Netscape" msgstr "Netscape" -#: app/preferences_dialog.c:1926 +#: app/preferences_dialog.c:1887 msgid "Help Browser to Use:" msgstr "Navigateur d'aide Ю utiliser" -#: app/preferences_dialog.c:1931 app/preferences_dialog.c:1933 +#: app/preferences_dialog.c:1892 app/preferences_dialog.c:1894 msgid "Image Windows" msgstr "FenЙtres d'images" -#: app/preferences_dialog.c:1941 +#: app/preferences_dialog.c:1902 msgid "Appearance" msgstr "Apparence" -#: app/preferences_dialog.c:1943 +#: app/preferences_dialog.c:1904 msgid "Use \"Dot for Dot\" by default" msgstr "Utiliser ╚ Point pour point ╩ par dИfaut" -#: app/preferences_dialog.c:1952 +#: app/preferences_dialog.c:1913 msgid "Resize Window on Zoom" msgstr "Redimensionner la fenЙtre aprХs un zoom" -#: app/preferences_dialog.c:1961 +#: app/preferences_dialog.c:1922 msgid "Show Rulers" msgstr "Afficher les rХgles" -#: app/preferences_dialog.c:1970 +#: app/preferences_dialog.c:1931 msgid "Show Statusbar" msgstr "Afficher la barre d'Иtat" -#: app/preferences_dialog.c:1994 +#: app/preferences_dialog.c:1955 msgid "Marching Ants Speed:" msgstr "Vitesse des ╚ marching ants ╩:" #. Set the currently used string as "Custom" -#: app/preferences_dialog.c:2002 +#: app/preferences_dialog.c:1963 msgid "Custom" msgstr "PersonnalisИ" #. set some commonly used format strings -#: app/preferences_dialog.c:2008 +#: app/preferences_dialog.c:1969 msgid "Standard" msgstr "Standard" -#: app/preferences_dialog.c:2013 +#: app/preferences_dialog.c:1974 msgid "Show zoom percentage" msgstr "Afficher le pourcentage de zoom" -#: app/preferences_dialog.c:2018 +#: app/preferences_dialog.c:1979 msgid "Show zoom ratio" msgstr "Afficher le ratio de zoom" -#: app/preferences_dialog.c:2023 +#: app/preferences_dialog.c:1984 msgid "Show reversed zoom ratio" msgstr "Afficher le facteur inverse de zoom" -#: app/preferences_dialog.c:2034 +#: app/preferences_dialog.c:1995 msgid "Image Title Format:" msgstr "Format de titre d'image:" #. End of the title format string -#: app/preferences_dialog.c:2038 +#: app/preferences_dialog.c:1999 msgid "Pointer Movement Feedback" msgstr "Suivi du mouvement du pointeur" -#: app/preferences_dialog.c:2041 +#: app/preferences_dialog.c:2002 msgid "Perfect-but-Slow Pointer Tracking" msgstr "Suivi du pointeur parfait mais lent" -#: app/preferences_dialog.c:2050 +#: app/preferences_dialog.c:2011 msgid "Disable Cursor Updating" msgstr "DИsactive la mise Ю jour du curseur" -#: app/preferences_dialog.c:2062 app/preferences_dialog.c:2064 +#: app/preferences_dialog.c:2023 app/preferences_dialog.c:2025 #: app/tools.c:1080 msgid "Tool Options" msgstr "Options des outils" -#: app/preferences_dialog.c:2072 +#: app/preferences_dialog.c:2033 msgid "Paint Options" msgstr "Options de dessin" -#: app/preferences_dialog.c:2075 +#: app/preferences_dialog.c:2036 msgid "Use Global Paint Options" msgstr "Appliquer les options de dessin globales" -#: app/preferences_dialog.c:2090 app/preferences_dialog.c:2092 +#: app/preferences_dialog.c:2051 app/preferences_dialog.c:2053 msgid "Environment" msgstr "Environnement" -#: app/preferences_dialog.c:2100 +#: app/preferences_dialog.c:2061 msgid "Resource Consumption" msgstr "Configuration des Ressources" -#: app/preferences_dialog.c:2102 +#: app/preferences_dialog.c:2063 msgid "Conservative Memory Usage" msgstr "Utilisation parcimonieuse de la mИmoire" -#: app/preferences_dialog.c:2130 +#: app/preferences_dialog.c:2091 msgid "Levels of Undo:" msgstr "Niveaux d'annulation :" -#: app/preferences_dialog.c:2174 -msgid "Tile Cache Size:" -msgstr "Taille du cache de carreaux:" - -#: app/preferences_dialog.c:2185 +#: app/preferences_dialog.c:2113 msgid "Number of Processors to Use:" msgstr "Nombre de processeurs Ю utiliser:" -#: app/preferences_dialog.c:2189 app/transform_tool.c:215 +#: app/preferences_dialog.c:2117 app/transform_tool.c:215 msgid "Scaling" msgstr "Mis Ю l'Иchelle" -#: app/preferences_dialog.c:2207 +#: app/preferences_dialog.c:2135 msgid "Nearest Neighbor (Fast)" msgstr "Plus proche voisin (Rapide)" -#: app/preferences_dialog.c:2211 +#: app/preferences_dialog.c:2139 msgid "Cubic (Slow)" msgstr "Cubique (Lente)" -#: app/preferences_dialog.c:2216 +#: app/preferences_dialog.c:2144 msgid "Interpolation Type:" msgstr "Type d'interpolation :" -#: app/preferences_dialog.c:2219 +#: app/preferences_dialog.c:2147 msgid "File Saving" msgstr "Enregistrer de fichier" -#: app/preferences_dialog.c:2236 app/preferences_dialog.c:2249 +#: app/preferences_dialog.c:2164 app/preferences_dialog.c:2177 msgid "Always" msgstr "Toujours" -#: app/preferences_dialog.c:2237 +#: app/preferences_dialog.c:2165 msgid "Never" msgstr "Jamais" -#: app/preferences_dialog.c:2241 +#: app/preferences_dialog.c:2169 msgid "Try to Write a Thumbnail File:" msgstr "Tentative d'Иcriture un fichier icТne:" -#: app/preferences_dialog.c:2248 +#: app/preferences_dialog.c:2176 msgid "Only when Modified" msgstr "Seulement quand modifiИ" -#: app/preferences_dialog.c:2253 +#: app/preferences_dialog.c:2181 msgid "\"File > Save\" Saves the Image:" msgstr "'Fichier > Sauver' sauve l'image :" -#: app/preferences_dialog.c:2259 +#: app/preferences_dialog.c:2187 msgid "Session Management" msgstr "Gestion de session" -#: app/preferences_dialog.c:2261 +#: app/preferences_dialog.c:2189 msgid "Session" msgstr "Session" -#: app/preferences_dialog.c:2269 +#: app/preferences_dialog.c:2197 msgid "Window Positions" msgstr "Effacer les positions de fenЙtres sauvИes" -#: app/preferences_dialog.c:2271 +#: app/preferences_dialog.c:2199 msgid "Save Window Positions on Exit" msgstr "Enregistrer la position des fenЙtres en quittant" -#: app/preferences_dialog.c:2285 +#: app/preferences_dialog.c:2213 msgid "Clear Saved Window Positions Now" msgstr "Effacer maintenant les positions de fenЙtres sauvИes" -#: app/preferences_dialog.c:2293 +#: app/preferences_dialog.c:2221 msgid "Always Try to Restore Session" msgstr "Toujours essayer de restaurer la session" -#: app/preferences_dialog.c:2302 +#: app/preferences_dialog.c:2230 msgid "Devices" msgstr "PИriphИriques" -#: app/preferences_dialog.c:2304 +#: app/preferences_dialog.c:2232 msgid "Save Device Status on Exit" msgstr "Enregistrer l'Иtat des pИriphИriques en quittant" -#: app/preferences_dialog.c:2315 app/preferences_dialog.c:2317 +#: app/preferences_dialog.c:2243 app/preferences_dialog.c:2245 msgid "Monitor" msgstr "Moniteur" -#: app/preferences_dialog.c:2325 +#: app/preferences_dialog.c:2253 msgid "Get Monitor Resolution" msgstr "Obtenir la rИsolution du moniteur" -#: app/preferences_dialog.c:2333 +#: app/preferences_dialog.c:2261 #, c-format msgid "(Currently %d x %d dpi)" msgstr "(actuellement %d x %d ppp)" -#: app/preferences_dialog.c:2384 +#: app/preferences_dialog.c:2313 msgid "From X Server" msgstr "Ю partir du serveur X" -#: app/preferences_dialog.c:2399 +#: app/preferences_dialog.c:2328 msgid "Manually:" msgstr "Manuellement :" -#: app/preferences_dialog.c:2412 app/preferences_dialog.c:2414 +#: app/preferences_dialog.c:2341 app/preferences_dialog.c:2343 msgid "Directories" msgstr "RИpertoires" -#: app/preferences_dialog.c:2431 +#: app/preferences_dialog.c:2360 msgid "Temp Dir:" msgstr "RИpertoire temporaire :" -#: app/preferences_dialog.c:2431 +#: app/preferences_dialog.c:2360 msgid "Select Temp Dir" msgstr "Choisir rИpertoire temporaire" -#: app/preferences_dialog.c:2432 +#: app/preferences_dialog.c:2361 msgid "Swap Dir:" msgstr "RИpertoire d'Иchange :" -#: app/preferences_dialog.c:2432 -msgid "Select Swap Dir" -msgstr "Choisir rИpertoire d'Иchange" - -#: app/preferences_dialog.c:2468 +#: app/preferences_dialog.c:2397 msgid "Brushes Directories" msgstr "RИpertoires des Pinceaux" -#: app/preferences_dialog.c:2470 +#: app/preferences_dialog.c:2399 msgid "Select Brushes Dir" msgstr "Choisir rИpertoire des brosses" -#: app/preferences_dialog.c:2472 +#: app/preferences_dialog.c:2401 msgid "Generated Brushes" msgstr "Pinceaux gИnИrИs" -#: app/preferences_dialog.c:2472 +#: app/preferences_dialog.c:2401 msgid "Generated Brushes Directories" msgstr "RИpertoires des pinceaux gИnИrИs" -#: app/preferences_dialog.c:2474 +#: app/preferences_dialog.c:2403 msgid "Select Generated Brushes Dir" msgstr "Choisir rИpertoire des pinceaux" -#: app/preferences_dialog.c:2476 +#: app/preferences_dialog.c:2405 msgid "Patterns Directories" msgstr "RИpertoires de Motifs" -#: app/preferences_dialog.c:2478 +#: app/preferences_dialog.c:2407 msgid "Select Patterns Dir" msgstr "Choisir rИpertoire de motifs" -#: app/preferences_dialog.c:2480 +#: app/preferences_dialog.c:2409 msgid "Palettes Directories" msgstr "RИpertoires de Palettes" -#: app/preferences_dialog.c:2482 +#: app/preferences_dialog.c:2411 msgid "Select Palettes Dir" msgstr "Choisir rИpertoires de Palettes" -#: app/preferences_dialog.c:2484 +#: app/preferences_dialog.c:2413 msgid "Gradients Directories" msgstr "RИpertoires de DИgradИs" -#: app/preferences_dialog.c:2486 +#: app/preferences_dialog.c:2415 msgid "Select Gradients Dir" msgstr "Choisir rИpertoire de DИgradИs" -#: app/preferences_dialog.c:2488 +#: app/preferences_dialog.c:2417 msgid "Plug-Ins" msgstr "Modules" -#: app/preferences_dialog.c:2488 +#: app/preferences_dialog.c:2417 msgid "Plug-Ins Directories" msgstr "RИpertoires d'extensions (plug-ins)" -#: app/preferences_dialog.c:2490 +#: app/preferences_dialog.c:2419 msgid "Select Plug-Ins Dir" msgstr "SИlectionner rИpertoire d'extensions (plug-ins)" -#: app/preferences_dialog.c:2492 +#: app/preferences_dialog.c:2421 msgid "Modules" msgstr "Modules" -#: app/preferences_dialog.c:2492 +#: app/preferences_dialog.c:2421 msgid "Modules Directories" msgstr "RИpertoires de modules" -#: app/preferences_dialog.c:2494 +#: app/preferences_dialog.c:2423 msgid "Select Modules Dir" msgstr "Choisir rИpertoire de modules" @@ -5252,61 +5281,61 @@ msgstr "S msgid "Selection: " msgstr "SИlection : " -#: app/resize.c:154 +#: app/resize.c:156 msgid "Scale Layer" msgstr "Mettre calque Ю l'Иchelle" -#: app/resize.c:156 app/resize.c:181 app/tool_options.c:774 +#: app/resize.c:158 app/resize.c:183 app/tool_options.c:774 msgid "Size" msgstr "Taille" -#: app/resize.c:160 +#: app/resize.c:162 msgid "Scale Image" msgstr "Mettre image Ю l'Иchelle" -#: app/resize.c:162 +#: app/resize.c:164 msgid "Pixel Dimensions" msgstr "Dimensions en pixels" -#: app/resize.c:172 +#: app/resize.c:174 msgid "Set Layer Boundary Size" msgstr "Changer la taille de bord de calque" -#: app/resize.c:177 +#: app/resize.c:179 msgid "Set Canvas Size" msgstr "Changer la taille du canevas" #. the original width & height labels -#: app/resize.c:234 app/scale_tool.c:77 +#: app/resize.c:236 app/scale_tool.c:77 msgid "Original Width:" msgstr "Largeur d'origine :" #. the new size labels -#: app/resize.c:259 app/resize.c:504 +#: app/resize.c:261 app/resize.c:506 msgid "New Width:" msgstr "Nouvelle largeur :" #. the scale ratio labels -#: app/resize.c:324 +#: app/resize.c:326 msgid "Ratio X:" msgstr "Facteur d'Иchelle X :" #. the x and y offset labels -#: app/resize.c:409 +#: app/resize.c:411 msgid "X:" msgstr "X :" -#: app/resize.c:490 +#: app/resize.c:492 msgid "Print Size & Display Unit" msgstr "Afficher la taille & afficher l'unitИ" -#: app/resize.c:1252 +#: app/resize.c:1254 msgid "Scale Error: Both width and height must be greater than zero." msgstr "" "Erreur de redimensionnement: Les hauteurs et largeurs doivent Йtre " "supИrieures Ю zИro." -#: app/resize.c:1334 +#: app/resize.c:1336 msgid "" "The chosen image size will shrink\n" "some layers completely away.\n" @@ -5316,7 +5345,7 @@ msgstr "" "Иliminer certains calques.\n" "Est-ce cela que vous voulez ?" -#: app/resize.c:1338 +#: app/resize.c:1340 msgid "Layer Too Small" msgstr "Calque trop petit" @@ -5365,7 +5394,7 @@ msgstr "Cisaillement..." msgid "Text Tool" msgstr "Outil Texte" -#: app/text_tool.c:162 app/tool_options.c:233 +#: app/text_tool.c:162 app/tool_options.c:232 msgid "Antialiasing" msgstr "Lissage" @@ -5444,99 +5473,99 @@ msgstr "" "dans le rИpertoire de donnИes de GIMP.\n" "VИrifiez votre installation." -#: app/tool_options.c:122 +#: app/tool_options.c:121 msgid "This tool has no options." msgstr "Cet outil n'a pas d'option." -#: app/tool_options.c:146 +#: app/tool_options.c:145 msgid "Rectangular Selection" msgstr "SИlection rectangulaire" -#: app/tool_options.c:148 +#: app/tool_options.c:147 msgid "Elliptical Selection" msgstr "SИlection elliptique" -#: app/tool_options.c:150 +#: app/tool_options.c:149 msgid "Free-Hand Selection" msgstr "SИlection Ю main levИe" -#: app/tool_options.c:152 +#: app/tool_options.c:151 msgid "Fuzzy Selection" msgstr "SИlection floue" -#: app/tool_options.c:154 +#: app/tool_options.c:153 msgid "Bezier Selection" msgstr "SИlection par courbes de BИzier" -#: app/tool_options.c:156 app/tools.c:178 +#: app/tool_options.c:155 app/tools.c:178 msgid "Intelligent Scissors" msgstr "Ciseaux Intelligents" -#: app/tool_options.c:158 +#: app/tool_options.c:157 msgid "By-Color Selection" msgstr "SИlection par Couleur" -#: app/tool_options.c:189 +#: app/tool_options.c:188 msgid "Feather" msgstr "Adoucir" -#: app/tool_options.c:297 +#: app/tool_options.c:296 msgid "Fixed Size / Aspect Ratio" msgstr "Taille fixed / Ratio aspect" -#: app/tool_options.c:363 +#: app/tool_options.c:362 msgid "Unit:" msgstr "UnitИ:" -#: app/tool_options.c:448 app/tools.c:376 +#: app/tool_options.c:447 app/tools.c:376 msgid "Bucket Fill" msgstr "Remplissage" -#: app/tool_options.c:450 +#: app/tool_options.c:449 msgid "Blend Tool" msgstr "Outil dИgradИ" -#: app/tool_options.c:452 app/tools.c:412 +#: app/tool_options.c:451 app/tools.c:412 msgid "Pencil" msgstr "Crayon" -#: app/tool_options.c:454 app/tools.c:430 +#: app/tool_options.c:453 app/tools.c:430 msgid "Paintbrush" msgstr "Pinceau" -#: app/tool_options.c:456 app/tools.c:448 +#: app/tool_options.c:455 app/tools.c:448 msgid "Eraser" msgstr "Gomme" -#: app/tool_options.c:458 app/tools.c:466 +#: app/tool_options.c:457 app/tools.c:466 msgid "Airbrush" msgstr "AИrographe" -#: app/tool_options.c:460 +#: app/tool_options.c:459 msgid "Clone Tool" msgstr "Option duplication" -#: app/tool_options.c:462 +#: app/tool_options.c:461 msgid "Convolver" msgstr "Convolution" -#: app/tool_options.c:464 +#: app/tool_options.c:463 msgid "Ink Tool" msgstr "Dessin Ю l'encre" -#: app/tool_options.c:466 app/tools.c:538 app/tools.c:544 +#: app/tool_options.c:465 app/tools.c:538 app/tools.c:544 msgid "Dodge or Burn" msgstr "Multiplier ou diviser" -#: app/tool_options.c:468 +#: app/tool_options.c:467 msgid "Smudge Tool" msgstr "Barbouiller" -#: app/tool_options.c:583 +#: app/tool_options.c:582 msgid "Incremental" msgstr "IncrИmental" -#: app/tool_options.c:689 +#: app/tool_options.c:688 msgid "Pressure Sensitivity" msgstr "SensibilitИ Ю la pression" @@ -6217,6 +6246,122 @@ msgstr "Aquarelle" msgid "Color History" msgstr "Historique des couleurs" +#~ msgid "Custom from Editor" +#~ msgstr "PersonnalisИ Ю partir de l'Иditeur" + +#~ msgid "" +#~ "The GIMP - GNU Image Manipulation Program\n" +#~ "\n" +#~ msgstr "" +#~ "The GIMP - Programme GNU de Manipulation d'Image\n" +#~ "\n" + +#~ msgid "For a proper GIMP installation, a subdirectory called\n" +#~ msgstr "Pour une installation correcte de GIMP, un sous-rИpertoire nommИ\n" + +#~ msgid "Install" +#~ msgstr "Installer" + +#~ msgid "Ignore" +#~ msgstr "Ignorer" + +#~ msgid "-*-helvetica-medium-o-normal-*-*-100-*-*-*-*-*-*" +#~ msgstr "-*-helvetica-medium-r-normal-*-*-100-*-*-*-*-iso8859-1,*" + +#~ msgid "-*-helvetica-medium-r-normal-*-*-100-*-*-*-*-*-*,*" +#~ msgstr "-*-helvetica-medium-r-normal-*-*-100-*-*-*-*-iso8859-1,*" + +#~ msgid "Installation Log" +#~ msgstr "Historique de l'installation" + +#~ msgid "-*-helvetica-medium-r-normal-*-*-120-*-*-*-*-*-*,*" +#~ msgstr "-*-helvetica-medium-r-normal-*-*-120-*-*-*-*-iso8859-1,*" + +#~ msgid "" +#~ "\n" +#~ "Installation successful!\n" +#~ msgstr "" +#~ "\n" +#~ "Installation terminИe avec succХs !\n" + +#~ msgid "/File/Dialogs" +#~ msgstr "/Fichier/Dialogues" + +#~ msgid "/File" +#~ msgstr "/Fichier" + +#~ msgid "/Edit" +#~ msgstr "/иdition" + +#~ msgid "/Edit/Buffer" +#~ msgstr "/иdition/Tampon" + +#~ msgid "/Select" +#~ msgstr "/SИlection" + +#~ msgid "/View" +#~ msgstr "/Vue" + +#~ msgid "/View/Zoom" +#~ msgstr "/Vue/Zoom" + +#~ msgid "/Image" +#~ msgstr "/Image" + +#~ msgid "/Image/Mode" +#~ msgstr "/Image/Mode" + +#~ msgid "/Image/Colors" +#~ msgstr "/Image/Couleurs" + +#~ msgid "/Image/Colors/Auto" +#~ msgstr "/Image/Couleurs/Auto" + +#~ msgid "/Image/Alpha" +#~ msgstr "/Image/Alpha" + +#~ msgid "/Image/Transforms" +#~ msgstr "/Image/Transformations" + +#~ msgid "/Layers" +#~ msgstr "/Calques" + +#~ msgid "/Layers/Stack" +#~ msgstr "/Calques/Pile" + +#~ msgid "/Tools" +#~ msgstr "/Outils" + +#~ msgid "/Tools/Select Tools" +#~ msgstr "/Outils/SИlectionner" + +#~ msgid "/Tools/Transform Tools" +#~ msgstr "/Outils/Transformer" + +#~ msgid "/Tools/Paint Tools" +#~ msgstr "/Outils/Dessiner" + +#~ msgid "/Dialogs" +#~ msgstr "/Dialogues" + +#~ msgid "/Filters" +#~ msgstr "/Filtres" + +#~ msgid "/Script-Fu" +#~ msgstr "/Script-Fu" + +#~ msgid "/Stack" +#~ msgstr "/Pile" + +#~ msgid "Bytes" +#~ msgstr "Octets" + +#~ msgid "KiloBytes" +#~ msgstr "Kilo-octets" + +#~ msgid "MegaBytes" +#~ msgstr "MИga-octets" + #~ msgid "Fill Options" #~ msgstr "Options du remplissage" diff --git a/po/hu.po b/po/hu.po index 8159cb99a9..6a75d138e4 100644 --- a/po/hu.po +++ b/po/hu.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: GIMP 1.1\n" -"POT-Creation-Date: 2000-03-03 17:47-0800\n" +"POT-Creation-Date: 2000-03-14 23:09+0100\n" "PO-Revision-Date: 1998 11:32+CET\n" "Last-Translator: Balazs Nagy \n" "Language-Team: Hungarian Gimp List \n" @@ -65,46 +65,46 @@ msgstr ", msgid "GIMP Startup" msgstr "A GIMP indМtАsa" -#: app/app_procs.c:479 app/gimprc.c:432 +#: app/app_procs.c:479 app/gimprc.c:448 #, c-format msgid "parsing \"%s\"\n" msgstr "\"%s\" ИrtelmezИse\n" #. initialize the xcf file format routines -#: app/app_procs.c:539 +#: app/app_procs.c:541 msgid "Looking for data files" msgstr "AdatfАjlok keresИse" -#: app/app_procs.c:539 +#: app/app_procs.c:541 #, fuzzy msgid "Parasites" msgstr "Beilleszt" #. initialize the global parasite table -#: app/app_procs.c:541 app/internal_procs.c:71 app/preferences_dialog.c:2468 +#: app/app_procs.c:543 app/internal_procs.c:71 app/preferences_dialog.c:2397 msgid "Brushes" msgstr "Ecsetek" #. initialize the list of gimp brushes -#: app/app_procs.c:543 app/internal_procs.c:143 app/preferences_dialog.c:2476 +#: app/app_procs.c:545 app/internal_procs.c:143 app/preferences_dialog.c:2405 msgid "Patterns" msgstr "MintАk" #. initialize the list of gimp patterns -#: app/app_procs.c:545 app/preferences_dialog.c:2480 +#: app/app_procs.c:547 app/preferences_dialog.c:2409 msgid "Palettes" msgstr "PalettАk" #. initialize the list of gimp palettes -#: app/app_procs.c:547 app/internal_procs.c:113 app/preferences_dialog.c:2484 +#: app/app_procs.c:549 app/internal_procs.c:113 app/preferences_dialog.c:2413 msgid "Gradients" msgstr "SzМnАtmenetek" -#: app/app_procs.c:735 +#: app/app_procs.c:737 msgid "Really Quit?" msgstr "ValСban kilИpsz?" -#: app/app_procs.c:739 +#: app/app_procs.c:741 #, fuzzy msgid "" "Some files unsaved.\n" @@ -112,21 +112,21 @@ msgid "" "Quit the GIMP?" msgstr "NИhАny fАjl nincs mentve. MИgis kilИpsz?" -#: app/app_procs.c:740 app/install.c:272 app/install.c:430 +#: app/app_procs.c:742 msgid "Quit" msgstr "" -#: app/app_procs.c:740 app/brightness_contrast.c:218 app/channel_ops.c:93 +#: app/app_procs.c:742 app/brightness_contrast.c:218 app/channel_ops.c:93 #: app/channels_dialog.c:2463 app/channels_dialog.c:2637 #: app/color_balance.c:275 app/color_notebook.c:125 app/convert.c:506 #: app/curves.c:559 app/file_new_dialog.c:207 app/file_new_dialog.c:357 #: app/gdisplay_color_ui.c:129 app/gdisplay_ops.c:346 app/gimpprogress.c:112 -#: app/global_edit.c:739 app/gradient.c:1769 app/gradient.c:4839 -#: app/gradient.c:5400 app/hue_saturation.c:377 app/interface.c:984 -#: app/layers_dialog.c:3326 app/layers_dialog.c:3517 app/layers_dialog.c:3617 -#: app/layers_dialog.c:3889 app/levels.c:341 app/palette.c:1826 -#: app/posterize.c:201 app/preferences_dialog.c:1469 app/qmask.c:281 -#: app/resize.c:193 app/resize.c:1343 app/threshold.c:275 +#: app/global_edit.c:739 app/gradient.c:1769 app/gradient.c:4841 +#: app/gradient.c:5402 app/hue_saturation.c:377 app/install.c:532 +#: app/interface.c:984 app/layers_dialog.c:3326 app/layers_dialog.c:3517 +#: app/layers_dialog.c:3617 app/layers_dialog.c:3889 app/levels.c:341 +#: app/palette.c:1826 app/posterize.c:201 app/preferences_dialog.c:1434 +#: app/qmask.c:281 app/resize.c:195 app/resize.c:1345 app/threshold.c:275 #: modules/cdisplay_gamma.c:358 msgid "Cancel" msgstr "MИgsem" @@ -149,133 +149,133 @@ msgstr "" msgid "Paintbrush operation failed." msgstr "SzМnАtmenet vИgrehajtАsa sikertelen." -#: app/blend.c:272 +#: app/blend.c:294 msgid "Offset:" msgstr "EltolАs:" -#: app/blend.c:283 +#: app/blend.c:305 #, fuzzy msgid "FG to BG (RGB)" msgstr "elУtИrbУl hАttИrbe (RGB)" -#: app/blend.c:284 +#: app/blend.c:306 #, fuzzy msgid "FG to BG (HSV)" msgstr "elУtИrbУl hАttИrbe (HSV)" -#: app/blend.c:285 +#: app/blend.c:307 msgid "FG to Transparent" msgstr "elУtИrbУl АtlАtszСba" -#: app/blend.c:286 +#: app/blend.c:308 #, fuzzy -msgid "Custom from Editor" -msgstr "egyИni" +msgid "Custom Gradient" +msgstr "SzМnАtmenet mАsolАsa" -#: app/blend.c:290 +#: app/blend.c:312 msgid "Blend:" msgstr "SzМnАtmenet:" -#: app/blend.c:298 app/gradient.c:533 app/preferences_dialog.c:2209 +#: app/blend.c:320 app/gradient.c:533 app/preferences_dialog.c:2137 msgid "Linear" msgstr "lineАris" -#: app/blend.c:299 +#: app/blend.c:321 msgid "Bi-Linear" msgstr "dupla lineАris" -#: app/blend.c:300 +#: app/blend.c:322 msgid "Radial" msgstr "sugaras" -#: app/blend.c:301 +#: app/blend.c:323 msgid "Square" msgstr "szЖgletes" -#: app/blend.c:302 +#: app/blend.c:324 msgid "Conical (symmetric)" msgstr "kЗpos (szimmetrikus)" -#: app/blend.c:303 +#: app/blend.c:325 msgid "Conical (asymmetric)" msgstr "kЗpos (aszimmetrikus)" -#: app/blend.c:304 +#: app/blend.c:326 msgid "Shapeburst (angular)" msgstr "SzЖgletes shapeburst" -#: app/blend.c:305 +#: app/blend.c:327 msgid "Shapeburst (spherical)" msgstr "GЖmbЖlyШ shapeburst" -#: app/blend.c:306 +#: app/blend.c:328 msgid "Shapeburst (dimpled)" msgstr "GЖdrЖs shapeburst" -#: app/blend.c:307 +#: app/blend.c:329 #, fuzzy msgid "Spiral (clockwise)" msgstr "HSV (СramutatС jАrАsa szerinti szМnessИg)" -#: app/blend.c:308 +#: app/blend.c:330 #, fuzzy msgid "Spiral (anticlockwise)" msgstr "HSV (СramutatС jАrАsa szerinti szМnessИg)" -#: app/blend.c:312 +#: app/blend.c:334 msgid "Gradient:" msgstr "аtmenet:" -#: app/blend.c:320 app/preferences_dialog.c:1808 +#: app/blend.c:342 app/preferences_dialog.c:1769 msgid "None" msgstr "Nincs" -#: app/blend.c:321 +#: app/blend.c:343 #, fuzzy msgid "Sawtooth Wave" msgstr "FШrИszhullАm" -#: app/blend.c:322 +#: app/blend.c:344 #, fuzzy msgid "Triangular Wave" msgstr "HАromszЖghullАm" -#: app/blend.c:326 +#: app/blend.c:348 msgid "Repeat:" msgstr "IsmИtlИs:" -#: app/blend.c:345 +#: app/blend.c:367 #, fuzzy msgid "Adaptive Supersampling" msgstr "IllesztИsi tЗlmintavИtelezИs" -#: app/blend.c:373 +#: app/blend.c:395 #, fuzzy msgid "Max Depth:" msgstr "Max. mИlysИg:" -#: app/blend.c:386 app/bucket_fill.c:127 app/fuzzy_select.c:657 +#: app/blend.c:408 app/bucket_fill.c:127 app/fuzzy_select.c:661 msgid "Threshold:" msgstr "KЭszЖbszint:" -#: app/blend.c:413 +#: app/blend.c:435 msgid "Blend: Invalid for indexed images." msgstr "SzМnАtmenet: indexelt kИpeknИl ИrvИnytelen." -#: app/blend.c:438 +#: app/blend.c:460 msgid "Blend: 0, 0" msgstr "SzМnАtmenet: 0, 0" -#: app/blend.c:501 +#: app/blend.c:523 msgid "Blend operation failed." msgstr "SzМnАtmenet vИgrehajtАsa sikertelen." -#: app/blend.c:507 +#: app/blend.c:529 #, fuzzy msgid "Blending..." msgstr "SzМnАtmenet" -#: app/blend.c:585 app/blend.c:595 +#: app/blend.c:607 app/blend.c:617 #, fuzzy msgid "Blend: " msgstr "SzМnАtmenet:" @@ -295,13 +295,13 @@ msgstr "A F #: app/gdisplay_color_ui.c:127 app/gimpui.c:122 app/hue_saturation.c:373 #: app/layers_dialog.c:3324 app/layers_dialog.c:3515 app/layers_dialog.c:3615 #: app/layers_dialog.c:3887 app/levels.c:337 app/module_db.c:281 -#: app/posterize.c:197 app/preferences_dialog.c:1465 app/qmask.c:279 -#: app/resize.c:191 app/resize.c:1343 app/threshold.c:271 +#: app/posterize.c:197 app/preferences_dialog.c:1430 app/qmask.c:279 +#: app/resize.c:193 app/resize.c:1345 app/threshold.c:271 #: modules/cdisplay_gamma.c:351 msgid "OK" msgstr "" -#: app/brightness_contrast.c:216 app/by_color_select.c:634 +#: app/brightness_contrast.c:216 app/by_color_select.c:687 #: app/color_balance.c:273 app/curves.c:557 app/file_new_dialog.c:355 #: app/hue_saturation.c:375 app/levels.c:339 app/posterize.c:199 #: app/threshold.c:273 app/tools.c:1086 app/transform_core.c:412 @@ -331,7 +331,7 @@ msgid "Brush Editor" msgstr "Ecset szerkesztУ" #. The close button -#: app/brush_edit.c:216 app/brush_select.c:278 app/by_color_select.c:636 +#: app/brush_edit.c:216 app/brush_select.c:278 app/by_color_select.c:689 #: app/color_notebook.c:122 app/color_picker.c:297 app/colormap_dialog.i.c:170 #: app/crop.c:1054 app/devices.c:755 app/docindexif.c:105 #: app/errorconsole.c:281 app/gdisplay_ops.c:346 app/gradient.c:801 @@ -345,7 +345,7 @@ msgid "Close" msgstr "BezАr" #. the feather radius scale -#: app/brush_edit.c:276 app/color_picker.c:181 app/tool_options.c:200 +#: app/brush_edit.c:276 app/color_picker.c:181 app/tool_options.c:199 msgid "Radius:" msgstr "SugАr:" @@ -375,11 +375,11 @@ msgstr "Friss msgid "No Brushes available" msgstr "" -#: app/brush_select.c:445 app/layers_dialog.c:372 app/tool_options.c:505 +#: app/brush_select.c:445 app/layers_dialog.c:372 app/tool_options.c:504 msgid "Opacity:" msgstr "LАthatСsАg:" -#: app/brush_select.c:453 app/layers_dialog.c:324 app/tool_options.c:529 +#: app/brush_select.c:453 app/layers_dialog.c:324 app/tool_options.c:528 msgid "Mode:" msgstr "MСd:" @@ -413,7 +413,7 @@ msgstr "" msgid "Sorry, this brush can't be deleted." msgstr "" -#: app/bucket_fill.c:147 app/color_picker.c:156 app/tool_options.c:274 +#: app/bucket_fill.c:147 app/color_picker.c:156 app/tool_options.c:273 msgid "Sample Merged" msgstr "MintakeverИs" @@ -445,36 +445,36 @@ msgid "No available patterns for this operation." msgstr "Nincs elИrhetУ minta a mШvelethez." #. The shell and main vbox -#: app/by_color_select.c:629 +#: app/by_color_select.c:682 msgid "By Color Selection" msgstr "SzМn szerinti kijelЖlИs" -#: app/by_color_select.c:685 +#: app/by_color_select.c:738 msgid "Inactive" msgstr "InaktМv" -#: app/by_color_select.c:693 +#: app/by_color_select.c:746 msgid "Selection Mode" msgstr "KivАlasztАs mСdja" -#: app/by_color_select.c:695 app/paint_funcs.c:100 +#: app/by_color_select.c:748 app/paint_funcs.c:100 msgid "Replace" msgstr "CserИl" -#: app/by_color_select.c:697 app/colormap_dialog.i.c:127 +#: app/by_color_select.c:750 app/colormap_dialog.i.c:127 #: app/gdisplay_color_ui.c:114 msgid "Add" msgstr "HozzАad" -#: app/by_color_select.c:699 app/layers_dialog.c:340 app/tool_options.c:904 +#: app/by_color_select.c:752 app/layers_dialog.c:340 app/tool_options.c:904 msgid "Subtract" msgstr "KivonАs" -#: app/by_color_select.c:701 +#: app/by_color_select.c:754 msgid "Intersect" msgstr "MetszИs" -#: app/by_color_select.c:713 +#: app/by_color_select.c:766 msgid "Fuzziness Threshold" msgstr "EltИrИsi kЭszЖbszint" @@ -492,7 +492,7 @@ msgstr "%s m msgid "Selection Mask" msgstr "KijelЖlИsi maszk" -#: app/channel_ops.c:85 app/resize.c:392 +#: app/channel_ops.c:85 app/resize.c:394 #, fuzzy msgid "Offset" msgstr "EltolАs:" @@ -503,8 +503,8 @@ msgid "Offset X:" msgstr "X eltolАs:" #: app/channel_ops.c:115 app/crop.c:1063 app/file_new_dialog.c:530 -#: app/resize.c:330 app/resize.c:415 app/resize.c:573 app/rotate_tool.c:106 -#: app/scale_tool.c:100 app/shear_tool.c:82 +#: app/install.c:1108 app/resize.c:332 app/resize.c:417 app/resize.c:575 +#: app/rotate_tool.c:106 app/scale_tool.c:100 app/shear_tool.c:82 msgid "Y:" msgstr "" @@ -513,12 +513,12 @@ msgstr "" msgid "Wrap Around" msgstr "" -#: app/channel_ops.c:174 app/image_new.c:69 app/image_new.c:223 +#: app/channel_ops.c:174 app/image_new.c:70 app/image_new.c:234 #: app/layers_dialog.c:3422 msgid "Background" msgstr "HАttИr" -#: app/channel_ops.c:175 app/image_new.c:79 app/layers_dialog.c:3424 +#: app/channel_ops.c:175 app/image_new.c:80 app/layers_dialog.c:3424 msgid "Transparent" msgstr "аtlАtszС" @@ -701,22 +701,22 @@ msgstr "Mintakever msgid "Update Active Color" msgstr "" -#: app/color_picker.c:255 app/color_picker.c:265 +#: app/color_picker.c:255 app/color_picker.c:264 #, fuzzy msgid "Red:" msgstr "VЖrЖs" -#: app/color_picker.c:256 app/color_picker.c:266 +#: app/color_picker.c:256 app/color_picker.c:265 #, fuzzy msgid "Green:" msgstr "ZЖld" -#: app/color_picker.c:257 app/color_picker.c:267 +#: app/color_picker.c:257 app/color_picker.c:266 #, fuzzy msgid "Blue:" msgstr "KИk" -#: app/color_picker.c:258 app/color_picker.c:264 app/color_picker.c:273 +#: app/color_picker.c:258 app/color_picker.c:267 app/color_picker.c:273 #, fuzzy msgid "Alpha:" msgstr "Alfa" @@ -740,13 +740,13 @@ msgstr "Hexa h msgid "Intensity:" msgstr "IntenzitАs" -#: app/color_picker.c:633 app/color_picker.c:634 app/color_picker.c:635 -#: app/color_picker.c:636 app/color_picker.c:637 app/color_picker.c:638 -#: app/color_picker.c:639 app/color_picker.c:657 app/color_picker.c:672 -#: app/color_picker.c:690 app/info_window.c:185 app/info_window.c:191 -#: app/info_window.c:197 app/info_window.c:203 app/info_window.c:422 -#: app/info_window.c:423 app/info_window.c:424 app/info_window.c:425 -#: app/info_window.c:447 +#: app/color_picker.c:626 app/color_picker.c:627 app/color_picker.c:628 +#: app/color_picker.c:629 app/color_picker.c:630 app/color_picker.c:631 +#: app/color_picker.c:632 app/color_picker.c:644 app/color_picker.c:651 +#: app/color_picker.c:669 app/color_picker.c:684 app/info_window.c:185 +#: app/info_window.c:191 app/info_window.c:197 app/info_window.c:203 +#: app/info_window.c:422 app/info_window.c:423 app/info_window.c:424 +#: app/info_window.c:425 app/info_window.c:447 msgid "N/A" msgstr "???" @@ -959,14 +959,14 @@ msgstr "Kezd #. the pixel size labels #: app/crop.c:1076 app/file_new_dialog.c:389 app/file_new_dialog.c:407 -#: app/tool_options.c:334 +#: app/tool_options.c:333 #, fuzzy msgid "Width:" msgstr "SzИlessИg: " #: app/crop.c:1079 app/file_new_dialog.c:395 app/file_new_dialog.c:413 -#: app/layers_dialog.c:3363 app/resize.c:240 app/resize.c:265 app/resize.c:510 -#: app/scale_tool.c:79 app/scale_tool.c:86 app/tool_options.c:350 +#: app/layers_dialog.c:3363 app/resize.c:242 app/resize.c:267 app/resize.c:512 +#: app/scale_tool.c:79 app/scale_tool.c:86 app/tool_options.c:349 #, fuzzy msgid "Height:" msgstr "MagassАg: " @@ -1021,7 +1021,7 @@ msgid "Load" msgstr "BetЖlt" #: app/curves.c:704 app/devices.c:753 app/levels.c:608 app/palette.c:2068 -#: app/preferences_dialog.c:357 app/preferences_dialog.c:1467 +#: app/preferences_dialog.c:357 app/preferences_dialog.c:1432 msgid "Save" msgstr "Kiment" @@ -1054,7 +1054,7 @@ msgstr "" msgid "Device Status" msgstr "EszkЖzАllapot" -#: app/disp_callbacks.c:755 app/global_edit.c:297 app/global_edit.c:303 +#: app/disp_callbacks.c:760 app/global_edit.c:297 app/global_edit.c:303 #: app/global_edit.c:375 #, fuzzy msgid "Pasted Layer" @@ -1237,18 +1237,18 @@ msgstr " msgid "New Image" msgstr "зj kИp" -#: app/file_new_dialog.c:453 app/preferences_dialog.c:1540 -#: app/preferences_dialog.c:1577 +#: app/file_new_dialog.c:453 app/install.c:1093 app/preferences_dialog.c:1505 +#: app/preferences_dialog.c:1542 msgid "Pixels" msgstr "Pixel" #. the resolution labels -#: app/file_new_dialog.c:524 app/resize.c:567 +#: app/file_new_dialog.c:524 app/resize.c:569 #, fuzzy msgid "Resolution X:" msgstr "FelbontАs" -#: app/file_new_dialog.c:545 app/resize.c:588 +#: app/file_new_dialog.c:545 app/resize.c:590 #, fuzzy msgid "pixels/%a" msgstr "Pixel" @@ -1280,7 +1280,7 @@ msgstr "Bemutat msgid "No Selection." msgstr "KijelЖlИs nЖvelИse" -#: app/fileops.c:418 app/fileops.c:1624 app/fileops.c:1731 +#: app/fileops.c:418 app/fileops.c:1629 app/fileops.c:1736 #, fuzzy, c-format msgid "Save failed: %s" msgstr "Sikertelen mentИs: " @@ -1307,60 +1307,60 @@ msgstr "" msgid "Revert failed." msgstr "Sikertelen mentИs: " -#: app/fileops.c:1240 +#: app/fileops.c:1245 msgid "(This thumbnail may be out of date)" msgstr "" -#: app/fileops.c:1241 +#: app/fileops.c:1246 #, fuzzy msgid "(No Information)" msgstr "ElforgatАs" -#: app/fileops.c:1251 +#: app/fileops.c:1256 msgid "(Thumbnail saving is disabled)" msgstr "" -#: app/fileops.c:1255 +#: app/fileops.c:1260 msgid "(Could not write thumbnail file)" msgstr "" -#: app/fileops.c:1259 +#: app/fileops.c:1264 msgid "(Thumbnail file not written)" msgstr "" -#: app/fileops.c:1276 +#: app/fileops.c:1281 #, fuzzy msgid "No preview available" msgstr "KitЖltИs mintАval" -#: app/fileops.c:1394 +#: app/fileops.c:1399 msgid "(could not make preview)" msgstr "" -#: app/fileops.c:1467 app/fileops.c:1546 +#: app/fileops.c:1472 app/fileops.c:1551 #, fuzzy, c-format msgid "Open failed: %s" msgstr "Sikertelen megnyitАs: " -#: app/fileops.c:1602 +#: app/fileops.c:1607 #, c-format msgid "%s is an irregular file (%s)" msgstr "" -#: app/fileops.c:1670 +#: app/fileops.c:1675 #, c-format msgid "%s exists, overwrite?" msgstr "%s mАr lИtezik. FelЭlМrod?" -#: app/fileops.c:1674 +#: app/fileops.c:1679 msgid "File Exists!" msgstr "A fАjl mАr lИtezik!" -#: app/fileops.c:1680 +#: app/fileops.c:1685 msgid "Yes" msgstr "Igen" -#: app/fileops.c:1682 +#: app/fileops.c:1687 msgid "No" msgstr "Nem" @@ -1369,13 +1369,13 @@ msgstr "Nem" msgid "Flip Tool" msgstr "TЭkrЖzИs" -#: app/flip_tool.c:95 app/preferences_dialog.c:1591 -#: app/preferences_dialog.c:2355 +#: app/flip_tool.c:95 app/preferences_dialog.c:1556 +#: app/preferences_dialog.c:2284 msgid "Horizontal" msgstr "VМzszintes" -#: app/flip_tool.c:97 app/preferences_dialog.c:1593 -#: app/preferences_dialog.c:2357 +#: app/flip_tool.c:97 app/preferences_dialog.c:1558 +#: app/preferences_dialog.c:2286 msgid "Vertical" msgstr "FЭggУleges" @@ -1396,7 +1396,7 @@ msgstr "" msgid "RGB-empty" msgstr "" -#: app/gdisplay.c:217 app/image_new.c:53 app/preferences_dialog.c:1637 +#: app/gdisplay.c:217 app/image_new.c:54 app/preferences_dialog.c:1602 msgid "RGB" msgstr "" @@ -1524,25 +1524,25 @@ msgstr "" msgid "Failed to load pixmap brush." msgstr "" -#: app/gimpdrawable.c:168 +#: app/gimpdrawable.c:166 msgid "Can't fill unknown image type." msgstr "" -#: app/gimpdrawable.c:512 +#: app/gimpdrawable.c:498 #, fuzzy msgid "parasite attach to drawable" msgstr "az Иrintett rajzfelЭlet" -#: app/gimpdrawable.c:548 +#: app/gimpdrawable.c:533 #, fuzzy msgid "detach parasite from drawable" msgstr "az Иrintett rajzfelЭlet" -#: app/gimpdrawable.c:770 +#: app/gimpdrawable.c:740 msgid "unnamed" msgstr "nИvtelen" -#: app/gimpdrawable.c:787 +#: app/gimpdrawable.c:757 #, c-format msgid "Layer type %d not supported." msgstr "%d rИteg tМpus nem tАmogatott." @@ -1554,40 +1554,40 @@ msgid "" "you don't have GtkXmHTML installed." msgstr "" -#: app/gimpimage.c:1154 +#: app/gimpimage.c:1176 msgid "attach parasite to image" msgstr "" -#: app/gimpimage.c:1177 +#: app/gimpimage.c:1201 #, fuzzy msgid "detach parasite from image" msgstr "Alakok kijelЖlИse a kИprУl" -#: app/gimpimage.c:2232 +#: app/gimpimage.c:2305 msgid "Layer cannot be raised any further" msgstr "A rИteget nem lehet feljebb helyezni" -#: app/gimpimage.c:2258 +#: app/gimpimage.c:2333 msgid "Layer cannot be lowered any further" msgstr "A rИteget nem lehet lejjebb helyezni" -#: app/gimpimage.c:2282 +#: app/gimpimage.c:2359 msgid "Layer is already on top" msgstr "A rИteg mАr legfelЭl van" -#: app/gimpimage.c:2288 +#: app/gimpimage.c:2365 msgid "Can't raise Layer without alpha" msgstr "Nem lehet nem АtlАtszС rИteget feljebb helyezni" -#: app/gimpimage.c:2315 +#: app/gimpimage.c:2393 msgid "Layer is already on bottom" msgstr "A rИteg mАr legalul van" -#: app/gimpimage.c:2370 +#: app/gimpimage.c:2448 msgid "BG has no alpha, layer was placed above" msgstr "A hАttИrnek nincs alfa csatornАja, a rИteg feljebb lett helyezve" -#: app/gimpimage.c:2439 +#: app/gimpimage.c:2519 msgid "" "There are not enough visible layers for a merge.\n" "There must be at least two." @@ -1595,41 +1595,41 @@ msgstr "" "Nincs elИg lАthatС rИteg az ЖsszefИsЭlИshez.\n" "LegalАbb kИt rИtegre van ehhez szЭksИg." -#: app/gimpimage.c:2519 +#: app/gimpimage.c:2603 msgid "There are not enough visible layers for a merge down." msgstr "" -#: app/gimpimage.c:2915 +#: app/gimpimage.c:3005 msgid "" "Unable to add a layer mask since\n" "the layer already has one." msgstr "" -#: app/gimpimage.c:2919 +#: app/gimpimage.c:3009 msgid "" "Unable to add a layer mask to a\n" "layer in an indexed image." msgstr "" -#: app/gimpimage.c:2923 +#: app/gimpimage.c:3013 msgid "" "Cannot add layer mask to a layer\n" "with no alpha channel." msgstr "" -#: app/gimpimage.c:2930 +#: app/gimpimage.c:3020 msgid "Cannot add layer mask of different dimensions than specified layer." msgstr "" -#: app/gimpimage.c:3033 +#: app/gimpimage.c:3127 msgid "Channel cannot be raised any further" msgstr "" -#: app/gimpimage.c:3082 +#: app/gimpimage.c:3178 msgid "Channel cannot be lowered any further" msgstr "" -#: app/gimpimage.c:3288 app/palette.c:364 app/palette.c:941 app/palette.c:1077 +#: app/gimpimage.c:3398 app/palette.c:364 app/palette.c:941 app/palette.c:1077 #: app/palette.c:2022 app/palette.c:2749 app/palette.c:2881 msgid "Untitled" msgstr "NИvtelen" @@ -1642,45 +1642,45 @@ msgstr "" msgid "Please wait..." msgstr "" -#: app/gimprc.c:401 app/plug_in.c:304 +#: app/gimprc.c:415 app/plug_in.c:304 msgid "Resource configuration" msgstr "ErУforrАs beАllМtАsok" -#: app/gimprc.c:451 +#: app/gimprc.c:467 #, c-format msgid "error parsing: \"%s\"\n" msgstr "hiba az ИrtelmezИsben: \"%s\"\n" -#: app/gimprc.c:452 +#: app/gimprc.c:468 #, c-format msgid " at line %d column %d\n" msgstr " (%d. sor, %d. oszlop)\n" -#: app/gimprc.c:453 +#: app/gimprc.c:469 #, c-format msgid " unexpected token: %s\n" msgstr " nem vАrt kulcsszС: %s\n" -#: app/gimprc.c:1455 +#: app/gimprc.c:1473 msgid "error parsing pluginrc" msgstr "hiba a pluginrc ИrtelmezИsekor" -#: app/gimprc.c:2832 +#: app/gimprc.c:2866 #, c-format msgid "Can't open %s; %s" msgstr "" -#: app/gimprc.c:2851 +#: app/gimprc.c:2885 #, c-format msgid "Can't rename %s to %s.old; %s" msgstr "" -#: app/gimprc.c:2857 +#: app/gimprc.c:2891 #, c-format msgid "Couldn't reopen %s\n" msgstr "" -#: app/gimprc.c:2869 +#: app/gimprc.c:2903 #, c-format msgid "Can't write to %s; %s" msgstr "" @@ -1711,7 +1711,7 @@ msgstr "" msgid "pixel" msgstr "Pixel" -#: app/gimpunit.c:59 app/measure.c:454 app/measure.c:458 app/paint_core.c:498 +#: app/gimpunit.c:59 app/measure.c:454 app/measure.c:458 app/paint_core.c:511 #, fuzzy msgid "pixels" msgstr "Pixel" @@ -1966,7 +1966,7 @@ msgstr "" msgid "Distance: %0.6f" msgstr "" -#: app/gradient.c:3387 app/gradient.c:4448 +#: app/gradient.c:3387 app/gradient.c:4450 msgid "Left endpoint's color" msgstr "" @@ -1986,7 +1986,7 @@ msgstr "" msgid "Save to" msgstr "" -#: app/gradient.c:3429 app/gradient.c:4526 +#: app/gradient.c:3429 app/gradient.c:4528 msgid "Right endpoint's color" msgstr "" @@ -2014,7 +2014,7 @@ msgstr "" msgid "Split segment at midpoint" msgstr "" -#: app/gradient.c:3734 app/gradient.c:4829 +#: app/gradient.c:3734 app/gradient.c:4831 msgid "Split segment uniformly" msgstr "" @@ -2034,7 +2034,7 @@ msgstr "" msgid "Flip segment" msgstr "" -#: app/gradient.c:3744 app/gradient.c:5390 +#: app/gradient.c:3744 app/gradient.c:5392 msgid "Replicate segment" msgstr "" @@ -2050,7 +2050,7 @@ msgstr "" msgid "Split segments at midpoints" msgstr "" -#: app/gradient.c:3755 app/gradient.c:4830 +#: app/gradient.c:3755 app/gradient.c:4832 msgid "Split segments uniformly" msgstr "" @@ -2070,7 +2070,7 @@ msgstr "" msgid "Flip selection" msgstr "" -#: app/gradient.c:3765 app/gradient.c:5391 +#: app/gradient.c:3765 app/gradient.c:5393 msgid "Replicate selection" msgstr "" @@ -2083,49 +2083,49 @@ msgstr "" msgid "RGBA (%0.3f, %0.3f, %0.3f, %0.3f)" msgstr "" -#: app/gradient.c:4615 app/gradient.c:4685 +#: app/gradient.c:4617 app/gradient.c:4687 msgid "(Varies)" msgstr "" -#: app/gradient.c:4837 +#: app/gradient.c:4839 msgid "Split" msgstr "" #. Instructions -#: app/gradient.c:4851 +#: app/gradient.c:4853 msgid "Please select the number of uniform parts" msgstr "" -#: app/gradient.c:4857 +#: app/gradient.c:4859 msgid "in which you want to split the selected segment" msgstr "" -#: app/gradient.c:4858 +#: app/gradient.c:4860 msgid "in which you want to split the segments in the selection" msgstr "" -#: app/gradient.c:5218 +#: app/gradient.c:5220 msgid "Blend endpoints' colors" msgstr "" -#: app/gradient.c:5230 +#: app/gradient.c:5232 msgid "Blend endpoints' opacity" msgstr "" -#: app/gradient.c:5398 +#: app/gradient.c:5400 msgid "Replicate" msgstr "" #. Instructions -#: app/gradient.c:5411 +#: app/gradient.c:5413 msgid "Please select the number of times" msgstr "" -#: app/gradient.c:5416 +#: app/gradient.c:5418 msgid "you want to replicate the selected segment" msgstr "" -#: app/gradient.c:5417 +#: app/gradient.c:5419 msgid "you want to replicate the selection" msgstr "" @@ -2238,45 +2238,45 @@ msgstr "F msgid "Saturation" msgstr "TelМtettsИg" -#: app/image_new.c:58 app/info_window.c:65 app/info_window.c:534 -#: app/preferences_dialog.c:1638 +#: app/image_new.c:59 app/info_window.c:65 app/info_window.c:534 +#: app/preferences_dialog.c:1603 msgid "Grayscale" msgstr "fekete-fehИr" -#: app/image_new.c:64 app/layers_dialog.c:3421 +#: app/image_new.c:65 app/layers_dialog.c:3421 msgid "Foreground" msgstr "ElУtИr" -#: app/image_new.c:74 app/layers_dialog.c:3423 +#: app/image_new.c:75 app/layers_dialog.c:3423 msgid "White" msgstr "FehИr" -#: app/image_new.c:262 +#: app/image_new.c:273 #, fuzzy, c-format msgid "%d Bytes" msgstr "B" -#: app/image_new.c:264 +#: app/image_new.c:275 #, c-format msgid "%.2f KB" msgstr "" -#: app/image_new.c:266 +#: app/image_new.c:277 #, c-format msgid "%.1f KB" msgstr "" -#: app/image_new.c:268 +#: app/image_new.c:279 #, c-format msgid "%d KB" msgstr "" -#: app/image_new.c:270 +#: app/image_new.c:281 #, c-format msgid "%.2f MB" msgstr "" -#: app/image_new.c:272 +#: app/image_new.c:283 #, c-format msgid "%.1f MB" msgstr "" @@ -2299,8 +2299,8 @@ msgid "" "Click to open the Gradients Dialog." msgstr "" -#: app/info_dialog.c:181 app/preferences_dialog.c:1782 -#: app/preferences_dialog.c:1888 +#: app/info_dialog.c:181 app/preferences_dialog.c:1743 +#: app/preferences_dialog.c:1849 msgid "General" msgstr "" @@ -2444,299 +2444,389 @@ msgstr "D msgid "Shape" msgstr "иlesМtИs" -#: app/install.c:83 +#: app/install.c:95 msgid "The GIMP is not properly installed for the current user\n" msgstr "" -#: app/install.c:84 +#: app/install.c:96 msgid "" "User installation was skipped because the '--nointerface' flag was " "encountered\n" msgstr "" -#: app/install.c:85 +#: app/install.c:97 msgid "" "To perform user installation, run the GIMP without the '--nointerface' flag\n" msgstr "" -#: app/install.c:113 +#: app/install.c:142 msgid "" -"The GIMP - GNU Image Manipulation Program\n" -"\n" +"The gimprc is used to store personal preferences\n" +"that affect GIMP's default behavior.\n" +"Paths to search for brushes, palettes, gradients,\n" +"patterns, plug-ins and modules can also configured here." msgstr "" -#: app/install.c:118 +#: app/install.c:149 msgid "" -"This program is free software; you can redistribute it and/or modify\n" -"it under the terms of the GNU General Public License as published by\n" -"the Free Software Foundation; either version 2 of the License, or\n" -"(at your option) any later version.\n" +"GIMP uses an additional gtkrc file so you can\n" +"configure it to look differently than other GTK apps." msgstr "" -#: app/install.c:123 +#: app/install.c:154 msgid "" -"This program is distributed in the hope that it will be useful,\n" -"but WITHOUT ANY WARRANTY; without even the implied warranty of\n" -"MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n" -"See the GNU General Public License for more details.\n" -msgstr "" - -#: app/install.c:128 -msgid "" -"You should have received a copy of the GNU General Public License\n" -"along with this program; if not, write to the Free Software\n" -"Foundation, Inc., 59 Temple Place - Suite 330, Boston,\n" -"MA 02111-1307, USA.\n" -msgstr "" - -#: app/install.c:134 -msgid "" -"Personal GIMP Installation\n" -"\n" -msgstr "" - -#: app/install.c:135 -msgid "For a proper GIMP installation, a subdirectory called\n" -msgstr "" - -#. will be replaced with gimp_directory() -#: app/install.c:137 -msgid "" -" needs to be created. This\n" -"subdirectory will contain a number of important files:\n" -"\n" -msgstr "" - -#: app/install.c:141 -msgid "" -"\t\tThe gimprc is used to store personal preferences\n" -"\t\tthat affect GIMP's default behavior.\n" -"\t\tPaths to search for brushes, palettes, gradients,\n" -"\t\tpatterns, plug-ins and modules can also configured here.\n" -msgstr "" - -#: app/install.c:147 -msgid "" -"\t\tPlug-ins and extensions are external programs run by\n" -"\t\tthe GIMP which provide additional functionality.\n" -"\t\tThese programs are searched for at run-time and\n" -"\t\tinformation about their functionality and mod-times\n" -"\t\tis cached in this file. This file is intended to\n" -"\t\tbe GIMP-readable only, and should not be edited.\n" -msgstr "" - -#: app/install.c:155 -msgid "" -"\t\tKey shortcuts can be dynamically redefined in The GIMP.\n" -"\t\tThe menurc is a dump of your configuration so it can.\n" -"\t\tbe remembered for the next session. You may edit this\n" -"\t\tfile if you wish, but it is much easier to define the\n" -"\t\tkeys from within The GIMP. Deleting this file will\n" -"\t\trestore the default shortcuts.\n" +"Plug-ins and extensions are external programs run by\n" +"the GIMP which provide additional functionality.\n" +"These programs are searched for at run-time and\n" +"information about their functionality and mod-times\n" +"is cached in this file. This file is intended to\n" +"be GIMP-readable only, and should not be edited." msgstr "" #: app/install.c:163 msgid "" -"\t\tThe sessionrc is used to store what dialog windows were\n" -"\t\topen the last time you quit The GIMP. You can configure\n" -"\t\tThe GIMP to reopen these dialogs at the saved position.\n" +"Key shortcuts can be dynamically redefined in The GIMP.\n" +"The menurc is a dump of your configuration so it can.\n" +"be remembered for the next session. You may edit this\n" +"file if you wish, but it is much easier to define the\n" +"keys from within The GIMP. Deleting this file will\n" +"restore the default shortcuts." msgstr "" -#: app/install.c:168 +#: app/install.c:172 msgid "" -"\t\tThe unitrc is used to store your user units database.\n" -"\t\tYou can define additional units and use them just\n" -"\t\tlike you use the built-in units inches, millimeters,\n" -"\t\tpoints and picas. This file is overwritten each time\n" -"\t\tyou quit the GIMP.\n" +"The sessionrc is used to store what dialog windows were\n" +"open the last time you quit The GIMP. You can configure\n" +"The GIMP to reopen these dialogs at the saved position." msgstr "" -#: app/install.c:175 +#: app/install.c:178 msgid "" -"\t\tThis is a subdirectory which can be used to store\n" -"\t\tuser defined brushes. The default gimprc file\n" -"\t\tchecks this subdirectory in addition to the system-\n" -"\t\twide gimp brushes installation when searching for\n" -"\t\tbrushes.\n" +"The unitrc is used to store your user units database.\n" +"You can define additional units and use them just\n" +"like you use the built-in units inches, millimeters,\n" +"points and picas. This file is overwritten each time\n" +"you quit the GIMP." msgstr "" -#: app/install.c:182 +#: app/install.c:186 msgid "" -"\t\tThis is a subdirectory which is used to store brushes\n" -"\t\tthat are created with the brush editor. The default\n" -"\t\tgimprc file checks this subdirectory when searching for\n" -"\t\tgenerated brushes.\n" +"This is a subdirectory which can be used to store\n" +"user defined brushes. The default gimprc file\n" +"checks this subdirectory in addition to the system-\n" +"wide gimp brushes installation when searching for\n" +"brushes." msgstr "" -#: app/install.c:188 +#: app/install.c:194 msgid "" -"\t\tThis is a subdirectory which can be used to store\n" -"\t\tuser defined gradients. The default gimprc file\n" -"\t\tchecks this subdirectory in addition to the system-\n" -"\t\twide gimp gradients installation when searching for\n" -"\t\tgradients.\n" +"This is a subdirectory which is used to store brushes\n" +"that are created with the brush editor. The default\n" +"gimprc file checks this subdirectory when searching for\n" +"generated brushes." msgstr "" -#: app/install.c:195 +#: app/install.c:201 msgid "" -"\t\tThis is a subdirectory which can be used to store\n" -"\t\tuser defined figures to be used by the gfig plug-in.\n" -"\t\tThe default gimprc file checks this subdirectory in\n" -"\t\taddition to the systemwide gimp gfig installation\n" -"\t\twhen searching for gfig figures.\n" -msgstr "" - -#: app/install.c:202 -msgid "" -"\t\tThis is a subdirectory which can be used to store\n" -"\t\tuser defined gflares to be used by the gflare plug-in.\n" -"\t\tThe default gimprc file checks this subdirectory in\n" -"\t\taddition to the systemwide gimp gflares installation\n" -"\t\twhen searching for gflares.\n" +"This is a subdirectory which can be used to store\n" +"user defined gradients. The default gimprc file\n" +"checks this subdirectory in addition to the system-\n" +"wide gimp gradients installation when searching for\n" +"gradients." msgstr "" #: app/install.c:209 msgid "" -"\t\tThis is a subdirectory which can be used to store\n" -"\t\tuser defined fractals to be used by the FractalExplorer\n" -"\t\tplug-in. The default gimprc file checks this subdirectory in\n" -"\t\taddition to the systemwide gimp FractalExplorer installation\n" -"\t\twhen searching for fractals.\n" +"This is a subdirectory which can be used to store\n" +"user defined palettes. The default gimprc file\n" +"checks only this subdirectory (not the system-wide\n" +"installation) when searching for palettes. During\n" +"installation, the system palettes will be copied\n" +"here. This is done to allow modifications made to\n" +"palettes during GIMP execution to persist across\n" +"sessions." msgstr "" -#: app/install.c:216 +#: app/install.c:220 msgid "" -"\t\tThis is a subdirectory which can be used to store\n" -"\t\tuser defined palettes. The default gimprc file\n" -"\t\tchecks only this subdirectory (not the system-wide\n" -"\t\tinstallation) when searching for palettes. During\n" -"\t\tinstallation, the system palettes will be copied\n" -"\t\there. This is done to allow modifications made to\n" -"\t\tpalettes during GIMP execution to persist across\n" -"\t\tsessions.\n" +"This is a subdirectory which can be used to store\n" +"user defined patterns. The default gimprc file\n" +"checks this subdirectory in addition to the system-\n" +"wide gimp patterns installation when searching for\n" +"patterns." msgstr "" -#: app/install.c:226 +#: app/install.c:228 msgid "" -"\t\tThis is a subdirectory which can be used to store\n" -"\t\tuser defined patterns. The default gimprc file\n" -"\t\tchecks this subdirectory in addition to the system-\n" -"\t\twide gimp patterns installation when searching for\n" -"\t\tpatterns.\n" +"This is a subdirectory which can be used to store\n" +"user created, temporary, or otherwise non-system-\n" +"supported plug-ins. The default gimprc file\n" +"checks this subdirectory in addition to the system-\n" +"wide GIMP plug-in directories when searching for\n" +"plug-ins." msgstr "" -#: app/install.c:233 +#: app/install.c:237 msgid "" -"\t\tThis is a subdirectory which can be used to store\n" -"\t\tuser created, temporary, or otherwise non-system-\n" -"\t\tsupported plug-ins. The default gimprc file\n" -"\t\tchecks this subdirectory in addition to the system-\n" -"\t\twide GIMP plug-in directories when searching for\n" -"\t\tplug-ins.\n" +"This subdirectory can be used to store user created,\n" +"temporary, or otherwise non-system-supported DLL modules.\n" +"The default gimprc file checks this subdirectory\n" +"in addition to the system-wide GIMP module directory\n" +"when searching for modules to load when initializing." msgstr "" -#: app/install.c:241 +#: app/install.c:245 msgid "" -"\t\tThis subdirectory can be used to store user created,\n" -"\t\ttemporary, or otherwise non-system-supported DLL modules.\n" -"\t\tThe default gimprc file checks this subdirectory\n" -"\t\tin addition to the system-wide GIMP module directory\n" -"\t\twhen searching for modules to load when initializing.\n" +"This subdirectory is used by the GIMP to store \n" +"user created and installed scripts. The default gimprc\n" +"file checks this subdirectory in addition to the system-\n" +"wide gimp scripts subdirectory when searching for scripts" msgstr "" -#: app/install.c:248 +#: app/install.c:252 msgid "" -"\t\tThis subdirectory is used by the GIMP to store \n" -"\t\tuser created and installed scripts. The default gimprc\n" -"\t\tfile checks this subdirectory in addition to the system\n" -"\t\t-wide gimp scripts subdirectory when searching for scripts\n" +"This subdirectory is used by the GIMP to temporarily\n" +"store undo buffers to reduce memory usage. If GIMP is\n" +"unceremoniously killed, files may persist in this directory\n" +"of the form: gimp<#>.<#>. These files are useless across\n" +"GIMP sessions and can be destroyed with impunity." msgstr "" -#: app/install.c:254 +#: app/install.c:260 msgid "" -"\t\tThis subdirectory is used by the GIMP to temporarily\n" -"\t\tstore undo buffers to reduce memory usage. If GIMP is\n" -"\t\tunceremoniously killed, files may persist in this directory\n" -"\t\tof the form: gimp<#>.<#>. These files are useless across\n" -"\t\tGIMP sessions and can be destroyed with impunity.\n" +"This subdirectory is used to store parameter files for\n" +"the Curves tool." msgstr "" -#: app/install.c:263 -msgid "GIMP Installation" -msgstr "" - -#: app/install.c:268 -msgid "Install" +#: app/install.c:265 +msgid "" +"This subdirectory is used to store parameter files for\n" +"the Levels tool." msgstr "" #: app/install.c:270 -msgid "Ignore" +msgid "" +"This is a subdirectory which can be used to store\n" +"user defined fractals to be used by the FractalExplorer\n" +"plug-in. The default gimprc file checks this subdirectory in\n" +"addition to the systemwide gimp FractalExplorer installation\n" +"when searching for fractals." msgstr "" -#. this is a fontset, e.g. multiple comma-separated font definitions -#: app/install.c:295 app/install.c:453 -msgid "-*-helvetica-bold-r-normal-*-*-120-*-*-*-*-*-*,*" +#: app/install.c:278 +msgid "" +"This is a subdirectory which can be used to store\n" +"user defined figures to be used by the gfig plug-in.\n" +"The default gimprc file checks this subdirectory in\n" +"addition to the systemwide gimp gfig installation\n" +"when searching for gfig figures." msgstr "" -#. this is a font, provide only one single font definition -#: app/install.c:298 -msgid "-*-helvetica-medium-o-normal-*-*-100-*-*-*-*-*-*" +#: app/install.c:286 +msgid "" +"This is a subdirectory which can be used to store\n" +"user defined gflares to be used by the gflare plug-in.\n" +"The default gimprc file checks this subdirectory in\n" +"addition to the systemwide gimp gflares installation\n" +"when searching for gflares." msgstr "" -#. this is a fontset, e.g. multiple comma-separated font definitions -#: app/install.c:301 -msgid "-*-helvetica-medium-r-normal-*-*-100-*-*-*-*-*-*,*" +#: app/install.c:294 +msgid "" +"This is a subdirectory which can be used to store\n" +"user defined data to be used by the Gimpressionist\n" +"plug-in. The default gimprc file checks this subdirectory in\n" +"addition to the systemwide gimp Gimpressionist installation\n" +"when searching for data." msgstr "" -#: app/install.c:423 -msgid "Installation Log" -msgstr "" +#: app/install.c:525 +#, fuzzy +msgid "GIMP User Installation" +msgstr "GIMP verziС: " -#: app/install.c:428 +#: app/install.c:530 msgid "Continue" msgstr "" #. this is a fontset, e.g. multiple comma-separated font definitions -#: app/install.c:456 -msgid "-*-helvetica-medium-r-normal-*-*-120-*-*-*-*-*-*,*" +#: app/install.c:560 +msgid "-*-helvetica-bold-r-normal-*-*-240-*-*-*-*-*-*,*" msgstr "" -#: app/install.c:462 +#: app/install.c:578 msgid "" -"User Installation Log\n" -"\n" +"Welcome to\n" +"The GIMP User Installation" msgstr "" -#: app/install.c:472 -msgid " does not exist. Cannot install.\n" -msgstr "" - -#: app/install.c:480 +#: app/install.c:582 msgid "" -" has invalid permissions.\n" -"Cannot install." +"The GIMP - GNU Image Manipulation Program\n" +"Copyright (C) 1995-2000\n" +"Spencer Kimball, Peter Mattis and the GIMP Development Team." msgstr "" -#: app/install.c:514 +#: app/install.c:591 msgid "" -"Did you notice any error messages\n" -"in the console window? If not, installation\n" -"was successful! Otherwise, quit and investigate\n" -"the possible reason...\n" +"This program is free software; you can redistribute it and/or modify\n" +"it under the terms of the GNU General Public License as published by\n" +"the Free Software Foundation; either version 2 of the License, or\n" +"(at your option) any later version." msgstr "" -#: app/install.c:546 +#: app/install.c:596 msgid "" -"\n" -"Installation successful!\n" +"This program is distributed in the hope that it will be useful,\n" +"but WITHOUT ANY WARRANTY; without even the implied warranty of\n" +"MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n" +"See the GNU General Public License for more details." msgstr "" -#: app/install.c:555 +#: app/install.c:601 msgid "" -"\n" -"Installation failed. Contact system administrator.\n" +"You should have received a copy of the GNU General Public License\n" +"along with this program; if not, write to the Free Software\n" +"Foundation, Inc., 59 Temple Place - Suite 330, Boston,\n" +"MA 02111-1307, USA." msgstr "" +#: app/install.c:607 +msgid "Click \"Continue\" to enter the GIMP user installation." +msgstr "" + +#: app/install.c:633 +#, fuzzy +msgid "Personal GIMP Directory" +msgstr "InterfИsz beАllМtАsok" + +#: app/install.c:650 +msgid "" +"For a proper GIMP installation, a subdirectory needs to be created.\n" +"This subdirectory will contain a number of important files." +msgstr "" + +#: app/install.c:653 +msgid "" +"Click on one of the files or subdirectories in the tree\n" +"to get more information about the selected item." +msgstr "" + +#: app/install.c:656 +msgid "Click \"Continue\" to create your personal GIMP directory." +msgstr "" + +#: app/install.c:736 +msgid "User Installation Log" +msgstr "" + +#: app/install.c:741 +msgid "GIMP Performance Tuning" +msgstr "" + +#: app/install.c:744 +msgid "For optimal GIMP performance, some settings may have to be adjusted." +msgstr "" + +#: app/install.c:751 +msgid "Click \"Continue\" to accept the settings above." +msgstr "" + +#: app/install.c:760 +#, fuzzy +msgid "Monitor Resolution" +msgstr "FelbontАs" + +#: app/install.c:763 +msgid "" +"To display images in their natural size, GIMP needs to know your monitor " +"resolution." +msgstr "" + +#: app/install.c:771 +msgid "Click \"Continue\" to start The GIMP." +msgstr "" + +#: app/install.c:845 +msgid "does not exist. Cannot install." +msgstr "" + +#: app/install.c:857 +msgid "has invalid permissions. Cannot install." +msgstr "" + +#: app/install.c:895 +msgid "" +"Did you notice any error messages in the console window?\n" +"If not, installation was successful!\n" +"Otherwise, quit and investigate the possible reason..." +msgstr "" + +#: app/install.c:955 +msgid "" +"Did you notice any error messages in the lines above?\n" +"If not, installation was successful!\n" +"Otherwise, quit and investigate the possible reason..." +msgstr "" + +#: app/install.c:969 +msgid "Click \"Continue\" to complete GIMP installation." +msgstr "" + +#: app/install.c:978 +msgid "Installation failed. Contact system administrator." +msgstr "" + +#: app/install.c:999 +msgid "" +"GIMP uses a limited amount of memory to store image data, the so-called\n" +"\"Tile Cache\". You should adjust it's size to fit into memory. Consider\n" +"the amount of memory used by other running processes." +msgstr "" + +#: app/install.c:1015 app/preferences_dialog.c:2102 +#, fuzzy +msgid "Tile Cache Size:" +msgstr "NИgyzet mИrete" + +#: app/install.c:1025 +msgid "" +"All image and undo data which doesn't fit into the Tile Cache will be\n" +"written to a swap file. This file should be located on a local filesystem\n" +"with enough free space (several hundred MB). On a UNIX system, you\n" +"may want to use the system-wide temp-dir (\"/tmp\" or \"/var/tmp\")." +msgstr "" + +#: app/install.c:1035 app/preferences_dialog.c:2361 +#, fuzzy +msgid "Select Swap Dir" +msgstr "/KijelЖlИs/иlesМt" + +#: app/install.c:1041 +#, fuzzy +msgid "Swap Directory:" +msgstr "CseretАr kЖnyvtАr:" + +#: app/install.c:1063 +msgid "" +"GIMP can obtain this information from your X-server.\n" +"However, most X-servers do not return useful values." +msgstr "" + +#: app/install.c:1070 +#, c-format +msgid "Get Resolution from X-server (Currently %d x %d dpi)" +msgstr "" + +#: app/install.c:1087 +msgid "Alternatively, you can set the monitor resolution manually." +msgstr "" + +#: app/install.c:1102 +#, fuzzy +msgid "Monitor Resolution X:" +msgstr "FelbontАs" + #: app/interface.c:312 msgid "" "Foreground & background colors. The black and white squares reset colors. " @@ -2825,8 +2915,8 @@ msgstr "Sz msgid "Guide procedures" msgstr "KИp forrАs" -#: app/internal_procs.c:122 app/preferences_dialog.c:1772 -#: app/preferences_dialog.c:1774 +#: app/internal_procs.c:122 app/preferences_dialog.c:1733 +#: app/preferences_dialog.c:1735 msgid "Interface" msgstr "" @@ -3265,172 +3355,160 @@ msgid "degrees" msgstr "" #. /File -#: app/menus.c:82 +#. the underscore installs an accelerator using the character that follows +#: app/menus.c:85 #, fuzzy msgid "/_File" msgstr "KitЖltИs tМpusa" -#: app/menus.c:84 app/menus.c:191 +#. /File +#: app/menus.c:87 app/menus.c:193 #, fuzzy msgid "/File/New..." msgstr "/FАjl/зj" -#: app/menus.c:86 app/menus.c:193 +#: app/menus.c:89 app/menus.c:195 #, fuzzy msgid "/File/Open..." msgstr "/FАjl/Megnyit" -#: app/menus.c:93 +#: app/menus.c:96 #, fuzzy msgid "/File/Acquire" msgstr "/FАjl/KilИp" -#: app/menus.c:98 +#: app/menus.c:101 #, fuzzy msgid "/File/Preferences..." msgstr "/FАjl/TulajdonsАgok..." -#: app/menus.c:105 -#, fuzzy -msgid "/File/Dialogs" -msgstr "/FАjl/BezАr" - -#: app/menus.c:107 +#: app/menus.c:108 #, fuzzy msgid "/File/Dialogs/Layers, Channels & Paths..." msgstr "/FАjl/BeАllМtАsok/RИtegek Иs csatornАk..." -#: app/menus.c:109 +#: app/menus.c:110 #, fuzzy msgid "/File/Dialogs/Tool Options..." msgstr "/FАjl/BeАllМtАsok/EszkЖzbeАllМtАsok..." -#: app/menus.c:114 +#: app/menus.c:115 #, fuzzy msgid "/File/Dialogs/Brushes..." msgstr "/FАjl/BeАllМtАsok/Ecsetek..." -#: app/menus.c:116 +#: app/menus.c:117 #, fuzzy msgid "/File/Dialogs/Patterns..." msgstr "/FАjl/BeАllМtАsok/MintАk..." -#: app/menus.c:118 +#: app/menus.c:119 #, fuzzy msgid "/File/Dialogs/Gradients..." msgstr "/FАjl/BeАllМtАsok/SzМnАtmenetek..." -#: app/menus.c:120 +#: app/menus.c:121 #, fuzzy msgid "/File/Dialogs/Palette..." msgstr "/FАjl/BeАllМtАsok/Paletta..." -#: app/menus.c:122 +#: app/menus.c:123 #, fuzzy msgid "/File/Dialogs/Indexed Palette..." msgstr "/BeАllМtАsok/Indexelt paletta..." -#: app/menus.c:127 +#: app/menus.c:128 #, fuzzy msgid "/File/Dialogs/Input Devices..." msgstr "/FАjl/BeАllМtАsok/Beviteli eszkЖzЖk..." -#: app/menus.c:129 +#: app/menus.c:130 #, fuzzy msgid "/File/Dialogs/Device Status..." msgstr "/FАjl/BeАllМtАsok/EszkЖzАllapot..." -#: app/menus.c:134 +#: app/menus.c:135 #, fuzzy msgid "/File/Dialogs/Document Index..." msgstr "/FАjl/BeАllМtАsok/Dokumentum index..." -#: app/menus.c:136 +#: app/menus.c:137 #, fuzzy msgid "/File/Dialogs/Error Console..." msgstr "/FАjl/BeАllМtАsok/Hibakonzol..." -#: app/menus.c:138 +#: app/menus.c:139 #, fuzzy msgid "/File/Dialogs/Display Filters..." msgstr "/FАjl/BeАllМtАsok/MintАk..." -#: app/menus.c:148 app/menus.c:206 +#: app/menus.c:149 app/menus.c:208 #, fuzzy msgid "/File/Quit" msgstr "/FАjl/KilИp" #. /Xtns -#: app/menus.c:153 +#. the underscore installs an accelerator using the character that follows +#: app/menus.c:155 #, fuzzy msgid "/_Xtns" msgstr "/Szerkeszt/---" -#: app/menus.c:155 +#: app/menus.c:157 #, fuzzy msgid "/Xtns/Module Browser..." msgstr "/FАjl/BeАllМtАsok/Ecsetek..." #. /Help -#: app/menus.c:163 +#. the underscore installs an accelerator using the character that follows +#: app/menus.c:166 msgid "/_Help" msgstr "" -#: app/menus.c:165 +#: app/menus.c:168 #, fuzzy msgid "/Help/Help..." msgstr "/FАjl/NИvjegy..." -#: app/menus.c:167 +#: app/menus.c:170 msgid "/Help/Context Help..." msgstr "" -#: app/menus.c:169 +#: app/menus.c:172 #, fuzzy msgid "/Help/Tip of the Day..." msgstr "/FАjl/A nap tippje" -#: app/menus.c:171 +#: app/menus.c:174 #, fuzzy msgid "/Help/About..." msgstr "/FАjl/NИvjegy..." -#: app/menus.c:173 +#: app/menus.c:176 msgid "/Help/Dump Items (Debug)" msgstr "" -#. /File -#: app/menus.c:189 -#, fuzzy -msgid "/File" -msgstr "KitЖltИs tМpusa" - -#: app/menus.c:195 +#: app/menus.c:197 #, fuzzy msgid "/File/Save" msgstr "/FАjl/MentИs" -#: app/menus.c:197 +#: app/menus.c:199 #, fuzzy msgid "/File/Save As..." msgstr "/FАjl/MentИs mАskИnt" -#: app/menus.c:199 +#: app/menus.c:201 #, fuzzy msgid "/File/Revert" msgstr "/FАjl/MentИs" -#: app/menus.c:204 +#: app/menus.c:206 #, fuzzy msgid "/File/Close" msgstr "/FАjl/BezАr" #. /Edit -#: app/menus.c:214 -#, fuzzy -msgid "/Edit" -msgstr "SzerkesztИs" - #: app/menus.c:216 #, fuzzy msgid "/Edit/Undo" @@ -3469,824 +3547,723 @@ msgstr "/Szerkeszt/Beilleszt (n #. /Edit/Buffer #: app/menus.c:236 #, fuzzy -msgid "/Edit/Buffer" -msgstr "/Szerkeszt/TЖrЖl" - -#: app/menus.c:238 -#, fuzzy msgid "/Edit/Buffer/Cut Named..." msgstr "/Szerkeszt/KivАg (nИv szerint)" -#: app/menus.c:240 +#: app/menus.c:238 #, fuzzy msgid "/Edit/Buffer/Copy Named..." msgstr "/Szerkeszt/MАsol (nИv szerint)" -#: app/menus.c:242 +#: app/menus.c:240 #, fuzzy msgid "/Edit/Buffer/Paste Named..." msgstr "/Szerkeszt/Beilleszt (nИv szerint)" -#: app/menus.c:247 +#: app/menus.c:245 #, fuzzy msgid "/Edit/Clear" msgstr "/Szerkeszt/TЖrЖl" -#: app/menus.c:249 +#: app/menus.c:247 #, fuzzy msgid "/Edit/Fill" msgstr "/Szerkeszt/Kifest" -#: app/menus.c:251 +#: app/menus.c:249 #, fuzzy msgid "/Edit/Stroke" msgstr "/Szerkeszt/KЖrberajzol" #. /Select -#: app/menus.c:259 -#, fuzzy -msgid "/Select" -msgstr "/KijelЖlИs/Teljes kИp" - -#: app/menus.c:261 +#: app/menus.c:257 #, fuzzy msgid "/Select/Invert" msgstr "/KijelЖlИs/InvertАl" -#: app/menus.c:263 +#: app/menus.c:259 #, fuzzy msgid "/Select/All" msgstr "/KijelЖlИs/Teljes kИp" -#: app/menus.c:265 +#: app/menus.c:261 #, fuzzy msgid "/Select/None" msgstr "/KijelЖlИs/MegszШntet" -#: app/menus.c:267 +#: app/menus.c:263 #, fuzzy msgid "/Select/Float" msgstr "/KijelЖlИs/LebegУ" -#: app/menus.c:272 +#: app/menus.c:268 #, fuzzy msgid "/Select/Feather..." msgstr "/KijelЖlИs/Elmos" -#: app/menus.c:274 +#: app/menus.c:270 #, fuzzy msgid "/Select/Sharpen" msgstr "/KijelЖlИs/иlesМt" -#: app/menus.c:276 +#: app/menus.c:272 #, fuzzy msgid "/Select/Shrink..." msgstr "/KijelЖlИs/CsЖkkent" -#: app/menus.c:278 +#: app/menus.c:274 #, fuzzy msgid "/Select/Grow..." msgstr "/KijelЖlИs/NЖvel" -#: app/menus.c:280 +#: app/menus.c:276 #, fuzzy msgid "/Select/Border..." msgstr "/KijelЖlИs/Keret" -#: app/menus.c:285 +#: app/menus.c:281 #, fuzzy msgid "/Select/Save to Channel" msgstr "/KijelЖlИs/MentИs csatornАba" #. /View -#: app/menus.c:290 -#, fuzzy -msgid "/View" -msgstr "/NИzet/---" - -#: app/menus.c:292 +#: app/menus.c:286 #, fuzzy msgid "/View/Zoom In" msgstr "/NИzet/NagyМt" -#: app/menus.c:294 +#: app/menus.c:288 #, fuzzy msgid "/View/Zoom Out" msgstr "/NИzet/KicsinyМt" #. /View/Zoom -#: app/menus.c:299 -#, fuzzy -msgid "/View/Zoom" -msgstr "/NИzet/NagyМt" - -#: app/menus.c:301 +#: app/menus.c:293 #, fuzzy msgid "/View/Zoom/16:1" msgstr "/NИzet/NagyМtАs/16:1" -#: app/menus.c:303 +#: app/menus.c:295 #, fuzzy msgid "/View/Zoom/8:1" msgstr "/NИzet/NagyМtАs/8:1" -#: app/menus.c:305 +#: app/menus.c:297 #, fuzzy msgid "/View/Zoom/4:1" msgstr "/NИzet/NagyМtАs/4:1" -#: app/menus.c:307 +#: app/menus.c:299 #, fuzzy msgid "/View/Zoom/2:1" msgstr "/NИzet/NagyМtАs/2:1" -#: app/menus.c:309 +#: app/menus.c:301 #, fuzzy msgid "/View/Zoom/1:1" msgstr "/NИzet/NagyМtАs/1:1" -#: app/menus.c:311 +#: app/menus.c:303 msgid "/View/Zoom/1:2" msgstr "/NИzet/NagyМtАs/1:2" -#: app/menus.c:313 +#: app/menus.c:305 msgid "/View/Zoom/1:4" msgstr "/NИzet/NagyМtАs/1:4" -#: app/menus.c:315 +#: app/menus.c:307 msgid "/View/Zoom/1:8" msgstr "/NИzet/NagyМtАs/1:8" -#: app/menus.c:317 +#: app/menus.c:309 msgid "/View/Zoom/1:16" msgstr "/NИzet/NagyМtАs/1:16" -#: app/menus.c:320 +#: app/menus.c:312 #, fuzzy msgid "/View/Dot for Dot" msgstr "/NИzet/PontrСl pontra" -#: app/menus.c:325 +#: app/menus.c:317 #, fuzzy msgid "/View/Info Window..." msgstr "/NИzet/Ablak infС..." -#: app/menus.c:327 +#: app/menus.c:319 #, fuzzy msgid "/View/Nav. Window..." msgstr "/NИzet/Ablak infС..." -#: app/menus.c:329 -#, fuzzy -msgid "/View/Undo History..." -msgstr "/Szerkeszt/Visszavon" - -#: app/menus.c:334 +#: app/menus.c:324 #, fuzzy msgid "/View/Toggle Selection" msgstr "/NИzet/VonalzС be-ki" -#: app/menus.c:336 +#: app/menus.c:326 #, fuzzy msgid "/View/Toggle Rulers" msgstr "/NИzet/VonalzС be-ki" -#: app/menus.c:338 +#: app/menus.c:328 #, fuzzy msgid "/View/Toggle Statusbar" msgstr "/NИzet/StАtuszsor be-ki" -#: app/menus.c:340 +#: app/menus.c:330 #, fuzzy msgid "/View/Toggle Guides" msgstr "/NИzet/SegИdvonalak be-ki" -#: app/menus.c:342 +#: app/menus.c:332 #, fuzzy msgid "/View/Snap to Guides" msgstr "/NИzet/SegИdvonalhoz igazМt" -#: app/menus.c:347 +#: app/menus.c:337 #, fuzzy msgid "/View/New View" msgstr "/NИzet/зj nИzet" -#: app/menus.c:349 +#: app/menus.c:339 #, fuzzy msgid "/View/Shrink Wrap" msgstr "/NИzet/Teljes nИzet" -#. /Image -#: app/menus.c:357 -#, fuzzy -msgid "/Image" -msgstr "KИp:" - #. /Image/Mode -#: app/menus.c:362 -#, fuzzy -msgid "/Image/Mode" -msgstr "/KИp/RGB" - -#: app/menus.c:364 +#: app/menus.c:344 #, fuzzy msgid "/Image/Mode/RGB" msgstr "/KИp/RGB" -#: app/menus.c:366 +#: app/menus.c:346 #, fuzzy msgid "/Image/Mode/Grayscale" msgstr "/KИp/Fekete-fehИr" -#: app/menus.c:368 +#: app/menus.c:348 #, fuzzy msgid "/Image/Mode/Indexed..." msgstr "/KИp/Indexelt" #. /Image/Colors -#: app/menus.c:376 -#, fuzzy -msgid "/Image/Colors" -msgstr "/KИp/SzМnek/---" - -#: app/menus.c:381 +#: app/menus.c:356 #, fuzzy msgid "/Image/Colors/Desaturate" msgstr "/KИp/SzМnek/Fekete-fehИr" -#: app/menus.c:383 +#: app/menus.c:358 #, fuzzy msgid "/Image/Colors/Invert" msgstr "/KИp/SzМnek/InvertАlАs" #. /Image/Colors/Auto -#: app/menus.c:391 -#, fuzzy -msgid "/Image/Colors/Auto" -msgstr "/KИp/SzМnek/---" - -#: app/menus.c:393 +#: app/menus.c:366 #, fuzzy msgid "/Image/Colors/Auto/Equalize" msgstr "/KИp/SzМnek/SzМnek kiegyenlМtИse" #. /Image/Alpha -#: app/menus.c:401 -#, fuzzy -msgid "/Image/Alpha" -msgstr "/KИp/SkАlАzАs" - -#: app/menus.c:403 +#: app/menus.c:374 #, fuzzy msgid "/Image/Alpha/Add Alpha Channel" msgstr "/KИp/Alfa/Alfa csatorna lИtrehozАs" #. /Image/Transforms -#: app/menus.c:408 -#, fuzzy -msgid "/Image/Transforms" -msgstr "аtalakМtАs" - -#: app/menus.c:410 +#: app/menus.c:379 #, fuzzy msgid "/Image/Transforms/Offset..." msgstr "аtalakМtАs" -#: app/menus.c:412 +#: app/menus.c:381 #, fuzzy msgid "/Image/Transforms/Rotate" msgstr "/KИp/SzМnek/InvertАlАs" -#: app/menus.c:419 +#: app/menus.c:388 #, fuzzy msgid "/Image/Canvas Size..." msgstr "/KИp/аtmИretezИs" -#: app/menus.c:421 +#: app/menus.c:390 #, fuzzy msgid "/Image/Scale Image..." msgstr "/KИp/SkАlАzАs" -#: app/menus.c:423 +#: app/menus.c:392 #, fuzzy msgid "/Image/Duplicate" msgstr "/KИp/CsatornАk/DuplikАlАs" #. /Layers -#: app/menus.c:431 -#, fuzzy -msgid "/Layers" -msgstr "RИtegek" - -#: app/menus.c:433 +#: app/menus.c:400 #, fuzzy msgid "/Layers/Layers, Channels & Paths..." msgstr "/RИtegek/RИtegek Иs csatornАk..." -#. /Layers/Stack -#: app/menus.c:438 +#: app/menus.c:404 #, fuzzy -msgid "/Layers/Stack" -msgstr "/RИtegek/Feljebb" +msgid "/Layers/Layer to Imagesize" +msgstr "/RИtegek/Egy rИteggИ" -#: app/menus.c:440 +#. /Layers/Stack +#: app/menus.c:409 #, fuzzy msgid "/Layers/Stack/Previous Layer" msgstr "/RИtegek/Feljebb" -#: app/menus.c:442 +#: app/menus.c:411 #, fuzzy msgid "/Layers/Stack/Next Layer" msgstr "/RИtegek/Feljebb" -#: app/menus.c:444 +#: app/menus.c:413 #, fuzzy msgid "/Layers/Stack/Raise Layer" msgstr "/RИtegek/Feljebb" -#: app/menus.c:446 +#: app/menus.c:415 #, fuzzy msgid "/Layers/Stack/Lower Layer" msgstr "/RИtegek/Lejjebb" -#: app/menus.c:448 +#: app/menus.c:417 #, fuzzy msgid "/Layers/Stack/Layer to Top" msgstr "LegfelЭlre" -#: app/menus.c:450 +#: app/menus.c:419 #, fuzzy msgid "/Layers/Stack/Layer to Bottom" msgstr "Legalulra" #. /Layers/Rotate -#: app/menus.c:457 +#: app/menus.c:426 #, fuzzy msgid "/Layers/Rotate" msgstr "/RИtegek/Feljebb" -#: app/menus.c:460 -#, fuzzy -msgid "/Layers/Layer to Imagesize" -msgstr "/RИtegek/Egy rИteggИ" - -#: app/menus.c:465 +#: app/menus.c:431 #, fuzzy msgid "/Layers/Anchor Layer" msgstr "/RИtegek/RИteg rЖgzМtИse" -#: app/menus.c:467 +#: app/menus.c:433 #, fuzzy msgid "/Layers/Merge Visible Layers..." msgstr "/RИtegek/LАthatС rИtegek ЖsszefИsЭlИse" -#: app/menus.c:469 +#: app/menus.c:435 #, fuzzy msgid "/Layers/Flatten Image" msgstr "/RИtegek/Egy rИteggИ" -#: app/menus.c:474 +#: app/menus.c:440 #, fuzzy msgid "/Layers/Mask to Selection" msgstr "/RИtegek/Maszk kijelЖlИssИ" -#: app/menus.c:479 +#: app/menus.c:445 #, fuzzy msgid "/Layers/Add Alpha Channel" msgstr "/RИtegek/Alfa csatorna lИtrehozАs" -#: app/menus.c:481 +#: app/menus.c:447 #, fuzzy msgid "/Layers/Alpha to Selection" msgstr "/RИtegek/Alfa csatorna kijelЖlИssИ" #. /Tools -#: app/menus.c:489 -#, fuzzy -msgid "/Tools" -msgstr "/EszkЖzЖk/---" - -#: app/menus.c:491 +#: app/menus.c:455 #, fuzzy msgid "/Tools/Toolbox" msgstr "/EszkЖzЖk/EszkЖztАr" -#: app/menus.c:493 +#: app/menus.c:457 #, fuzzy msgid "/Tools/Default Colors" msgstr "/EszkЖzЖk/AlapИrtelmezett szМnek" -#: app/menus.c:495 +#: app/menus.c:459 #, fuzzy msgid "/Tools/Swap Colors" msgstr "/EszkЖzЖk/SzМnek felcserИlИse" -#: app/menus.c:501 -#, fuzzy -msgid "/Tools/Select Tools" -msgstr "/EszkЖzЖk/TИglalap kijelЖlИs" - -#: app/menus.c:503 -#, fuzzy -msgid "/Tools/Transform Tools" -msgstr "/EszkЖzЖk/аtalakМtАs" - -#: app/menus.c:505 -#, fuzzy -msgid "/Tools/Paint Tools" -msgstr "/EszkЖzЖk/Ecset" - #. /Dialogs -#: app/menus.c:510 -#, fuzzy -msgid "/Dialogs" -msgstr "/FАjl/BezАr" - -#: app/menus.c:512 +#: app/menus.c:466 #, fuzzy msgid "/Dialogs/Layers, Channels & Paths..." msgstr "/BeАllМtАsok/RИtegek Иs csatornАk..." -#: app/menus.c:514 +#: app/menus.c:468 #, fuzzy msgid "/Dialogs/Tool Options..." msgstr "/BeАllМtАsok/EszkЖzbeАllМtАsok..." -#: app/menus.c:519 +#: app/menus.c:473 #, fuzzy msgid "/Dialogs/Brushes..." msgstr "/BeАllМtАsok/Ecsetek..." -#: app/menus.c:521 +#: app/menus.c:475 #, fuzzy msgid "/Dialogs/Patterns..." msgstr "/BeАllМtАsok/MintАk..." -#: app/menus.c:523 +#: app/menus.c:477 #, fuzzy msgid "/Dialogs/Gradients..." msgstr "/BeАllМtАsok/SzМnАtmenetek..." -#: app/menus.c:525 +#: app/menus.c:479 #, fuzzy msgid "/Dialogs/Palette..." msgstr "/BeАllМtАsok/Paletta..." -#: app/menus.c:527 +#: app/menus.c:481 #, fuzzy msgid "/Dialogs/Indexed Palette..." msgstr "/BeАllМtАsok/Indexelt paletta..." -#: app/menus.c:532 +#: app/menus.c:486 #, fuzzy msgid "/Dialogs/Input Devices..." msgstr "/BeАllМtАsok/Beviteli eszkЖzЖk..." -#: app/menus.c:534 +#: app/menus.c:488 #, fuzzy msgid "/Dialogs/Device Status..." msgstr "/BeАllМtАsok/EszkЖzАllapot..." -#: app/menus.c:539 +#: app/menus.c:493 #, fuzzy msgid "/Dialogs/Document Index..." msgstr "/FАjl/BeАllМtАsok/Dokumentum index..." -#: app/menus.c:541 +#: app/menus.c:495 #, fuzzy msgid "/Dialogs/Error Console..." msgstr "/FАjl/BeАllМtАsok/Hibakonzol..." -#: app/menus.c:543 +#: app/menus.c:497 #, fuzzy msgid "/Dialogs/Display Filters..." msgstr "/BeАllМtАsok/MintАk..." -#. /Filters -#: app/menus.c:551 +#: app/menus.c:499 #, fuzzy -msgid "/Filters" -msgstr "KitЖltИs tМpusa" +msgid "/Dialogs/Undo History..." +msgstr "/Szerkeszt/Visszavon" -#: app/menus.c:553 +#. /Filters +#: app/menus.c:508 #, fuzzy msgid "/Filters/Repeat Last" msgstr "/Filters/IsmИt vИgrehajt" -#: app/menus.c:555 +#: app/menus.c:510 #, fuzzy msgid "/Filters/Re-Show Last" msgstr "/Filters/IsmИt beАllМt" -#: app/menus.c:561 +#: app/menus.c:515 #, fuzzy msgid "/Filters/Blur" msgstr "KitЖltИs tМpusa" -#: app/menus.c:564 +#: app/menus.c:517 #, fuzzy msgid "/Filters/Colors" msgstr "/FАjl/BezАr" -#: app/menus.c:569 +#: app/menus.c:519 #, fuzzy msgid "/Filters/Noise" msgstr "KitЖltИs tМpusa" -#: app/menus.c:571 +#: app/menus.c:521 #, fuzzy msgid "/Filters/Edge-Detect" msgstr "/Filters/IsmИt vИgrehajt" -#: app/menus.c:573 +#: app/menus.c:523 #, fuzzy msgid "/Filters/Enhance" msgstr "KitЖltИs tМpusa" -#: app/menus.c:575 +#: app/menus.c:525 #, fuzzy msgid "/Filters/Generic" msgstr "KitЖltИs tМpusa" -#: app/menus.c:580 +#: app/menus.c:530 #, fuzzy msgid "/Filters/Glass Effects" msgstr "/Filters/IsmИt vИgrehajt" -#: app/menus.c:582 +#: app/menus.c:532 #, fuzzy msgid "/Filters/Light Effects" msgstr "KitЖltИs tМpusa" -#: app/menus.c:584 +#: app/menus.c:534 #, fuzzy msgid "/Filters/Distorts" msgstr "/FАjl/BezАr" -#: app/menus.c:586 +#: app/menus.c:536 #, fuzzy msgid "/Filters/Artistic" msgstr "/Filters/IsmИt vИgrehajt" -#: app/menus.c:588 +#: app/menus.c:538 #, fuzzy msgid "/Filters/Map" msgstr "KitЖltИs tМpusa" -#: app/menus.c:590 +#: app/menus.c:540 #, fuzzy msgid "/Filters/Render" msgstr "/FАjl/MentИs" -#: app/menus.c:592 +#: app/menus.c:542 #, fuzzy msgid "/Filters/Web" msgstr "KitЖltИs tМpusa" -#: app/menus.c:597 +#: app/menus.c:547 #, fuzzy msgid "/Filters/Animation" msgstr "KitЖltИs tМpusa" -#: app/menus.c:599 +#: app/menus.c:549 #, fuzzy msgid "/Filters/Combine" msgstr "/FАjl/BezАr" -#: app/menus.c:604 +#: app/menus.c:554 #, fuzzy msgid "/Filters/Toys" msgstr "KitЖltИs tМpusa" -#. /Script-Fu -#: app/menus.c:609 -msgid "/Script-Fu" -msgstr "" - -#: app/menus.c:620 +#: app/menus.c:567 msgid "/Automatic" msgstr "/Automatikus" -#: app/menus.c:634 +#: app/menus.c:581 #, fuzzy msgid "/By Extension" msgstr "/KiterjesztИs szerint" -#: app/menus.c:648 +#: app/menus.c:595 #, fuzzy msgid "/New Layer..." msgstr "зj rИteg" #. /Stack -#: app/menus.c:653 -#, fuzzy -msgid "/Stack" -msgstr "/RИtegek/Feljebb" - -#: app/menus.c:655 +#: app/menus.c:600 #, fuzzy msgid "/Stack/Raise Layer" msgstr "/RИtegek/Feljebb" -#: app/menus.c:657 +#: app/menus.c:602 #, fuzzy msgid "/Stack/Lower Layer" msgstr "/RИtegek/Lejjebb" -#: app/menus.c:659 +#: app/menus.c:604 #, fuzzy msgid "/Stack/Layer to Top" msgstr "LegfelЭlre" -#: app/menus.c:661 +#: app/menus.c:606 #, fuzzy msgid "/Stack/Layer to Bottom" msgstr "Legalulra" -#: app/menus.c:664 +#: app/menus.c:609 #, fuzzy msgid "/Duplicate Layer" msgstr "RИteg mАsolАsa" -#: app/menus.c:666 +#: app/menus.c:611 #, fuzzy msgid "/Anchor Layer" msgstr "RИteg rЖgzМtИse" -#: app/menus.c:668 +#: app/menus.c:613 #, fuzzy msgid "/Delete Layer" msgstr "RИteg tЖrlИse" -#: app/menus.c:673 +#: app/menus.c:618 msgid "/Layer Boundary Size..." msgstr "" -#: app/menus.c:675 +#: app/menus.c:620 #, fuzzy msgid "/Layer to Imagesize" msgstr "/RИtegek/Egy rИteggИ" -#: app/menus.c:677 +#: app/menus.c:622 #, fuzzy msgid "/Scale Layer..." msgstr "RИteg skАlАzАsa" -#: app/menus.c:682 +#: app/menus.c:627 #, fuzzy msgid "/Merge Visible Layers..." msgstr "LАthatС rИtegek ЖsszefИsЭlИse" -#: app/menus.c:684 +#: app/menus.c:629 #, fuzzy msgid "/Merge Down" msgstr "жsszefИsЭlИs lefelИ" -#: app/menus.c:686 +#: app/menus.c:631 #, fuzzy msgid "/Flatten Image" msgstr "Egy rИteggИ" -#: app/menus.c:691 +#: app/menus.c:636 #, fuzzy msgid "/Add Layer Mask..." msgstr "RИtegmaszk lИtrehozАsa" -#: app/menus.c:693 +#: app/menus.c:638 #, fuzzy msgid "/Apply Layer Mask" msgstr "RИtegmaszk ИrvИnyesМtИse" -#: app/menus.c:695 +#: app/menus.c:640 #, fuzzy msgid "/Delete Layer Mask" msgstr "RИteg tЖrlИse" -#: app/menus.c:697 +#: app/menus.c:642 #, fuzzy msgid "/Mask to Selection" msgstr "Maszk kijelЖlИssИ" -#: app/menus.c:702 +#: app/menus.c:647 #, fuzzy msgid "/Add Alpha Channel" msgstr "Alfa csatorna lИtrehozАs" -#: app/menus.c:704 +#: app/menus.c:649 #, fuzzy msgid "/Alpha to Selection" msgstr "аtlАtszatlansАg kijelЖlИssИ" -#: app/menus.c:709 +#: app/menus.c:654 #, fuzzy msgid "/Edit Layer Attributes..." msgstr "RИteg tulajdonsАgainak szerkesztИse" -#: app/menus.c:720 +#: app/menus.c:665 #, fuzzy msgid "/New Channel..." msgstr "зj csatorna" -#: app/menus.c:722 +#: app/menus.c:667 #, fuzzy msgid "/Raise Channel" msgstr "Feljebb" -#: app/menus.c:724 +#: app/menus.c:669 #, fuzzy msgid "/Lower Channel" msgstr "Lejjebb" -#: app/menus.c:726 +#: app/menus.c:671 #, fuzzy msgid "/Duplicate Channel" msgstr "Csatorna mАsolАsa" -#: app/menus.c:731 +#: app/menus.c:676 #, fuzzy msgid "/Channel to Selection" msgstr "CsatornАbСl kijelЖlИs" -#: app/menus.c:733 +#: app/menus.c:678 #, fuzzy msgid "/Add to Selection" msgstr "аtlАtszatlansАg kijelЖlИssИ" -#: app/menus.c:735 +#: app/menus.c:680 #, fuzzy msgid "/Subtract from Selection" msgstr "CsatornАbСl kijelЖlИs" -#: app/menus.c:737 +#: app/menus.c:682 #, fuzzy msgid "/Intersect with Selection" msgstr "Ecset vАlasztАs" -#: app/menus.c:742 +#: app/menus.c:687 #, fuzzy msgid "/Delete Channel" msgstr "Csatorna tЖrlИse" -#: app/menus.c:747 +#: app/menus.c:692 #, fuzzy msgid "/Edit Channel Attributes..." msgstr "Csatorna tulajdonsАgok szerkesztИse" -#: app/menus.c:758 +#: app/menus.c:703 #, fuzzy msgid "/New Path" msgstr "зj paletta" -#: app/menus.c:760 +#: app/menus.c:705 #, fuzzy msgid "/Duplicate Path" msgstr "RИteg mАsolАsa" -#: app/menus.c:762 +#: app/menus.c:707 #, fuzzy msgid "/Path to Selection" msgstr "Paletta beАllМtАsok" -#: app/menus.c:764 +#: app/menus.c:709 #, fuzzy msgid "/Selection to Path" msgstr "KijelЖlИs" -#: app/menus.c:766 +#: app/menus.c:711 msgid "/Stroke Path" msgstr "" -#: app/menus.c:768 +#: app/menus.c:713 #, fuzzy msgid "/Delete Path" msgstr "TЖrЖl" -#: app/menus.c:773 +#: app/menus.c:718 #, fuzzy msgid "/Copy Path" msgstr "SzМnАtmenet mАsolАsa" -#: app/menus.c:775 +#: app/menus.c:720 #, fuzzy msgid "/Paste Path" msgstr "Beilleszt" -#: app/menus.c:777 +#: app/menus.c:722 #, fuzzy msgid "/Import Path..." msgstr "SzМnpaletta" -#: app/menus.c:779 +#: app/menus.c:724 #, fuzzy msgid "/Export Path..." msgstr "SzМnpaletta" -#: app/menus.c:784 +#: app/menus.c:729 #, fuzzy msgid "/Edit Path Attributes..." msgstr "RИteg tulajdonsАgainak szerkesztИse" -#: app/menus.c:1310 +#: app/menus.c:1260 #, c-format msgid "Error opening file: %s\n" msgstr "" @@ -4395,7 +4372,7 @@ msgstr "Forgat" msgid "Autoload during startup" msgstr "" -#: app/move.c:456 +#: app/move.c:458 #, fuzzy msgid "Move Tool" msgstr "MАsolС beАllМtАsok" @@ -4410,7 +4387,7 @@ msgstr "/N msgid "Navigation: No Image" msgstr "" -#: app/paint_core.c:717 +#: app/paint_core.c:735 #, fuzzy msgid "No brushes available for use with this tool." msgstr "Nincs felhasznАlhatС minta a mШvelethez." @@ -4875,520 +4852,512 @@ msgstr "" msgid "You will need to restart GIMP for these changes to take effect." msgstr "A vАltozАsok ИrvИnybe lИpИsИhez Зjra kell indМtanod a GIMPet." -#: app/preferences_dialog.c:1459 +#: app/preferences_dialog.c:1002 +#, c-format +msgid "The default comments is limited to %d characters." +msgstr "" + +#: app/preferences_dialog.c:1424 msgid "Preferences" msgstr "TulajdonsАgok" #. The categories tree -#: app/preferences_dialog.c:1481 +#: app/preferences_dialog.c:1446 msgid "Categories" msgstr "" -#: app/preferences_dialog.c:1509 app/preferences_dialog.c:1511 +#: app/preferences_dialog.c:1474 app/preferences_dialog.c:1476 #, fuzzy msgid "New File" msgstr "KitЖltИs tМpusa" -#: app/preferences_dialog.c:1522 +#: app/preferences_dialog.c:1487 #, fuzzy msgid "Default Image Size and Unit" msgstr "AlapИrtelmezett kИpmИret" -#: app/preferences_dialog.c:1536 +#: app/preferences_dialog.c:1501 msgid "Width" msgstr "SzИlessИg" -#: app/preferences_dialog.c:1538 +#: app/preferences_dialog.c:1503 msgid "Height" msgstr "MagassАg" -#: app/preferences_dialog.c:1568 +#: app/preferences_dialog.c:1533 #, fuzzy msgid "Default Image Resolution and Resolution Unit" msgstr "AlapИrtelmezett kИpmИret" -#: app/preferences_dialog.c:1595 app/preferences_dialog.c:2359 +#: app/preferences_dialog.c:1560 app/preferences_dialog.c:2288 msgid "dpi" msgstr "" -#: app/preferences_dialog.c:1642 +#: app/preferences_dialog.c:1607 #, fuzzy msgid "Default Image Type:" msgstr "AlapИrtelmezett kИptМpus" -#: app/preferences_dialog.c:1678 app/preferences_dialog.c:2166 -msgid "Bytes" -msgstr "B" - -#: app/preferences_dialog.c:1679 app/preferences_dialog.c:2167 -msgid "KiloBytes" -msgstr "kB" - -#: app/preferences_dialog.c:1680 app/preferences_dialog.c:2168 -msgid "MegaBytes" -msgstr "MB" - -#: app/preferences_dialog.c:1686 +#: app/preferences_dialog.c:1618 msgid "Maximum Image Size:" msgstr "" -#: app/preferences_dialog.c:1692 app/preferences_dialog.c:1694 +#: app/preferences_dialog.c:1623 app/preferences_dialog.c:1625 +#, fuzzy +msgid "Default Comment" +msgstr "AlapИrtelmezett" + +#: app/preferences_dialog.c:1633 +msgid "Comment Used for New Images" +msgstr "" + +#: app/preferences_dialog.c:1653 app/preferences_dialog.c:1655 msgid "Display" msgstr "KИpernyУ" -#: app/preferences_dialog.c:1702 +#: app/preferences_dialog.c:1663 #, fuzzy msgid "Transparency" msgstr "аtlАtszС" -#: app/preferences_dialog.c:1721 +#: app/preferences_dialog.c:1682 msgid "Light Checks" msgstr "VilАgos nИgyzethАlС" -#: app/preferences_dialog.c:1722 +#: app/preferences_dialog.c:1683 msgid "Mid-Tone Checks" msgstr "KЖzИpszЭrke nИgyzethАlС" -#: app/preferences_dialog.c:1723 +#: app/preferences_dialog.c:1684 msgid "Dark Checks" msgstr "SЖtИt nИgyzethАlС" -#: app/preferences_dialog.c:1724 +#: app/preferences_dialog.c:1685 msgid "White Only" msgstr "Csak fehИr" -#: app/preferences_dialog.c:1725 +#: app/preferences_dialog.c:1686 msgid "Gray Only" msgstr "Csak szЭrke" -#: app/preferences_dialog.c:1726 +#: app/preferences_dialog.c:1687 msgid "Black Only" msgstr "Csak fekete" -#: app/preferences_dialog.c:1730 +#: app/preferences_dialog.c:1691 #, fuzzy msgid "Transparency Type:" msgstr "аtlАtszСsАg tМpusa" -#: app/preferences_dialog.c:1737 app/preferences_dialog.c:1810 -#: app/preferences_dialog.c:1824 +#: app/preferences_dialog.c:1698 app/preferences_dialog.c:1771 +#: app/preferences_dialog.c:1785 msgid "Small" msgstr "Kicsi" -#: app/preferences_dialog.c:1738 app/preferences_dialog.c:1811 -#: app/preferences_dialog.c:1825 +#: app/preferences_dialog.c:1699 app/preferences_dialog.c:1772 +#: app/preferences_dialog.c:1786 msgid "Medium" msgstr "KЖzepes" -#: app/preferences_dialog.c:1739 app/preferences_dialog.c:1812 -#: app/preferences_dialog.c:1826 +#: app/preferences_dialog.c:1700 app/preferences_dialog.c:1773 +#: app/preferences_dialog.c:1787 msgid "Large" msgstr "Nagy" -#: app/preferences_dialog.c:1743 +#: app/preferences_dialog.c:1704 #, fuzzy msgid "Check Size:" msgstr "NИgyzet mИrete" -#: app/preferences_dialog.c:1746 +#: app/preferences_dialog.c:1707 #, fuzzy msgid "8-Bit Displays" msgstr "KИpernyУ" -#: app/preferences_dialog.c:1751 +#: app/preferences_dialog.c:1712 msgid "Install Colormap" msgstr "" -#: app/preferences_dialog.c:1760 +#: app/preferences_dialog.c:1721 msgid "Colormap Cycling" msgstr "" -#: app/preferences_dialog.c:1809 +#: app/preferences_dialog.c:1770 msgid "Tiny" msgstr "" -#: app/preferences_dialog.c:1813 +#: app/preferences_dialog.c:1774 #, fuzzy msgid "Huge" msgstr "SzМnessИg" -#: app/preferences_dialog.c:1817 +#: app/preferences_dialog.c:1778 #, fuzzy msgid "Preview Size:" msgstr "BemutatСkИp mИrete: " -#: app/preferences_dialog.c:1830 +#: app/preferences_dialog.c:1791 #, fuzzy msgid "Nav Preview Size:" msgstr "BemutatСkИp mИrete: " -#: app/preferences_dialog.c:1840 +#: app/preferences_dialog.c:1801 msgid "Recent Documents List Size:" msgstr "" #. Indicators -#: app/preferences_dialog.c:1844 +#: app/preferences_dialog.c:1805 #, fuzzy msgid "Toolbox" msgstr "/EszkЖzЖk/EszkЖztАr" -#: app/preferences_dialog.c:1847 +#: app/preferences_dialog.c:1808 msgid "Display Brush, Pattern and Gradient Indicators" msgstr "" -#: app/preferences_dialog.c:1856 +#: app/preferences_dialog.c:1817 msgid "Dialog Behaviour" msgstr "" -#: app/preferences_dialog.c:1858 +#: app/preferences_dialog.c:1819 msgid "Navigation Window per Display" msgstr "" -#: app/preferences_dialog.c:1867 +#: app/preferences_dialog.c:1828 msgid "Info Window Follows Mouse" msgstr "" -#: app/preferences_dialog.c:1878 app/preferences_dialog.c:1880 +#: app/preferences_dialog.c:1839 app/preferences_dialog.c:1841 msgid "Help System" msgstr "" -#: app/preferences_dialog.c:1890 +#: app/preferences_dialog.c:1851 msgid "Show Tool Tips" msgstr "" -#: app/preferences_dialog.c:1900 +#: app/preferences_dialog.c:1861 msgid "Context Sensitive Help with \"F1\"" msgstr "" -#: app/preferences_dialog.c:1909 +#: app/preferences_dialog.c:1870 #, fuzzy msgid "Help Browser" msgstr "/FАjl/BeАllМtАsok/Ecsetek..." -#: app/preferences_dialog.c:1921 +#: app/preferences_dialog.c:1882 #, fuzzy msgid "Internal" msgstr "жsszeadСdС" -#: app/preferences_dialog.c:1922 +#: app/preferences_dialog.c:1883 msgid "Netscape" msgstr "" -#: app/preferences_dialog.c:1926 +#: app/preferences_dialog.c:1887 msgid "Help Browser to Use:" msgstr "" -#: app/preferences_dialog.c:1931 app/preferences_dialog.c:1933 +#: app/preferences_dialog.c:1892 app/preferences_dialog.c:1894 msgid "Image Windows" msgstr "" -#: app/preferences_dialog.c:1941 +#: app/preferences_dialog.c:1902 msgid "Appearance" msgstr "" -#: app/preferences_dialog.c:1943 +#: app/preferences_dialog.c:1904 msgid "Use \"Dot for Dot\" by default" msgstr "" -#: app/preferences_dialog.c:1952 +#: app/preferences_dialog.c:1913 #, fuzzy msgid "Resize Window on Zoom" msgstr "/NИzet/Ablak infС..." -#: app/preferences_dialog.c:1961 +#: app/preferences_dialog.c:1922 #, fuzzy msgid "Show Rulers" msgstr "RАcs megjelenМtИs" -#: app/preferences_dialog.c:1970 +#: app/preferences_dialog.c:1931 #, fuzzy msgid "Show Statusbar" msgstr "/NИzet/StАtuszsor be-ki" -#: app/preferences_dialog.c:1994 +#: app/preferences_dialog.c:1955 msgid "Marching Ants Speed:" msgstr "" #. Set the currently used string as "Custom" -#: app/preferences_dialog.c:2002 +#: app/preferences_dialog.c:1963 msgid "Custom" msgstr "EgyИni" #. set some commonly used format strings -#: app/preferences_dialog.c:2008 +#: app/preferences_dialog.c:1969 msgid "Standard" msgstr "" -#: app/preferences_dialog.c:2013 +#: app/preferences_dialog.c:1974 msgid "Show zoom percentage" msgstr "" -#: app/preferences_dialog.c:2018 +#: app/preferences_dialog.c:1979 msgid "Show zoom ratio" msgstr "" -#: app/preferences_dialog.c:2023 +#: app/preferences_dialog.c:1984 msgid "Show reversed zoom ratio" msgstr "" -#: app/preferences_dialog.c:2034 +#: app/preferences_dialog.c:1995 msgid "Image Title Format:" msgstr "" #. End of the title format string -#: app/preferences_dialog.c:2038 +#: app/preferences_dialog.c:1999 msgid "Pointer Movement Feedback" msgstr "" -#: app/preferences_dialog.c:2041 +#: app/preferences_dialog.c:2002 msgid "Perfect-but-Slow Pointer Tracking" msgstr "" -#: app/preferences_dialog.c:2050 +#: app/preferences_dialog.c:2011 msgid "Disable Cursor Updating" msgstr "" -#: app/preferences_dialog.c:2062 app/preferences_dialog.c:2064 +#: app/preferences_dialog.c:2023 app/preferences_dialog.c:2025 #: app/tools.c:1080 msgid "Tool Options" msgstr "EszkЖztАr" -#: app/preferences_dialog.c:2072 +#: app/preferences_dialog.c:2033 #, fuzzy msgid "Paint Options" msgstr "FestИkszСrС beАllМtАsok" -#: app/preferences_dialog.c:2075 +#: app/preferences_dialog.c:2036 #, fuzzy msgid "Use Global Paint Options" msgstr "SzМnegyensЗly beАllМtАsok" -#: app/preferences_dialog.c:2090 app/preferences_dialog.c:2092 +#: app/preferences_dialog.c:2051 app/preferences_dialog.c:2053 msgid "Environment" msgstr "" -#: app/preferences_dialog.c:2100 +#: app/preferences_dialog.c:2061 #, fuzzy msgid "Resource Consumption" msgstr "ErУforrАs beАllМtАsok" -#: app/preferences_dialog.c:2102 +#: app/preferences_dialog.c:2063 msgid "Conservative Memory Usage" msgstr "" -#: app/preferences_dialog.c:2130 +#: app/preferences_dialog.c:2091 #, fuzzy msgid "Levels of Undo:" msgstr "KimentИs beАllМtАsok" -#: app/preferences_dialog.c:2174 -#, fuzzy -msgid "Tile Cache Size:" -msgstr "NИgyzet mИrete" - -#: app/preferences_dialog.c:2185 +#: app/preferences_dialog.c:2113 msgid "Number of Processors to Use:" msgstr "" -#: app/preferences_dialog.c:2189 app/transform_tool.c:215 +#: app/preferences_dialog.c:2117 app/transform_tool.c:215 msgid "Scaling" msgstr "SkАlАzАs" -#: app/preferences_dialog.c:2207 +#: app/preferences_dialog.c:2135 msgid "Nearest Neighbor (Fast)" msgstr "" -#: app/preferences_dialog.c:2211 +#: app/preferences_dialog.c:2139 msgid "Cubic (Slow)" msgstr "" -#: app/preferences_dialog.c:2216 +#: app/preferences_dialog.c:2144 #, fuzzy msgid "Interpolation Type:" msgstr "NИgyzetes interpolАciС" -#: app/preferences_dialog.c:2219 +#: app/preferences_dialog.c:2147 #, fuzzy msgid "File Saving" msgstr "/FАjl/MentИs" -#: app/preferences_dialog.c:2236 app/preferences_dialog.c:2249 +#: app/preferences_dialog.c:2164 app/preferences_dialog.c:2177 msgid "Always" msgstr "" -#: app/preferences_dialog.c:2237 +#: app/preferences_dialog.c:2165 msgid "Never" msgstr "" -#: app/preferences_dialog.c:2241 +#: app/preferences_dialog.c:2169 msgid "Try to Write a Thumbnail File:" msgstr "" -#: app/preferences_dialog.c:2248 +#: app/preferences_dialog.c:2176 msgid "Only when Modified" msgstr "" -#: app/preferences_dialog.c:2253 +#: app/preferences_dialog.c:2181 msgid "\"File > Save\" Saves the Image:" msgstr "" -#: app/preferences_dialog.c:2259 +#: app/preferences_dialog.c:2187 msgid "Session Management" msgstr "" -#: app/preferences_dialog.c:2261 +#: app/preferences_dialog.c:2189 msgid "Session" msgstr "" -#: app/preferences_dialog.c:2269 +#: app/preferences_dialog.c:2197 msgid "Window Positions" msgstr "" -#: app/preferences_dialog.c:2271 +#: app/preferences_dialog.c:2199 msgid "Save Window Positions on Exit" msgstr "" -#: app/preferences_dialog.c:2285 +#: app/preferences_dialog.c:2213 msgid "Clear Saved Window Positions Now" msgstr "" -#: app/preferences_dialog.c:2293 +#: app/preferences_dialog.c:2221 msgid "Always Try to Restore Session" msgstr "" -#: app/preferences_dialog.c:2302 +#: app/preferences_dialog.c:2230 #, fuzzy msgid "Devices" msgstr "EszkЖzАllapot" -#: app/preferences_dialog.c:2304 +#: app/preferences_dialog.c:2232 #, fuzzy msgid "Save Device Status on Exit" msgstr "EszkЖzАllapot" -#: app/preferences_dialog.c:2315 app/preferences_dialog.c:2317 +#: app/preferences_dialog.c:2243 app/preferences_dialog.c:2245 msgid "Monitor" msgstr "" -#: app/preferences_dialog.c:2325 +#: app/preferences_dialog.c:2253 #, fuzzy msgid "Get Monitor Resolution" msgstr "FelbontАs" -#: app/preferences_dialog.c:2333 +#: app/preferences_dialog.c:2261 #, c-format msgid "(Currently %d x %d dpi)" msgstr "" -#: app/preferences_dialog.c:2384 +#: app/preferences_dialog.c:2313 msgid "From X Server" msgstr "" -#: app/preferences_dialog.c:2399 +#: app/preferences_dialog.c:2328 msgid "Manually:" msgstr "" -#: app/preferences_dialog.c:2412 app/preferences_dialog.c:2414 +#: app/preferences_dialog.c:2341 app/preferences_dialog.c:2343 msgid "Directories" msgstr "" -#: app/preferences_dialog.c:2431 +#: app/preferences_dialog.c:2360 #, fuzzy msgid "Temp Dir:" msgstr "Ideiglenes kЖnyvtАr:" -#: app/preferences_dialog.c:2431 +#: app/preferences_dialog.c:2360 msgid "Select Temp Dir" msgstr "" -#: app/preferences_dialog.c:2432 +#: app/preferences_dialog.c:2361 #, fuzzy msgid "Swap Dir:" msgstr "CseretАr kЖnyvtАr:" -#: app/preferences_dialog.c:2432 -#, fuzzy -msgid "Select Swap Dir" -msgstr "/KijelЖlИs/иlesМt" - -#: app/preferences_dialog.c:2468 +#: app/preferences_dialog.c:2397 #, fuzzy msgid "Brushes Directories" msgstr "Ecset szerkesztУ" -#: app/preferences_dialog.c:2470 +#: app/preferences_dialog.c:2399 #, fuzzy msgid "Select Brushes Dir" msgstr "Ecset kЖnyvtАr:" -#: app/preferences_dialog.c:2472 +#: app/preferences_dialog.c:2401 #, fuzzy msgid "Generated Brushes" msgstr "Ecset kЖnyvtАr:" -#: app/preferences_dialog.c:2472 +#: app/preferences_dialog.c:2401 #, fuzzy msgid "Generated Brushes Directories" msgstr "Ecset szerkesztУ" -#: app/preferences_dialog.c:2474 +#: app/preferences_dialog.c:2403 #, fuzzy msgid "Select Generated Brushes Dir" msgstr "Ecset kЖnyvtАr:" -#: app/preferences_dialog.c:2476 +#: app/preferences_dialog.c:2405 #, fuzzy msgid "Patterns Directories" msgstr "Minta kЖnyvtАr:" -#: app/preferences_dialog.c:2478 +#: app/preferences_dialog.c:2407 #, fuzzy msgid "Select Patterns Dir" msgstr "Minta kЖnyvtАr:" -#: app/preferences_dialog.c:2480 +#: app/preferences_dialog.c:2409 #, fuzzy msgid "Palettes Directories" msgstr "Paletta beАllМtАsok" -#: app/preferences_dialog.c:2482 +#: app/preferences_dialog.c:2411 #, fuzzy msgid "Select Palettes Dir" msgstr "Paletta tЖrlИse" -#: app/preferences_dialog.c:2484 +#: app/preferences_dialog.c:2413 #, fuzzy msgid "Gradients Directories" msgstr "SzМnАtmenet szerkesztУ" -#: app/preferences_dialog.c:2486 +#: app/preferences_dialog.c:2415 #, fuzzy msgid "Select Gradients Dir" msgstr "SzМnАtmenetek mentИse" -#: app/preferences_dialog.c:2488 +#: app/preferences_dialog.c:2417 #, fuzzy msgid "Plug-Ins" msgstr "KЭlsУ programok" -#: app/preferences_dialog.c:2488 +#: app/preferences_dialog.c:2417 msgid "Plug-Ins Directories" msgstr "" -#: app/preferences_dialog.c:2490 +#: app/preferences_dialog.c:2419 msgid "Select Plug-Ins Dir" msgstr "" -#: app/preferences_dialog.c:2492 +#: app/preferences_dialog.c:2421 #, fuzzy msgid "Modules" msgstr "MСd:" -#: app/preferences_dialog.c:2492 +#: app/preferences_dialog.c:2421 msgid "Modules Directories" msgstr "" -#: app/preferences_dialog.c:2494 +#: app/preferences_dialog.c:2423 #, fuzzy msgid "Select Modules Dir" msgstr "KivАlasztАs mСdja" @@ -5466,72 +5435,72 @@ msgstr "" msgid "Selection: " msgstr "KijelЖlИs" -#: app/resize.c:154 +#: app/resize.c:156 msgid "Scale Layer" msgstr "RИteg skАlАzАsa" -#: app/resize.c:156 app/resize.c:181 app/tool_options.c:774 +#: app/resize.c:158 app/resize.c:183 app/tool_options.c:774 #, fuzzy msgid "Size" msgstr "аtmИretezИs" -#: app/resize.c:160 +#: app/resize.c:162 #, fuzzy msgid "Scale Image" msgstr "KИp kimentИse" -#: app/resize.c:162 +#: app/resize.c:164 #, fuzzy msgid "Pixel Dimensions" msgstr "BУvМtmИnyek" -#: app/resize.c:172 +#: app/resize.c:174 msgid "Set Layer Boundary Size" msgstr "" -#: app/resize.c:177 +#: app/resize.c:179 msgid "Set Canvas Size" msgstr "" #. the original width & height labels -#: app/resize.c:234 app/scale_tool.c:77 +#: app/resize.c:236 app/scale_tool.c:77 #, fuzzy msgid "Original Width:" msgstr "Eredeti szИlessИg: " #. the new size labels -#: app/resize.c:259 app/resize.c:504 +#: app/resize.c:261 app/resize.c:506 #, fuzzy msgid "New Width:" msgstr "зj szИlessИg:" #. the scale ratio labels -#: app/resize.c:324 +#: app/resize.c:326 #, fuzzy msgid "Ratio X:" msgstr "X arАny:" #. the x and y offset labels -#: app/resize.c:409 +#: app/resize.c:411 msgid "X:" msgstr "" -#: app/resize.c:490 +#: app/resize.c:492 msgid "Print Size & Display Unit" msgstr "" -#: app/resize.c:1252 +#: app/resize.c:1254 msgid "Scale Error: Both width and height must be greater than zero." msgstr "" -#: app/resize.c:1334 +#: app/resize.c:1336 msgid "" "The chosen image size will shrink\n" "some layers completely away.\n" "Is this what you want?" msgstr "" -#: app/resize.c:1338 +#: app/resize.c:1340 msgid "Layer Too Small" msgstr "" @@ -5586,7 +5555,7 @@ msgstr "Csavar msgid "Text Tool" msgstr "SzЖveg" -#: app/text_tool.c:162 app/tool_options.c:233 +#: app/text_tool.c:162 app/tool_options.c:232 msgid "Antialiasing" msgstr "аrnyalАs" @@ -5668,114 +5637,114 @@ msgstr "" "A GIMP tipp fАjl nem talАlhatС!\n" "Kell lennie egy olyan fАljnak, amit Зgy hМvnak, hogy " -#: app/tool_options.c:122 +#: app/tool_options.c:121 msgid "This tool has no options." msgstr "" "Ennek az eszkЖznek nincsenek\n" "beАllМtАsi lehetУsИgei." -#: app/tool_options.c:146 +#: app/tool_options.c:145 #, fuzzy msgid "Rectangular Selection" msgstr "SzМn szerinti kijelЖlИs beАllМtАsok" -#: app/tool_options.c:148 +#: app/tool_options.c:147 #, fuzzy msgid "Elliptical Selection" msgstr "BИzier kijelЖlИs beАllМtАsok" -#: app/tool_options.c:150 +#: app/tool_options.c:149 #, fuzzy msgid "Free-Hand Selection" msgstr "BИzier kijelЖlИs beАllМtАsok" -#: app/tool_options.c:152 +#: app/tool_options.c:151 #, fuzzy msgid "Fuzzy Selection" msgstr "Laza kijelЖlИs" -#: app/tool_options.c:154 +#: app/tool_options.c:153 #, fuzzy msgid "Bezier Selection" msgstr "BИzier kijelЖlИs" -#: app/tool_options.c:156 app/tools.c:178 +#: app/tool_options.c:155 app/tools.c:178 msgid "Intelligent Scissors" msgstr "Intelligens ollС" -#: app/tool_options.c:158 +#: app/tool_options.c:157 #, fuzzy msgid "By-Color Selection" msgstr "SzМn szerinti kijelЖlИs" -#: app/tool_options.c:189 +#: app/tool_options.c:188 #, fuzzy msgid "Feather" msgstr "/KijelЖlИs/Elmos" -#: app/tool_options.c:297 +#: app/tool_options.c:296 #, fuzzy msgid "Fixed Size / Aspect Ratio" msgstr "NИzУponti arАnyszАm:" -#: app/tool_options.c:363 +#: app/tool_options.c:362 #, fuzzy msgid "Unit:" msgstr "NИvtelen" -#: app/tool_options.c:448 app/tools.c:376 +#: app/tool_options.c:447 app/tools.c:376 msgid "Bucket Fill" msgstr "KitЖltИs" -#: app/tool_options.c:450 +#: app/tool_options.c:449 #, fuzzy msgid "Blend Tool" msgstr "SzМnАtmenet:" -#: app/tool_options.c:452 app/tools.c:412 +#: app/tool_options.c:451 app/tools.c:412 msgid "Pencil" msgstr "Ceruza" -#: app/tool_options.c:454 app/tools.c:430 +#: app/tool_options.c:453 app/tools.c:430 msgid "Paintbrush" msgstr "Ecset" -#: app/tool_options.c:456 app/tools.c:448 +#: app/tool_options.c:455 app/tools.c:448 msgid "Eraser" msgstr "RadМr" -#: app/tool_options.c:458 app/tools.c:466 +#: app/tool_options.c:457 app/tools.c:466 msgid "Airbrush" msgstr "FestИkszСrС" -#: app/tool_options.c:460 +#: app/tool_options.c:459 #, fuzzy msgid "Clone Tool" msgstr "MАsolС beАllМtАsok" -#: app/tool_options.c:462 +#: app/tool_options.c:461 #, fuzzy msgid "Convolver" msgstr "MАzolАs" -#: app/tool_options.c:464 +#: app/tool_options.c:463 msgid "Ink Tool" msgstr "" -#: app/tool_options.c:466 app/tools.c:538 app/tools.c:544 +#: app/tool_options.c:465 app/tools.c:538 app/tools.c:544 msgid "Dodge or Burn" msgstr "" -#: app/tool_options.c:468 +#: app/tool_options.c:467 #, fuzzy msgid "Smudge Tool" msgstr "KimentИs beАllМtАsok" -#: app/tool_options.c:583 +#: app/tool_options.c:582 msgid "Incremental" msgstr "жsszeadСdС" -#: app/tool_options.c:689 +#: app/tool_options.c:688 #, fuzzy msgid "Pressure Sensitivity" msgstr "FИnyessИg megУrzИse" @@ -6535,6 +6504,107 @@ msgstr "a visszat msgid "Color History" msgstr "SzМnpipetta" +#, fuzzy +#~ msgid "Custom from Editor" +#~ msgstr "egyИni" + +#, fuzzy +#~ msgid "/File/Dialogs" +#~ msgstr "/FАjl/BezАr" + +#, fuzzy +#~ msgid "/File" +#~ msgstr "KitЖltИs tМpusa" + +#, fuzzy +#~ msgid "/Edit" +#~ msgstr "SzerkesztИs" + +#, fuzzy +#~ msgid "/Edit/Buffer" +#~ msgstr "/Szerkeszt/TЖrЖl" + +#, fuzzy +#~ msgid "/Select" +#~ msgstr "/KijelЖlИs/Teljes kИp" + +#, fuzzy +#~ msgid "/View" +#~ msgstr "/NИzet/---" + +#, fuzzy +#~ msgid "/View/Zoom" +#~ msgstr "/NИzet/NagyМt" + +#, fuzzy +#~ msgid "/Image" +#~ msgstr "KИp:" + +#, fuzzy +#~ msgid "/Image/Mode" +#~ msgstr "/KИp/RGB" + +#, fuzzy +#~ msgid "/Image/Colors" +#~ msgstr "/KИp/SzМnek/---" + +#, fuzzy +#~ msgid "/Image/Colors/Auto" +#~ msgstr "/KИp/SzМnek/---" + +#, fuzzy +#~ msgid "/Image/Alpha" +#~ msgstr "/KИp/SkАlАzАs" + +#, fuzzy +#~ msgid "/Image/Transforms" +#~ msgstr "аtalakМtАs" + +#, fuzzy +#~ msgid "/Layers" +#~ msgstr "RИtegek" + +#, fuzzy +#~ msgid "/Layers/Stack" +#~ msgstr "/RИtegek/Feljebb" + +#, fuzzy +#~ msgid "/Tools" +#~ msgstr "/EszkЖzЖk/---" + +#, fuzzy +#~ msgid "/Tools/Select Tools" +#~ msgstr "/EszkЖzЖk/TИglalap kijelЖlИs" + +#, fuzzy +#~ msgid "/Tools/Transform Tools" +#~ msgstr "/EszkЖzЖk/аtalakМtАs" + +#, fuzzy +#~ msgid "/Tools/Paint Tools" +#~ msgstr "/EszkЖzЖk/Ecset" + +#, fuzzy +#~ msgid "/Dialogs" +#~ msgstr "/FАjl/BezАr" + +#, fuzzy +#~ msgid "/Filters" +#~ msgstr "KitЖltИs tМpusa" + +#, fuzzy +#~ msgid "/Stack" +#~ msgstr "/RИtegek/Feljebb" + +#~ msgid "Bytes" +#~ msgstr "B" + +#~ msgid "KiloBytes" +#~ msgstr "kB" + +#~ msgid "MegaBytes" +#~ msgstr "MB" + #, fuzzy #~ msgid "Fill Options" #~ msgstr "KitЖltИs beАllМtАsok" @@ -7488,7 +7558,7 @@ msgstr "Sz #~ msgstr "brightness_contrast_preview(): Nincs image map" #, fuzzy -#~ msgid "\t\tyou quit the GIMP.\n" +#~ msgid "you quit the GIMP.\n" #~ msgstr "A GIMP nИvjegye" #, fuzzy diff --git a/po/it.po b/po/it.po index e4c12715b9..280e270ab1 100644 --- a/po/it.po +++ b/po/it.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: gimp 1.1.17\n" -"POT-Creation-Date: 2000-03-03 17:47-0800\n" +"POT-Creation-Date: 2000-03-14 23:09+0100\n" "PO-Revision-Date: dom feb 6 15:21:10 CET 2000\n" "Last-Translator: Daniele Medri \n" "Language-Team: gimp.linux.it\n" @@ -59,45 +59,45 @@ msgstr "realizzata da" msgid "GIMP Startup" msgstr "Avvio di GIMP" -#: app/app_procs.c:479 app/gimprc.c:432 +#: app/app_procs.c:479 app/gimprc.c:448 #, c-format msgid "parsing \"%s\"\n" msgstr "analisi di \"%s\"\n" #. initialize the xcf file format routines -#: app/app_procs.c:539 +#: app/app_procs.c:541 msgid "Looking for data files" msgstr "Inizializzazione" -#: app/app_procs.c:539 +#: app/app_procs.c:541 msgid "Parasites" msgstr "Parasites" #. initialize the global parasite table -#: app/app_procs.c:541 app/internal_procs.c:71 app/preferences_dialog.c:2468 +#: app/app_procs.c:543 app/internal_procs.c:71 app/preferences_dialog.c:2397 msgid "Brushes" msgstr "Pennelli" #. initialize the list of gimp brushes -#: app/app_procs.c:543 app/internal_procs.c:143 app/preferences_dialog.c:2476 +#: app/app_procs.c:545 app/internal_procs.c:143 app/preferences_dialog.c:2405 msgid "Patterns" msgstr "Pattern" #. initialize the list of gimp patterns -#: app/app_procs.c:545 app/preferences_dialog.c:2480 +#: app/app_procs.c:547 app/preferences_dialog.c:2409 msgid "Palettes" msgstr "Palette" #. initialize the list of gimp palettes -#: app/app_procs.c:547 app/internal_procs.c:113 app/preferences_dialog.c:2484 +#: app/app_procs.c:549 app/internal_procs.c:113 app/preferences_dialog.c:2413 msgid "Gradients" msgstr "Gradienti" -#: app/app_procs.c:735 +#: app/app_procs.c:737 msgid "Really Quit?" msgstr "Desiderate Uscire?" -#: app/app_procs.c:739 +#: app/app_procs.c:741 msgid "" "Some files unsaved.\n" "\n" @@ -107,21 +107,21 @@ msgstr "" "\n" "Uscire da GIMP?" -#: app/app_procs.c:740 app/install.c:272 app/install.c:430 +#: app/app_procs.c:742 msgid "Quit" msgstr "Esci" -#: app/app_procs.c:740 app/brightness_contrast.c:218 app/channel_ops.c:93 +#: app/app_procs.c:742 app/brightness_contrast.c:218 app/channel_ops.c:93 #: app/channels_dialog.c:2463 app/channels_dialog.c:2637 #: app/color_balance.c:275 app/color_notebook.c:125 app/convert.c:506 #: app/curves.c:559 app/file_new_dialog.c:207 app/file_new_dialog.c:357 #: app/gdisplay_color_ui.c:129 app/gdisplay_ops.c:346 app/gimpprogress.c:112 -#: app/global_edit.c:739 app/gradient.c:1769 app/gradient.c:4839 -#: app/gradient.c:5400 app/hue_saturation.c:377 app/interface.c:984 -#: app/layers_dialog.c:3326 app/layers_dialog.c:3517 app/layers_dialog.c:3617 -#: app/layers_dialog.c:3889 app/levels.c:341 app/palette.c:1826 -#: app/posterize.c:201 app/preferences_dialog.c:1469 app/qmask.c:281 -#: app/resize.c:193 app/resize.c:1343 app/threshold.c:275 +#: app/global_edit.c:739 app/gradient.c:1769 app/gradient.c:4841 +#: app/gradient.c:5402 app/hue_saturation.c:377 app/install.c:532 +#: app/interface.c:984 app/layers_dialog.c:3326 app/layers_dialog.c:3517 +#: app/layers_dialog.c:3617 app/layers_dialog.c:3889 app/levels.c:341 +#: app/palette.c:1826 app/posterize.c:201 app/preferences_dialog.c:1434 +#: app/qmask.c:281 app/resize.c:195 app/resize.c:1345 app/threshold.c:275 #: modules/cdisplay_gamma.c:358 msgid "Cancel" msgstr "Cancella" @@ -142,123 +142,124 @@ msgstr "Curve non chiuse!" msgid "Paintbrush operation failed." msgstr "Operazione di Disegno non portata a termine." -#: app/blend.c:272 +#: app/blend.c:294 msgid "Offset:" msgstr "Compensato" -#: app/blend.c:283 +#: app/blend.c:305 msgid "FG to BG (RGB)" msgstr "Primo Piano a Sfondo (RGB)" -#: app/blend.c:284 +#: app/blend.c:306 msgid "FG to BG (HSV)" msgstr "Primo Piano a Sfondo (HSV)" -#: app/blend.c:285 +#: app/blend.c:307 msgid "FG to Transparent" msgstr "Primo Piano a Trasparente" -#: app/blend.c:286 -msgid "Custom from Editor" -msgstr "Personalizzata" +#: app/blend.c:308 +#, fuzzy +msgid "Custom Gradient" +msgstr "Copia Gradiente" -#: app/blend.c:290 +#: app/blend.c:312 msgid "Blend:" msgstr "Unione" -#: app/blend.c:298 app/gradient.c:533 app/preferences_dialog.c:2209 +#: app/blend.c:320 app/gradient.c:533 app/preferences_dialog.c:2137 msgid "Linear" msgstr "Lineare" -#: app/blend.c:299 +#: app/blend.c:321 msgid "Bi-Linear" msgstr "Bi-Lineare" -#: app/blend.c:300 +#: app/blend.c:322 msgid "Radial" msgstr "Radiale" -#: app/blend.c:301 +#: app/blend.c:323 msgid "Square" msgstr "Quadrato" -#: app/blend.c:302 +#: app/blend.c:324 msgid "Conical (symmetric)" msgstr "Conico (simmetrico)" -#: app/blend.c:303 +#: app/blend.c:325 msgid "Conical (asymmetric)" msgstr "Conico (asimmetrico)" -#: app/blend.c:304 +#: app/blend.c:326 msgid "Shapeburst (angular)" msgstr "Shapeburst (angolare)" -#: app/blend.c:305 +#: app/blend.c:327 msgid "Shapeburst (spherical)" msgstr "Shapeburst (sferico)" -#: app/blend.c:306 +#: app/blend.c:328 msgid "Shapeburst (dimpled)" msgstr "Shapeburst (increspato)" -#: app/blend.c:307 +#: app/blend.c:329 msgid "Spiral (clockwise)" msgstr "Spirale (senso orario)" -#: app/blend.c:308 +#: app/blend.c:330 msgid "Spiral (anticlockwise)" msgstr "Spirale (senso antiorario)" -#: app/blend.c:312 +#: app/blend.c:334 msgid "Gradient:" msgstr "Gradiente:" -#: app/blend.c:320 app/preferences_dialog.c:1808 +#: app/blend.c:342 app/preferences_dialog.c:1769 msgid "None" msgstr "Nessuno" -#: app/blend.c:321 +#: app/blend.c:343 msgid "Sawtooth Wave" msgstr "Onde Sawtooth" -#: app/blend.c:322 +#: app/blend.c:344 msgid "Triangular Wave" msgstr "Onde Triangolari" -#: app/blend.c:326 +#: app/blend.c:348 msgid "Repeat:" msgstr "Ripeti" -#: app/blend.c:345 +#: app/blend.c:367 msgid "Adaptive Supersampling" msgstr "Adattivo con supersampling" -#: app/blend.c:373 +#: app/blend.c:395 msgid "Max Depth:" msgstr "Massima definizione:" -#: app/blend.c:386 app/bucket_fill.c:127 app/fuzzy_select.c:657 +#: app/blend.c:408 app/bucket_fill.c:127 app/fuzzy_select.c:661 msgid "Threshold:" msgstr "Soglia:" -#: app/blend.c:413 +#: app/blend.c:435 msgid "Blend: Invalid for indexed images." msgstr "Sfumatura: Invalida per immagini in Scala di Colore" -#: app/blend.c:438 +#: app/blend.c:460 msgid "Blend: 0, 0" msgstr "Unione: 0, 0" -#: app/blend.c:501 +#: app/blend.c:523 msgid "Blend operation failed." msgstr "Operazione di Unione fallita." -#: app/blend.c:507 +#: app/blend.c:529 msgid "Blending..." msgstr "Unione in corso..." -#: app/blend.c:585 app/blend.c:595 +#: app/blend.c:607 app/blend.c:617 msgid "Blend: " msgstr "Unione:" @@ -277,13 +278,13 @@ msgstr "Luminosit #: app/gdisplay_color_ui.c:127 app/gimpui.c:122 app/hue_saturation.c:373 #: app/layers_dialog.c:3324 app/layers_dialog.c:3515 app/layers_dialog.c:3615 #: app/layers_dialog.c:3887 app/levels.c:337 app/module_db.c:281 -#: app/posterize.c:197 app/preferences_dialog.c:1465 app/qmask.c:279 -#: app/resize.c:191 app/resize.c:1343 app/threshold.c:271 +#: app/posterize.c:197 app/preferences_dialog.c:1430 app/qmask.c:279 +#: app/resize.c:193 app/resize.c:1345 app/threshold.c:271 #: modules/cdisplay_gamma.c:351 msgid "OK" msgstr "OK" -#: app/brightness_contrast.c:216 app/by_color_select.c:634 +#: app/brightness_contrast.c:216 app/by_color_select.c:687 #: app/color_balance.c:273 app/curves.c:557 app/file_new_dialog.c:355 #: app/hue_saturation.c:375 app/levels.c:339 app/posterize.c:199 #: app/threshold.c:273 app/tools.c:1086 app/transform_core.c:412 @@ -313,7 +314,7 @@ msgid "Brush Editor" msgstr "Editor dei Pennelli" #. The close button -#: app/brush_edit.c:216 app/brush_select.c:278 app/by_color_select.c:636 +#: app/brush_edit.c:216 app/brush_select.c:278 app/by_color_select.c:689 #: app/color_notebook.c:122 app/color_picker.c:297 app/colormap_dialog.i.c:170 #: app/crop.c:1054 app/devices.c:755 app/docindexif.c:105 #: app/errorconsole.c:281 app/gdisplay_ops.c:346 app/gradient.c:801 @@ -327,7 +328,7 @@ msgid "Close" msgstr "Chiudi" #. the feather radius scale -#: app/brush_edit.c:276 app/color_picker.c:181 app/tool_options.c:200 +#: app/brush_edit.c:276 app/color_picker.c:181 app/tool_options.c:199 msgid "Radius:" msgstr "Raggio:" @@ -357,11 +358,11 @@ msgstr "Aggiorna" msgid "No Brushes available" msgstr "Nessun Pennello disponibile" -#: app/brush_select.c:445 app/layers_dialog.c:372 app/tool_options.c:505 +#: app/brush_select.c:445 app/layers_dialog.c:372 app/tool_options.c:504 msgid "Opacity:" msgstr "OpacitЮ" -#: app/brush_select.c:453 app/layers_dialog.c:324 app/tool_options.c:529 +#: app/brush_select.c:453 app/layers_dialog.c:324 app/tool_options.c:528 msgid "Mode:" msgstr "ModalitЮ:" @@ -395,7 +396,7 @@ msgstr "Ci dispiace, questo pennello non pu msgid "Sorry, this brush can't be deleted." msgstr "Ci dispiace, questo pennello non puР essere cancellato." -#: app/bucket_fill.c:147 app/color_picker.c:156 app/tool_options.c:274 +#: app/bucket_fill.c:147 app/color_picker.c:156 app/tool_options.c:273 msgid "Sample Merged" msgstr "Campiona a video" @@ -425,36 +426,36 @@ msgid "No available patterns for this operation." msgstr "Nessun pattern disponibile per questa operazione." #. The shell and main vbox -#: app/by_color_select.c:629 +#: app/by_color_select.c:682 msgid "By Color Selection" msgstr "Selezione da Colore" -#: app/by_color_select.c:685 +#: app/by_color_select.c:738 msgid "Inactive" msgstr "Inattivo" -#: app/by_color_select.c:693 +#: app/by_color_select.c:746 msgid "Selection Mode" msgstr "ModalitЮ di Selezione" -#: app/by_color_select.c:695 app/paint_funcs.c:100 +#: app/by_color_select.c:748 app/paint_funcs.c:100 msgid "Replace" msgstr "Sostituisci" -#: app/by_color_select.c:697 app/colormap_dialog.i.c:127 +#: app/by_color_select.c:750 app/colormap_dialog.i.c:127 #: app/gdisplay_color_ui.c:114 msgid "Add" msgstr "Aggiungi" -#: app/by_color_select.c:699 app/layers_dialog.c:340 app/tool_options.c:904 +#: app/by_color_select.c:752 app/layers_dialog.c:340 app/tool_options.c:904 msgid "Subtract" msgstr "Sottrai" -#: app/by_color_select.c:701 +#: app/by_color_select.c:754 msgid "Intersect" msgstr "Interseca" -#: app/by_color_select.c:713 +#: app/by_color_select.c:766 msgid "Fuzziness Threshold" msgstr "Soglia fuzzy" @@ -472,7 +473,7 @@ msgstr "%s copia" msgid "Selection Mask" msgstr "Maschera di Selezione" -#: app/channel_ops.c:85 app/resize.c:392 +#: app/channel_ops.c:85 app/resize.c:394 msgid "Offset" msgstr "Sposta" @@ -482,8 +483,8 @@ msgid "Offset X:" msgstr "Sposta X:" #: app/channel_ops.c:115 app/crop.c:1063 app/file_new_dialog.c:530 -#: app/resize.c:330 app/resize.c:415 app/resize.c:573 app/rotate_tool.c:106 -#: app/scale_tool.c:100 app/shear_tool.c:82 +#: app/install.c:1108 app/resize.c:332 app/resize.c:417 app/resize.c:575 +#: app/rotate_tool.c:106 app/scale_tool.c:100 app/shear_tool.c:82 msgid "Y:" msgstr "Y:" @@ -492,12 +493,12 @@ msgstr "Y:" msgid "Wrap Around" msgstr "Avvolgente" -#: app/channel_ops.c:174 app/image_new.c:69 app/image_new.c:223 +#: app/channel_ops.c:174 app/image_new.c:70 app/image_new.c:234 #: app/layers_dialog.c:3422 msgid "Background" msgstr "Sfondo" -#: app/channel_ops.c:175 app/image_new.c:79 app/layers_dialog.c:3424 +#: app/channel_ops.c:175 app/image_new.c:80 app/layers_dialog.c:3424 msgid "Transparent" msgstr "Trasparente" @@ -676,19 +677,19 @@ msgstr "Media di Campionamento" msgid "Update Active Color" msgstr "Aggiorna Colore Attivo" -#: app/color_picker.c:255 app/color_picker.c:265 +#: app/color_picker.c:255 app/color_picker.c:264 msgid "Red:" msgstr "Rosso:" -#: app/color_picker.c:256 app/color_picker.c:266 +#: app/color_picker.c:256 app/color_picker.c:265 msgid "Green:" msgstr "Verde:" -#: app/color_picker.c:257 app/color_picker.c:267 +#: app/color_picker.c:257 app/color_picker.c:266 msgid "Blue:" msgstr "Blu:" -#: app/color_picker.c:258 app/color_picker.c:264 app/color_picker.c:273 +#: app/color_picker.c:258 app/color_picker.c:267 app/color_picker.c:273 msgid "Alpha:" msgstr "Alpha:" @@ -709,13 +710,13 @@ msgstr "esadecimale" msgid "Intensity:" msgstr "IntensitЮ:" -#: app/color_picker.c:633 app/color_picker.c:634 app/color_picker.c:635 -#: app/color_picker.c:636 app/color_picker.c:637 app/color_picker.c:638 -#: app/color_picker.c:639 app/color_picker.c:657 app/color_picker.c:672 -#: app/color_picker.c:690 app/info_window.c:185 app/info_window.c:191 -#: app/info_window.c:197 app/info_window.c:203 app/info_window.c:422 -#: app/info_window.c:423 app/info_window.c:424 app/info_window.c:425 -#: app/info_window.c:447 +#: app/color_picker.c:626 app/color_picker.c:627 app/color_picker.c:628 +#: app/color_picker.c:629 app/color_picker.c:630 app/color_picker.c:631 +#: app/color_picker.c:632 app/color_picker.c:644 app/color_picker.c:651 +#: app/color_picker.c:669 app/color_picker.c:684 app/info_window.c:185 +#: app/info_window.c:191 app/info_window.c:197 app/info_window.c:203 +#: app/info_window.c:422 app/info_window.c:423 app/info_window.c:424 +#: app/info_window.c:425 app/info_window.c:447 msgid "N/A" msgstr "Non disponibile" @@ -913,13 +914,13 @@ msgstr "Origine X:" #. the pixel size labels #: app/crop.c:1076 app/file_new_dialog.c:389 app/file_new_dialog.c:407 -#: app/tool_options.c:334 +#: app/tool_options.c:333 msgid "Width:" msgstr "Larghezza:" #: app/crop.c:1079 app/file_new_dialog.c:395 app/file_new_dialog.c:413 -#: app/layers_dialog.c:3363 app/resize.c:240 app/resize.c:265 app/resize.c:510 -#: app/scale_tool.c:79 app/scale_tool.c:86 app/tool_options.c:350 +#: app/layers_dialog.c:3363 app/resize.c:242 app/resize.c:267 app/resize.c:512 +#: app/scale_tool.c:79 app/scale_tool.c:86 app/tool_options.c:349 msgid "Height:" msgstr "Altezza:" @@ -971,7 +972,7 @@ msgid "Load" msgstr "Carica" #: app/curves.c:704 app/devices.c:753 app/levels.c:608 app/palette.c:2068 -#: app/preferences_dialog.c:357 app/preferences_dialog.c:1467 +#: app/preferences_dialog.c:357 app/preferences_dialog.c:1432 msgid "Save" msgstr "Salva" @@ -1001,7 +1002,7 @@ msgstr "La Desaturazione opera solo su figure con colore RGB." msgid "Device Status" msgstr "Stato dei Dispositivi" -#: app/disp_callbacks.c:755 app/global_edit.c:297 app/global_edit.c:303 +#: app/disp_callbacks.c:760 app/global_edit.c:297 app/global_edit.c:303 #: app/global_edit.c:375 msgid "Pasted Layer" msgstr "Livello Incollato" @@ -1182,17 +1183,17 @@ msgstr "Dimensione Immagine: %s" msgid "New Image" msgstr "Nuova Immagine" -#: app/file_new_dialog.c:453 app/preferences_dialog.c:1540 -#: app/preferences_dialog.c:1577 +#: app/file_new_dialog.c:453 app/install.c:1093 app/preferences_dialog.c:1505 +#: app/preferences_dialog.c:1542 msgid "Pixels" msgstr "Pixel" #. the resolution labels -#: app/file_new_dialog.c:524 app/resize.c:567 +#: app/file_new_dialog.c:524 app/resize.c:569 msgid "Resolution X:" msgstr "Risoluzione X:" -#: app/file_new_dialog.c:545 app/resize.c:588 +#: app/file_new_dialog.c:545 app/resize.c:590 msgid "pixels/%a" msgstr "pixel/%a" @@ -1222,7 +1223,7 @@ msgstr "" msgid "No Selection." msgstr "Nessuna Selezione" -#: app/fileops.c:418 app/fileops.c:1624 app/fileops.c:1731 +#: app/fileops.c:418 app/fileops.c:1629 app/fileops.c:1736 #, c-format msgid "Save failed: %s" msgstr "Salvataggio Fallito: %s" @@ -1247,58 +1248,58 @@ msgstr "Inversione impossibile. Nessun nome file associato all'immagine" msgid "Revert failed." msgstr "Inversione fallita." -#: app/fileops.c:1240 +#: app/fileops.c:1245 msgid "(This thumbnail may be out of date)" msgstr "(Questa miniatura non e' aggiornata)" -#: app/fileops.c:1241 +#: app/fileops.c:1246 msgid "(No Information)" msgstr "(Nessuna Informazione)" -#: app/fileops.c:1251 +#: app/fileops.c:1256 msgid "(Thumbnail saving is disabled)" msgstr "(Salvataggio miniature disabilitato)" -#: app/fileops.c:1255 +#: app/fileops.c:1260 msgid "(Could not write thumbnail file)" msgstr "(Impossibile creare file miniatura)" -#: app/fileops.c:1259 +#: app/fileops.c:1264 msgid "(Thumbnail file not written)" msgstr "(File miniatura non creato)" -#: app/fileops.c:1276 +#: app/fileops.c:1281 msgid "No preview available" msgstr "Anteprima non disponibile" -#: app/fileops.c:1394 +#: app/fileops.c:1399 msgid "(could not make preview)" msgstr "(impossibile creare anteprima)" -#: app/fileops.c:1467 app/fileops.c:1546 +#: app/fileops.c:1472 app/fileops.c:1551 #, c-format msgid "Open failed: %s" msgstr "Apertura Fallita: %s" -#: app/fileops.c:1602 +#: app/fileops.c:1607 #, c-format msgid "%s is an irregular file (%s)" msgstr "%s Х un file irregolare (%s)" -#: app/fileops.c:1670 +#: app/fileops.c:1675 #, c-format msgid "%s exists, overwrite?" msgstr "%s esiste, sovrascrivere?" -#: app/fileops.c:1674 +#: app/fileops.c:1679 msgid "File Exists!" msgstr "File Esistente!" -#: app/fileops.c:1680 +#: app/fileops.c:1685 msgid "Yes" msgstr "Si" -#: app/fileops.c:1682 +#: app/fileops.c:1687 msgid "No" msgstr "No" @@ -1306,13 +1307,13 @@ msgstr "No" msgid "Flip Tool" msgstr "Strumento Riflessione" -#: app/flip_tool.c:95 app/preferences_dialog.c:1591 -#: app/preferences_dialog.c:2355 +#: app/flip_tool.c:95 app/preferences_dialog.c:1556 +#: app/preferences_dialog.c:2284 msgid "Horizontal" msgstr "Orizzontale" -#: app/flip_tool.c:97 app/preferences_dialog.c:1593 -#: app/preferences_dialog.c:2357 +#: app/flip_tool.c:97 app/preferences_dialog.c:1558 +#: app/preferences_dialog.c:2286 msgid "Vertical" msgstr "Verticale" @@ -1338,7 +1339,7 @@ msgstr "" msgid "RGB-empty" msgstr "RGB-vuoto" -#: app/gdisplay.c:217 app/image_new.c:53 app/preferences_dialog.c:1637 +#: app/gdisplay.c:217 app/image_new.c:54 app/preferences_dialog.c:1602 msgid "RGB" msgstr "RGB" @@ -1479,23 +1480,23 @@ msgstr "" msgid "Failed to load pixmap brush." msgstr "Impossibile aprire pennello pixmap." -#: app/gimpdrawable.c:168 +#: app/gimpdrawable.c:166 msgid "Can't fill unknown image type." msgstr "Impossibile riempire tipo di immagine sconosciuto." -#: app/gimpdrawable.c:512 +#: app/gimpdrawable.c:498 msgid "parasite attach to drawable" msgstr "aggiungere parasite alla figura" -#: app/gimpdrawable.c:548 +#: app/gimpdrawable.c:533 msgid "detach parasite from drawable" msgstr "togliere parasite dalla figura" -#: app/gimpdrawable.c:770 +#: app/gimpdrawable.c:740 msgid "unnamed" msgstr "Senza Nome" -#: app/gimpdrawable.c:787 +#: app/gimpdrawable.c:757 #, c-format msgid "Layer type %d not supported." msgstr "Tipo di Livello %d non supportato." @@ -1510,39 +1511,39 @@ msgstr "" "Probabilmente non era stato compilato\n" "perchХ non era installato GtkXmHTML." -#: app/gimpimage.c:1154 +#: app/gimpimage.c:1176 msgid "attach parasite to image" msgstr "attaccate parasite all'immagine" -#: app/gimpimage.c:1177 +#: app/gimpimage.c:1201 msgid "detach parasite from image" msgstr "staccate parasite dall'immagine" -#: app/gimpimage.c:2232 +#: app/gimpimage.c:2305 msgid "Layer cannot be raised any further" msgstr "Il livello non puР essere spostato ulteriormente" -#: app/gimpimage.c:2258 +#: app/gimpimage.c:2333 msgid "Layer cannot be lowered any further" msgstr "Il livello non puР essere spostato ulteriormente" -#: app/gimpimage.c:2282 +#: app/gimpimage.c:2359 msgid "Layer is already on top" msgstr "Livello giЮ in cima" -#: app/gimpimage.c:2288 +#: app/gimpimage.c:2365 msgid "Can't raise Layer without alpha" msgstr "Impossibile alzare Livello senza alpha" -#: app/gimpimage.c:2315 +#: app/gimpimage.c:2393 msgid "Layer is already on bottom" msgstr "Livello giЮ in fondo" -#: app/gimpimage.c:2370 +#: app/gimpimage.c:2448 msgid "BG has no alpha, layer was placed above" msgstr "Lo sfondo non ha alpha, il livello era disposto sopra" -#: app/gimpimage.c:2439 +#: app/gimpimage.c:2519 msgid "" "There are not enough visible layers for a merge.\n" "There must be at least two." @@ -1550,11 +1551,11 @@ msgstr "" "Non ci sono sufficienti livelli visibili da unire.\n" "Ce ne devono essere almeno due." -#: app/gimpimage.c:2519 +#: app/gimpimage.c:2603 msgid "There are not enough visible layers for a merge down." msgstr "Non ci sono abbastanza livelli visibili per una unione." -#: app/gimpimage.c:2915 +#: app/gimpimage.c:3005 msgid "" "Unable to add a layer mask since\n" "the layer already has one." @@ -1562,7 +1563,7 @@ msgstr "" "Impossibile aggiungere una maschera livello finchХ\n" "un livello non ne ha una." -#: app/gimpimage.c:2919 +#: app/gimpimage.c:3009 msgid "" "Unable to add a layer mask to a\n" "layer in an indexed image." @@ -1570,7 +1571,7 @@ msgstr "" "Impossibile aggiungere una maschera livello ad\n" "una immagine in Scala di Colore." -#: app/gimpimage.c:2923 +#: app/gimpimage.c:3013 msgid "" "Cannot add layer mask to a layer\n" "with no alpha channel." @@ -1578,21 +1579,21 @@ msgstr "" "Impossibile aggiungere una maschera livello\n" "ad un livello senza canale alpha." -#: app/gimpimage.c:2930 +#: app/gimpimage.c:3020 msgid "Cannot add layer mask of different dimensions than specified layer." msgstr "" "Impossibile aggiungere maschera livello con dimensioni diverse dal livello " "specificato." -#: app/gimpimage.c:3033 +#: app/gimpimage.c:3127 msgid "Channel cannot be raised any further" msgstr "Il canale non puР essere spostato ulteriormente" -#: app/gimpimage.c:3082 +#: app/gimpimage.c:3178 msgid "Channel cannot be lowered any further" msgstr "Il canale non puР essere spostato ulteriormente" -#: app/gimpimage.c:3288 app/palette.c:364 app/palette.c:941 app/palette.c:1077 +#: app/gimpimage.c:3398 app/palette.c:364 app/palette.c:941 app/palette.c:1077 #: app/palette.c:2022 app/palette.c:2749 app/palette.c:2881 msgid "Untitled" msgstr "Immagine" @@ -1605,45 +1606,45 @@ msgstr "Progresso" msgid "Please wait..." msgstr "Si prega di aspettare..." -#: app/gimprc.c:401 app/plug_in.c:304 +#: app/gimprc.c:415 app/plug_in.c:304 msgid "Resource configuration" msgstr "Configurazione Risorse" -#: app/gimprc.c:451 +#: app/gimprc.c:467 #, c-format msgid "error parsing: \"%s\"\n" msgstr "Errore aprendo il file: %s\n" -#: app/gimprc.c:452 +#: app/gimprc.c:468 #, c-format msgid " at line %d column %d\n" msgstr " alla linea %d colonna %d\n" -#: app/gimprc.c:453 +#: app/gimprc.c:469 #, c-format msgid " unexpected token: %s\n" msgstr " inaspettato: %s\n" -#: app/gimprc.c:1455 +#: app/gimprc.c:1473 msgid "error parsing pluginrc" msgstr "errore analizzando il file di configurazione dei plug-in" -#: app/gimprc.c:2832 +#: app/gimprc.c:2866 #, c-format msgid "Can't open %s; %s" msgstr "Non Х possibile aprire %s; %s" -#: app/gimprc.c:2851 +#: app/gimprc.c:2885 #, c-format msgid "Can't rename %s to %s.old; %s" msgstr "Non Х possibile rinominare %s a %s.old; %s" -#: app/gimprc.c:2857 +#: app/gimprc.c:2891 #, c-format msgid "Couldn't reopen %s\n" msgstr "Non Х possibile riaprire %s\n" -#: app/gimprc.c:2869 +#: app/gimprc.c:2903 #, c-format msgid "Can't write to %s; %s" msgstr "Non Х possibile scrivere su %s; %s" @@ -1676,7 +1677,7 @@ msgstr "Messaggio GIMP" msgid "pixel" msgstr "pixel" -#: app/gimpunit.c:59 app/measure.c:454 app/measure.c:458 app/paint_core.c:498 +#: app/gimpunit.c:59 app/measure.c:454 app/measure.c:458 app/paint_core.c:511 msgid "pixels" msgstr "pixel" @@ -1923,7 +1924,7 @@ msgstr "Posizione attiva: %0.6f" msgid "Distance: %0.6f" msgstr "Distanza: %0.6f" -#: app/gradient.c:3387 app/gradient.c:4448 +#: app/gradient.c:3387 app/gradient.c:4450 msgid "Left endpoint's color" msgstr "Colore punto finale sinistro" @@ -1943,7 +1944,7 @@ msgstr "Punto finale destro" msgid "Save to" msgstr "Salva a" -#: app/gradient.c:3429 app/gradient.c:4526 +#: app/gradient.c:3429 app/gradient.c:4528 msgid "Right endpoint's color" msgstr "Colore punto finale destro" @@ -1971,7 +1972,7 @@ msgstr "Tipo di colorazione per il segmento" msgid "Split segment at midpoint" msgstr "Dividi segmento a metЮ" -#: app/gradient.c:3734 app/gradient.c:4829 +#: app/gradient.c:3734 app/gradient.c:4831 msgid "Split segment uniformly" msgstr "Dividi uniformitЮ segmento" @@ -1991,7 +1992,7 @@ msgstr "Ridistribuzione punti nel segmento" msgid "Flip segment" msgstr "Rifletti segmento" -#: app/gradient.c:3744 app/gradient.c:5390 +#: app/gradient.c:3744 app/gradient.c:5392 msgid "Replicate segment" msgstr "Replica segmento" @@ -2007,7 +2008,7 @@ msgstr "Tipo di colore per la selezione" msgid "Split segments at midpoints" msgstr "Dividi il segmento a metЮ" -#: app/gradient.c:3755 app/gradient.c:4830 +#: app/gradient.c:3755 app/gradient.c:4832 msgid "Split segments uniformly" msgstr "Dividi il segmento uniformemente" @@ -2027,7 +2028,7 @@ msgstr "Ridistribuite " msgid "Flip selection" msgstr "Rifletti la selezione" -#: app/gradient.c:3765 app/gradient.c:5391 +#: app/gradient.c:3765 app/gradient.c:5393 msgid "Replicate selection" msgstr "Replica la selezione" @@ -2040,49 +2041,49 @@ msgstr "Colori Primo Piano" msgid "RGBA (%0.3f, %0.3f, %0.3f, %0.3f)" msgstr "RGBA (%0.3f, %0.3f, %0.3f, %0.3f)" -#: app/gradient.c:4615 app/gradient.c:4685 +#: app/gradient.c:4617 app/gradient.c:4687 msgid "(Varies)" msgstr "(Varie)" -#: app/gradient.c:4837 +#: app/gradient.c:4839 msgid "Split" msgstr "Dividi" #. Instructions -#: app/gradient.c:4851 +#: app/gradient.c:4853 msgid "Please select the number of uniform parts" msgstr "Selezionare il numero di parti uniformi" -#: app/gradient.c:4857 +#: app/gradient.c:4859 msgid "in which you want to split the selected segment" msgstr "che desiderate ottenere dividendo il segmento selezionato" -#: app/gradient.c:4858 +#: app/gradient.c:4860 msgid "in which you want to split the segments in the selection" msgstr "che desiderate ottenere dividento il segmento nella selezione" -#: app/gradient.c:5218 +#: app/gradient.c:5220 msgid "Blend endpoints' colors" msgstr "Sfumatura dei colori agli estremi" -#: app/gradient.c:5230 +#: app/gradient.c:5232 msgid "Blend endpoints' opacity" msgstr "Sfumatura opacitЮ agli estremi" -#: app/gradient.c:5398 +#: app/gradient.c:5400 msgid "Replicate" msgstr "Replica" #. Instructions -#: app/gradient.c:5411 +#: app/gradient.c:5413 msgid "Please select the number of times" msgstr "Selezionare il numero di " -#: app/gradient.c:5416 +#: app/gradient.c:5418 msgid "you want to replicate the selected segment" msgstr "repliche da applicare al segmento selezionato" -#: app/gradient.c:5417 +#: app/gradient.c:5419 msgid "you want to replicate the selection" msgstr "repliche da applicare alla selezione" @@ -2186,45 +2187,45 @@ msgstr "Luminosit msgid "Saturation" msgstr "Saturazione" -#: app/image_new.c:58 app/info_window.c:65 app/info_window.c:534 -#: app/preferences_dialog.c:1638 +#: app/image_new.c:59 app/info_window.c:65 app/info_window.c:534 +#: app/preferences_dialog.c:1603 msgid "Grayscale" msgstr "Scala di grigio" -#: app/image_new.c:64 app/layers_dialog.c:3421 +#: app/image_new.c:65 app/layers_dialog.c:3421 msgid "Foreground" msgstr "Primo Piano" -#: app/image_new.c:74 app/layers_dialog.c:3423 +#: app/image_new.c:75 app/layers_dialog.c:3423 msgid "White" msgstr "Bianco" -#: app/image_new.c:262 +#: app/image_new.c:273 #, c-format msgid "%d Bytes" msgstr "%d Byte" -#: app/image_new.c:264 +#: app/image_new.c:275 #, c-format msgid "%.2f KB" msgstr "%.2f KB" -#: app/image_new.c:266 +#: app/image_new.c:277 #, c-format msgid "%.1f KB" msgstr "%.1f KB" -#: app/image_new.c:268 +#: app/image_new.c:279 #, c-format msgid "%d KB" msgstr "%d KB" -#: app/image_new.c:270 +#: app/image_new.c:281 #, c-format msgid "%.2f MB" msgstr "%.2f MB" -#: app/image_new.c:272 +#: app/image_new.c:283 #, c-format msgid "%.1f MB" msgstr "%.1f MB" @@ -2253,8 +2254,8 @@ msgstr "" "Gradiente attivo.\n" "Cliccare per la finestra di Dialogo." -#: app/info_dialog.c:181 app/preferences_dialog.c:1782 -#: app/preferences_dialog.c:1888 +#: app/info_dialog.c:181 app/preferences_dialog.c:1743 +#: app/preferences_dialog.c:1849 msgid "General" msgstr "Generale" @@ -2386,11 +2387,11 @@ msgstr "Aggiustamento:" msgid "Shape" msgstr "Taglio" -#: app/install.c:83 +#: app/install.c:95 msgid "The GIMP is not properly installed for the current user\n" msgstr "GIMP non Х stato appropriamente installato per l'utente attuale\n" -#: app/install.c:84 +#: app/install.c:96 msgid "" "User installation was skipped because the '--nointerface' flag was " "encountered\n" @@ -2398,402 +2399,524 @@ msgstr "" "L'installazione Utente Х saltata perchХ l'opzione '--nointerface' Х stata " "riscontrata\n" -#: app/install.c:85 +#: app/install.c:97 msgid "" "To perform user installation, run the GIMP without the '--nointerface' flag\n" msgstr "" "Per attuare l'installazione utente, lanciare GIMP senza opzione " "'--nointerface'\n" -#: app/install.c:113 +#: app/install.c:142 +#, fuzzy +msgid "" +"The gimprc is used to store personal preferences\n" +"that affect GIMP's default behavior.\n" +"Paths to search for brushes, palettes, gradients,\n" +"patterns, plug-ins and modules can also configured here." +msgstr "" +"Il file gimprc Х utile per memorizzare le preferenze personali\n" +"come le caratteristiche di GIMP e gli hotkey dei plug-in.\n" +"Percorsi per cercare i pennelli, palette, gradienti,\n" +"pattern, plug-in e moduli sono configurati qui.\n" + +#: app/install.c:149 +msgid "" +"GIMP uses an additional gtkrc file so you can\n" +"configure it to look differently than other GTK apps." +msgstr "" + +#: app/install.c:154 +#, fuzzy +msgid "" +"Plug-ins and extensions are external programs run by\n" +"the GIMP which provide additional functionality.\n" +"These programs are searched for at run-time and\n" +"information about their functionality and mod-times\n" +"is cached in this file. This file is intended to\n" +"be GIMP-readable only, and should not be edited." +msgstr "" +"I plugin e le estensioni sono programmi esterni che\n" +"aggiungono funzionalitЮ a Gimp. Questi programmi sono\n" +"ricercati all'avvio del programma e le relative informazioni\n" +"sulle funzionalitЮ sono memorizzate in questo file. Questo\n" +"file Х destinato alla sola lettura e non deve essere editato.\n" + +#: app/install.c:163 +#, fuzzy +msgid "" +"Key shortcuts can be dynamically redefined in The GIMP.\n" +"The menurc is a dump of your configuration so it can.\n" +"be remembered for the next session. You may edit this\n" +"file if you wish, but it is much easier to define the\n" +"keys from within The GIMP. Deleting this file will\n" +"restore the default shortcuts." +msgstr "" +"I tasti combinazione possono essere dinamicamente definiti\n" +"in GIMP. Il menurc Х una copia delle vostre configurazioni\n" +"per questo puР essere utilizzato la volta successiva. Potete\n" +"editare questo file se preferite, ma Х molto piЫ semplice\n" +"definire le scorciatoie con GIMP. Cancellare questo file\n" +"vorrЮ dire utilizzare le scorciatoie di base.\n" + +#: app/install.c:172 +#, fuzzy +msgid "" +"The sessionrc is used to store what dialog windows were\n" +"open the last time you quit The GIMP. You can configure\n" +"The GIMP to reopen these dialogs at the saved position." +msgstr "" +"Il file sessionrc Х utilizzato per memorizzare quali finestre\n" +"di dialogo erano aperte l'ultima volta prima di uscire da GIMP.\n" +"Potete configurare GIMP per riaprire queste finestre nella stessa\n" +"posizione.\n" + +#: app/install.c:178 +#, fuzzy +msgid "" +"The unitrc is used to store your user units database.\n" +"You can define additional units and use them just\n" +"like you use the built-in units inches, millimeters,\n" +"points and picas. This file is overwritten each time\n" +"you quit the GIMP." +msgstr "" +"Il file unitrc Х utilizzato per memorizzare il database delle unitЮ\n" +"di misura utente. Potete definire ulteriori unintЮ da utilizzare\n" +"come le unitЮ basilari integrate. Questo file viene sovrascritto\n" +"ogni volta che uscite da GIMP.\n" + +#: app/install.c:186 +#, fuzzy +msgid "" +"This is a subdirectory which can be used to store\n" +"user defined brushes. The default gimprc file\n" +"checks this subdirectory in addition to the system-\n" +"wide gimp brushes installation when searching for\n" +"brushes." +msgstr "" +"Questa Х una sottodirectory utile per tenere\n" +"i pennelli definiti dall'utente. Il file di base gimprc\n" +"controlla questa directory oltre a quelle di sistema\n" +"dove sono disposti i pennelli base presenti con la comune\n" +"installazione di gimp.\n" + +#: app/install.c:194 +#, fuzzy +msgid "" +"This is a subdirectory which is used to store brushes\n" +"that are created with the brush editor. The default\n" +"gimprc file checks this subdirectory when searching for\n" +"generated brushes." +msgstr "" +"Questa Х una sottodirectory utile per tenere\n" +"i pennelli definiti dall'utente. Il file di base gimprc\n" +"controlla questa directory oltre a quelle di sistema\n" +"dove sono disposti i pennelli base presenti con la comune\n" +"installazione di gimp.\n" + +#: app/install.c:201 +#, fuzzy +msgid "" +"This is a subdirectory which can be used to store\n" +"user defined gradients. The default gimprc file\n" +"checks this subdirectory in addition to the system-\n" +"wide gimp gradients installation when searching for\n" +"gradients." +msgstr "" +"Questa Х una sottodirectory utile per tenere\n" +"i gradienti definiti dall'utente. Il file di base gimprc\n" +"controlla questa directory oltre a quelle di sistema\n" +"dove sono disposti i gradienti base presenti con la comune\n" +"installazione di gimp.\n" + +#: app/install.c:209 +#, fuzzy +msgid "" +"This is a subdirectory which can be used to store\n" +"user defined palettes. The default gimprc file\n" +"checks only this subdirectory (not the system-wide\n" +"installation) when searching for palettes. During\n" +"installation, the system palettes will be copied\n" +"here. This is done to allow modifications made to\n" +"palettes during GIMP execution to persist across\n" +"sessions." +msgstr "" +"Questa Х una sottodirectory utile per tenere\n" +"le palette definite dall'utente. Il file di base gimprc\n" +"controlla questa directory oltre a quelle di sistema\n" +"dove sono disposti le palette basilari presenti con la comune\n" +"installazione di gimp. Questa funzionalitЮ serve ad utilizzare\n" +"le palette durante l'esecuzione di GIMP.\n" + +#: app/install.c:220 +#, fuzzy +msgid "" +"This is a subdirectory which can be used to store\n" +"user defined patterns. The default gimprc file\n" +"checks this subdirectory in addition to the system-\n" +"wide gimp patterns installation when searching for\n" +"patterns." +msgstr "" +"Questa Х una sottodirectory utile per tenere\n" +"i pattern definiti dall'utente. Il file di base gimprc\n" +"controlla questa directory oltre a quelle di sistema\n" +"dove sono disposti i pattern base presenti con la comune\n" +"installazione di gimp.\n" + +#: app/install.c:228 +#, fuzzy +msgid "" +"This is a subdirectory which can be used to store\n" +"user created, temporary, or otherwise non-system-\n" +"supported plug-ins. The default gimprc file\n" +"checks this subdirectory in addition to the system-\n" +"wide GIMP plug-in directories when searching for\n" +"plug-ins." +msgstr "" +"Questa Х una sottodirectory utile per tenere\n" +"i Plug-in definiti dall'utente. Il file di base gimprc\n" +"controlla questa directory oltre a quelle di sistema\n" +"dove sono disposti i Plug-in base presenti con la comune\n" +"installazione di gimp.\n" + +#: app/install.c:237 +#, fuzzy +msgid "" +"This subdirectory can be used to store user created,\n" +"temporary, or otherwise non-system-supported DLL modules.\n" +"The default gimprc file checks this subdirectory\n" +"in addition to the system-wide GIMP module directory\n" +"when searching for modules to load when initializing." +msgstr "" +"Questa sottodirectory puР essere utilizzata per tenere\n" +"file utente o altri moduli non di sistema.\n" +"Il file di base gimprc controlla questa sottodirectory\n" +"oltre a quelle di sistema dove sono riposti di moduli base\n" +"presenti con la comune installazione di Gimp.\n" + +#: app/install.c:245 +#, fuzzy +msgid "" +"This subdirectory is used by the GIMP to store \n" +"user created and installed scripts. The default gimprc\n" +"file checks this subdirectory in addition to the system-\n" +"wide gimp scripts subdirectory when searching for scripts" +msgstr "" +"Questa directory viene utilizzata da Gimp per tenere \n" +"gli script creati ed installati dagli utenti. Il file di base gimprc\n" +"controlla in questa sottodirectory oltre a quelle di sistema\n" +"dove sono gli script basilari.\n" + +#: app/install.c:252 +#, fuzzy +msgid "" +"This subdirectory is used by the GIMP to temporarily\n" +"store undo buffers to reduce memory usage. If GIMP is\n" +"unceremoniously killed, files may persist in this directory\n" +"of the form: gimp<#>.<#>. These files are useless across\n" +"GIMP sessions and can be destroyed with impunity." +msgstr "" +"Questa sottodirectory Х utilizzata da GIMP per tenere temporaneamente\n" +"lo storico comandi e ridurre l'utilizzo della memoria. Se GIMP Х\n" +"interrotto improvvisamente, i file rimarranno in questa directory\n" +"nella forma: gimp<#>.<#>. Questi file sono utili durante\n" +"la sessione di GIMP e possono essere distrutti senza impunitЮ.\n" + +#: app/install.c:260 +msgid "" +"This subdirectory is used to store parameter files for\n" +"the Curves tool." +msgstr "" + +#: app/install.c:265 +msgid "" +"This subdirectory is used to store parameter files for\n" +"the Levels tool." +msgstr "" + +#: app/install.c:270 +#, fuzzy +msgid "" +"This is a subdirectory which can be used to store\n" +"user defined fractals to be used by the FractalExplorer\n" +"plug-in. The default gimprc file checks this subdirectory in\n" +"addition to the systemwide gimp FractalExplorer installation\n" +"when searching for fractals." +msgstr "" +"Questa Х una sottodirectory utile per tenere\n" +"i frattali da utilizzare con il plug-in FractalExplorer.\n" +"Il file di base gimprc controlla questa directory oltre a quelle\n" +"di sistema.\n" + +#: app/install.c:278 +#, fuzzy +msgid "" +"This is a subdirectory which can be used to store\n" +"user defined figures to be used by the gfig plug-in.\n" +"The default gimprc file checks this subdirectory in\n" +"addition to the systemwide gimp gfig installation\n" +"when searching for gfig figures." +msgstr "" +"Questa Х una sottodirectory utilizzata per memorizzare\n" +"figure definite da utilizzare con gfig. Il file gimprc\n" +"ricerca in questa sottodirectory oltre alla directory di\n" +"sistema per ulteriori figure da utilizzare.\n" + +#: app/install.c:286 +#, fuzzy +msgid "" +"This is a subdirectory which can be used to store\n" +"user defined gflares to be used by the gflare plug-in.\n" +"The default gimprc file checks this subdirectory in\n" +"addition to the systemwide gimp gflares installation\n" +"when searching for gflares." +msgstr "" +"Questa Х una sottodirectory utile per tenere\n" +"gli gflares definiti dall'utente. Il file di base gimprc\n" +"controlla questa directory oltre a quelle di sistema\n" +"dove sono disposti i gflares base presenti con la comune\n" +"installazione di gimp.\n" + +#: app/install.c:294 +#, fuzzy +msgid "" +"This is a subdirectory which can be used to store\n" +"user defined data to be used by the Gimpressionist\n" +"plug-in. The default gimprc file checks this subdirectory in\n" +"addition to the systemwide gimp Gimpressionist installation\n" +"when searching for data." +msgstr "" +"Questa Х una sottodirectory utile per tenere\n" +"gli gflares definiti dall'utente. Il file di base gimprc\n" +"controlla questa directory oltre a quelle di sistema\n" +"dove sono disposti i gflares base presenti con la comune\n" +"installazione di gimp.\n" + +#: app/install.c:525 +#, fuzzy +msgid "GIMP User Installation" +msgstr "GIMP Installazione" + +#: app/install.c:530 +msgid "Continue" +msgstr "Continua" + +#. this is a fontset, e.g. multiple comma-separated font definitions +#: app/install.c:560 +#, fuzzy +msgid "-*-helvetica-bold-r-normal-*-*-240-*-*-*-*-*-*,*" +msgstr "-*-helvetica-bold-r-normal-*-*-120-*-*-*-*-*-*,*" + +#: app/install.c:578 +#, fuzzy +msgid "" +"Welcome to\n" +"The GIMP User Installation" +msgstr "GIMP Installazione" + +#: app/install.c:582 msgid "" "The GIMP - GNU Image Manipulation Program\n" -"\n" +"Copyright (C) 1995-2000\n" +"Spencer Kimball, Peter Mattis and the GIMP Development Team." msgstr "" -"The GIMP - GNU Image Manipulation Program\n" -"\n" -#: app/install.c:118 +#: app/install.c:591 +#, fuzzy msgid "" "This program is free software; you can redistribute it and/or modify\n" "it under the terms of the GNU General Public License as published by\n" "the Free Software Foundation; either version 2 of the License, or\n" -"(at your option) any later version.\n" +"(at your option) any later version." msgstr "" "Questo programma Х free software; potete ridistribuirlo e/o modificarlo\n" "sotto le condizioni della GNU General Public License pubblicata dalla\n" "Free Software Foundation; sia la versione 2 della Licenza, o\n" "ogni successiva versione.\n" -#: app/install.c:123 +#: app/install.c:596 +#, fuzzy msgid "" "This program is distributed in the hope that it will be useful,\n" "but WITHOUT ANY WARRANTY; without even the implied warranty of\n" "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n" -"See the GNU General Public License for more details.\n" +"See the GNU General Public License for more details." msgstr "" "Questo programma Х distribuito con la speranza che possa essere utile,\n" "ma SENZA NESSUNA GARANZIA; senza le garanzie implicate nella\n" "DISTRIBUZIONE o SCOPI PARTICOLARI.\n" "Fate riferimento alla GNU General Public License per maggiori dettagli.\n" -#: app/install.c:128 +#: app/install.c:601 +#, fuzzy msgid "" "You should have received a copy of the GNU General Public License\n" "along with this program; if not, write to the Free Software\n" "Foundation, Inc., 59 Temple Place - Suite 330, Boston,\n" -"MA 02111-1307, USA.\n" +"MA 02111-1307, USA." msgstr "" "Dovreste aver ricevuto una copia della GNU General Public License\n" "con questo programma; in caso contrario scrivere alla Free Software\n" "Foundation, Inc., 59 Temple Place - Suite 330, Boston,\n" "MA 02111-1307, USA.\n" -#: app/install.c:134 -msgid "" -"Personal GIMP Installation\n" -"\n" +#: app/install.c:607 +msgid "Click \"Continue\" to enter the GIMP user installation." +msgstr "" + +#: app/install.c:633 +#, fuzzy +msgid "Personal GIMP Directory" msgstr "Installazione personale di GIMP\n" -#: app/install.c:135 -msgid "For a proper GIMP installation, a subdirectory called\n" -msgstr "" -"Per una appropriata installazione di GIMP, una sottodirectory chiamata\n" - -#. will be replaced with gimp_directory() -#: app/install.c:137 +#: app/install.c:650 +#, fuzzy msgid "" -" needs to be created. This\n" -"subdirectory will contain a number of important files:\n" -"\n" +"For a proper GIMP installation, a subdirectory needs to be created.\n" +"This subdirectory will contain a number of important files." msgstr "" " deve essere creata. Questa\n" "sottodirectory conterrЮ un numero di file importanti:\n" "\n" -#: app/install.c:141 +#: app/install.c:653 msgid "" -"\t\tThe gimprc is used to store personal preferences\n" -"\t\tthat affect GIMP's default behavior.\n" -"\t\tPaths to search for brushes, palettes, gradients,\n" -"\t\tpatterns, plug-ins and modules can also configured here.\n" +"Click on one of the files or subdirectories in the tree\n" +"to get more information about the selected item." msgstr "" -"\t\tIl file gimprc Х utile per memorizzare le preferenze personali\n" -"\t\tcome le caratteristiche di GIMP e gli hotkey dei plug-in.\n" -"\t\tPercorsi per cercare i pennelli, palette, gradienti,\n" -"\t\tpattern, plug-in e moduli sono configurati qui.\n" -#: app/install.c:147 -msgid "" -"\t\tPlug-ins and extensions are external programs run by\n" -"\t\tthe GIMP which provide additional functionality.\n" -"\t\tThese programs are searched for at run-time and\n" -"\t\tinformation about their functionality and mod-times\n" -"\t\tis cached in this file. This file is intended to\n" -"\t\tbe GIMP-readable only, and should not be edited.\n" +#: app/install.c:656 +msgid "Click \"Continue\" to create your personal GIMP directory." msgstr "" -"\t\tI plugin e le estensioni sono programmi esterni che\n" -"\t\taggiungono funzionalitЮ a Gimp. Questi programmi sono\n" -"\t\tricercati all'avvio del programma e le relative informazioni\n" -"\t\tsulle funzionalitЮ sono memorizzate in questo file. Questo\n" -"\t\tfile Х destinato alla sola lettura e non deve essere editato.\n" -#: app/install.c:155 -msgid "" -"\t\tKey shortcuts can be dynamically redefined in The GIMP.\n" -"\t\tThe menurc is a dump of your configuration so it can.\n" -"\t\tbe remembered for the next session. You may edit this\n" -"\t\tfile if you wish, but it is much easier to define the\n" -"\t\tkeys from within The GIMP. Deleting this file will\n" -"\t\trestore the default shortcuts.\n" -msgstr "" -"\t\tI tasti combinazione possono essere dinamicamente definiti\n" -"\t\tin GIMP. Il menurc Х una copia delle vostre configurazioni\n" -"\t\tper questo puР essere utilizzato la volta successiva. Potete\n" -"\t\teditare questo file se preferite, ma Х molto piЫ semplice\n" -"\t\tdefinire le scorciatoie con GIMP. Cancellare questo file\n" -"\t\tvorrЮ dire utilizzare le scorciatoie di base.\n" - -#: app/install.c:163 -msgid "" -"\t\tThe sessionrc is used to store what dialog windows were\n" -"\t\topen the last time you quit The GIMP. You can configure\n" -"\t\tThe GIMP to reopen these dialogs at the saved position.\n" -msgstr "" -"\t\tIl file sessionrc Х utilizzato per memorizzare quali finestre\n" -"\t\tdi dialogo erano aperte l'ultima volta prima di uscire da GIMP.\n" -"\t\tPotete configurare GIMP per riaprire queste finestre nella stessa\n" -"\t\tposizione.\n" - -#: app/install.c:168 -msgid "" -"\t\tThe unitrc is used to store your user units database.\n" -"\t\tYou can define additional units and use them just\n" -"\t\tlike you use the built-in units inches, millimeters,\n" -"\t\tpoints and picas. This file is overwritten each time\n" -"\t\tyou quit the GIMP.\n" -msgstr "" -"\t\tIl file unitrc Х utilizzato per memorizzare il database delle unitЮ\n" -"\t\tdi misura utente. Potete definire ulteriori unintЮ da utilizzare\n" -"\t\tcome le unitЮ basilari integrate. Questo file viene sovrascritto\n" -"\t\togni volta che uscite da GIMP.\n" - -#: app/install.c:175 -msgid "" -"\t\tThis is a subdirectory which can be used to store\n" -"\t\tuser defined brushes. The default gimprc file\n" -"\t\tchecks this subdirectory in addition to the system-\n" -"\t\twide gimp brushes installation when searching for\n" -"\t\tbrushes.\n" -msgstr "" -"\t\tQuesta Х una sottodirectory utile per tenere\n" -"\t\ti pennelli definiti dall'utente. Il file di base gimprc\n" -"\t\tcontrolla questa directory oltre a quelle di sistema\n" -"\t\tdove sono disposti i pennelli base presenti con la comune\n" -"\t\tinstallazione di gimp.\n" - -#: app/install.c:182 -msgid "" -"\t\tThis is a subdirectory which is used to store brushes\n" -"\t\tthat are created with the brush editor. The default\n" -"\t\tgimprc file checks this subdirectory when searching for\n" -"\t\tgenerated brushes.\n" -msgstr "" -"\t\tQuesta Х una sottodirectory utile per tenere\n" -"\t\ti pennelli definiti dall'utente. Il file di base gimprc\n" -"\t\tcontrolla questa directory oltre a quelle di sistema\n" -"\t\tdove sono disposti i pennelli base presenti con la comune\n" -"\t\tinstallazione di gimp.\n" - -#: app/install.c:188 -msgid "" -"\t\tThis is a subdirectory which can be used to store\n" -"\t\tuser defined gradients. The default gimprc file\n" -"\t\tchecks this subdirectory in addition to the system-\n" -"\t\twide gimp gradients installation when searching for\n" -"\t\tgradients.\n" -msgstr "" -"\t\tQuesta Х una sottodirectory utile per tenere\n" -"\t\ti gradienti definiti dall'utente. Il file di base gimprc\n" -"\t\tcontrolla questa directory oltre a quelle di sistema\n" -"\t\tdove sono disposti i gradienti base presenti con la comune\n" -"\t\tinstallazione di gimp.\n" - -#: app/install.c:195 -msgid "" -"\t\tThis is a subdirectory which can be used to store\n" -"\t\tuser defined figures to be used by the gfig plug-in.\n" -"\t\tThe default gimprc file checks this subdirectory in\n" -"\t\taddition to the systemwide gimp gfig installation\n" -"\t\twhen searching for gfig figures.\n" -msgstr "" -"\t\tQuesta Х una sottodirectory utilizzata per memorizzare\n" -"\t\tfigure definite da utilizzare con gfig. Il file gimprc\n" -"\t\tricerca in questa sottodirectory oltre alla directory di\n" -"\t\tsistema per ulteriori figure da utilizzare.\n" - -#: app/install.c:202 -msgid "" -"\t\tThis is a subdirectory which can be used to store\n" -"\t\tuser defined gflares to be used by the gflare plug-in.\n" -"\t\tThe default gimprc file checks this subdirectory in\n" -"\t\taddition to the systemwide gimp gflares installation\n" -"\t\twhen searching for gflares.\n" -msgstr "" -"\t\tQuesta Х una sottodirectory utile per tenere\n" -"\t\tgli gflares definiti dall'utente. Il file di base gimprc\n" -"\t\tcontrolla questa directory oltre a quelle di sistema\n" -"\t\tdove sono disposti i gflares base presenti con la comune\n" -"\t\tinstallazione di gimp.\n" - -#: app/install.c:209 -msgid "" -"\t\tThis is a subdirectory which can be used to store\n" -"\t\tuser defined fractals to be used by the FractalExplorer\n" -"\t\tplug-in. The default gimprc file checks this subdirectory in\n" -"\t\taddition to the systemwide gimp FractalExplorer installation\n" -"\t\twhen searching for fractals.\n" -msgstr "" -"\t\tQuesta Х una sottodirectory utile per tenere\n" -"\t\ti frattali da utilizzare con il plug-in FractalExplorer.\n" -"\t\tIl file di base gimprc controlla questa directory oltre a quelle\n" -"\t\tdi sistema.\n" - -#: app/install.c:216 -msgid "" -"\t\tThis is a subdirectory which can be used to store\n" -"\t\tuser defined palettes. The default gimprc file\n" -"\t\tchecks only this subdirectory (not the system-wide\n" -"\t\tinstallation) when searching for palettes. During\n" -"\t\tinstallation, the system palettes will be copied\n" -"\t\there. This is done to allow modifications made to\n" -"\t\tpalettes during GIMP execution to persist across\n" -"\t\tsessions.\n" -msgstr "" -"\t\tQuesta Х una sottodirectory utile per tenere\n" -"\t\tle palette definite dall'utente. Il file di base gimprc\n" -"\t\tcontrolla questa directory oltre a quelle di sistema\n" -"\t\tdove sono disposti le palette basilari presenti con la comune\n" -"\t\tinstallazione di gimp. Questa funzionalitЮ serve ad utilizzare\n" -"\t\tle palette durante l'esecuzione di GIMP.\n" - -#: app/install.c:226 -msgid "" -"\t\tThis is a subdirectory which can be used to store\n" -"\t\tuser defined patterns. The default gimprc file\n" -"\t\tchecks this subdirectory in addition to the system-\n" -"\t\twide gimp patterns installation when searching for\n" -"\t\tpatterns.\n" -msgstr "" -"\t\tQuesta Х una sottodirectory utile per tenere\n" -"\t\ti pattern definiti dall'utente. Il file di base gimprc\n" -"\t\tcontrolla questa directory oltre a quelle di sistema\n" -"\t\tdove sono disposti i pattern base presenti con la comune\n" -"\t\tinstallazione di gimp.\n" - -#: app/install.c:233 -msgid "" -"\t\tThis is a subdirectory which can be used to store\n" -"\t\tuser created, temporary, or otherwise non-system-\n" -"\t\tsupported plug-ins. The default gimprc file\n" -"\t\tchecks this subdirectory in addition to the system-\n" -"\t\twide GIMP plug-in directories when searching for\n" -"\t\tplug-ins.\n" -msgstr "" -"\t\tQuesta Х una sottodirectory utile per tenere\n" -"\t\ti Plug-in definiti dall'utente. Il file di base gimprc\n" -"\t\tcontrolla questa directory oltre a quelle di sistema\n" -"\t\tdove sono disposti i Plug-in base presenti con la comune\n" -"\t\tinstallazione di gimp.\n" - -#: app/install.c:241 -msgid "" -"\t\tThis subdirectory can be used to store user created,\n" -"\t\ttemporary, or otherwise non-system-supported DLL modules.\n" -"\t\tThe default gimprc file checks this subdirectory\n" -"\t\tin addition to the system-wide GIMP module directory\n" -"\t\twhen searching for modules to load when initializing.\n" -msgstr "" -"\t\tQuesta sottodirectory puР essere utilizzata per tenere\n" -"\t\tfile utente o altri moduli non di sistema.\n" -"\t\tIl file di base gimprc controlla questa sottodirectory\n" -"\t\toltre a quelle di sistema dove sono riposti di moduli base\n" -"\t\tpresenti con la comune installazione di Gimp.\n" - -#: app/install.c:248 -msgid "" -"\t\tThis subdirectory is used by the GIMP to store \n" -"\t\tuser created and installed scripts. The default gimprc\n" -"\t\tfile checks this subdirectory in addition to the system\n" -"\t\t-wide gimp scripts subdirectory when searching for scripts\n" -msgstr "" -"\t\tQuesta directory viene utilizzata da Gimp per tenere \n" -"\t\tgli script creati ed installati dagli utenti. Il file di base gimprc\n" -"\t\tcontrolla in questa sottodirectory oltre a quelle di sistema\n" -"\t\tdove sono gli script basilari.\n" - -#: app/install.c:254 -msgid "" -"\t\tThis subdirectory is used by the GIMP to temporarily\n" -"\t\tstore undo buffers to reduce memory usage. If GIMP is\n" -"\t\tunceremoniously killed, files may persist in this directory\n" -"\t\tof the form: gimp<#>.<#>. These files are useless across\n" -"\t\tGIMP sessions and can be destroyed with impunity.\n" -msgstr "" -"\t\tQuesta sottodirectory Х utilizzata da GIMP per tenere temporaneamente\n" -"\t\tlo storico comandi e ridurre l'utilizzo della memoria. Se GIMP Х\n" -"\t\tinterrotto improvvisamente, i file rimarranno in questa directory\n" -"\t\tnella forma: gimp<#>.<#>. Questi file sono utili durante\n" -"\t\tla sessione di GIMP e possono essere distrutti senza impunitЮ.\n" - -#: app/install.c:263 -msgid "GIMP Installation" -msgstr "GIMP Installazione" - -#: app/install.c:268 -msgid "Install" -msgstr "Installa" - -#: app/install.c:270 -msgid "Ignore" -msgstr "Ignora" - -#. this is a fontset, e.g. multiple comma-separated font definitions -#: app/install.c:295 app/install.c:453 -msgid "-*-helvetica-bold-r-normal-*-*-120-*-*-*-*-*-*,*" -msgstr "-*-helvetica-bold-r-normal-*-*-120-*-*-*-*-*-*,*" - -#. this is a font, provide only one single font definition -#: app/install.c:298 -msgid "-*-helvetica-medium-o-normal-*-*-100-*-*-*-*-*-*" -msgstr "-*-helvetica-medium-o-normal-*-*-100-*-*-*-*-*-*" - -#. this is a fontset, e.g. multiple comma-separated font definitions -#: app/install.c:301 -msgid "-*-helvetica-medium-r-normal-*-*-100-*-*-*-*-*-*,*" -msgstr "-*-helvetica-medium-r-normal-*-*-100-*-*-*-*-*-*,*" - -#: app/install.c:423 -msgid "Installation Log" -msgstr "Log di Installazione" - -#: app/install.c:428 -msgid "Continue" -msgstr "Continua" - -#. this is a fontset, e.g. multiple comma-separated font definitions -#: app/install.c:456 -msgid "-*-helvetica-medium-r-normal-*-*-120-*-*-*-*-*-*,*" -msgstr "-*-helvetica-medium-r-normal-*-*-120-*-*-*-*-*-*,*" - -#: app/install.c:462 -msgid "" -"User Installation Log\n" -"\n" +#: app/install.c:736 +#, fuzzy +msgid "User Installation Log" msgstr "" "Log di Installazione Utente\n" "\n" -#: app/install.c:472 -msgid " does not exist. Cannot install.\n" +#: app/install.c:741 +msgid "GIMP Performance Tuning" +msgstr "" + +#: app/install.c:744 +msgid "For optimal GIMP performance, some settings may have to be adjusted." +msgstr "" + +#: app/install.c:751 +msgid "Click \"Continue\" to accept the settings above." +msgstr "" + +#: app/install.c:760 +#, fuzzy +msgid "Monitor Resolution" +msgstr "Risoluzione Monitor" + +#: app/install.c:763 +msgid "" +"To display images in their natural size, GIMP needs to know your monitor " +"resolution." +msgstr "" + +#: app/install.c:771 +msgid "Click \"Continue\" to start The GIMP." +msgstr "" + +#: app/install.c:845 +#, fuzzy +msgid "does not exist. Cannot install." msgstr " non esistente. Non Х possibile portare a termine l'installazione.\n" -#: app/install.c:480 -msgid "" -" has invalid permissions.\n" -"Cannot install." +#: app/install.c:857 +#, fuzzy +msgid "has invalid permissions. Cannot install." msgstr "" " ha permessi invalidi.\n" "Non Х possibile portare a termine l'installazione." -#: app/install.c:514 +#: app/install.c:895 +#, fuzzy msgid "" -"Did you notice any error messages\n" -"in the console window? If not, installation\n" -"was successful! Otherwise, quit and investigate\n" -"the possible reason...\n" +"Did you notice any error messages in the console window?\n" +"If not, installation was successful!\n" +"Otherwise, quit and investigate the possible reason..." msgstr "" "Avete riscontrato messaggi di errore\n" "nella finestra di console? In caso negativo\n" "l'installazione Х avvenuta con successo! In caso\n" "contrario uscite e cercate le possibili ragioni...\n" -#: app/install.c:546 +#: app/install.c:955 +#, fuzzy msgid "" -"\n" -"Installation successful!\n" +"Did you notice any error messages in the lines above?\n" +"If not, installation was successful!\n" +"Otherwise, quit and investigate the possible reason..." msgstr "" -"\n" -"Installazione Completata!\n" +"Avete riscontrato messaggi di errore\n" +"nella finestra di console? In caso negativo\n" +"l'installazione Х avvenuta con successo! In caso\n" +"contrario uscite e cercate le possibili ragioni...\n" -#: app/install.c:555 -msgid "" -"\n" -"Installation failed. Contact system administrator.\n" +#: app/install.c:969 +msgid "Click \"Continue\" to complete GIMP installation." +msgstr "" + +#: app/install.c:978 +#, fuzzy +msgid "Installation failed. Contact system administrator." msgstr "" "\n" "Installazione fallita. Contattare l'amministratore di sistema.\n" +#: app/install.c:999 +msgid "" +"GIMP uses a limited amount of memory to store image data, the so-called\n" +"\"Tile Cache\". You should adjust it's size to fit into memory. Consider\n" +"the amount of memory used by other running processes." +msgstr "" + +#: app/install.c:1015 app/preferences_dialog.c:2102 +msgid "Tile Cache Size:" +msgstr "Dimensione Cache:" + +#: app/install.c:1025 +msgid "" +"All image and undo data which doesn't fit into the Tile Cache will be\n" +"written to a swap file. This file should be located on a local filesystem\n" +"with enough free space (several hundred MB). On a UNIX system, you\n" +"may want to use the system-wide temp-dir (\"/tmp\" or \"/var/tmp\")." +msgstr "" + +#: app/install.c:1035 app/preferences_dialog.c:2361 +msgid "Select Swap Dir" +msgstr "Seleziona directory di Swap" + +#: app/install.c:1041 +#, fuzzy +msgid "Swap Directory:" +msgstr "Directory di Swap" + +#: app/install.c:1063 +msgid "" +"GIMP can obtain this information from your X-server.\n" +"However, most X-servers do not return useful values." +msgstr "" + +#: app/install.c:1070 +#, fuzzy, c-format +msgid "Get Resolution from X-server (Currently %d x %d dpi)" +msgstr "(Corrente %d x %d dpi" + +#: app/install.c:1087 +msgid "Alternatively, you can set the monitor resolution manually." +msgstr "" + +#: app/install.c:1102 +#, fuzzy +msgid "Monitor Resolution X:" +msgstr "Risoluzione Monitor" + #: app/interface.c:312 msgid "" "Foreground & background colors. The black and white squares reset colors. " @@ -2869,8 +2992,8 @@ msgstr "Gradiente UI" msgid "Guide procedures" msgstr "Procedure Guida" -#: app/internal_procs.c:122 app/preferences_dialog.c:1772 -#: app/preferences_dialog.c:1774 +#: app/internal_procs.c:122 app/preferences_dialog.c:1733 +#: app/preferences_dialog.c:1735 msgid "Interface" msgstr "Interfaccia" @@ -3293,142 +3416,133 @@ msgid "degrees" msgstr "╟" #. /File -#: app/menus.c:82 +#. the underscore installs an accelerator using the character that follows +#: app/menus.c:85 msgid "/_File" msgstr "/_File" -#: app/menus.c:84 app/menus.c:191 +#. /File +#: app/menus.c:87 app/menus.c:193 msgid "/File/New..." msgstr "/File/Nuovo..." -#: app/menus.c:86 app/menus.c:193 +#: app/menus.c:89 app/menus.c:195 msgid "/File/Open..." msgstr "/File/Apri..." -#: app/menus.c:93 +#: app/menus.c:96 msgid "/File/Acquire" msgstr "/File/Acquisizione" -#: app/menus.c:98 +#: app/menus.c:101 msgid "/File/Preferences..." msgstr "/File/Preferenze..." -#: app/menus.c:105 -msgid "/File/Dialogs" -msgstr "/File/Finestre" - -#: app/menus.c:107 +#: app/menus.c:108 msgid "/File/Dialogs/Layers, Channels & Paths..." msgstr "/File/Finestre/Livelli, Canali e Tracciati..." -#: app/menus.c:109 +#: app/menus.c:110 msgid "/File/Dialogs/Tool Options..." msgstr "/File/Finestre/Opzioni Strumenti..." -#: app/menus.c:114 +#: app/menus.c:115 msgid "/File/Dialogs/Brushes..." msgstr "/File/Finestre/Pennelli..." -#: app/menus.c:116 +#: app/menus.c:117 msgid "/File/Dialogs/Patterns..." msgstr "/File/Finestre/Pattern..." -#: app/menus.c:118 +#: app/menus.c:119 msgid "/File/Dialogs/Gradients..." msgstr "/File/Finestre/Gradienti..." -#: app/menus.c:120 +#: app/menus.c:121 msgid "/File/Dialogs/Palette..." msgstr "/File/Finestre/Palette..." -#: app/menus.c:122 +#: app/menus.c:123 msgid "/File/Dialogs/Indexed Palette..." msgstr "/Finestre/Palette in Scala di Colore..." -#: app/menus.c:127 +#: app/menus.c:128 msgid "/File/Dialogs/Input Devices..." msgstr "/File/Finestre/Dispositivi di Ingresso..." -#: app/menus.c:129 +#: app/menus.c:130 msgid "/File/Dialogs/Device Status..." msgstr "/File/Finestre/Stato Dispositivi..." -#: app/menus.c:134 +#: app/menus.c:135 msgid "/File/Dialogs/Document Index..." msgstr "/File/Finestre/Indice Documenti..." -#: app/menus.c:136 +#: app/menus.c:137 msgid "/File/Dialogs/Error Console..." msgstr "/File/Finestre/Console degli Errori..." -#: app/menus.c:138 +#: app/menus.c:139 msgid "/File/Dialogs/Display Filters..." msgstr "/File/Finestre/Visualizza Filtri..." -#: app/menus.c:148 app/menus.c:206 +#: app/menus.c:149 app/menus.c:208 msgid "/File/Quit" msgstr "/File/Esci" #. /Xtns -#: app/menus.c:153 +#. the underscore installs an accelerator using the character that follows +#: app/menus.c:155 msgid "/_Xtns" msgstr "/_Xtns" -#: app/menus.c:155 +#: app/menus.c:157 msgid "/Xtns/Module Browser..." msgstr "/Xtns/Gestione Moduli..." #. /Help -#: app/menus.c:163 +#. the underscore installs an accelerator using the character that follows +#: app/menus.c:166 msgid "/_Help" msgstr "/_Aiuto" -#: app/menus.c:165 +#: app/menus.c:168 msgid "/Help/Help..." msgstr "/Aiuto/Aiuto..." -#: app/menus.c:167 +#: app/menus.c:170 msgid "/Help/Context Help..." msgstr "/Aiuto/Aiuto Contestuale..." -#: app/menus.c:169 +#: app/menus.c:172 msgid "/Help/Tip of the Day..." msgstr "/Aiuto/Suggerimenti del giorno..." -#: app/menus.c:171 +#: app/menus.c:174 msgid "/Help/About..." msgstr "/Aiuto/Informazioni..." -#: app/menus.c:173 +#: app/menus.c:176 msgid "/Help/Dump Items (Debug)" msgstr "/Aiuto/Dump degli Elementi (Debug)" -#. /File -#: app/menus.c:189 -msgid "/File" -msgstr "/File" - -#: app/menus.c:195 +#: app/menus.c:197 msgid "/File/Save" msgstr "/File/Salva" -#: app/menus.c:197 +#: app/menus.c:199 msgid "/File/Save As..." msgstr "/File/Salva con Nome..." -#: app/menus.c:199 +#: app/menus.c:201 msgid "/File/Revert" msgstr "/File/Inverti" -#: app/menus.c:204 +#: app/menus.c:206 msgid "/File/Close" msgstr "/File/Chiudi" #. /Edit -#: app/menus.c:214 -msgid "/Edit" -msgstr "/Modifica" - #: app/menus.c:216 msgid "/Edit/Undo" msgstr "/Modifica/Annulla" @@ -3459,671 +3573,590 @@ msgstr "/Modifica/Incolla come Nuovo" #. /Edit/Buffer #: app/menus.c:236 -msgid "/Edit/Buffer" -msgstr "/Modifica/Buffer" - -#: app/menus.c:238 msgid "/Edit/Buffer/Cut Named..." msgstr "/Modifica/Buffer/Taglia con Nome..." -#: app/menus.c:240 +#: app/menus.c:238 msgid "/Edit/Buffer/Copy Named..." msgstr "/Modifica/Buffer/Copia con Nome..." -#: app/menus.c:242 +#: app/menus.c:240 msgid "/Edit/Buffer/Paste Named..." msgstr "/Modifica/Buffer/Incolla con Nome..." -#: app/menus.c:247 +#: app/menus.c:245 msgid "/Edit/Clear" msgstr "/Modifica/Pulisci" -#: app/menus.c:249 +#: app/menus.c:247 msgid "/Edit/Fill" msgstr "/Modifica/Riempi" -#: app/menus.c:251 +#: app/menus.c:249 msgid "/Edit/Stroke" msgstr "/Modifica/Sbarra" #. /Select -#: app/menus.c:259 -msgid "/Select" -msgstr "/Selezione" - -#: app/menus.c:261 +#: app/menus.c:257 msgid "/Select/Invert" msgstr "/Selezione/Invertita" -#: app/menus.c:263 +#: app/menus.c:259 msgid "/Select/All" msgstr "/Selezione/Totale" -#: app/menus.c:265 +#: app/menus.c:261 msgid "/Select/None" msgstr "/Selezione/Nessuna" -#: app/menus.c:267 +#: app/menus.c:263 msgid "/Select/Float" msgstr "/Selezione/Fluttuante" -#: app/menus.c:272 +#: app/menus.c:268 msgid "/Select/Feather..." msgstr "/Selezione/Sfumata..." -#: app/menus.c:274 +#: app/menus.c:270 msgid "/Select/Sharpen" msgstr "/Selezione/Definita" -#: app/menus.c:276 +#: app/menus.c:272 msgid "/Select/Shrink..." msgstr "/Selezione/Ridotta..." -#: app/menus.c:278 +#: app/menus.c:274 msgid "/Select/Grow..." msgstr "/Selezione/Allargata..." -#: app/menus.c:280 +#: app/menus.c:276 msgid "/Select/Border..." msgstr "/Selezione/Bordi..." -#: app/menus.c:285 +#: app/menus.c:281 msgid "/Select/Save to Channel" msgstr "/Selezione/Salva in Canale" #. /View -#: app/menus.c:290 -msgid "/View" -msgstr "/Visualizza" - -#: app/menus.c:292 +#: app/menus.c:286 msgid "/View/Zoom In" msgstr "/Visualizza/Zoom Avanti" -#: app/menus.c:294 +#: app/menus.c:288 msgid "/View/Zoom Out" msgstr "/Visualizza/Zoom Indietro" #. /View/Zoom -#: app/menus.c:299 -msgid "/View/Zoom" -msgstr "/Visualizza/Zoom" - -#: app/menus.c:301 +#: app/menus.c:293 msgid "/View/Zoom/16:1" msgstr "/Visualizza/Zoom/16:1" -#: app/menus.c:303 +#: app/menus.c:295 msgid "/View/Zoom/8:1" msgstr "/Visualizza/Zoom/8:1" -#: app/menus.c:305 +#: app/menus.c:297 msgid "/View/Zoom/4:1" msgstr "/Visualizza/Zoom/4:1" -#: app/menus.c:307 +#: app/menus.c:299 msgid "/View/Zoom/2:1" msgstr "/Visualizza/Zoom/2:1" -#: app/menus.c:309 +#: app/menus.c:301 msgid "/View/Zoom/1:1" msgstr "/Visualizza/Zoom/1:1" -#: app/menus.c:311 +#: app/menus.c:303 msgid "/View/Zoom/1:2" msgstr "/Visualizza/Zoom/1:2" -#: app/menus.c:313 +#: app/menus.c:305 msgid "/View/Zoom/1:4" msgstr "/Visualizza/Zoom/1:4" -#: app/menus.c:315 +#: app/menus.c:307 msgid "/View/Zoom/1:8" msgstr "/Visualizza/Zoom/1:8" -#: app/menus.c:317 +#: app/menus.c:309 msgid "/View/Zoom/1:16" msgstr "/Visualizza/Zoom/1:16" -#: app/menus.c:320 +#: app/menus.c:312 msgid "/View/Dot for Dot" msgstr "/Visualizza/Punto per Punto" -#: app/menus.c:325 +#: app/menus.c:317 msgid "/View/Info Window..." msgstr "/Visualizza/Finestra Informazioni..." -#: app/menus.c:327 +#: app/menus.c:319 msgid "/View/Nav. Window..." msgstr "/Visualizza/Navigatore..." -#: app/menus.c:329 -msgid "/View/Undo History..." -msgstr "/Visualizza/Storico Operazioni..." - -#: app/menus.c:334 +#: app/menus.c:324 msgid "/View/Toggle Selection" msgstr "/Visualizza/Selezione tratteggiata" -#: app/menus.c:336 +#: app/menus.c:326 msgid "/View/Toggle Rulers" msgstr "/Visualizza/Righelli indicativi" -#: app/menus.c:338 +#: app/menus.c:328 msgid "/View/Toggle Statusbar" msgstr "/Visualizza/Barra di stato" -#: app/menus.c:340 +#: app/menus.c:330 msgid "/View/Toggle Guides" msgstr "/Visualizza/Griglia" -#: app/menus.c:342 +#: app/menus.c:332 msgid "/View/Snap to Guides" msgstr "/Visualizza/Punti a Griglia" -#: app/menus.c:347 +#: app/menus.c:337 msgid "/View/New View" msgstr "/Visualizza/Nuova Vista" -#: app/menus.c:349 +#: app/menus.c:339 msgid "/View/Shrink Wrap" msgstr "/Visualizza/Riposiziona vista" -#. /Image -#: app/menus.c:357 -msgid "/Image" -msgstr "/Immagine" - #. /Image/Mode -#: app/menus.c:362 -msgid "/Image/Mode" -msgstr "/Immagine/ModalitЮ" - -#: app/menus.c:364 +#: app/menus.c:344 msgid "/Image/Mode/RGB" msgstr "/Immagine/ModalitЮ/RGB" -#: app/menus.c:366 +#: app/menus.c:346 msgid "/Image/Mode/Grayscale" msgstr "/Immagine/ModalitЮ/Scala di grigio" -#: app/menus.c:368 +#: app/menus.c:348 msgid "/Image/Mode/Indexed..." msgstr "/Immagine/ModalitЮ/Scala di Colore..." #. /Image/Colors -#: app/menus.c:376 -msgid "/Image/Colors" -msgstr "/Immagine/Colori" - -#: app/menus.c:381 +#: app/menus.c:356 msgid "/Image/Colors/Desaturate" msgstr "/Immagine/Colori/Desaturazione" -#: app/menus.c:383 +#: app/menus.c:358 msgid "/Image/Colors/Invert" msgstr "/Immagine/Colori/Inverti" #. /Image/Colors/Auto -#: app/menus.c:391 -msgid "/Image/Colors/Auto" -msgstr "/Immagine/Colori/Auto" - -#: app/menus.c:393 +#: app/menus.c:366 msgid "/Image/Colors/Auto/Equalize" msgstr "/Immagine/Colori/Auto/Equalizza" #. /Image/Alpha -#: app/menus.c:401 -msgid "/Image/Alpha" -msgstr "/Immagine/Alpha" - -#: app/menus.c:403 +#: app/menus.c:374 msgid "/Image/Alpha/Add Alpha Channel" msgstr "/Immagine/Alpha/Aggiungi Canale Alpha" #. /Image/Transforms -#: app/menus.c:408 -msgid "/Image/Transforms" -msgstr "/Immagine/Trasforma" - -#: app/menus.c:410 +#: app/menus.c:379 msgid "/Image/Transforms/Offset..." msgstr "/Immagine/Trasforma/Offset..." -#: app/menus.c:412 +#: app/menus.c:381 msgid "/Image/Transforms/Rotate" msgstr "/Immagine/Trasformazioni/Colori/" -#: app/menus.c:419 +#: app/menus.c:388 msgid "/Image/Canvas Size..." msgstr "/Immagine/Dimensione Superficie..." -#: app/menus.c:421 +#: app/menus.c:390 msgid "/Image/Scale Image..." msgstr "/Immagine/Scala Immagine..." -#: app/menus.c:423 +#: app/menus.c:392 msgid "/Image/Duplicate" msgstr "/Immagine/Duplica" #. /Layers -#: app/menus.c:431 -msgid "/Layers" -msgstr "/Livelli" - -#: app/menus.c:433 +#: app/menus.c:400 msgid "/Layers/Layers, Channels & Paths..." msgstr "/Livelli/Livelli, Canali e Tracciati..." -#. /Layers/Stack -#: app/menus.c:438 -msgid "/Layers/Stack" -msgstr "/Livelli/Pila" +#: app/menus.c:404 +msgid "/Layers/Layer to Imagesize" +msgstr "/Livelli/Livello alla Dimensione Immagine" -#: app/menus.c:440 +#. /Layers/Stack +#: app/menus.c:409 msgid "/Layers/Stack/Previous Layer" msgstr "/Livelli/Pila/Livello Precedente" -#: app/menus.c:442 +#: app/menus.c:411 msgid "/Layers/Stack/Next Layer" msgstr "/Livelli/Pila/Livello Successivo" -#: app/menus.c:444 +#: app/menus.c:413 msgid "/Layers/Stack/Raise Layer" msgstr "/Livelli/Pila/Alza Livello" -#: app/menus.c:446 +#: app/menus.c:415 msgid "/Layers/Stack/Lower Layer" msgstr "/Livelli/Pila/Abbassa Livello" -#: app/menus.c:448 +#: app/menus.c:417 msgid "/Layers/Stack/Layer to Top" msgstr "/Livelli/Pila/Livello in Alto" -#: app/menus.c:450 +#: app/menus.c:419 msgid "/Layers/Stack/Layer to Bottom" msgstr "/Livelli/Pila/Livelli in Basso" #. /Layers/Rotate -#: app/menus.c:457 +#: app/menus.c:426 msgid "/Layers/Rotate" msgstr "/Livelli/Rotazione" -#: app/menus.c:460 -msgid "/Layers/Layer to Imagesize" -msgstr "/Livelli/Livello alla Dimensione Immagine" - -#: app/menus.c:465 +#: app/menus.c:431 msgid "/Layers/Anchor Layer" msgstr "/Livelli/Ancora livello" -#: app/menus.c:467 +#: app/menus.c:433 msgid "/Layers/Merge Visible Layers..." msgstr "/Livelli/Incolla Livelli Visibili..." -#: app/menus.c:469 +#: app/menus.c:435 msgid "/Layers/Flatten Image" msgstr "/Livelli/Appiattisci Immagine" -#: app/menus.c:474 +#: app/menus.c:440 msgid "/Layers/Mask to Selection" msgstr "/Livelli/Da Maschera a Selezione" -#: app/menus.c:479 +#: app/menus.c:445 msgid "/Layers/Add Alpha Channel" msgstr "/Livelli/Aggiungi Canale Alpha" -#: app/menus.c:481 +#: app/menus.c:447 msgid "/Layers/Alpha to Selection" msgstr "/Livelli/Alpha a Selezione" #. /Tools -#: app/menus.c:489 -msgid "/Tools" -msgstr "/Strumenti" - -#: app/menus.c:491 +#: app/menus.c:455 msgid "/Tools/Toolbox" msgstr "/Strumenti/Barra degli Strumenti" -#: app/menus.c:493 +#: app/menus.c:457 msgid "/Tools/Default Colors" msgstr "/Strumenti/Colori Base" -#: app/menus.c:495 +#: app/menus.c:459 msgid "/Tools/Swap Colors" msgstr "/Strumenti/Cambia Colori" -#: app/menus.c:501 -msgid "/Tools/Select Tools" -msgstr "/Strumenti/Strumenti Selezione" - -#: app/menus.c:503 -msgid "/Tools/Transform Tools" -msgstr "/Strumenti/Strumenti Trasformazione" - -#: app/menus.c:505 -msgid "/Tools/Paint Tools" -msgstr "/Strumenti/Strumenti Disegno" - #. /Dialogs -#: app/menus.c:510 -msgid "/Dialogs" -msgstr "/Finestre" - -#: app/menus.c:512 +#: app/menus.c:466 msgid "/Dialogs/Layers, Channels & Paths..." msgstr "/Finestre/Livelli, Canali e Tracciati..." -#: app/menus.c:514 +#: app/menus.c:468 msgid "/Dialogs/Tool Options..." msgstr "/Finestre/Opzioni Strumenti..." -#: app/menus.c:519 +#: app/menus.c:473 msgid "/Dialogs/Brushes..." msgstr "/Finestre/Pennelli..." -#: app/menus.c:521 +#: app/menus.c:475 msgid "/Dialogs/Patterns..." msgstr "/Finestre/Pattern..." -#: app/menus.c:523 +#: app/menus.c:477 msgid "/Dialogs/Gradients..." msgstr "/Finestre/Gradienti..." -#: app/menus.c:525 +#: app/menus.c:479 msgid "/Dialogs/Palette..." msgstr "/Finestre/Palette..." -#: app/menus.c:527 +#: app/menus.c:481 msgid "/Dialogs/Indexed Palette..." msgstr "/Finestre/Palette in Scala di Colore..." -#: app/menus.c:532 +#: app/menus.c:486 msgid "/Dialogs/Input Devices..." msgstr "/Finestre/Dispositivi di Input..." -#: app/menus.c:534 +#: app/menus.c:488 msgid "/Dialogs/Device Status..." msgstr "/Finestre/Stato dei Dispositivi..." -#: app/menus.c:539 +#: app/menus.c:493 msgid "/Dialogs/Document Index..." msgstr "/File/Finestre/Indice Documenti..." -#: app/menus.c:541 +#: app/menus.c:495 msgid "/Dialogs/Error Console..." msgstr "/File/Finestre/Console degli Errori..." -#: app/menus.c:543 +#: app/menus.c:497 msgid "/Dialogs/Display Filters..." msgstr "/Finestre/Visualizza Filtri..." -#. /Filters -#: app/menus.c:551 -msgid "/Filters" -msgstr "/Filtri" +#: app/menus.c:499 +#, fuzzy +msgid "/Dialogs/Undo History..." +msgstr "/Visualizza/Storico Operazioni..." -#: app/menus.c:553 +#. /Filters +#: app/menus.c:508 msgid "/Filters/Repeat Last" msgstr "/Filtri/Ripeti Ultimo" -#: app/menus.c:555 +#: app/menus.c:510 msgid "/Filters/Re-Show Last" msgstr "/Filtri/Mostra Ultimo" -#: app/menus.c:561 +#: app/menus.c:515 msgid "/Filters/Blur" msgstr "/Filtri/Sfocatura" -#: app/menus.c:564 +#: app/menus.c:517 msgid "/Filters/Colors" msgstr "/Filtri/Colori" -#: app/menus.c:569 +#: app/menus.c:519 msgid "/Filters/Noise" msgstr "/Filtri/Disturbo" -#: app/menus.c:571 +#: app/menus.c:521 msgid "/Filters/Edge-Detect" msgstr "/Filtri/Effetti Edge" -#: app/menus.c:573 +#: app/menus.c:523 msgid "/Filters/Enhance" msgstr "/Filtri/Avanzati" -#: app/menus.c:575 +#: app/menus.c:525 msgid "/Filters/Generic" msgstr "/Filtri/Generici" -#: app/menus.c:580 +#: app/menus.c:530 msgid "/Filters/Glass Effects" msgstr "/Filtri/Effetti Vetro" -#: app/menus.c:582 +#: app/menus.c:532 msgid "/Filters/Light Effects" msgstr "/Filtri/Effetti Luce" -#: app/menus.c:584 +#: app/menus.c:534 msgid "/Filters/Distorts" msgstr "/Filtri/Distorsioni" -#: app/menus.c:586 +#: app/menus.c:536 msgid "/Filters/Artistic" msgstr "/Filtri/Artistici" -#: app/menus.c:588 +#: app/menus.c:538 msgid "/Filters/Map" msgstr "/Filtri/Mappatura" -#: app/menus.c:590 +#: app/menus.c:540 msgid "/Filters/Render" msgstr "/Filtri/Render" -#: app/menus.c:592 +#: app/menus.c:542 msgid "/Filters/Web" msgstr "/Filtri/Web" -#: app/menus.c:597 +#: app/menus.c:547 msgid "/Filters/Animation" msgstr "/Filtri/Animazione" -#: app/menus.c:599 +#: app/menus.c:549 msgid "/Filters/Combine" msgstr "/File/Combina" -#: app/menus.c:604 +#: app/menus.c:554 msgid "/Filters/Toys" msgstr "/Filtri/Giocattoli" -#. /Script-Fu -#: app/menus.c:609 -msgid "/Script-Fu" -msgstr "/Script-Fu" - -#: app/menus.c:620 +#: app/menus.c:567 msgid "/Automatic" msgstr "/Automatico" -#: app/menus.c:634 +#: app/menus.c:581 msgid "/By Extension" msgstr "/Per Estensione" -#: app/menus.c:648 +#: app/menus.c:595 msgid "/New Layer..." msgstr "/Nuovo Livello..." #. /Stack -#: app/menus.c:653 -msgid "/Stack" -msgstr "/Pila" - -#: app/menus.c:655 +#: app/menus.c:600 msgid "/Stack/Raise Layer" msgstr "/Pila/Alza Livello" -#: app/menus.c:657 +#: app/menus.c:602 msgid "/Stack/Lower Layer" msgstr "/Pila/Abbassa Livello" -#: app/menus.c:659 +#: app/menus.c:604 msgid "/Stack/Layer to Top" msgstr "/Pila/Livello in Alto" -#: app/menus.c:661 +#: app/menus.c:606 msgid "/Stack/Layer to Bottom" msgstr "/Pila/Livello in Basso" -#: app/menus.c:664 +#: app/menus.c:609 msgid "/Duplicate Layer" msgstr "/Duplica Livello" -#: app/menus.c:666 +#: app/menus.c:611 msgid "/Anchor Layer" msgstr "/Ancora Livello" -#: app/menus.c:668 +#: app/menus.c:613 msgid "/Delete Layer" msgstr "/Elimina Livello" -#: app/menus.c:673 +#: app/menus.c:618 msgid "/Layer Boundary Size..." msgstr "/Dimensione Confine del Livello..." -#: app/menus.c:675 +#: app/menus.c:620 msgid "/Layer to Imagesize" msgstr "/Livello a Dimensione Immagine" -#: app/menus.c:677 +#: app/menus.c:622 msgid "/Scale Layer..." msgstr "/Scala Livello..." -#: app/menus.c:682 +#: app/menus.c:627 msgid "/Merge Visible Layers..." msgstr "/Incolla Livelli Visibili" -#: app/menus.c:684 +#: app/menus.c:629 msgid "/Merge Down" msgstr "/Incolla in Basso" -#: app/menus.c:686 +#: app/menus.c:631 msgid "/Flatten Image" msgstr "/Immagine Appiattita" -#: app/menus.c:691 +#: app/menus.c:636 msgid "/Add Layer Mask..." msgstr "/Aggiungi Livello Maschera..." -#: app/menus.c:693 +#: app/menus.c:638 msgid "/Apply Layer Mask" msgstr "/Applica Livello Maschera" -#: app/menus.c:695 +#: app/menus.c:640 msgid "/Delete Layer Mask" msgstr "/Elimina Livello Maschera" -#: app/menus.c:697 +#: app/menus.c:642 msgid "/Mask to Selection" msgstr "/Maschera a Selezione" -#: app/menus.c:702 +#: app/menus.c:647 msgid "/Add Alpha Channel" msgstr "/Aggiungi Canale Alpha" -#: app/menus.c:704 +#: app/menus.c:649 msgid "/Alpha to Selection" msgstr "/Alpha a Selezione" -#: app/menus.c:709 +#: app/menus.c:654 msgid "/Edit Layer Attributes..." msgstr "/Modifica Attributi Livello..." -#: app/menus.c:720 +#: app/menus.c:665 msgid "/New Channel..." msgstr "/Nuovo Canale..." -#: app/menus.c:722 +#: app/menus.c:667 msgid "/Raise Channel" msgstr "/Alza il Canale" -#: app/menus.c:724 +#: app/menus.c:669 msgid "/Lower Channel" msgstr "/Abbassa il Canale" -#: app/menus.c:726 +#: app/menus.c:671 msgid "/Duplicate Channel" msgstr "/Duplica il Canale" -#: app/menus.c:731 +#: app/menus.c:676 msgid "/Channel to Selection" msgstr "/Canale a Selezione" -#: app/menus.c:733 +#: app/menus.c:678 msgid "/Add to Selection" msgstr "/Aggiungi a Selezione" -#: app/menus.c:735 +#: app/menus.c:680 msgid "/Subtract from Selection" msgstr "/Sottrai da Selezione" -#: app/menus.c:737 +#: app/menus.c:682 msgid "/Intersect with Selection" msgstr "/Interseca con Selezione" -#: app/menus.c:742 +#: app/menus.c:687 msgid "/Delete Channel" msgstr "/Elimina Canale" -#: app/menus.c:747 +#: app/menus.c:692 msgid "/Edit Channel Attributes..." msgstr "/Modifica Attributi Canale..." -#: app/menus.c:758 +#: app/menus.c:703 msgid "/New Path" msgstr "/Nuovo Tracciato" -#: app/menus.c:760 +#: app/menus.c:705 msgid "/Duplicate Path" msgstr "/Duplica Tracciato" -#: app/menus.c:762 +#: app/menus.c:707 msgid "/Path to Selection" msgstr "/Tracciato a Selezione" -#: app/menus.c:764 +#: app/menus.c:709 msgid "/Selection to Path" msgstr "/Selezione a Tracciato " -#: app/menus.c:766 +#: app/menus.c:711 msgid "/Stroke Path" msgstr "/Disegna Tracciato" -#: app/menus.c:768 +#: app/menus.c:713 msgid "/Delete Path" msgstr "/Cancella Tracciato" -#: app/menus.c:773 +#: app/menus.c:718 msgid "/Copy Path" msgstr "/Copia Tracciato" -#: app/menus.c:775 +#: app/menus.c:720 msgid "/Paste Path" msgstr "/Incolla Tracciato" -#: app/menus.c:777 +#: app/menus.c:722 msgid "/Import Path..." msgstr "/Importa Tracciato..." -#: app/menus.c:779 +#: app/menus.c:724 msgid "/Export Path..." msgstr "/Esporta Tracciato..." -#: app/menus.c:784 +#: app/menus.c:729 msgid "/Edit Path Attributes..." msgstr "/Modifica Attributi Tracciato..." -#: app/menus.c:1310 +#: app/menus.c:1260 #, c-format msgid "Error opening file: %s\n" msgstr "Errore aprendo il file: %s\n" @@ -4219,7 +4252,7 @@ msgstr "Stato: " msgid "Autoload during startup" msgstr "Carica automaticamente all'Avvio" -#: app/move.c:456 +#: app/move.c:458 msgid "Move Tool" msgstr "Strumento Movimento" @@ -4233,7 +4266,7 @@ msgstr "Navigazione: %s-%d.%d" msgid "Navigation: No Image" msgstr "Navigazione: Nessuna Immagine" -#: app/paint_core.c:717 +#: app/paint_core.c:735 msgid "No brushes available for use with this tool." msgstr "Nessun pennello disponibile all'uso con questo strumento." @@ -4674,477 +4707,471 @@ msgstr "" msgid "You will need to restart GIMP for these changes to take effect." msgstr "E' necessario riavviare GIMP per apportare i cambiamenti effettuati." -#: app/preferences_dialog.c:1459 +#: app/preferences_dialog.c:1002 +#, c-format +msgid "The default comments is limited to %d characters." +msgstr "" + +#: app/preferences_dialog.c:1424 msgid "Preferences" msgstr "Preferenze" #. The categories tree -#: app/preferences_dialog.c:1481 +#: app/preferences_dialog.c:1446 msgid "Categories" msgstr "Categorie" -#: app/preferences_dialog.c:1509 app/preferences_dialog.c:1511 +#: app/preferences_dialog.c:1474 app/preferences_dialog.c:1476 msgid "New File" msgstr "Nuovo File" -#: app/preferences_dialog.c:1522 +#: app/preferences_dialog.c:1487 msgid "Default Image Size and Unit" msgstr "Dimensioni Base dell'Immagine" -#: app/preferences_dialog.c:1536 +#: app/preferences_dialog.c:1501 msgid "Width" msgstr "Larghezza" -#: app/preferences_dialog.c:1538 +#: app/preferences_dialog.c:1503 msgid "Height" msgstr "Altezza" -#: app/preferences_dialog.c:1568 +#: app/preferences_dialog.c:1533 msgid "Default Image Resolution and Resolution Unit" msgstr "Risoluzione dell'Immagine e UnitЮ di misura" -#: app/preferences_dialog.c:1595 app/preferences_dialog.c:2359 +#: app/preferences_dialog.c:1560 app/preferences_dialog.c:2288 msgid "dpi" msgstr "dpi" -#: app/preferences_dialog.c:1642 +#: app/preferences_dialog.c:1607 msgid "Default Image Type:" msgstr "Tipo di Immagine Base" -#: app/preferences_dialog.c:1678 app/preferences_dialog.c:2166 -msgid "Bytes" -msgstr "Byte" - -#: app/preferences_dialog.c:1679 app/preferences_dialog.c:2167 -msgid "KiloBytes" -msgstr "KByte" - -#: app/preferences_dialog.c:1680 app/preferences_dialog.c:2168 -msgid "MegaBytes" -msgstr "MByte" - -#: app/preferences_dialog.c:1686 +#: app/preferences_dialog.c:1618 msgid "Maximum Image Size:" msgstr "Massima Dimensione Immagine:" -#: app/preferences_dialog.c:1692 app/preferences_dialog.c:1694 +#: app/preferences_dialog.c:1623 app/preferences_dialog.c:1625 +#, fuzzy +msgid "Default Comment" +msgstr "Standard" + +#: app/preferences_dialog.c:1633 +msgid "Comment Used for New Images" +msgstr "" + +#: app/preferences_dialog.c:1653 app/preferences_dialog.c:1655 msgid "Display" msgstr "Visualizzazione" -#: app/preferences_dialog.c:1702 +#: app/preferences_dialog.c:1663 msgid "Transparency" msgstr "Trasparenza" -#: app/preferences_dialog.c:1721 +#: app/preferences_dialog.c:1682 msgid "Light Checks" msgstr "Scacchi piccoli" -#: app/preferences_dialog.c:1722 +#: app/preferences_dialog.c:1683 msgid "Mid-Tone Checks" msgstr "Scacchi mezze tinte" -#: app/preferences_dialog.c:1723 +#: app/preferences_dialog.c:1684 msgid "Dark Checks" msgstr "Scacchi scuri" -#: app/preferences_dialog.c:1724 +#: app/preferences_dialog.c:1685 msgid "White Only" msgstr "Scacchi bianchi" -#: app/preferences_dialog.c:1725 +#: app/preferences_dialog.c:1686 msgid "Gray Only" msgstr "Scacchi grigi" -#: app/preferences_dialog.c:1726 +#: app/preferences_dialog.c:1687 msgid "Black Only" msgstr "Scacchi neri" -#: app/preferences_dialog.c:1730 +#: app/preferences_dialog.c:1691 msgid "Transparency Type:" msgstr "Tipo di trasparenza:" -#: app/preferences_dialog.c:1737 app/preferences_dialog.c:1810 -#: app/preferences_dialog.c:1824 +#: app/preferences_dialog.c:1698 app/preferences_dialog.c:1771 +#: app/preferences_dialog.c:1785 msgid "Small" msgstr "Piccolo" -#: app/preferences_dialog.c:1738 app/preferences_dialog.c:1811 -#: app/preferences_dialog.c:1825 +#: app/preferences_dialog.c:1699 app/preferences_dialog.c:1772 +#: app/preferences_dialog.c:1786 msgid "Medium" msgstr "Medio" -#: app/preferences_dialog.c:1739 app/preferences_dialog.c:1812 -#: app/preferences_dialog.c:1826 +#: app/preferences_dialog.c:1700 app/preferences_dialog.c:1773 +#: app/preferences_dialog.c:1787 msgid "Large" msgstr "Grande" -#: app/preferences_dialog.c:1743 +#: app/preferences_dialog.c:1704 msgid "Check Size:" msgstr "Dimensione Scacco:" -#: app/preferences_dialog.c:1746 +#: app/preferences_dialog.c:1707 msgid "8-Bit Displays" msgstr "Monitor a 8-Bit" -#: app/preferences_dialog.c:1751 +#: app/preferences_dialog.c:1712 msgid "Install Colormap" msgstr "Installa Mappa Colore" -#: app/preferences_dialog.c:1760 +#: app/preferences_dialog.c:1721 msgid "Colormap Cycling" msgstr "Riciclo mappa del Colore" -#: app/preferences_dialog.c:1809 +#: app/preferences_dialog.c:1770 msgid "Tiny" msgstr "Molto Piccola" -#: app/preferences_dialog.c:1813 +#: app/preferences_dialog.c:1774 msgid "Huge" msgstr "Molto Grande" -#: app/preferences_dialog.c:1817 +#: app/preferences_dialog.c:1778 msgid "Preview Size:" msgstr "Dimensione Anteprima" -#: app/preferences_dialog.c:1830 +#: app/preferences_dialog.c:1791 msgid "Nav Preview Size:" msgstr "Dimensione Anteprima" -#: app/preferences_dialog.c:1840 +#: app/preferences_dialog.c:1801 msgid "Recent Documents List Size:" msgstr "Dimensione Lista `Documenti Recenti'" #. Indicators -#: app/preferences_dialog.c:1844 +#: app/preferences_dialog.c:1805 msgid "Toolbox" msgstr "Barra degli Strumenti" -#: app/preferences_dialog.c:1847 +#: app/preferences_dialog.c:1808 msgid "Display Brush, Pattern and Gradient Indicators" msgstr "Mostra Indicatori Pennello, Pattern e Gradiente" -#: app/preferences_dialog.c:1856 +#: app/preferences_dialog.c:1817 msgid "Dialog Behaviour" msgstr "Caratteristiche Finestre di Dialogo" -#: app/preferences_dialog.c:1858 +#: app/preferences_dialog.c:1819 msgid "Navigation Window per Display" msgstr "Finestra Navigatore per Display" -#: app/preferences_dialog.c:1867 +#: app/preferences_dialog.c:1828 msgid "Info Window Follows Mouse" msgstr "La finestra Informazioni segue il Mouse" -#: app/preferences_dialog.c:1878 app/preferences_dialog.c:1880 +#: app/preferences_dialog.c:1839 app/preferences_dialog.c:1841 msgid "Help System" msgstr "Aiuto" -#: app/preferences_dialog.c:1890 +#: app/preferences_dialog.c:1851 msgid "Show Tool Tips" msgstr "Mostra Suggerimenti" -#: app/preferences_dialog.c:1900 +#: app/preferences_dialog.c:1861 msgid "Context Sensitive Help with \"F1\"" msgstr "Aiuto Contestuale con \"F1\"" -#: app/preferences_dialog.c:1909 +#: app/preferences_dialog.c:1870 msgid "Help Browser" msgstr "Browser Aiuto" -#: app/preferences_dialog.c:1921 +#: app/preferences_dialog.c:1882 msgid "Internal" msgstr "Interno" -#: app/preferences_dialog.c:1922 +#: app/preferences_dialog.c:1883 msgid "Netscape" msgstr "Netscape" -#: app/preferences_dialog.c:1926 +#: app/preferences_dialog.c:1887 msgid "Help Browser to Use:" msgstr "Browser Aiuto da Utilizzare:" -#: app/preferences_dialog.c:1931 app/preferences_dialog.c:1933 +#: app/preferences_dialog.c:1892 app/preferences_dialog.c:1894 msgid "Image Windows" msgstr "Finestre Immagine" -#: app/preferences_dialog.c:1941 +#: app/preferences_dialog.c:1902 msgid "Appearance" msgstr "Aspetto" -#: app/preferences_dialog.c:1943 +#: app/preferences_dialog.c:1904 msgid "Use \"Dot for Dot\" by default" msgstr "Utilizza \"Punto per Punto\" di base" -#: app/preferences_dialog.c:1952 +#: app/preferences_dialog.c:1913 msgid "Resize Window on Zoom" msgstr "Ridimensiona Finestra ogni Zoom" -#: app/preferences_dialog.c:1961 +#: app/preferences_dialog.c:1922 msgid "Show Rulers" msgstr "Mostra Righello" -#: app/preferences_dialog.c:1970 +#: app/preferences_dialog.c:1931 msgid "Show Statusbar" msgstr "Barra di stato" -#: app/preferences_dialog.c:1994 +#: app/preferences_dialog.c:1955 msgid "Marching Ants Speed:" msgstr "VelocitЮ Animazione titolo:" #. Set the currently used string as "Custom" -#: app/preferences_dialog.c:2002 +#: app/preferences_dialog.c:1963 msgid "Custom" msgstr "Personalizzata" #. set some commonly used format strings -#: app/preferences_dialog.c:2008 +#: app/preferences_dialog.c:1969 msgid "Standard" msgstr "Standard" -#: app/preferences_dialog.c:2013 +#: app/preferences_dialog.c:1974 msgid "Show zoom percentage" msgstr "Mostra percentuale dello Zoom" -#: app/preferences_dialog.c:2018 +#: app/preferences_dialog.c:1979 msgid "Show zoom ratio" msgstr "Mostra dimensione Zoom" -#: app/preferences_dialog.c:2023 +#: app/preferences_dialog.c:1984 msgid "Show reversed zoom ratio" msgstr "Mostra dimensione Zoom inversa" -#: app/preferences_dialog.c:2034 +#: app/preferences_dialog.c:1995 msgid "Image Title Format:" msgstr "Formato del Titolo Immagine:" #. End of the title format string -#: app/preferences_dialog.c:2038 +#: app/preferences_dialog.c:1999 msgid "Pointer Movement Feedback" msgstr "Caratteristiche del Puntatore" -#: app/preferences_dialog.c:2041 +#: app/preferences_dialog.c:2002 msgid "Perfect-but-Slow Pointer Tracking" msgstr "Puntatore Preciso-ma-Lento" -#: app/preferences_dialog.c:2050 +#: app/preferences_dialog.c:2011 msgid "Disable Cursor Updating" msgstr "Disabilita Aggiornamento Cursore" -#: app/preferences_dialog.c:2062 app/preferences_dialog.c:2064 +#: app/preferences_dialog.c:2023 app/preferences_dialog.c:2025 #: app/tools.c:1080 msgid "Tool Options" msgstr "Opzioni Strumenti" -#: app/preferences_dialog.c:2072 +#: app/preferences_dialog.c:2033 msgid "Paint Options" msgstr "Opzioni di Disegno" -#: app/preferences_dialog.c:2075 +#: app/preferences_dialog.c:2036 msgid "Use Global Paint Options" msgstr "Utilizza Opzioni Globali di Disegno" -#: app/preferences_dialog.c:2090 app/preferences_dialog.c:2092 +#: app/preferences_dialog.c:2051 app/preferences_dialog.c:2053 msgid "Environment" msgstr "Ambiente" -#: app/preferences_dialog.c:2100 +#: app/preferences_dialog.c:2061 msgid "Resource Consumption" msgstr "Gestione Risorse" -#: app/preferences_dialog.c:2102 +#: app/preferences_dialog.c:2063 msgid "Conservative Memory Usage" msgstr "Utilizzo della Memoria Conservativa" -#: app/preferences_dialog.c:2130 +#: app/preferences_dialog.c:2091 msgid "Levels of Undo:" msgstr "Dimensione `Storico'" -#: app/preferences_dialog.c:2174 -msgid "Tile Cache Size:" -msgstr "Dimensione Cache:" - -#: app/preferences_dialog.c:2185 +#: app/preferences_dialog.c:2113 msgid "Number of Processors to Use:" msgstr "Numero di Processori da Utilizzare:" -#: app/preferences_dialog.c:2189 app/transform_tool.c:215 +#: app/preferences_dialog.c:2117 app/transform_tool.c:215 msgid "Scaling" msgstr "Scala" -#: app/preferences_dialog.c:2207 +#: app/preferences_dialog.c:2135 msgid "Nearest Neighbor (Fast)" msgstr "Regioni confinanti (Veloce)" -#: app/preferences_dialog.c:2211 +#: app/preferences_dialog.c:2139 msgid "Cubic (Slow)" msgstr "Cubica (Lenta)" -#: app/preferences_dialog.c:2216 +#: app/preferences_dialog.c:2144 msgid "Interpolation Type:" msgstr "Tipo di Interpolazione:" -#: app/preferences_dialog.c:2219 +#: app/preferences_dialog.c:2147 msgid "File Saving" msgstr "Salvataggio File" -#: app/preferences_dialog.c:2236 app/preferences_dialog.c:2249 +#: app/preferences_dialog.c:2164 app/preferences_dialog.c:2177 msgid "Always" msgstr "Sempre" -#: app/preferences_dialog.c:2237 +#: app/preferences_dialog.c:2165 msgid "Never" msgstr "Mai" -#: app/preferences_dialog.c:2241 +#: app/preferences_dialog.c:2169 msgid "Try to Write a Thumbnail File:" msgstr "Prova a creare icone:" -#: app/preferences_dialog.c:2248 +#: app/preferences_dialog.c:2176 msgid "Only when Modified" msgstr "Solo quando Modificato" -#: app/preferences_dialog.c:2253 +#: app/preferences_dialog.c:2181 msgid "\"File > Save\" Saves the Image:" msgstr "\"File > Salva\" Salva l'immagine:" -#: app/preferences_dialog.c:2259 +#: app/preferences_dialog.c:2187 msgid "Session Management" msgstr "Controllo Sessione" -#: app/preferences_dialog.c:2261 +#: app/preferences_dialog.c:2189 msgid "Session" msgstr "Sessione" -#: app/preferences_dialog.c:2269 +#: app/preferences_dialog.c:2197 msgid "Window Positions" msgstr "Posizione Finestra" -#: app/preferences_dialog.c:2271 +#: app/preferences_dialog.c:2199 msgid "Save Window Positions on Exit" msgstr "Salva la Posizione della Finestra all'Uscita" -#: app/preferences_dialog.c:2285 +#: app/preferences_dialog.c:2213 msgid "Clear Saved Window Positions Now" msgstr "Annulla la Posizione delle Finestre Salvata" -#: app/preferences_dialog.c:2293 +#: app/preferences_dialog.c:2221 msgid "Always Try to Restore Session" msgstr "Cerca di Ripristinare la Sessione Sempre" -#: app/preferences_dialog.c:2302 +#: app/preferences_dialog.c:2230 msgid "Devices" msgstr "Dispositivi" -#: app/preferences_dialog.c:2304 +#: app/preferences_dialog.c:2232 msgid "Save Device Status on Exit" msgstr "Salva lo Stato dei Dispositivi all'Uscita" -#: app/preferences_dialog.c:2315 app/preferences_dialog.c:2317 +#: app/preferences_dialog.c:2243 app/preferences_dialog.c:2245 msgid "Monitor" msgstr "Monitor" -#: app/preferences_dialog.c:2325 +#: app/preferences_dialog.c:2253 msgid "Get Monitor Resolution" msgstr "Risoluzione Monitor" -#: app/preferences_dialog.c:2333 +#: app/preferences_dialog.c:2261 #, c-format msgid "(Currently %d x %d dpi)" msgstr "(Corrente %d x %d dpi" -#: app/preferences_dialog.c:2384 +#: app/preferences_dialog.c:2313 msgid "From X Server" msgstr "Dal Server X" -#: app/preferences_dialog.c:2399 +#: app/preferences_dialog.c:2328 msgid "Manually:" msgstr "Manualmente:" -#: app/preferences_dialog.c:2412 app/preferences_dialog.c:2414 +#: app/preferences_dialog.c:2341 app/preferences_dialog.c:2343 msgid "Directories" msgstr "Directory" -#: app/preferences_dialog.c:2431 +#: app/preferences_dialog.c:2360 msgid "Temp Dir:" msgstr "Directory Temporanea:" -#: app/preferences_dialog.c:2431 +#: app/preferences_dialog.c:2360 msgid "Select Temp Dir" msgstr "Seleziona Directory Temporanea" -#: app/preferences_dialog.c:2432 +#: app/preferences_dialog.c:2361 msgid "Swap Dir:" msgstr "Directory di Swap" -#: app/preferences_dialog.c:2432 -msgid "Select Swap Dir" -msgstr "Seleziona directory di Swap" - -#: app/preferences_dialog.c:2468 +#: app/preferences_dialog.c:2397 msgid "Brushes Directories" msgstr "Directory dei Pennelli" -#: app/preferences_dialog.c:2470 +#: app/preferences_dialog.c:2399 msgid "Select Brushes Dir" msgstr "Seleziona Directory dei Pennelli" -#: app/preferences_dialog.c:2472 +#: app/preferences_dialog.c:2401 msgid "Generated Brushes" msgstr "Pennelli Creati" -#: app/preferences_dialog.c:2472 +#: app/preferences_dialog.c:2401 msgid "Generated Brushes Directories" msgstr "Directory dei Pennelli Creati" -#: app/preferences_dialog.c:2474 +#: app/preferences_dialog.c:2403 msgid "Select Generated Brushes Dir" msgstr "Seleziona Directory dei Pennelli Creati" -#: app/preferences_dialog.c:2476 +#: app/preferences_dialog.c:2405 msgid "Patterns Directories" msgstr "Directory dei Pattern" -#: app/preferences_dialog.c:2478 +#: app/preferences_dialog.c:2407 msgid "Select Patterns Dir" msgstr "Seleziona Directory dei Pattern" -#: app/preferences_dialog.c:2480 +#: app/preferences_dialog.c:2409 msgid "Palettes Directories" msgstr "Directory delle Palette" -#: app/preferences_dialog.c:2482 +#: app/preferences_dialog.c:2411 msgid "Select Palettes Dir" msgstr "Seleziona Directory delle Palette" -#: app/preferences_dialog.c:2484 +#: app/preferences_dialog.c:2413 msgid "Gradients Directories" msgstr "Directory dei Gradienti" -#: app/preferences_dialog.c:2486 +#: app/preferences_dialog.c:2415 msgid "Select Gradients Dir" msgstr "Seleziona Directory dei Gradienti" -#: app/preferences_dialog.c:2488 +#: app/preferences_dialog.c:2417 msgid "Plug-Ins" msgstr "Plug-in" -#: app/preferences_dialog.c:2488 +#: app/preferences_dialog.c:2417 msgid "Plug-Ins Directories" msgstr "Directory dei Plug-in" -#: app/preferences_dialog.c:2490 +#: app/preferences_dialog.c:2419 msgid "Select Plug-Ins Dir" msgstr "Seleziona la Directory dei Plug-in" -#: app/preferences_dialog.c:2492 +#: app/preferences_dialog.c:2421 msgid "Modules" msgstr "Moduli" -#: app/preferences_dialog.c:2492 +#: app/preferences_dialog.c:2421 msgid "Modules Directories" msgstr "Directory dei Moduli" -#: app/preferences_dialog.c:2494 +#: app/preferences_dialog.c:2423 msgid "Select Modules Dir" msgstr "Seleziona Directory dei Moduli" @@ -5216,60 +5243,60 @@ msgstr "Selezione: SOSTITUISCI" msgid "Selection: " msgstr "Selezione: " -#: app/resize.c:154 +#: app/resize.c:156 msgid "Scale Layer" msgstr "Scala Livello" -#: app/resize.c:156 app/resize.c:181 app/tool_options.c:774 +#: app/resize.c:158 app/resize.c:183 app/tool_options.c:774 msgid "Size" msgstr "Dimensione" -#: app/resize.c:160 +#: app/resize.c:162 msgid "Scale Image" msgstr "Scala Immagine" -#: app/resize.c:162 +#: app/resize.c:164 msgid "Pixel Dimensions" msgstr "Dimensione in Pixel" -#: app/resize.c:172 +#: app/resize.c:174 msgid "Set Layer Boundary Size" msgstr "Configura Confine del Livello" -#: app/resize.c:177 +#: app/resize.c:179 msgid "Set Canvas Size" msgstr "Configura Dimensione della Superficie" #. the original width & height labels -#: app/resize.c:234 app/scale_tool.c:77 +#: app/resize.c:236 app/scale_tool.c:77 msgid "Original Width:" msgstr "Larghezza Originale:" #. the new size labels -#: app/resize.c:259 app/resize.c:504 +#: app/resize.c:261 app/resize.c:506 msgid "New Width:" msgstr "Nuova Larghezza:" #. the scale ratio labels -#: app/resize.c:324 +#: app/resize.c:326 msgid "Ratio X:" msgstr "Dimensione X:" #. the x and y offset labels -#: app/resize.c:409 +#: app/resize.c:411 msgid "X:" msgstr "X:" -#: app/resize.c:490 +#: app/resize.c:492 msgid "Print Size & Display Unit" msgstr "Stampa Dimensione e UnitЮ del Display" -#: app/resize.c:1252 +#: app/resize.c:1254 msgid "Scale Error: Both width and height must be greater than zero." msgstr "" "Errore di Scala: sia larghezza che altezza devono essere maggiori di zero." -#: app/resize.c:1334 +#: app/resize.c:1336 msgid "" "The chosen image size will shrink\n" "some layers completely away.\n" @@ -5279,7 +5306,7 @@ msgstr "" "ridurrЮ alcuni livelli.\n" "E' questo quello che desiderate?" -#: app/resize.c:1338 +#: app/resize.c:1340 msgid "Layer Too Small" msgstr "Livello Troppo Piccolo" @@ -5328,7 +5355,7 @@ msgstr "Ritagliatura..." msgid "Text Tool" msgstr "Strumenti di Testo" -#: app/text_tool.c:162 app/tool_options.c:233 +#: app/text_tool.c:162 app/tool_options.c:232 msgid "Antialiasing" msgstr "Antialiasing" @@ -5406,99 +5433,99 @@ msgstr "" "Dovrebbe esserci un file chiamato gimp-tips.it.txt nella\n" "directory data di GIMP. Controllate la vostra installazione." -#: app/tool_options.c:122 +#: app/tool_options.c:121 msgid "This tool has no options." msgstr "Questo strumento non ha opzioni." -#: app/tool_options.c:146 +#: app/tool_options.c:145 msgid "Rectangular Selection" msgstr "Selezione Rettangolare" -#: app/tool_options.c:148 +#: app/tool_options.c:147 msgid "Elliptical Selection" msgstr "Selezione Ellittica" -#: app/tool_options.c:150 +#: app/tool_options.c:149 msgid "Free-Hand Selection" msgstr "Selezione Libera" -#: app/tool_options.c:152 +#: app/tool_options.c:151 msgid "Fuzzy Selection" msgstr "Selezione Fuzzy" -#: app/tool_options.c:154 +#: app/tool_options.c:153 msgid "Bezier Selection" msgstr "Selezione Bezier" -#: app/tool_options.c:156 app/tools.c:178 +#: app/tool_options.c:155 app/tools.c:178 msgid "Intelligent Scissors" msgstr "Forbici Intelligenti" -#: app/tool_options.c:158 +#: app/tool_options.c:157 msgid "By-Color Selection" msgstr "Selezione per Colore" -#: app/tool_options.c:189 +#: app/tool_options.c:188 msgid "Feather" msgstr "Piumata" -#: app/tool_options.c:297 +#: app/tool_options.c:296 msgid "Fixed Size / Aspect Ratio" msgstr "Dimensioni fisse / UnitЮ di misura" -#: app/tool_options.c:363 +#: app/tool_options.c:362 msgid "Unit:" msgstr "UnitЮ:" -#: app/tool_options.c:448 app/tools.c:376 +#: app/tool_options.c:447 app/tools.c:376 msgid "Bucket Fill" msgstr "Riempimento Colore" -#: app/tool_options.c:450 +#: app/tool_options.c:449 msgid "Blend Tool" msgstr "Strumento Sfumatura" -#: app/tool_options.c:452 app/tools.c:412 +#: app/tool_options.c:451 app/tools.c:412 msgid "Pencil" msgstr "Matita" -#: app/tool_options.c:454 app/tools.c:430 +#: app/tool_options.c:453 app/tools.c:430 msgid "Paintbrush" msgstr "Pennello" -#: app/tool_options.c:456 app/tools.c:448 +#: app/tool_options.c:455 app/tools.c:448 msgid "Eraser" msgstr "Gomma" -#: app/tool_options.c:458 app/tools.c:466 +#: app/tool_options.c:457 app/tools.c:466 msgid "Airbrush" msgstr "Aerografo" -#: app/tool_options.c:460 +#: app/tool_options.c:459 msgid "Clone Tool" msgstr "Strumento Clonatura" -#: app/tool_options.c:462 +#: app/tool_options.c:461 msgid "Convolver" msgstr "Arrotolamento" -#: app/tool_options.c:464 +#: app/tool_options.c:463 msgid "Ink Tool" msgstr "Strumento Stilo" -#: app/tool_options.c:466 app/tools.c:538 app/tools.c:544 +#: app/tool_options.c:465 app/tools.c:538 app/tools.c:544 msgid "Dodge or Burn" msgstr "Scherma / Brucia" -#: app/tool_options.c:468 +#: app/tool_options.c:467 msgid "Smudge Tool" msgstr "Strumento Sfumino" -#: app/tool_options.c:583 +#: app/tool_options.c:582 msgid "Incremental" msgstr "Incrementale" -#: app/tool_options.c:689 +#: app/tool_options.c:688 msgid "Pressure Sensitivity" msgstr "Pressone SensibilitЮ" @@ -6177,6 +6204,123 @@ msgstr "Acquerello" msgid "Color History" msgstr "Storico Colore" +#~ msgid "Custom from Editor" +#~ msgstr "Personalizzata" + +#~ msgid "" +#~ "The GIMP - GNU Image Manipulation Program\n" +#~ "\n" +#~ msgstr "" +#~ "The GIMP - GNU Image Manipulation Program\n" +#~ "\n" + +#~ msgid "For a proper GIMP installation, a subdirectory called\n" +#~ msgstr "" +#~ "Per una appropriata installazione di GIMP, una sottodirectory chiamata\n" + +#~ msgid "Install" +#~ msgstr "Installa" + +#~ msgid "Ignore" +#~ msgstr "Ignora" + +#~ msgid "-*-helvetica-medium-o-normal-*-*-100-*-*-*-*-*-*" +#~ msgstr "-*-helvetica-medium-o-normal-*-*-100-*-*-*-*-*-*" + +#~ msgid "-*-helvetica-medium-r-normal-*-*-100-*-*-*-*-*-*,*" +#~ msgstr "-*-helvetica-medium-r-normal-*-*-100-*-*-*-*-*-*,*" + +#~ msgid "Installation Log" +#~ msgstr "Log di Installazione" + +#~ msgid "-*-helvetica-medium-r-normal-*-*-120-*-*-*-*-*-*,*" +#~ msgstr "-*-helvetica-medium-r-normal-*-*-120-*-*-*-*-*-*,*" + +#~ msgid "" +#~ "\n" +#~ "Installation successful!\n" +#~ msgstr "" +#~ "\n" +#~ "Installazione Completata!\n" + +#~ msgid "/File/Dialogs" +#~ msgstr "/File/Finestre" + +#~ msgid "/File" +#~ msgstr "/File" + +#~ msgid "/Edit" +#~ msgstr "/Modifica" + +#~ msgid "/Edit/Buffer" +#~ msgstr "/Modifica/Buffer" + +#~ msgid "/Select" +#~ msgstr "/Selezione" + +#~ msgid "/View" +#~ msgstr "/Visualizza" + +#~ msgid "/View/Zoom" +#~ msgstr "/Visualizza/Zoom" + +#~ msgid "/Image" +#~ msgstr "/Immagine" + +#~ msgid "/Image/Mode" +#~ msgstr "/Immagine/ModalitЮ" + +#~ msgid "/Image/Colors" +#~ msgstr "/Immagine/Colori" + +#~ msgid "/Image/Colors/Auto" +#~ msgstr "/Immagine/Colori/Auto" + +#~ msgid "/Image/Alpha" +#~ msgstr "/Immagine/Alpha" + +#~ msgid "/Image/Transforms" +#~ msgstr "/Immagine/Trasforma" + +#~ msgid "/Layers" +#~ msgstr "/Livelli" + +#~ msgid "/Layers/Stack" +#~ msgstr "/Livelli/Pila" + +#~ msgid "/Tools" +#~ msgstr "/Strumenti" + +#~ msgid "/Tools/Select Tools" +#~ msgstr "/Strumenti/Strumenti Selezione" + +#~ msgid "/Tools/Transform Tools" +#~ msgstr "/Strumenti/Strumenti Trasformazione" + +#~ msgid "/Tools/Paint Tools" +#~ msgstr "/Strumenti/Strumenti Disegno" + +#~ msgid "/Dialogs" +#~ msgstr "/Finestre" + +#~ msgid "/Filters" +#~ msgstr "/Filtri" + +#~ msgid "/Script-Fu" +#~ msgstr "/Script-Fu" + +#~ msgid "/Stack" +#~ msgstr "/Pila" + +#~ msgid "Bytes" +#~ msgstr "Byte" + +#~ msgid "KiloBytes" +#~ msgstr "KByte" + +#~ msgid "MegaBytes" +#~ msgstr "MByte" + #~ msgid "Fill Options" #~ msgstr "Opzioni di Riempimento" @@ -7527,8 +7671,8 @@ msgstr "Storico Colore" #~ msgid "Add Channel To Selection" #~ msgstr "Aggiungi Canale alla Selezione" -#~ msgid "\t\tyou quit the GIMP.\n" -#~ msgstr "\t\tuscite da GIMP.\n" +#~ msgid "you quit the GIMP.\n" +#~ msgstr "uscite da GIMP.\n" #~ msgid "" #~ "Unable to set sensitivity for menu which doesn't exist:\n" diff --git a/po/ja.po b/po/ja.po index 66c9e227d8..6c28044d00 100644 --- a/po/ja.po +++ b/po/ja.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: GIMP 1.1.18\n" -"POT-Creation-Date: 2000-03-09 00:06+0900\n" +"POT-Creation-Date: 2000-03-14 23:09+0100\n" "PO-Revision-Date: 2000-03-09 00:09+09:00\n" "Last-Translator: гР╨Й бы╧╟ \n" "Language-Team: Japanese \n" @@ -63,45 +63,45 @@ msgstr " msgid "GIMP Startup" msgstr "GIMP ╣╞ф╟цФ" -#: app/app_procs.c:479 app/gimprc.c:432 +#: app/app_procs.c:479 app/gimprc.c:448 #, c-format msgid "parsing \"%s\"\n" msgstr "фи╓ъ╧Ч╓ъцФ \"%s\"\n" #. initialize the xcf file format routines -#: app/app_procs.c:539 +#: app/app_procs.c:541 msgid "Looking for data files" msgstr "╔г║╪╔©╔у╔║╔╓╔К╓Р╦║╨ВцФ" -#: app/app_procs.c:539 +#: app/app_procs.c:541 msgid "Parasites" msgstr "╔я╔И╔╣╔╓╔х" #. initialize the global parasite table -#: app/app_procs.c:541 app/internal_procs.c:71 app/preferences_dialog.c:2468 +#: app/app_procs.c:543 app/internal_procs.c:71 app/preferences_dialog.c:2397 msgid "Brushes" msgstr "╔ж╔И╔╥" #. initialize the list of gimp brushes -#: app/app_procs.c:543 app/internal_procs.c:143 app/preferences_dialog.c:2476 +#: app/app_procs.c:545 app/internal_procs.c:143 app/preferences_dialog.c:2405 msgid "Patterns" msgstr "╔я╔©║╪╔С" #. initialize the list of gimp patterns -#: app/app_procs.c:545 app/preferences_dialog.c:2480 +#: app/app_procs.c:547 app/preferences_dialog.c:2409 msgid "Palettes" msgstr "╔я╔Л╔ц╔х" #. initialize the list of gimp palettes -#: app/app_procs.c:547 app/internal_procs.c:113 app/preferences_dialog.c:2484 +#: app/app_procs.c:549 app/internal_procs.c:113 app/preferences_dialog.c:2413 msgid "Gradients" msgstr "╔╟╔И╔г║╪╔╥╔Г╔С" -#: app/app_procs.c:735 +#: app/app_procs.c:737 msgid "Really Quit?" msgstr "╫╙н╩╓╥╓ч╓╧╓╚?" -#: app/app_procs.c:739 +#: app/app_procs.c:741 msgid "" "Some files unsaved.\n" "\n" @@ -111,21 +111,21 @@ msgstr "" "\n" "GIMP ╓Р╫╙н╩╓╥╓ч╓╧╓╚?" -#: app/app_procs.c:740 app/install.c:272 app/install.c:430 +#: app/app_procs.c:742 msgid "Quit" msgstr "╫╙н╩" -#: app/app_procs.c:740 app/brightness_contrast.c:218 app/channel_ops.c:93 +#: app/app_procs.c:742 app/brightness_contrast.c:218 app/channel_ops.c:93 #: app/channels_dialog.c:2463 app/channels_dialog.c:2637 #: app/color_balance.c:275 app/color_notebook.c:125 app/convert.c:506 #: app/curves.c:559 app/file_new_dialog.c:207 app/file_new_dialog.c:357 #: app/gdisplay_color_ui.c:129 app/gdisplay_ops.c:346 app/gimpprogress.c:112 -#: app/global_edit.c:739 app/gradient.c:1769 app/gradient.c:4839 -#: app/gradient.c:5400 app/hue_saturation.c:377 app/interface.c:984 -#: app/layers_dialog.c:3326 app/layers_dialog.c:3517 app/layers_dialog.c:3617 -#: app/layers_dialog.c:3889 app/levels.c:341 app/palette.c:1826 -#: app/posterize.c:201 app/preferences_dialog.c:1469 app/qmask.c:281 -#: app/resize.c:193 app/resize.c:1343 app/threshold.c:275 +#: app/global_edit.c:739 app/gradient.c:1769 app/gradient.c:4841 +#: app/gradient.c:5402 app/hue_saturation.c:377 app/install.c:532 +#: app/interface.c:984 app/layers_dialog.c:3326 app/layers_dialog.c:3517 +#: app/layers_dialog.c:3617 app/layers_dialog.c:3889 app/levels.c:341 +#: app/palette.c:1826 app/posterize.c:201 app/preferences_dialog.c:1434 +#: app/qmask.c:281 app/resize.c:195 app/resize.c:1345 app/threshold.c:275 #: modules/cdisplay_gamma.c:358 msgid "Cancel" msgstr "╪Х╬ц" @@ -146,123 +146,124 @@ msgstr " msgid "Paintbrush operation failed." msgstr "Ё╗и╝аЮ╨Н╪╨гт." -#: app/blend.c:272 +#: app/blend.c:294 msgid "Offset:" msgstr "╔╙╔у╔╩╔ц╔х:" -#: app/blend.c:283 +#: app/blend.c:305 msgid "FG to BG (RGB)" msgstr "а╟╥й╓╚╓Игь╥й (RGB)" -#: app/blend.c:284 +#: app/blend.c:306 msgid "FG to BG (HSV)" msgstr "а╟╥й╓╚╓Игь╥й (HSV)" -#: app/blend.c:285 +#: app/blend.c:307 msgid "FG to Transparent" msgstr "а╟╥й╓╚╓Иф╘лю╓к" -#: app/blend.c:286 -msgid "Custom from Editor" -msgstr "╔╗╔г╔ё╔©╓╚╓Ифх╪╚╓к" +#: app/blend.c:308 +#, fuzzy +msgid "Custom Gradient" +msgstr "╔╟╔И╔г║╪╔╥╔Г╔Сйёю╫" -#: app/blend.c:290 +#: app/blend.c:312 msgid "Blend:" msgstr "╔ж╔Л╔С╔и:" -#: app/blend.c:298 app/gradient.c:533 app/preferences_dialog.c:2209 +#: app/blend.c:320 app/gradient.c:533 app/preferences_dialog.c:2137 msgid "Linear" msgstr "юЧ╥а" -#: app/blend.c:299 +#: app/blend.c:321 msgid "Bi-Linear" msgstr "ап╟Л╪║" -#: app/blend.c:300 +#: app/blend.c:322 msgid "Radial" msgstr "йЭ╪м╬У" -#: app/blend.c:301 +#: app/blend.c:323 msgid "Square" msgstr "╩мЁя╥а" -#: app/blend.c:302 +#: app/blend.c:324 msgid "Conical (symmetric)" msgstr "╠ъ©М╥а (бп╬н)" -#: app/blend.c:303 +#: app/blend.c:325 msgid "Conical (asymmetric)" msgstr "╠ъ©М╥а (хСбп╬н)" -#: app/blend.c:304 +#: app/blend.c:326 msgid "Shapeburst (angular)" msgstr "╥а╬У╧╜╓╛╓Й (Ёяд╔╓ц╓©)" -#: app/blend.c:305 +#: app/blend.c:327 msgid "Shapeburst (spherical)" msgstr "╥а╬У╧╜╓╛╓Й (╣Елл)" -#: app/blend.c:306 +#: app/blend.c:328 msgid "Shapeburst (dimpled)" msgstr "╥а╬У╧╜╓╛╓Й (╓╞╓э╓ъ)" -#: app/blend.c:307 +#: app/blend.c:329 msgid "Spiral (clockwise)" msgstr "мФюШ (╩Ч╥в╡С╓Й)" -#: app/blend.c:308 +#: app/blend.c:330 msgid "Spiral (anticlockwise)" msgstr "мФюШ (х©╩Ч╥в╡С╓Й)" -#: app/blend.c:312 +#: app/blend.c:334 msgid "Gradient:" msgstr "╔╟╔И╔г║╪╔╥╔Г╔С:" -#: app/blend.c:320 app/preferences_dialog.c:1808 +#: app/blend.c:342 app/preferences_dialog.c:1769 msgid "None" msgstr "╓й╓╥" -#: app/blend.c:321 +#: app/blend.c:343 msgid "Sawtooth Wave" msgstr "╣Ь╩У" -#: app/blend.c:322 +#: app/blend.c:344 msgid "Triangular Wave" msgstr "╩╟Ёягх" -#: app/blend.c:326 +#: app/blend.c:348 msgid "Repeat:" msgstr "х©иЭ:" -#: app/blend.c:345 +#: app/blend.c:367 msgid "Adaptive Supersampling" msgstr "е╛╠Ч╥©╔╧║╪╔я║╪╔╣╔С╔в╔Й╔С╔╟" -#: app/blend.c:373 +#: app/blend.c:395 msgid "Max Depth:" msgstr "╨гбГ©╪еы:" -#: app/blend.c:386 app/bucket_fill.c:127 app/fuzzy_select.c:657 +#: app/blend.c:408 app/bucket_fill.c:127 app/fuzzy_select.c:661 msgid "Threshold:" msgstr "ОГцм:" -#: app/blend.c:413 +#: app/blend.c:435 msgid "Blend: Invalid for indexed images." msgstr "╔ж╔Л╔С╔и: ╔╓╔С╔г╔ц╔╞╔╧╡ХаЭ╓к╓©╓╓╓╥╓ф╓ол╣╦З╓г╓╧." -#: app/blend.c:438 +#: app/blend.c:460 msgid "Blend: 0, 0" msgstr "╔ж╔Л╔С╔и: 0, 0" -#: app/blend.c:501 +#: app/blend.c:523 msgid "Blend operation failed." msgstr "╔ж╔Л╔С╔иаЮ╨Н╪╨гт." -#: app/blend.c:507 +#: app/blend.c:529 msgid "Blending..." msgstr "╔ж╔Л╔С╔и╓╥╓ф╓╓╓ч╓╧..." -#: app/blend.c:585 app/blend.c:595 +#: app/blend.c:607 app/blend.c:617 msgid "Blend: " msgstr "╔ж╔Л╔С╔и: " @@ -281,8 +282,8 @@ msgstr " #: app/gdisplay_color_ui.c:127 app/gimpui.c:122 app/hue_saturation.c:373 #: app/layers_dialog.c:3324 app/layers_dialog.c:3515 app/layers_dialog.c:3615 #: app/layers_dialog.c:3887 app/levels.c:337 app/module_db.c:281 -#: app/posterize.c:197 app/preferences_dialog.c:1465 app/qmask.c:279 -#: app/resize.c:191 app/resize.c:1343 app/threshold.c:271 +#: app/posterize.c:197 app/preferences_dialog.c:1430 app/qmask.c:279 +#: app/resize.c:193 app/resize.c:1345 app/threshold.c:271 #: modules/cdisplay_gamma.c:351 msgid "OK" msgstr "н╩╡Р" @@ -476,7 +477,7 @@ msgstr "%s msgid "Selection Mask" msgstr "а╙бР╔ч╔╧╔╞" -#: app/channel_ops.c:85 app/resize.c:392 +#: app/channel_ops.c:85 app/resize.c:394 msgid "Offset" msgstr "╔╙╔у╔╩╔ц╔х" @@ -486,8 +487,8 @@ msgid "Offset X:" msgstr "X ╔╙╔у╔╩╔ц╔х:" #: app/channel_ops.c:115 app/crop.c:1063 app/file_new_dialog.c:530 -#: app/resize.c:330 app/resize.c:415 app/resize.c:573 app/rotate_tool.c:106 -#: app/scale_tool.c:100 app/shear_tool.c:82 +#: app/install.c:1108 app/resize.c:332 app/resize.c:417 app/resize.c:575 +#: app/rotate_tool.c:106 app/scale_tool.c:100 app/shear_tool.c:82 msgid "Y:" msgstr "Y:" @@ -496,12 +497,12 @@ msgstr "Y:" msgid "Wrap Around" msgstr "╡С╓Й╧Ч╓ъ" -#: app/channel_ops.c:174 app/image_new.c:69 app/image_new.c:223 +#: app/channel_ops.c:174 app/image_new.c:70 app/image_new.c:234 #: app/layers_dialog.c:3422 msgid "Background" msgstr "гь╥й" -#: app/channel_ops.c:175 app/image_new.c:79 app/layers_dialog.c:3424 +#: app/channel_ops.c:175 app/image_new.c:80 app/layers_dialog.c:3424 msgid "Transparent" msgstr "ф╘лю" @@ -680,19 +681,19 @@ msgstr " msgid "Update Active Color" msgstr "╔╒╔╞╔ф╔ё╔ж╓й©╖╓н╧╧©╥" -#: app/color_picker.c:255 app/color_picker.c:265 +#: app/color_picker.c:255 app/color_picker.c:264 msgid "Red:" msgstr "юж:" -#: app/color_picker.c:256 app/color_picker.c:266 +#: app/color_picker.c:256 app/color_picker.c:265 msgid "Green:" msgstr "нп:" -#: app/color_picker.c:257 app/color_picker.c:267 +#: app/color_picker.c:257 app/color_picker.c:266 msgid "Blue:" msgstr "юд:" -#: app/color_picker.c:258 app/color_picker.c:264 app/color_picker.c:273 +#: app/color_picker.c:258 app/color_picker.c:267 app/color_picker.c:273 msgid "Alpha:" msgstr "╔╒╔К╔у╔║:" @@ -713,13 +714,13 @@ msgstr "16 msgid "Intensity:" msgstr "╤╞еы:" -#: app/color_picker.c:633 app/color_picker.c:634 app/color_picker.c:635 -#: app/color_picker.c:636 app/color_picker.c:637 app/color_picker.c:638 -#: app/color_picker.c:639 app/color_picker.c:657 app/color_picker.c:672 -#: app/color_picker.c:690 app/info_window.c:185 app/info_window.c:191 -#: app/info_window.c:197 app/info_window.c:203 app/info_window.c:422 -#: app/info_window.c:423 app/info_window.c:424 app/info_window.c:425 -#: app/info_window.c:447 +#: app/color_picker.c:626 app/color_picker.c:627 app/color_picker.c:628 +#: app/color_picker.c:629 app/color_picker.c:630 app/color_picker.c:631 +#: app/color_picker.c:632 app/color_picker.c:644 app/color_picker.c:651 +#: app/color_picker.c:669 app/color_picker.c:684 app/info_window.c:185 +#: app/info_window.c:191 app/info_window.c:197 app/info_window.c:203 +#: app/info_window.c:422 app/info_window.c:423 app/info_window.c:424 +#: app/info_window.c:425 app/info_window.c:447 msgid "N/A" msgstr "N/A" @@ -921,7 +922,7 @@ msgid "Width:" msgstr "иЩ:" #: app/crop.c:1079 app/file_new_dialog.c:395 app/file_new_dialog.c:413 -#: app/layers_dialog.c:3363 app/resize.c:240 app/resize.c:265 app/resize.c:510 +#: app/layers_dialog.c:3363 app/resize.c:242 app/resize.c:267 app/resize.c:512 #: app/scale_tool.c:79 app/scale_tool.c:86 app/tool_options.c:349 msgid "Height:" msgstr "╧Б╓╣:" @@ -974,7 +975,7 @@ msgid "Load" msgstr "фи╓ъ╧Ч╓ъ" #: app/curves.c:704 app/devices.c:753 app/levels.c:608 app/palette.c:2068 -#: app/preferences_dialog.c:357 app/preferences_dialog.c:1467 +#: app/preferences_dialog.c:357 app/preferences_dialog.c:1432 msgid "Save" msgstr "йщб╦" @@ -1185,17 +1186,17 @@ msgstr " msgid "New Image" msgstr "©╥╣╛╡ХаЭ" -#: app/file_new_dialog.c:453 app/preferences_dialog.c:1540 -#: app/preferences_dialog.c:1577 +#: app/file_new_dialog.c:453 app/install.c:1093 app/preferences_dialog.c:1505 +#: app/preferences_dialog.c:1542 msgid "Pixels" msgstr "╔т╔╞╔╩╔К" #. the resolution labels -#: app/file_new_dialog.c:524 app/resize.c:567 +#: app/file_new_dialog.c:524 app/resize.c:569 msgid "Resolution X:" msgstr "╡РаЭеы X:" -#: app/file_new_dialog.c:545 app/resize.c:588 +#: app/file_new_dialog.c:545 app/resize.c:590 msgid "pixels/%a" msgstr "╔т╔╞╔╩╔К/%a" @@ -1225,7 +1226,7 @@ msgstr "" msgid "No Selection." msgstr "а╙бР╓й╓╥." -#: app/fileops.c:418 app/fileops.c:1624 app/fileops.c:1731 +#: app/fileops.c:418 app/fileops.c:1629 app/fileops.c:1736 #, c-format msgid "Save failed: %s" msgstr "йщб╦╪╨гт: %s" @@ -1250,58 +1251,58 @@ msgstr " msgid "Revert failed." msgstr "иЭ╣╒╪╨гт." -#: app/fileops.c:1240 +#: app/fileops.c:1245 msgid "(This thumbnail may be out of date)" msgstr "(╓Ё╓н╢й╟ви╫╪╗╓о╓Б╓╕╦е╓╓)" -#: app/fileops.c:1241 +#: app/fileops.c:1246 msgid "(No Information)" msgstr "(╬ПйС╓й╓╥)" -#: app/fileops.c:1251 +#: app/fileops.c:1256 msgid "(Thumbnail saving is disabled)" msgstr "(╢й╟ви╫╪╗йщб╦л╣╦З)" -#: app/fileops.c:1255 +#: app/fileops.c:1260 msgid "(Could not write thumbnail file)" msgstr "(╢й╟ви╫╪╗╔у╔║╔╓╔К╫Я╓╜╫п╓╥╪╨гт)" -#: app/fileops.c:1259 +#: app/fileops.c:1264 msgid "(Thumbnail file not written)" msgstr "(╢й╟ви╫╪╗╔у╔║╔╓╔К╓о╫Я╓╚╓Л╓ф╓╓╓й╓╓)" -#: app/fileops.c:1276 +#: app/fileops.c:1281 msgid "No preview available" msgstr "╔в╔Л╔с╔Е║╪л╣╓╥" -#: app/fileops.c:1394 +#: app/fileops.c:1399 msgid "(could not make preview)" msgstr "(╔в╔Л╔с╔Е║╪╨Ню╝╪╨гт)" -#: app/fileops.c:1467 app/fileops.c:1546 +#: app/fileops.c:1472 app/fileops.c:1551 #, c-format msgid "Open failed: %s" msgstr "фи╓ъ╧Ч╓ъ╪╨гт: %s" -#: app/fileops.c:1602 +#: app/fileops.c:1607 #, c-format msgid "%s is an irregular file (%s)" msgstr "%s ╓о╡У╓Л╓ф╓╓╓ч╓╧ (%s)" -#: app/fileops.c:1670 +#: app/fileops.c:1675 #, c-format msgid "%s exists, overwrite?" msgstr "%s ╓об╦╨ъ╓╥╓ч╓╧║╒╬Е╫Я╓╜╓╥╓ч╓╧╓╚?" -#: app/fileops.c:1674 +#: app/fileops.c:1679 msgid "File Exists!" msgstr "╔у╔║╔╓╔К╓об╦╨ъ╓╥╓ч╓╧!" -#: app/fileops.c:1680 +#: app/fileops.c:1685 msgid "Yes" msgstr "╓о╓╓" -#: app/fileops.c:1682 +#: app/fileops.c:1687 msgid "No" msgstr "╓╓╓╓╓╗" @@ -1309,13 +1310,13 @@ msgstr " msgid "Flip Tool" msgstr "х©е╬╔д║╪╔К" -#: app/flip_tool.c:95 app/preferences_dialog.c:1591 -#: app/preferences_dialog.c:2355 +#: app/flip_tool.c:95 app/preferences_dialog.c:1556 +#: app/preferences_dialog.c:2284 msgid "Horizontal" msgstr "©Ей©" -#: app/flip_tool.c:97 app/preferences_dialog.c:1593 -#: app/preferences_dialog.c:2357 +#: app/flip_tool.c:97 app/preferences_dialog.c:1558 +#: app/preferences_dialog.c:2286 msgid "Vertical" msgstr "©Бд╬" @@ -1340,7 +1341,7 @@ msgstr "" msgid "RGB-empty" msgstr "RGB-л╓иа╡Х" -#: app/gdisplay.c:217 app/image_new.c:53 app/preferences_dialog.c:1637 +#: app/gdisplay.c:217 app/image_new.c:54 app/preferences_dialog.c:1602 msgid "RGB" msgstr "RGB" @@ -1479,23 +1480,23 @@ msgstr "" msgid "Failed to load pixmap brush." msgstr "pixmap ╔ж╔И╔╥фи╓ъ╧Ч╓ъ╪╨гт" -#: app/gimpdrawable.c:168 +#: app/gimpdrawable.c:166 msgid "Can't fill unknown image type." msgstr "итлю╓й╡ХаЭ╔©╔╓╔в╓й╓н╓геи╓Й╓д╓ж╓╩╓ч╓╩╓С." -#: app/gimpdrawable.c:512 +#: app/gimpdrawable.c:498 msgid "parasite attach to drawable" msgstr "иа╡Хбп╬щ╓к╔я╔И╔╣╔╓╔х╓Риу╡ц" -#: app/gimpdrawable.c:548 +#: app/gimpdrawable.c:533 msgid "detach parasite from drawable" msgstr "иа╡Хбп╬щ╓╚╓И╔я╔И╔╣╔╓╔х╓Р╨О╫Э" -#: app/gimpdrawable.c:770 +#: app/gimpdrawable.c:740 msgid "unnamed" msgstr "л╬а╟╓й╓╥" -#: app/gimpdrawable.c:787 +#: app/gimpdrawable.c:757 #, c-format msgid "Layer type %d not supported." msgstr "╔Л╔╓╔Д║╪╔©╔╓╔в %d ╓к╓обп╠Ч╓╥╓ф╓╓╓ч╓╩╓С." @@ -1510,39 +1511,39 @@ msgstr "" "GtkXmHTML ╓╛╓й╓╓╓©╓А, ╔Ё╔С╔я╔╓╔К╓╣╓Л╓ф╓╓╓й╓╓\n" "╓н╓╚╓Б╓╥╓Л╓ч╓╩╓С." -#: app/gimpimage.c:1154 +#: app/gimpimage.c:1176 msgid "attach parasite to image" msgstr "╡ХаЭ╓к╔я╔И╔╣╔╓╔х╓Риу╡ц" -#: app/gimpimage.c:1177 +#: app/gimpimage.c:1201 msgid "detach parasite from image" msgstr "╡ХаЭ╓╚╓И╔я╔И╔╣╔╓╔х╓Р╨О╫Э" -#: app/gimpimage.c:2232 +#: app/gimpimage.c:2305 msgid "Layer cannot be raised any further" msgstr "╓Ё╓Л╟й╬Е╔Л╔╓╔Д║╪╓Ра╟лл╓к╟эф╟╓╣╓╩╓И╓Л╓ч╓╩╓С" -#: app/gimpimage.c:2258 +#: app/gimpimage.c:2333 msgid "Layer cannot be lowered any further" msgstr "╓Ё╓Л╟й╬Е╔Л╔╓╔Д║╪╓Ргьлл╓к╟эф╟╓╣╓╩╓И╓Л╓ч╓╩╓С" -#: app/gimpimage.c:2282 +#: app/gimpimage.c:2359 msgid "Layer is already on top" msgstr "╔Л╔╓╔Д║╪╓о╢Ш╓к╨га╟лл╓к╓╒╓Й╓ч╓╧" -#: app/gimpimage.c:2288 +#: app/gimpimage.c:2365 msgid "Can't raise Layer without alpha" msgstr "╔╒╔К╔у╔║╔а╔Ц╔С╔м╔К╓нл╣╓╓╔Л╔╓╔Д║╪╓Ра╟лл╓к╓о╫п╓╩╓ч╓╩╓С" -#: app/gimpimage.c:2315 +#: app/gimpimage.c:2393 msgid "Layer is already on bottom" msgstr "╔Л╔╓╔Д║╪╓о╢Ш╓к╨ггьлл╓к╓╒╓Й╓ч╓╧" -#: app/gimpimage.c:2370 +#: app/gimpimage.c:2448 msgid "BG has no alpha, layer was placed above" msgstr "гь╥й╓к╓о╔╒╔К╔у╔║╔а╔Ц╔С╔м╔К╓╛л╣╓╞, ╔Л╔╓╔Д║╪╓о╓╫╓на╟╓кцж╓╚╓Л╓ф╓╓╓ч╓╧" -#: app/gimpimage.c:2439 +#: app/gimpimage.c:2519 msgid "" "There are not enough visible layers for a merge.\n" "There must be at least two." @@ -1550,11 +1551,11 @@ msgstr "" "еЩ╧Г╓╧╓К╓©╓А╓н╡д╩К╔Л╔╓╔Д║╪╓╛б╜╓Й╓ч╓╩╓С.\n" "╬╞╓й╓╞╓х╓БфС╓д╓ои╛мв╓г╓╧." -#: app/gimpimage.c:2519 +#: app/gimpimage.c:2603 msgid "There are not enough visible layers for a merge down." msgstr "╡╪╓н╔Л╔╓╔Д║╪╓х╥К╧Г╓╧╓К╓©╓А╓к╫╫й╛╓й╡д╩К╔Л╔╓╔Д║╪╓╛╓╒╓Й╓ч╓╩╓С." -#: app/gimpimage.c:2915 +#: app/gimpimage.c:3005 msgid "" "Unable to add a layer mask since\n" "the layer already has one." @@ -1562,7 +1563,7 @@ msgstr "" "╢Ш╓к╔Л╔╓╔Д║╪╔ч╔╧╔╞╓╛╓╒╓К╓н╓г╓Ё╓Л╟й╬Е╔Л╔╓╔Д║╪╔ч╔╧╔╞╓Р\n" "иу╡ц╓╧╓К╩Ж╓о╓г╓╜╓ч╓╩╓С." -#: app/gimpimage.c:2919 +#: app/gimpimage.c:3009 msgid "" "Unable to add a layer mask to a\n" "layer in an indexed image." @@ -1570,7 +1571,7 @@ msgstr "" "╔╓╔С╔г╔ц╔╞╔╧╡ХаЭцФ╓н╔Л╔╓╔Д║╪╓к╔Л╔╓╔Д║╪╔ч╔╧╔╞╓Р\n" "иу╡ц╓╧╓К╩Ж╓о╓г╓╜╓ч╓╩╓С." -#: app/gimpimage.c:2923 +#: app/gimpimage.c:3013 msgid "" "Cannot add layer mask to a layer\n" "with no alpha channel." @@ -1578,20 +1579,20 @@ msgstr "" "╔╒╔К╔у╔║╔а╔Ц╔С╔м╔К╓Р╩Щ╓©╓й╓╓╔Л╔╓╔Д║╪╓к\n" "╔Л╔╓╔Д║╪╔ч╔╧╔╞╓Риу╡ц╓╧╓К╩Ж╓о╓г╓╜╓ч╓╩╓С." -#: app/gimpimage.c:2930 +#: app/gimpimage.c:3020 msgid "Cannot add layer mask of different dimensions than specified layer." msgstr "" "╩ьдЙ╓╥╓©╔Л╔╓╔Д║╪╓х╟ш╓КбГ╓╜╓╣╓Р╩Щ╓д╔Л╔╓╔Д║╪╔ч╔╧╔╞╓Риу╡ц╓╧╓К╓Ё╓х╓о╓г╓╜╓ч╓╩╓С." -#: app/gimpimage.c:3033 +#: app/gimpimage.c:3127 msgid "Channel cannot be raised any further" msgstr "╓Ё╓Л╟й╬Е╔а╔Ц╔С╔м╔К╓Р╬Е╬╨╓╣╓╩╓И╓Л╓ч╓╩╓С" -#: app/gimpimage.c:3082 +#: app/gimpimage.c:3178 msgid "Channel cannot be lowered any further" msgstr "╓Ё╓Л╟й╬Е╔а╔Ц╔С╔м╔К╓Р╡╪╧ъ╓╣╓╩╓И╓Л╓ч╓╩╓С" -#: app/gimpimage.c:3288 app/palette.c:364 app/palette.c:941 app/palette.c:1077 +#: app/gimpimage.c:3398 app/palette.c:364 app/palette.c:941 app/palette.c:1077 #: app/palette.c:2022 app/palette.c:2749 app/palette.c:2881 msgid "Untitled" msgstr "л╬╬нл╓юъдЙ" @@ -1604,45 +1605,45 @@ msgstr " msgid "Please wait..." msgstr "╓╙бт╓а╡╪╓╣╓╓..." -#: app/gimprc.c:401 app/plug_in.c:304 +#: app/gimprc.c:415 app/plug_in.c:304 msgid "Resource configuration" msgstr "╔Й╔╫║╪╔╧юъдЙ" -#: app/gimprc.c:451 +#: app/gimprc.c:467 #, c-format msgid "error parsing: \"%s\"\n" msgstr "фи╓ъ╧Ч╓ъцФ╓к╔╗╔И║╪: \"%s\"\n" -#: app/gimprc.c:452 +#: app/gimprc.c:468 #, c-format msgid " at line %d column %d\n" msgstr " %d ╧т╓н %d нСлэ\n" -#: app/gimprc.c:453 +#: app/gimprc.c:469 #, c-format msgid " unexpected token: %s\n" msgstr " итлю╓й╪╠йл╩р: %s\n" -#: app/gimprc.c:1455 +#: app/gimprc.c:1473 msgid "error parsing pluginrc" msgstr "pluginrc фи╓ъ╧Ч╓ъцФ╓к╔╗╔И║╪х╞ю╦" -#: app/gimprc.c:2832 +#: app/gimprc.c:2866 #, c-format msgid "Can't open %s; %s" msgstr "%s ╓РЁ╚╓╠╓ч╓╩╓С; %s" -#: app/gimprc.c:2851 +#: app/gimprc.c:2885 #, c-format msgid "Can't rename %s to %s.old; %s" msgstr "%s ╓Р %s.old ╓кйя╧╧╓г╓╜╓ч╓╩╓С; %s" -#: app/gimprc.c:2857 +#: app/gimprc.c:2891 #, c-format msgid "Couldn't reopen %s\n" msgstr "%s ╓Р╨ф╔╙║╪╔в╔С╓г╓╜╓ч╓╩╓С\n" -#: app/gimprc.c:2869 +#: app/gimprc.c:2903 #, c-format msgid "Can't write to %s; %s" msgstr "%s ╓к╫Я╓╜╧Ч╓А╓ч╓╩╓С; %s" @@ -1921,7 +1922,7 @@ msgstr " msgid "Distance: %0.6f" msgstr "╣Вн╔: %0.6f" -#: app/gradient.c:3387 app/gradient.c:4448 +#: app/gradient.c:3387 app/gradient.c:4450 msgid "Left endpoint's color" msgstr "╨╦╫╙ц╪©╖" @@ -1941,7 +1942,7 @@ msgstr " msgid "Save to" msgstr "║а╓ьйщб╦" -#: app/gradient.c:3429 app/gradient.c:4526 +#: app/gradient.c:3429 app/gradient.c:4528 msgid "Right endpoint's color" msgstr "╠╕╫╙ц╪©╖" @@ -1969,7 +1970,7 @@ msgstr " msgid "Split segment at midpoint" msgstr "╔╩╔╟╔А╔С╔х╓РцФ╢жею╓гй╛ЁД" -#: app/gradient.c:3734 app/gradient.c:4829 +#: app/gradient.c:3734 app/gradient.c:4831 msgid "Split segment uniformly" msgstr "╔╩╔╟╔А╔С╔х╓Р╤яеЫ╓кй╛ЁД" @@ -1989,7 +1990,7 @@ msgstr " msgid "Flip segment" msgstr "╔╩╔╟╔А╔С╔х╓н╨╦╠╕х©е╬" -#: app/gradient.c:3744 app/gradient.c:5390 +#: app/gradient.c:3744 app/gradient.c:5392 msgid "Replicate segment" msgstr "╔╩╔╟╔А╔С╔х╓нйёю╫" @@ -2005,7 +2006,7 @@ msgstr " msgid "Split segments at midpoints" msgstr "╔╩╔╟╔А╔С╔х╥╡╓РцФ╢жею╓гй╛ЁД" -#: app/gradient.c:3755 app/gradient.c:4830 +#: app/gradient.c:3755 app/gradient.c:4832 msgid "Split segments uniformly" msgstr "╔╩╔╟╔А╔С╔х╥╡╓Р╤яеЫ╓кй╛ЁД" @@ -2025,7 +2026,7 @@ msgstr " msgid "Flip selection" msgstr "а╙бРнн╟Х╓Р╨╦╠╕х©е╬" -#: app/gradient.c:3765 app/gradient.c:5391 +#: app/gradient.c:3765 app/gradient.c:5393 msgid "Replicate selection" msgstr "а╙бРнн╟Х╓Рйёю╫" @@ -2038,49 +2039,49 @@ msgstr " msgid "RGBA (%0.3f, %0.3f, %0.3f, %0.3f)" msgstr "RGBA (%0.3f, %0.3f, %0.3f, %0.3f)" -#: app/gradient.c:4615 app/gradient.c:4685 +#: app/gradient.c:4617 app/gradient.c:4687 msgid "(Varies)" msgstr "(йя╧╧)" -#: app/gradient.c:4837 +#: app/gradient.c:4839 msgid "Split" msgstr "й╛ЁД" #. Instructions -#: app/gradient.c:4851 +#: app/gradient.c:4853 msgid "Please select the number of uniform parts" msgstr "а╙бРцФ╓н╔╩╔╟╔А╔С╔х(╥╡)╓Р" -#: app/gradient.c:4857 +#: app/gradient.c:4859 msgid "in which you want to split the selected segment" msgstr "╓╓╓╞╓д╓кй╛ЁД╓╧╓К╓╚а╙бР╓╥╓ф╡╪╓╣╓╓" -#: app/gradient.c:4858 +#: app/gradient.c:4860 msgid "in which you want to split the segments in the selection" msgstr "╓╓╓╞╓д╓╨╓д╓кй╛ЁД╓╧╓К╓╚а╙бР╓╥╓ф╡╪╓╣╓╓" -#: app/gradient.c:5218 +#: app/gradient.c:5220 msgid "Blend endpoints' colors" msgstr "╫╙ц╪╓н©╖╓Р╨╝╓╪╓К" -#: app/gradient.c:5230 +#: app/gradient.c:5232 msgid "Blend endpoints' opacity" msgstr "╫╙ц╪╓нитф╘люеы╓Р╨╝╓╪╓К" -#: app/gradient.c:5398 +#: app/gradient.c:5400 msgid "Replicate" msgstr "йёю╫" #. Instructions -#: app/gradient.c:5411 +#: app/gradient.c:5413 msgid "Please select the number of times" msgstr "а╙бРцФ╓н╔╩╔╟╔А╔С╔х(╥╡)╓Р" -#: app/gradient.c:5416 +#: app/gradient.c:5418 msgid "you want to replicate the selected segment" msgstr "╡©╡Сйёю╫╓╧╓К╓╚а╙бР╓╥╓ф╡╪╓╣╓╓" -#: app/gradient.c:5417 +#: app/gradient.c:5419 msgid "you want to replicate the selection" msgstr "╡©╡Сйёю╫╓╧╓К╓╚а╙бР╓╥╓ф╡╪╓╣╓╓" @@ -2184,45 +2185,45 @@ msgstr " msgid "Saturation" msgstr "╨леы" -#: app/image_new.c:58 app/info_window.c:65 app/info_window.c:534 -#: app/preferences_dialog.c:1638 +#: app/image_new.c:59 app/info_window.c:65 app/info_window.c:534 +#: app/preferences_dialog.c:1603 msgid "Grayscale" msgstr "╔╟╔Л║╪╔╧╔╠║╪╔К" -#: app/image_new.c:64 app/layers_dialog.c:3421 +#: app/image_new.c:65 app/layers_dialog.c:3421 msgid "Foreground" msgstr "а╟╥й" -#: app/image_new.c:74 app/layers_dialog.c:3423 +#: app/image_new.c:75 app/layers_dialog.c:3423 msgid "White" msgstr "гР" -#: app/image_new.c:262 +#: app/image_new.c:273 #, c-format msgid "%d Bytes" msgstr "%d Bytes" -#: app/image_new.c:264 +#: app/image_new.c:275 #, c-format msgid "%.2f KB" msgstr "%.2f KB" -#: app/image_new.c:266 +#: app/image_new.c:277 #, c-format msgid "%.1f KB" msgstr "%.1f KB" -#: app/image_new.c:268 +#: app/image_new.c:279 #, c-format msgid "%d KB" msgstr "%d KB" -#: app/image_new.c:270 +#: app/image_new.c:281 #, c-format msgid "%.2f MB" msgstr "%.2f MB" -#: app/image_new.c:272 +#: app/image_new.c:283 #, c-format msgid "%.1f MB" msgstr "%.1f MB" @@ -2250,8 +2251,8 @@ msgstr "" "╔╒╔╞╔ф╔ё╔ж╓к╓й╓ц╓ф╓╓╓К╔╟╔И╔г║╪╔╥╔Г╔С╓г╓╧. " "╔╞╔Й╔ц╔╞╓╧╓К╓х╔╟╔И╔г║╪╔╥╔Г╔С╔ю╔╓╔╒╔М╔╟╓Ри╫╪╗╓╥╓ч╓╧." -#: app/info_dialog.c:181 app/preferences_dialog.c:1782 -#: app/preferences_dialog.c:1888 +#: app/info_dialog.c:181 app/preferences_dialog.c:1743 +#: app/preferences_dialog.c:1849 msgid "General" msgstr "╟Лхл" @@ -2383,11 +2384,11 @@ msgstr " msgid "Shape" msgstr "╥а╬У" -#: app/install.c:83 +#: app/install.c:95 msgid "The GIMP is not properly installed for the current user\n" msgstr "GIMP ╓ою╣╬О╓к╔╓╔С╔╧╔х║╪╔К╓╣╓Л╓ф╓╓╓ч╓╩╓С\n" -#: app/install.c:84 +#: app/install.c:96 msgid "" "User installation was skipped because the '--nointerface' flag was " "encountered\n" @@ -2395,27 +2396,337 @@ msgstr "" "'--nointerface' " "╔у╔И╔╟иу╓╜╓г╣╞ф╟╓╣╓Л╓©╓©╓А║╒╔Ф║╪╔╤║╪╔╓╔С╔╧╔х║╪╔К╓о╪б╧т╓╣╓Л╓ч╓╩╓С\n" -#: app/install.c:85 +#: app/install.c:97 msgid "" "To perform user installation, run the GIMP without the '--nointerface' flag\n" msgstr "" "╔Ф║╪╔╤║╪╔╓╔С╔╧╔х║╪╔К╓Р╧т╓╕╓к╓о║╒'--nointerface' ╔у╔И╔╟╓Риу╓╠╓╨╓к GIMP " "╓Р╣╞ф╟╓╥╓ф╡╪╓╣╓╓\n" -#: app/install.c:113 +#: app/install.c:142 +#, fuzzy +msgid "" +"The gimprc is used to store personal preferences\n" +"that affect GIMP's default behavior.\n" +"Paths to search for brushes, palettes, gradients,\n" +"patterns, plug-ins and modules can also configured here." +msgstr "" +"gimprc ╓о GIMP ╓н╢Пкэф╟╨Н╓к╢ь╓╧╓К╦д©мюъдЙ╓Рйщб╦╓╧╓К\n" +"╓©╓А╓к╩хмя╓╣╓Л╓ч╓╧. ╔ж╔И╔╥, ╔я╔Л╔ц╔х, ╔╟╔И╔г║╪╔╥╔Г╔С,\n" +"╔я╔©║╪╔С, ╔в╔И╔╟╔╓╔С╓Д╔Б╔╦╔Е║╪╔КеЫ╓Р╦║╨В╓╧╓К╔я╔╧╓Б\n" +"╓Ё╓н╔у╔║╔╓╔К╓гюъдЙ╓╣╓Л╓ч╓╧.\n" + +#: app/install.c:149 +msgid "" +"GIMP uses an additional gtkrc file so you can\n" +"configure it to look differently than other GTK apps." +msgstr "" + +#: app/install.c:154 +#, fuzzy +msgid "" +"Plug-ins and extensions are external programs run by\n" +"the GIMP which provide additional functionality.\n" +"These programs are searched for at run-time and\n" +"information about their functionality and mod-times\n" +"is cached in this file. This file is intended to\n" +"be GIMP-readable only, and should not be edited." +msgstr "" +"╣║г╫╓Рди╡ц╓╧╓К╓©╓А╓н╔в╔И╔╟╔╓╔С╓Д╣║г╫Ёхд╔╓о,\n" +"GIMP ╓к╓Х╓ц╓ф╪б╧т╓╣╓Л╓КЁ╟иТ╔в╔М╔╟╔И╔Ю╓г╓╧.\n" +"╓Ё╓Л╓И╓н╔в╔М╔╟╔И╔Ю╓о╪б╧т╩Ч╓к╦║╨В╓╣╓Л, ╣║г╫╓ДфЁфЧ\n" +"╓╣╓Л╓©фЭ╩ЧеЫ╓н╬ПйС╓╛╓Ё╓н╔у╔║╔╓╔К╓к╔╜╔Ц╔ц╔╥╔Е╓╣╓Л\n" +"╓ч╓╧. ╦д╓н╔у╔║╔╓╔К╓о GIMP ╓к╓Х╓ц╓ф╓н╓ъйя╧╧╓╣╓Л╓К\n" +"╓Б╓н╓г, ╔Ф║╪╔╤╓╛йя╧╧╓Р╡ц╓╗╓К╓ы╓╜╓г╓о╓╒╓Й╓ч╓╩╓С.\n" + +#: app/install.c:163 +#, fuzzy +msgid "" +"Key shortcuts can be dynamically redefined in The GIMP.\n" +"The menurc is a dump of your configuration so it can.\n" +"be remembered for the next session. You may edit this\n" +"file if you wish, but it is much easier to define the\n" +"keys from within The GIMP. Deleting this file will\n" +"restore the default shortcuts." +msgstr "" +"GIMP ╓н╔╜║╪╔╥╔Г║╪╔х╔╚╔ц╔х╓оф╟е╙╓кйя╧╧╓╧╓К╓Ё╓х╓╛\n" +"╓г╓╜╓ч╓╧. menurc ╓о╓╒╓й╓©╓нюъдЙ╓Р╫Я╓╜╫п╓╥╓©╓Б╓н╓г,\n" +"╪║╓к╣╞ф╟╓╥╓©╨щ╓к╨ф╓сф╠╓╦╓Б╓н╓╛м╜╦З╓к╓й╓Й╓ч╓╧.\n" +"╪Й╓г╓Ё╓н╔у╔║╔╓╔К╓Р╫Я╓╜йя╓╗╓К╓Ё╓х╓Б╓г╓╜╓ч╓╧╓╛,\n" +"GIMP ╪╚бн╓гйя╧╧╓╧╓КйЩ╓╛Ёз╓г╓╥╓Г╓╕. ╓Ё╓н╔у╔║╔╓╔К╓Р\n" +"╨О╫Э╓╧╓К╓Ё╓х╓г, ╔╥╔Г║╪╔х╔╚╔ц╔х╓Р╫И╢Э╡╫╓╧╓К╓Ё╓х╓╛\n" +"╓г╓╜╓ч╓╧.\n" + +#: app/install.c:172 +#, fuzzy +msgid "" +"The sessionrc is used to store what dialog windows were\n" +"open the last time you quit The GIMP. You can configure\n" +"The GIMP to reopen these dialogs at the saved position." +msgstr "" +"sessionrc ╓о GIMP ╫╙н╩╩Ч╓к╔ю╔╓╔╒╔М╔╟╔╕╔ё╔С╔и╔╕╓╛╓и╓Ё╓к\n" +"╓╒╓ц╓©╓╚╓Рйщб╦╓╧╓К╓©╓А╓н╔у╔║╔╓╔К╓г╓╧. ╓Ё╓н╔у╔║╔╓╔К╓к\n" +"йщб╦╓╣╓Л╓©╟лцж╓к╔ю╔╓╔╒╔М╔╟╓РЁ╚╓╞╓Х╓╕╓к GIMP ╓РюъдЙ\n" +"╓г╓╜╓ч╓╧.\n" + +#: app/install.c:178 +#, fuzzy +msgid "" +"The unitrc is used to store your user units database.\n" +"You can define additional units and use them just\n" +"like you use the built-in units inches, millimeters,\n" +"points and picas. This file is overwritten each time\n" +"you quit the GIMP." +msgstr "" +"unitrc ╓о╔Ф║╪╔╤ц╠╟л╔г║╪╔©╔ы║╪╔╧╓Рйщб╦╓╧╓К╓©╓А╓н╓Б╓н\n" +"╓г╓╧. ©╥╓©╓кц╠╟л╓Рди╡ц╓╥╓ф, ╓╒╓©╓╚╓Б╔╓╔С╔а, ╔щ╔╓╔С╔х,\n" +"╔ъ╔Й╔А║╪╔х╔К╓Д╔я╔╓╔╚╓х╓╓╓ц╓©фБб╒ц╠╟л╓хф╠еЫ╓кмя╓╓╓К\n" +"╓Ё╓х╓╛╓г╓╜╓ч╓╧. ╓Ё╓н╔у╔║╔╓╔К╓о GIMP ╫╙н╩╩Ч╓к╬Е╫Я╓╜\n" +"╓╣╓Л╓ч╓╧.\n" + +#: app/install.c:186 +#, fuzzy +msgid "" +"This is a subdirectory which can be used to store\n" +"user defined brushes. The default gimprc file\n" +"checks this subdirectory in addition to the system-\n" +"wide gimp brushes installation when searching for\n" +"brushes." +msgstr "" +"╔Ф║╪╔╤дЙ╣а╓н╔ж╔И╔╥╓Рйщб╦╓╧╓К╔╣╔ж╔г╔ё╔Л╔╞╔х╔Й╓г╓╧.\n" +"╔г╔у╔╘╔К╔х╓н gimprc ╓нюъдЙ╓г╓о╔╥╔╧╔ф╔Юа╢бн╓н╔ж╔И╔╥\n" +"╔г╔ё╔Л╔╞╔х╔Й╓кбЁ╓╠╓ф╓Ё╓н╔╣╔ж╔г╔ё╔Л╔╞╔х╔Й╓Р╦║╨В╓╧╓К\n" +"╓Х╓╕╓к╓й╓ц╓ф╓╓╓ч╓╧.\n" + +#: app/install.c:194 +#, fuzzy +msgid "" +"This is a subdirectory which is used to store brushes\n" +"that are created with the brush editor. The default\n" +"gimprc file checks this subdirectory when searching for\n" +"generated brushes." +msgstr "" +"╔ж╔И╔╥╔╗╔г╔ё╔©╓г╨Ню╝╓╥╓©╔ж╔И╔╥╓Рйщб╦╓╧╓К╓©╓А╓н╔╣╔ж\n" +"╔г╔ё╔Л╔╞╔х╔Й╓г╓╧. ╔г╔у╔╘╔К╔х╓н gimprc ╓нюъдЙ╓г╓ою╦ю╝\n" +"╓╣╓Л╓©╔ж╔И╔╥╓Р╦║╨В╓╧╓К╨щ╓к╓Ё╓н╔╣╔ж╔г╔ё╔Л╔╞╔х╔Й╓Р\n" +"╦║╨В╓╧╓К╓Х╓╕╓к╓й╓ц╓ф╓╓╓ч╓╧.\n" + +#: app/install.c:201 +#, fuzzy +msgid "" +"This is a subdirectory which can be used to store\n" +"user defined gradients. The default gimprc file\n" +"checks this subdirectory in addition to the system-\n" +"wide gimp gradients installation when searching for\n" +"gradients." +msgstr "" +"╔Ф║╪╔╤дЙ╣а╓н╔╟╔И╔г║╪╔╥╔Г╔С╓Рйщб╦╓╧╓К╔╣╔ж╔г╔ё╔Л╔╞╔х╔Й\n" +"╓г╓╧. ╔г╔у╔╘╔К╔х╓н gimprc ╓нюъдЙ╓г╓о╔╥╔╧╔ф╔Юа╢бн╓н\n" +"╔╟╔И╔г║╪╔╥╔Г╔С╔г╔ё╔Л╔╞╔х╔Й╓кбЁ╓╠╓ф╓Ё╓н╔╣╔ж╔г╔ё╔Л╔╞\n" +"╔х╔Й╓Р╦║╨В╓╧╓К╓Х╓╕╓к╓й╓ц╓ф╓╓╓ч╓╧.\n" + +#: app/install.c:209 +#, fuzzy +msgid "" +"This is a subdirectory which can be used to store\n" +"user defined palettes. The default gimprc file\n" +"checks only this subdirectory (not the system-wide\n" +"installation) when searching for palettes. During\n" +"installation, the system palettes will be copied\n" +"here. This is done to allow modifications made to\n" +"palettes during GIMP execution to persist across\n" +"sessions." +msgstr "" +"╔Ф║╪╔╤дЙ╣а╓н╔я╔Л╔ц╔х╓Рйщб╦╓╧╓К╓©╓А╓н╔г╔ё╔Л╔╞╔х╔Й╓г╓╧.\n" +"╔г╔у╔╘╔К╔х╓н gimprc ╓г╓о╔я╔Л╔ц╔х╓Р╦║╨В╓╧╓К╨щ╓к,\n" +"╓Ё╓н╔╥╔╧╔ф╔Ю╓н╔я╔Л╔ц╔х╓о╦║╨В╓╩╓╨, ╓Ё╓н╔г╔ё╔Л╔╞╔х╔Й\n" +"╓н╓ъ╦║╨В╓╧╓К╓Х╓╕╓к╓й╓ц╓ф╓╓╓ч╓╧. ╔╓╔С╔╧╔х║╪╔КцФ╓к\n" +"╔╥╔╧╔ф╔Ю╓н╔я╔Л╔ц╔х╓╛╓Ё╓н╔г╔ё╔Л╔╞╔х╔Й╓к╔Ё╔т║╪╓╣╓Л\n" +"╓ч╓╧. ╓Ё╓╕╓╧╓К╓Ё╓х╓г, GIMP ╓н╔╩╔ц╔╥╔Г╔С╓╛╫╙╓ц╓ф╓Б\n" +"╔я╔Л╔ц╔х╓Рйщ╩Щ╓╧╓К╓Ё╓х╓╛╓г╓╜╓К╓Х╓╕╓к╓й╓ц╓ф╓╓╓ч╓╧.\n" + +#: app/install.c:220 +#, fuzzy +msgid "" +"This is a subdirectory which can be used to store\n" +"user defined patterns. The default gimprc file\n" +"checks this subdirectory in addition to the system-\n" +"wide gimp patterns installation when searching for\n" +"patterns." +msgstr "" +"╔Ф║╪╔╤дЙ╣а╓н╔я╔©║╪╔С╓Рйщб╦╓╧╓К╔╣╔ж╔г╔ё╔Л╔╞╔х╔Й╓г╓╧.\n" +"╔г╔у╔╘╔К╔х╓н gimprc ╓нюъдЙ╓г╓о╔╥╔╧╔ф╔Юа╢бн╓н╔я╔©║╪╔С\n" +"╔г╔ё╔Л╔╞╔х╔Й╓кбЁ╓╠╓ф╓Ё╓н╔╣╔ж╔г╔ё╔Л╔╞╔х╔Й╓Р╦║╨В╓╧╓К\n" +"╓Х╓╕╓к╓й╓ц╓ф╓╓╓ч╓╧.\n" + +#: app/install.c:228 +#, fuzzy +msgid "" +"This is a subdirectory which can be used to store\n" +"user created, temporary, or otherwise non-system-\n" +"supported plug-ins. The default gimprc file\n" +"checks this subdirectory in addition to the system-\n" +"wide GIMP plug-in directories when searching for\n" +"plug-ins." +msgstr "" +"╔Ф║╪╔╤╓╛╨Ню╝╓╥╓©╟Л╩Че╙╓й, ╓Б╓╥╓╞╓о╔╥╔╧╔ф╔Ю╓г╔╣╔щ║╪╔х\n" +"╓╣╓Л╓й╓╓╔в╔И╔╟╔╓╔С╓Рйщб╦╓╧╓К╓©╓А╓н╔╣╔ж╔г╔ё╔Л╔╞╔х╔Й\n" +"╓г╓╧. ╔г╔у╔╘╔К╔х╓н gimprc ╓нюъдЙ╓г╓о╔╥╔╧╔ф╔Юа╢бн╓н\n" +"GIMP ╔в╔И╔╟╔╓╔С╔г╔ё╔Л╔╞╔х╔Й╓кбЁ╓╠╓ф╓Ё╓н╔╣╔ж╔г╔ё╔Л╔╞\n" +"╔х╔Й╓Р╦║╨В╓╧╓К╓Х╓╕╓к╓й╓ц╓ф╓╓╓ч╓╧.\n" + +#: app/install.c:237 +#, fuzzy +msgid "" +"This subdirectory can be used to store user created,\n" +"temporary, or otherwise non-system-supported DLL modules.\n" +"The default gimprc file checks this subdirectory\n" +"in addition to the system-wide GIMP module directory\n" +"when searching for modules to load when initializing." +msgstr "" +"╔Ф║╪╔╤╓╛╨Ню╝╓╥╓©╟Л╩Че╙╓й, ╓Б╓╥╓╞╓о╔╥╔╧╔ф╔Ю╓г╔╣╔щ║╪╔х\n" +"╓╣╓Л╓й╓╓ DLL ╔Б╔╦╔Е║╪╔К╓Рйщб╦╓╧╓К╓©╓А╓н╔╣╔ж╔г╔ё╔Л╔╞\n" +"╔х╔Й╓г╓╧. ╔г╔у╔╘╔К╔х╓н gimprc ╓нюъдЙ╓г╓о╔╥╔╧╔ф╔Юа╢бн╓н\n" +"GIMP ╔Б╔╦╔Е║╪╔К╔г╔ё╔Л╔╞╔х╔Й╓кбЁ╓╠╓ф╓Ё╓н╔╣╔ж╔г╔ё╔Л╔╞\n" +"╔х╔Й╓Р╦║╨В╓╧╓К╓Х╓╕╓к╓й╓ц╓ф╓╓╓ч╓╧.\n" + +#: app/install.c:245 +#, fuzzy +msgid "" +"This subdirectory is used by the GIMP to store \n" +"user created and installed scripts. The default gimprc\n" +"file checks this subdirectory in addition to the system-\n" +"wide gimp scripts subdirectory when searching for scripts" +msgstr "" +"╔Ф║╪╔╤╓╛╨Ню╝╓╥╓©╔╧╔╞╔Й╔в╔х╓Рйщб╦╓╧╓К╓©╓А╓н╔╣╔ж\n" +"╔г╔ё╔Л╔╞╔х╔Й╔х╔Й╓г╓╧. ╔г╔у╔╘╔К╔х╓н gimprc ╓нюъдЙ\n" +"╓г╓о╔╥╔╧╔ф╔Юа╢бн╓н╔╧╔╞╔Й╔в╔х╔г╔ё╔Л╔╞╔х╔Й╓кбЁ╓╠╓ф\n" +"╓Ё╓н╔╣╔ж╔г╔ё╔Л╔╞╔х╔Й╓Р╦║╨В╓╧╓К╓Х╓╕╓к╓й╓ц╓ф╓╓╓ч╓╧.\n" + +#: app/install.c:252 +#, fuzzy +msgid "" +"This subdirectory is used by the GIMP to temporarily\n" +"store undo buffers to reduce memory usage. If GIMP is\n" +"unceremoniously killed, files may persist in this directory\n" +"of the form: gimp<#>.<#>. These files are useless across\n" +"GIMP sessions and can be destroyed with impunity." +msgstr "" +"╔А╔Б╔Й╩хмянл╓Р╦╨╓И╓╧╓©╓А, GIMP ╓╛╔╒╔С╔и╔╔╔п╔ц╔у╔║╓Р\n" +"╟Л╩Че╙╓кцж╓╓╓ф╓╙╓╞╓©╓А╓н╔г╔ё╔Л╔╞╔х╔Й╓г╓╧. GIMP ╓Р\n" +"╤╞ю╘е╙╓к╫╙н╩╓╣╓╩╓©╬Л╧Г╓к╓о, gimp<хж╧Ф>.<хж╧Ф> ╓х╓╓╓╕\n" +"л╬а╟╓н╔у╔║╔╓╔К╓╛╩д╓ц╓ф╓╥╓ч╓╕╓╚╓Б╓╥╓Л╓ч╓╩╓С. ╓Ё╓Л╓И╓н\n" +"╔у╔║╔╓╔К╓о╨О╫Э╓╥╓ф╓Б╓╚╓ч╓╓╓ч╓╩╓С.\n" + +#: app/install.c:260 +msgid "" +"This subdirectory is used to store parameter files for\n" +"the Curves tool." +msgstr "" + +#: app/install.c:265 +msgid "" +"This subdirectory is used to store parameter files for\n" +"the Levels tool." +msgstr "" + +#: app/install.c:270 +#, fuzzy +msgid "" +"This is a subdirectory which can be used to store\n" +"user defined fractals to be used by the FractalExplorer\n" +"plug-in. The default gimprc file checks this subdirectory in\n" +"addition to the systemwide gimp FractalExplorer installation\n" +"when searching for fractals." +msgstr "" +"╔у╔И╔╞╔©╔К╔╗╔╞╔╧╔в╔М║╪╔И ╔в╔И╔╟╔╓╔С╓г╨Ню╝╓╣╓Л╓©╔Ф║╪╔╤\n" +"дЙ╣а╓н╔у╔И╔╞╔©╔К╓Рйщб╦╓╧╓К╓©╓А╓н╔╣╔ж╔г╔ё╔Л╔╞╔х╔Й\n" +"╓г╓╧. ╔г╔у╔╘╔К╔х╓н gimprc ╓нюъдЙ╓г╓о╔╥╔╧╔ф╔Юа╢бн╓н\n" +"╔у╔И╔╞╔©╔К╔╗╔╞╔╧╔в╔М║╪╔И╔г╔ё╔Л╔╞╔х╔Й╓кбЁ╓╠╓ф\n" +"╓Ё╓н╔╣╔ж╔г╔ё╔Л╔╞╔х╔Й╓Р╦║╨В╓╧╓К╓Х╓╕╓к╓й╓ц╓ф╓╓╓ч╓╧.\n" + +#: app/install.c:278 +#, fuzzy +msgid "" +"This is a subdirectory which can be used to store\n" +"user defined figures to be used by the gfig plug-in.\n" +"The default gimprc file checks this subdirectory in\n" +"addition to the systemwide gimp gfig installation\n" +"when searching for gfig figures." +msgstr "" +"gfig ╔в╔И╔╟╔╓╔С╓г╨Ню╝╓╣╓Л╓©╔Ф║╪╔╤дЙ╣а╓н©ч╥а╓Рйщб╦\n" +"╓╧╓К╓©╓А╓н╔╣╔ж╔г╔ё╔Л╔╞╔х╔Й╓г╓╧. ╔г╔у╔╘╔К╔х╓н gimprc\n" +"╓нюъдЙ╓г╓о╔╥╔╧╔ф╔Юа╢бн╓н gfig ╔г╔ё╔Л╔╞╔х╔Й╓кбЁ╓╠╓ф\n" +"╓Ё╓н╔╣╔ж╔г╔ё╔Л╔╞╔х╔Й╓Р╦║╨В╓╧╓К╓Х╓╕╓к╓й╓ц╓ф╓╓╓ч╓╧.\n" + +#: app/install.c:286 +#, fuzzy +msgid "" +"This is a subdirectory which can be used to store\n" +"user defined gflares to be used by the gflare plug-in.\n" +"The default gimprc file checks this subdirectory in\n" +"addition to the systemwide gimp gflares installation\n" +"when searching for gflares." +msgstr "" +"╔╟╔И╔г║╪╔╥╔Г╔С╔у╔Л╔╒ ╔в╔И╔╟╔╓╔С╓г╨Ню╝╓╣╓Л╓©╔Ф║╪╔╤\n" +"дЙ╣а╓н╔╟╔И╔г║╪╔╥╔Г╔С╔у╔Л╔╒╓Рйщб╦╓╧╓К╓©╓А╓н╔╣╔ж\n" +"╔г╔ё╔Л╔╞╔х╔Й╓г╓╧. ╔г╔у╔╘╔К╔х╓н gimprc ╓нюъдЙ╓г╓о\n" +"╔╥╔╧╔ф╔Юа╢бн╓н gflare ╔г╔ё╔Л╔╞╔х╔Й╓кбЁ╓╠╓ф╓Ё╓н\n" +"╔╣╔ж╔г╔ё╔Л╔╞╔х╔Й╓Р╦║╨В╓╧╓К╓Х╓╕╓к╓й╓ц╓ф╓╓╓ч╓╧.\n" + +#: app/install.c:294 +#, fuzzy +msgid "" +"This is a subdirectory which can be used to store\n" +"user defined data to be used by the Gimpressionist\n" +"plug-in. The default gimprc file checks this subdirectory in\n" +"addition to the systemwide gimp Gimpressionist installation\n" +"when searching for data." +msgstr "" +"╔╟╔И╔г║╪╔╥╔Г╔С╔у╔Л╔╒ ╔в╔И╔╟╔╓╔С╓г╨Ню╝╓╣╓Л╓©╔Ф║╪╔╤\n" +"дЙ╣а╓н╔╟╔И╔г║╪╔╥╔Г╔С╔у╔Л╔╒╓Рйщб╦╓╧╓К╓©╓А╓н╔╣╔ж\n" +"╔г╔ё╔Л╔╞╔х╔Й╓г╓╧. ╔г╔у╔╘╔К╔х╓н gimprc ╓нюъдЙ╓г╓о\n" +"╔╥╔╧╔ф╔Юа╢бн╓н gflare ╔г╔ё╔Л╔╞╔х╔Й╓кбЁ╓╠╓ф╓Ё╓н\n" +"╔╣╔ж╔г╔ё╔Л╔╞╔х╔Й╓Р╦║╨В╓╧╓К╓Х╓╕╓к╓й╓ц╓ф╓╓╓ч╓╧.\n" + +#: app/install.c:525 +#, fuzzy +msgid "GIMP User Installation" +msgstr "GIMP ╔╓╔С╔╧╔х║╪╔К" + +#: app/install.c:530 +msgid "Continue" +msgstr "╪║╓ь" + +#. this is a fontset, e.g. multiple comma-separated font definitions +#: app/install.c:560 +#, fuzzy +msgid "-*-helvetica-bold-r-normal-*-*-240-*-*-*-*-*-*,*" +msgstr "" +"-*-helvetica-bold-r-normal-*-*-120-*-*-*-*-*-*,-misc-fixed-medium-r-normal-*-" +"14-*-*-*-*-*-*-*,*" + +#: app/install.c:578 +#, fuzzy +msgid "" +"Welcome to\n" +"The GIMP User Installation" +msgstr "GIMP ╔╓╔С╔╧╔х║╪╔К" + +#: app/install.c:582 msgid "" "The GIMP - GNU Image Manipulation Program\n" -"\n" +"Copyright (C) 1995-2000\n" +"Spencer Kimball, Peter Mattis and the GIMP Development Team." msgstr "" -"The GIMP - GNU ╡ХаЭ╫ХмЩ╔в╔М╔╟╔И╔Ю\n" -"\n" -#: app/install.c:118 +#: app/install.c:591 +#, fuzzy msgid "" "This program is free software; you can redistribute it and/or modify\n" "it under the terms of the GNU General Public License as published by\n" "the Free Software Foundation; either version 2 of the License, or\n" -"(at your option) any later version.\n" +"(at your option) any later version." msgstr "" "кэ╔в╔М╔╟╔И╔Ю╓о╔у╔Й║╪║╕╔╫╔у╔х╔╕╔╖╔╒╓г╓╧║ё╓╒╓й╓©╓о║╒Free Software\n" "Foundation ╓╛╦Ьи╫╓╥╓©GNU╟Лхл╦Ьм╜╩хмя╣ЖбЗ╓н║ж╔п║╪╔╦╔Г╔Сё╡║в╟©╓╓\n" @@ -2423,383 +2734,192 @@ msgstr "" "╔С╓╛дЙ╓А╓К╬Р╧Ю╓к╫╬╓ц╓фкэ╔в╔М╔╟╔И╔Ю╓Р╨фхриш╓ч╓©╓ойя╧╧╓╧╓К╓Ё╓х╓╛\n" "╓г╓╜╓ч╓╧║ё\n" -#: app/install.c:123 +#: app/install.c:596 +#, fuzzy msgid "" "This program is distributed in the hope that it will be useful,\n" "but WITHOUT ANY WARRANTY; without even the implied warranty of\n" "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n" -"See the GNU General Public License for more details.\n" +"See the GNU General Public License for more details." msgstr "" "кэ╔в╔М╔╟╔И╔Ю╓ом╜мя╓х╓о╩в╓╓╓ч╓╧╓╛║╒ хриш╓к╓╒╓©╓ц╓ф╓о║╒ ╩т╬Лю╜\n" "╣з╓сфцдЙлэе╙е╛╧Гю╜╓к╓д╓╓╓ф╓н╟елш╓нйщ╬з╓Р╢ч╓А╓ф║╒╓╓╓╚╓й╓Кйщ╬з\n" "╓Б╧т╓й╓╓╓ч╓╩╓С║ё╬э╨ы╓к╓д╓╓╓ф╓о GNU ╟Лхл╦Ьм╜╩хмя╣ЖбЗ╫Я╓Р╓╙фи╓ъ\n" "╓╞╓ю╓╣╓╓║ё\n" -#: app/install.c:128 +#: app/install.c:601 +#, fuzzy msgid "" "You should have received a copy of the GNU General Public License\n" "along with this program; if not, write to the Free Software\n" "Foundation, Inc., 59 Temple Place - Suite 330, Boston,\n" -"MA 02111-1307, USA.\n" +"MA 02111-1307, USA." msgstr "" "╓╒╓й╓©╓о║╒кэ╔в╔М╔╟╔И╔Ю╓х╟Л╫О╓кGNU ╟Лхл╦Ьм╜╩хмя╣ЖбЗ╓н╪л╓╥╓Р╪У╓╠\n" "╪Х╓ц╓ф╓╓╓К╓о╓╨╓г╓╧║ё╓╫╓╕╓г╓й╓╓╬Л╧Г╓о║╒Free Software Foundation,\n" "Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * ╓ь╪Й╩Ф\n" "╓Р╫Я╓╓╓ф╓╞╓ю╓╣╓╓║ё\n" -#: app/install.c:134 -msgid "" -"Personal GIMP Installation\n" -"\n" +#: app/install.c:607 +msgid "Click \"Continue\" to enter the GIMP user installation." +msgstr "" + +#: app/install.c:633 +#, fuzzy +msgid "Personal GIMP Directory" msgstr "" "╔я║╪╔╫╔й╔К GIMP ╔╓╔С╔╧╔х║╪╔К\n" "\n" -#: app/install.c:135 -msgid "For a proper GIMP installation, a subdirectory called\n" -msgstr "ю╣╬О╓к GIMP ╓╛╔╓╔С╔╧╔х║╪╔К╓╣╓Л╓Л╓п,\n" - -#. will be replaced with gimp_directory() -#: app/install.c:137 +#: app/install.c:650 +#, fuzzy msgid "" -" needs to be created. This\n" -"subdirectory will contain a number of important files:\n" -"\n" +"For a proper GIMP installation, a subdirectory needs to be created.\n" +"This subdirectory will contain a number of important files." msgstr "" "╓х╓╓╓╕╔╣╔ж╔г╔ё╔Л╔╞╔х╔Й╓╛╨Ню╝╓╣╓Л╓ч╓╧.\n" "╓Ё╓н╔╣╔ж╔г╔ё╔Л╔╞╔х╔Й╓к╓о╢Ж╓д╓╚╓н╫емв╓й╔у╔║╔╓╔К╓╛цж╓╚╓Л╓ч╓╧:\n" "\n" -#: app/install.c:141 +#: app/install.c:653 msgid "" -"\t\tThe gimprc is used to store personal preferences\n" -"\t\tthat affect GIMP's default behavior.\n" -"\t\tPaths to search for brushes, palettes, gradients,\n" -"\t\tpatterns, plug-ins and modules can also configured here.\n" +"Click on one of the files or subdirectories in the tree\n" +"to get more information about the selected item." msgstr "" -"\t\tgimprc ╓о GIMP ╓н╢Пкэф╟╨Н╓к╢ь╓╧╓К╦д©мюъдЙ╓Рйщб╦╓╧╓К\n" -"\t\t╓©╓А╓к╩хмя╓╣╓Л╓ч╓╧. ╔ж╔И╔╥, ╔я╔Л╔ц╔х, ╔╟╔И╔г║╪╔╥╔Г╔С,\n" -"\t\t╔я╔©║╪╔С, ╔в╔И╔╟╔╓╔С╓Д╔Б╔╦╔Е║╪╔КеЫ╓Р╦║╨В╓╧╓К╔я╔╧╓Б\n" -"\t\t╓Ё╓н╔у╔║╔╓╔К╓гюъдЙ╓╣╓Л╓ч╓╧.\n" -#: app/install.c:147 -msgid "" -"\t\tPlug-ins and extensions are external programs run by\n" -"\t\tthe GIMP which provide additional functionality.\n" -"\t\tThese programs are searched for at run-time and\n" -"\t\tinformation about their functionality and mod-times\n" -"\t\tis cached in this file. This file is intended to\n" -"\t\tbe GIMP-readable only, and should not be edited.\n" +#: app/install.c:656 +msgid "Click \"Continue\" to create your personal GIMP directory." msgstr "" -"\t\t╣║г╫╓Рди╡ц╓╧╓К╓©╓А╓н╔в╔И╔╟╔╓╔С╓Д╣║г╫Ёхд╔╓о,\n" -"\t\tGIMP ╓к╓Х╓ц╓ф╪б╧т╓╣╓Л╓КЁ╟иТ╔в╔М╔╟╔И╔Ю╓г╓╧.\n" -"\t\t╓Ё╓Л╓И╓н╔в╔М╔╟╔И╔Ю╓о╪б╧т╩Ч╓к╦║╨В╓╣╓Л, ╣║г╫╓ДфЁфЧ\n" -"\t\t╓╣╓Л╓©фЭ╩ЧеЫ╓н╬ПйС╓╛╓Ё╓н╔у╔║╔╓╔К╓к╔╜╔Ц╔ц╔╥╔Е╓╣╓Л\n" -"\t\t╓ч╓╧. ╦д╓н╔у╔║╔╓╔К╓о GIMP ╓к╓Х╓ц╓ф╓н╓ъйя╧╧╓╣╓Л╓К\n" -"\t\t╓Б╓н╓г, ╔Ф║╪╔╤╓╛йя╧╧╓Р╡ц╓╗╓К╓ы╓╜╓г╓о╓╒╓Й╓ч╓╩╓С.\n" -#: app/install.c:155 -msgid "" -"\t\tKey shortcuts can be dynamically redefined in The GIMP.\n" -"\t\tThe menurc is a dump of your configuration so it can.\n" -"\t\tbe remembered for the next session. You may edit this\n" -"\t\tfile if you wish, but it is much easier to define the\n" -"\t\tkeys from within The GIMP. Deleting this file will\n" -"\t\trestore the default shortcuts.\n" -msgstr "" -"\t\tGIMP ╓н╔╜║╪╔╥╔Г║╪╔х╔╚╔ц╔х╓оф╟е╙╓кйя╧╧╓╧╓К╓Ё╓х╓╛\n" -"\t\t╓г╓╜╓ч╓╧. menurc ╓о╓╒╓й╓©╓нюъдЙ╓Р╫Я╓╜╫п╓╥╓©╓Б╓н╓г,\n" -"\t\t╪║╓к╣╞ф╟╓╥╓©╨щ╓к╨ф╓сф╠╓╦╓Б╓н╓╛м╜╦З╓к╓й╓Й╓ч╓╧.\n" -"\t\t╪Й╓г╓Ё╓н╔у╔║╔╓╔К╓Р╫Я╓╜йя╓╗╓К╓Ё╓х╓Б╓г╓╜╓ч╓╧╓╛,\n" -"\t\tGIMP ╪╚бн╓гйя╧╧╓╧╓КйЩ╓╛Ёз╓г╓╥╓Г╓╕. ╓Ё╓н╔у╔║╔╓╔К╓Р\n" -"\t\t╨О╫Э╓╧╓К╓Ё╓х╓г, ╔╥╔Г║╪╔х╔╚╔ц╔х╓Р╫И╢Э╡╫╓╧╓К╓Ё╓х╓╛\n" -"\t\t╓г╓╜╓ч╓╧.\n" - -#: app/install.c:163 -msgid "" -"\t\tThe sessionrc is used to store what dialog windows were\n" -"\t\topen the last time you quit The GIMP. You can configure\n" -"\t\tThe GIMP to reopen these dialogs at the saved position.\n" -msgstr "" -"\t\tsessionrc ╓о GIMP ╫╙н╩╩Ч╓к╔ю╔╓╔╒╔М╔╟╔╕╔ё╔С╔и╔╕╓╛╓и╓Ё╓к\n" -"\t\t╓╒╓ц╓©╓╚╓Рйщб╦╓╧╓К╓©╓А╓н╔у╔║╔╓╔К╓г╓╧. ╓Ё╓н╔у╔║╔╓╔К╓к\n" -"\t\tйщб╦╓╣╓Л╓©╟лцж╓к╔ю╔╓╔╒╔М╔╟╓РЁ╚╓╞╓Х╓╕╓к GIMP ╓РюъдЙ\n" -"\t\t╓г╓╜╓ч╓╧.\n" - -#: app/install.c:168 -msgid "" -"\t\tThe unitrc is used to store your user units database.\n" -"\t\tYou can define additional units and use them just\n" -"\t\tlike you use the built-in units inches, millimeters,\n" -"\t\tpoints and picas. This file is overwritten each time\n" -"\t\tyou quit the GIMP.\n" -msgstr "" -"\t\tunitrc ╓о╔Ф║╪╔╤ц╠╟л╔г║╪╔©╔ы║╪╔╧╓Рйщб╦╓╧╓К╓©╓А╓н╓Б╓н\n" -"\t\t╓г╓╧. ©╥╓©╓кц╠╟л╓Рди╡ц╓╥╓ф, ╓╒╓©╓╚╓Б╔╓╔С╔а, ╔щ╔╓╔С╔х,\n" -"\t\t╔ъ╔Й╔А║╪╔х╔К╓Д╔я╔╓╔╚╓х╓╓╓ц╓©фБб╒ц╠╟л╓хф╠еЫ╓кмя╓╓╓К\n" -"\t\t╓Ё╓х╓╛╓г╓╜╓ч╓╧. ╓Ё╓н╔у╔║╔╓╔К╓о GIMP ╫╙н╩╩Ч╓к╬Е╫Я╓╜\n" -"\t\t╓╣╓Л╓ч╓╧.\n" - -#: app/install.c:175 -msgid "" -"\t\tThis is a subdirectory which can be used to store\n" -"\t\tuser defined brushes. The default gimprc file\n" -"\t\tchecks this subdirectory in addition to the system-\n" -"\t\twide gimp brushes installation when searching for\n" -"\t\tbrushes.\n" -msgstr "" -"\t\t╔Ф║╪╔╤дЙ╣а╓н╔ж╔И╔╥╓Рйщб╦╓╧╓К╔╣╔ж╔г╔ё╔Л╔╞╔х╔Й╓г╓╧.\n" -"\t\t╔г╔у╔╘╔К╔х╓н gimprc ╓нюъдЙ╓г╓о╔╥╔╧╔ф╔Юа╢бн╓н╔ж╔И╔╥\n" -"\t\t╔г╔ё╔Л╔╞╔х╔Й╓кбЁ╓╠╓ф╓Ё╓н╔╣╔ж╔г╔ё╔Л╔╞╔х╔Й╓Р╦║╨В╓╧╓К\n" -"\t\t╓Х╓╕╓к╓й╓ц╓ф╓╓╓ч╓╧.\n" - -#: app/install.c:182 -msgid "" -"\t\tThis is a subdirectory which is used to store brushes\n" -"\t\tthat are created with the brush editor. The default\n" -"\t\tgimprc file checks this subdirectory when searching for\n" -"\t\tgenerated brushes.\n" -msgstr "" -"\t\t╔ж╔И╔╥╔╗╔г╔ё╔©╓г╨Ню╝╓╥╓©╔ж╔И╔╥╓Рйщб╦╓╧╓К╓©╓А╓н╔╣╔ж\n" -"\t\t╔г╔ё╔Л╔╞╔х╔Й╓г╓╧. ╔г╔у╔╘╔К╔х╓н gimprc ╓нюъдЙ╓г╓ою╦ю╝\n" -"\t\t╓╣╓Л╓©╔ж╔И╔╥╓Р╦║╨В╓╧╓К╨щ╓к╓Ё╓н╔╣╔ж╔г╔ё╔Л╔╞╔х╔Й╓Р\n" -"\t\t╦║╨В╓╧╓К╓Х╓╕╓к╓й╓ц╓ф╓╓╓ч╓╧.\n" - -#: app/install.c:188 -msgid "" -"\t\tThis is a subdirectory which can be used to store\n" -"\t\tuser defined gradients. The default gimprc file\n" -"\t\tchecks this subdirectory in addition to the system-\n" -"\t\twide gimp gradients installation when searching for\n" -"\t\tgradients.\n" -msgstr "" -"\t\t╔Ф║╪╔╤дЙ╣а╓н╔╟╔И╔г║╪╔╥╔Г╔С╓Рйщб╦╓╧╓К╔╣╔ж╔г╔ё╔Л╔╞╔х╔Й\n" -"\t\t╓г╓╧. ╔г╔у╔╘╔К╔х╓н gimprc ╓нюъдЙ╓г╓о╔╥╔╧╔ф╔Юа╢бн╓н\n" -"\t\t╔╟╔И╔г║╪╔╥╔Г╔С╔г╔ё╔Л╔╞╔х╔Й╓кбЁ╓╠╓ф╓Ё╓н╔╣╔ж╔г╔ё╔Л╔╞\n" -"\t\t╔х╔Й╓Р╦║╨В╓╧╓К╓Х╓╕╓к╓й╓ц╓ф╓╓╓ч╓╧.\n" - -#: app/install.c:195 -msgid "" -"\t\tThis is a subdirectory which can be used to store\n" -"\t\tuser defined figures to be used by the gfig plug-in.\n" -"\t\tThe default gimprc file checks this subdirectory in\n" -"\t\taddition to the systemwide gimp gfig installation\n" -"\t\twhen searching for gfig figures.\n" -msgstr "" -"\t\tgfig ╔в╔И╔╟╔╓╔С╓г╨Ню╝╓╣╓Л╓©╔Ф║╪╔╤дЙ╣а╓н©ч╥а╓Рйщб╦\n" -"\t\t╓╧╓К╓©╓А╓н╔╣╔ж╔г╔ё╔Л╔╞╔х╔Й╓г╓╧. ╔г╔у╔╘╔К╔х╓н gimprc\n" -"\t\t╓нюъдЙ╓г╓о╔╥╔╧╔ф╔Юа╢бн╓н gfig ╔г╔ё╔Л╔╞╔х╔Й╓кбЁ╓╠╓ф\n" -"\t\t╓Ё╓н╔╣╔ж╔г╔ё╔Л╔╞╔х╔Й╓Р╦║╨В╓╧╓К╓Х╓╕╓к╓й╓ц╓ф╓╓╓ч╓╧.\n" - -#: app/install.c:202 -msgid "" -"\t\tThis is a subdirectory which can be used to store\n" -"\t\tuser defined gflares to be used by the gflare plug-in.\n" -"\t\tThe default gimprc file checks this subdirectory in\n" -"\t\taddition to the systemwide gimp gflares installation\n" -"\t\twhen searching for gflares.\n" -msgstr "" -"\t\t╔╟╔И╔г║╪╔╥╔Г╔С╔у╔Л╔╒ ╔в╔И╔╟╔╓╔С╓г╨Ню╝╓╣╓Л╓©╔Ф║╪╔╤\n" -"\t\tдЙ╣а╓н╔╟╔И╔г║╪╔╥╔Г╔С╔у╔Л╔╒╓Рйщб╦╓╧╓К╓©╓А╓н╔╣╔ж\n" -"\t\t╔г╔ё╔Л╔╞╔х╔Й╓г╓╧. ╔г╔у╔╘╔К╔х╓н gimprc ╓нюъдЙ╓г╓о\n" -"\t\t╔╥╔╧╔ф╔Юа╢бн╓н gflare ╔г╔ё╔Л╔╞╔х╔Й╓кбЁ╓╠╓ф╓Ё╓н\n" -"\t\t╔╣╔ж╔г╔ё╔Л╔╞╔х╔Й╓Р╦║╨В╓╧╓К╓Х╓╕╓к╓й╓ц╓ф╓╓╓ч╓╧.\n" - -#: app/install.c:209 -msgid "" -"\t\tThis is a subdirectory which can be used to store\n" -"\t\tuser defined fractals to be used by the FractalExplorer\n" -"\t\tplug-in. The default gimprc file checks this subdirectory in\n" -"\t\taddition to the systemwide gimp FractalExplorer installation\n" -"\t\twhen searching for fractals.\n" -msgstr "" -"\t\t╔у╔И╔╞╔©╔К╔╗╔╞╔╧╔в╔М║╪╔И ╔в╔И╔╟╔╓╔С╓г╨Ню╝╓╣╓Л╓©╔Ф║╪╔╤\n" -"\t\tдЙ╣а╓н╔у╔И╔╞╔©╔К╓Рйщб╦╓╧╓К╓©╓А╓н╔╣╔ж╔г╔ё╔Л╔╞╔х╔Й\n" -"\t\t╓г╓╧. ╔г╔у╔╘╔К╔х╓н gimprc ╓нюъдЙ╓г╓о╔╥╔╧╔ф╔Юа╢бн╓н\n" -"\t\t╔у╔И╔╞╔©╔К╔╗╔╞╔╧╔в╔М║╪╔И╔г╔ё╔Л╔╞╔х╔Й╓кбЁ╓╠╓ф\n" -"\t\t╓Ё╓н╔╣╔ж╔г╔ё╔Л╔╞╔х╔Й╓Р╦║╨В╓╧╓К╓Х╓╕╓к╓й╓ц╓ф╓╓╓ч╓╧.\n" - -#: app/install.c:216 -msgid "" -"\t\tThis is a subdirectory which can be used to store\n" -"\t\tuser defined palettes. The default gimprc file\n" -"\t\tchecks only this subdirectory (not the system-wide\n" -"\t\tinstallation) when searching for palettes. During\n" -"\t\tinstallation, the system palettes will be copied\n" -"\t\there. This is done to allow modifications made to\n" -"\t\tpalettes during GIMP execution to persist across\n" -"\t\tsessions.\n" -msgstr "" -"\t\t╔Ф║╪╔╤дЙ╣а╓н╔я╔Л╔ц╔х╓Рйщб╦╓╧╓К╓©╓А╓н╔г╔ё╔Л╔╞╔х╔Й╓г╓╧.\n" -"\t\t╔г╔у╔╘╔К╔х╓н gimprc ╓г╓о╔я╔Л╔ц╔х╓Р╦║╨В╓╧╓К╨щ╓к,\n" -"\t\t╓Ё╓н╔╥╔╧╔ф╔Ю╓н╔я╔Л╔ц╔х╓о╦║╨В╓╩╓╨, ╓Ё╓н╔г╔ё╔Л╔╞╔х╔Й\n" -"\t\t╓н╓ъ╦║╨В╓╧╓К╓Х╓╕╓к╓й╓ц╓ф╓╓╓ч╓╧. ╔╓╔С╔╧╔х║╪╔КцФ╓к\n" -"\t\t╔╥╔╧╔ф╔Ю╓н╔я╔Л╔ц╔х╓╛╓Ё╓н╔г╔ё╔Л╔╞╔х╔Й╓к╔Ё╔т║╪╓╣╓Л\n" -"\t\t╓ч╓╧. ╓Ё╓╕╓╧╓К╓Ё╓х╓г, GIMP ╓н╔╩╔ц╔╥╔Г╔С╓╛╫╙╓ц╓ф╓Б\n" -"\t\t╔я╔Л╔ц╔х╓Рйщ╩Щ╓╧╓К╓Ё╓х╓╛╓г╓╜╓К╓Х╓╕╓к╓й╓ц╓ф╓╓╓ч╓╧.\n" - -#: app/install.c:226 -msgid "" -"\t\tThis is a subdirectory which can be used to store\n" -"\t\tuser defined patterns. The default gimprc file\n" -"\t\tchecks this subdirectory in addition to the system-\n" -"\t\twide gimp patterns installation when searching for\n" -"\t\tpatterns.\n" -msgstr "" -"\t\t╔Ф║╪╔╤дЙ╣а╓н╔я╔©║╪╔С╓Рйщб╦╓╧╓К╔╣╔ж╔г╔ё╔Л╔╞╔х╔Й╓г╓╧.\n" -"\t\t╔г╔у╔╘╔К╔х╓н gimprc ╓нюъдЙ╓г╓о╔╥╔╧╔ф╔Юа╢бн╓н╔я╔©║╪╔С\n" -"\t\t╔г╔ё╔Л╔╞╔х╔Й╓кбЁ╓╠╓ф╓Ё╓н╔╣╔ж╔г╔ё╔Л╔╞╔х╔Й╓Р╦║╨В╓╧╓К\n" -"\t\t╓Х╓╕╓к╓й╓ц╓ф╓╓╓ч╓╧.\n" - -#: app/install.c:233 -msgid "" -"\t\tThis is a subdirectory which can be used to store\n" -"\t\tuser created, temporary, or otherwise non-system-\n" -"\t\tsupported plug-ins. The default gimprc file\n" -"\t\tchecks this subdirectory in addition to the system-\n" -"\t\twide GIMP plug-in directories when searching for\n" -"\t\tplug-ins.\n" -msgstr "" -"\t\t╔Ф║╪╔╤╓╛╨Ню╝╓╥╓©╟Л╩Че╙╓й, ╓Б╓╥╓╞╓о╔╥╔╧╔ф╔Ю╓г╔╣╔щ║╪╔х\n" -"\t\t╓╣╓Л╓й╓╓╔в╔И╔╟╔╓╔С╓Рйщб╦╓╧╓К╓©╓А╓н╔╣╔ж╔г╔ё╔Л╔╞╔х╔Й\n" -"\t\t╓г╓╧. ╔г╔у╔╘╔К╔х╓н gimprc ╓нюъдЙ╓г╓о╔╥╔╧╔ф╔Юа╢бн╓н\n" -"\t\tGIMP ╔в╔И╔╟╔╓╔С╔г╔ё╔Л╔╞╔х╔Й╓кбЁ╓╠╓ф╓Ё╓н╔╣╔ж╔г╔ё╔Л╔╞\n" -"\t\t╔х╔Й╓Р╦║╨В╓╧╓К╓Х╓╕╓к╓й╓ц╓ф╓╓╓ч╓╧.\n" - -#: app/install.c:241 -msgid "" -"\t\tThis subdirectory can be used to store user created,\n" -"\t\ttemporary, or otherwise non-system-supported DLL modules.\n" -"\t\tThe default gimprc file checks this subdirectory\n" -"\t\tin addition to the system-wide GIMP module directory\n" -"\t\twhen searching for modules to load when initializing.\n" -msgstr "" -"\t\t╔Ф║╪╔╤╓╛╨Ню╝╓╥╓©╟Л╩Че╙╓й, ╓Б╓╥╓╞╓о╔╥╔╧╔ф╔Ю╓г╔╣╔щ║╪╔х\n" -"\t\t╓╣╓Л╓й╓╓ DLL ╔Б╔╦╔Е║╪╔К╓Рйщб╦╓╧╓К╓©╓А╓н╔╣╔ж╔г╔ё╔Л╔╞\n" -"\t\t╔х╔Й╓г╓╧. ╔г╔у╔╘╔К╔х╓н gimprc ╓нюъдЙ╓г╓о╔╥╔╧╔ф╔Юа╢бн╓н\n" -"\t\tGIMP ╔Б╔╦╔Е║╪╔К╔г╔ё╔Л╔╞╔х╔Й╓кбЁ╓╠╓ф╓Ё╓н╔╣╔ж╔г╔ё╔Л╔╞\n" -"\t\t╔х╔Й╓Р╦║╨В╓╧╓К╓Х╓╕╓к╓й╓ц╓ф╓╓╓ч╓╧.\n" - -#: app/install.c:248 -msgid "" -"\t\tThis subdirectory is used by the GIMP to store \n" -"\t\tuser created and installed scripts. The default gimprc\n" -"\t\tfile checks this subdirectory in addition to the system\n" -"\t\t-wide gimp scripts subdirectory when searching for scripts\n" -msgstr "" -"\t\t╔Ф║╪╔╤╓╛╨Ню╝╓╥╓©╔╧╔╞╔Й╔в╔х╓Рйщб╦╓╧╓К╓©╓А╓н╔╣╔ж\n" -"\t\t╔г╔ё╔Л╔╞╔х╔Й╔х╔Й╓г╓╧. ╔г╔у╔╘╔К╔х╓н gimprc ╓нюъдЙ\n" -"\t\t╓г╓о╔╥╔╧╔ф╔Юа╢бн╓н╔╧╔╞╔Й╔в╔х╔г╔ё╔Л╔╞╔х╔Й╓кбЁ╓╠╓ф\n" -"\t\t╓Ё╓н╔╣╔ж╔г╔ё╔Л╔╞╔х╔Й╓Р╦║╨В╓╧╓К╓Х╓╕╓к╓й╓ц╓ф╓╓╓ч╓╧.\n" - -#: app/install.c:254 -msgid "" -"\t\tThis subdirectory is used by the GIMP to temporarily\n" -"\t\tstore undo buffers to reduce memory usage. If GIMP is\n" -"\t\tunceremoniously killed, files may persist in this directory\n" -"\t\tof the form: gimp<#>.<#>. These files are useless across\n" -"\t\tGIMP sessions and can be destroyed with impunity.\n" -msgstr "" -"\t\t╔А╔Б╔Й╩хмянл╓Р╦╨╓И╓╧╓©╓А, GIMP ╓╛╔╒╔С╔и╔╔╔п╔ц╔у╔║╓Р\n" -"\t\t╟Л╩Че╙╓кцж╓╓╓ф╓╙╓╞╓©╓А╓н╔г╔ё╔Л╔╞╔х╔Й╓г╓╧. GIMP ╓Р\n" -"\t\t╤╞ю╘е╙╓к╫╙н╩╓╣╓╩╓©╬Л╧Г╓к╓о, gimp<хж╧Ф>.<хж╧Ф> ╓х╓╓╓╕\n" -"\t\tл╬а╟╓н╔у╔║╔╓╔К╓╛╩д╓ц╓ф╓╥╓ч╓╕╓╚╓Б╓╥╓Л╓ч╓╩╓С. ╓Ё╓Л╓И╓н\n" -"\t\t╔у╔║╔╓╔К╓о╨О╫Э╓╥╓ф╓Б╓╚╓ч╓╓╓ч╓╩╓С.\n" - -#: app/install.c:263 -msgid "GIMP Installation" -msgstr "GIMP ╔╓╔С╔╧╔х║╪╔К" - -#: app/install.c:268 -msgid "Install" -msgstr "╔╓╔С╔╧╔х║╪╔К" - -#: app/install.c:270 -msgid "Ignore" -msgstr "л╣╩К" - -#. this is a fontset, e.g. multiple comma-separated font definitions -#: app/install.c:295 app/install.c:453 -msgid "-*-helvetica-bold-r-normal-*-*-120-*-*-*-*-*-*,*" -msgstr "" -"-*-helvetica-bold-r-normal-*-*-120-*-*-*-*-*-*,-misc-fixed-medium-r-normal-*-" -"14-*-*-*-*-*-*-*,*" - -#. this is a font, provide only one single font definition -#: app/install.c:298 -msgid "-*-helvetica-medium-o-normal-*-*-100-*-*-*-*-*-*" -msgstr "-*-helvetica-medium-o-normal-*-*-100-*-*-*-*-*-*" - -#. this is a fontset, e.g. multiple comma-separated font definitions -#: app/install.c:301 -msgid "-*-helvetica-medium-r-normal-*-*-100-*-*-*-*-*-*,*" -msgstr "" -"-*-helvetica-medium-r-normal-*-*-120-*-*-*-*-*-*,-misc-fixed-medium-r-normal-" -"*-14-*-*-*-*-*-*-*,*" - -#: app/install.c:423 -msgid "Installation Log" -msgstr "╔╓╔С╔╧╔х║╪╔К╔М╔╟" - -#: app/install.c:428 -msgid "Continue" -msgstr "╪║╓ь" - -#. this is a fontset, e.g. multiple comma-separated font definitions -#: app/install.c:456 -msgid "-*-helvetica-medium-r-normal-*-*-120-*-*-*-*-*-*,*" -msgstr "" -"-*-helvetica-medium-r-normal-*-*-120-*-*-*-*-*-*,-misc-fixed-medium-r-normal-" -"*-14-*-*-*-*-*-*-*,*" - -#: app/install.c:462 -msgid "" -"User Installation Log\n" -"\n" +#: app/install.c:736 +#, fuzzy +msgid "User Installation Log" msgstr "" "╔Ф║╪╔╤ ╔╓╔С╔╧╔х║╪╔К ╔М╔╟\n" "\n" -#: app/install.c:472 -msgid " does not exist. Cannot install.\n" +#: app/install.c:741 +msgid "GIMP Performance Tuning" +msgstr "" + +#: app/install.c:744 +msgid "For optimal GIMP performance, some settings may have to be adjusted." +msgstr "" + +#: app/install.c:751 +msgid "Click \"Continue\" to accept the settings above." +msgstr "" + +#: app/install.c:760 +#, fuzzy +msgid "Monitor Resolution" +msgstr "╔Б╔к╔©║╪╡РаЭеы╓Р" + +#: app/install.c:763 +msgid "" +"To display images in their natural size, GIMP needs to know your monitor " +"resolution." +msgstr "" + +#: app/install.c:771 +msgid "Click \"Continue\" to start The GIMP." +msgstr "" + +#: app/install.c:845 +#, fuzzy +msgid "does not exist. Cannot install." msgstr " ╓╛б╦╨ъ╓╥╓ч╓╩╓С. ╔╓╔С╔╧╔х║╪╔К╓г╓╜╓ч╓╩╓С.\n" -#: app/install.c:480 -msgid "" -" has invalid permissions.\n" -"Cannot install." +#: app/install.c:857 +#, fuzzy +msgid "has invalid permissions. Cannot install." msgstr "" " ╓╛итю╣╓й╔я║╪╔ъ╔ц╔╥╔Г╔С╓г╓╧.\n" "╔╓╔С╔╧╔х║╪╔К╓г╓╜╓ч╓╩╓С." -#: app/install.c:514 +#: app/install.c:895 +#, fuzzy msgid "" -"Did you notice any error messages\n" -"in the console window? If not, installation\n" -"was successful! Otherwise, quit and investigate\n" -"the possible reason...\n" +"Did you notice any error messages in the console window?\n" +"If not, installation was successful!\n" +"Otherwise, quit and investigate the possible reason..." msgstr "" "╔Ё╔С╔╫║╪╔К╔╕╔ё╔С╔и╔╕╓к╡©╓╚╔╗╔И║╪╔А╔ц╔╩║╪╔╦╓╛\n" "╫п╓ч╓╩╓С╓г╓╥╓©╓╚? ╫п╓ф╓╓╓й╓╠╓Л╓п╔╓╔С╔╧╔х║╪╔К\n" "╓ою╝╦Ы╓г╓╧! ╡©╓╚и╫╪╗╓╣╓Л╓©╬Л╧Г╓к╓о╓Ё╓Ё╓гцФцг\n" "╓╥╓ф╦╤╟Ь╓Рд╢╨╨╓╥╓ч╓╥╓Г╓╕...\n" -#: app/install.c:546 +#: app/install.c:955 +#, fuzzy msgid "" -"\n" -"Installation successful!\n" +"Did you notice any error messages in the lines above?\n" +"If not, installation was successful!\n" +"Otherwise, quit and investigate the possible reason..." msgstr "" -"\n" -"╔╓╔С╔╧╔х║╪╔Кю╝╦Ы!\n" +"╔Ё╔С╔╫║╪╔К╔╕╔ё╔С╔и╔╕╓к╡©╓╚╔╗╔И║╪╔А╔ц╔╩║╪╔╦╓╛\n" +"╫п╓ч╓╩╓С╓г╓╥╓©╓╚? ╫п╓ф╓╓╓й╓╠╓Л╓п╔╓╔С╔╧╔х║╪╔К\n" +"╓ою╝╦Ы╓г╓╧! ╡©╓╚и╫╪╗╓╣╓Л╓©╬Л╧Г╓к╓о╓Ё╓Ё╓гцФцг\n" +"╓╥╓ф╦╤╟Ь╓Рд╢╨╨╓╥╓ч╓╥╓Г╓╕...\n" -#: app/install.c:555 -msgid "" -"\n" -"Installation failed. Contact system administrator.\n" +#: app/install.c:969 +msgid "Click \"Continue\" to complete GIMP installation." +msgstr "" + +#: app/install.c:978 +#, fuzzy +msgid "Installation failed. Contact system administrator." msgstr "" "\n" "╔╓╔С╔╧╔х║╪╔К╪╨гт. ╔╥╔╧╔ф╔Ю╢имЩ╪т╓х╓╢аЙцл╓╞╓ю╓╣╓╓.\n" +#: app/install.c:999 +msgid "" +"GIMP uses a limited amount of memory to store image data, the so-called\n" +"\"Tile Cache\". You should adjust it's size to fit into memory. Consider\n" +"the amount of memory used by other running processes." +msgstr "" + +#: app/install.c:1015 app/preferences_dialog.c:2102 +msgid "Tile Cache Size:" +msgstr "╔©╔╓╔К╔╜╔Ц╔ц╔╥╔Е╔╣╔╓╔╨:" + +#: app/install.c:1025 +msgid "" +"All image and undo data which doesn't fit into the Tile Cache will be\n" +"written to a swap file. This file should be located on a local filesystem\n" +"with enough free space (several hundred MB). On a UNIX system, you\n" +"may want to use the system-wide temp-dir (\"/tmp\" or \"/var/tmp\")." +msgstr "" + +#: app/install.c:1035 app/preferences_dialog.c:2361 +msgid "Select Swap Dir" +msgstr "╔╧╔О╔ц╔в Dir ╓Ра╙бР" + +#: app/install.c:1041 +#, fuzzy +msgid "Swap Directory:" +msgstr "╔╧╔О╔ц╔в:" + +#: app/install.c:1063 +msgid "" +"GIMP can obtain this information from your X-server.\n" +"However, most X-servers do not return useful values." +msgstr "" + +#: app/install.c:1070 +#, fuzzy, c-format +msgid "Get Resolution from X-server (Currently %d x %d dpi)" +msgstr "(╦╫╨ъ %d x %d dpi)" + +#: app/install.c:1087 +msgid "Alternatively, you can set the monitor resolution manually." +msgstr "" + +#: app/install.c:1102 +#, fuzzy +msgid "Monitor Resolution X:" +msgstr "╔Б╔к╔©║╪╡РаЭеы╓Р" + #: app/interface.c:312 msgid "" "Foreground & background colors. The black and white squares reset colors. " @@ -2877,8 +2997,8 @@ msgstr " msgid "Guide procedures" msgstr "╔╛╔╓╔и╔в╔М╔╥║╪╔╦╔Ц" -#: app/internal_procs.c:122 app/preferences_dialog.c:1772 -#: app/preferences_dialog.c:1774 +#: app/internal_procs.c:122 app/preferences_dialog.c:1733 +#: app/preferences_dialog.c:1735 msgid "Interface" msgstr "╔╓╔С╔©║╪╔у╔╖╔╓╔╧" @@ -3294,142 +3414,133 @@ msgid "degrees" msgstr "еы" #. /File -#: app/menus.c:82 +#. the underscore installs an accelerator using the character that follows +#: app/menus.c:85 msgid "/_File" msgstr "/╔у╔║╔╓╔К(_F)" -#: app/menus.c:84 app/menus.c:191 +#. /File +#: app/menus.c:87 app/menus.c:193 msgid "/File/New..." msgstr "/╔у╔║╔╓╔К/©╥╣╛..." -#: app/menus.c:86 app/menus.c:193 +#: app/menus.c:89 app/menus.c:195 msgid "/File/Open..." msgstr "/╔у╔║╔╓╔К/Ё╚╓╞..." -#: app/menus.c:93 +#: app/menus.c:96 msgid "/File/Acquire" msgstr "/╔у╔║╔╓╔К/╪Х╓Й╧Ч╓ъ" -#: app/menus.c:98 +#: app/menus.c:101 msgid "/File/Preferences..." msgstr "/╔у╔║╔╓╔К/╢д╤╜юъдЙ..." -#: app/menus.c:105 -msgid "/File/Dialogs" -msgstr "/╔у╔║╔╓╔К/╔ю╔╓╔╒╔М╔╟" - -#: app/menus.c:107 +#: app/menus.c:108 msgid "/File/Dialogs/Layers, Channels & Paths..." msgstr "/╔у╔║╔╓╔К/╔ю╔╓╔╒╔М╔╟/╔Л╔╓╔Д║╪, ╔а╔Ц╔С╔м╔К & ╔я╔╧..." -#: app/menus.c:109 +#: app/menus.c:110 msgid "/File/Dialogs/Tool Options..." msgstr "/╔у╔║╔╓╔К/╔ю╔╓╔╒╔М╔╟/╔д║╪╔К╔╙╔в╔╥╔Г╔С..." -#: app/menus.c:114 +#: app/menus.c:115 msgid "/File/Dialogs/Brushes..." msgstr "/╔у╔║╔╓╔К/╔ю╔╓╔╒╔М╔╟/╔ж╔И╔╥..." -#: app/menus.c:116 +#: app/menus.c:117 msgid "/File/Dialogs/Patterns..." msgstr "/╔у╔║╔╓╔К/╔ю╔╓╔╒╔М╔╟/╔я╔©║╪╔С..." -#: app/menus.c:118 +#: app/menus.c:119 msgid "/File/Dialogs/Gradients..." msgstr "/╔у╔║╔╓╔К/╔ю╔╓╔╒╔М╔╟/╔╟╔И╔г║╪╔╥╔Г╔С..." -#: app/menus.c:120 +#: app/menus.c:121 msgid "/File/Dialogs/Palette..." msgstr "/╔у╔║╔╓╔К/╔ю╔╓╔╒╔М╔╟/╔я╔Л╔ц╔х..." -#: app/menus.c:122 +#: app/menus.c:123 msgid "/File/Dialogs/Indexed Palette..." msgstr "/╔у╔║╔╓╔К/╔ю╔╓╔╒╔М╔╟/╔╓╔С╔г╔ц╔╞╔╧╔я╔Л╔ц╔х..." -#: app/menus.c:127 +#: app/menus.c:128 msgid "/File/Dialogs/Input Devices..." msgstr "/╔у╔║╔╓╔К/╔ю╔╓╔╒╔М╔╟/фЧно╔г╔п╔╓╔╧..." -#: app/menus.c:129 +#: app/menus.c:130 msgid "/File/Dialogs/Device Status..." msgstr "/╔у╔║╔╓╔К/╔ю╔╓╔╒╔М╔╟/╔г╔п╔╓╔╧╓н╬Убж..." -#: app/menus.c:134 +#: app/menus.c:135 msgid "/File/Dialogs/Document Index..." msgstr "/╔у╔║╔╓╔К/╔ю╔╓╔╒╔М╔╟/й╦╫Ялэ╪║..." -#: app/menus.c:136 +#: app/menus.c:137 msgid "/File/Dialogs/Error Console..." msgstr "/╔у╔║╔╓╔К/╔ю╔╓╔╒╔М╔╟/╔╗╔И║╪╔Ё╔С╔╫║╪╔К..." -#: app/menus.c:138 +#: app/menus.c:139 msgid "/File/Dialogs/Display Filters..." msgstr "/╔у╔║╔╓╔К/╔ю╔╓╔╒╔М╔╟/╔г╔ё╔╧╔в╔Л╔╓╔у╔ё╔К╔©..." -#: app/menus.c:148 app/menus.c:206 +#: app/menus.c:149 app/menus.c:208 msgid "/File/Quit" msgstr "/╔у╔║╔╓╔К/╫╙н╩" #. /Xtns -#: app/menus.c:153 +#. the underscore installs an accelerator using the character that follows +#: app/menus.c:155 msgid "/_Xtns" msgstr "/Ёхд╔(_X)" -#: app/menus.c:155 +#: app/menus.c:157 msgid "/Xtns/Module Browser..." msgstr "/Ёхд╔/╔Б╔╦╔Е║╪╔К╔ж╔И╔╕╔╤..." #. /Help -#: app/menus.c:163 +#. the underscore installs an accelerator using the character that follows +#: app/menus.c:166 msgid "/_Help" msgstr "/╔ь╔К╔в(_H)" -#: app/menus.c:165 +#: app/menus.c:168 msgid "/Help/Help..." msgstr "/╔ь╔К╔в/╔ь╔К╔в..." -#: app/menus.c:167 +#: app/menus.c:170 msgid "/Help/Context Help..." msgstr "/╔ь╔К╔в/╬У╤╥е╛╠Ч╔ь╔К╔в..." -#: app/menus.c:169 +#: app/menus.c:172 msgid "/Help/Tip of the Day..." msgstr "/╔ь╔К╔в/╨ёфЭ╓н╣╩..." -#: app/menus.c:171 +#: app/menus.c:174 msgid "/Help/About..." msgstr "/╔ь╔К╔в/GIMP ╓к╓д╓╓╓ф..." -#: app/menus.c:173 +#: app/menus.c:176 msgid "/Help/Dump Items (Debug)" msgstr "/╔ь╔К╔в/фБмф╔ю╔С╔в (Debug мя)" -#. /File -#: app/menus.c:189 -msgid "/File" -msgstr "/╔у╔║╔╓╔К" - -#: app/menus.c:195 +#: app/menus.c:197 msgid "/File/Save" msgstr "/╔у╔║╔╓╔К/йщб╦" -#: app/menus.c:197 +#: app/menus.c:199 msgid "/File/Save As..." msgstr "/╔у╔║╔╓╔К/йлл╬╓гйщб╦..." -#: app/menus.c:199 +#: app/menus.c:201 msgid "/File/Revert" msgstr "/╔у╔║╔╓╔К/иЭ╣╒" -#: app/menus.c:204 +#: app/menus.c:206 msgid "/File/Close" msgstr "/╔у╔║╔╓╔К/йд╓╦╓К" #. /Edit -#: app/menus.c:214 -msgid "/Edit" -msgstr "/йт╫╦" - #: app/menus.c:216 msgid "/Edit/Undo" msgstr "/йт╫╦/╔╒╔С╔и╔╔" @@ -3460,671 +3571,590 @@ msgstr "/ #. /Edit/Buffer #: app/menus.c:236 -msgid "/Edit/Buffer" -msgstr "/йт╫╦/╔п╔ц╔у╔║" - -#: app/menus.c:238 msgid "/Edit/Buffer/Cut Named..." msgstr "/йт╫╦/╔п╔ц╔у╔║/л╬а╟╓Риу╓╠╓ф╔╚╔ц╔х" -#: app/menus.c:240 +#: app/menus.c:238 msgid "/Edit/Buffer/Copy Named..." msgstr "/йт╫╦/╔п╔ц╔у╔║/л╬а╟╓Риу╓╠╓ф╔Ё╔т║╪" -#: app/menus.c:242 +#: app/menus.c:240 msgid "/Edit/Buffer/Paste Named..." msgstr "/йт╫╦/╔п╔ц╔у╔║/л╬а╟╓Ра╙╓С╓г╔з║╪╔╧╔х" -#: app/menus.c:247 +#: app/menus.c:245 msgid "/Edit/Clear" msgstr "/йт╫╦/╬ц╣Н" -#: app/menus.c:249 +#: app/menus.c:247 msgid "/Edit/Fill" msgstr "/йт╫╦/еи╓Й╓д╓ж╓╥" -#: app/menus.c:251 +#: app/menus.c:249 msgid "/Edit/Stroke" msgstr "/йт╫╦/╔╧╔х╔М║╪╔╞иа╡Х" #. /Select -#: app/menus.c:259 -msgid "/Select" -msgstr "/а╙бР" - -#: app/menus.c:261 +#: app/menus.c:257 msgid "/Select/Invert" msgstr "/а╙бР/х©е╬" -#: app/menus.c:263 +#: app/menus.c:259 msgid "/Select/All" msgstr "/а╙бР/а╢╓ф╓Ра╙бР" -#: app/menus.c:265 +#: app/menus.c:261 msgid "/Select/None" msgstr "/а╙бР/╓й╓╥" -#: app/menus.c:267 +#: app/menus.c:263 msgid "/Select/Float" msgstr "/а╙бР/╔у╔М║╪╔х╡╫" -#: app/menus.c:272 +#: app/menus.c:268 msgid "/Select/Feather..." msgstr "/а╙бР/╤╜Ё╕╓Р╓э╓╚╓╧..." -#: app/menus.c:274 +#: app/menus.c:270 msgid "/Select/Sharpen" msgstr "/а╙бР/╔╥╔Ц║╪╔в╡╫" -#: app/menus.c:276 +#: app/menus.c:272 msgid "/Select/Shrink..." msgstr "/а╙бР/а╙бРнн╟Х╓н╫л╬╝..." -#: app/menus.c:278 +#: app/menus.c:274 msgid "/Select/Grow..." msgstr "/а╙бР/а╙бРнн╟Х╓нЁхбГ..." -#: app/menus.c:280 +#: app/menus.c:276 msgid "/Select/Border..." msgstr "/а╙бР/╠О╪Х╓Й..." -#: app/menus.c:285 +#: app/menus.c:281 msgid "/Select/Save to Channel" msgstr "/а╙бР/╔а╔Ц╔С╔м╔К╓кйщб╦" #. /View -#: app/menus.c:290 -msgid "/View" -msgstr "/и╫╪╗" - -#: app/menus.c:292 +#: app/menus.c:286 msgid "/View/Zoom In" msgstr "/и╫╪╗/ЁхбГи╫╪╗" -#: app/menus.c:294 +#: app/menus.c:288 msgid "/View/Zoom Out" msgstr "/и╫╪╗/╫л╬╝и╫╪╗" #. /View/Zoom -#: app/menus.c:299 -msgid "/View/Zoom" -msgstr "/и╫╪╗/ЁхбГн╗" - -#: app/menus.c:301 +#: app/menus.c:293 msgid "/View/Zoom/16:1" msgstr "/и╫╪╗/ЁхбГн╗/16:1" -#: app/menus.c:303 +#: app/menus.c:295 msgid "/View/Zoom/8:1" msgstr "/и╫╪╗/ЁхбГн╗/8:1" -#: app/menus.c:305 +#: app/menus.c:297 msgid "/View/Zoom/4:1" msgstr "/и╫╪╗/ЁхбГн╗/4:1" -#: app/menus.c:307 +#: app/menus.c:299 msgid "/View/Zoom/2:1" msgstr "/и╫╪╗/ЁхбГн╗/2:1" -#: app/menus.c:309 +#: app/menus.c:301 msgid "/View/Zoom/1:1" msgstr "/и╫╪╗/ЁхбГн╗/1:1" -#: app/menus.c:311 +#: app/menus.c:303 msgid "/View/Zoom/1:2" msgstr "/и╫╪╗/ЁхбГн╗/1:2" -#: app/menus.c:313 +#: app/menus.c:305 msgid "/View/Zoom/1:4" msgstr "/и╫╪╗/ЁхбГн╗/1:4" -#: app/menus.c:315 +#: app/menus.c:307 msgid "/View/Zoom/1:8" msgstr "/и╫╪╗/ЁхбГн╗/1:8" -#: app/menus.c:317 +#: app/menus.c:309 msgid "/View/Zoom/1:16" msgstr "/и╫╪╗/ЁхбГн╗/1:16" -#: app/menus.c:320 +#: app/menus.c:312 msgid "/View/Dot for Dot" msgstr "/и╫╪╗/ею╓кею╓Рбп╠Ч╓╣╓╩╓К" -#: app/menus.c:325 +#: app/menus.c:317 msgid "/View/Info Window..." msgstr "/и╫╪╗/╬ПйС╔╕╔ё╔С╔и╔╕..." -#: app/menus.c:327 +#: app/menus.c:319 msgid "/View/Nav. Window..." msgstr "/и╫╪╗/╓й╓с╔╕╔ё╔С╔и╔╕..." -#: app/menus.c:329 -msgid "/View/Undo History..." -msgstr "/и╫╪╗/╔╒╔С╔и╔╔мЗнР..." - -#: app/menus.c:334 +#: app/menus.c:324 msgid "/View/Toggle Selection" msgstr "/и╫╪╗/а╙бРнн╟Х╓ни╫╪╗" -#: app/menus.c:336 +#: app/menus.c:326 msgid "/View/Toggle Rulers" msgstr "/и╫╪╗/╓Б╓н╓╣╓╥" -#: app/menus.c:338 +#: app/menus.c:328 msgid "/View/Toggle Statusbar" msgstr "/и╫╪╗/╬Убжи╫╪╗" -#: app/menus.c:340 +#: app/menus.c:330 msgid "/View/Toggle Guides" msgstr "/и╫╪╗/╔╛╔╓╔ии╫╪╗" -#: app/menus.c:342 +#: app/menus.c:332 msgid "/View/Snap to Guides" msgstr "/и╫╪╗/╔╛╔╓╔и╓к╔╧╔й╔ц╔в" -#: app/menus.c:347 +#: app/menus.c:337 msgid "/View/New View" msgstr "/и╫╪╗/©╥╣╛и╫╪╗" -#: app/menus.c:349 +#: app/menus.c:339 msgid "/View/Shrink Wrap" msgstr "/и╫╪╗/╡ХаЭ╓нбГ╓╜╓╣╓наК╓ги╫╪╗" -#. /Image -#: app/menus.c:357 -msgid "/Image" -msgstr "/╡ХаЭ" - #. /Image/Mode -#: app/menus.c:362 -msgid "/Image/Mode" -msgstr "/╡ХаЭ/╔Б║╪╔и" - -#: app/menus.c:364 +#: app/menus.c:344 msgid "/Image/Mode/RGB" msgstr "/╡ХаЭ/╔Б║╪╔и/RGB" -#: app/menus.c:366 +#: app/menus.c:346 msgid "/Image/Mode/Grayscale" msgstr "/╡ХаЭ/╔Б║╪╔и/╔╟╔Л║╪╔╧╔╠║╪╔К" -#: app/menus.c:368 +#: app/menus.c:348 msgid "/Image/Mode/Indexed..." msgstr "/╡ХаЭ/╔Б║╪╔и/╔╓╔С╔г╔ц╔╞╔╧..." #. /Image/Colors -#: app/menus.c:376 -msgid "/Image/Colors" -msgstr "/╡ХаЭ/©╖" - -#: app/menus.c:381 +#: app/menus.c:356 msgid "/Image/Colors/Desaturate" msgstr "/╡ХаЭ/©╖/ц╕©╖" -#: app/menus.c:383 +#: app/menus.c:358 msgid "/Image/Colors/Invert" msgstr "/╡ХаЭ/©╖/х©е╬" #. /Image/Colors/Auto -#: app/menus.c:391 -msgid "/Image/Colors/Auto" -msgstr "/╡ХаЭ/©╖/╪╚ф╟" - -#: app/menus.c:393 +#: app/menus.c:366 msgid "/Image/Colors/Auto/Equalize" msgstr "/╡ХаЭ/©╖/╪╚ф╟/й©╫Ю╡╫" #. /Image/Alpha -#: app/menus.c:401 -msgid "/Image/Alpha" -msgstr "/╡ХаЭ/╔╒╔К╔у╔║" - -#: app/menus.c:403 +#: app/menus.c:374 msgid "/Image/Alpha/Add Alpha Channel" msgstr "/╡ХаЭ/╔╒╔К╔у╔║/╔╒╔К╔у╔║╔а╔Ц╔С╔м╔К╓Рди╡ц" #. /Image/Transforms -#: app/menus.c:408 -msgid "/Image/Transforms" -msgstr "/╡ХаЭ/йя╢╧" - -#: app/menus.c:410 +#: app/menus.c:379 msgid "/Image/Transforms/Offset..." msgstr "/╡ХаЭ/йя╢╧/╔╙╔у╔╩╔ц╔х..." -#: app/menus.c:412 +#: app/menus.c:381 msgid "/Image/Transforms/Rotate" msgstr "/╡ХаЭ/йя╢╧/╡Се╬" -#: app/menus.c:419 +#: app/menus.c:388 msgid "/Image/Canvas Size..." msgstr "/╡ХаЭ/╔╣╔╓╔╨йя╧╧..." -#: app/menus.c:421 +#: app/menus.c:390 msgid "/Image/Scale Image..." msgstr "/╡ХаЭ/ЁхбГ╫л╬╝..." -#: app/menus.c:423 +#: app/menus.c:392 msgid "/Image/Duplicate" msgstr "/╡ХаЭ/йёю╫" #. /Layers -#: app/menus.c:431 -msgid "/Layers" -msgstr "/╔Л╔╓╔Д║╪" - -#: app/menus.c:433 +#: app/menus.c:400 msgid "/Layers/Layers, Channels & Paths..." msgstr "/╔Л╔╓╔Д║╪/╔Л╔╓╔Д║╪, ╔а╔Ц╔С╔м╔К & ╔я╔╧..." -#. /Layers/Stack -#: app/menus.c:438 -msgid "/Layers/Stack" -msgstr "/╔Л╔╓╔Д║╪/╫е╓й╓Й" +#: app/menus.c:404 +msgid "/Layers/Layer to Imagesize" +msgstr "/╔Л╔╓╔Д║╪/╡ХаЭ╔╣╔╓╔╨╓к╧Г╓О╓╩╓К" -#: app/menus.c:440 +#. /Layers/Stack +#: app/menus.c:409 msgid "/Layers/Stack/Previous Layer" msgstr "/╔Л╔╓╔Д║╪/╫е╓й╓Й/╔Л╔╓╔Д║╪╓Ра╟лл╓ь" -#: app/menus.c:442 +#: app/menus.c:411 msgid "/Layers/Stack/Next Layer" msgstr "/╔Л╔╓╔Д║╪/╫е╓й╓Й/╔Л╔╓╔Д║╪╓Ра╟лл╓ь" -#: app/menus.c:444 +#: app/menus.c:413 msgid "/Layers/Stack/Raise Layer" msgstr "/╔Л╔╓╔Д║╪/╫е╓й╓Й/╔Л╔╓╔Д║╪╓Ра╟лл╓ь" -#: app/menus.c:446 +#: app/menus.c:415 msgid "/Layers/Stack/Lower Layer" msgstr "/╔Л╔╓╔Д║╪/╫е╓й╓Й/╔Л╔╓╔Д║╪╓Ргьлл╓ь" -#: app/menus.c:448 +#: app/menus.c:417 msgid "/Layers/Stack/Layer to Top" msgstr "/╔Л╔╓╔Д║╪/╫е╓й╓Й/╔Л╔╓╔Д║╪╓Р╨га╟лл╓ь" -#: app/menus.c:450 +#: app/menus.c:419 msgid "/Layers/Stack/Layer to Bottom" msgstr "/╔Л╔╓╔Д║╪/╫е╓й╓Й/╔Л╔╓╔Д║╪╓Р╨ггьлл╓ь" #. /Layers/Rotate -#: app/menus.c:457 +#: app/menus.c:426 msgid "/Layers/Rotate" msgstr "/╔Л╔╓╔Д║╪/╡Се╬" -#: app/menus.c:460 -msgid "/Layers/Layer to Imagesize" -msgstr "/╔Л╔╓╔Д║╪/╡ХаЭ╔╣╔╓╔╨╓к╧Г╓О╓╩╓К" - -#: app/menus.c:465 +#: app/menus.c:431 msgid "/Layers/Anchor Layer" msgstr "/╔Л╔╓╔Д║╪/╔Л╔╓╔Д║╪╓Р╦гдЙ" -#: app/menus.c:467 +#: app/menus.c:433 msgid "/Layers/Merge Visible Layers..." msgstr "/╔Л╔╓╔Д║╪/╡д╩К╔Л╔╓╔Д║╪╓неЩ╧Г..." -#: app/menus.c:469 +#: app/menus.c:435 msgid "/Layers/Flatten Image" msgstr "/╔Л╔╓╔Д║╪/╡ХаЭ╓неЩ╧Г" -#: app/menus.c:474 +#: app/menus.c:440 msgid "/Layers/Mask to Selection" msgstr "/╔Л╔╓╔Д║╪/╔ч╔╧╔╞╓Ра╙бРнн╟Х╓к" -#: app/menus.c:479 +#: app/menus.c:445 msgid "/Layers/Add Alpha Channel" msgstr "/╔Л╔╓╔Д║╪/╔╒╔К╔у╔║╔а╔Ц╔С╔м╔К╓Рди╡ц" -#: app/menus.c:481 +#: app/menus.c:447 msgid "/Layers/Alpha to Selection" msgstr "/╔Л╔╓╔Д║╪/итф╘люиТй╛╓Ра╙бРнн╟Х╓к" #. /Tools -#: app/menus.c:489 -msgid "/Tools" -msgstr "/ф╩╤Я" - -#: app/menus.c:491 +#: app/menus.c:455 msgid "/Tools/Toolbox" msgstr "/ф╩╤Я/ф╩╤Ях╒" -#: app/menus.c:493 +#: app/menus.c:457 msgid "/Tools/Default Colors" msgstr "/ф╩╤Я/╨г╫И╓н©╖╓клА╓╧" -#: app/menus.c:495 +#: app/menus.c:459 msgid "/Tools/Swap Colors" msgstr "/ф╩╤Я/а╟╥й©╖╓хгь╥й©╖╓н╦Р╢╧" -#: app/menus.c:501 -msgid "/Tools/Select Tools" -msgstr "/ф╩╤Я/а╙бР╔д║╪╔К" - -#: app/menus.c:503 -msgid "/Tools/Transform Tools" -msgstr "/ф╩╤Я/йя╢╧╔д║╪╔К" - -#: app/menus.c:505 -msgid "/Tools/Paint Tools" -msgstr "/ф╩╤Я/╔з╔╓╔С╔х╔д║╪╔К" - #. /Dialogs -#: app/menus.c:510 -msgid "/Dialogs" -msgstr "/╔ю╔╓╔╒╔М╔╟" - -#: app/menus.c:512 +#: app/menus.c:466 msgid "/Dialogs/Layers, Channels & Paths..." msgstr "/╔ю╔╓╔╒╔М╔╟/╔Л╔╓╔Д║╪, ╔а╔Ц╔С╔м╔К & ╔я╔╧..." -#: app/menus.c:514 +#: app/menus.c:468 msgid "/Dialogs/Tool Options..." msgstr "/╔ю╔╓╔╒╔М╔╟/╔д║╪╔К╔╙╔в╔╥╔Г╔С..." -#: app/menus.c:519 +#: app/menus.c:473 msgid "/Dialogs/Brushes..." msgstr "/╔ю╔╓╔╒╔М╔╟/╔ж╔И╔╥..." -#: app/menus.c:521 +#: app/menus.c:475 msgid "/Dialogs/Patterns..." msgstr "/╔ю╔╓╔╒╔М╔╟/╔я╔©║╪╔С..." -#: app/menus.c:523 +#: app/menus.c:477 msgid "/Dialogs/Gradients..." msgstr "/╔ю╔╓╔╒╔М╔╟/╔╟╔И╔г║╪╔╥╔Г╔С..." -#: app/menus.c:525 +#: app/menus.c:479 msgid "/Dialogs/Palette..." msgstr "/╔ю╔╓╔╒╔М╔╟/╔я╔Л╔ц╔х..." -#: app/menus.c:527 +#: app/menus.c:481 msgid "/Dialogs/Indexed Palette..." msgstr "/╔ю╔╓╔╒╔М╔╟/╔╓╔С╔г╔ц╔╞╔╧╔я╔Л╔ц╔х..." -#: app/menus.c:532 +#: app/menus.c:486 msgid "/Dialogs/Input Devices..." msgstr "/╔ю╔╓╔╒╔М╔╟/фЧно╔г╔п╔╓╔╧..." -#: app/menus.c:534 +#: app/menus.c:488 msgid "/Dialogs/Device Status..." msgstr "/╔ю╔╓╔╒╔М╔╟/╔г╔п╔╓╔╧╓н╬Убж..." -#: app/menus.c:539 +#: app/menus.c:493 msgid "/Dialogs/Document Index..." msgstr "/╔ю╔╓╔╒╔М╔╟/й╦╫Ялэ╪║..." -#: app/menus.c:541 +#: app/menus.c:495 msgid "/Dialogs/Error Console..." msgstr "/╔ю╔╓╔╒╔М╔╟/╔╗╔И║╪╔Ё╔С╔╫║╪╔К..." -#: app/menus.c:543 +#: app/menus.c:497 msgid "/Dialogs/Display Filters..." msgstr "/╔ю╔╓╔╒╔М╔╟/╔г╔ё╔╧╔в╔Л╔╓╔у╔ё╔К╔©..." -#. /Filters -#: app/menus.c:551 -msgid "/Filters" -msgstr "/╔у╔ё╔К╔©" +#: app/menus.c:499 +#, fuzzy +msgid "/Dialogs/Undo History..." +msgstr "/и╫╪╗/╔╒╔С╔и╔╔мЗнР..." -#: app/menus.c:553 +#. /Filters +#: app/menus.c:508 msgid "/Filters/Repeat Last" msgstr "/╔у╔ё╔К╔©/╨фе╛мя" -#: app/menus.c:555 +#: app/menus.c:510 msgid "/Filters/Re-Show Last" msgstr "/╔у╔ё╔К╔©/╨ф╪б╧т" -#: app/menus.c:561 +#: app/menus.c:515 msgid "/Filters/Blur" msgstr "/╔у╔ё╔К╔©/╓э╓╚╓╥" -#: app/menus.c:564 +#: app/menus.c:517 msgid "/Filters/Colors" msgstr "/╔у╔ё╔К╔©/©╖" -#: app/menus.c:569 +#: app/menus.c:519 msgid "/Filters/Noise" msgstr "/╔у╔ё╔К╔©/╔н╔╓╔╨" -#: app/menus.c:571 +#: app/menus.c:521 msgid "/Filters/Edge-Detect" msgstr "/╔у╔ё╔К╔©/ньЁтцЙ╫п" -#: app/menus.c:573 +#: app/menus.c:523 msgid "/Filters/Enhance" msgstr "/╔у╔ё╔К╔©/╤╞д╢" -#: app/menus.c:575 +#: app/menus.c:525 msgid "/Filters/Generic" msgstr "/╔у╔ё╔К╔©/хфмя" -#: app/menus.c:580 +#: app/menus.c:530 msgid "/Filters/Glass Effects" msgstr "/╔у╔ё╔К╔©/╔╛╔И╔╧╦З╡л" -#: app/menus.c:582 +#: app/menus.c:532 msgid "/Filters/Light Effects" msgstr "/╔у╔ё╔К╔©/╔И╔╓╔х╦З╡л" -#: app/menus.c:584 +#: app/menus.c:534 msgid "/Filters/Distorts" msgstr "/╔у╔ё╔К╔©/од╓ъ" -#: app/menus.c:586 +#: app/menus.c:536 msgid "/Filters/Artistic" msgstr "/╔у╔ё╔К╔©/╥щ╫яе╙╦З╡л" -#: app/menus.c:588 +#: app/menus.c:538 msgid "/Filters/Map" msgstr "/╔у╔ё╔К╔©/╔ч╔ц╔в" -#: app/menus.c:590 +#: app/menus.c:540 msgid "/Filters/Render" msgstr "/╔у╔ё╔К╔©/╡╪еи╓Й" -#: app/menus.c:592 +#: app/menus.c:542 msgid "/Filters/Web" msgstr "/╔у╔ё╔К╔©/Web" -#: app/menus.c:597 +#: app/menus.c:547 msgid "/Filters/Animation" msgstr "/╔у╔ё╔К╔©/╔╒╔к╔А║╪╔╥╔Г╔С" -#: app/menus.c:599 +#: app/menus.c:549 msgid "/Filters/Combine" msgstr "/╔у╔ё╔К╔©/╧Гю╝" -#: app/menus.c:604 +#: app/menus.c:554 msgid "/Filters/Toys" msgstr "/╔у╔ё╔К╔©/╓╙╓Б╓а╓Ц" -#. /Script-Fu -#: app/menus.c:609 -msgid "/Script-Fu" -msgstr "/Script-Fu" - -#: app/menus.c:620 +#: app/menus.c:567 msgid "/Automatic" msgstr "/╪╚ф╟" -#: app/menus.c:634 +#: app/menus.c:581 msgid "/By Extension" msgstr "/Ёхд╔╩р╓гх╫йл" -#: app/menus.c:648 +#: app/menus.c:595 msgid "/New Layer..." msgstr "/©╥╣╛╔Л╔╓╔Д║╪..." #. /Stack -#: app/menus.c:653 -msgid "/Stack" -msgstr "/╫е╓й╓Й" - -#: app/menus.c:655 +#: app/menus.c:600 msgid "/Stack/Raise Layer" msgstr "/╫е╓й╓Й/╔Л╔╓╔Д║╪╓Ра╟лл╓ь" -#: app/menus.c:657 +#: app/menus.c:602 msgid "/Stack/Lower Layer" msgstr "/╫е╓й╓Й/╔Л╔╓╔Д║╪╓Ргьлл╓ь" -#: app/menus.c:659 +#: app/menus.c:604 msgid "/Stack/Layer to Top" msgstr "/╫е╓й╓Й/╔Л╔╓╔Д║╪╓Р╨га╟лл╓ь" -#: app/menus.c:661 +#: app/menus.c:606 msgid "/Stack/Layer to Bottom" msgstr "/╫е╓й╓Й/╔Л╔╓╔Д║╪╓Р╨ггьлл╓ь" -#: app/menus.c:664 +#: app/menus.c:609 msgid "/Duplicate Layer" msgstr "/╔Л╔╓╔Д║╪йёю╫" -#: app/menus.c:666 +#: app/menus.c:611 msgid "/Anchor Layer" msgstr "/╔Л╔╓╔Д║╪╦гдЙ" -#: app/menus.c:668 +#: app/menus.c:613 msgid "/Delete Layer" msgstr "/╔Л╔╓╔Д║╪╨О╫Э" -#: app/menus.c:673 +#: app/menus.c:618 msgid "/Layer Boundary Size..." msgstr "/╔Л╔╓╔Д║╪╤╜Ё╕╓нбГ╓╜╓╣..." -#: app/menus.c:675 +#: app/menus.c:620 msgid "/Layer to Imagesize" msgstr "/╡ХаЭ╔╣╔╓╔╨╓к╧Г╓О╓╩╓К" -#: app/menus.c:677 +#: app/menus.c:622 msgid "/Scale Layer..." msgstr "/╔Л╔╓╔Д║╪ЁхбГ╫л╬╝..." -#: app/menus.c:682 +#: app/menus.c:627 msgid "/Merge Visible Layers..." msgstr "/╡д╩К╔Л╔╓╔Д║╪╓неЩ╧Г..." -#: app/menus.c:684 +#: app/menus.c:629 msgid "/Merge Down" msgstr "/╡╪╓н╔Л╔╓╔Д║╪╓х╥К╧Г" -#: app/menus.c:686 +#: app/menus.c:631 msgid "/Flatten Image" msgstr "/╡ХаЭ╓неЩ╧Г" -#: app/menus.c:691 +#: app/menus.c:636 msgid "/Add Layer Mask..." msgstr "/╔Л╔╓╔Д║╪╔ч╔╧╔╞ди╡ц..." -#: app/menus.c:693 +#: app/menus.c:638 msgid "/Apply Layer Mask" msgstr "/╔Л╔╓╔Д║╪╔ч╔╧╔╞е╛мя" -#: app/menus.c:695 +#: app/menus.c:640 msgid "/Delete Layer Mask" msgstr "/╔Л╔╓╔Д║╪╔ч╔╧╔╞╨О╫Э" -#: app/menus.c:697 +#: app/menus.c:642 msgid "/Mask to Selection" msgstr "/╔Л╔╓╔Д║╪╔ч╔╧╔╞╓Ра╙бРнн╟Х╓к" -#: app/menus.c:702 +#: app/menus.c:647 msgid "/Add Alpha Channel" msgstr "/╔╒╔К╔у╔║╔а╔Ц╔С╔м╔К╓Рди╡ц" -#: app/menus.c:704 +#: app/menus.c:649 msgid "/Alpha to Selection" msgstr "/итф╘люиТй╛╓Ра╙бРнн╟Х╓к" -#: app/menus.c:709 +#: app/menus.c:654 msgid "/Edit Layer Attributes..." msgstr "/╔Л╔╓╔Д║╪╓нб╟ю╜╓Рйя╧╧..." -#: app/menus.c:720 +#: app/menus.c:665 msgid "/New Channel..." msgstr "/©╥╣╛╔а╔Ц╔С╔м╔К..." -#: app/menus.c:722 +#: app/menus.c:667 msgid "/Raise Channel" msgstr "/╔а╔Ц╔С╔м╔К╬Е╬╨" -#: app/menus.c:724 +#: app/menus.c:669 msgid "/Lower Channel" msgstr "/╔а╔Ц╔С╔м╔К╡╪╧ъ" -#: app/menus.c:726 +#: app/menus.c:671 msgid "/Duplicate Channel" msgstr "/╔а╔Ц╔С╔м╔Кйёю╫" -#: app/menus.c:731 +#: app/menus.c:676 msgid "/Channel to Selection" msgstr "/╔а╔Ц╔С╔м╔К╓Ра╙бРнн╟Х╓ь" -#: app/menus.c:733 +#: app/menus.c:678 msgid "/Add to Selection" msgstr "/а╙бРнн╟Х╓к╡ц╓╗╓К" -#: app/menus.c:735 +#: app/menus.c:680 msgid "/Subtract from Selection" msgstr "/а╙бРнн╟Х╓╚╓И╟З╓╞" -#: app/menus.c:737 +#: app/menus.c:682 msgid "/Intersect with Selection" msgstr "/а╙бРнн╟Х╓х╓н╦Р╓О╓Й" -#: app/menus.c:742 +#: app/menus.c:687 msgid "/Delete Channel" msgstr "/╔а╔Ц╔С╔м╔К╨О╫Э" -#: app/menus.c:747 +#: app/menus.c:692 msgid "/Edit Channel Attributes..." msgstr "/╔а╔Ц╔С╔м╔К╓нб╟ю╜╓Рйя╧╧..." -#: app/menus.c:758 +#: app/menus.c:703 msgid "/New Path" msgstr "/©╥╣╛╔я╔╧" -#: app/menus.c:760 +#: app/menus.c:705 msgid "/Duplicate Path" msgstr "/╔я╔╧йёю╫" -#: app/menus.c:762 +#: app/menus.c:707 msgid "/Path to Selection" msgstr "/╔я╔╧╓Ра╙бРнн╟Х╓ь" -#: app/menus.c:764 +#: app/menus.c:709 msgid "/Selection to Path" msgstr "/а╙бРнн╟Х╓Р╔я╔╧╓ь" -#: app/menus.c:766 +#: app/menus.c:711 msgid "/Stroke Path" msgstr "/╔я╔╧╓Р╔╧╔х╔М║╪╔╞иа╡Х" -#: app/menus.c:768 +#: app/menus.c:713 msgid "/Delete Path" msgstr "/╔я╔╧╨О╫Э" -#: app/menus.c:773 +#: app/menus.c:718 msgid "/Copy Path" msgstr "/╔я╔╧╓Р╔Ё╔т║╪" -#: app/menus.c:775 +#: app/menus.c:720 msgid "/Paste Path" msgstr "/╔я╔╧╓Р╔з║╪╔╧╔х" -#: app/menus.c:777 +#: app/menus.c:722 msgid "/Import Path..." msgstr "/╔я╔╧╓Р╔╓╔С╔щ║╪╔х..." -#: app/menus.c:779 +#: app/menus.c:724 msgid "/Export Path..." msgstr "/╔я╔╧╓Р╔╗╔╞╔╧╔щ║╪╔х..." -#: app/menus.c:784 +#: app/menus.c:729 msgid "/Edit Path Attributes..." msgstr "/╔я╔╧╓нб╟ю╜╓Рйя╧╧..." -#: app/menus.c:1310 +#: app/menus.c:1260 #, c-format msgid "Error opening file: %s\n" msgstr "╔у╔║╔╓╔К╓РЁ╚╓╠╓ч╓╩╓С: %s\n" @@ -4676,477 +4706,471 @@ msgstr "" msgid "You will need to restart GIMP for these changes to take effect." msgstr "йя╧╧фБмф╓Рм╜╦З╓к╓╧╓К╓к╓о GIMP ╓Р╨ф╣╞ф╟╓╧╓Ки╛мв╓╛╓╒╓Й╓ч╓╧." -#: app/preferences_dialog.c:1459 +#: app/preferences_dialog.c:1002 +#, c-format +msgid "The default comments is limited to %d characters." +msgstr "" + +#: app/preferences_dialog.c:1424 msgid "Preferences" msgstr "╢д╤╜юъдЙ" #. The categories tree -#: app/preferences_dialog.c:1481 +#: app/preferences_dialog.c:1446 msgid "Categories" msgstr "╔╚╔ф╔╢╔Й" -#: app/preferences_dialog.c:1509 app/preferences_dialog.c:1511 +#: app/preferences_dialog.c:1474 app/preferences_dialog.c:1476 msgid "New File" msgstr "©╥╣╛╔у╔║╔╓╔К" -#: app/preferences_dialog.c:1522 +#: app/preferences_dialog.c:1487 msgid "Default Image Size and Unit" msgstr "╔г╔у╔╘╔К╔х╓н╡ХаЭ╔╣╔╓╔╨╓хц╠╟л" -#: app/preferences_dialog.c:1536 +#: app/preferences_dialog.c:1501 msgid "Width" msgstr "иЩ" -#: app/preferences_dialog.c:1538 +#: app/preferences_dialog.c:1503 msgid "Height" msgstr "╧Б╓╣" -#: app/preferences_dialog.c:1568 +#: app/preferences_dialog.c:1533 msgid "Default Image Resolution and Resolution Unit" msgstr "╔г╔у╔╘╔К╔х╓н╡ХаЭ╡РаЭеы╓хц╠╟л" -#: app/preferences_dialog.c:1595 app/preferences_dialog.c:2359 +#: app/preferences_dialog.c:1560 app/preferences_dialog.c:2288 msgid "dpi" msgstr "dpi" -#: app/preferences_dialog.c:1642 +#: app/preferences_dialog.c:1607 msgid "Default Image Type:" msgstr "╔г╔у╔╘╔К╔х╓н╡ХаЭ╪О:" -#: app/preferences_dialog.c:1678 app/preferences_dialog.c:2166 -msgid "Bytes" -msgstr "Bytes" - -#: app/preferences_dialog.c:1679 app/preferences_dialog.c:2167 -msgid "KiloBytes" -msgstr "KBytes" - -#: app/preferences_dialog.c:1680 app/preferences_dialog.c:2168 -msgid "MegaBytes" -msgstr "MBytes" - -#: app/preferences_dialog.c:1686 +#: app/preferences_dialog.c:1618 msgid "Maximum Image Size:" msgstr "╨гбГ╡ХаЭ╔╣╔╓╔╨:" -#: app/preferences_dialog.c:1692 app/preferences_dialog.c:1694 +#: app/preferences_dialog.c:1623 app/preferences_dialog.c:1625 +#, fuzzy +msgid "Default Comment" +msgstr "╫И╢Эцм" + +#: app/preferences_dialog.c:1633 +msgid "Comment Used for New Images" +msgstr "" + +#: app/preferences_dialog.c:1653 app/preferences_dialog.c:1655 msgid "Display" msgstr "и╫╪╗" -#: app/preferences_dialog.c:1702 +#: app/preferences_dialog.c:1663 msgid "Transparency" msgstr "ф╘люиТй╛" -#: app/preferences_dialog.c:1721 +#: app/preferences_dialog.c:1682 msgid "Light Checks" msgstr "лю╓К╓╓Ёй╩р" -#: app/preferences_dialog.c:1722 +#: app/preferences_dialog.c:1683 msgid "Mid-Tone Checks" msgstr "цФ╢жд╢╓нЁй╩р" -#: app/preferences_dialog.c:1723 +#: app/preferences_dialog.c:1684 msgid "Dark Checks" msgstr "╟е╓╓Ёй╩р" -#: app/preferences_dialog.c:1724 +#: app/preferences_dialog.c:1685 msgid "White Only" msgstr "гР©╖╓н╓ъ" -#: app/preferences_dialog.c:1725 +#: app/preferences_dialog.c:1686 msgid "Gray Only" msgstr "Ё╔©╖╓н╓ъ" -#: app/preferences_dialog.c:1726 +#: app/preferences_dialog.c:1687 msgid "Black Only" msgstr "╧У©╖╓н╓ъ" -#: app/preferences_dialog.c:1730 +#: app/preferences_dialog.c:1691 msgid "Transparency Type:" msgstr "ф╘люиТй╛и╫╪╗╥а╪╟:" -#: app/preferences_dialog.c:1737 app/preferences_dialog.c:1810 -#: app/preferences_dialog.c:1824 +#: app/preferences_dialog.c:1698 app/preferences_dialog.c:1771 +#: app/preferences_dialog.c:1785 msgid "Small" msgstr "╬╝╓╣╓╓" -#: app/preferences_dialog.c:1738 app/preferences_dialog.c:1811 -#: app/preferences_dialog.c:1825 +#: app/preferences_dialog.c:1699 app/preferences_dialog.c:1772 +#: app/preferences_dialog.c:1786 msgid "Medium" msgstr "цФ╢ж" -#: app/preferences_dialog.c:1739 app/preferences_dialog.c:1812 -#: app/preferences_dialog.c:1826 +#: app/preferences_dialog.c:1700 app/preferences_dialog.c:1773 +#: app/preferences_dialog.c:1787 msgid "Large" msgstr "бГ╓╜╓╓" -#: app/preferences_dialog.c:1743 +#: app/preferences_dialog.c:1704 msgid "Check Size:" msgstr "Ёй╩р╔╣╔╓╔╨:" -#: app/preferences_dialog.c:1746 +#: app/preferences_dialog.c:1707 msgid "8-Bit Displays" msgstr "8-Bit и╫╪╗╩Ч" -#: app/preferences_dialog.c:1751 +#: app/preferences_dialog.c:1712 msgid "Install Colormap" msgstr "╪╚а╟╓н╔╚╔И║╪╔ч╔ц╔в╓Р╩хмя" -#: app/preferences_dialog.c:1760 +#: app/preferences_dialog.c:1721 msgid "Colormap Cycling" msgstr "╔╚╔И║╪╔ч╔ц╔в╓н╔╣╔╓╔╞╔Й╔С╔╟" -#: app/preferences_dialog.c:1809 +#: app/preferences_dialog.c:1770 msgid "Tiny" msgstr "хЫ╬╝" -#: app/preferences_dialog.c:1813 +#: app/preferences_dialog.c:1774 msgid "Huge" msgstr "╣ПбГ" -#: app/preferences_dialog.c:1817 +#: app/preferences_dialog.c:1778 msgid "Preview Size:" msgstr "╔в╔Л╔с╔Е║╪╔╣╔╓╔╨:" -#: app/preferences_dialog.c:1830 +#: app/preferences_dialog.c:1791 msgid "Nav Preview Size:" msgstr "╓й╓с╔в╔Л╔с╔Е║╪╔╣╔╓╔╨:" -#: app/preferences_dialog.c:1840 +#: app/preferences_dialog.c:1801 msgid "Recent Documents List Size:" msgstr "╨г╤А╩х╓ц╓©╔у╔║╔╓╔К╓н╣╜о©©Т:" #. Indicators -#: app/preferences_dialog.c:1844 +#: app/preferences_dialog.c:1805 msgid "Toolbox" msgstr "╔д║╪╔К╔э╔ц╔╞╔╧" -#: app/preferences_dialog.c:1847 +#: app/preferences_dialog.c:1808 msgid "Display Brush, Pattern and Gradient Indicators" msgstr "╔ж╔И╔╥╓х╔я╔©║╪╔С║╒╔╟╔И╔г║╪╔╥╔Г╔С╓Ри╫╪╗╓╧╓К" -#: app/preferences_dialog.c:1856 +#: app/preferences_dialog.c:1817 msgid "Dialog Behaviour" msgstr "╔ю╔╓╔╒╔М╔╟╓н©╤иЯ╓╓" -#: app/preferences_dialog.c:1858 +#: app/preferences_dialog.c:1819 msgid "Navigation Window per Display" msgstr "╔г╔ё╔╧╔в╔Л╔╓кХ╓н╔╕╔ё╔С╔и╔╕╓й╓с" -#: app/preferences_dialog.c:1867 +#: app/preferences_dialog.c:1828 msgid "Info Window Follows Mouse" msgstr "╬ПйС╔╕╔╓╔С╔и╔╕╓нфБмф╓Р╔ч╔╕╔╧╔╚║╪╔╫╔К╓к╧Г╓О╓╩╓К" -#: app/preferences_dialog.c:1878 app/preferences_dialog.c:1880 +#: app/preferences_dialog.c:1839 app/preferences_dialog.c:1841 msgid "Help System" msgstr "╔ь╔К╔в╔╥╔╧╔ф╔Ю" -#: app/preferences_dialog.c:1890 +#: app/preferences_dialog.c:1851 msgid "Show Tool Tips" msgstr "ф╩╤Я╓н╢й╟вюБлю╓Ри╫╪╗" -#: app/preferences_dialog.c:1900 +#: app/preferences_dialog.c:1861 msgid "Context Sensitive Help with \"F1\"" msgstr "\"F1\" ╔╜║╪╓к╓Х╓К╬У╤╥╓к╠Ч╓╦╓©╔ь╔К╔в" -#: app/preferences_dialog.c:1909 +#: app/preferences_dialog.c:1870 msgid "Help Browser" msgstr "╔ь╔К╔в╔ж╔И╔╕╔╤" -#: app/preferences_dialog.c:1921 +#: app/preferences_dialog.c:1882 msgid "Internal" msgstr "фБб╒" -#: app/preferences_dialog.c:1922 +#: app/preferences_dialog.c:1883 msgid "Netscape" msgstr "Netscape" -#: app/preferences_dialog.c:1926 +#: app/preferences_dialog.c:1887 msgid "Help Browser to Use:" msgstr "╩хмя╓╧╓К╔ь╔К╔в╔ж╔И╔╕╔╤:" -#: app/preferences_dialog.c:1931 app/preferences_dialog.c:1933 +#: app/preferences_dialog.c:1892 app/preferences_dialog.c:1894 msgid "Image Windows" msgstr "╡ХаЭ╔╕╔ё╔С╔и╔╕" -#: app/preferences_dialog.c:1941 +#: app/preferences_dialog.c:1902 msgid "Appearance" msgstr "и╫╪╗╥а╪╟" -#: app/preferences_dialog.c:1943 +#: app/preferences_dialog.c:1904 msgid "Use \"Dot for Dot\" by default" msgstr "╔г╔у╔╘╔К╔х╓г║жею╓кею╓Рбп╠Ч╓╣╓╩╓К║в" -#: app/preferences_dialog.c:1952 +#: app/preferences_dialog.c:1913 msgid "Resize Window on Zoom" msgstr "╔╨║╪╔Ю╩Ч╓к╔╕╔ё╔С╔и╔╕╓Р╔Й╔╣╔╓╔╨╓╧╓К" -#: app/preferences_dialog.c:1961 +#: app/preferences_dialog.c:1922 msgid "Show Rulers" msgstr "╓Б╓н╓╣╓╥╓Ри╫╪╗╓╧╓К" -#: app/preferences_dialog.c:1970 +#: app/preferences_dialog.c:1931 msgid "Show Statusbar" msgstr "╬Убжи╫╪╗╓Р╧т╓╕" -#: app/preferences_dialog.c:1994 +#: app/preferences_dialog.c:1955 msgid "Marching Ants Speed:" msgstr "╣б╓н╧т©йб╝еы:" #. Set the currently used string as "Custom" -#: app/preferences_dialog.c:2002 +#: app/preferences_dialog.c:1963 msgid "Custom" msgstr "╔╚╔╧╔©╔Ю" #. set some commonly used format strings -#: app/preferences_dialog.c:2008 +#: app/preferences_dialog.c:1969 msgid "Standard" msgstr "и╦╫Ю" -#: app/preferences_dialog.c:2013 +#: app/preferences_dialog.c:1974 msgid "Show zoom percentage" msgstr "ЁхбГ╔я║╪╔╩╔С╔ф║╪╔╦╓Ри╫╪╗" -#: app/preferences_dialog.c:2018 +#: app/preferences_dialog.c:1979 msgid "Show zoom ratio" msgstr "ЁхбГн╗╓Ри╫╪╗" -#: app/preferences_dialog.c:2023 +#: app/preferences_dialog.c:1984 msgid "Show reversed zoom ratio" msgstr "╫л╬╝н╗╓Ри╫╪╗" -#: app/preferences_dialog.c:2034 +#: app/preferences_dialog.c:1995 msgid "Image Title Format:" msgstr "╡ХаЭ╔©╔╓╔х╔К╥а╪╟:" #. End of the title format string -#: app/preferences_dialog.c:2038 +#: app/preferences_dialog.c:1999 msgid "Pointer Movement Feedback" msgstr "╔щ╔╓╔С╔©╟эф╟╔у╔ё║╪╔и╔п╔ц╔╞" -#: app/preferences_dialog.c:2041 +#: app/preferences_dialog.c:2002 msgid "Perfect-but-Slow Pointer Tracking" msgstr "ю╣Ён╓ю╓╛цы╓╓╔щ╔╓╔С╔©╟лцждиювк║" -#: app/preferences_dialog.c:2050 +#: app/preferences_dialog.c:2011 msgid "Disable Cursor Updating" msgstr "╔╚║╪╔╫╔К╓н╪╚ф╟╧╧©╥╓Р╓╥╓й╓╓" -#: app/preferences_dialog.c:2062 app/preferences_dialog.c:2064 +#: app/preferences_dialog.c:2023 app/preferences_dialog.c:2025 #: app/tools.c:1080 msgid "Tool Options" msgstr "╔д║╪╔К╔╙╔в╔╥╔Г╔С" -#: app/preferences_dialog.c:2072 +#: app/preferences_dialog.c:2033 msgid "Paint Options" msgstr "иа╡Х╔╙╔в╔╥╔Г╔С" -#: app/preferences_dialog.c:2075 +#: app/preferences_dialog.c:2036 msgid "Use Global Paint Options" msgstr "╔╟╔М║╪╔п╔Киа╡Х╔╙╔в╔╥╔Г╔С╓Р╩х╓╕" -#: app/preferences_dialog.c:2090 app/preferences_dialog.c:2092 +#: app/preferences_dialog.c:2051 app/preferences_dialog.c:2053 msgid "Environment" msgstr "╢д╤╜" -#: app/preferences_dialog.c:2100 +#: app/preferences_dialog.c:2061 msgid "Resource Consumption" msgstr "╔Й╔╫║╪╔╧╓н╩х╓╓йЩ" -#: app/preferences_dialog.c:2102 +#: app/preferences_dialog.c:2063 msgid "Conservative Memory Usage" msgstr "╔А╔Б╔Й╩хмя╓Р╓╠╓а╓К" -#: app/preferences_dialog.c:2130 +#: app/preferences_dialog.c:2091 msgid "Levels of Undo:" msgstr "╔╒╔С╔и╔╔╔Л╔ы╔К:" -#: app/preferences_dialog.c:2174 -msgid "Tile Cache Size:" -msgstr "╔©╔╓╔К╔╜╔Ц╔ц╔╥╔Е╔╣╔╓╔╨:" - -#: app/preferences_dialog.c:2185 +#: app/preferences_dialog.c:2113 msgid "Number of Processors to Use:" msgstr "╩хмя╓╧╓К╔в╔М╔╩╔ц╔╣╓н©Т:" -#: app/preferences_dialog.c:2189 app/transform_tool.c:215 +#: app/preferences_dialog.c:2117 app/transform_tool.c:215 msgid "Scaling" msgstr "ЁхбГ╫л╬╝" -#: app/preferences_dialog.c:2207 +#: app/preferences_dialog.c:2135 msgid "Nearest Neighbor (Fast)" msgstr "╨г╤Аюэ╔т╔╞╔╩╔К (б╝╓╓)" -#: app/preferences_dialog.c:2211 +#: app/preferences_dialog.c:2139 msgid "Cubic (Slow)" msgstr "╩╟╪║йД╢ж (цы╓╓)" -#: app/preferences_dialog.c:2216 +#: app/preferences_dialog.c:2144 msgid "Interpolation Type:" msgstr "йД╢ж╓н╪ОнЮ:" -#: app/preferences_dialog.c:2219 +#: app/preferences_dialog.c:2147 msgid "File Saving" msgstr "╔у╔║╔╓╔Кйщб╦" -#: app/preferences_dialog.c:2236 app/preferences_dialog.c:2249 +#: app/preferences_dialog.c:2164 app/preferences_dialog.c:2177 msgid "Always" msgstr "╬О╩Ч" -#: app/preferences_dialog.c:2237 +#: app/preferences_dialog.c:2165 msgid "Never" msgstr "╓╥╓й╓╓" -#: app/preferences_dialog.c:2241 +#: app/preferences_dialog.c:2169 msgid "Try to Write a Thumbnail File:" msgstr "╢й╟ви╫╪╗╔у╔║╔╓╔К╫Я╓╜╫п╓╥:" -#: app/preferences_dialog.c:2248 +#: app/preferences_dialog.c:2176 msgid "Only when Modified" msgstr "йя╧╧╓╛╓╒╓ц╓©╩Ч╓ю╓╠" -#: app/preferences_dialog.c:2253 +#: app/preferences_dialog.c:2181 msgid "\"File > Save\" Saves the Image:" msgstr "\"╔у╔║╔╓╔К > йщб╦\" ╓г╓н╡ХаЭйщб╦╓о:" -#: app/preferences_dialog.c:2259 +#: app/preferences_dialog.c:2187 msgid "Session Management" msgstr "╔╩╔ц╔╥╔Г╔С╢имЩ" -#: app/preferences_dialog.c:2261 +#: app/preferences_dialog.c:2189 msgid "Session" msgstr "╔╩╔ц╔╥╔Г╔С" -#: app/preferences_dialog.c:2269 +#: app/preferences_dialog.c:2197 msgid "Window Positions" msgstr "╔╕╔ё╔С╔и╔╕╟лцж" -#: app/preferences_dialog.c:2271 +#: app/preferences_dialog.c:2199 msgid "Save Window Positions on Exit" msgstr "╫╙н╩╩Ч╓к╔╕╔ё╔С╔и╔╕╓н╟лцж╓Рйщб╦╓╧╓К" -#: app/preferences_dialog.c:2285 +#: app/preferences_dialog.c:2213 msgid "Clear Saved Window Positions Now" msgstr "д╬╓а╓кйщб╦╓╣╓Л╓ф╓╓╓К╔╕╔ё╔С╔и╔╕╟лцж╓Р╬ц╣Н" -#: app/preferences_dialog.c:2293 +#: app/preferences_dialog.c:2221 msgid "Always Try to Restore Session" msgstr "╔╩╔ц╔╥╔Г╔С╓Р╨фЁ╚╓╧╓К╓Х╓╕╓к╓╧╓К" -#: app/preferences_dialog.c:2302 +#: app/preferences_dialog.c:2230 msgid "Devices" msgstr "╔г╔п╔╓╔╧╓н╬Убж" -#: app/preferences_dialog.c:2304 +#: app/preferences_dialog.c:2232 msgid "Save Device Status on Exit" msgstr "╫╙н╩╩Ч╓к╔г╔п╔╓╔╧╓н╬Убж╓Рйщб╦╓╧╓К" -#: app/preferences_dialog.c:2315 app/preferences_dialog.c:2317 +#: app/preferences_dialog.c:2243 app/preferences_dialog.c:2245 msgid "Monitor" msgstr "╔Б╔к╔©║╪" -#: app/preferences_dialog.c:2325 +#: app/preferences_dialog.c:2253 msgid "Get Monitor Resolution" msgstr "╔Б╔к╔©║╪╡РаЭеы╓Р" -#: app/preferences_dialog.c:2333 +#: app/preferences_dialog.c:2261 #, c-format msgid "(Currently %d x %d dpi)" msgstr "(╦╫╨ъ %d x %d dpi)" -#: app/preferences_dialog.c:2384 +#: app/preferences_dialog.c:2313 msgid "From X Server" msgstr "X ╔╣║╪╔п╓╚╓Ифю╓К" -#: app/preferences_dialog.c:2399 +#: app/preferences_dialog.c:2328 msgid "Manually:" msgstr "╪╚й╛╓гюъдЙ╓╧╓К:" -#: app/preferences_dialog.c:2412 app/preferences_dialog.c:2414 +#: app/preferences_dialog.c:2341 app/preferences_dialog.c:2343 msgid "Directories" msgstr "╔г╔ё╔Л╔╞╔х╔Й" -#: app/preferences_dialog.c:2431 +#: app/preferences_dialog.c:2360 msgid "Temp Dir:" msgstr "╔ф╔С╔щ╔И╔Й:" -#: app/preferences_dialog.c:2431 +#: app/preferences_dialog.c:2360 msgid "Select Temp Dir" msgstr "╔ф╔С╔щ╔И╔Й Dir ╓Ра╙бР" -#: app/preferences_dialog.c:2432 +#: app/preferences_dialog.c:2361 msgid "Swap Dir:" msgstr "╔╧╔О╔ц╔в:" -#: app/preferences_dialog.c:2432 -msgid "Select Swap Dir" -msgstr "╔╧╔О╔ц╔в Dir ╓Ра╙бР" - -#: app/preferences_dialog.c:2468 +#: app/preferences_dialog.c:2397 msgid "Brushes Directories" msgstr "╔ж╔И╔╥╔г╔ё╔Л╔╞╔х╔Й" -#: app/preferences_dialog.c:2470 +#: app/preferences_dialog.c:2399 msgid "Select Brushes Dir" msgstr "╔ж╔И╔╥ Dir ╓Ра╙бР" -#: app/preferences_dialog.c:2472 +#: app/preferences_dialog.c:2401 msgid "Generated Brushes" msgstr "ю╦ю╝╓╣╓Л╓©╔ж╔И╔╥" -#: app/preferences_dialog.c:2472 +#: app/preferences_dialog.c:2401 msgid "Generated Brushes Directories" msgstr "ю╦ю╝╓╣╓Л╓©╔ж╔И╔╥╔г╔ё╔Л╔╞╔х╔Й" -#: app/preferences_dialog.c:2474 +#: app/preferences_dialog.c:2403 msgid "Select Generated Brushes Dir" msgstr "ю╦ю╝╓╣╓Л╓©╔ж╔И╔╥ Dir ╓Ра╙бР" -#: app/preferences_dialog.c:2476 +#: app/preferences_dialog.c:2405 msgid "Patterns Directories" msgstr "╔я╔©║╪╔С╔г╔ё╔Л╔╞╔х╔Й" -#: app/preferences_dialog.c:2478 +#: app/preferences_dialog.c:2407 msgid "Select Patterns Dir" msgstr "╔я╔©║╪╔С Dir ╓Ра╙бР" -#: app/preferences_dialog.c:2480 +#: app/preferences_dialog.c:2409 msgid "Palettes Directories" msgstr "╔я╔Л╔ц╔х╔г╔ё╔Л╔╞╔х╔Й" -#: app/preferences_dialog.c:2482 +#: app/preferences_dialog.c:2411 msgid "Select Palettes Dir" msgstr "╔я╔Л╔ц╔х Dir ╓Ра╙бР" -#: app/preferences_dialog.c:2484 +#: app/preferences_dialog.c:2413 msgid "Gradients Directories" msgstr "╔╟╔И╔г║╪╔╥╔Г╔С╔г╔ё╔Л╔╞╔х╔Й" -#: app/preferences_dialog.c:2486 +#: app/preferences_dialog.c:2415 msgid "Select Gradients Dir" msgstr "╔╟╔И╔г║╪╔╥╔Г╔С Dir ╓Ра╙бР" -#: app/preferences_dialog.c:2488 +#: app/preferences_dialog.c:2417 msgid "Plug-Ins" msgstr "╔в╔И╔╟╔╓╔С" -#: app/preferences_dialog.c:2488 +#: app/preferences_dialog.c:2417 msgid "Plug-Ins Directories" msgstr "╔в╔И╔╟╔╓╔С╔г╔ё╔Л╔╞╔х╔Й" -#: app/preferences_dialog.c:2490 +#: app/preferences_dialog.c:2419 msgid "Select Plug-Ins Dir" msgstr "╔в╔И╔╟╔╓╔С Dir ╓Ра╙бР" -#: app/preferences_dialog.c:2492 +#: app/preferences_dialog.c:2421 msgid "Modules" msgstr "╔Б╔╦╔Е║╪╔К" -#: app/preferences_dialog.c:2492 +#: app/preferences_dialog.c:2421 msgid "Modules Directories" msgstr "╔Б╔╦╔Е║╪╔К╔г╔ё╔Л╔╞╔х╔Й" -#: app/preferences_dialog.c:2494 +#: app/preferences_dialog.c:2423 msgid "Select Modules Dir" msgstr "╔Б╔╦╔Е║╪╔К Dir ╓Ра╙бР" @@ -5218,59 +5242,59 @@ msgstr " msgid "Selection: " msgstr "а╙бР: " -#: app/resize.c:154 +#: app/resize.c:156 msgid "Scale Layer" msgstr "╔Л╔╓╔Д║╪ЁхбГ╫л╬╝" -#: app/resize.c:156 app/resize.c:181 app/tool_options.c:774 +#: app/resize.c:158 app/resize.c:183 app/tool_options.c:774 msgid "Size" msgstr "бГ╓╜╓╣" -#: app/resize.c:160 +#: app/resize.c:162 msgid "Scale Image" msgstr "╡ХаЭЁхбГ╫л╬╝" -#: app/resize.c:162 +#: app/resize.c:164 msgid "Pixel Dimensions" msgstr "╔т╔╞╔╩╔Кюёк║" -#: app/resize.c:172 +#: app/resize.c:174 msgid "Set Layer Boundary Size" msgstr "╔Л╔╓╔Д║╪╤╜Ё╕╓нбГ╓╜╓╣юъдЙ" -#: app/resize.c:177 +#: app/resize.c:179 msgid "Set Canvas Size" msgstr "╡ХаЭ╓нбГ╓╜╓╣юъдЙ" #. the original width & height labels -#: app/resize.c:234 app/scale_tool.c:77 +#: app/resize.c:236 app/scale_tool.c:77 msgid "Original Width:" msgstr "╦╣╓ниЩ:" #. the new size labels -#: app/resize.c:259 app/resize.c:504 +#: app/resize.c:261 app/resize.c:506 msgid "New Width:" msgstr "©╥╓╥╓╓иЩ:" #. the scale ratio labels -#: app/resize.c:324 +#: app/resize.c:326 msgid "Ratio X:" msgstr "хФн╗ X:" #. the x and y offset labels -#: app/resize.c:409 +#: app/resize.c:411 msgid "X:" msgstr "X:" -#: app/resize.c:490 +#: app/resize.c:492 msgid "Print Size & Display Unit" msgstr "╟У╨Ч╔╣╔╓╔╨╓хи╫╪╗ц╠╟л" -#: app/resize.c:1252 +#: app/resize.c:1254 msgid "Scale Error: Both width and height must be greater than zero." msgstr "ЁхбГ╫л╬╝╔╗╔И║╪: иЩ╓х╧Б╓╣╓о╓и╓а╓И╓Б0╓Х╓ЙбГ╓╜╓╞╓й╓╠╓Л╓п╓й╓Й╓ч╓╩╓С." -#: app/resize.c:1334 +#: app/resize.c:1336 msgid "" "The chosen image size will shrink\n" "some layers completely away.\n" @@ -5280,7 +5304,7 @@ msgstr "" "╔Л╔╓╔Д║╪╓╛╬╝╓╣╓╧╓╝╓ф╦╚╓╗╓й╓╞╓й╓К\n" "╡дг╫ю╜╓╛╓╒╓Й╓ч╓╧. ╓Х╓М╓╥╓╓╓г╓╧╓╚?" -#: app/resize.c:1338 +#: app/resize.c:1340 msgid "Layer Too Small" msgstr "╔Л╔╓╔Д║╪╓╛╬╝╓╣╓╧╓╝╓ч╓╧" @@ -6178,3 +6202,123 @@ msgstr " #: modules/colorsel_water.c:640 msgid "Color History" msgstr "©╖╩хмянР" + +#~ msgid "Custom from Editor" +#~ msgstr "╔╗╔г╔ё╔©╓╚╓Ифх╪╚╓к" + +#~ msgid "" +#~ "The GIMP - GNU Image Manipulation Program\n" +#~ "\n" +#~ msgstr "" +#~ "The GIMP - GNU ╡ХаЭ╫ХмЩ╔в╔М╔╟╔И╔Ю\n" +#~ "\n" + +#~ msgid "For a proper GIMP installation, a subdirectory called\n" +#~ msgstr "ю╣╬О╓к GIMP ╓╛╔╓╔С╔╧╔х║╪╔К╓╣╓Л╓Л╓п,\n" + +#~ msgid "Install" +#~ msgstr "╔╓╔С╔╧╔х║╪╔К" + +#~ msgid "Ignore" +#~ msgstr "л╣╩К" + +#~ msgid "-*-helvetica-medium-o-normal-*-*-100-*-*-*-*-*-*" +#~ msgstr "-*-helvetica-medium-o-normal-*-*-100-*-*-*-*-*-*" + +#~ msgid "-*-helvetica-medium-r-normal-*-*-100-*-*-*-*-*-*,*" +#~ msgstr "" +#~ "-*-helvetica-medium-r-normal-*-*-120-*-*-*-*-*-*,-misc-fixed-medium-r-normal-" +#~ "*-14-*-*-*-*-*-*-*,*" + +#~ msgid "Installation Log" +#~ msgstr "╔╓╔С╔╧╔х║╪╔К╔М╔╟" + +#~ msgid "-*-helvetica-medium-r-normal-*-*-120-*-*-*-*-*-*,*" +#~ msgstr "" +#~ "-*-helvetica-medium-r-normal-*-*-120-*-*-*-*-*-*,-misc-fixed-medium-r-normal-" +#~ "*-14-*-*-*-*-*-*-*,*" + +#~ msgid "" +#~ "\n" +#~ "Installation successful!\n" +#~ msgstr "" +#~ "\n" +#~ "╔╓╔С╔╧╔х║╪╔Кю╝╦Ы!\n" + +#~ msgid "/File/Dialogs" +#~ msgstr "/╔у╔║╔╓╔К/╔ю╔╓╔╒╔М╔╟" + +#~ msgid "/File" +#~ msgstr "/╔у╔║╔╓╔К" + +#~ msgid "/Edit" +#~ msgstr "/йт╫╦" + +#~ msgid "/Edit/Buffer" +#~ msgstr "/йт╫╦/╔п╔ц╔у╔║" + +#~ msgid "/Select" +#~ msgstr "/а╙бР" + +#~ msgid "/View" +#~ msgstr "/и╫╪╗" + +#~ msgid "/View/Zoom" +#~ msgstr "/и╫╪╗/ЁхбГн╗" + +#~ msgid "/Image" +#~ msgstr "/╡ХаЭ" + +#~ msgid "/Image/Mode" +#~ msgstr "/╡ХаЭ/╔Б║╪╔и" + +#~ msgid "/Image/Colors" +#~ msgstr "/╡ХаЭ/©╖" + +#~ msgid "/Image/Colors/Auto" +#~ msgstr "/╡ХаЭ/©╖/╪╚ф╟" + +#~ msgid "/Image/Alpha" +#~ msgstr "/╡ХаЭ/╔╒╔К╔у╔║" + +#~ msgid "/Image/Transforms" +#~ msgstr "/╡ХаЭ/йя╢╧" + +#~ msgid "/Layers" +#~ msgstr "/╔Л╔╓╔Д║╪" + +#~ msgid "/Layers/Stack" +#~ msgstr "/╔Л╔╓╔Д║╪/╫е╓й╓Й" + +#~ msgid "/Tools" +#~ msgstr "/ф╩╤Я" + +#~ msgid "/Tools/Select Tools" +#~ msgstr "/ф╩╤Я/а╙бР╔д║╪╔К" + +#~ msgid "/Tools/Transform Tools" +#~ msgstr "/ф╩╤Я/йя╢╧╔д║╪╔К" + +#~ msgid "/Tools/Paint Tools" +#~ msgstr "/ф╩╤Я/╔з╔╓╔С╔х╔д║╪╔К" + +#~ msgid "/Dialogs" +#~ msgstr "/╔ю╔╓╔╒╔М╔╟" + +#~ msgid "/Filters" +#~ msgstr "/╔у╔ё╔К╔©" + +#~ msgid "/Script-Fu" +#~ msgstr "/Script-Fu" + +#~ msgid "/Stack" +#~ msgstr "/╫е╓й╓Й" + +#~ msgid "Bytes" +#~ msgstr "Bytes" + +#~ msgid "KiloBytes" +#~ msgstr "KBytes" + +#~ msgid "MegaBytes" +#~ msgstr "MBytes" diff --git a/po/ko.po b/po/ko.po index 7fd350de66..102b7dcaf2 100644 --- a/po/ko.po +++ b/po/ko.po @@ -4,7 +4,7 @@ msgid "" msgstr "" "Project-Id-Version: gimp 1.1.12\n" -"POT-Creation-Date: 2000-03-03 17:47-0800\n" +"POT-Creation-Date: 2000-03-14 23:09+0100\n" "PO-Revision-Date: 1999-11-26 03:49:46+0900\n" "Last-Translator: Sung-Hyun Nam \n" "Language-Team: Korean \n" @@ -61,45 +61,45 @@ msgstr "Version %s brought to you by" msgid "GIMP Startup" msgstr "GIMP ╫цюш" -#: app/app_procs.c:479 app/gimprc.c:432 +#: app/app_procs.c:479 app/gimprc.c:448 #, c-format msgid "parsing \"%s\"\n" msgstr "\"%s\" гь╪╝аъ\n" #. initialize the xcf file format routines -#: app/app_procs.c:539 +#: app/app_procs.c:541 msgid "Looking for data files" msgstr "╣╔юле╦ фдюою╩ цё╢б аъ" -#: app/app_procs.c:539 +#: app/app_procs.c:541 msgid "Parasites" msgstr "╠Б╩Щ(Parasites)" #. initialize the global parasite table -#: app/app_procs.c:541 app/internal_procs.c:71 app/preferences_dialog.c:2468 +#: app/app_procs.c:543 app/internal_procs.c:71 app/preferences_dialog.c:2397 msgid "Brushes" msgstr "╨Й╥╞╫╛" #. initialize the list of gimp brushes -#: app/app_procs.c:543 app/internal_procs.c:143 app/preferences_dialog.c:2476 +#: app/app_procs.c:545 app/internal_procs.c:143 app/preferences_dialog.c:2405 msgid "Patterns" msgstr "фпео" #. initialize the list of gimp patterns -#: app/app_procs.c:545 app/preferences_dialog.c:2480 +#: app/app_procs.c:547 app/preferences_dialog.c:2409 msgid "Palettes" msgstr "фх╥©" #. initialize the list of gimp palettes -#: app/app_procs.c:547 app/internal_procs.c:113 app/preferences_dialog.c:2484 +#: app/app_procs.c:549 app/internal_procs.c:113 app/preferences_dialog.c:2413 msgid "Gradients" msgstr "╩Ж╟╗╨╞х╜╣╣" -#: app/app_procs.c:735 +#: app/app_procs.c:737 msgid "Really Quit?" msgstr "а╓╦╩ а╬╥Агр╠Н©Д?" -#: app/app_procs.c:739 +#: app/app_procs.c:741 msgid "" "Some files unsaved.\n" "\n" @@ -109,21 +109,21 @@ msgstr "" "\n" "GIMP╦╕ а╬╥Агр╠Н©Д?" -#: app/app_procs.c:740 app/install.c:272 app/install.c:430 +#: app/app_procs.c:742 msgid "Quit" msgstr "а╬╥А" -#: app/app_procs.c:740 app/brightness_contrast.c:218 app/channel_ops.c:93 +#: app/app_procs.c:742 app/brightness_contrast.c:218 app/channel_ops.c:93 #: app/channels_dialog.c:2463 app/channels_dialog.c:2637 #: app/color_balance.c:275 app/color_notebook.c:125 app/convert.c:506 #: app/curves.c:559 app/file_new_dialog.c:207 app/file_new_dialog.c:357 #: app/gdisplay_color_ui.c:129 app/gdisplay_ops.c:346 app/gimpprogress.c:112 -#: app/global_edit.c:739 app/gradient.c:1769 app/gradient.c:4839 -#: app/gradient.c:5400 app/hue_saturation.c:377 app/interface.c:984 -#: app/layers_dialog.c:3326 app/layers_dialog.c:3517 app/layers_dialog.c:3617 -#: app/layers_dialog.c:3889 app/levels.c:341 app/palette.c:1826 -#: app/posterize.c:201 app/preferences_dialog.c:1469 app/qmask.c:281 -#: app/resize.c:193 app/resize.c:1343 app/threshold.c:275 +#: app/global_edit.c:739 app/gradient.c:1769 app/gradient.c:4841 +#: app/gradient.c:5402 app/hue_saturation.c:377 app/install.c:532 +#: app/interface.c:984 app/layers_dialog.c:3326 app/layers_dialog.c:3517 +#: app/layers_dialog.c:3617 app/layers_dialog.c:3889 app/levels.c:341 +#: app/palette.c:1826 app/posterize.c:201 app/preferences_dialog.c:1434 +#: app/qmask.c:281 app/resize.c:195 app/resize.c:1345 app/threshold.c:275 #: modules/cdisplay_gamma.c:358 msgid "Cancel" msgstr "цК╪р" @@ -144,128 +144,128 @@ msgstr " msgid "Paintbrush operation failed." msgstr "╩Жд╔ ╣©юш ╫гфп." -#: app/blend.c:272 +#: app/blend.c:294 msgid "Offset:" msgstr "©и╪б:" -#: app/blend.c:283 +#: app/blend.c:305 msgid "FG to BG (RGB)" msgstr "юЭ╟Ф╦╕ ╧Х╟Фю╦╥н (RGB)" -#: app/blend.c:284 +#: app/blend.c:306 msgid "FG to BG (HSV)" msgstr "юЭ╟Фю╩ ╧Х╟Фю╦╥н (HSV)" -#: app/blend.c:285 +#: app/blend.c:307 msgid "FG to Transparent" msgstr "юЭ╟Фю╩ еУ╦Мго╟т" -#: app/blend.c:286 +#: app/blend.c:308 #, fuzzy -msgid "Custom from Editor" -msgstr "фМаЩ╠Б©║ ╦бцГаЖ╟т" +msgid "Custom Gradient" +msgstr "╩Ж╟╗╨╞х╜╣╣ ╨╧╩Г" -#: app/blend.c:290 +#: app/blend.c:312 msgid "Blend:" msgstr "х╔гу:" -#: app/blend.c:298 app/gradient.c:533 app/preferences_dialog.c:2209 +#: app/blend.c:320 app/gradient.c:533 app/preferences_dialog.c:2137 msgid "Linear" msgstr "╪╠гЭ" -#: app/blend.c:299 +#: app/blend.c:321 msgid "Bi-Linear" msgstr "аъ╨╧ ╪╠гЭ" -#: app/blend.c:300 +#: app/blend.c:322 msgid "Radial" msgstr "╧щаЖ╦╖" -#: app/blend.c:301 +#: app/blend.c:323 msgid "Square" msgstr "а╓╩Г╟╒гЭ" -#: app/blend.c:302 +#: app/blend.c:324 msgid "Conical (symmetric)" msgstr "©Ь╩тгЭ (╢Кд╙)" -#: app/blend.c:303 +#: app/blend.c:325 msgid "Conical (asymmetric)" msgstr "©Ь╩тгЭ (╨Я╢Кд╙)" -#: app/blend.c:304 +#: app/blend.c:326 msgid "Shapeburst (angular)" msgstr "╣╧╧ъюШ ╦П╬Г (╦П╪╜╦╝ ╦П╬Г)" -#: app/blend.c:305 +#: app/blend.c:327 msgid "Shapeburst (spherical)" msgstr "╣╧╧ъюШ ╦П╬Г (╣у╠ы ╦П╬Г)" -#: app/blend.c:306 +#: app/blend.c:328 msgid "Shapeburst (dimpled)" msgstr "╣╧╧ъюШ ╦П╬Г (╧╟╟А ╦П╬Г)" -#: app/blend.c:307 +#: app/blend.c:329 msgid "Spiral (clockwise)" msgstr "Ё╙╪╠гЭ (╫ц╟Х╧ФгБ)" -#: app/blend.c:308 +#: app/blend.c:330 msgid "Spiral (anticlockwise)" msgstr "Ё╙╪╠гЭ (╧щ╫ц╟Х╧ФгБ)" -#: app/blend.c:312 +#: app/blend.c:334 #, fuzzy msgid "Gradient:" msgstr "╩Ж╟╗╨╞х╜╣╣" -#: app/blend.c:320 app/preferences_dialog.c:1808 +#: app/blend.c:342 app/preferences_dialog.c:1769 msgid "None" msgstr "╬Ью╫" -#: app/blend.c:321 +#: app/blend.c:343 #, fuzzy msgid "Sawtooth Wave" msgstr "еИ╢о╦П╬Г ©Чюл╨Й" -#: app/blend.c:322 +#: app/blend.c:344 #, fuzzy msgid "Triangular Wave" msgstr "╩О╟╒гЭ ©Чюл╨Й" -#: app/blend.c:326 +#: app/blend.c:348 msgid "Repeat:" msgstr "╧щ╨╧:" -#: app/blend.c:345 +#: app/blend.c:367 #, fuzzy msgid "Adaptive Supersampling" msgstr "╫╢фш╩Ыгц╦╣ юШюю╪╨" -#: app/blend.c:373 +#: app/blend.c:395 msgid "Max Depth:" msgstr "цж╢К ╠Мюл:" -#: app/blend.c:386 app/bucket_fill.c:127 app/fuzzy_select.c:657 +#: app/blend.c:408 app/bucket_fill.c:127 app/fuzzy_select.c:661 msgid "Threshold:" msgstr "╧ъ╢э╠т╦П(Threshold):" -#: app/blend.c:413 +#: app/blend.c:435 msgid "Blend: Invalid for indexed images." msgstr "х╔гу: юн╣╕╫╨╣х юл╧лаЖ©║╢б ю╞х©гоаЖ ╬йю╫." -#: app/blend.c:438 +#: app/blend.c:460 msgid "Blend: 0, 0" msgstr "х╔гу: 0, 0" -#: app/blend.c:501 +#: app/blend.c:523 msgid "Blend operation failed." msgstr "х╔гу ╣©юш ╫гфп." -#: app/blend.c:507 +#: app/blend.c:529 msgid "Blending..." msgstr "х╔гуаъ..." -#: app/blend.c:585 app/blend.c:595 +#: app/blend.c:607 app/blend.c:617 msgid "Blend: " msgstr "х╔гу: " @@ -284,13 +284,13 @@ msgstr " #: app/gdisplay_color_ui.c:127 app/gimpui.c:122 app/hue_saturation.c:373 #: app/layers_dialog.c:3324 app/layers_dialog.c:3515 app/layers_dialog.c:3615 #: app/layers_dialog.c:3887 app/levels.c:337 app/module_db.c:281 -#: app/posterize.c:197 app/preferences_dialog.c:1465 app/qmask.c:279 -#: app/resize.c:191 app/resize.c:1343 app/threshold.c:271 +#: app/posterize.c:197 app/preferences_dialog.c:1430 app/qmask.c:279 +#: app/resize.c:193 app/resize.c:1345 app/threshold.c:271 #: modules/cdisplay_gamma.c:351 msgid "OK" msgstr "х╝юн" -#: app/brightness_contrast.c:216 app/by_color_select.c:634 +#: app/brightness_contrast.c:216 app/by_color_select.c:687 #: app/color_balance.c:273 app/curves.c:557 app/file_new_dialog.c:355 #: app/hue_saturation.c:375 app/levels.c:339 app/posterize.c:199 #: app/threshold.c:273 app/tools.c:1086 app/transform_core.c:412 @@ -320,7 +320,7 @@ msgid "Brush Editor" msgstr "╨Й╥╞╫╛ фМаЩ╠Б" #. The close button -#: app/brush_edit.c:216 app/brush_select.c:278 app/by_color_select.c:636 +#: app/brush_edit.c:216 app/brush_select.c:278 app/by_color_select.c:689 #: app/color_notebook.c:122 app/color_picker.c:297 app/colormap_dialog.i.c:170 #: app/crop.c:1054 app/devices.c:755 app/docindexif.c:105 #: app/errorconsole.c:281 app/gdisplay_ops.c:346 app/gradient.c:801 @@ -334,7 +334,7 @@ msgid "Close" msgstr "╢щ╠Б" #. the feather radius scale -#: app/brush_edit.c:276 app/color_picker.c:181 app/tool_options.c:200 +#: app/brush_edit.c:276 app/color_picker.c:181 app/tool_options.c:199 msgid "Radius:" msgstr "╧щ╟Ф:" @@ -364,11 +364,11 @@ msgstr " msgid "No Brushes available" msgstr "╨Й╥╞╫╛╦╕ ╩Г©Кгр ╪Ж ╬Ью╫" -#: app/brush_select.c:445 app/layers_dialog.c:372 app/tool_options.c:505 +#: app/brush_select.c:445 app/layers_dialog.c:372 app/tool_options.c:504 msgid "Opacity:" msgstr "╨реУ╦М:" -#: app/brush_select.c:453 app/layers_dialog.c:324 app/tool_options.c:529 +#: app/brush_select.c:453 app/layers_dialog.c:324 app/tool_options.c:528 msgid "Mode:" msgstr "╦П╣Е:" @@ -402,7 +402,7 @@ msgstr "" msgid "Sorry, this brush can't be deleted." msgstr "" -#: app/bucket_fill.c:147 app/color_picker.c:156 app/tool_options.c:274 +#: app/bucket_fill.c:147 app/color_picker.c:156 app/tool_options.c:273 msgid "Sample Merged" msgstr "╩Ыгц ╦саЖ" @@ -432,36 +432,36 @@ msgid "No available patterns for this operation." msgstr "юл ╣©юш©║ ╩Г©Кгр ╦╦гя фпеоюл ╬Ь╫ю╢о╢ы." #. The shell and main vbox -#: app/by_color_select.c:629 +#: app/by_color_select.c:682 msgid "By Color Selection" msgstr "╩Ж╩С ╪╠ец©║ юггь" -#: app/by_color_select.c:685 +#: app/by_color_select.c:738 msgid "Inactive" msgstr "╨рх╟╪╨" -#: app/by_color_select.c:693 +#: app/by_color_select.c:746 msgid "Selection Mode" msgstr "╪╠ец ╦П╣Е" -#: app/by_color_select.c:695 app/paint_funcs.c:100 +#: app/by_color_select.c:748 app/paint_funcs.c:100 msgid "Replace" msgstr "╧ы╡ч" -#: app/by_color_select.c:697 app/colormap_dialog.i.c:127 +#: app/by_color_select.c:750 app/colormap_dialog.i.c:127 #: app/gdisplay_color_ui.c:114 msgid "Add" msgstr "цъ╟║" -#: app/by_color_select.c:699 app/layers_dialog.c:340 app/tool_options.c:904 +#: app/by_color_select.c:752 app/layers_dialog.c:340 app/tool_options.c:904 msgid "Subtract" msgstr "╩╘╠Б" -#: app/by_color_select.c:701 +#: app/by_color_select.c:754 msgid "Intersect" msgstr "╠ЁбВ" -#: app/by_color_select.c:713 +#: app/by_color_select.c:766 msgid "Fuzziness Threshold" msgstr "фшаЖ(Fuzziness) ╧ъ╢э╠т╦П(Thresshold)" @@ -479,7 +479,7 @@ msgstr "%s msgid "Selection Mask" msgstr "╪©╥╨╪г ╦╤╫╨е╘" -#: app/channel_ops.c:85 app/resize.c:392 +#: app/channel_ops.c:85 app/resize.c:394 msgid "Offset" msgstr "©и╪б" @@ -489,8 +489,8 @@ msgid "Offset X:" msgstr "©и╪б X:" #: app/channel_ops.c:115 app/crop.c:1063 app/file_new_dialog.c:530 -#: app/resize.c:330 app/resize.c:415 app/resize.c:573 app/rotate_tool.c:106 -#: app/scale_tool.c:100 app/shear_tool.c:82 +#: app/install.c:1108 app/resize.c:332 app/resize.c:417 app/resize.c:575 +#: app/rotate_tool.c:106 app/scale_tool.c:100 app/shear_tool.c:82 msgid "Y:" msgstr "Y:" @@ -500,12 +500,12 @@ msgstr "Y:" msgid "Wrap Around" msgstr "╣╓╬Н ╬╨©Р" -#: app/channel_ops.c:174 app/image_new.c:69 app/image_new.c:223 +#: app/channel_ops.c:174 app/image_new.c:70 app/image_new.c:234 #: app/layers_dialog.c:3422 msgid "Background" msgstr "╧Х╟Ф" -#: app/channel_ops.c:175 app/image_new.c:79 app/layers_dialog.c:3424 +#: app/channel_ops.c:175 app/image_new.c:80 app/layers_dialog.c:3424 msgid "Transparent" msgstr "еУ╦М" @@ -684,19 +684,19 @@ msgstr " msgid "Update Active Color" msgstr "гЖюГ ╩Г©Кго╢б ╩Ж╩С ╟╩╫е" -#: app/color_picker.c:255 app/color_picker.c:265 +#: app/color_picker.c:255 app/color_picker.c:264 msgid "Red:" msgstr "юШ╩Ж:" -#: app/color_picker.c:256 app/color_picker.c:266 +#: app/color_picker.c:256 app/color_picker.c:265 msgid "Green:" msgstr "ЁЛ╩Ж:" -#: app/color_picker.c:257 app/color_picker.c:267 +#: app/color_picker.c:257 app/color_picker.c:266 msgid "Blue:" msgstr "ц╩╩Ж:" -#: app/color_picker.c:258 app/color_picker.c:264 app/color_picker.c:273 +#: app/color_picker.c:258 app/color_picker.c:267 app/color_picker.c:273 msgid "Alpha:" msgstr "╬кфд:" @@ -717,13 +717,13 @@ msgstr " msgid "Intensity:" msgstr "╦М╬о:" -#: app/color_picker.c:633 app/color_picker.c:634 app/color_picker.c:635 -#: app/color_picker.c:636 app/color_picker.c:637 app/color_picker.c:638 -#: app/color_picker.c:639 app/color_picker.c:657 app/color_picker.c:672 -#: app/color_picker.c:690 app/info_window.c:185 app/info_window.c:191 -#: app/info_window.c:197 app/info_window.c:203 app/info_window.c:422 -#: app/info_window.c:423 app/info_window.c:424 app/info_window.c:425 -#: app/info_window.c:447 +#: app/color_picker.c:626 app/color_picker.c:627 app/color_picker.c:628 +#: app/color_picker.c:629 app/color_picker.c:630 app/color_picker.c:631 +#: app/color_picker.c:632 app/color_picker.c:644 app/color_picker.c:651 +#: app/color_picker.c:669 app/color_picker.c:684 app/info_window.c:185 +#: app/info_window.c:191 app/info_window.c:197 app/info_window.c:203 +#: app/info_window.c:422 app/info_window.c:423 app/info_window.c:424 +#: app/info_window.c:425 app/info_window.c:447 msgid "N/A" msgstr "N/A" @@ -936,13 +936,13 @@ msgstr "X #. the pixel size labels #: app/crop.c:1076 app/file_new_dialog.c:389 app/file_new_dialog.c:407 -#: app/tool_options.c:334 +#: app/tool_options.c:333 msgid "Width:" msgstr "Ёпюл:" #: app/crop.c:1079 app/file_new_dialog.c:395 app/file_new_dialog.c:413 -#: app/layers_dialog.c:3363 app/resize.c:240 app/resize.c:265 app/resize.c:510 -#: app/scale_tool.c:79 app/scale_tool.c:86 app/tool_options.c:350 +#: app/layers_dialog.c:3363 app/resize.c:242 app/resize.c:267 app/resize.c:512 +#: app/scale_tool.c:79 app/scale_tool.c:86 app/tool_options.c:349 msgid "Height:" msgstr "ЁТюл:" @@ -994,7 +994,7 @@ msgid "Load" msgstr "юп╠Б" #: app/curves.c:704 app/devices.c:753 app/levels.c:608 app/palette.c:2068 -#: app/preferences_dialog.c:357 app/preferences_dialog.c:1467 +#: app/preferences_dialog.c:357 app/preferences_dialog.c:1432 msgid "Save" msgstr "юЗюЕ" @@ -1027,7 +1027,7 @@ msgstr "' msgid "Device Status" msgstr "юЕд║ ╩Себ" -#: app/disp_callbacks.c:755 app/global_edit.c:297 app/global_edit.c:303 +#: app/disp_callbacks.c:760 app/global_edit.c:297 app/global_edit.c:303 #: app/global_edit.c:375 msgid "Pasted Layer" msgstr "╨ы©╘аЬ ╟ХцЧ" @@ -1209,17 +1209,17 @@ msgstr " msgid "New Image" msgstr "╩У юл╧лаЖ" -#: app/file_new_dialog.c:453 app/preferences_dialog.c:1540 -#: app/preferences_dialog.c:1577 +#: app/file_new_dialog.c:453 app/install.c:1093 app/preferences_dialog.c:1505 +#: app/preferences_dialog.c:1542 msgid "Pixels" msgstr "гх╪©" #. the resolution labels -#: app/file_new_dialog.c:524 app/resize.c:567 +#: app/file_new_dialog.c:524 app/resize.c:569 msgid "Resolution X:" msgstr "гь╩С╣╣ X:" -#: app/file_new_dialog.c:545 app/resize.c:588 +#: app/file_new_dialog.c:545 app/resize.c:590 msgid "pixels/%a" msgstr "гх╪©/%a" @@ -1252,7 +1252,7 @@ msgstr "" msgid "No Selection." msgstr "╪©╥╨╪г ╬Ью╫." -#: app/fileops.c:418 app/fileops.c:1624 app/fileops.c:1731 +#: app/fileops.c:418 app/fileops.c:1629 app/fileops.c:1736 #, fuzzy, c-format msgid "Save failed: %s" msgstr "юЗюЕ ╫гфп: " @@ -1278,64 +1278,64 @@ msgstr " msgid "Revert failed." msgstr "©Ь╩С╨╧╠╦ ╫гфп." -#: app/fileops.c:1240 +#: app/fileops.c:1245 #, fuzzy msgid "(This thumbnail may be out of date)" msgstr "(юл ╫ФЁвюо(thumbnail)ю╨ ©ю╥║ ╣х╟м ╟╟╫ю╢о╢ы." -#: app/fileops.c:1241 +#: app/fileops.c:1246 #, fuzzy msgid "(No Information)" msgstr "(а╓╨╦ ╬Ью╫)" -#: app/fileops.c:1251 +#: app/fileops.c:1256 #, fuzzy msgid "(Thumbnail saving is disabled)" msgstr "(╫ФЁвюо(thumbnail)ю╩ юЗюЕгр ╪Ж ╬Ь╟т ╣й)" -#: app/fileops.c:1255 +#: app/fileops.c:1260 #, fuzzy msgid "(Could not write thumbnail file)" msgstr "(╫ФЁвюо(Thumnail) фдюо ╬╣ ╪Ж ╬Ь╫ю╢о╢ы.)" -#: app/fileops.c:1259 +#: app/fileops.c:1264 #, fuzzy msgid "(Thumbnail file not written)" msgstr "(╫ФЁвюо(Thumbnail) фдюоюл юЗюЕ╬й╣й)" -#: app/fileops.c:1276 +#: app/fileops.c:1281 #, fuzzy msgid "No preview available" msgstr "╧л╦╝╨╦╠Б ╟║╢игоаЖ ╬йю╫" -#: app/fileops.c:1394 +#: app/fileops.c:1399 msgid "(could not make preview)" msgstr "(╧л╦╝╨╦╠Б╦╕ ╦╦╣И ╪Ж ╬Ь╫ю╢о╢ы)" -#: app/fileops.c:1467 app/fileops.c:1546 +#: app/fileops.c:1472 app/fileops.c:1551 #, fuzzy, c-format msgid "Open failed: %s" msgstr "©╜╠Б ╫гфп: " -#: app/fileops.c:1602 +#: app/fileops.c:1607 #, c-format msgid "%s is an irregular file (%s)" msgstr "%s╢б ╨Яа╓╩СюШюн фдюоют╢о╢ы (%s)" -#: app/fileops.c:1670 +#: app/fileops.c:1675 #, c-format msgid "%s exists, overwrite?" msgstr "%s╟║ а╦юГгу╢о╢ы. ╣╓╬Н╬╣╠Н©Д?" -#: app/fileops.c:1674 +#: app/fileops.c:1679 msgid "File Exists!" msgstr "фдюоюл а╦юГгу╢о╢ы!" -#: app/fileops.c:1680 +#: app/fileops.c:1685 msgid "Yes" msgstr "©╧" -#: app/fileops.c:1682 +#: app/fileops.c:1687 msgid "No" msgstr "╬ф╢о©ю" @@ -1344,13 +1344,13 @@ msgstr " msgid "Flip Tool" msgstr "'╣заЩ╠Б(Flip)'╣╣╠╦ ©и╪г" -#: app/flip_tool.c:95 app/preferences_dialog.c:1591 -#: app/preferences_dialog.c:2355 +#: app/flip_tool.c:95 app/preferences_dialog.c:1556 +#: app/preferences_dialog.c:2284 msgid "Horizontal" msgstr "╪ЖфР" -#: app/flip_tool.c:97 app/preferences_dialog.c:1593 -#: app/preferences_dialog.c:2357 +#: app/flip_tool.c:97 app/preferences_dialog.c:1558 +#: app/preferences_dialog.c:2286 msgid "Vertical" msgstr "╪ЖаВ" @@ -1376,7 +1376,7 @@ msgstr "" msgid "RGB-empty" msgstr "RGB-╨Я╬Зю╫" -#: app/gdisplay.c:217 app/image_new.c:53 app/preferences_dialog.c:1637 +#: app/gdisplay.c:217 app/image_new.c:54 app/preferences_dialog.c:1602 msgid "RGB" msgstr "RGB" @@ -1510,23 +1510,23 @@ msgstr "" msgid "Failed to load pixmap brush." msgstr "%s╥н ╨нем ╟Ф╥н юп╠Б ╫гфп" -#: app/gimpdrawable.c:168 +#: app/gimpdrawable.c:166 msgid "Can't fill unknown image type." msgstr "╬к╪Ж ╬Ь╢б юл╧лаЖ ю╞гЭю╩ ц╓©О ╪Ж ╬Ь╫ю╢о╢ы." -#: app/gimpdrawable.c:512 +#: app/gimpdrawable.c:498 msgid "parasite attach to drawable" msgstr "╠в╦╝╠Б©║ ╠Б╩Щ(parasite) ╨ыюл╠Б" -#: app/gimpdrawable.c:548 +#: app/gimpdrawable.c:533 msgid "detach parasite from drawable" msgstr "╠в╦╝╠Б©║ ╠Б╩Щ(parasite) ╤╪╠Б" -#: app/gimpdrawable.c:770 +#: app/gimpdrawable.c:740 msgid "unnamed" msgstr "юл╦╖╬Ью╫" -#: app/gimpdrawable.c:787 +#: app/gimpdrawable.c:757 #, c-format msgid "Layer type %d not supported." msgstr "╟ХцЧ ю╞гЭ %d╢б аЖ©Ь╣гаЖ ╬й╫ю╢о╢ы." @@ -1538,39 +1538,39 @@ msgid "" "you don't have GtkXmHTML installed." msgstr "" -#: app/gimpimage.c:1154 +#: app/gimpimage.c:1176 msgid "attach parasite to image" msgstr "юл╧лаЖ©║ ╠Б╩Щ(parasite) ╨ыюл╠Б" -#: app/gimpimage.c:1177 +#: app/gimpimage.c:1201 msgid "detach parasite from image" msgstr "юл╧лаЖ©║ ╠Б╩Щ(parasite) ╤╪╠Б" -#: app/gimpimage.c:2232 +#: app/gimpimage.c:2305 msgid "Layer cannot be raised any further" msgstr "╢Уюл╩С ╟ХцЧю╩ ©ц╦╠ ╪Ж ╬Ь╫ю╢о╢ы" -#: app/gimpimage.c:2258 +#: app/gimpimage.c:2333 msgid "Layer cannot be lowered any further" msgstr "╢Уюл╩С ╟ХцЧю╩ Ё╩╦╠ ╪Ж ╬Ь╫ю╢о╢ы" -#: app/gimpimage.c:2282 +#: app/gimpimage.c:2359 msgid "Layer is already on top" msgstr "╟ХцЧюл юл╧л цж╩СцЧ©║ юж╫ю╢о╢ы" -#: app/gimpimage.c:2288 +#: app/gimpimage.c:2365 msgid "Can't raise Layer without alpha" msgstr "╬кфд╬Ьюл ╟ХцЧю╩ ©ц╦╠ ╪Ж ╬Ь╫ю╢о╢ы" -#: app/gimpimage.c:2315 +#: app/gimpimage.c:2393 msgid "Layer is already on bottom" msgstr "╟ХцЧюл юл╧л цжгоцЧ©║ юж╫ю╢о╢ы" -#: app/gimpimage.c:2370 +#: app/gimpimage.c:2448 msgid "BG has no alpha, layer was placed above" msgstr "╟ХцЧю╨ ╬кфд╦╕ ╟║аЖаЖ ╬йю╨ BG©║ ю╖д║╣г╬Н юж╫ю╢о╢ы." -#: app/gimpimage.c:2439 +#: app/gimpimage.c:2519 msgid "" "There are not enough visible layers for a merge.\n" "There must be at least two." @@ -1578,11 +1578,11 @@ msgstr "" "╦саЖ гр ╦╦е╜юг ╟ХцЧюл ╨╦юлаЖ ╬й╫ю╢о╢ы.\n" "юШ╬Н╣╣ ╣н╟Ё╢б ╨╦©╘╬ъ╦╦ гу╢о╢ы." -#: app/gimpimage.c:2519 +#: app/gimpimage.c:2603 msgid "There are not enough visible layers for a merge down." msgstr "'╦саЖ ╢ы©Н'гр ╨╦юл╢б ╟ХцЧюл ╨рцФ╨п гу╢о╢ы." -#: app/gimpimage.c:2915 +#: app/gimpimage.c:3005 msgid "" "Unable to add a layer mask since\n" "the layer already has one." @@ -1590,7 +1590,7 @@ msgstr "" "╟ХцЧюл юл╧л ╦╤╫╨е╘╦╕ ╟║аЖ╟М южю╦╧г╥н\n" "╢У юл╩С цъ╟║гр ╪Ж ╬Ь╫ю╢о╢ы." -#: app/gimpimage.c:2919 +#: app/gimpimage.c:3009 msgid "" "Unable to add a layer mask to a\n" "layer in an indexed image." @@ -1598,7 +1598,7 @@ msgstr "" "юн╣╕╫╨╣х юл╧лаЖ ╬хюг ╟ХцЧ©║╢б\n" "╦╤╫╨е╘╦╕ цъ╟║гр ╪Ж ╬Ь╫ю╢о╢ы." -#: app/gimpimage.c:2923 +#: app/gimpimage.c:3013 msgid "" "Cannot add layer mask to a layer\n" "with no alpha channel." @@ -1606,19 +1606,19 @@ msgstr "" "╬кфд ц╓Ёнюл ╬Ь╢б ╟ХцЧ©║╢б\n" "╦╤╫╨е╘╦╕ цъ╟║гр ╪Ж ╬Ь╫ю╢о╢ы." -#: app/gimpimage.c:2930 +#: app/gimpimage.c:3020 msgid "Cannot add layer mask of different dimensions than specified layer." msgstr "©╜╟е╣х ╟ХцЧ╨╦╢ы ╢ы╦╔ ╧Х©╜юг ╦╤╫╨е╘©║ ╟ХцЧюл цъ╟║ ╣г╬Н аЗ ╪Ж ╬Ь╫ю╢о╢ы." -#: app/gimpimage.c:3033 +#: app/gimpimage.c:3127 msgid "Channel cannot be raised any further" msgstr "╢У юл╩С ц╓Ёню╩ ©ц╦╠ ╪Ж ╬Ь╫ю╢о╢ы" -#: app/gimpimage.c:3082 +#: app/gimpimage.c:3178 msgid "Channel cannot be lowered any further" msgstr "╢У юл╩С ц╓Ёню╩ Ё╩╦╠ ╪Ж ╬Ь╫ю╢о╢ы" -#: app/gimpimage.c:3288 app/palette.c:364 app/palette.c:941 app/palette.c:1077 +#: app/gimpimage.c:3398 app/palette.c:364 app/palette.c:941 app/palette.c:1077 #: app/palette.c:2022 app/palette.c:2749 app/palette.c:2881 msgid "Untitled" msgstr "а╕╦Я╬Ью╫" @@ -1631,45 +1631,45 @@ msgstr " msgid "Please wait..." msgstr "" -#: app/gimprc.c:401 app/plug_in.c:304 +#: app/gimprc.c:415 app/plug_in.c:304 msgid "Resource configuration" msgstr "юз©Ь ╪Ёа╓" -#: app/gimprc.c:451 +#: app/gimprc.c:467 #, c-format msgid "error parsing: \"%s\"\n" msgstr "гь╪╝ ©║╥╞: \"%s\"\n" -#: app/gimprc.c:452 +#: app/gimprc.c:468 #, c-format msgid " at line %d column %d\n" msgstr " %d аы %d д╜\n" -#: app/gimprc.c:453 +#: app/gimprc.c:469 #, c-format msgid " unexpected token: %s\n" msgstr " юл╩Сгя еДе╚: %s\n" -#: app/gimprc.c:1455 +#: app/gimprc.c:1473 msgid "error parsing pluginrc" msgstr "pluginrc гь╪╝ ©║╥╞" -#: app/gimprc.c:2832 +#: app/gimprc.c:2866 #, c-format msgid "Can't open %s; %s" msgstr "%s ©╜ ╪Ж ╬Ью╫; %s" -#: app/gimprc.c:2851 +#: app/gimprc.c:2885 #, c-format msgid "Can't rename %s to %s.old; %s" msgstr "%s╦╕ %s.old╥н ╧ы╡э ╪Ж ╬Ью╫; %s" -#: app/gimprc.c:2857 +#: app/gimprc.c:2891 #, c-format msgid "Couldn't reopen %s\n" msgstr "%s╦╕ ╢ы╫ц ©╜ ╪Ж ╬Ь╫ю╢о╢ы\n" -#: app/gimprc.c:2869 +#: app/gimprc.c:2903 #, c-format msgid "Can't write to %s; %s" msgstr "%s╥н ╬╣ ╪Ж ╬Ь╫ю╢о╢ы; %s" @@ -1699,7 +1699,7 @@ msgstr "" msgid "pixel" msgstr "гх╪©" -#: app/gimpunit.c:59 app/measure.c:454 app/measure.c:458 app/paint_core.c:498 +#: app/gimpunit.c:59 app/measure.c:454 app/measure.c:458 app/paint_core.c:511 msgid "pixels" msgstr "гх╪©" @@ -1946,7 +1946,7 @@ msgstr " msgid "Distance: %0.6f" msgstr "╟е╦╝: %0.6f" -#: app/gradient.c:3387 app/gradient.c:4448 +#: app/gradient.c:3387 app/gradient.c:4450 msgid "Left endpoint's color" msgstr "©чбй ╦╤аЖ╦╥а║юг ╩Ж╩С" @@ -1966,7 +1966,7 @@ msgstr " msgid "Save to" msgstr "юЗюЕ" -#: app/gradient.c:3429 app/gradient.c:4526 +#: app/gradient.c:3429 app/gradient.c:4528 msgid "Right endpoint's color" msgstr "©ю╦╔бй ╦╤аЖ╦╥а║юг ╩Ж╩С" @@ -1994,7 +1994,7 @@ msgstr " msgid "Split segment at midpoint" msgstr "аъ╟ё а║©║╪╜ ╪╪╠в╦уф╝ ╨п╦╝" -#: app/gradient.c:3734 app/gradient.c:4829 +#: app/gradient.c:3734 app/gradient.c:4831 msgid "Split segment uniformly" msgstr "╠уюого╟т ╪╪╠в╦уф╝ ╨п╦╝" @@ -2014,7 +2014,7 @@ msgstr " msgid "Flip segment" msgstr "╪╪╠в╦уф╝ ╣заЩ╠Б" -#: app/gradient.c:3744 app/gradient.c:5390 +#: app/gradient.c:3744 app/gradient.c:5392 msgid "Replicate segment" msgstr "╪╪╠в╦уф╝ ╨╧╩Г" @@ -2030,7 +2030,7 @@ msgstr " msgid "Split segments at midpoints" msgstr "аъа║╣И©║╪╜ ╪╪╠в╦уф╝╣Ию╩ ╨п╦╝" -#: app/gradient.c:3755 app/gradient.c:4830 +#: app/gradient.c:3755 app/gradient.c:4832 msgid "Split segments uniformly" msgstr "╠у╣Нго╟т ╪╪╠в╦уф╝╣Ию╩ ╨п╦╝" @@ -2050,7 +2050,7 @@ msgstr " msgid "Flip selection" msgstr "╪©╥╨╪г ╣заЩ╠Б" -#: app/gradient.c:3765 app/gradient.c:5391 +#: app/gradient.c:3765 app/gradient.c:5393 msgid "Replicate selection" msgstr "╪©╥╨╪г ╨╧╩Г" @@ -2063,49 +2063,49 @@ msgstr " msgid "RGBA (%0.3f, %0.3f, %0.3f, %0.3f)" msgstr "RGBA (%0.3f, %0.3f, %0.3f, %0.3f)" -#: app/gradient.c:4615 app/gradient.c:4685 +#: app/gradient.c:4617 app/gradient.c:4687 msgid "(Varies)" msgstr "(╪Жа╓)" -#: app/gradient.c:4837 +#: app/gradient.c:4839 msgid "Split" msgstr "╨п╦╝" #. Instructions -#: app/gradient.c:4851 +#: app/gradient.c:4853 msgid "Please select the number of uniform parts" msgstr "╢ы╫цюг юоа╓гя ╨н╨пю╩ ╪╠ецгь аж╪╪©Д." -#: app/gradient.c:4857 +#: app/gradient.c:4859 msgid "in which you want to split the selected segment" msgstr "╢Г╫ею╨ ╪╠ец╣х ╪╪╠в╦уф╝╦╕ ╨п╦╝го╠Б ©Ьгя╢ы." -#: app/gradient.c:4858 +#: app/gradient.c:4860 msgid "in which you want to split the segments in the selection" msgstr "╢Г╫ею╨ ╪©╥╨╪г©║╪╜ ╪╪╠в╦уф╝╣Ию╩ ╨п╦╝го╠Б ©Ьгя╢ы." -#: app/gradient.c:5218 +#: app/gradient.c:5220 msgid "Blend endpoints' colors" msgstr "╦╤аЖ╦╥а║╣Июг ╩Ж╩С╣Ию╩ х╔гу" -#: app/gradient.c:5230 +#: app/gradient.c:5232 msgid "Blend endpoints' opacity" msgstr "╦╤аЖ╦╥а║╣Июг ╨реУ╦М╣╣╦╕ х╔гу" -#: app/gradient.c:5398 +#: app/gradient.c:5400 msgid "Replicate" msgstr "╨╧╩Г" #. Instructions -#: app/gradient.c:5411 +#: app/gradient.c:5413 msgid "Please select the number of times" msgstr "©╘╥╞╧Ь ╪╠ецгь аж╪╪©Д." -#: app/gradient.c:5416 +#: app/gradient.c:5418 msgid "you want to replicate the selected segment" msgstr "╢Г╫ею╨ ╪╠ец╣х ╪╪╠в╦уф╝╦╕ ╨╧╩Гго╠Б ©Ьгу╢о╢ы." -#: app/gradient.c:5417 +#: app/gradient.c:5419 msgid "you want to replicate the selection" msgstr "╢Г╫ею╨ ╪©╥╨╪гю╩ ╨╧╩Гго╠Б ©Ьгу╢о╢ы." @@ -2209,45 +2209,45 @@ msgstr " msgid "Saturation" msgstr "ц╓╣╣" -#: app/image_new.c:58 app/info_window.c:65 app/info_window.c:534 -#: app/preferences_dialog.c:1638 +#: app/image_new.c:59 app/info_window.c:65 app/info_window.c:534 +#: app/preferences_dialog.c:1603 msgid "Grayscale" msgstr "╠в╥╧юл╫╨диюо" -#: app/image_new.c:64 app/layers_dialog.c:3421 +#: app/image_new.c:65 app/layers_dialog.c:3421 msgid "Foreground" msgstr "юЭ╟Ф" -#: app/image_new.c:74 app/layers_dialog.c:3423 +#: app/image_new.c:75 app/layers_dialog.c:3423 msgid "White" msgstr "хР╩Ж" -#: app/image_new.c:262 +#: app/image_new.c:273 #, c-format msgid "%d Bytes" msgstr "%d ╧ыюлф╝" -#: app/image_new.c:264 +#: app/image_new.c:275 #, c-format msgid "%.2f KB" msgstr "%.2f KB" -#: app/image_new.c:266 +#: app/image_new.c:277 #, c-format msgid "%.1f KB" msgstr "%.1f KB" -#: app/image_new.c:268 +#: app/image_new.c:279 #, c-format msgid "%d KB" msgstr "%d KB" -#: app/image_new.c:270 +#: app/image_new.c:281 #, c-format msgid "%.2f MB" msgstr "%.2f MB" -#: app/image_new.c:272 +#: app/image_new.c:283 #, c-format msgid "%.1f MB" msgstr "%.1f MB" @@ -2276,8 +2276,8 @@ msgstr "" "гЖюГ х╟╪╨х╜╣х ╩Ж╟╗╨╞х╜╣╣ют╢о╢ы.\n" "╩Ж╟╗╨╞х╜╣╣ ╢Кх╜╩Сюз╦╕ ©╜╥а╦И е╛╦╞го╪╪©Д." -#: app/info_dialog.c:181 app/preferences_dialog.c:1782 -#: app/preferences_dialog.c:1888 +#: app/info_dialog.c:181 app/preferences_dialog.c:1743 +#: app/preferences_dialog.c:1849 msgid "General" msgstr "юо╧щюШ" @@ -2410,403 +2410,521 @@ msgstr " msgid "Shape" msgstr "╦П╬Г" -#: app/install.c:83 +#: app/install.c:95 msgid "The GIMP is not properly installed for the current user\n" msgstr "гЖюГ ╩Г©Кюз╢б GIMP╦╕ юШюЩго╟т ╪Ёд║гоаЖ ╬й╬р╫ю╢о╢ы\n" -#: app/install.c:84 +#: app/install.c:96 msgid "" "User installation was skipped because the '--nointerface' flag was " "encountered\n" msgstr "'--nointerface' гц╥║╠в╦╕ ╦╦Ё╣╠Б ╤╖╧╝©║ ╩Г©Кюз ╪Ёд║╢б ╩Щ╥╚╣г╬З╫ю╢о╢ы\n" -#: app/install.c:85 +#: app/install.c:97 msgid "" "To perform user installation, run the GIMP without the '--nointerface' flag\n" msgstr "" "╩Г©Кюз ╪Ёд║╦╕ ╪ЖгЮго╥а╦И GIMP╦╕ '--nointerface' гц╥║╠в ╬Ьюл ╫ггЮго╫й╫ц©ю\n" -#: app/install.c:113 +#: app/install.c:142 +#, fuzzy msgid "" -"The GIMP - GNU Image Manipulation Program\n" -"\n" +"The gimprc is used to store personal preferences\n" +"that affect GIMP's default behavior.\n" +"Paths to search for brushes, palettes, gradients,\n" +"patterns, plug-ins and modules can also configured here." msgstr "" -"The GIMP - ╠в╢╘(GNU) юл╧лаЖ(Image) а╤юш(Manipulation) га╥н╠в╥╔(Program)\n" +"gimprc╢б цй╠Б GIMP юш©К╣И╟З гц╥╞╠вюн гже╟╣И©м ╟╟ю╨\n" +"╟Ёюн ╪Ёа╓ю╩ юЗюЕгу╢о╢ы.\n" +"╨Й╥╞╫╛, фпео, ╩Ж╟╗╨╞х╜╣╣ фпео, гц╥╞╠вюнюг ╟Ф╥н ╤ггя\n" +"©╘╠Б©║ ╪Ёа╓╣г╬НаЩ╢о╢ы.\n" + +#: app/install.c:149 +msgid "" +"GIMP uses an additional gtkrc file so you can\n" +"configure it to look differently than other GTK apps." +msgstr "" + +#: app/install.c:154 +#, fuzzy +msgid "" +"Plug-ins and extensions are external programs run by\n" +"the GIMP which provide additional functionality.\n" +"These programs are searched for at run-time and\n" +"information about their functionality and mod-times\n" +"is cached in this file. This file is intended to\n" +"be GIMP-readable only, and should not be edited." +msgstr "" +"гц╥╞╠вюн╟З х╜юЕю╨ цъ╟║ ╠Б╢и╣Июл аь╨Я╣х GIMP©║ юггь ©э╨н\n" +"га╥н╠в╥╔ю╦╥н ╫ггЮ╣к╢о╢ы. юл га╥н╠в╥╔╣Ию╨ юл фдюо©║╪╜\n" +"юЗюЕ╣г╬НаЬ mod-times©м ╠в╟м╣Июг ╠Б╢и а╓╨╦, run-timeю╩\n" +"цё╟т ╣к╢о╢ы.\t\tюл фдюою╨ GIMP╦╦ юпю╩ ╪Ж юж╣╣╥о ╩Щ╪╨╣г╬НаЖ╟М фМаЩгь╪╜╢б\n" +"╬й╣к╢о╢ы.\n" + +#: app/install.c:163 +msgid "" +"Key shortcuts can be dynamically redefined in The GIMP.\n" +"The menurc is a dump of your configuration so it can.\n" +"be remembered for the next session. You may edit this\n" +"file if you wish, but it is much easier to define the\n" +"keys from within The GIMP. Deleting this file will\n" +"restore the default shortcuts." +msgstr "" + +#: app/install.c:172 +msgid "" +"The sessionrc is used to store what dialog windows were\n" +"open the last time you quit The GIMP. You can configure\n" +"The GIMP to reopen these dialogs at the saved position." +msgstr "" + +#: app/install.c:178 +#, fuzzy +msgid "" +"The unitrc is used to store your user units database.\n" +"You can define additional units and use them just\n" +"like you use the built-in units inches, millimeters,\n" +"points and picas. This file is overwritten each time\n" +"you quit the GIMP." +msgstr "" +"unitrc╢б ╢Г╫еюг ╩Г©Кюз ╢эю╖ ╣╔юлем╨ёюл╫╨╦╕ юЗюЕгу╢о╢ы.\n" +"╢Г╫ею╨ цъ╟║ ╢эю╖╦╕ а╓югго╟М юж╬З╢Ь юнд║, ╧п╦╝╧лем, \n" +"фВюнф╝, фдюлд╚ ╢эю╖╦╕ ╩Г©Кгу╢о╢ы.\n" +"юл фдюою╨ ╢Г╫еюл GIMP╦╕ а╬╥Агр ╤╖ ╦╤╢ы ╣╓╬Н ╬╨©╘ аЩ╢о╢ы.\n" + +#: app/install.c:186 +#, fuzzy +msgid "" +"This is a subdirectory which can be used to store\n" +"user defined brushes. The default gimprc file\n" +"checks this subdirectory in addition to the system-\n" +"wide gimp brushes installation when searching for\n" +"brushes." +msgstr "" +"юл╟мю╨ ╩Г©Кюз а╓юг ╨Й╥╞╫╛╦╕ юЗюЕгр╤╖ ╩Г©К╣г╢б ╪╜╨Й\n" +"╣П╥╒еД╦╝ют╢о╢ы. ╨Й╥╞╫╛╦╕ цёю╩╤╖, юЭц╪ ╫ц╫╨еш\n" +"gimp ╨Й╥╞╫╛ ╪Ёд║╣х ╟м ©э©║ ╤г юл ╪╜╨Й╣П╥╒еД╦╝╦╕ ╟к╩Ггу╢о╢ы.\n" + +#: app/install.c:194 +#, fuzzy +msgid "" +"This is a subdirectory which is used to store brushes\n" +"that are created with the brush editor. The default\n" +"gimprc file checks this subdirectory when searching for\n" +"generated brushes." +msgstr "" +"юл╟мю╨ ╩Г©Кюз а╓юг ╨Й╥╞╫╛╦╕ юЗюЕгр╤╖ ╩Г©К╣г╢б ╪╜╨Й\n" +"╣П╥╒еД╦╝ют╢о╢ы. ╨Й╥╞╫╛╦╕ цёю╩╤╖, юЭц╪ ╫ц╫╨еш\n" +"gimp ╨Й╥╞╫╛ ╪Ёд║╣х ╟м ©э©║ ╤г юл ╪╜╨Й╣П╥╒еД╦╝╦╕ ╟к╩Ггу╢о╢ы.\n" + +#: app/install.c:201 +#, fuzzy +msgid "" +"This is a subdirectory which can be used to store\n" +"user defined gradients. The default gimprc file\n" +"checks this subdirectory in addition to the system-\n" +"wide gimp gradients installation when searching for\n" +"gradients." +msgstr "" +"╩Г©Кюз а╓юг ╩Ж╟╗╨╞х╜╣╣ юЗюЕ©║ ╩Г©К╣г╢б ╪╜╨Й\n" +"╣П╥╒еД╦╝ют╢о╢ы. ╩Ж╟╗╨╞х╜╣╣╦╕ цёю╩╤╖, цй╠Б╟╙ gimprcфдюо\n" +"ю╨ юЭц╪ ╫ц╫╨еш gimp╩Ж╟╗╨╞х╜╣╣ ╪Ёд║╣х ╟м ©э©║ ╤г юл ╪╜╨Й\n" +"╣П╥╒еД╦╝╦╕ ╟к╩Ггу╢о╢ы.\n" "\n" -#: app/install.c:118 +#: app/install.c:209 +#, fuzzy +msgid "" +"This is a subdirectory which can be used to store\n" +"user defined palettes. The default gimprc file\n" +"checks only this subdirectory (not the system-wide\n" +"installation) when searching for palettes. During\n" +"installation, the system palettes will be copied\n" +"here. This is done to allow modifications made to\n" +"palettes during GIMP execution to persist across\n" +"sessions." +msgstr "" +"юл╟мю╨ ╩Г©Кюз а╓юг фх╥╖╣Ию╩ юЗюЕгр╤╖ ╩Г©Кго╢б\n" +"╪╜╨Й╣П╥╒еД╦╝ют╢о╢ы. фх╥╖ю╩ цёю╩╤╖, цй╠Б╟╙ gimprc фдюо©║╪╜╢б\n" +"©юаВ юл ╪╜╨Й ╣П╥╒еД╦╝╦╦ ╟к╩Ггу╢о╢ы.(юЭц╪ ╫ц╫╨еш\n" +"╪Ёд║╣х ╟м©║╪╜╟║ ╬ф╢о╢ы) ╪Ёд║го╢б ╣©╬х, юл ╫ц╫╨еш фх╥©╣Ию╨\n" +"©╘╠Б©║ ╨╧╩Г ╣г╬НаЩ╢о╢ы. юл╟мю╨ ╪╪╪г╣Ию╩ а╦юГ╫це╟╠Б ю╖гь\n" +"GIMP╟║ ╫ггЮго╢б ╣©╬х фх╥©╣Ию╩ ╦╦╣Е╢б а╤юЩю╩ гЦ╟║╦╕\n" +"гу╢о╢ы.\n" +"\n" + +#: app/install.c:220 +#, fuzzy +msgid "" +"This is a subdirectory which can be used to store\n" +"user defined patterns. The default gimprc file\n" +"checks this subdirectory in addition to the system-\n" +"wide gimp patterns installation when searching for\n" +"patterns." +msgstr "" +"юл╟мю╨ ╩Г©Кюз а╓юг фпео╣Ию╩ юЗюЕго╢б ╪╜╨Й ╣П╥╒еД╦╝ют╢о╢ы.\n" +"фпеою╩ ╟к╩Ггр╤╖,цй╠Б╟╙ gimprc фдюою╨ юЭц╪ ╫ц╫╨еш\n" +"gimp фпео ╪Ёд║╣х ╟м ©э©║ ╤г юл ╪╜╨Й╣П╥╒еД╦╝╦╕ ╟к╩Ггу╢о╢ы.\n" +"\n" +"\n" + +#: app/install.c:228 +#, fuzzy +msgid "" +"This is a subdirectory which can be used to store\n" +"user created, temporary, or otherwise non-system-\n" +"supported plug-ins. The default gimprc file\n" +"checks this subdirectory in addition to the system-\n" +"wide GIMP plug-in directories when searching for\n" +"plug-ins." +msgstr "" +"юл╟мю╨ ╩Г©Кюз╟║ ╩Щ╪╨го╟еЁ╙, юс╫цюШ, ╤г╢б ╠в ╧щ╢К╥н ╫ц╫╨еш©║╪╜\n" +"аЖ©Ь╣гаЖ ╬й╢б гц╥╞╠вюню╩ юЗюЕгр╤╖ ╩Г©Кго╢б ╪╜╨Й\n" +"╣П╥╒еД╦╝ют╢о╢ы. гц╥╞╠вюню╩ цёю╩╤╖, цй╠Б╟╙ gimprc фдюою╨\n" +"юЭц╪ ╫ц╫╨еш GIMP гц╥╞╠вюн ╣П╥╒еД╦╝ ©э©║ ╤г юл ╪╜╨Й\n" +"╣П╥╒еД╦╝╦╕ ╟к╩Ггу╢о╢ы.\n" +"\n" + +#: app/install.c:237 +#, fuzzy +msgid "" +"This subdirectory can be used to store user created,\n" +"temporary, or otherwise non-system-supported DLL modules.\n" +"The default gimprc file checks this subdirectory\n" +"in addition to the system-wide GIMP module directory\n" +"when searching for modules to load when initializing." +msgstr "" +"юл ╪╜╨Й╣П╥╒еД╦╝╦╕ ╩Г©Кюз╟║ ╩Щ╪╨го╟еЁ╙, юс╫цюШ, ╤г╢б ╠в\n" +"╧щ╢К╥н ╫ц╫╨еш©║╪╜ аЖ©Ь╣гаЖ ╬й╢б DLL ╦П╣Б╣Ию╩ юЗюЕгр╤╖\n" +"╩Г©К╣к╢о╢ы. цй╠Бх╜╦╕ го╦И юпю╩ ╦П╣Б╣Ию╩ цёю╩╤╖,\n" +"цй╠Б╟╙ gimprc фдюою╨ юЭц╪ ╫ц╫╨еш GIMP ╦П╣Б ╣П╥╒еД╦╝\n" +"©э©║ ╤г юл ╪╜╨Й ╣П╥╒еД╦╝╦╕ ╟к╩Ггу╢о╢ы.\n" + +#: app/install.c:245 +#, fuzzy +msgid "" +"This subdirectory is used by the GIMP to store \n" +"user created and installed scripts. The default gimprc\n" +"file checks this subdirectory in addition to the system-\n" +"wide gimp scripts subdirectory when searching for scripts" +msgstr "" +"юл ╪╜╨Й╣П╥╒еД╦╝╢б ╩Г©Кюз╟║ ╫╨е╘╦Ёф╝╣Ию╩ ╩Щ╪╨го╟М ╪Ёд║гр╤╖\n" +"╩Г©Кгу╢о╢ы. ╫╨е╘╦Ёф╝╣Ию╩ цёю╩╤╖, цй╠Б╟╙ gimprc фдюою╨\n" +"юЭц╪ ╫ц╫╨еш gimp ╫╨е╘╦Ёф╝ ╪╜╨Й╣П╥╒еД╦╝ ©э©║ ╤г юл ╣П╥╒еД╦╝╦╕\n" +"╟к╩Ггу╢о╢ы.\n" + +#: app/install.c:252 +#, fuzzy +msgid "" +"This subdirectory is used by the GIMP to temporarily\n" +"store undo buffers to reduce memory usage. If GIMP is\n" +"unceremoniously killed, files may persist in this directory\n" +"of the form: gimp<#>.<#>. These files are useless across\n" +"GIMP sessions and can be destroyed with impunity." +msgstr "" +"юл ╪╜╨Й╣П╥╒еД╦╝╢б GIMP©║ юггь ╩Г©К╣г╢б ╦ч╦П╦╝ ╩Г©Кю╩\n" +"аыюл╠Бю╖гя ╨╧╠╦ ╧Жфш╦╕ юЗюЕю╩ ю╖гя юс╫цюШюн ╟мюл╢ы.\n" +"╦╦╬Ю GIMP╟║ гЭ╫дюШюлаЖ ╬й╟т ав╟т ╣х╢ы╦И, фдюо╣Ию╨\n" +"фШюг юл ╣П╥╒еД╦╝©║╪╜ ╟Ха╥ а╦юГ гр╟мюл╢ы: gimp<#>.<#>.\n" +"юл фдюо╣Ию╨ GIMP ╪╪╪г╣И©║╪╜ ╩Г©К╣гаЖ ╬й╟М ╧╚╩ГхВ ╬Ь╬Н\n" +"аЖ╟т ╣и╟мюл╢ы.\n" + +#: app/install.c:260 +msgid "" +"This subdirectory is used to store parameter files for\n" +"the Curves tool." +msgstr "" + +#: app/install.c:265 +msgid "" +"This subdirectory is used to store parameter files for\n" +"the Levels tool." +msgstr "" + +#: app/install.c:270 +#, fuzzy +msgid "" +"This is a subdirectory which can be used to store\n" +"user defined fractals to be used by the FractalExplorer\n" +"plug-in. The default gimprc file checks this subdirectory in\n" +"addition to the systemwide gimp FractalExplorer installation\n" +"when searching for fractals." +msgstr "" +"юл╟мю╨ FractalExplorer гц╥╞╠вюн©║╪╜ ╩Г©Кго╢б\n" +"╩Г©Кюз а╓юг га╥╒е╩╣Ию╩ юЗюЕго╢б╣╔ ╩Г©К╣г╢б\n" +"╪╜╨Й╣П╥╒еД╦╝ют╢о╢ы. га╥╒е╩╣Ию╩ цёю╩╤╖, цй╠Б╟╙ gimprcфдюою╨\n" +"юЭц╪ ╫ц╫╨еш gimp FractalExplorer ╪Ёд║╣х ╟м ©э©║ ╤г\n" +"юл ╪╜╨Й╣П╥╒еД╦╝╦╕ ╟к╩Ггу╢о╢ы.\n" + +#: app/install.c:278 +#, fuzzy +msgid "" +"This is a subdirectory which can be used to store\n" +"user defined figures to be used by the gfig plug-in.\n" +"The default gimprc file checks this subdirectory in\n" +"addition to the systemwide gimp gfig installation\n" +"when searching for gfig figures." +msgstr "" +"gfig гц╥╞╠вюн©║ ╩Г©К╣г╢б ╩Г©Кюз а╓юг\n" +"╠в╦╡╣Ию╩ юЗюЕго╢б ╩Г©К╣г╢б ╪╜╨Й╣П╥╒еД╦╝ют╢о╢ы.\n" +"gfig ╠в╦╡╣Ию╩ цёю╩╤╖, цй╠Б╟╙ gimprcфдюою╨ юЭц╪ ╫ц╫╨еш\n" +"gimp gfig ╪Ёд║╣х ╟м ©э©║ ╤г юл ╪╜╨Й╣П╥╒еД╦╝╦╕ ╟к╩Ггу╢о╢ы.\n" +"\n" + +#: app/install.c:286 +#, fuzzy +msgid "" +"This is a subdirectory which can be used to store\n" +"user defined gflares to be used by the gflare plug-in.\n" +"The default gimprc file checks this subdirectory in\n" +"addition to the systemwide gimp gflares installation\n" +"when searching for gflares." +msgstr "" +"юл╟мю╨ gflare гц╥╞╠вюн©║╪╜ ╩Г©Кго╢б ╩Г©Кюз а╓юг gflare╣Ию╩\n" +"юЗюЕго╢б╣╔ ╩Г©К╣г╢б ╪╜╨Й╣П╥╒еД╦╝ют╢о╢ы. gflares╦╕ цёю╩╤╖,\n" +"цй╠Б╟╙ gimprcфдюою╨ юЭц╪ ╫ц╫╨еш gimp gflares ╪Ёд║╣х ╟м ©э©║ ╤г\n" +"юл ╪╜╨Й ╣П╥╒еД╦╝╦╕ ╟к╩Ггу╢о╢ы.\n" +"\n" + +#: app/install.c:294 +#, fuzzy +msgid "" +"This is a subdirectory which can be used to store\n" +"user defined data to be used by the Gimpressionist\n" +"plug-in. The default gimprc file checks this subdirectory in\n" +"addition to the systemwide gimp Gimpressionist installation\n" +"when searching for data." +msgstr "" +"юл╟мю╨ gflare гц╥╞╠вюн©║╪╜ ╩Г©Кго╢б ╩Г©Кюз а╓юг gflare╣Ию╩\n" +"юЗюЕго╢б╣╔ ╩Г©К╣г╢б ╪╜╨Й╣П╥╒еД╦╝ют╢о╢ы. gflares╦╕ цёю╩╤╖,\n" +"цй╠Б╟╙ gimprcфдюою╨ юЭц╪ ╫ц╫╨еш gimp gflares ╪Ёд║╣х ╟м ©э©║ ╤г\n" +"юл ╪╜╨Й ╣П╥╒еД╦╝╦╕ ╟к╩Ггу╢о╢ы.\n" +"\n" + +#: app/install.c:525 +#, fuzzy +msgid "GIMP User Installation" +msgstr "GIMP ╪Ёд║" + +#: app/install.c:530 +msgid "Continue" +msgstr "╟Х╪с" + +#. this is a fontset, e.g. multiple comma-separated font definitions +#: app/install.c:560 +msgid "-*-helvetica-bold-r-normal-*-*-240-*-*-*-*-*-*,*" +msgstr "" + +#: app/install.c:578 +#, fuzzy +msgid "" +"Welcome to\n" +"The GIMP User Installation" +msgstr "GIMP ╪Ёд║" + +#: app/install.c:582 +msgid "" +"The GIMP - GNU Image Manipulation Program\n" +"Copyright (C) 1995-2000\n" +"Spencer Kimball, Peter Mattis and the GIMP Development Team." +msgstr "" + +#: app/install.c:591 +#, fuzzy msgid "" "This program is free software; you can redistribute it and/or modify\n" "it under the terms of the GNU General Public License as published by\n" "the Free Software Foundation; either version 2 of the License, or\n" -"(at your option) any later version.\n" +"(at your option) any later version." msgstr "" "юл га╥н╠в╥╔ю╨ юзю╞ ╪ргаф╝©Ч╬Нют╢о╢ы.; \n" "╢Г╫ею╨ FSF©║ юггь юш╪╨╣х GNU GPL©║ юг╟е юГ ╧ХфВго╟еЁ╙ ╟Мд╔ ╪Ж юж╫ю╢о╢ы.;\n" "╤Сюл╪╬╫╨юг ╧ЖюЭ 2 Ё╙ (╢Г╫е ╦╤ю╫╢К╥н) ╠в хд ╧ЖюЭ ╦П╣н гь╢Ггу╢о╢ы.\n" -#: app/install.c:123 +#: app/install.c:596 +#, fuzzy msgid "" "This program is distributed in the hope that it will be useful,\n" "but WITHOUT ANY WARRANTY; without even the implied warranty of\n" "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n" -"See the GNU General Public License for more details.\n" +"See the GNU General Public License for more details." msgstr "" "юл га╥н╠в╥╔ю╨ ю╞©Кго╟т ╬╣╪Ж юж╟т хЯ╦а©║ ╣Ш╤С ╧ХфВ╣г╬Н аЩ╢о╢ы. \n" "╠в╥╞Ё╙ ╬ф╧╚╥╠ ╨╦аУ╣╣ ╬Ь╫ю╢о╢ы.; ф╞╨╟гя ╦ЯюШю╩ ю╖гь фВгт╣х ╩С╬ВюШ\n" "х╓ю╨ юШ╢Ггя ╨╦аУ а╤бВ ╬Ь╫ю╢о╢ы.\n" "а╩╢У юз╪╪гя ╟мю╨ GNU GPLю╩ ╨╦╪╪©Д.\n" -#: app/install.c:128 +#: app/install.c:601 +#, fuzzy msgid "" "You should have received a copy of the GNU General Public License\n" "along with this program; if not, write to the Free Software\n" "Foundation, Inc., 59 Temple Place - Suite 330, Boston,\n" -"MA 02111-1307, USA.\n" +"MA 02111-1307, USA." msgstr "" "╢Г╫ею╨ юл га╥н╠в╥╔╟З гт╡╡ GNU GPLюг ╨╧╩Г╨╩ю╩ ╧ч╬ф╬ъ╦╦ гу╢о╢ы.;\n" "╠в╥╦аЖ ╬йю╦╦И, the Free Software Foundation, Inc.,\n" "59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. ©║ \n" "фМаЖ╦╕ ╬╡╪╪©Д.\n" -#: app/install.c:134 -msgid "" -"Personal GIMP Installation\n" -"\n" +#: app/install.c:607 +msgid "Click \"Continue\" to enter the GIMP user installation." +msgstr "" + +#: app/install.c:633 +#, fuzzy +msgid "Personal GIMP Directory" msgstr "╟Ёюн GIMP ╪Ёд║\n" -#: app/install.c:135 -msgid "For a proper GIMP installation, a subdirectory called\n" -msgstr "а╓х╝го╟т GIMP╦╕ ╪Ёд║го╠Б ю╖гь ╪╜╨Й ╣П╥╨еД╦╝©║ ╣И╬Н╟╛╫ю╢о╢ы.\n" - -#. will be replaced with gimp_directory() -#: app/install.c:137 +#: app/install.c:650 +#, fuzzy msgid "" -" needs to be created. This\n" -"subdirectory will contain a number of important files:\n" -"\n" +"For a proper GIMP installation, a subdirectory needs to be created.\n" +"This subdirectory will contain a number of important files." msgstr "" "╢б ╩Щ╪╨╣г╬Н╬ъ гу╢о╢ы.\n" "юл ╪╜╨Й ╣П╥╒еД╦╝╢б ©╘╥╞ аъ©Дгя фдюо╣Ию╩ фВгтгу╢о╢ы:\n" "\n" -#: app/install.c:141 +#: app/install.c:653 +msgid "" +"Click on one of the files or subdirectories in the tree\n" +"to get more information about the selected item." +msgstr "" + +#: app/install.c:656 +msgid "Click \"Continue\" to create your personal GIMP directory." +msgstr "" + +#: app/install.c:736 #, fuzzy -msgid "" -"\t\tThe gimprc is used to store personal preferences\n" -"\t\tthat affect GIMP's default behavior.\n" -"\t\tPaths to search for brushes, palettes, gradients,\n" -"\t\tpatterns, plug-ins and modules can also configured here.\n" -msgstr "" -"\t\tgimprc╢б цй╠Б GIMP юш©К╣И╟З гц╥╞╠вюн гже╟╣И©м ╟╟ю╨\n" -"\t\t╟Ёюн ╪Ёа╓ю╩ юЗюЕгу╢о╢ы.\n" -"\t\t╨Й╥╞╫╛, фпео, ╩Ж╟╗╨╞х╜╣╣ фпео, гц╥╞╠вюнюг ╟Ф╥н ╤ггя\n" -"\t\t©╘╠Б©║ ╪Ёа╓╣г╬НаЩ╢о╢ы.\n" - -#: app/install.c:147 -msgid "" -"\t\tPlug-ins and extensions are external programs run by\n" -"\t\tthe GIMP which provide additional functionality.\n" -"\t\tThese programs are searched for at run-time and\n" -"\t\tinformation about their functionality and mod-times\n" -"\t\tis cached in this file. This file is intended to\n" -"\t\tbe GIMP-readable only, and should not be edited.\n" -msgstr "" -"\t\tгц╥╞╠вюн╟З х╜юЕю╨ цъ╟║ ╠Б╢и╣Июл аь╨Я╣х GIMP©║ юггь ©э╨н\n" -"\t\tга╥н╠в╥╔ю╦╥н ╫ггЮ╣к╢о╢ы. юл га╥н╠в╥╔╣Ию╨ юл фдюо©║╪╜\n" -"\t\tюЗюЕ╣г╬НаЬ mod-times©м ╠в╟м╣Июг ╠Б╢и а╓╨╦, run-timeю╩\n" -"\t\tцё╟т ╣к╢о╢ы.\t\tюл фдюою╨ GIMP╦╦ юпю╩ ╪Ж юж╣╣╥о ╩Щ╪╨╣г╬НаЖ╟М фМаЩгь╪╜╢б\n" -"\t\t╬й╣к╢о╢ы.\n" - -#: app/install.c:155 -msgid "" -"\t\tKey shortcuts can be dynamically redefined in The GIMP.\n" -"\t\tThe menurc is a dump of your configuration so it can.\n" -"\t\tbe remembered for the next session. You may edit this\n" -"\t\tfile if you wish, but it is much easier to define the\n" -"\t\tkeys from within The GIMP. Deleting this file will\n" -"\t\trestore the default shortcuts.\n" -msgstr "" - -#: app/install.c:163 -msgid "" -"\t\tThe sessionrc is used to store what dialog windows were\n" -"\t\topen the last time you quit The GIMP. You can configure\n" -"\t\tThe GIMP to reopen these dialogs at the saved position.\n" -msgstr "" - -#: app/install.c:168 -msgid "" -"\t\tThe unitrc is used to store your user units database.\n" -"\t\tYou can define additional units and use them just\n" -"\t\tlike you use the built-in units inches, millimeters,\n" -"\t\tpoints and picas. This file is overwritten each time\n" -"\t\tyou quit the GIMP.\n" -msgstr "" -"\t\tunitrc╢б ╢Г╫еюг ╩Г©Кюз ╢эю╖ ╣╔юлем╨ёюл╫╨╦╕ юЗюЕгу╢о╢ы.\n" -"\t\t╢Г╫ею╨ цъ╟║ ╢эю╖╦╕ а╓югго╟М юж╬З╢Ь юнд║, ╧п╦╝╧лем, \n" -"\t\tфВюнф╝, фдюлд╚ ╢эю╖╦╕ ╩Г©Кгу╢о╢ы.\n" -"\t\tюл фдюою╨ ╢Г╫еюл GIMP╦╕ а╬╥Агр ╤╖ ╦╤╢ы ╣╓╬Н ╬╨©╘ аЩ╢о╢ы.\n" - -#: app/install.c:175 -msgid "" -"\t\tThis is a subdirectory which can be used to store\n" -"\t\tuser defined brushes. The default gimprc file\n" -"\t\tchecks this subdirectory in addition to the system-\n" -"\t\twide gimp brushes installation when searching for\n" -"\t\tbrushes.\n" -msgstr "" -"\t\tюл╟мю╨ ╩Г©Кюз а╓юг ╨Й╥╞╫╛╦╕ юЗюЕгр╤╖ ╩Г©К╣г╢б ╪╜╨Й\n" -"\t\t╣П╥╒еД╦╝ют╢о╢ы. ╨Й╥╞╫╛╦╕ цёю╩╤╖, юЭц╪ ╫ц╫╨еш\n" -"\t\tgimp ╨Й╥╞╫╛ ╪Ёд║╣х ╟м ©э©║ ╤г юл ╪╜╨Й╣П╥╒еД╦╝╦╕ ╟к╩Ггу╢о╢ы.\n" - -#: app/install.c:182 -msgid "" -"\t\tThis is a subdirectory which is used to store brushes\n" -"\t\tthat are created with the brush editor. The default\n" -"\t\tgimprc file checks this subdirectory when searching for\n" -"\t\tgenerated brushes.\n" -msgstr "" -"\t\tюл╟мю╨ ╩Г©Кюз а╓юг ╨Й╥╞╫╛╦╕ юЗюЕгр╤╖ ╩Г©К╣г╢б ╪╜╨Й\n" -"\t\t╣П╥╒еД╦╝ют╢о╢ы. ╨Й╥╞╫╛╦╕ цёю╩╤╖, юЭц╪ ╫ц╫╨еш\n" -"\t\tgimp ╨Й╥╞╫╛ ╪Ёд║╣х ╟м ©э©║ ╤г юл ╪╜╨Й╣П╥╒еД╦╝╦╕ ╟к╩Ггу╢о╢ы.\n" - -#: app/install.c:188 -msgid "" -"\t\tThis is a subdirectory which can be used to store\n" -"\t\tuser defined gradients. The default gimprc file\n" -"\t\tchecks this subdirectory in addition to the system-\n" -"\t\twide gimp gradients installation when searching for\n" -"\t\tgradients.\n" -msgstr "" -"\t\t╩Г©Кюз а╓юг ╩Ж╟╗╨╞х╜╣╣ юЗюЕ©║ ╩Г©К╣г╢б ╪╜╨Й\n" -"\t\t╣П╥╒еД╦╝ют╢о╢ы. ╩Ж╟╗╨╞х╜╣╣╦╕ цёю╩╤╖, цй╠Б╟╙ gimprcфдюо\n" -"\t\tю╨ юЭц╪ ╫ц╫╨еш gimp╩Ж╟╗╨╞х╜╣╣ ╪Ёд║╣х ╟м ©э©║ ╤г юл ╪╜╨Й\n" -"\t\t╣П╥╒еД╦╝╦╕ ╟к╩Ггу╢о╢ы.\n" -"\t\t\n" - -#: app/install.c:195 -msgid "" -"\t\tThis is a subdirectory which can be used to store\n" -"\t\tuser defined figures to be used by the gfig plug-in.\n" -"\t\tThe default gimprc file checks this subdirectory in\n" -"\t\taddition to the systemwide gimp gfig installation\n" -"\t\twhen searching for gfig figures.\n" -msgstr "" -"\t\tgfig гц╥╞╠вюн©║ ╩Г©К╣г╢б ╩Г©Кюз а╓юг\n" -"\t\t╠в╦╡╣Ию╩ юЗюЕго╢б ╩Г©К╣г╢б ╪╜╨Й╣П╥╒еД╦╝ют╢о╢ы.\n" -"\t\tgfig ╠в╦╡╣Ию╩ цёю╩╤╖, цй╠Б╟╙ gimprcфдюою╨ юЭц╪ ╫ц╫╨еш\n" -"\t\tgimp gfig ╪Ёд║╣х ╟м ©э©║ ╤г юл ╪╜╨Й╣П╥╒еД╦╝╦╕ ╟к╩Ггу╢о╢ы.\n" -"\t\t\n" - -#: app/install.c:202 -msgid "" -"\t\tThis is a subdirectory which can be used to store\n" -"\t\tuser defined gflares to be used by the gflare plug-in.\n" -"\t\tThe default gimprc file checks this subdirectory in\n" -"\t\taddition to the systemwide gimp gflares installation\n" -"\t\twhen searching for gflares.\n" -msgstr "" -"\t\tюл╟мю╨ gflare гц╥╞╠вюн©║╪╜ ╩Г©Кго╢б ╩Г©Кюз а╓юг gflare╣Ию╩\n" -"\t\tюЗюЕго╢б╣╔ ╩Г©К╣г╢б ╪╜╨Й╣П╥╒еД╦╝ют╢о╢ы. gflares╦╕ цёю╩╤╖,\n" -"\t\tцй╠Б╟╙ gimprcфдюою╨ юЭц╪ ╫ц╫╨еш gimp gflares ╪Ёд║╣х ╟м ©э©║ ╤г\n" -"\t\tюл ╪╜╨Й ╣П╥╒еД╦╝╦╕ ╟к╩Ггу╢о╢ы.\n" -"\t\t\n" - -#: app/install.c:209 -msgid "" -"\t\tThis is a subdirectory which can be used to store\n" -"\t\tuser defined fractals to be used by the FractalExplorer\n" -"\t\tplug-in. The default gimprc file checks this subdirectory in\n" -"\t\taddition to the systemwide gimp FractalExplorer installation\n" -"\t\twhen searching for fractals.\n" -msgstr "" -"\t\tюл╟мю╨ FractalExplorer гц╥╞╠вюн©║╪╜ ╩Г©Кго╢б\n" -"\t\t╩Г©Кюз а╓юг га╥╒е╩╣Ию╩ юЗюЕго╢б╣╔ ╩Г©К╣г╢б\n" -"\t\t╪╜╨Й╣П╥╒еД╦╝ют╢о╢ы. га╥╒е╩╣Ию╩ цёю╩╤╖, цй╠Б╟╙ gimprcфдюою╨\n" -"\t\tюЭц╪ ╫ц╫╨еш gimp FractalExplorer ╪Ёд║╣х ╟м ©э©║ ╤г\n" -"\t\tюл ╪╜╨Й╣П╥╒еД╦╝╦╕ ╟к╩Ггу╢о╢ы.\n" - -#: app/install.c:216 -msgid "" -"\t\tThis is a subdirectory which can be used to store\n" -"\t\tuser defined palettes. The default gimprc file\n" -"\t\tchecks only this subdirectory (not the system-wide\n" -"\t\tinstallation) when searching for palettes. During\n" -"\t\tinstallation, the system palettes will be copied\n" -"\t\there. This is done to allow modifications made to\n" -"\t\tpalettes during GIMP execution to persist across\n" -"\t\tsessions.\n" -msgstr "" -"\t\tюл╟мю╨ ╩Г©Кюз а╓юг фх╥╖╣Ию╩ юЗюЕгр╤╖ ╩Г©Кго╢б\n" -"\t\t╪╜╨Й╣П╥╒еД╦╝ют╢о╢ы. фх╥╖ю╩ цёю╩╤╖, цй╠Б╟╙ gimprc фдюо©║╪╜╢б\n" -"\t\t©юаВ юл ╪╜╨Й ╣П╥╒еД╦╝╦╦ ╟к╩Ггу╢о╢ы.(юЭц╪ ╫ц╫╨еш\n" -"\t\t╪Ёд║╣х ╟м©║╪╜╟║ ╬ф╢о╢ы) ╪Ёд║го╢б ╣©╬х, юл ╫ц╫╨еш фх╥©╣Ию╨\n" -"\t\t©╘╠Б©║ ╨╧╩Г ╣г╬НаЩ╢о╢ы. юл╟мю╨ ╪╪╪г╣Ию╩ а╦юГ╫це╟╠Б ю╖гь\n" -"\t\tGIMP╟║ ╫ггЮго╢б ╣©╬х фх╥©╣Ию╩ ╦╦╣Е╢б а╤юЩю╩ гЦ╟║╦╕\n" -"\t\tгу╢о╢ы.\n" -"\t\t\n" - -#: app/install.c:226 -msgid "" -"\t\tThis is a subdirectory which can be used to store\n" -"\t\tuser defined patterns. The default gimprc file\n" -"\t\tchecks this subdirectory in addition to the system-\n" -"\t\twide gimp patterns installation when searching for\n" -"\t\tpatterns.\n" -msgstr "" -"\t\tюл╟мю╨ ╩Г©Кюз а╓юг фпео╣Ию╩ юЗюЕго╢б ╪╜╨Й ╣П╥╒еД╦╝ют╢о╢ы.\n" -"\t\tфпеою╩ ╟к╩Ггр╤╖,цй╠Б╟╙ gimprc фдюою╨ юЭц╪ ╫ц╫╨еш\n" -"\t\tgimp фпео ╪Ёд║╣х ╟м ©э©║ ╤г юл ╪╜╨Й╣П╥╒еД╦╝╦╕ ╟к╩Ггу╢о╢ы.\n" -"\t\t\n" -"\t\t\n" - -#: app/install.c:233 -msgid "" -"\t\tThis is a subdirectory which can be used to store\n" -"\t\tuser created, temporary, or otherwise non-system-\n" -"\t\tsupported plug-ins. The default gimprc file\n" -"\t\tchecks this subdirectory in addition to the system-\n" -"\t\twide GIMP plug-in directories when searching for\n" -"\t\tplug-ins.\n" -msgstr "" -"\t\tюл╟мю╨ ╩Г©Кюз╟║ ╩Щ╪╨го╟еЁ╙, юс╫цюШ, ╤г╢б ╠в ╧щ╢К╥н ╫ц╫╨еш©║╪╜\n" -"\t\tаЖ©Ь╣гаЖ ╬й╢б гц╥╞╠вюню╩ юЗюЕгр╤╖ ╩Г©Кго╢б ╪╜╨Й\n" -"\t\t╣П╥╒еД╦╝ют╢о╢ы. гц╥╞╠вюню╩ цёю╩╤╖, цй╠Б╟╙ gimprc фдюою╨\n" -"\t\tюЭц╪ ╫ц╫╨еш GIMP гц╥╞╠вюн ╣П╥╒еД╦╝ ©э©║ ╤г юл ╪╜╨Й\n" -"\t\t╣П╥╒еД╦╝╦╕ ╟к╩Ггу╢о╢ы.\n" -"\t\t\n" - -#: app/install.c:241 -#, fuzzy -msgid "" -"\t\tThis subdirectory can be used to store user created,\n" -"\t\ttemporary, or otherwise non-system-supported DLL modules.\n" -"\t\tThe default gimprc file checks this subdirectory\n" -"\t\tin addition to the system-wide GIMP module directory\n" -"\t\twhen searching for modules to load when initializing.\n" -msgstr "" -"\t\tюл ╪╜╨Й╣П╥╒еД╦╝╦╕ ╩Г©Кюз╟║ ╩Щ╪╨го╟еЁ╙, юс╫цюШ, ╤г╢б ╠в\n" -"\t\t╧щ╢К╥н ╫ц╫╨еш©║╪╜ аЖ©Ь╣гаЖ ╬й╢б DLL ╦П╣Б╣Ию╩ юЗюЕгр╤╖\n" -"\t\t╩Г©К╣к╢о╢ы. цй╠Бх╜╦╕ го╦И юпю╩ ╦П╣Б╣Ию╩ цёю╩╤╖,\n" -"\t\tцй╠Б╟╙ gimprc фдюою╨ юЭц╪ ╫ц╫╨еш GIMP ╦П╣Б ╣П╥╒еД╦╝\n" -"\t\t©э©║ ╤г юл ╪╜╨Й ╣П╥╒еД╦╝╦╕ ╟к╩Ггу╢о╢ы.\n" - -#: app/install.c:248 -msgid "" -"\t\tThis subdirectory is used by the GIMP to store \n" -"\t\tuser created and installed scripts. The default gimprc\n" -"\t\tfile checks this subdirectory in addition to the system\n" -"\t\t-wide gimp scripts subdirectory when searching for scripts\n" -msgstr "" -"\t\tюл ╪╜╨Й╣П╥╒еД╦╝╢б ╩Г©Кюз╟║ ╫╨е╘╦Ёф╝╣Ию╩ ╩Щ╪╨го╟М ╪Ёд║гр╤╖\n" -"\t\t╩Г©Кгу╢о╢ы. ╫╨е╘╦Ёф╝╣Ию╩ цёю╩╤╖, цй╠Б╟╙ gimprc фдюою╨\n" -"\t\tюЭц╪ ╫ц╫╨еш gimp ╫╨е╘╦Ёф╝ ╪╜╨Й╣П╥╒еД╦╝ ©э©║ ╤г юл ╣П╥╒еД╦╝╦╕\n" -"\t\t╟к╩Ггу╢о╢ы.\n" - -#: app/install.c:254 -msgid "" -"\t\tThis subdirectory is used by the GIMP to temporarily\n" -"\t\tstore undo buffers to reduce memory usage. If GIMP is\n" -"\t\tunceremoniously killed, files may persist in this directory\n" -"\t\tof the form: gimp<#>.<#>. These files are useless across\n" -"\t\tGIMP sessions and can be destroyed with impunity.\n" -msgstr "" -"\t\tюл ╪╜╨Й╣П╥╒еД╦╝╢б GIMP©║ юггь ╩Г©К╣г╢б ╦ч╦П╦╝ ╩Г©Кю╩\n" -"\t\tаыюл╠Бю╖гя ╨╧╠╦ ╧Жфш╦╕ юЗюЕю╩ ю╖гя юс╫цюШюн ╟мюл╢ы.\n" -"\t\t╦╦╬Ю GIMP╟║ гЭ╫дюШюлаЖ ╬й╟т ав╟т ╣х╢ы╦И, фдюо╣Ию╨\n" -"\t\tфШюг юл ╣П╥╒еД╦╝©║╪╜ ╟Ха╥ а╦юГ гр╟мюл╢ы: gimp<#>.<#>.\n" -"\t\tюл фдюо╣Ию╨ GIMP ╪╪╪г╣И©║╪╜ ╩Г©К╣гаЖ ╬й╟М ╧╚╩ГхВ ╬Ь╬Н\n" -"\t\tаЖ╟т ╣и╟мюл╢ы.\n" - -#: app/install.c:263 -msgid "GIMP Installation" -msgstr "GIMP ╪Ёд║" - -#: app/install.c:268 -msgid "Install" -msgstr "╪Ёд║" - -#: app/install.c:270 -msgid "Ignore" -msgstr "╧╚╫ц" - -#. this is a fontset, e.g. multiple comma-separated font definitions -#: app/install.c:295 app/install.c:453 -msgid "-*-helvetica-bold-r-normal-*-*-120-*-*-*-*-*-*,*" -msgstr "" - -#. this is a font, provide only one single font definition -#: app/install.c:298 -msgid "-*-helvetica-medium-o-normal-*-*-100-*-*-*-*-*-*" -msgstr "" - -#. this is a fontset, e.g. multiple comma-separated font definitions -#: app/install.c:301 -msgid "-*-helvetica-medium-r-normal-*-*-100-*-*-*-*-*-*,*" -msgstr "" - -#: app/install.c:423 -msgid "Installation Log" -msgstr "╪Ёд║ ╥н╠в" - -#: app/install.c:428 -msgid "Continue" -msgstr "╟Х╪с" - -#. this is a fontset, e.g. multiple comma-separated font definitions -#: app/install.c:456 -msgid "-*-helvetica-medium-r-normal-*-*-120-*-*-*-*-*-*,*" -msgstr "" - -#: app/install.c:462 -msgid "" -"User Installation Log\n" -"\n" +msgid "User Installation Log" msgstr "" "╩Г©Кюз ╪Ёд║ ╥н╠в\n" "\n" -#: app/install.c:472 -msgid " does not exist. Cannot install.\n" +#: app/install.c:741 +msgid "GIMP Performance Tuning" +msgstr "" + +#: app/install.c:744 +msgid "For optimal GIMP performance, some settings may have to be adjusted." +msgstr "" + +#: app/install.c:751 +msgid "Click \"Continue\" to accept the settings above." +msgstr "" + +#: app/install.c:760 +#, fuzzy +msgid "Monitor Resolution" +msgstr "╦П╢оем гь╩С╣╣ ╬Р╠Б" + +#: app/install.c:763 +msgid "" +"To display images in their natural size, GIMP needs to know your monitor " +"resolution." +msgstr "" + +#: app/install.c:771 +msgid "Click \"Continue\" to start The GIMP." +msgstr "" + +#: app/install.c:845 +#, fuzzy +msgid "does not exist. Cannot install." msgstr "╢б а╦юГ гоаЖ ╬й╫ю╢о╢ы. ╪Ёд║гр ╪Ж ╬Ь╫ю╢о╢ы.\n" -#: app/install.c:480 -msgid "" -" has invalid permissions.\n" -"Cannot install." +#: app/install.c:857 +#, fuzzy +msgid "has invalid permissions. Cannot install." msgstr "" "╢б ©гаЖ╬йю╨ ╠ггяю╩ ╟╝╟М юж╫ю╢о╢ы.\n" "╪Ёд║гр ╪Ж ╬Ь╫ю╢о╢ы." -#: app/install.c:514 +#: app/install.c:895 +#, fuzzy msgid "" -"Did you notice any error messages\n" -"in the console window? If not, installation\n" -"was successful! Otherwise, quit and investigate\n" -"the possible reason...\n" +"Did you notice any error messages in the console window?\n" +"If not, installation was successful!\n" +"Otherwise, quit and investigate the possible reason..." msgstr "" "дэ╪ж ц╒©║ ©║╥╞ ╬к╦╡╦╩юл цБ╥б╣г╬З╫ю╢о╠Н?\n" "╠в╥╦аЖ ╬й╢ы╦И, ╪╨╟ЬюШю╦╥н юн╫╨еГ ╣х ╟мют╢о╢ы!\n" "©║╥╞╟║ Ё╣╢ы╦И, а╬╥Аго╫ц╟М ©ж ©║╥╞╟║ Ё╣╢баЖ╦╕\n" "цё╬ф╨╦╫ц╠Б ╧ы╤Ь╢о╢ы...\n" -#: app/install.c:546 +#: app/install.c:955 +#, fuzzy msgid "" -"\n" -"Installation successful!\n" +"Did you notice any error messages in the lines above?\n" +"If not, installation was successful!\n" +"Otherwise, quit and investigate the possible reason..." msgstr "" -"\n" -"╪Ёд║ ╪╨╟Ь!\n" +"дэ╪ж ц╒©║ ©║╥╞ ╬к╦╡╦╩юл цБ╥б╣г╬З╫ю╢о╠Н?\n" +"╠в╥╦аЖ ╬й╢ы╦И, ╪╨╟ЬюШю╦╥н юн╫╨еГ ╣х ╟мют╢о╢ы!\n" +"©║╥╞╟║ Ё╣╢ы╦И, а╬╥Аго╫ц╟М ©ж ©║╥╞╟║ Ё╣╢баЖ╦╕\n" +"цё╬ф╨╦╫ц╠Б ╧ы╤Ь╢о╢ы...\n" -#: app/install.c:555 -msgid "" -"\n" -"Installation failed. Contact system administrator.\n" +#: app/install.c:969 +msgid "Click \"Continue\" to complete GIMP installation." +msgstr "" + +#: app/install.c:978 +#, fuzzy +msgid "Installation failed. Contact system administrator." msgstr "" "\n" "╪Ёд║ ╫гфп. ╫ц╫╨еш ╟Э╦╝юз╦╕ ╦╦Ё╙╨╦╫й╫ц©ю.\n" +#: app/install.c:999 +msgid "" +"GIMP uses a limited amount of memory to store image data, the so-called\n" +"\"Tile Cache\". You should adjust it's size to fit into memory. Consider\n" +"the amount of memory used by other running processes." +msgstr "" + +#: app/install.c:1015 app/preferences_dialog.c:2102 +msgid "Tile Cache Size:" +msgstr "е╦юо дЁ╫╛ е╘╠Б:" + +#: app/install.c:1025 +msgid "" +"All image and undo data which doesn't fit into the Tile Cache will be\n" +"written to a swap file. This file should be located on a local filesystem\n" +"with enough free space (several hundred MB). On a UNIX system, you\n" +"may want to use the system-wide temp-dir (\"/tmp\" or \"/var/tmp\")." +msgstr "" + +#: app/install.c:1035 app/preferences_dialog.c:2361 +msgid "Select Swap Dir" +msgstr "╫╨©р ╣П╥╨еД╦╝ ╪╠ец" + +#: app/install.c:1041 +#, fuzzy +msgid "Swap Directory:" +msgstr "╫╨©р ╣П╥╨еД╦╝:" + +#: app/install.c:1063 +msgid "" +"GIMP can obtain this information from your X-server.\n" +"However, most X-servers do not return useful values." +msgstr "" + +#: app/install.c:1070 +#, fuzzy, c-format +msgid "Get Resolution from X-server (Currently %d x %d dpi)" +msgstr "(гЖюГ %d x %d dpi)" + +#: app/install.c:1087 +msgid "Alternatively, you can set the monitor resolution manually." +msgstr "" + +#: app/install.c:1102 +#, fuzzy +msgid "Monitor Resolution X:" +msgstr "╦П╢оем гь╩С╣╣ ╬Р╠Б" + #: app/interface.c:312 msgid "" "Foreground & background colors. The black and white squares reset colors. " @@ -2886,8 +3004,8 @@ msgstr " msgid "Guide procedures" msgstr "╟║юл╣Е га╥н╫ца╝" -#: app/internal_procs.c:122 app/preferences_dialog.c:1772 -#: app/preferences_dialog.c:1774 +#: app/internal_procs.c:122 app/preferences_dialog.c:1733 +#: app/preferences_dialog.c:1735 msgid "Interface" msgstr "юнемфДюл╫╨" @@ -3307,148 +3425,139 @@ msgid "degrees" msgstr "╟╒╣╣" #. /File -#: app/menus.c:82 +#. the underscore installs an accelerator using the character that follows +#: app/menus.c:85 #, fuzzy msgid "/_File" msgstr "/фдюо" -#: app/menus.c:84 app/menus.c:191 +#. /File +#: app/menus.c:87 app/menus.c:193 msgid "/File/New..." msgstr "/фдюо/╩У ╠в╦╡..." -#: app/menus.c:86 app/menus.c:193 +#: app/menus.c:89 app/menus.c:195 msgid "/File/Open..." msgstr "/фдюо/©╜╠Б..." -#: app/menus.c:93 +#: app/menus.c:96 msgid "/File/Acquire" msgstr "/фдюо/Acquire" -#: app/menus.c:98 +#: app/menus.c:101 msgid "/File/Preferences..." msgstr "/фдюо/╪╠ец╩Ггв..." -#: app/menus.c:105 -msgid "/File/Dialogs" -msgstr "/фдюо/╢Кх╜╩Сюз" - -#: app/menus.c:107 +#: app/menus.c:108 #, fuzzy msgid "/File/Dialogs/Layers, Channels & Paths..." msgstr "/фдюо/╢Кх╜╩Сюз/╟ХцЧ╟З ц╓Ён..." -#: app/menus.c:109 +#: app/menus.c:110 msgid "/File/Dialogs/Tool Options..." msgstr "/фдюо/╢Кх╜╩Сюз/╣╣╠╦ ©и╪г..." -#: app/menus.c:114 +#: app/menus.c:115 msgid "/File/Dialogs/Brushes..." msgstr "/фдюо/╢Кх╜╩Сюз/╨Й╥╞╫╛..." -#: app/menus.c:116 +#: app/menus.c:117 msgid "/File/Dialogs/Patterns..." msgstr "/фдюо/╢Кх╜╩Сюз/фпео..." -#: app/menus.c:118 +#: app/menus.c:119 msgid "/File/Dialogs/Gradients..." msgstr "/фдюо/╢Кх╜╩Сюз/╩Ж╟╗╨╞х╜╣╣..." -#: app/menus.c:120 +#: app/menus.c:121 msgid "/File/Dialogs/Palette..." msgstr "/фдюо/╢Кх╜╩Сюз/фх╥©..." -#: app/menus.c:122 +#: app/menus.c:123 msgid "/File/Dialogs/Indexed Palette..." msgstr "/фдюо/╢Кх╜╩Сюз/юн╣╕╫╨╣х фх╥©..." -#: app/menus.c:127 +#: app/menus.c:128 msgid "/File/Dialogs/Input Devices..." msgstr "/фдюо/╢Кх╜╩Сюз/ют╥б юЕд║..." -#: app/menus.c:129 +#: app/menus.c:130 msgid "/File/Dialogs/Device Status..." msgstr "/фдюо/╢Кх╜╩Сюз/юЕд║ ╩Себ..." -#: app/menus.c:134 +#: app/menus.c:135 msgid "/File/Dialogs/Document Index..." msgstr "/фдюо/╢Кх╜╩Сюз/╧╝╪╜ ╩Жюн..." -#: app/menus.c:136 +#: app/menus.c:137 msgid "/File/Dialogs/Error Console..." msgstr "/фдюо/╢Кх╜╩Сюз/©║╥╞ дэ╪ж..." -#: app/menus.c:138 +#: app/menus.c:139 msgid "/File/Dialogs/Display Filters..." msgstr "/фдюо/╢Кх╜╩Сюз/╣П╫╨гц╥╧юл гйем..." -#: app/menus.c:148 app/menus.c:206 +#: app/menus.c:149 app/menus.c:208 msgid "/File/Quit" msgstr "/фдюо/а╬╥А" #. /Xtns -#: app/menus.c:153 +#. the underscore installs an accelerator using the character that follows +#: app/menus.c:155 #, fuzzy msgid "/_Xtns" msgstr "/х╝юЕ" -#: app/menus.c:155 +#: app/menus.c:157 msgid "/Xtns/Module Browser..." msgstr "/х╝юЕ/╦П╣Б ╨Й╤С©ЛюЗ..." #. /Help -#: app/menus.c:163 +#. the underscore installs an accelerator using the character that follows +#: app/menus.c:166 #, fuzzy msgid "/_Help" msgstr "/╣╣©Р╦╩" -#: app/menus.c:165 +#: app/menus.c:168 msgid "/Help/Help..." msgstr "/╣╣©Р╦╩/╣╣©Р╦╩..." -#: app/menus.c:167 +#: app/menus.c:170 msgid "/Help/Context Help..." msgstr "/╣╣©Р╦╩/╧╝╦ф ╣╣©Р╦╩..." -#: app/menus.c:169 +#: app/menus.c:172 #, fuzzy msgid "/Help/Tip of the Day..." msgstr "/╣╣©Р╦╩/©ю╢цюг фа..." -#: app/menus.c:171 +#: app/menus.c:174 msgid "/Help/About..." msgstr "/╣╣©Р╦╩/юл га╥н╠в╥╔ю╨..." -#: app/menus.c:173 +#: app/menus.c:176 msgid "/Help/Dump Items (Debug)" msgstr "/╣╣©Р╦╩/гв╦Я ╢Щга (╣П╧Ж╠в)" -#. /File -#: app/menus.c:189 -msgid "/File" -msgstr "/фдюо" - -#: app/menus.c:195 +#: app/menus.c:197 msgid "/File/Save" msgstr "/фдюо/юЗюЕ" -#: app/menus.c:197 +#: app/menus.c:199 #, fuzzy msgid "/File/Save As..." msgstr "/фдюо/╢ы╦╔ юл╦╖ю╦╥н юЗюЕ..." -#: app/menus.c:199 +#: app/menus.c:201 msgid "/File/Revert" msgstr "/фдюо/©Ь╥║╢К╥н ╨╧╠╦" -#: app/menus.c:204 +#: app/menus.c:206 msgid "/File/Close" msgstr "/фдюо/╢щ╠Б" #. /Edit -#: app/menus.c:214 -msgid "/Edit" -msgstr "/фМаЩ" - #: app/menus.c:216 msgid "/Edit/Undo" msgstr "/фМаЩ/цК╪р" @@ -3480,694 +3589,609 @@ msgstr "/ #. /Edit/Buffer #: app/menus.c:236 -msgid "/Edit/Buffer" -msgstr "/фМаЩ/╧Жфш" - -#: app/menus.c:238 msgid "/Edit/Buffer/Cut Named..." msgstr "/фМаЩ/╧Жфш/юл╦╖╨ы©╘ юз╦ё╠Б..." -#: app/menus.c:240 +#: app/menus.c:238 msgid "/Edit/Buffer/Copy Named..." msgstr "/фМаЩ/╧Жфш/юл╦╖╨ы©╘ ╨╧╩Г..." -#: app/menus.c:242 +#: app/menus.c:240 msgid "/Edit/Buffer/Paste Named..." msgstr "/фМаЩ/╧Жфш/юл╦╖╨ы©╘ ╨ыюл╠Б..." -#: app/menus.c:247 +#: app/menus.c:245 msgid "/Edit/Clear" msgstr "/фМаЩ/аЖ©Л╠Б" -#: app/menus.c:249 +#: app/menus.c:247 msgid "/Edit/Fill" msgstr "/фМаЩ/ц╓©Л╠Б" -#: app/menus.c:251 +#: app/menus.c:249 msgid "/Edit/Stroke" msgstr "/фМаЩ/гя╧Ь╠ъ╠Б" #. /Select -#: app/menus.c:259 -msgid "/Select" -msgstr "/╪╠ец" - -#: app/menus.c:261 +#: app/menus.c:257 msgid "/Select/Invert" msgstr "/╪╠ец/╧щ╢К╥н(Invert)" -#: app/menus.c:263 +#: app/menus.c:259 msgid "/Select/All" msgstr "/╪╠ец/╦П╣н" -#: app/menus.c:265 +#: app/menus.c:261 msgid "/Select/None" msgstr "/╪╠ец/╬Ью╫" -#: app/menus.c:267 +#: app/menus.c:263 msgid "/Select/Float" msgstr "/╪╠ец/ю╞╣©юШ" -#: app/menus.c:272 +#: app/menus.c:268 msgid "/Select/Feather..." msgstr "/╪╠ец/Feather..." -#: app/menus.c:274 +#: app/menus.c:270 msgid "/Select/Sharpen" msgstr "/╪╠ец/╩гасго╟т" -#: app/menus.c:276 +#: app/menus.c:272 msgid "/Select/Shrink..." msgstr "/╪╠ец/аыюл╠Б..." -#: app/menus.c:278 +#: app/menus.c:274 msgid "/Select/Grow..." msgstr "/╪╠ец/╢ц╦╝╠Б..." -#: app/menus.c:280 +#: app/menus.c:276 msgid "/Select/Border..." msgstr "/╪╠ец/ев╣н╦╝..." -#: app/menus.c:285 +#: app/menus.c:281 #, fuzzy msgid "/Select/Save to Channel" msgstr "/╪╠ец/ц╓Ён╥н юЗюЕ" #. /View -#: app/menus.c:290 -msgid "/View" -msgstr "/╨╦╠Б" - -#: app/menus.c:292 +#: app/menus.c:286 msgid "/View/Zoom In" msgstr "/╨╦╠Б/х╝╢Кго╠Б" -#: app/menus.c:294 +#: app/menus.c:288 msgid "/View/Zoom Out" msgstr "/╨╦╠Б/цЮ╪рго╠Б" #. /View/Zoom -#: app/menus.c:299 -msgid "/View/Zoom" -msgstr "/╨╦╠Б/х╝╢К" - -#: app/menus.c:301 +#: app/menus.c:293 msgid "/View/Zoom/16:1" msgstr "/╨╦╠Б/х╝╢К/16:1" -#: app/menus.c:303 +#: app/menus.c:295 msgid "/View/Zoom/8:1" msgstr "/╨╦╠Б/х╝╢К/8:1" -#: app/menus.c:305 +#: app/menus.c:297 msgid "/View/Zoom/4:1" msgstr "/╨╦╠Б/х╝╢К/4:1" -#: app/menus.c:307 +#: app/menus.c:299 msgid "/View/Zoom/2:1" msgstr "/╨╦╠Б/х╝╢К/2:1" -#: app/menus.c:309 +#: app/menus.c:301 msgid "/View/Zoom/1:1" msgstr "/╨╦╠Б/х╝╢К/1:1" -#: app/menus.c:311 +#: app/menus.c:303 msgid "/View/Zoom/1:2" msgstr "/╨╦╠Б/х╝╢К/1:2" -#: app/menus.c:313 +#: app/menus.c:305 msgid "/View/Zoom/1:4" msgstr "/╨╦╠Б/х╝╢К/1:4" -#: app/menus.c:315 +#: app/menus.c:307 msgid "/View/Zoom/1:8" msgstr "/╨╦╠Б/х╝╢К/1:8" -#: app/menus.c:317 +#: app/menus.c:309 msgid "/View/Zoom/1:16" msgstr "/╨╦╠Б/х╝╢К/1:16" -#: app/menus.c:320 +#: app/menus.c:312 #, fuzzy msgid "/View/Dot for Dot" msgstr "/╨╦╠Б/а║ ╢К а║" -#: app/menus.c:325 +#: app/menus.c:317 msgid "/View/Info Window..." msgstr "/╨╦╠Б/ц╒ а╓╨╦..." -#: app/menus.c:327 +#: app/menus.c:319 msgid "/View/Nav. Window..." msgstr "/╨╦╠Б/ц╒ Ёв╨Я╟тюлем..." -#: app/menus.c:329 -#, fuzzy -msgid "/View/Undo History..." -msgstr "/╨╦╠Б/хВ╫╨еД╦╝ ╨╧╠╦..." - -#: app/menus.c:334 +#: app/menus.c:324 msgid "/View/Toggle Selection" msgstr "/╨╦╠Б/╪©╥╨╪г еД╠ш" -#: app/menus.c:336 +#: app/menus.c:326 msgid "/View/Toggle Rulers" msgstr "/╨╦╠Б/╢╚╠щюз еД╠ш" -#: app/menus.c:338 +#: app/menus.c:328 msgid "/View/Toggle Statusbar" msgstr "/╨╦╠Б/╩Себ╦╥╢К еД╠ш" -#: app/menus.c:340 +#: app/menus.c:330 msgid "/View/Toggle Guides" msgstr "/╨╦╠Б/╟║юл╣Е еД╠ш" -#: app/menus.c:342 +#: app/menus.c:332 #, fuzzy msgid "/View/Snap to Guides" msgstr "/╨╦╠Б/╟║юл╣Е ╢щ╠Б" -#: app/menus.c:347 +#: app/menus.c:337 msgid "/View/New View" msgstr "/╨╦╠Б/╩У╥н©Н ╨╦╠Б" -#: app/menus.c:349 +#: app/menus.c:339 msgid "/View/Shrink Wrap" msgstr "/╨╦╠Б/╣╓╟Ё аыюл╠Б" -#. /Image -#: app/menus.c:357 -msgid "/Image" -msgstr "/юл╧лаЖ" - #. /Image/Mode -#: app/menus.c:362 -msgid "/Image/Mode" -msgstr "/юл╧лаЖ/╦П╣Е" - -#: app/menus.c:364 +#: app/menus.c:344 msgid "/Image/Mode/RGB" msgstr "/юл╧лаЖ/╦П╣Е/RGB" -#: app/menus.c:366 +#: app/menus.c:346 msgid "/Image/Mode/Grayscale" msgstr "/юл╧лаЖ/╦П╣Е/╠в╥╧юл╫╨диюо" -#: app/menus.c:368 +#: app/menus.c:348 msgid "/Image/Mode/Indexed..." msgstr "/юл╧лаЖ/╦П╣Е/юн╣╕╫╨╣й(Indexed)" #. /Image/Colors -#: app/menus.c:376 -msgid "/Image/Colors" -msgstr "/юл╧лаЖ/╩Ж" - -#: app/menus.c:381 +#: app/menus.c:356 msgid "/Image/Colors/Desaturate" msgstr "/юл╧лаЖ/╩Ж/юЭ╨н ц╓©Л╠Б" -#: app/menus.c:383 +#: app/menus.c:358 msgid "/Image/Colors/Invert" msgstr "/юл╧лаЖ/╩Ж/╧щ╢К╥н(Invert)" #. /Image/Colors/Auto -#: app/menus.c:391 -msgid "/Image/Colors/Auto" -msgstr "/юл╧лаЖ/╩Ж/юз╣©" - -#: app/menus.c:393 +#: app/menus.c:366 msgid "/Image/Colors/Auto/Equalize" msgstr "/юл╧лаЖ/╩Ж/юз╣©/╠у╣Нго╠Б(Equalize)" #. /Image/Alpha -#: app/menus.c:401 -msgid "/Image/Alpha" -msgstr "/юл╧лаЖ/╬кфд" - -#: app/menus.c:403 +#: app/menus.c:374 msgid "/Image/Alpha/Add Alpha Channel" msgstr "/юл╧лаЖ/╬кфд/╬кфд ц╓Ён цъ╟║" #. /Image/Transforms -#: app/menus.c:408 -msgid "/Image/Transforms" -msgstr "/юл╧лаЖ/╨╞х╞" - -#: app/menus.c:410 +#: app/menus.c:379 msgid "/Image/Transforms/Offset..." msgstr "/юл╧лаЖ/╨╞х╞/©и╪б..." -#: app/menus.c:412 +#: app/menus.c:381 msgid "/Image/Transforms/Rotate" msgstr "/юл╧лаЖ/╨╞х╞/х╦юЭ" -#: app/menus.c:419 +#: app/menus.c:388 msgid "/Image/Canvas Size..." msgstr "/юл╧лаЖ/д╣╧Ж╫╨ е╘╠Б..." -#: app/menus.c:421 +#: app/menus.c:390 msgid "/Image/Scale Image..." msgstr "/юл╧лаЖ/╫╨диюо юл╧лаЖ..." -#: app/menus.c:423 +#: app/menus.c:392 msgid "/Image/Duplicate" msgstr "/юл╧лаЖ/╨╧╩Г" #. /Layers -#: app/menus.c:431 -msgid "/Layers" -msgstr "/╟ХцЧ" - -#: app/menus.c:433 +#: app/menus.c:400 #, fuzzy msgid "/Layers/Layers, Channels & Paths..." msgstr "/╟ХцЧ/╟ХцЧ╟З ц╓Ён..." -#. /Layers/Stack -#: app/menus.c:438 -msgid "/Layers/Stack" -msgstr "/╟ХцЧ/╫╨ец" - -#: app/menus.c:440 -msgid "/Layers/Stack/Previous Layer" -msgstr "/╟ХцЧ/╫╨ец/юлюЭ ╟ХцЧ" - -#: app/menus.c:442 -msgid "/Layers/Stack/Next Layer" -msgstr "/╟ХцЧ/╫╨ец/╢ыю╫ ╟ХцЧ" - -#: app/menus.c:444 -msgid "/Layers/Stack/Raise Layer" -msgstr "/╟ХцЧ/╫╨ец/╟ХцЧ ©ц╦╝╠Б" - -#: app/menus.c:446 -msgid "/Layers/Stack/Lower Layer" -msgstr "/╟ХцЧ/╫╨ец/╟ХцЧ Ё╩╦╝╠Б" - -#: app/menus.c:448 -msgid "/Layers/Stack/Layer to Top" -msgstr "/╟ХцЧ/╫╨ец/цж╩СцЧю╦╥н" - -#: app/menus.c:450 -msgid "/Layers/Stack/Layer to Bottom" -msgstr "/╟ХцЧ/╫╨ец/цжгоцЧю╦╥н" - -#. /Layers/Rotate -#: app/menus.c:457 -msgid "/Layers/Rotate" -msgstr "/╟ХцЧ/х╦юЭ" - -#: app/menus.c:460 +#: app/menus.c:404 #, fuzzy msgid "/Layers/Layer to Imagesize" msgstr "/╟ХцЧ/гц╥║ф╟ юл╧лаЖ" -#: app/menus.c:465 +#. /Layers/Stack +#: app/menus.c:409 +msgid "/Layers/Stack/Previous Layer" +msgstr "/╟ХцЧ/╫╨ец/юлюЭ ╟ХцЧ" + +#: app/menus.c:411 +msgid "/Layers/Stack/Next Layer" +msgstr "/╟ХцЧ/╫╨ец/╢ыю╫ ╟ХцЧ" + +#: app/menus.c:413 +msgid "/Layers/Stack/Raise Layer" +msgstr "/╟ХцЧ/╫╨ец/╟ХцЧ ©ц╦╝╠Б" + +#: app/menus.c:415 +msgid "/Layers/Stack/Lower Layer" +msgstr "/╟ХцЧ/╫╨ец/╟ХцЧ Ё╩╦╝╠Б" + +#: app/menus.c:417 +msgid "/Layers/Stack/Layer to Top" +msgstr "/╟ХцЧ/╫╨ец/цж╩СцЧю╦╥н" + +#: app/menus.c:419 +msgid "/Layers/Stack/Layer to Bottom" +msgstr "/╟ХцЧ/╫╨ец/цжгоцЧю╦╥н" + +#. /Layers/Rotate +#: app/menus.c:426 +msgid "/Layers/Rotate" +msgstr "/╟ХцЧ/х╦юЭ" + +#: app/menus.c:431 msgid "/Layers/Anchor Layer" msgstr "/╟ХцЧ/╟ХцЧ ╟Ма╓" -#: app/menus.c:467 +#: app/menus.c:433 msgid "/Layers/Merge Visible Layers..." msgstr "/╟ХцЧ/╨╦юл╢б ╟ХцЧю╩ ╦саЖ..." -#: app/menus.c:469 +#: app/menus.c:435 msgid "/Layers/Flatten Image" msgstr "/╟ХцЧ/гц╥║ф╟ юл╧лаЖ" -#: app/menus.c:474 +#: app/menus.c:440 #, fuzzy msgid "/Layers/Mask to Selection" msgstr "/╟ХцЧ/╪©╥╨╪г ╦╤╫╨е╘" -#: app/menus.c:479 +#: app/menus.c:445 msgid "/Layers/Add Alpha Channel" msgstr "/╟ХцЧ/╬кфд ц╓Ён цъ╟║" -#: app/menus.c:481 +#: app/menus.c:447 #, fuzzy msgid "/Layers/Alpha to Selection" msgstr "/╟ХцЧ/╪©╥╨╪г ╬кфд" #. /Tools -#: app/menus.c:489 -msgid "/Tools" -msgstr "/╣╣╠╦" - -#: app/menus.c:491 +#: app/menus.c:455 msgid "/Tools/Toolbox" msgstr "/╣╣╠╦/╣╣╠╦╩Сюз" -#: app/menus.c:493 +#: app/menus.c:457 msgid "/Tools/Default Colors" msgstr "/╣╣╠╦/╠Б╨╩ ╩Ж" -#: app/menus.c:495 +#: app/menus.c:459 msgid "/Tools/Swap Colors" msgstr "/╣╣╠╦/╩Ж ╧ы╡ы╠Б" -#: app/menus.c:501 -#, fuzzy -msgid "/Tools/Select Tools" -msgstr "/╣╣╠╦/╩Г╟╒ ╪╠ец" - -#: app/menus.c:503 -#, fuzzy -msgid "/Tools/Transform Tools" -msgstr "/╣╣╠╦/╨╞х╞" - -#: app/menus.c:505 -#, fuzzy -msgid "/Tools/Paint Tools" -msgstr "/╣╣╠╦/фДюнф╝╨Й╥╞╫╛" - #. /Dialogs -#: app/menus.c:510 -msgid "/Dialogs" -msgstr "/╢Кх╜╩Сюз" - -#: app/menus.c:512 +#: app/menus.c:466 #, fuzzy msgid "/Dialogs/Layers, Channels & Paths..." msgstr "/╢Кх╜╩Сюз/╟ХцЧ╟З ц╓Ён..." -#: app/menus.c:514 +#: app/menus.c:468 msgid "/Dialogs/Tool Options..." msgstr "/╢Кх╜╩Сюз/╣╣╠╦ ©и╪г..." -#: app/menus.c:519 +#: app/menus.c:473 msgid "/Dialogs/Brushes..." msgstr "/╢Кх╜╩Сюз/╨Й╥╞╫╛..." -#: app/menus.c:521 +#: app/menus.c:475 msgid "/Dialogs/Patterns..." msgstr "/╢Кх╜╩Сюз/фпео..." -#: app/menus.c:523 +#: app/menus.c:477 msgid "/Dialogs/Gradients..." msgstr "/╢Кх╜╩Сюз/╩Ж╟╗╨╞х╜╣╣..." -#: app/menus.c:525 +#: app/menus.c:479 msgid "/Dialogs/Palette..." msgstr "/╢Кх╜╩Сюз/фх╥©..." -#: app/menus.c:527 +#: app/menus.c:481 msgid "/Dialogs/Indexed Palette..." msgstr "/╢Кх╜╩Сюз/юн╣╕╫╨╣х фх╥©..." -#: app/menus.c:532 +#: app/menus.c:486 msgid "/Dialogs/Input Devices..." msgstr "/╢Кх╜╩Сюз/ют╥б юЕд║..." -#: app/menus.c:534 +#: app/menus.c:488 msgid "/Dialogs/Device Status..." msgstr "/╢Кх╜╩Сюз/юЕд║ ╩Себ..." -#: app/menus.c:539 +#: app/menus.c:493 msgid "/Dialogs/Document Index..." msgstr "/╢Кх╜╩Сюз/╧╝╪╜ ╩Жюн..." -#: app/menus.c:541 +#: app/menus.c:495 msgid "/Dialogs/Error Console..." msgstr "/╢Кх╜╩Сюз/©║╥╞ дэ╪ж..." -#: app/menus.c:543 +#: app/menus.c:497 msgid "/Dialogs/Display Filters..." msgstr "/╢Кх╜╩Сюз/фпео..." -#. /Filters -#: app/menus.c:551 -msgid "/Filters" -msgstr "/гйем" +#: app/menus.c:499 +#, fuzzy +msgid "/Dialogs/Undo History..." +msgstr "/╨╦╠Б/хВ╫╨еД╦╝ ╨╧╠╦..." -#: app/menus.c:553 +#. /Filters +#: app/menus.c:508 #, fuzzy msgid "/Filters/Repeat Last" msgstr "/гйем/╦╤аЖ╦╥ ╧щ╨╧" -#: app/menus.c:555 +#: app/menus.c:510 #, fuzzy msgid "/Filters/Re-Show Last" msgstr "/гйем/╦╤аЖ╦╥ ╢ы╫ц ╨╦©╘аж╠Б" -#: app/menus.c:561 +#: app/menus.c:515 msgid "/Filters/Blur" msgstr "/гйем/Blur" -#: app/menus.c:564 +#: app/menus.c:517 msgid "/Filters/Colors" msgstr "/гйем/╩Ж" -#: app/menus.c:569 +#: app/menus.c:519 msgid "/Filters/Noise" msgstr "/гйем/юБю╫" -#: app/menus.c:571 +#: app/menus.c:521 msgid "/Filters/Edge-Detect" msgstr "/гйем/╟║юЕюз╦╝-цё╠Б" -#: app/menus.c:573 +#: app/menus.c:523 msgid "/Filters/Enhance" msgstr "/гйем/Enhance" -#: app/menus.c:575 +#: app/menus.c:525 msgid "/Filters/Generic" msgstr "/гйем/Generic" -#: app/menus.c:580 +#: app/menus.c:530 msgid "/Filters/Glass Effects" msgstr "/гйем/ю╞╦╝юэ х©╟З" -#: app/menus.c:582 +#: app/menus.c:532 msgid "/Filters/Light Effects" msgstr "/гйем/а╤╦М х©╟З" -#: app/menus.c:584 +#: app/menus.c:534 msgid "/Filters/Distorts" msgstr "/гйем/Distorts" -#: app/menus.c:586 +#: app/menus.c:536 msgid "/Filters/Artistic" msgstr "/гйем/Artistic" -#: app/menus.c:588 +#: app/menus.c:538 msgid "/Filters/Map" msgstr "/гйем/╦й" -#: app/menus.c:590 +#: app/menus.c:540 msgid "/Filters/Render" msgstr "/гйем/Render" -#: app/menus.c:592 +#: app/menus.c:542 msgid "/Filters/Web" msgstr "/гйем/Web" -#: app/menus.c:597 +#: app/menus.c:547 msgid "/Filters/Animation" msgstr "/гйем/©║╢о╦чюл╪г" -#: app/menus.c:599 +#: app/menus.c:549 msgid "/Filters/Combine" msgstr "/гйем/Combine" -#: app/menus.c:604 +#: app/menus.c:554 msgid "/Filters/Toys" msgstr "/гйем/юЕЁ╜╟╗" -#. /Script-Fu -#: app/menus.c:609 -msgid "/Script-Fu" -msgstr "/Script-Fu" - -#: app/menus.c:620 +#: app/menus.c:567 msgid "/Automatic" msgstr "/юз╣©" -#: app/menus.c:634 +#: app/menus.c:581 #, fuzzy msgid "/By Extension" msgstr "/х╝юЕюз╥н" -#: app/menus.c:648 +#: app/menus.c:595 msgid "/New Layer..." msgstr "/╩У ╟ХцЧ..." #. /Stack -#: app/menus.c:653 -msgid "/Stack" -msgstr "/╟ХцЧ/╫╨ец" - -#: app/menus.c:655 +#: app/menus.c:600 msgid "/Stack/Raise Layer" msgstr "/╫╨ец/╟ХцЧ ©ц╦╝╠Б" -#: app/menus.c:657 +#: app/menus.c:602 msgid "/Stack/Lower Layer" msgstr "/╫╨ец/╟ХцЧ Ё╩╦╝╠Б" -#: app/menus.c:659 +#: app/menus.c:604 msgid "/Stack/Layer to Top" msgstr "/╫╨ец/цж╩СцЧю╦╥н" -#: app/menus.c:661 +#: app/menus.c:606 msgid "/Stack/Layer to Bottom" msgstr "/╫╨ец/цжгоцЧю╦╥н" -#: app/menus.c:664 +#: app/menus.c:609 msgid "/Duplicate Layer" msgstr "/╟ХцЧ ╨╧а╕" -#: app/menus.c:666 +#: app/menus.c:611 msgid "/Anchor Layer" msgstr "/╟ХцЧ ╟Ма╓" -#: app/menus.c:668 +#: app/menus.c:613 msgid "/Delete Layer" msgstr "/╟ХцЧ ╩Ха╕" -#: app/menus.c:673 +#: app/menus.c:618 msgid "/Layer Boundary Size..." msgstr "/╟ХцЧ ╟Ф╟Х е╘╠Б..." -#: app/menus.c:675 +#: app/menus.c:620 #, fuzzy msgid "/Layer to Imagesize" msgstr "/╟ХцЧ/гц╥║ф╟ юл╧лаЖ" -#: app/menus.c:677 +#: app/menus.c:622 msgid "/Scale Layer..." msgstr "/╟ХцЧ ╫╨диюо..." -#: app/menus.c:682 +#: app/menus.c:627 msgid "/Merge Visible Layers..." msgstr "/╨╦юл╢б ╟ХцЧ ╦саЖ..." -#: app/menus.c:684 +#: app/menus.c:629 msgid "/Merge Down" msgstr "/╦саЖ ╢ы©Н" -#: app/menus.c:686 +#: app/menus.c:631 msgid "/Flatten Image" msgstr "/гц╥║ф╟ юл╧лаЖ" -#: app/menus.c:691 +#: app/menus.c:636 msgid "/Add Layer Mask..." msgstr "/╟ХцЧ ╦╤╫╨е╘ цъ╟║..." -#: app/menus.c:693 +#: app/menus.c:638 #, fuzzy msgid "/Apply Layer Mask" msgstr "/╟ХцЧ ╦╤╫╨е╘ юШ©К..." -#: app/menus.c:695 +#: app/menus.c:640 #, fuzzy msgid "/Delete Layer Mask" msgstr "/╟ХцЧ ╩Ха╕" -#: app/menus.c:697 +#: app/menus.c:642 msgid "/Mask to Selection" msgstr "/╪©╥╨╪г ╦╤╫╨е╘" -#: app/menus.c:702 +#: app/menus.c:647 msgid "/Add Alpha Channel" msgstr "/╬кфд ц╓Ён цъ╟║" -#: app/menus.c:704 +#: app/menus.c:649 msgid "/Alpha to Selection" msgstr "/╪©╥╨╪г ╬кфд" -#: app/menus.c:709 +#: app/menus.c:654 #, fuzzy msgid "/Edit Layer Attributes..." msgstr "╟ХцЧ ╪с╪╨ фМаЩ" -#: app/menus.c:720 +#: app/menus.c:665 msgid "/New Channel..." msgstr "/╩У╥н©Н ц╓Ён..." -#: app/menus.c:722 +#: app/menus.c:667 msgid "/Raise Channel" msgstr "/ц╓Ён ©ц╦╝╠Б" -#: app/menus.c:724 +#: app/menus.c:669 msgid "/Lower Channel" msgstr "/ц╓Ён Ё╩╦╝╠Б" -#: app/menus.c:726 +#: app/menus.c:671 msgid "/Duplicate Channel" msgstr "/ц╓Ён ╨╧а╕" -#: app/menus.c:731 +#: app/menus.c:676 msgid "/Channel to Selection" msgstr "/╪©╥╨╪гю╩ ю╖гя ц╓Ён" -#: app/menus.c:733 +#: app/menus.c:678 msgid "/Add to Selection" msgstr "/╪©╥╨╪г©║ цъ╟║" -#: app/menus.c:735 +#: app/menus.c:680 #, fuzzy msgid "/Subtract from Selection" msgstr "/╪©╥╨╪г©║╪╜ ╩╘╠Б" -#: app/menus.c:737 +#: app/menus.c:682 #, fuzzy msgid "/Intersect with Selection" msgstr "/╪©╥╨╪г ╠ЁбВ" -#: app/menus.c:742 +#: app/menus.c:687 msgid "/Delete Channel" msgstr "/ц╓Ён ╩Ха╕" -#: app/menus.c:747 +#: app/menus.c:692 #, fuzzy msgid "/Edit Channel Attributes..." msgstr "ц╓Ён ╪с╪╨ фМаЩ" -#: app/menus.c:758 +#: app/menus.c:703 msgid "/New Path" msgstr "/╩У ╟Ф╥н" -#: app/menus.c:760 +#: app/menus.c:705 msgid "/Duplicate Path" msgstr "/╟Ф╥н ╨╧а╕" -#: app/menus.c:762 +#: app/menus.c:707 msgid "/Path to Selection" msgstr "/╟Ф╥н╦╕ ╪©╥╨╪гю╦╥н" -#: app/menus.c:764 +#: app/menus.c:709 msgid "/Selection to Path" msgstr "/╟Ф╥н╦╕ ю╖гя ╪©╥╨╪г" -#: app/menus.c:766 +#: app/menus.c:711 msgid "/Stroke Path" msgstr "/гя╧Ь╠ъ╠Б ╟Ф╥н" -#: app/menus.c:768 +#: app/menus.c:713 msgid "/Delete Path" msgstr "/╟Ф╥н ╩Ха╕" -#: app/menus.c:773 +#: app/menus.c:718 msgid "/Copy Path" msgstr "/╟Ф╥н ╨╧╩Г" -#: app/menus.c:775 +#: app/menus.c:720 msgid "/Paste Path" msgstr "/╟Ф╥н ╨ыюл╠Б" -#: app/menus.c:777 +#: app/menus.c:722 msgid "/Import Path..." msgstr "/╟Ф╥н ╟║а╝©ю╠Б..." -#: app/menus.c:779 +#: app/menus.c:724 msgid "/Export Path..." msgstr "/╟Ф╥н юЭго╠Б..." -#: app/menus.c:784 +#: app/menus.c:729 #, fuzzy msgid "/Edit Path Attributes..." msgstr "╟ХцЧ ╪с╪╨ фМаЩ" -#: app/menus.c:1310 +#: app/menus.c:1260 #, c-format msgid "Error opening file: %s\n" msgstr "фдюо ©╜╠Б ©║╥╞: %s\n" @@ -4263,7 +4287,7 @@ msgstr " msgid "Autoload during startup" msgstr "╫цюшгр ╤╖ юз╣©ю╦╥н юШюГ" -#: app/move.c:456 +#: app/move.c:458 #, fuzzy msgid "Move Tool" msgstr "╣╣╠╦ ©и╪г юл╣©" @@ -4278,7 +4302,7 @@ msgstr "ц╒ msgid "Navigation: No Image" msgstr "" -#: app/paint_core.c:717 +#: app/paint_core.c:735 msgid "No brushes available for use with this tool." msgstr "юл ╣╣╠╦ю╩ ╩Г©Кго╠Б ю╖гь ╩Г©К╟║╢игя ╨Й╥╞╫╛ ╬Ью╫." @@ -4717,485 +4741,479 @@ msgstr "" msgid "You will need to restart GIMP for these changes to take effect." msgstr "╢Г╫ею╨ юл х©╟З╟║ ╟║гьаЖ╠Б ю╖гь GIMP╦╕ юГ ╫ггЮгр гй©Д╟║ юж╫ю╢о╢ы." -#: app/preferences_dialog.c:1459 +#: app/preferences_dialog.c:1002 +#, c-format +msgid "The default comments is limited to %d characters." +msgstr "" + +#: app/preferences_dialog.c:1424 msgid "Preferences" msgstr "╪с╪╨..." #. The categories tree -#: app/preferences_dialog.c:1481 +#: app/preferences_dialog.c:1446 msgid "Categories" msgstr "╧Эаж" -#: app/preferences_dialog.c:1509 app/preferences_dialog.c:1511 +#: app/preferences_dialog.c:1474 app/preferences_dialog.c:1476 msgid "New File" msgstr "╩У фдюо" -#: app/preferences_dialog.c:1522 +#: app/preferences_dialog.c:1487 msgid "Default Image Size and Unit" msgstr "╠Б╨╩ юл╧лаЖ е╘╠Б©м ╢эю╖" -#: app/preferences_dialog.c:1536 +#: app/preferences_dialog.c:1501 msgid "Width" msgstr "Ёпюл" -#: app/preferences_dialog.c:1538 +#: app/preferences_dialog.c:1503 msgid "Height" msgstr "ЁТюл" -#: app/preferences_dialog.c:1568 +#: app/preferences_dialog.c:1533 msgid "Default Image Resolution and Resolution Unit" msgstr "╠Б╨╩ юл╧лаЖ гь╩С╣╣©м гь╩С╣╣ ╢эю╖" -#: app/preferences_dialog.c:1595 app/preferences_dialog.c:2359 +#: app/preferences_dialog.c:1560 app/preferences_dialog.c:2288 msgid "dpi" msgstr "dpi" -#: app/preferences_dialog.c:1642 +#: app/preferences_dialog.c:1607 msgid "Default Image Type:" msgstr "╠Б╨╩ юл╧лаЖ ю╞гЭ:" -#: app/preferences_dialog.c:1678 app/preferences_dialog.c:2166 -msgid "Bytes" -msgstr "╧ыюлф╝" - -#: app/preferences_dialog.c:1679 app/preferences_dialog.c:2167 -msgid "KiloBytes" -msgstr "еЁ╥н╧ыюлф╝" - -#: app/preferences_dialog.c:1680 app/preferences_dialog.c:2168 -msgid "MegaBytes" -msgstr "╦ч╟║╧ыюлф╝" - -#: app/preferences_dialog.c:1686 +#: app/preferences_dialog.c:1618 msgid "Maximum Image Size:" msgstr "цж╢К юл╧лаЖ е╘╠Б:" -#: app/preferences_dialog.c:1692 app/preferences_dialog.c:1694 +#: app/preferences_dialog.c:1623 app/preferences_dialog.c:1625 +#, fuzzy +msgid "Default Comment" +msgstr "цй╠Бх╜" + +#: app/preferences_dialog.c:1633 +msgid "Comment Used for New Images" +msgstr "" + +#: app/preferences_dialog.c:1653 app/preferences_dialog.c:1655 msgid "Display" msgstr "╣П╫╨гц╥╧юл" -#: app/preferences_dialog.c:1702 +#: app/preferences_dialog.c:1663 msgid "Transparency" msgstr "еУ╦М" -#: app/preferences_dialog.c:1721 +#: app/preferences_dialog.c:1682 msgid "Light Checks" msgstr "╧Ю╠Б ╟к╩Г" -#: app/preferences_dialog.c:1722 +#: app/preferences_dialog.c:1683 msgid "Mid-Tone Checks" msgstr "аъ╟ё-еФ(Mid-Ton) ╟к╩Г" -#: app/preferences_dialog.c:1723 +#: app/preferences_dialog.c:1684 msgid "Dark Checks" msgstr "╬Н╣н©Н ╩Ж ╟к╩Г" -#: app/preferences_dialog.c:1724 +#: app/preferences_dialog.c:1685 msgid "White Only" msgstr "хР╩Ж╦╦" -#: app/preferences_dialog.c:1725 +#: app/preferences_dialog.c:1686 msgid "Gray Only" msgstr "х╦╩Ж╦╦" -#: app/preferences_dialog.c:1726 +#: app/preferences_dialog.c:1687 msgid "Black Only" msgstr "хФ╩Ж╦╦" -#: app/preferences_dialog.c:1730 +#: app/preferences_dialog.c:1691 msgid "Transparency Type:" msgstr "еУ╦М а╬╥Ы:" -#: app/preferences_dialog.c:1737 app/preferences_dialog.c:1810 -#: app/preferences_dialog.c:1824 +#: app/preferences_dialog.c:1698 app/preferences_dialog.c:1771 +#: app/preferences_dialog.c:1785 msgid "Small" msgstr "юш╟т" -#: app/preferences_dialog.c:1738 app/preferences_dialog.c:1811 -#: app/preferences_dialog.c:1825 +#: app/preferences_dialog.c:1699 app/preferences_dialog.c:1772 +#: app/preferences_dialog.c:1786 msgid "Medium" msgstr "аъ╟ё" -#: app/preferences_dialog.c:1739 app/preferences_dialog.c:1812 -#: app/preferences_dialog.c:1826 +#: app/preferences_dialog.c:1700 app/preferences_dialog.c:1773 +#: app/preferences_dialog.c:1787 msgid "Large" msgstr "е╘╟т" -#: app/preferences_dialog.c:1743 +#: app/preferences_dialog.c:1704 msgid "Check Size:" msgstr "╟к╩Г е╘╠Б:" -#: app/preferences_dialog.c:1746 +#: app/preferences_dialog.c:1707 msgid "8-Bit Displays" msgstr "8╨Яф╝ ╣П╫╨гц╥╧юл" -#: app/preferences_dialog.c:1751 +#: app/preferences_dialog.c:1712 msgid "Install Colormap" msgstr "дц╥╞╦й ╪Ёд║" -#: app/preferences_dialog.c:1760 +#: app/preferences_dialog.c:1721 msgid "Colormap Cycling" msgstr "дц╥╞╦й ╩Гюле╛╦╣" -#: app/preferences_dialog.c:1809 +#: app/preferences_dialog.c:1770 msgid "Tiny" msgstr "юш╟т" -#: app/preferences_dialog.c:1813 +#: app/preferences_dialog.c:1774 msgid "Huge" msgstr "е╘╟т" -#: app/preferences_dialog.c:1817 +#: app/preferences_dialog.c:1778 msgid "Preview Size:" msgstr "╧л╦╝╨╦╠Б е╘╠Б:" -#: app/preferences_dialog.c:1830 +#: app/preferences_dialog.c:1791 msgid "Nav Preview Size:" msgstr "Ёв╨Я╟тюлем ╧л╦╝╨╦╠Б е╘╠Б:" -#: app/preferences_dialog.c:1840 +#: app/preferences_dialog.c:1801 msgid "Recent Documents List Size:" msgstr "цж╠ы ╧╝╪╜ ╦Я╥о е╘╠Б:" #. Indicators -#: app/preferences_dialog.c:1844 +#: app/preferences_dialog.c:1805 #, fuzzy msgid "Toolbox" msgstr "/╣╣╠╦/╣╣╠╦╩Сюз" -#: app/preferences_dialog.c:1847 +#: app/preferences_dialog.c:1808 #, fuzzy msgid "Display Brush, Pattern and Gradient Indicators" msgstr "еЬ╧ы©║╪╜ ╨Й╥╞╫╛©м фпео ╫д╨╟юз ╨╦©╘аж╠Б" -#: app/preferences_dialog.c:1856 +#: app/preferences_dialog.c:1817 msgid "Dialog Behaviour" msgstr "╢Кх╜╩Сюз ╣©юш" -#: app/preferences_dialog.c:1858 +#: app/preferences_dialog.c:1819 msgid "Navigation Window per Display" msgstr "" -#: app/preferences_dialog.c:1867 +#: app/preferences_dialog.c:1828 msgid "Info Window Follows Mouse" msgstr "" -#: app/preferences_dialog.c:1878 app/preferences_dialog.c:1880 +#: app/preferences_dialog.c:1839 app/preferences_dialog.c:1841 msgid "Help System" msgstr "╣╣©Р╦╩ ╫ц╫╨еш" -#: app/preferences_dialog.c:1890 +#: app/preferences_dialog.c:1851 msgid "Show Tool Tips" msgstr "╣╣╠╦фа ╨╦╠Б" -#: app/preferences_dialog.c:1900 +#: app/preferences_dialog.c:1861 msgid "Context Sensitive Help with \"F1\"" msgstr "" -#: app/preferences_dialog.c:1909 +#: app/preferences_dialog.c:1870 #, fuzzy msgid "Help Browser" msgstr "/х╝юЕ/╦П╣Б ╨Й╤С©ЛюЗ..." -#: app/preferences_dialog.c:1921 +#: app/preferences_dialog.c:1882 #, fuzzy msgid "Internal" msgstr "╟ё╟щ:" -#: app/preferences_dialog.c:1922 +#: app/preferences_dialog.c:1883 msgid "Netscape" msgstr "" -#: app/preferences_dialog.c:1926 +#: app/preferences_dialog.c:1887 msgid "Help Browser to Use:" msgstr "" -#: app/preferences_dialog.c:1931 app/preferences_dialog.c:1933 +#: app/preferences_dialog.c:1892 app/preferences_dialog.c:1894 msgid "Image Windows" msgstr "юл╧лаЖ ц╒" -#: app/preferences_dialog.c:1941 +#: app/preferences_dialog.c:1902 msgid "Appearance" msgstr "©э╬Г" -#: app/preferences_dialog.c:1943 +#: app/preferences_dialog.c:1904 msgid "Use \"Dot for Dot\" by default" msgstr "" -#: app/preferences_dialog.c:1952 +#: app/preferences_dialog.c:1913 msgid "Resize Window on Zoom" msgstr "х╝╢К╫ц ц╒ е╘╠Б а╤а╓" -#: app/preferences_dialog.c:1961 +#: app/preferences_dialog.c:1922 msgid "Show Rulers" msgstr "╢╚╠щюз ╨╦╠Б" -#: app/preferences_dialog.c:1970 +#: app/preferences_dialog.c:1931 msgid "Show Statusbar" msgstr "╩Себ╧ы ╨╦╠Б" -#: app/preferences_dialog.c:1994 +#: app/preferences_dialog.c:1955 msgid "Marching Ants Speed:" msgstr "аЬюЭ ╪с╣╣:" #. Set the currently used string as "Custom" -#: app/preferences_dialog.c:2002 +#: app/preferences_dialog.c:1963 msgid "Custom" msgstr "╨╦еК" #. set some commonly used format strings -#: app/preferences_dialog.c:2008 +#: app/preferences_dialog.c:1969 msgid "Standard" msgstr "г╔аь" -#: app/preferences_dialog.c:2013 +#: app/preferences_dialog.c:1974 msgid "Show zoom percentage" msgstr "х╝╢К фш╪╬ф╝ ╨╦╠Б" -#: app/preferences_dialog.c:2018 +#: app/preferences_dialog.c:1979 msgid "Show zoom ratio" msgstr "х╝╢К ╨Яю╡ ╨╦╠Б" -#: app/preferences_dialog.c:2023 +#: app/preferences_dialog.c:1984 msgid "Show reversed zoom ratio" msgstr "©╙ х╝╢Кю╡ ╨╦╠Б" -#: app/preferences_dialog.c:2034 +#: app/preferences_dialog.c:1995 msgid "Image Title Format:" msgstr "юл╧лаЖ а╕╦Я гЭ╫д:" #. End of the title format string -#: app/preferences_dialog.c:2038 +#: app/preferences_dialog.c:1999 msgid "Pointer Movement Feedback" msgstr "фВюнем юл╣© ╧щюю" -#: app/preferences_dialog.c:2041 +#: app/preferences_dialog.c:2002 #, fuzzy msgid "Perfect-but-Slow Pointer Tracking" msgstr "©о╨╝гоЁ╙ ╢ю╦╟ фВюнем цъюШ" -#: app/preferences_dialog.c:2050 +#: app/preferences_dialog.c:2011 msgid "Disable Cursor Updating" msgstr "д©╪╜ ╟╩╫е аъ╢э" -#: app/preferences_dialog.c:2062 app/preferences_dialog.c:2064 +#: app/preferences_dialog.c:2023 app/preferences_dialog.c:2025 #: app/tools.c:1080 msgid "Tool Options" msgstr "╣╣╠╦ ©и╪г" -#: app/preferences_dialog.c:2072 +#: app/preferences_dialog.c:2033 msgid "Paint Options" msgstr "фДюнф╝ ©и╪г" -#: app/preferences_dialog.c:2075 +#: app/preferences_dialog.c:2036 msgid "Use Global Paint Options" msgstr "юЭ©╙ фДюнф╝ ©и╪г" -#: app/preferences_dialog.c:2090 app/preferences_dialog.c:2092 +#: app/preferences_dialog.c:2051 app/preferences_dialog.c:2053 msgid "Environment" msgstr "х╞╟Ф" -#: app/preferences_dialog.c:2100 +#: app/preferences_dialog.c:2061 msgid "Resource Consumption" msgstr "юз©Ь ╪р╨Я╥╝" -#: app/preferences_dialog.c:2102 +#: app/preferences_dialog.c:2063 msgid "Conservative Memory Usage" msgstr "╨╦а╦ ╦ч╦П╦╝ ╩Г©К" -#: app/preferences_dialog.c:2130 +#: app/preferences_dialog.c:2091 msgid "Levels of Undo:" msgstr "фМаЩ цК╪р ╥╧╨╖:" -#: app/preferences_dialog.c:2174 -msgid "Tile Cache Size:" -msgstr "е╦юо дЁ╫╛ е╘╠Б:" - -#: app/preferences_dialog.c:2185 +#: app/preferences_dialog.c:2113 msgid "Number of Processors to Use:" msgstr "╩Г©Кгр га╥н╪╪╪╜ ╟╧╪Ж:" -#: app/preferences_dialog.c:2189 app/transform_tool.c:215 +#: app/preferences_dialog.c:2117 app/transform_tool.c:215 msgid "Scaling" msgstr "╫╨диюо╦╣" -#: app/preferences_dialog.c:2207 +#: app/preferences_dialog.c:2135 msgid "Nearest Neighbor (Fast)" msgstr "╟║юЕ ╟║╠Нюл юна╒гя ╟м (╨Э╦╖)" -#: app/preferences_dialog.c:2211 +#: app/preferences_dialog.c:2139 msgid "Cubic (Slow)" msgstr "3бВ ╟Н╪╠ (╢ю╦╡)" -#: app/preferences_dialog.c:2216 +#: app/preferences_dialog.c:2144 msgid "Interpolation Type:" msgstr "" -#: app/preferences_dialog.c:2219 +#: app/preferences_dialog.c:2147 msgid "File Saving" msgstr "фдюо юЗюЕ" -#: app/preferences_dialog.c:2236 app/preferences_dialog.c:2249 +#: app/preferences_dialog.c:2164 app/preferences_dialog.c:2177 msgid "Always" msgstr "гв╩С" -#: app/preferences_dialog.c:2237 +#: app/preferences_dialog.c:2165 msgid "Never" msgstr "╬йгт" -#: app/preferences_dialog.c:2241 +#: app/preferences_dialog.c:2169 msgid "Try to Write a Thumbnail File:" msgstr "╫ФЁвюо(Thumnail) фдюо ╬╡╠Б ╫ц╣╣:" -#: app/preferences_dialog.c:2248 +#: app/preferences_dialog.c:2176 #, fuzzy msgid "Only when Modified" msgstr "╪Жа╓╣г╬Зю╩ ╟Ф©Л©║╦╦" -#: app/preferences_dialog.c:2253 +#: app/preferences_dialog.c:2181 #, fuzzy msgid "\"File > Save\" Saves the Image:" msgstr "'фдюо > юЗюЕ'юл юл╧лаЖ юЗюЕ:" -#: app/preferences_dialog.c:2259 +#: app/preferences_dialog.c:2187 msgid "Session Management" msgstr "╪╪╪г ╟Э╦╝" -#: app/preferences_dialog.c:2261 +#: app/preferences_dialog.c:2189 msgid "Session" msgstr "╪╪╪г" -#: app/preferences_dialog.c:2269 +#: app/preferences_dialog.c:2197 msgid "Window Positions" msgstr "ц╒ ю╖д║" -#: app/preferences_dialog.c:2271 +#: app/preferences_dialog.c:2199 msgid "Save Window Positions on Exit" msgstr "а╬╥А╫ц ц╒ ю╖д║ юЗюЕ" -#: app/preferences_dialog.c:2285 +#: app/preferences_dialog.c:2213 #, fuzzy msgid "Clear Saved Window Positions Now" msgstr "юЗюЕ╣х ц╒ ю╖д║ аЖ©Р" -#: app/preferences_dialog.c:2293 +#: app/preferences_dialog.c:2221 msgid "Always Try to Restore Session" msgstr "гв╩С ╪╪╪г ╨╧╠╦ ╫ц╣╣" -#: app/preferences_dialog.c:2302 +#: app/preferences_dialog.c:2230 msgid "Devices" msgstr "юЕд║" -#: app/preferences_dialog.c:2304 +#: app/preferences_dialog.c:2232 msgid "Save Device Status on Exit" msgstr "а╬╥А╫ц юЕд║ ╩Себ юЗюЕ" -#: app/preferences_dialog.c:2315 app/preferences_dialog.c:2317 +#: app/preferences_dialog.c:2243 app/preferences_dialog.c:2245 msgid "Monitor" msgstr "╦П╢оем" -#: app/preferences_dialog.c:2325 +#: app/preferences_dialog.c:2253 msgid "Get Monitor Resolution" msgstr "╦П╢оем гь╩С╣╣ ╬Р╠Б" -#: app/preferences_dialog.c:2333 +#: app/preferences_dialog.c:2261 #, c-format msgid "(Currently %d x %d dpi)" msgstr "(гЖюГ %d x %d dpi)" -#: app/preferences_dialog.c:2384 +#: app/preferences_dialog.c:2313 msgid "From X Server" msgstr "X ╪╜╧Ж╥н ╨нем" -#: app/preferences_dialog.c:2399 +#: app/preferences_dialog.c:2328 msgid "Manually:" msgstr "╪Ж╣©ю╦╥н:" -#: app/preferences_dialog.c:2412 app/preferences_dialog.c:2414 +#: app/preferences_dialog.c:2341 app/preferences_dialog.c:2343 msgid "Directories" msgstr "╣П╥╨еД╦╝" -#: app/preferences_dialog.c:2431 +#: app/preferences_dialog.c:2360 msgid "Temp Dir:" msgstr "юс╫ц ╣П╥╨еД╦╝:" -#: app/preferences_dialog.c:2431 +#: app/preferences_dialog.c:2360 msgid "Select Temp Dir" msgstr "юс╫ц ╣П╥╨еД╦╝ ╪╠ец" -#: app/preferences_dialog.c:2432 +#: app/preferences_dialog.c:2361 msgid "Swap Dir:" msgstr "╫╨©р ╣П╥╨еД╦╝:" -#: app/preferences_dialog.c:2432 -msgid "Select Swap Dir" -msgstr "╫╨©р ╣П╥╨еД╦╝ ╪╠ец" - -#: app/preferences_dialog.c:2468 +#: app/preferences_dialog.c:2397 msgid "Brushes Directories" msgstr "╨Й╥╞╫╛ ╣П╥╨еД╦╝" -#: app/preferences_dialog.c:2470 +#: app/preferences_dialog.c:2399 msgid "Select Brushes Dir" msgstr "╨Й╥╞╫╛ ╣П╥╨еД╦╝ ╪╠ец" -#: app/preferences_dialog.c:2472 +#: app/preferences_dialog.c:2401 msgid "Generated Brushes" msgstr "╩Щ╪╨╣х ╨Й╥╞╫╛" -#: app/preferences_dialog.c:2472 +#: app/preferences_dialog.c:2401 msgid "Generated Brushes Directories" msgstr "╩Щ╪╨╣х ╨Й╥╞╫╛ ╣П╥╨еД╦╝" -#: app/preferences_dialog.c:2474 +#: app/preferences_dialog.c:2403 msgid "Select Generated Brushes Dir" msgstr "╩Щ╪╨╣х ╨Й╥╞╫╛ ╣П╥╨еД╦╝ ╪╠ецго╠Б" -#: app/preferences_dialog.c:2476 +#: app/preferences_dialog.c:2405 msgid "Patterns Directories" msgstr "фпео ╣П╥╨еД╦╝" -#: app/preferences_dialog.c:2478 +#: app/preferences_dialog.c:2407 msgid "Select Patterns Dir" msgstr "фпео ╣П╥╨еД╦╝ ╪╠ец" -#: app/preferences_dialog.c:2480 +#: app/preferences_dialog.c:2409 msgid "Palettes Directories" msgstr "фх╥© ╣П╥╨еД╦╝" -#: app/preferences_dialog.c:2482 +#: app/preferences_dialog.c:2411 msgid "Select Palettes Dir" msgstr "фх╥© ╣П╥╨еД╦╝ ╪╠ец" -#: app/preferences_dialog.c:2484 +#: app/preferences_dialog.c:2413 msgid "Gradients Directories" msgstr "╩Ж╟╗╨╞х╜╣╣ ╣П╥╨еД╦╝" -#: app/preferences_dialog.c:2486 +#: app/preferences_dialog.c:2415 msgid "Select Gradients Dir" msgstr "╩Ж╟╗╨╞х╜╣╣ ╣П╥╨еД╦╝ ╪╠ец" -#: app/preferences_dialog.c:2488 +#: app/preferences_dialog.c:2417 msgid "Plug-Ins" msgstr "гц╥╞╠вюн" -#: app/preferences_dialog.c:2488 +#: app/preferences_dialog.c:2417 msgid "Plug-Ins Directories" msgstr "гц╥╞╠вюн ╣П╥╨еД╦╝" -#: app/preferences_dialog.c:2490 +#: app/preferences_dialog.c:2419 msgid "Select Plug-Ins Dir" msgstr "гц╥╞╠вюн ╣П╥╨еД╦╝ ╪╠ец" -#: app/preferences_dialog.c:2492 +#: app/preferences_dialog.c:2421 msgid "Modules" msgstr "╦П╣Б" -#: app/preferences_dialog.c:2492 +#: app/preferences_dialog.c:2421 msgid "Modules Directories" msgstr "╦П╣Б ╣П╥╨еД╦╝" -#: app/preferences_dialog.c:2494 +#: app/preferences_dialog.c:2423 msgid "Select Modules Dir" msgstr "╦П╣Б ╣П╥╨еД╦╝ ╪╠ец" @@ -5267,66 +5285,66 @@ msgstr " msgid "Selection: " msgstr "╪©╥╨╪г: " -#: app/resize.c:154 +#: app/resize.c:156 msgid "Scale Layer" msgstr "╟ХцЧ ╫╨диюо" -#: app/resize.c:156 app/resize.c:181 app/tool_options.c:774 +#: app/resize.c:158 app/resize.c:183 app/tool_options.c:774 msgid "Size" msgstr "е╘╠Б" -#: app/resize.c:160 +#: app/resize.c:162 msgid "Scale Image" msgstr "юл╧лаЖ ╫╨диюо" -#: app/resize.c:162 +#: app/resize.c:164 msgid "Pixel Dimensions" msgstr "гх╪© ╧Х©╜" -#: app/resize.c:172 +#: app/resize.c:174 msgid "Set Layer Boundary Size" msgstr "╟ХцЧ ╟Ф╟Х е╘╠Б ╪Ёа╓" -#: app/resize.c:177 +#: app/resize.c:179 msgid "Set Canvas Size" msgstr "д╣╧Ж╫╨ е╘╠Б ╪Ёа╓" #. the original width & height labels -#: app/resize.c:234 app/scale_tool.c:77 +#: app/resize.c:236 app/scale_tool.c:77 msgid "Original Width:" msgstr "©Ь╥║ Ёпюл:" #. the new size labels -#: app/resize.c:259 app/resize.c:504 +#: app/resize.c:261 app/resize.c:506 msgid "New Width:" msgstr "╩У Ёпюл:" #. the scale ratio labels -#: app/resize.c:324 +#: app/resize.c:326 msgid "Ratio X:" msgstr "╨Яю╡ X:" #. the x and y offset labels -#: app/resize.c:409 +#: app/resize.c:411 msgid "X:" msgstr "X:" -#: app/resize.c:490 +#: app/resize.c:492 msgid "Print Size & Display Unit" msgstr "га╦╟ф╝ е╘╠Б©м ╣П╫╨гц╥╧юл ╢эю╖" -#: app/resize.c:1252 +#: app/resize.c:1254 msgid "Scale Error: Both width and height must be greater than zero." msgstr "╨Яю╡ ╧ы╡ы╠Б ©║╥╞: Ёпюл©м ЁТюл╢б 0╨╦╢ы д©╬ъ гу╢о╢ы." -#: app/resize.c:1334 +#: app/resize.c:1336 msgid "" "The chosen image size will shrink\n" "some layers completely away.\n" "Is this what you want?" msgstr "" -#: app/resize.c:1338 +#: app/resize.c:1340 msgid "Layer Too Small" msgstr "" @@ -5375,7 +5393,7 @@ msgstr " msgid "Text Tool" msgstr "еь╫╨ф╝ ╣╣╠╦" -#: app/text_tool.c:162 app/tool_options.c:233 +#: app/text_tool.c:162 app/tool_options.c:232 msgid "Antialiasing" msgstr "╬ьф╪╬ы╦╝╬Н╫л еь╫╨ф╝" @@ -5454,110 +5472,110 @@ msgstr "" "GIMP ╣╔юлем ╣П╥╨еД╦╝©║ gimp_tips.ko.txtфдюоюл\n" "юж╬Н╬ъ╦╦ гу╢о╢ы. ╪Ёд║╟За╓©║╪╜ юъ ╩ЛфЛ ╨╦╪╪©Д." -#: app/tool_options.c:122 +#: app/tool_options.c:121 msgid "This tool has no options." msgstr "юл ╣╣╠╦╢б ©и╪гюл ╬Ь╫ю╢о╢ы." -#: app/tool_options.c:146 +#: app/tool_options.c:145 #, fuzzy msgid "Rectangular Selection" msgstr "аВ╩Г╟╒гЭ ╪©╥╨╪г ©и╪г" -#: app/tool_options.c:148 +#: app/tool_options.c:147 #, fuzzy msgid "Elliptical Selection" msgstr "е╦©Ь ╪©╥╨╪г ©и╪г" -#: app/tool_options.c:150 +#: app/tool_options.c:149 #, fuzzy msgid "Free-Hand Selection" msgstr "╪ую╦╥н ╠в╦╟ ╪©╥╨╪г ©и╪г" -#: app/tool_options.c:152 +#: app/tool_options.c:151 #, fuzzy msgid "Fuzzy Selection" msgstr "фшаЖ ╪╠ец" -#: app/tool_options.c:154 +#: app/tool_options.c:153 #, fuzzy msgid "Bezier Selection" msgstr "╨ёаЖ╬Н ╪╠ец" -#: app/tool_options.c:156 app/tools.c:178 +#: app/tool_options.c:155 app/tools.c:178 msgid "Intelligent Scissors" msgstr "аЖюШюн ╟║ю╖" -#: app/tool_options.c:158 +#: app/tool_options.c:157 #, fuzzy msgid "By-Color Selection" msgstr "╩Ж╩С ╪╠ец©║ юггь" -#: app/tool_options.c:189 +#: app/tool_options.c:188 msgid "Feather" msgstr "╩Себ" -#: app/tool_options.c:297 +#: app/tool_options.c:296 #, fuzzy msgid "Fixed Size / Aspect Ratio" msgstr "╟Ма╓╣х е╘╠Б / ©╣╩С╨Я" -#: app/tool_options.c:363 +#: app/tool_options.c:362 msgid "Unit:" msgstr "╢эю╖:" -#: app/tool_options.c:448 app/tools.c:376 +#: app/tool_options.c:447 app/tools.c:376 msgid "Bucket Fill" msgstr "╧Же╤ ц╓©Л╠Б" -#: app/tool_options.c:450 +#: app/tool_options.c:449 #, fuzzy msgid "Blend Tool" msgstr "х╔гу: " -#: app/tool_options.c:452 app/tools.c:412 +#: app/tool_options.c:451 app/tools.c:412 msgid "Pencil" msgstr "©╛гй" -#: app/tool_options.c:454 app/tools.c:430 +#: app/tool_options.c:453 app/tools.c:430 msgid "Paintbrush" msgstr "фДюнф╝╨Й╥╞╫╛" -#: app/tool_options.c:456 app/tools.c:448 +#: app/tool_options.c:455 app/tools.c:448 msgid "Eraser" msgstr "аЖ©Л╟Ё" -#: app/tool_options.c:458 app/tools.c:466 +#: app/tool_options.c:457 app/tools.c:466 msgid "Airbrush" msgstr "©║╬Н╨Й╥╞╫╛" -#: app/tool_options.c:460 +#: app/tool_options.c:459 #, fuzzy msgid "Clone Tool" msgstr "╠Б╟ХюШ ╣╣╠╦ ©и╪г" -#: app/tool_options.c:462 +#: app/tool_options.c:461 #, fuzzy msgid "Convolver" msgstr "╦╩╠Б(Consolve)" -#: app/tool_options.c:464 +#: app/tool_options.c:463 msgid "Ink Tool" msgstr "" -#: app/tool_options.c:466 app/tools.c:538 app/tools.c:544 +#: app/tool_options.c:465 app/tools.c:538 app/tools.c:544 msgid "Dodge or Burn" msgstr "ггго╠Б х╓ю╨ еб©Л╠Б" -#: app/tool_options.c:468 +#: app/tool_options.c:467 #, fuzzy msgid "Smudge Tool" msgstr "╬С╥Х(smudge)" -#: app/tool_options.c:583 +#: app/tool_options.c:582 msgid "Incremental" msgstr "аУ╟║" -#: app/tool_options.c:689 +#: app/tool_options.c:688 #, fuzzy msgid "Pressure Sensitivity" msgstr "╧Юю╫ ю╞аЖ" @@ -6268,6 +6286,117 @@ msgstr " msgid "Color History" msgstr "╩Ж╩С цъцБ" +#, fuzzy +#~ msgid "Custom from Editor" +#~ msgstr "фМаЩ╠Б©║ ╦бцГаЖ╟т" + +#~ msgid "" +#~ "The GIMP - GNU Image Manipulation Program\n" +#~ "\n" +#~ msgstr "" +#~ "The GIMP - ╠в╢╘(GNU) юл╧лаЖ(Image) а╤юш(Manipulation) га╥н╠в╥╔(Program)\n" +#~ "\n" + +#~ msgid "For a proper GIMP installation, a subdirectory called\n" +#~ msgstr "а╓х╝го╟т GIMP╦╕ ╪Ёд║го╠Б ю╖гь ╪╜╨Й ╣П╥╨еД╦╝©║ ╣И╬Н╟╛╫ю╢о╢ы.\n" + +#~ msgid "Install" +#~ msgstr "╪Ёд║" + +#~ msgid "Ignore" +#~ msgstr "╧╚╫ц" + +#~ msgid "Installation Log" +#~ msgstr "╪Ёд║ ╥н╠в" + +#~ msgid "" +#~ "\n" +#~ "Installation successful!\n" +#~ msgstr "" +#~ "\n" +#~ "╪Ёд║ ╪╨╟Ь!\n" + +#~ msgid "/File/Dialogs" +#~ msgstr "/фдюо/╢Кх╜╩Сюз" + +#~ msgid "/File" +#~ msgstr "/фдюо" + +#~ msgid "/Edit" +#~ msgstr "/фМаЩ" + +#~ msgid "/Edit/Buffer" +#~ msgstr "/фМаЩ/╧Жфш" + +#~ msgid "/Select" +#~ msgstr "/╪╠ец" + +#~ msgid "/View" +#~ msgstr "/╨╦╠Б" + +#~ msgid "/View/Zoom" +#~ msgstr "/╨╦╠Б/х╝╢К" + +#~ msgid "/Image" +#~ msgstr "/юл╧лаЖ" + +#~ msgid "/Image/Mode" +#~ msgstr "/юл╧лаЖ/╦П╣Е" + +#~ msgid "/Image/Colors" +#~ msgstr "/юл╧лаЖ/╩Ж" + +#~ msgid "/Image/Colors/Auto" +#~ msgstr "/юл╧лаЖ/╩Ж/юз╣©" + +#~ msgid "/Image/Alpha" +#~ msgstr "/юл╧лаЖ/╬кфд" + +#~ msgid "/Image/Transforms" +#~ msgstr "/юл╧лаЖ/╨╞х╞" + +#~ msgid "/Layers" +#~ msgstr "/╟ХцЧ" + +#~ msgid "/Layers/Stack" +#~ msgstr "/╟ХцЧ/╫╨ец" + +#~ msgid "/Tools" +#~ msgstr "/╣╣╠╦" + +#, fuzzy +#~ msgid "/Tools/Select Tools" +#~ msgstr "/╣╣╠╦/╩Г╟╒ ╪╠ец" + +#, fuzzy +#~ msgid "/Tools/Transform Tools" +#~ msgstr "/╣╣╠╦/╨╞х╞" + +#, fuzzy +#~ msgid "/Tools/Paint Tools" +#~ msgstr "/╣╣╠╦/фДюнф╝╨Й╥╞╫╛" + +#~ msgid "/Dialogs" +#~ msgstr "/╢Кх╜╩Сюз" + +#~ msgid "/Filters" +#~ msgstr "/гйем" + +#~ msgid "/Script-Fu" +#~ msgstr "/Script-Fu" + +#~ msgid "/Stack" +#~ msgstr "/╟ХцЧ/╫╨ец" + +#~ msgid "Bytes" +#~ msgstr "╧ыюлф╝" + +#~ msgid "KiloBytes" +#~ msgstr "еЁ╥н╧ыюлф╝" + +#~ msgid "MegaBytes" +#~ msgstr "╦ч╟║╧ыюлф╝" + #~ msgid "Fill Options" #~ msgstr "ц╓©Р ©и╪г" diff --git a/po/nl.po b/po/nl.po index 6f688438da..3c4ed0c879 100644 --- a/po/nl.po +++ b/po/nl.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: gimp 1.1.0\n" -"POT-Creation-Date: 2000-03-03 17:47-0800\n" +"POT-Creation-Date: 2000-03-14 23:09+0100\n" "PO-Revision-Date: 1998-12-30 03:50+0100\n" "Last-Translator: Wing Tung Leung \n" "Language-Team: Dutch \n" @@ -65,46 +65,46 @@ msgstr " u gebracht door" msgid "GIMP Startup" msgstr "Opstarten van Gimp" -#: app/app_procs.c:479 app/gimprc.c:432 +#: app/app_procs.c:479 app/gimprc.c:448 #, c-format msgid "parsing \"%s\"\n" msgstr "bezig met parsen van \"%s\"\n" #. initialize the xcf file format routines -#: app/app_procs.c:539 +#: app/app_procs.c:541 msgid "Looking for data files" msgstr "Bezig met zoeken naar data bestanden" -#: app/app_procs.c:539 +#: app/app_procs.c:541 #, fuzzy msgid "Parasites" msgstr "Plakken" #. initialize the global parasite table -#: app/app_procs.c:541 app/internal_procs.c:71 app/preferences_dialog.c:2468 +#: app/app_procs.c:543 app/internal_procs.c:71 app/preferences_dialog.c:2397 msgid "Brushes" msgstr "Penselen" #. initialize the list of gimp brushes -#: app/app_procs.c:543 app/internal_procs.c:143 app/preferences_dialog.c:2476 +#: app/app_procs.c:545 app/internal_procs.c:143 app/preferences_dialog.c:2405 msgid "Patterns" msgstr "Patronen" #. initialize the list of gimp patterns -#: app/app_procs.c:545 app/preferences_dialog.c:2480 +#: app/app_procs.c:547 app/preferences_dialog.c:2409 msgid "Palettes" msgstr "Paletten" #. initialize the list of gimp palettes -#: app/app_procs.c:547 app/internal_procs.c:113 app/preferences_dialog.c:2484 +#: app/app_procs.c:549 app/internal_procs.c:113 app/preferences_dialog.c:2413 msgid "Gradients" msgstr "Gradaties" -#: app/app_procs.c:735 +#: app/app_procs.c:737 msgid "Really Quit?" msgstr "Echt afsluiten?" -#: app/app_procs.c:739 +#: app/app_procs.c:741 #, fuzzy msgid "" "Some files unsaved.\n" @@ -112,21 +112,21 @@ msgid "" "Quit the GIMP?" msgstr "Sommige bestanden zijn niet bewaard. GIMP afsluiten?" -#: app/app_procs.c:740 app/install.c:272 app/install.c:430 +#: app/app_procs.c:742 msgid "Quit" msgstr "Afsluiten" -#: app/app_procs.c:740 app/brightness_contrast.c:218 app/channel_ops.c:93 +#: app/app_procs.c:742 app/brightness_contrast.c:218 app/channel_ops.c:93 #: app/channels_dialog.c:2463 app/channels_dialog.c:2637 #: app/color_balance.c:275 app/color_notebook.c:125 app/convert.c:506 #: app/curves.c:559 app/file_new_dialog.c:207 app/file_new_dialog.c:357 #: app/gdisplay_color_ui.c:129 app/gdisplay_ops.c:346 app/gimpprogress.c:112 -#: app/global_edit.c:739 app/gradient.c:1769 app/gradient.c:4839 -#: app/gradient.c:5400 app/hue_saturation.c:377 app/interface.c:984 -#: app/layers_dialog.c:3326 app/layers_dialog.c:3517 app/layers_dialog.c:3617 -#: app/layers_dialog.c:3889 app/levels.c:341 app/palette.c:1826 -#: app/posterize.c:201 app/preferences_dialog.c:1469 app/qmask.c:281 -#: app/resize.c:193 app/resize.c:1343 app/threshold.c:275 +#: app/global_edit.c:739 app/gradient.c:1769 app/gradient.c:4841 +#: app/gradient.c:5402 app/hue_saturation.c:377 app/install.c:532 +#: app/interface.c:984 app/layers_dialog.c:3326 app/layers_dialog.c:3517 +#: app/layers_dialog.c:3617 app/layers_dialog.c:3889 app/levels.c:341 +#: app/palette.c:1826 app/posterize.c:201 app/preferences_dialog.c:1434 +#: app/qmask.c:281 app/resize.c:195 app/resize.c:1345 app/threshold.c:275 #: modules/cdisplay_gamma.c:358 msgid "Cancel" msgstr "Annuleren" @@ -149,130 +149,130 @@ msgstr "" msgid "Paintbrush operation failed." msgstr "Mengopertatie mislukt." -#: app/blend.c:272 +#: app/blend.c:294 msgid "Offset:" msgstr "" -#: app/blend.c:283 +#: app/blend.c:305 #, fuzzy msgid "FG to BG (RGB)" msgstr "FG naar BG RGB" -#: app/blend.c:284 +#: app/blend.c:306 #, fuzzy msgid "FG to BG (HSV)" msgstr "FG naar BG HSV" -#: app/blend.c:285 +#: app/blend.c:307 msgid "FG to Transparent" msgstr "FG naar Transparant" -#: app/blend.c:286 +#: app/blend.c:308 #, fuzzy -msgid "Custom from Editor" -msgstr "Aangepast van editor" +msgid "Custom Gradient" +msgstr "Kopieer gradatie" -#: app/blend.c:290 +#: app/blend.c:312 msgid "Blend:" msgstr "Meng:" -#: app/blend.c:298 app/gradient.c:533 app/preferences_dialog.c:2209 +#: app/blend.c:320 app/gradient.c:533 app/preferences_dialog.c:2137 msgid "Linear" msgstr "Lineair" -#: app/blend.c:299 +#: app/blend.c:321 msgid "Bi-Linear" msgstr "Bi-Lineair" -#: app/blend.c:300 +#: app/blend.c:322 msgid "Radial" msgstr "Radiaal" -#: app/blend.c:301 +#: app/blend.c:323 msgid "Square" msgstr "Vierkant" -#: app/blend.c:302 +#: app/blend.c:324 msgid "Conical (symmetric)" msgstr "Conisch (symmetrisch)" -#: app/blend.c:303 +#: app/blend.c:325 msgid "Conical (asymmetric)" msgstr "Conisch (asymmetrisch)" -#: app/blend.c:304 +#: app/blend.c:326 msgid "Shapeburst (angular)" msgstr "" -#: app/blend.c:305 +#: app/blend.c:327 msgid "Shapeburst (spherical)" msgstr "" -#: app/blend.c:306 +#: app/blend.c:328 msgid "Shapeburst (dimpled)" msgstr "" -#: app/blend.c:307 +#: app/blend.c:329 #, fuzzy msgid "Spiral (clockwise)" msgstr "HSV (heu metwijzersmee)" -#: app/blend.c:308 +#: app/blend.c:330 #, fuzzy msgid "Spiral (anticlockwise)" msgstr "HSV (heu metwijzersmee)" -#: app/blend.c:312 +#: app/blend.c:334 msgid "Gradient:" msgstr "Gradaties:" -#: app/blend.c:320 app/preferences_dialog.c:1808 +#: app/blend.c:342 app/preferences_dialog.c:1769 msgid "None" msgstr "Geen" -#: app/blend.c:321 +#: app/blend.c:343 msgid "Sawtooth Wave" msgstr "" -#: app/blend.c:322 +#: app/blend.c:344 msgid "Triangular Wave" msgstr "" -#: app/blend.c:326 +#: app/blend.c:348 msgid "Repeat:" msgstr "Herhaal:" -#: app/blend.c:345 +#: app/blend.c:367 #, fuzzy msgid "Adaptive Supersampling" msgstr "Adaptieve oversampling" -#: app/blend.c:373 +#: app/blend.c:395 #, fuzzy msgid "Max Depth:" msgstr "Max diepte:" -#: app/blend.c:386 app/bucket_fill.c:127 app/fuzzy_select.c:657 +#: app/blend.c:408 app/bucket_fill.c:127 app/fuzzy_select.c:661 msgid "Threshold:" msgstr "" -#: app/blend.c:413 +#: app/blend.c:435 msgid "Blend: Invalid for indexed images." msgstr "Meng: Ongeldig voor geindexeerde beelden." -#: app/blend.c:438 +#: app/blend.c:460 msgid "Blend: 0, 0" msgstr "Meng: 0, 0" -#: app/blend.c:501 +#: app/blend.c:523 msgid "Blend operation failed." msgstr "Mengopertatie mislukt." -#: app/blend.c:507 +#: app/blend.c:529 msgid "Blending..." msgstr "" -#: app/blend.c:585 app/blend.c:595 +#: app/blend.c:607 app/blend.c:617 #, fuzzy msgid "Blend: " msgstr "Meng:" @@ -292,13 +292,13 @@ msgstr "Helderheid-Contrast werkt niet op geindexeerde tekeningen." #: app/gdisplay_color_ui.c:127 app/gimpui.c:122 app/hue_saturation.c:373 #: app/layers_dialog.c:3324 app/layers_dialog.c:3515 app/layers_dialog.c:3615 #: app/layers_dialog.c:3887 app/levels.c:337 app/module_db.c:281 -#: app/posterize.c:197 app/preferences_dialog.c:1465 app/qmask.c:279 -#: app/resize.c:191 app/resize.c:1343 app/threshold.c:271 +#: app/posterize.c:197 app/preferences_dialog.c:1430 app/qmask.c:279 +#: app/resize.c:193 app/resize.c:1345 app/threshold.c:271 #: modules/cdisplay_gamma.c:351 msgid "OK" msgstr "" -#: app/brightness_contrast.c:216 app/by_color_select.c:634 +#: app/brightness_contrast.c:216 app/by_color_select.c:687 #: app/color_balance.c:273 app/curves.c:557 app/file_new_dialog.c:355 #: app/hue_saturation.c:375 app/levels.c:339 app/posterize.c:199 #: app/threshold.c:273 app/tools.c:1086 app/transform_core.c:412 @@ -328,7 +328,7 @@ msgid "Brush Editor" msgstr "Penseel Editor" #. The close button -#: app/brush_edit.c:216 app/brush_select.c:278 app/by_color_select.c:636 +#: app/brush_edit.c:216 app/brush_select.c:278 app/by_color_select.c:689 #: app/color_notebook.c:122 app/color_picker.c:297 app/colormap_dialog.i.c:170 #: app/crop.c:1054 app/devices.c:755 app/docindexif.c:105 #: app/errorconsole.c:281 app/gdisplay_ops.c:346 app/gradient.c:801 @@ -342,7 +342,7 @@ msgid "Close" msgstr "Sluit" #. the feather radius scale -#: app/brush_edit.c:276 app/color_picker.c:181 app/tool_options.c:200 +#: app/brush_edit.c:276 app/color_picker.c:181 app/tool_options.c:199 msgid "Radius:" msgstr "" @@ -372,11 +372,11 @@ msgstr "Hernieuw" msgid "No Brushes available" msgstr "" -#: app/brush_select.c:445 app/layers_dialog.c:372 app/tool_options.c:505 +#: app/brush_select.c:445 app/layers_dialog.c:372 app/tool_options.c:504 msgid "Opacity:" msgstr "Ondoorzichtigheid" -#: app/brush_select.c:453 app/layers_dialog.c:324 app/tool_options.c:529 +#: app/brush_select.c:453 app/layers_dialog.c:324 app/tool_options.c:528 msgid "Mode:" msgstr "Modus:" @@ -410,7 +410,7 @@ msgstr "" msgid "Sorry, this brush can't be deleted." msgstr "" -#: app/bucket_fill.c:147 app/color_picker.c:156 app/tool_options.c:274 +#: app/bucket_fill.c:147 app/color_picker.c:156 app/tool_options.c:273 msgid "Sample Merged" msgstr "" @@ -442,36 +442,36 @@ msgid "No available patterns for this operation." msgstr "Geen beschikbare patronen voor deze bewerking." #. The shell and main vbox -#: app/by_color_select.c:629 +#: app/by_color_select.c:682 msgid "By Color Selection" msgstr "Door Kleurselectie" -#: app/by_color_select.c:685 +#: app/by_color_select.c:738 msgid "Inactive" msgstr "Inactief" -#: app/by_color_select.c:693 +#: app/by_color_select.c:746 msgid "Selection Mode" msgstr "Selectiemodus" -#: app/by_color_select.c:695 app/paint_funcs.c:100 +#: app/by_color_select.c:748 app/paint_funcs.c:100 msgid "Replace" msgstr "Vervangen" -#: app/by_color_select.c:697 app/colormap_dialog.i.c:127 +#: app/by_color_select.c:750 app/colormap_dialog.i.c:127 #: app/gdisplay_color_ui.c:114 msgid "Add" msgstr "Toevoegen" -#: app/by_color_select.c:699 app/layers_dialog.c:340 app/tool_options.c:904 +#: app/by_color_select.c:752 app/layers_dialog.c:340 app/tool_options.c:904 msgid "Subtract" msgstr "" -#: app/by_color_select.c:701 +#: app/by_color_select.c:754 msgid "Intersect" msgstr "Intersectie" -#: app/by_color_select.c:713 +#: app/by_color_select.c:766 msgid "Fuzziness Threshold" msgstr "" @@ -489,7 +489,7 @@ msgstr "" msgid "Selection Mask" msgstr "Selectiemasker" -#: app/channel_ops.c:85 app/resize.c:392 +#: app/channel_ops.c:85 app/resize.c:394 msgid "Offset" msgstr "" @@ -499,8 +499,8 @@ msgid "Offset X:" msgstr "" #: app/channel_ops.c:115 app/crop.c:1063 app/file_new_dialog.c:530 -#: app/resize.c:330 app/resize.c:415 app/resize.c:573 app/rotate_tool.c:106 -#: app/scale_tool.c:100 app/shear_tool.c:82 +#: app/install.c:1108 app/resize.c:332 app/resize.c:417 app/resize.c:575 +#: app/rotate_tool.c:106 app/scale_tool.c:100 app/shear_tool.c:82 msgid "Y:" msgstr "" @@ -509,12 +509,12 @@ msgstr "" msgid "Wrap Around" msgstr "" -#: app/channel_ops.c:174 app/image_new.c:69 app/image_new.c:223 +#: app/channel_ops.c:174 app/image_new.c:70 app/image_new.c:234 #: app/layers_dialog.c:3422 msgid "Background" msgstr "Achtergrond" -#: app/channel_ops.c:175 app/image_new.c:79 app/layers_dialog.c:3424 +#: app/channel_ops.c:175 app/image_new.c:80 app/layers_dialog.c:3424 msgid "Transparent" msgstr "Transparant" @@ -697,22 +697,22 @@ msgstr "Voorbeeldgrootte" msgid "Update Active Color" msgstr "" -#: app/color_picker.c:255 app/color_picker.c:265 +#: app/color_picker.c:255 app/color_picker.c:264 #, fuzzy msgid "Red:" msgstr "Rood" -#: app/color_picker.c:256 app/color_picker.c:266 +#: app/color_picker.c:256 app/color_picker.c:265 #, fuzzy msgid "Green:" msgstr "Groen" -#: app/color_picker.c:257 app/color_picker.c:267 +#: app/color_picker.c:257 app/color_picker.c:266 #, fuzzy msgid "Blue:" msgstr "Blauw" -#: app/color_picker.c:258 app/color_picker.c:264 app/color_picker.c:273 +#: app/color_picker.c:258 app/color_picker.c:267 app/color_picker.c:273 msgid "Alpha:" msgstr "" @@ -735,13 +735,13 @@ msgstr "Hex Triple" msgid "Intensity:" msgstr "Intensiteit" -#: app/color_picker.c:633 app/color_picker.c:634 app/color_picker.c:635 -#: app/color_picker.c:636 app/color_picker.c:637 app/color_picker.c:638 -#: app/color_picker.c:639 app/color_picker.c:657 app/color_picker.c:672 -#: app/color_picker.c:690 app/info_window.c:185 app/info_window.c:191 -#: app/info_window.c:197 app/info_window.c:203 app/info_window.c:422 -#: app/info_window.c:423 app/info_window.c:424 app/info_window.c:425 -#: app/info_window.c:447 +#: app/color_picker.c:626 app/color_picker.c:627 app/color_picker.c:628 +#: app/color_picker.c:629 app/color_picker.c:630 app/color_picker.c:631 +#: app/color_picker.c:632 app/color_picker.c:644 app/color_picker.c:651 +#: app/color_picker.c:669 app/color_picker.c:684 app/info_window.c:185 +#: app/info_window.c:191 app/info_window.c:197 app/info_window.c:203 +#: app/info_window.c:422 app/info_window.c:423 app/info_window.c:424 +#: app/info_window.c:425 app/info_window.c:447 msgid "N/A" msgstr "" @@ -954,14 +954,14 @@ msgstr "X Bron: " #. the pixel size labels #: app/crop.c:1076 app/file_new_dialog.c:389 app/file_new_dialog.c:407 -#: app/tool_options.c:334 +#: app/tool_options.c:333 #, fuzzy msgid "Width:" msgstr "Breedte: " #: app/crop.c:1079 app/file_new_dialog.c:395 app/file_new_dialog.c:413 -#: app/layers_dialog.c:3363 app/resize.c:240 app/resize.c:265 app/resize.c:510 -#: app/scale_tool.c:79 app/scale_tool.c:86 app/tool_options.c:350 +#: app/layers_dialog.c:3363 app/resize.c:242 app/resize.c:267 app/resize.c:512 +#: app/scale_tool.c:79 app/scale_tool.c:86 app/tool_options.c:349 #, fuzzy msgid "Height:" msgstr "Hoogte: " @@ -1017,7 +1017,7 @@ msgid "Load" msgstr "Laad" #: app/curves.c:704 app/devices.c:753 app/levels.c:608 app/palette.c:2068 -#: app/preferences_dialog.c:357 app/preferences_dialog.c:1467 +#: app/preferences_dialog.c:357 app/preferences_dialog.c:1432 msgid "Save" msgstr "Bewaar" @@ -1050,7 +1050,7 @@ msgstr "Desatureren werkt enkel op RGB kleurentekeningen." msgid "Device Status" msgstr "Apperaat Status" -#: app/disp_callbacks.c:755 app/global_edit.c:297 app/global_edit.c:303 +#: app/disp_callbacks.c:760 app/global_edit.c:297 app/global_edit.c:303 #: app/global_edit.c:375 #, fuzzy msgid "Pasted Layer" @@ -1231,18 +1231,18 @@ msgstr "Afmeting instellen" msgid "New Image" msgstr "Nieuwe beeld" -#: app/file_new_dialog.c:453 app/preferences_dialog.c:1540 -#: app/preferences_dialog.c:1577 +#: app/file_new_dialog.c:453 app/install.c:1093 app/preferences_dialog.c:1505 +#: app/preferences_dialog.c:1542 msgid "Pixels" msgstr "" #. the resolution labels -#: app/file_new_dialog.c:524 app/resize.c:567 +#: app/file_new_dialog.c:524 app/resize.c:569 #, fuzzy msgid "Resolution X:" msgstr "Resolutie" -#: app/file_new_dialog.c:545 app/resize.c:588 +#: app/file_new_dialog.c:545 app/resize.c:590 msgid "pixels/%a" msgstr "" @@ -1272,7 +1272,7 @@ msgstr "" msgid "No Selection." msgstr "Groeiselectie" -#: app/fileops.c:418 app/fileops.c:1624 app/fileops.c:1731 +#: app/fileops.c:418 app/fileops.c:1629 app/fileops.c:1736 #, fuzzy, c-format msgid "Save failed: %s" msgstr "Bewaren mislukt: " @@ -1299,60 +1299,60 @@ msgstr "" msgid "Revert failed." msgstr "Bewaren mislukt: " -#: app/fileops.c:1240 +#: app/fileops.c:1245 msgid "(This thumbnail may be out of date)" msgstr "" -#: app/fileops.c:1241 +#: app/fileops.c:1246 #, fuzzy msgid "(No Information)" msgstr "Beeldscherminformatie" -#: app/fileops.c:1251 +#: app/fileops.c:1256 msgid "(Thumbnail saving is disabled)" msgstr "" -#: app/fileops.c:1255 +#: app/fileops.c:1260 msgid "(Could not write thumbnail file)" msgstr "" -#: app/fileops.c:1259 +#: app/fileops.c:1264 msgid "(Thumbnail file not written)" msgstr "" -#: app/fileops.c:1276 +#: app/fileops.c:1281 #, fuzzy msgid "No preview available" msgstr "Patroon Opvullen" -#: app/fileops.c:1394 +#: app/fileops.c:1399 msgid "(could not make preview)" msgstr "" -#: app/fileops.c:1467 app/fileops.c:1546 +#: app/fileops.c:1472 app/fileops.c:1551 #, fuzzy, c-format msgid "Open failed: %s" msgstr "Openen mislukt: " -#: app/fileops.c:1602 +#: app/fileops.c:1607 #, c-format msgid "%s is an irregular file (%s)" msgstr "%s is een abnormaal bestand (%s)" -#: app/fileops.c:1670 +#: app/fileops.c:1675 #, c-format msgid "%s exists, overwrite?" msgstr "%s bestaat, overschrijven?" -#: app/fileops.c:1674 +#: app/fileops.c:1679 msgid "File Exists!" msgstr "Bestand Bestaat!" -#: app/fileops.c:1680 +#: app/fileops.c:1685 msgid "Yes" msgstr "Ja" -#: app/fileops.c:1682 +#: app/fileops.c:1687 msgid "No" msgstr "Neen" @@ -1361,13 +1361,13 @@ msgstr "Neen" msgid "Flip Tool" msgstr "Fliphulpopties" -#: app/flip_tool.c:95 app/preferences_dialog.c:1591 -#: app/preferences_dialog.c:2355 +#: app/flip_tool.c:95 app/preferences_dialog.c:1556 +#: app/preferences_dialog.c:2284 msgid "Horizontal" msgstr "Horizontaal" -#: app/flip_tool.c:97 app/preferences_dialog.c:1593 -#: app/preferences_dialog.c:2357 +#: app/flip_tool.c:97 app/preferences_dialog.c:1558 +#: app/preferences_dialog.c:2286 msgid "Vertical" msgstr "Verticaal" @@ -1393,7 +1393,7 @@ msgstr "" msgid "RGB-empty" msgstr "RGB-leeg" -#: app/gdisplay.c:217 app/image_new.c:53 app/preferences_dialog.c:1637 +#: app/gdisplay.c:217 app/image_new.c:54 app/preferences_dialog.c:1602 msgid "RGB" msgstr "" @@ -1521,25 +1521,25 @@ msgstr "" msgid "Failed to load pixmap brush." msgstr "" -#: app/gimpdrawable.c:168 +#: app/gimpdrawable.c:166 msgid "Can't fill unknown image type." msgstr "Kan geen onbekend beeldtype vullen." -#: app/gimpdrawable.c:512 +#: app/gimpdrawable.c:498 #, fuzzy msgid "parasite attach to drawable" msgstr "Maak het geselecteerde gebied van de tekening vrij" -#: app/gimpdrawable.c:548 +#: app/gimpdrawable.c:533 #, fuzzy msgid "detach parasite from drawable" msgstr "de beinvloede tekening" -#: app/gimpdrawable.c:770 +#: app/gimpdrawable.c:740 msgid "unnamed" msgstr "onbenoemd" -#: app/gimpdrawable.c:787 +#: app/gimpdrawable.c:757 #, c-format msgid "Layer type %d not supported." msgstr "Laagtype %d niet ondersteund." @@ -1551,49 +1551,49 @@ msgid "" "you don't have GtkXmHTML installed." msgstr "" -#: app/gimpimage.c:1154 +#: app/gimpimage.c:1176 msgid "attach parasite to image" msgstr "" -#: app/gimpimage.c:1177 +#: app/gimpimage.c:1201 msgid "detach parasite from image" msgstr "" -#: app/gimpimage.c:2232 +#: app/gimpimage.c:2305 msgid "Layer cannot be raised any further" msgstr "Laag kan niet verder naar boven" -#: app/gimpimage.c:2258 +#: app/gimpimage.c:2333 msgid "Layer cannot be lowered any further" msgstr "Laag kan niet verder naar beneden" -#: app/gimpimage.c:2282 +#: app/gimpimage.c:2359 msgid "Layer is already on top" msgstr "Laag is reeds de bovenste" -#: app/gimpimage.c:2288 +#: app/gimpimage.c:2365 msgid "Can't raise Layer without alpha" msgstr "Kan laag niet verhogen zonder alfa" -#: app/gimpimage.c:2315 +#: app/gimpimage.c:2393 msgid "Layer is already on bottom" msgstr "Laag is reeds op de bodem" -#: app/gimpimage.c:2370 +#: app/gimpimage.c:2448 msgid "BG has no alpha, layer was placed above" msgstr "" -#: app/gimpimage.c:2439 +#: app/gimpimage.c:2519 msgid "" "There are not enough visible layers for a merge.\n" "There must be at least two." msgstr "" -#: app/gimpimage.c:2519 +#: app/gimpimage.c:2603 msgid "There are not enough visible layers for a merge down." msgstr "Er zijn niet genoeg zichtbare lagen voor een neerwaarte samenvoeging." -#: app/gimpimage.c:2915 +#: app/gimpimage.c:3005 msgid "" "Unable to add a layer mask since\n" "the layer already has one." @@ -1601,7 +1601,7 @@ msgstr "" "Kan geen laagmasker toevoegen omdat\n" "de laag reeds een heeft." -#: app/gimpimage.c:2919 +#: app/gimpimage.c:3009 msgid "" "Unable to add a layer mask to a\n" "layer in an indexed image." @@ -1609,7 +1609,7 @@ msgstr "" "Kan geen laagmasker toevoegen\n" " ineen laag van een geindexeerd beeld." -#: app/gimpimage.c:2923 +#: app/gimpimage.c:3013 msgid "" "Cannot add layer mask to a layer\n" "with no alpha channel." @@ -1617,21 +1617,21 @@ msgstr "" "Kan geen laagmasker toevoegen in een laag\n" "zonder alfa kanaal." -#: app/gimpimage.c:2930 +#: app/gimpimage.c:3020 msgid "Cannot add layer mask of different dimensions than specified layer." msgstr "" "Kan geen laagmasker met verschillende afmetingen dan gespecifieerde laag " "toevoegen " -#: app/gimpimage.c:3033 +#: app/gimpimage.c:3127 msgid "Channel cannot be raised any further" msgstr "Kanaal kan niet verder naar boven" -#: app/gimpimage.c:3082 +#: app/gimpimage.c:3178 msgid "Channel cannot be lowered any further" msgstr "Kanaal kan niet verder naar beneden" -#: app/gimpimage.c:3288 app/palette.c:364 app/palette.c:941 app/palette.c:1077 +#: app/gimpimage.c:3398 app/palette.c:364 app/palette.c:941 app/palette.c:1077 #: app/palette.c:2022 app/palette.c:2749 app/palette.c:2881 msgid "Untitled" msgstr "Ongetiteld" @@ -1644,45 +1644,45 @@ msgstr "" msgid "Please wait..." msgstr "" -#: app/gimprc.c:401 app/plug_in.c:304 +#: app/gimprc.c:415 app/plug_in.c:304 msgid "Resource configuration" msgstr "Bronconfiguratie" -#: app/gimprc.c:451 +#: app/gimprc.c:467 #, c-format msgid "error parsing: \"%s\"\n" msgstr "fout bij het parsen: \"%s\"\n" -#: app/gimprc.c:452 +#: app/gimprc.c:468 #, c-format msgid " at line %d column %d\n" msgstr " in lijn %d kolom %d\n" -#: app/gimprc.c:453 +#: app/gimprc.c:469 #, c-format msgid " unexpected token: %s\n" msgstr " onverwacht teken: %s\n" -#: app/gimprc.c:1455 +#: app/gimprc.c:1473 msgid "error parsing pluginrc" msgstr "fout bij parsen van pluginrc" -#: app/gimprc.c:2832 +#: app/gimprc.c:2866 #, c-format msgid "Can't open %s; %s" msgstr "" -#: app/gimprc.c:2851 +#: app/gimprc.c:2885 #, c-format msgid "Can't rename %s to %s.old; %s" msgstr "" -#: app/gimprc.c:2857 +#: app/gimprc.c:2891 #, c-format msgid "Couldn't reopen %s\n" msgstr "" -#: app/gimprc.c:2869 +#: app/gimprc.c:2903 #, c-format msgid "Can't write to %s; %s" msgstr "" @@ -1712,7 +1712,7 @@ msgstr "" msgid "pixel" msgstr "" -#: app/gimpunit.c:59 app/measure.c:454 app/measure.c:458 app/paint_core.c:498 +#: app/gimpunit.c:59 app/measure.c:454 app/measure.c:458 app/paint_core.c:511 msgid "pixels" msgstr "" @@ -1973,7 +1973,7 @@ msgstr "" msgid "Distance: %0.6f" msgstr "Afstand: %0.6f" -#: app/gradient.c:3387 app/gradient.c:4448 +#: app/gradient.c:3387 app/gradient.c:4450 msgid "Left endpoint's color" msgstr "Kleur van linkereindpunt" @@ -1993,7 +1993,7 @@ msgstr "Rechtereindpunt" msgid "Save to" msgstr "Bewaar in" -#: app/gradient.c:3429 app/gradient.c:4526 +#: app/gradient.c:3429 app/gradient.c:4528 msgid "Right endpoint's color" msgstr "Kleur van rechtereindpunt" @@ -2021,7 +2021,7 @@ msgstr "Kleurtype voor segment" msgid "Split segment at midpoint" msgstr "Splits segment in middelpunt" -#: app/gradient.c:3734 app/gradient.c:4829 +#: app/gradient.c:3734 app/gradient.c:4831 msgid "Split segment uniformly" msgstr "Splits segment uniform" @@ -2041,7 +2041,7 @@ msgstr "Herverdeel handles in segment" msgid "Flip segment" msgstr "Draai segment om" -#: app/gradient.c:3744 app/gradient.c:5390 +#: app/gradient.c:3744 app/gradient.c:5392 msgid "Replicate segment" msgstr "Repliceer segment" @@ -2057,7 +2057,7 @@ msgstr "Kleurtype voor selectie" msgid "Split segments at midpoints" msgstr "Split segmenten op middelpunten" -#: app/gradient.c:3755 app/gradient.c:4830 +#: app/gradient.c:3755 app/gradient.c:4832 msgid "Split segments uniformly" msgstr "Split segmenten uniform" @@ -2077,7 +2077,7 @@ msgstr "Herverdeel handles in de selectie" msgid "Flip selection" msgstr "Draai selectie om" -#: app/gradient.c:3765 app/gradient.c:5391 +#: app/gradient.c:3765 app/gradient.c:5393 msgid "Replicate selection" msgstr "Repliceer selectie" @@ -2090,49 +2090,49 @@ msgstr "FG kleur" msgid "RGBA (%0.3f, %0.3f, %0.3f, %0.3f)" msgstr "" -#: app/gradient.c:4615 app/gradient.c:4685 +#: app/gradient.c:4617 app/gradient.c:4687 msgid "(Varies)" msgstr "(Allerlei)" -#: app/gradient.c:4837 +#: app/gradient.c:4839 msgid "Split" msgstr "Splits" #. Instructions -#: app/gradient.c:4851 +#: app/gradient.c:4853 msgid "Please select the number of uniform parts" msgstr "Gelieve het aantal uniforme delen te selecteren" -#: app/gradient.c:4857 +#: app/gradient.c:4859 msgid "in which you want to split the selected segment" msgstr "waarin u het geselecteerde segment wil splitsen" -#: app/gradient.c:4858 +#: app/gradient.c:4860 msgid "in which you want to split the segments in the selection" msgstr "waarin u de segmenten van de selectie splitsen" -#: app/gradient.c:5218 +#: app/gradient.c:5220 msgid "Blend endpoints' colors" msgstr "Kleuren van Mengeindpunten" -#: app/gradient.c:5230 +#: app/gradient.c:5232 msgid "Blend endpoints' opacity" msgstr "Ondoorzichtigheid van mengeindpunten" -#: app/gradient.c:5398 +#: app/gradient.c:5400 msgid "Replicate" msgstr "Repliceer" #. Instructions -#: app/gradient.c:5411 +#: app/gradient.c:5413 msgid "Please select the number of times" msgstr "Gelieve het aantal keren te selecteren" -#: app/gradient.c:5416 +#: app/gradient.c:5418 msgid "you want to replicate the selected segment" msgstr "u wil het geselecteerde segment repliceren" -#: app/gradient.c:5417 +#: app/gradient.c:5419 msgid "you want to replicate the selection" msgstr "u wil de selectie repliceren" @@ -2244,45 +2244,45 @@ msgstr "Helderheid" msgid "Saturation" msgstr "" -#: app/image_new.c:58 app/info_window.c:65 app/info_window.c:534 -#: app/preferences_dialog.c:1638 +#: app/image_new.c:59 app/info_window.c:65 app/info_window.c:534 +#: app/preferences_dialog.c:1603 msgid "Grayscale" msgstr "Grijswaarden" -#: app/image_new.c:64 app/layers_dialog.c:3421 +#: app/image_new.c:65 app/layers_dialog.c:3421 msgid "Foreground" msgstr "Voorgrond" -#: app/image_new.c:74 app/layers_dialog.c:3423 +#: app/image_new.c:75 app/layers_dialog.c:3423 msgid "White" msgstr "Wit" -#: app/image_new.c:262 +#: app/image_new.c:273 #, c-format msgid "%d Bytes" msgstr "" -#: app/image_new.c:264 +#: app/image_new.c:275 #, c-format msgid "%.2f KB" msgstr "" -#: app/image_new.c:266 +#: app/image_new.c:277 #, c-format msgid "%.1f KB" msgstr "" -#: app/image_new.c:268 +#: app/image_new.c:279 #, c-format msgid "%d KB" msgstr "" -#: app/image_new.c:270 +#: app/image_new.c:281 #, c-format msgid "%.2f MB" msgstr "" -#: app/image_new.c:272 +#: app/image_new.c:283 #, c-format msgid "%.1f MB" msgstr "" @@ -2305,8 +2305,8 @@ msgid "" "Click to open the Gradients Dialog." msgstr "" -#: app/info_dialog.c:181 app/preferences_dialog.c:1782 -#: app/preferences_dialog.c:1888 +#: app/info_dialog.c:181 app/preferences_dialog.c:1743 +#: app/preferences_dialog.c:1849 #, fuzzy msgid "General" msgstr "Interval:" @@ -2452,11 +2452,11 @@ msgstr "Hoek:" msgid "Shape" msgstr "Scherp" -#: app/install.c:83 +#: app/install.c:95 msgid "The GIMP is not properly installed for the current user\n" msgstr "De GIMP is niet correct geinstalleerd voor de huidige gebruiker.\n" -#: app/install.c:84 +#: app/install.c:96 msgid "" "User installation was skipped because the '--nointerface' flag was " "encountered\n" @@ -2464,296 +2464,387 @@ msgstr "" "Installatie van gebruikersinterface werd overgeslagen omdat de vlag " "'--nointerface' tegengekomen was\n" -#: app/install.c:85 +#: app/install.c:97 msgid "" "To perform user installation, run the GIMP without the '--nointerface' flag\n" msgstr "" "Om een gebruikersinstallatie uit te voeren, voer GIMP uit zonder de\n" "'--nointerface' vlag\n" -#: app/install.c:113 +#: app/install.c:142 msgid "" -"The GIMP - GNU Image Manipulation Program\n" -"\n" -msgstr "" -"GIMP - GNU Image Manipulation Program\n" -"\n" - -#: app/install.c:118 -msgid "" -"This program is free software; you can redistribute it and/or modify\n" -"it under the terms of the GNU General Public License as published by\n" -"the Free Software Foundation; either version 2 of the License, or\n" -"(at your option) any later version.\n" +"The gimprc is used to store personal preferences\n" +"that affect GIMP's default behavior.\n" +"Paths to search for brushes, palettes, gradients,\n" +"patterns, plug-ins and modules can also configured here." msgstr "" -#: app/install.c:123 +#: app/install.c:149 msgid "" -"This program is distributed in the hope that it will be useful,\n" -"but WITHOUT ANY WARRANTY; without even the implied warranty of\n" -"MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n" -"See the GNU General Public License for more details.\n" +"GIMP uses an additional gtkrc file so you can\n" +"configure it to look differently than other GTK apps." msgstr "" -#: app/install.c:128 +#: app/install.c:154 msgid "" -"You should have received a copy of the GNU General Public License\n" -"along with this program; if not, write to the Free Software\n" -"Foundation, Inc., 59 Temple Place - Suite 330, Boston,\n" -"MA 02111-1307, USA.\n" -msgstr "" - -#: app/install.c:134 -msgid "" -"Personal GIMP Installation\n" -"\n" -msgstr "" -"Persoonlijke GIMP Installatie\n" -"\n" - -#: app/install.c:135 -msgid "For a proper GIMP installation, a subdirectory called\n" -msgstr "Voor een correctie GIMP installatie, moet een submap genaamd\n" - -#. will be replaced with gimp_directory() -#: app/install.c:137 -#, fuzzy -msgid "" -" needs to be created. This\n" -"subdirectory will contain a number of important files:\n" -"\n" -msgstr "map zal een aantal belangrijke bestande bevatten:\n" - -#: app/install.c:141 -msgid "" -"\t\tThe gimprc is used to store personal preferences\n" -"\t\tthat affect GIMP's default behavior.\n" -"\t\tPaths to search for brushes, palettes, gradients,\n" -"\t\tpatterns, plug-ins and modules can also configured here.\n" -msgstr "" - -#: app/install.c:147 -msgid "" -"\t\tPlug-ins and extensions are external programs run by\n" -"\t\tthe GIMP which provide additional functionality.\n" -"\t\tThese programs are searched for at run-time and\n" -"\t\tinformation about their functionality and mod-times\n" -"\t\tis cached in this file. This file is intended to\n" -"\t\tbe GIMP-readable only, and should not be edited.\n" -msgstr "" - -#: app/install.c:155 -msgid "" -"\t\tKey shortcuts can be dynamically redefined in The GIMP.\n" -"\t\tThe menurc is a dump of your configuration so it can.\n" -"\t\tbe remembered for the next session. You may edit this\n" -"\t\tfile if you wish, but it is much easier to define the\n" -"\t\tkeys from within The GIMP. Deleting this file will\n" -"\t\trestore the default shortcuts.\n" +"Plug-ins and extensions are external programs run by\n" +"the GIMP which provide additional functionality.\n" +"These programs are searched for at run-time and\n" +"information about their functionality and mod-times\n" +"is cached in this file. This file is intended to\n" +"be GIMP-readable only, and should not be edited." msgstr "" #: app/install.c:163 msgid "" -"\t\tThe sessionrc is used to store what dialog windows were\n" -"\t\topen the last time you quit The GIMP. You can configure\n" -"\t\tThe GIMP to reopen these dialogs at the saved position.\n" +"Key shortcuts can be dynamically redefined in The GIMP.\n" +"The menurc is a dump of your configuration so it can.\n" +"be remembered for the next session. You may edit this\n" +"file if you wish, but it is much easier to define the\n" +"keys from within The GIMP. Deleting this file will\n" +"restore the default shortcuts." msgstr "" -#: app/install.c:168 +#: app/install.c:172 msgid "" -"\t\tThe unitrc is used to store your user units database.\n" -"\t\tYou can define additional units and use them just\n" -"\t\tlike you use the built-in units inches, millimeters,\n" -"\t\tpoints and picas. This file is overwritten each time\n" -"\t\tyou quit the GIMP.\n" +"The sessionrc is used to store what dialog windows were\n" +"open the last time you quit The GIMP. You can configure\n" +"The GIMP to reopen these dialogs at the saved position." msgstr "" -#: app/install.c:175 +#: app/install.c:178 msgid "" -"\t\tThis is a subdirectory which can be used to store\n" -"\t\tuser defined brushes. The default gimprc file\n" -"\t\tchecks this subdirectory in addition to the system-\n" -"\t\twide gimp brushes installation when searching for\n" -"\t\tbrushes.\n" +"The unitrc is used to store your user units database.\n" +"You can define additional units and use them just\n" +"like you use the built-in units inches, millimeters,\n" +"points and picas. This file is overwritten each time\n" +"you quit the GIMP." msgstr "" -#: app/install.c:182 +#: app/install.c:186 msgid "" -"\t\tThis is a subdirectory which is used to store brushes\n" -"\t\tthat are created with the brush editor. The default\n" -"\t\tgimprc file checks this subdirectory when searching for\n" -"\t\tgenerated brushes.\n" +"This is a subdirectory which can be used to store\n" +"user defined brushes. The default gimprc file\n" +"checks this subdirectory in addition to the system-\n" +"wide gimp brushes installation when searching for\n" +"brushes." msgstr "" -#: app/install.c:188 +#: app/install.c:194 msgid "" -"\t\tThis is a subdirectory which can be used to store\n" -"\t\tuser defined gradients. The default gimprc file\n" -"\t\tchecks this subdirectory in addition to the system-\n" -"\t\twide gimp gradients installation when searching for\n" -"\t\tgradients.\n" +"This is a subdirectory which is used to store brushes\n" +"that are created with the brush editor. The default\n" +"gimprc file checks this subdirectory when searching for\n" +"generated brushes." msgstr "" -#: app/install.c:195 +#: app/install.c:201 msgid "" -"\t\tThis is a subdirectory which can be used to store\n" -"\t\tuser defined figures to be used by the gfig plug-in.\n" -"\t\tThe default gimprc file checks this subdirectory in\n" -"\t\taddition to the systemwide gimp gfig installation\n" -"\t\twhen searching for gfig figures.\n" -msgstr "" - -#: app/install.c:202 -msgid "" -"\t\tThis is a subdirectory which can be used to store\n" -"\t\tuser defined gflares to be used by the gflare plug-in.\n" -"\t\tThe default gimprc file checks this subdirectory in\n" -"\t\taddition to the systemwide gimp gflares installation\n" -"\t\twhen searching for gflares.\n" +"This is a subdirectory which can be used to store\n" +"user defined gradients. The default gimprc file\n" +"checks this subdirectory in addition to the system-\n" +"wide gimp gradients installation when searching for\n" +"gradients." msgstr "" #: app/install.c:209 msgid "" -"\t\tThis is a subdirectory which can be used to store\n" -"\t\tuser defined fractals to be used by the FractalExplorer\n" -"\t\tplug-in. The default gimprc file checks this subdirectory in\n" -"\t\taddition to the systemwide gimp FractalExplorer installation\n" -"\t\twhen searching for fractals.\n" +"This is a subdirectory which can be used to store\n" +"user defined palettes. The default gimprc file\n" +"checks only this subdirectory (not the system-wide\n" +"installation) when searching for palettes. During\n" +"installation, the system palettes will be copied\n" +"here. This is done to allow modifications made to\n" +"palettes during GIMP execution to persist across\n" +"sessions." msgstr "" -#: app/install.c:216 +#: app/install.c:220 msgid "" -"\t\tThis is a subdirectory which can be used to store\n" -"\t\tuser defined palettes. The default gimprc file\n" -"\t\tchecks only this subdirectory (not the system-wide\n" -"\t\tinstallation) when searching for palettes. During\n" -"\t\tinstallation, the system palettes will be copied\n" -"\t\there. This is done to allow modifications made to\n" -"\t\tpalettes during GIMP execution to persist across\n" -"\t\tsessions.\n" +"This is a subdirectory which can be used to store\n" +"user defined patterns. The default gimprc file\n" +"checks this subdirectory in addition to the system-\n" +"wide gimp patterns installation when searching for\n" +"patterns." msgstr "" -#: app/install.c:226 +#: app/install.c:228 msgid "" -"\t\tThis is a subdirectory which can be used to store\n" -"\t\tuser defined patterns. The default gimprc file\n" -"\t\tchecks this subdirectory in addition to the system-\n" -"\t\twide gimp patterns installation when searching for\n" -"\t\tpatterns.\n" +"This is a subdirectory which can be used to store\n" +"user created, temporary, or otherwise non-system-\n" +"supported plug-ins. The default gimprc file\n" +"checks this subdirectory in addition to the system-\n" +"wide GIMP plug-in directories when searching for\n" +"plug-ins." msgstr "" -#: app/install.c:233 +#: app/install.c:237 msgid "" -"\t\tThis is a subdirectory which can be used to store\n" -"\t\tuser created, temporary, or otherwise non-system-\n" -"\t\tsupported plug-ins. The default gimprc file\n" -"\t\tchecks this subdirectory in addition to the system-\n" -"\t\twide GIMP plug-in directories when searching for\n" -"\t\tplug-ins.\n" +"This subdirectory can be used to store user created,\n" +"temporary, or otherwise non-system-supported DLL modules.\n" +"The default gimprc file checks this subdirectory\n" +"in addition to the system-wide GIMP module directory\n" +"when searching for modules to load when initializing." msgstr "" -#: app/install.c:241 +#: app/install.c:245 msgid "" -"\t\tThis subdirectory can be used to store user created,\n" -"\t\ttemporary, or otherwise non-system-supported DLL modules.\n" -"\t\tThe default gimprc file checks this subdirectory\n" -"\t\tin addition to the system-wide GIMP module directory\n" -"\t\twhen searching for modules to load when initializing.\n" +"This subdirectory is used by the GIMP to store \n" +"user created and installed scripts. The default gimprc\n" +"file checks this subdirectory in addition to the system-\n" +"wide gimp scripts subdirectory when searching for scripts" msgstr "" -#: app/install.c:248 +#: app/install.c:252 msgid "" -"\t\tThis subdirectory is used by the GIMP to store \n" -"\t\tuser created and installed scripts. The default gimprc\n" -"\t\tfile checks this subdirectory in addition to the system\n" -"\t\t-wide gimp scripts subdirectory when searching for scripts\n" +"This subdirectory is used by the GIMP to temporarily\n" +"store undo buffers to reduce memory usage. If GIMP is\n" +"unceremoniously killed, files may persist in this directory\n" +"of the form: gimp<#>.<#>. These files are useless across\n" +"GIMP sessions and can be destroyed with impunity." msgstr "" -#: app/install.c:254 +#: app/install.c:260 +#, fuzzy msgid "" -"\t\tThis subdirectory is used by the GIMP to temporarily\n" -"\t\tstore undo buffers to reduce memory usage. If GIMP is\n" -"\t\tunceremoniously killed, files may persist in this directory\n" -"\t\tof the form: gimp<#>.<#>. These files are useless across\n" -"\t\tGIMP sessions and can be destroyed with impunity.\n" -msgstr "" +"This subdirectory is used to store parameter files for\n" +"the Curves tool." +msgstr "Dit is een submap dat gebruikt kan worden om door\n" -#: app/install.c:263 -msgid "GIMP Installation" -msgstr "GIMP Installatie" - -#: app/install.c:268 -msgid "Install" -msgstr "Installeren" +#: app/install.c:265 +#, fuzzy +msgid "" +"This subdirectory is used to store parameter files for\n" +"the Levels tool." +msgstr "Dit is een submap dat gebruikt kan worden om door\n" #: app/install.c:270 -msgid "Ignore" -msgstr "Negeren" - -#. this is a fontset, e.g. multiple comma-separated font definitions -#: app/install.c:295 app/install.c:453 -msgid "-*-helvetica-bold-r-normal-*-*-120-*-*-*-*-*-*,*" +msgid "" +"This is a subdirectory which can be used to store\n" +"user defined fractals to be used by the FractalExplorer\n" +"plug-in. The default gimprc file checks this subdirectory in\n" +"addition to the systemwide gimp FractalExplorer installation\n" +"when searching for fractals." msgstr "" -#. this is a font, provide only one single font definition -#: app/install.c:298 -msgid "-*-helvetica-medium-o-normal-*-*-100-*-*-*-*-*-*" +#: app/install.c:278 +msgid "" +"This is a subdirectory which can be used to store\n" +"user defined figures to be used by the gfig plug-in.\n" +"The default gimprc file checks this subdirectory in\n" +"addition to the systemwide gimp gfig installation\n" +"when searching for gfig figures." msgstr "" -#. this is a fontset, e.g. multiple comma-separated font definitions -#: app/install.c:301 -msgid "-*-helvetica-medium-r-normal-*-*-100-*-*-*-*-*-*,*" +#: app/install.c:286 +msgid "" +"This is a subdirectory which can be used to store\n" +"user defined gflares to be used by the gflare plug-in.\n" +"The default gimprc file checks this subdirectory in\n" +"addition to the systemwide gimp gflares installation\n" +"when searching for gflares." msgstr "" -#: app/install.c:423 -msgid "Installation Log" +#: app/install.c:294 +msgid "" +"This is a subdirectory which can be used to store\n" +"user defined data to be used by the Gimpressionist\n" +"plug-in. The default gimprc file checks this subdirectory in\n" +"addition to the systemwide gimp Gimpressionist installation\n" +"when searching for data." msgstr "" -#: app/install.c:428 +#: app/install.c:525 +#, fuzzy +msgid "GIMP User Installation" +msgstr "GIMP Installatie" + +#: app/install.c:530 msgid "Continue" msgstr "" #. this is a fontset, e.g. multiple comma-separated font definitions -#: app/install.c:456 -msgid "-*-helvetica-medium-r-normal-*-*-120-*-*-*-*-*-*,*" +#: app/install.c:560 +msgid "-*-helvetica-bold-r-normal-*-*-240-*-*-*-*-*-*,*" msgstr "" -#: app/install.c:462 +#: app/install.c:578 +#, fuzzy msgid "" -"User Installation Log\n" +"Welcome to\n" +"The GIMP User Installation" +msgstr "GIMP Installatie" + +#: app/install.c:582 +msgid "" +"The GIMP - GNU Image Manipulation Program\n" +"Copyright (C) 1995-2000\n" +"Spencer Kimball, Peter Mattis and the GIMP Development Team." +msgstr "" + +#: app/install.c:591 +msgid "" +"This program is free software; you can redistribute it and/or modify\n" +"it under the terms of the GNU General Public License as published by\n" +"the Free Software Foundation; either version 2 of the License, or\n" +"(at your option) any later version." +msgstr "" + +#: app/install.c:596 +msgid "" +"This program is distributed in the hope that it will be useful,\n" +"but WITHOUT ANY WARRANTY; without even the implied warranty of\n" +"MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n" +"See the GNU General Public License for more details." +msgstr "" + +#: app/install.c:601 +msgid "" +"You should have received a copy of the GNU General Public License\n" +"along with this program; if not, write to the Free Software\n" +"Foundation, Inc., 59 Temple Place - Suite 330, Boston,\n" +"MA 02111-1307, USA." +msgstr "" + +#: app/install.c:607 +msgid "Click \"Continue\" to enter the GIMP user installation." +msgstr "" + +#: app/install.c:633 +#, fuzzy +msgid "Personal GIMP Directory" +msgstr "" +"Persoonlijke GIMP Installatie\n" "\n" -msgstr "" -#: app/install.c:472 -msgid " does not exist. Cannot install.\n" -msgstr "" - -#: app/install.c:480 +#: app/install.c:650 +#, fuzzy msgid "" -" has invalid permissions.\n" -"Cannot install." +"For a proper GIMP installation, a subdirectory needs to be created.\n" +"This subdirectory will contain a number of important files." +msgstr "map zal een aantal belangrijke bestande bevatten:\n" + +#: app/install.c:653 +msgid "" +"Click on one of the files or subdirectories in the tree\n" +"to get more information about the selected item." msgstr "" -#: app/install.c:514 -msgid "" -"Did you notice any error messages\n" -"in the console window? If not, installation\n" -"was successful! Otherwise, quit and investigate\n" -"the possible reason...\n" +#: app/install.c:656 +msgid "Click \"Continue\" to create your personal GIMP directory." msgstr "" -#: app/install.c:546 -msgid "" -"\n" -"Installation successful!\n" +#: app/install.c:736 +#, fuzzy +msgid "User Installation Log" +msgstr "GIMP Installatie" + +#: app/install.c:741 +msgid "GIMP Performance Tuning" msgstr "" -#: app/install.c:555 -msgid "" -"\n" -"Installation failed. Contact system administrator.\n" +#: app/install.c:744 +msgid "For optimal GIMP performance, some settings may have to be adjusted." msgstr "" +#: app/install.c:751 +msgid "Click \"Continue\" to accept the settings above." +msgstr "" + +#: app/install.c:760 +#, fuzzy +msgid "Monitor Resolution" +msgstr "Beeldscherminformatie" + +#: app/install.c:763 +msgid "" +"To display images in their natural size, GIMP needs to know your monitor " +"resolution." +msgstr "" + +#: app/install.c:771 +msgid "Click \"Continue\" to start The GIMP." +msgstr "" + +#: app/install.c:845 +msgid "does not exist. Cannot install." +msgstr "" + +#: app/install.c:857 +msgid "has invalid permissions. Cannot install." +msgstr "" + +#: app/install.c:895 +msgid "" +"Did you notice any error messages in the console window?\n" +"If not, installation was successful!\n" +"Otherwise, quit and investigate the possible reason..." +msgstr "" + +#: app/install.c:955 +msgid "" +"Did you notice any error messages in the lines above?\n" +"If not, installation was successful!\n" +"Otherwise, quit and investigate the possible reason..." +msgstr "" + +#: app/install.c:969 +msgid "Click \"Continue\" to complete GIMP installation." +msgstr "" + +#: app/install.c:978 +msgid "Installation failed. Contact system administrator." +msgstr "" + +#: app/install.c:999 +msgid "" +"GIMP uses a limited amount of memory to store image data, the so-called\n" +"\"Tile Cache\". You should adjust it's size to fit into memory. Consider\n" +"the amount of memory used by other running processes." +msgstr "" + +#: app/install.c:1015 app/preferences_dialog.c:2102 +#, fuzzy +msgid "Tile Cache Size:" +msgstr "Contreleer grootte" + +#: app/install.c:1025 +msgid "" +"All image and undo data which doesn't fit into the Tile Cache will be\n" +"written to a swap file. This file should be located on a local filesystem\n" +"with enough free space (several hundred MB). On a UNIX system, you\n" +"may want to use the system-wide temp-dir (\"/tmp\" or \"/var/tmp\")." +msgstr "" + +#: app/install.c:1035 app/preferences_dialog.c:2361 +msgid "Select Swap Dir" +msgstr "" + +#: app/install.c:1041 +#, fuzzy +msgid "Swap Directory:" +msgstr "Mappen" + +#: app/install.c:1063 +msgid "" +"GIMP can obtain this information from your X-server.\n" +"However, most X-servers do not return useful values." +msgstr "" + +#: app/install.c:1070 +#, fuzzy, c-format +msgid "Get Resolution from X-server (Currently %d x %d dpi)" +msgstr "(huidig %d x %d dpi)" + +#: app/install.c:1087 +msgid "Alternatively, you can set the monitor resolution manually." +msgstr "" + +#: app/install.c:1102 +#, fuzzy +msgid "Monitor Resolution X:" +msgstr "Beeldscherminformatie" + #: app/interface.c:312 msgid "" "Foreground & background colors. The black and white squares reset colors. " @@ -2844,8 +2935,8 @@ msgstr "Gradatie" msgid "Guide procedures" msgstr "Beeldbron" -#: app/internal_procs.c:122 app/preferences_dialog.c:1772 -#: app/preferences_dialog.c:1774 +#: app/internal_procs.c:122 app/preferences_dialog.c:1733 +#: app/preferences_dialog.c:1735 msgid "Interface" msgstr "" @@ -2882,7 +2973,7 @@ msgstr "Patronen" #: app/internal_procs.c:146 #, fuzzy msgid "Plug-in" -msgstr "\t\tplug-ins.\n" +msgstr "plug-ins.\n" #: app/internal_procs.c:149 msgid "Procedural database" @@ -3275,171 +3366,159 @@ msgid "degrees" msgstr "" #. /File -#: app/menus.c:82 +#. the underscore installs an accelerator using the character that follows +#: app/menus.c:85 #, fuzzy msgid "/_File" msgstr "Vultype" -#: app/menus.c:84 app/menus.c:191 +#. /File +#: app/menus.c:87 app/menus.c:193 #, fuzzy msgid "/File/New..." msgstr "/Bestand/Open" -#: app/menus.c:86 app/menus.c:193 +#: app/menus.c:89 app/menus.c:195 #, fuzzy msgid "/File/Open..." msgstr "/Bestand/Open" -#: app/menus.c:93 +#: app/menus.c:96 #, fuzzy msgid "/File/Acquire" msgstr "/Bestand/Afsluiten" -#: app/menus.c:98 +#: app/menus.c:101 msgid "/File/Preferences..." msgstr "" -#: app/menus.c:105 -#, fuzzy -msgid "/File/Dialogs" -msgstr "/Bestand/Sluit" - -#: app/menus.c:107 +#: app/menus.c:108 #, fuzzy msgid "/File/Dialogs/Layers, Channels & Paths..." msgstr "Documentindex" -#: app/menus.c:109 +#: app/menus.c:110 #, fuzzy msgid "/File/Dialogs/Tool Options..." msgstr "Fliphulpopties" -#: app/menus.c:114 +#: app/menus.c:115 #, fuzzy msgid "/File/Dialogs/Brushes..." msgstr "Documentindex" -#: app/menus.c:116 +#: app/menus.c:117 #, fuzzy msgid "/File/Dialogs/Patterns..." msgstr "Fliphulpopties" -#: app/menus.c:118 +#: app/menus.c:119 #, fuzzy msgid "/File/Dialogs/Gradients..." msgstr "Documentindex" -#: app/menus.c:120 +#: app/menus.c:121 #, fuzzy msgid "/File/Dialogs/Palette..." msgstr "Kleurenpalet" -#: app/menus.c:122 +#: app/menus.c:123 #, fuzzy msgid "/File/Dialogs/Indexed Palette..." msgstr "Kleurenpalet" -#: app/menus.c:127 +#: app/menus.c:128 #, fuzzy msgid "/File/Dialogs/Input Devices..." msgstr "Fliphulpopties" -#: app/menus.c:129 +#: app/menus.c:130 #, fuzzy msgid "/File/Dialogs/Device Status..." msgstr "Apperaat Status" -#: app/menus.c:134 +#: app/menus.c:135 #, fuzzy msgid "/File/Dialogs/Document Index..." msgstr "Documentindex" -#: app/menus.c:136 +#: app/menus.c:137 #, fuzzy msgid "/File/Dialogs/Error Console..." msgstr "Fliphulpopties" -#: app/menus.c:138 +#: app/menus.c:139 #, fuzzy msgid "/File/Dialogs/Display Filters..." msgstr "Fliphulpopties" -#: app/menus.c:148 app/menus.c:206 +#: app/menus.c:149 app/menus.c:208 #, fuzzy msgid "/File/Quit" msgstr "/Bestand/Afsluiten" #. /Xtns -#: app/menus.c:153 +#. the underscore installs an accelerator using the character that follows +#: app/menus.c:155 #, fuzzy msgid "/_Xtns" msgstr "Selectie" -#: app/menus.c:155 +#: app/menus.c:157 #, fuzzy msgid "/Xtns/Module Browser..." msgstr "Fliphulpopties" #. /Help -#: app/menus.c:163 +#. the underscore installs an accelerator using the character that follows +#: app/menus.c:166 msgid "/_Help" msgstr "" -#: app/menus.c:165 +#: app/menus.c:168 #, fuzzy msgid "/Help/Help..." msgstr "/Bestand/Afsluiten" -#: app/menus.c:167 +#: app/menus.c:170 msgid "/Help/Context Help..." msgstr "" -#: app/menus.c:169 +#: app/menus.c:172 #, fuzzy msgid "/Help/Tip of the Day..." msgstr "GIMP Tip van de dag" -#: app/menus.c:171 +#: app/menus.c:174 #, fuzzy msgid "/Help/About..." msgstr "/Bestand/Afsluiten" -#: app/menus.c:173 +#: app/menus.c:176 msgid "/Help/Dump Items (Debug)" msgstr "" -#. /File -#: app/menus.c:189 -#, fuzzy -msgid "/File" -msgstr "Vultype" - -#: app/menus.c:195 +#: app/menus.c:197 #, fuzzy msgid "/File/Save" msgstr "/Bestand/Bewaar" -#: app/menus.c:197 +#: app/menus.c:199 #, fuzzy msgid "/File/Save As..." msgstr "/Bestand/Bewaar als" -#: app/menus.c:199 +#: app/menus.c:201 #, fuzzy msgid "/File/Revert" msgstr "/Bestand/Bewaar" -#: app/menus.c:204 +#: app/menus.c:206 #, fuzzy msgid "/File/Close" msgstr "/Bestand/Sluit" #. /Edit -#: app/menus.c:214 -#, fuzzy -msgid "/Edit" -msgstr "Verander" - #: app/menus.c:216 #, fuzzy msgid "/Edit/Undo" @@ -3478,806 +3557,707 @@ msgstr "/Editeer/Plak met naam" #. /Edit/Buffer #: app/menus.c:236 #, fuzzy -msgid "/Edit/Buffer" -msgstr "/Editeer/Wis" - -#: app/menus.c:238 -#, fuzzy msgid "/Edit/Buffer/Cut Named..." msgstr "/Editeer/Knip met naam" -#: app/menus.c:240 +#: app/menus.c:238 #, fuzzy msgid "/Edit/Buffer/Copy Named..." msgstr "/Editeer/Kopieer met naam" -#: app/menus.c:242 +#: app/menus.c:240 #, fuzzy msgid "/Edit/Buffer/Paste Named..." msgstr "/Editeer/Plak met naam" -#: app/menus.c:247 +#: app/menus.c:245 #, fuzzy msgid "/Edit/Clear" msgstr "/Editeer/Wis" -#: app/menus.c:249 +#: app/menus.c:247 #, fuzzy msgid "/Edit/Fill" msgstr "/Editeer/Vul" -#: app/menus.c:251 +#: app/menus.c:249 #, fuzzy msgid "/Edit/Stroke" msgstr "/Editeer/Stroke" #. /Select -#: app/menus.c:259 -#, fuzzy -msgid "/Select" -msgstr "Selectie" - -#: app/menus.c:261 +#: app/menus.c:257 #, fuzzy msgid "/Select/Invert" msgstr "Selectie" -#: app/menus.c:263 +#: app/menus.c:259 #, fuzzy msgid "/Select/All" msgstr "Selectie" -#: app/menus.c:265 +#: app/menus.c:261 #, fuzzy msgid "/Select/None" msgstr "Selectie" -#: app/menus.c:267 +#: app/menus.c:263 #, fuzzy msgid "/Select/Float" msgstr "Selectie" -#: app/menus.c:272 +#: app/menus.c:268 #, fuzzy msgid "/Select/Feather..." msgstr "Selectie" -#: app/menus.c:274 +#: app/menus.c:270 #, fuzzy msgid "/Select/Sharpen" msgstr "Scherp" -#: app/menus.c:276 +#: app/menus.c:272 #, fuzzy msgid "/Select/Shrink..." msgstr "Selectie" -#: app/menus.c:278 +#: app/menus.c:274 #, fuzzy msgid "/Select/Grow..." msgstr "Selectie" -#: app/menus.c:280 +#: app/menus.c:276 #, fuzzy msgid "/Select/Border..." msgstr "Selectiemodus" -#: app/menus.c:285 +#: app/menus.c:281 #, fuzzy msgid "/Select/Save to Channel" msgstr "/Selecteer/Bewaar in kanaal" #. /View -#: app/menus.c:290 -#, fuzzy -msgid "/View" -msgstr "/Zicht/Punt voor punt" - -#: app/menus.c:292 +#: app/menus.c:286 msgid "/View/Zoom In" msgstr "" -#: app/menus.c:294 +#: app/menus.c:288 #, fuzzy msgid "/View/Zoom Out" msgstr "/Zicht/Punt voor punt" #. /View/Zoom -#: app/menus.c:299 -#, fuzzy -msgid "/View/Zoom" -msgstr "/Zicht/Punt voor punt" - -#: app/menus.c:301 +#: app/menus.c:293 msgid "/View/Zoom/16:1" msgstr "" -#: app/menus.c:303 +#: app/menus.c:295 msgid "/View/Zoom/8:1" msgstr "" -#: app/menus.c:305 +#: app/menus.c:297 msgid "/View/Zoom/4:1" msgstr "" -#: app/menus.c:307 +#: app/menus.c:299 msgid "/View/Zoom/2:1" msgstr "" -#: app/menus.c:309 +#: app/menus.c:301 msgid "/View/Zoom/1:1" msgstr "" -#: app/menus.c:311 +#: app/menus.c:303 msgid "/View/Zoom/1:2" msgstr "" -#: app/menus.c:313 +#: app/menus.c:305 msgid "/View/Zoom/1:4" msgstr "" -#: app/menus.c:315 +#: app/menus.c:307 msgid "/View/Zoom/1:8" msgstr "" -#: app/menus.c:317 +#: app/menus.c:309 msgid "/View/Zoom/1:16" msgstr "" -#: app/menus.c:320 +#: app/menus.c:312 #, fuzzy msgid "/View/Dot for Dot" msgstr "/Zicht/Punt voor punt" -#: app/menus.c:325 +#: app/menus.c:317 msgid "/View/Info Window..." msgstr "" -#: app/menus.c:327 +#: app/menus.c:319 msgid "/View/Nav. Window..." msgstr "" -#: app/menus.c:329 -#, fuzzy -msgid "/View/Undo History..." -msgstr "/Editeer/Kopieer" - -#: app/menus.c:334 +#: app/menus.c:324 #, fuzzy msgid "/View/Toggle Selection" msgstr "/Zicht/Linealen" -#: app/menus.c:336 +#: app/menus.c:326 #, fuzzy msgid "/View/Toggle Rulers" msgstr "/Zicht/Linealen" -#: app/menus.c:338 +#: app/menus.c:328 #, fuzzy msgid "/View/Toggle Statusbar" msgstr "/Zicht/Statusbalk" -#: app/menus.c:340 +#: app/menus.c:330 #, fuzzy msgid "/View/Toggle Guides" msgstr "/Zicht/Hulplijnen" -#: app/menus.c:342 +#: app/menus.c:332 #, fuzzy msgid "/View/Snap to Guides" msgstr "/Zicht/Snap To Guides" -#: app/menus.c:347 +#: app/menus.c:337 msgid "/View/New View" msgstr "" -#: app/menus.c:349 +#: app/menus.c:339 msgid "/View/Shrink Wrap" msgstr "" -#. /Image -#: app/menus.c:357 -#, fuzzy -msgid "/Image" -msgstr "Nieuwe beeld" - #. /Image/Mode -#: app/menus.c:362 -#, fuzzy -msgid "/Image/Mode" -msgstr "/Beeld/RGB" - -#: app/menus.c:364 +#: app/menus.c:344 #, fuzzy msgid "/Image/Mode/RGB" msgstr "/Beeld/RGB" -#: app/menus.c:366 +#: app/menus.c:346 #, fuzzy msgid "/Image/Mode/Grayscale" msgstr "/Beeld/Grijswaarden" -#: app/menus.c:368 +#: app/menus.c:348 #, fuzzy msgid "/Image/Mode/Indexed..." msgstr "/Beeld/Geindexeerd" #. /Image/Colors -#: app/menus.c:376 -#, fuzzy -msgid "/Image/Colors" -msgstr "/Beeld/Kleuren/Inverteren" - -#: app/menus.c:381 +#: app/menus.c:356 #, fuzzy msgid "/Image/Colors/Desaturate" msgstr "/Beeld/Kleuren/Desaturate" -#: app/menus.c:383 +#: app/menus.c:358 #, fuzzy msgid "/Image/Colors/Invert" msgstr "/Beeld/Kleuren/Inverteren" #. /Image/Colors/Auto -#: app/menus.c:391 -#, fuzzy -msgid "/Image/Colors/Auto" -msgstr "/Beeld/Kleuren/Inverteren" - -#: app/menus.c:393 +#: app/menus.c:366 #, fuzzy msgid "/Image/Colors/Auto/Equalize" msgstr "/Beeld/Kleuren/Krommen" #. /Image/Alpha -#: app/menus.c:401 -#, fuzzy -msgid "/Image/Alpha" -msgstr "Schaal instellen" - -#: app/menus.c:403 +#: app/menus.c:374 #, fuzzy msgid "/Image/Alpha/Add Alpha Channel" msgstr "/Beeld/Alfa/Voeg Alfa Kanaal toe" #. /Image/Transforms -#: app/menus.c:408 -#, fuzzy -msgid "/Image/Transforms" -msgstr "/Beeld/Kleuren" - -#: app/menus.c:410 +#: app/menus.c:379 #, fuzzy msgid "/Image/Transforms/Offset..." msgstr "/Beeld/Kleuren" -#: app/menus.c:412 +#: app/menus.c:381 #, fuzzy msgid "/Image/Transforms/Rotate" msgstr "/Beeld/Kleuren/Inverteren" -#: app/menus.c:419 +#: app/menus.c:388 #, fuzzy msgid "/Image/Canvas Size..." msgstr "Afmeting instellen" -#: app/menus.c:421 +#: app/menus.c:390 #, fuzzy msgid "/Image/Scale Image..." msgstr "Schaal instellen" -#: app/menus.c:423 +#: app/menus.c:392 #, fuzzy msgid "/Image/Duplicate" msgstr "/Beeld/Kanaal Ops/Offset" #. /Layers -#: app/menus.c:431 -#, fuzzy -msgid "/Layers" -msgstr "Tekstlaag" - -#: app/menus.c:433 +#: app/menus.c:400 #, fuzzy msgid "/Layers/Layers, Channels & Paths..." msgstr "/Lagen/Voeg Alfa Kanaal toe" -#. /Layers/Stack -#: app/menus.c:438 +#: app/menus.c:404 #, fuzzy -msgid "/Layers/Stack" +msgid "/Layers/Layer to Imagesize" msgstr "/Lagen/Verhoog Laag" -#: app/menus.c:440 +#. /Layers/Stack +#: app/menus.c:409 #, fuzzy msgid "/Layers/Stack/Previous Layer" msgstr "/Lagen/Verhoog Laag" -#: app/menus.c:442 +#: app/menus.c:411 #, fuzzy msgid "/Layers/Stack/Next Layer" msgstr "/Lagen/Verhoog Laag" -#: app/menus.c:444 +#: app/menus.c:413 #, fuzzy msgid "/Layers/Stack/Raise Layer" msgstr "/Lagen/Verhoog Laag" -#: app/menus.c:446 +#: app/menus.c:415 #, fuzzy msgid "/Layers/Stack/Lower Layer" msgstr "/Lagen/Verlaag Laag" -#: app/menus.c:448 +#: app/menus.c:417 #, fuzzy msgid "/Layers/Stack/Layer to Top" msgstr "/Lagen/Verhoog Laag" -#: app/menus.c:450 +#: app/menus.c:419 #, fuzzy msgid "/Layers/Stack/Layer to Bottom" msgstr "Laag is reeds op de bodem" #. /Layers/Rotate -#: app/menus.c:457 +#: app/menus.c:426 #, fuzzy msgid "/Layers/Rotate" msgstr "/Lagen/Verhoog Laag" -#: app/menus.c:460 -#, fuzzy -msgid "/Layers/Layer to Imagesize" -msgstr "/Lagen/Verhoog Laag" - -#: app/menus.c:465 +#: app/menus.c:431 #, fuzzy msgid "/Layers/Anchor Layer" msgstr "/Lagen/Veranker Laag" -#: app/menus.c:467 +#: app/menus.c:433 #, fuzzy msgid "/Layers/Merge Visible Layers..." msgstr "/Lagen/Voeg Zichtbare Lagen Samen" -#: app/menus.c:469 +#: app/menus.c:435 #, fuzzy msgid "/Layers/Flatten Image" msgstr "/Lagen/Verhoog Laag" -#: app/menus.c:474 +#: app/menus.c:440 #, fuzzy msgid "/Layers/Mask to Selection" msgstr "Rand Selectie" -#: app/menus.c:479 +#: app/menus.c:445 #, fuzzy msgid "/Layers/Add Alpha Channel" msgstr "/Lagen/Voeg Alfa Kanaal toe" -#: app/menus.c:481 +#: app/menus.c:447 #, fuzzy msgid "/Layers/Alpha to Selection" msgstr "Penseel Selectie" #. /Tools -#: app/menus.c:489 -msgid "/Tools" -msgstr "" - -#: app/menus.c:491 +#: app/menus.c:455 msgid "/Tools/Toolbox" msgstr "" -#: app/menus.c:493 +#: app/menus.c:457 msgid "/Tools/Default Colors" msgstr "" -#: app/menus.c:495 +#: app/menus.c:459 msgid "/Tools/Swap Colors" msgstr "" -#: app/menus.c:501 -#, fuzzy -msgid "/Tools/Select Tools" -msgstr "Selectie" - -#: app/menus.c:503 -#, fuzzy -msgid "/Tools/Transform Tools" -msgstr "/Beeld/Kleuren" - -#: app/menus.c:505 -msgid "/Tools/Paint Tools" -msgstr "" - #. /Dialogs -#: app/menus.c:510 -#, fuzzy -msgid "/Dialogs" -msgstr "Kleurenpalet" - -#: app/menus.c:512 +#: app/menus.c:466 #, fuzzy msgid "/Dialogs/Layers, Channels & Paths..." msgstr "Documentindex" -#: app/menus.c:514 +#: app/menus.c:468 #, fuzzy msgid "/Dialogs/Tool Options..." msgstr "Kloonhulp Opties" -#: app/menus.c:519 +#: app/menus.c:473 #, fuzzy msgid "/Dialogs/Brushes..." msgstr "Apperaat Status" -#: app/menus.c:521 +#: app/menus.c:475 #, fuzzy msgid "/Dialogs/Patterns..." msgstr "Kleurenpalet" -#: app/menus.c:523 +#: app/menus.c:477 #, fuzzy msgid "/Dialogs/Gradients..." msgstr "Apperaat Status" -#: app/menus.c:525 +#: app/menus.c:479 #, fuzzy msgid "/Dialogs/Palette..." msgstr "Kleurenpalet" -#: app/menus.c:527 +#: app/menus.c:481 #, fuzzy msgid "/Dialogs/Indexed Palette..." msgstr "Kleurenpalet" -#: app/menus.c:532 +#: app/menus.c:486 #, fuzzy msgid "/Dialogs/Input Devices..." msgstr "Apperaat Status" -#: app/menus.c:534 +#: app/menus.c:488 #, fuzzy msgid "/Dialogs/Device Status..." msgstr "Apperaat Status" -#: app/menus.c:539 +#: app/menus.c:493 #, fuzzy msgid "/Dialogs/Document Index..." msgstr "Documentindex" -#: app/menus.c:541 +#: app/menus.c:495 #, fuzzy msgid "/Dialogs/Error Console..." msgstr "Fliphulpopties" -#: app/menus.c:543 +#: app/menus.c:497 #, fuzzy msgid "/Dialogs/Display Filters..." msgstr "Kleurenpalet" -#. /Filters -#: app/menus.c:551 +#: app/menus.c:499 #, fuzzy -msgid "/Filters" -msgstr "Vultype" +msgid "/Dialogs/Undo History..." +msgstr "/Editeer/Kopieer" -#: app/menus.c:553 +#. /Filters +#: app/menus.c:508 #, fuzzy msgid "/Filters/Repeat Last" msgstr "/Bestand/Bewaar" -#: app/menus.c:555 +#: app/menus.c:510 #, fuzzy msgid "/Filters/Re-Show Last" msgstr "Vultype" -#: app/menus.c:561 +#: app/menus.c:515 #, fuzzy msgid "/Filters/Blur" msgstr "Vultype" -#: app/menus.c:564 +#: app/menus.c:517 #, fuzzy msgid "/Filters/Colors" msgstr "/Bestand/Sluit" -#: app/menus.c:569 +#: app/menus.c:519 #, fuzzy msgid "/Filters/Noise" msgstr "Vultype" -#: app/menus.c:571 +#: app/menus.c:521 msgid "/Filters/Edge-Detect" msgstr "" -#: app/menus.c:573 +#: app/menus.c:523 #, fuzzy msgid "/Filters/Enhance" msgstr "Vultype" -#: app/menus.c:575 +#: app/menus.c:525 #, fuzzy msgid "/Filters/Generic" msgstr "/Filters" -#: app/menus.c:580 +#: app/menus.c:530 #, fuzzy msgid "/Filters/Glass Effects" msgstr "/Filters" -#: app/menus.c:582 +#: app/menus.c:532 #, fuzzy msgid "/Filters/Light Effects" msgstr "/Filters" -#: app/menus.c:584 +#: app/menus.c:534 #, fuzzy msgid "/Filters/Distorts" msgstr "/Bestand/Sluit" -#: app/menus.c:586 +#: app/menus.c:536 #, fuzzy msgid "/Filters/Artistic" msgstr "Vultype" -#: app/menus.c:588 +#: app/menus.c:538 #, fuzzy msgid "/Filters/Map" msgstr "Vultype" -#: app/menus.c:590 +#: app/menus.c:540 #, fuzzy msgid "/Filters/Render" msgstr "/Bestand/Bewaar" -#: app/menus.c:592 +#: app/menus.c:542 #, fuzzy msgid "/Filters/Web" msgstr "Vultype" -#: app/menus.c:597 +#: app/menus.c:547 #, fuzzy msgid "/Filters/Animation" msgstr "/Filters" -#: app/menus.c:599 +#: app/menus.c:549 #, fuzzy msgid "/Filters/Combine" msgstr "/Bestand/Sluit" -#: app/menus.c:604 +#: app/menus.c:554 #, fuzzy msgid "/Filters/Toys" msgstr "Vultype" -#. /Script-Fu -#: app/menus.c:609 -msgid "/Script-Fu" -msgstr "" - -#: app/menus.c:620 +#: app/menus.c:567 msgid "/Automatic" msgstr "/Automatisch" -#: app/menus.c:634 +#: app/menus.c:581 #, fuzzy msgid "/By Extension" msgstr "/Door extensie" -#: app/menus.c:648 +#: app/menus.c:595 #, fuzzy msgid "/New Layer..." msgstr "Tekstlaag" #. /Stack -#: app/menus.c:653 -#, fuzzy -msgid "/Stack" -msgstr "/Lagen/Verhoog Laag" - -#: app/menus.c:655 +#: app/menus.c:600 #, fuzzy msgid "/Stack/Raise Layer" msgstr "/Lagen/Verhoog Laag" -#: app/menus.c:657 +#: app/menus.c:602 #, fuzzy msgid "/Stack/Lower Layer" msgstr "/Lagen/Verlaag Laag" -#: app/menus.c:659 +#: app/menus.c:604 #, fuzzy msgid "/Stack/Layer to Top" msgstr "/Lagen/Verhoog Laag" -#: app/menus.c:661 +#: app/menus.c:606 #, fuzzy msgid "/Stack/Layer to Bottom" msgstr "Laag is reeds op de bodem" -#: app/menus.c:664 +#: app/menus.c:609 #, fuzzy msgid "/Duplicate Layer" msgstr "Dupliceer Kanaal" -#: app/menus.c:666 +#: app/menus.c:611 #, fuzzy msgid "/Anchor Layer" msgstr "/Lagen/Veranker Laag" -#: app/menus.c:668 +#: app/menus.c:613 #, fuzzy msgid "/Delete Layer" msgstr "Tekstlaag" -#: app/menus.c:673 +#: app/menus.c:618 msgid "/Layer Boundary Size..." msgstr "" -#: app/menus.c:675 +#: app/menus.c:620 #, fuzzy msgid "/Layer to Imagesize" msgstr "/Lagen/Verhoog Laag" -#: app/menus.c:677 +#: app/menus.c:622 #, fuzzy msgid "/Scale Layer..." msgstr "Tekstlaag" -#: app/menus.c:682 +#: app/menus.c:627 #, fuzzy msgid "/Merge Visible Layers..." msgstr "/Lagen/Voeg Zichtbare Lagen Samen" -#: app/menus.c:684 +#: app/menus.c:629 #, fuzzy msgid "/Merge Down" msgstr "Samenvoegen" -#: app/menus.c:686 +#: app/menus.c:631 #, fuzzy msgid "/Flatten Image" msgstr "/Lagen/Verhoog Laag" -#: app/menus.c:691 +#: app/menus.c:636 msgid "/Add Layer Mask..." msgstr "" -#: app/menus.c:693 +#: app/menus.c:638 msgid "/Apply Layer Mask" msgstr "" -#: app/menus.c:695 +#: app/menus.c:640 #, fuzzy msgid "/Delete Layer Mask" msgstr "Tekstlaag" -#: app/menus.c:697 +#: app/menus.c:642 #, fuzzy msgid "/Mask to Selection" msgstr "Rand Selectie" -#: app/menus.c:702 +#: app/menus.c:647 #, fuzzy msgid "/Add Alpha Channel" msgstr "/Lagen/Voeg Alfa Kanaal toe" -#: app/menus.c:704 +#: app/menus.c:649 #, fuzzy msgid "/Alpha to Selection" msgstr "Penseel Selectie" -#: app/menus.c:709 +#: app/menus.c:654 #, fuzzy msgid "/Edit Layer Attributes..." msgstr "Editeer Kanaalattributen" -#: app/menus.c:720 +#: app/menus.c:665 #, fuzzy msgid "/New Channel..." msgstr "Nieuw kanaal" -#: app/menus.c:722 +#: app/menus.c:667 #, fuzzy msgid "/Raise Channel" msgstr "Verhoog Kanaal" -#: app/menus.c:724 +#: app/menus.c:669 #, fuzzy msgid "/Lower Channel" msgstr "Verlaag Kanaal" -#: app/menus.c:726 +#: app/menus.c:671 #, fuzzy msgid "/Duplicate Channel" msgstr "Dupliceer Kanaal" -#: app/menus.c:731 +#: app/menus.c:676 #, fuzzy msgid "/Channel to Selection" msgstr "Kleurselectie" -#: app/menus.c:733 +#: app/menus.c:678 #, fuzzy msgid "/Add to Selection" msgstr "Door Kleurselectie" -#: app/menus.c:735 +#: app/menus.c:680 #, fuzzy msgid "/Subtract from Selection" msgstr "Door Kleurselectie" -#: app/menus.c:737 +#: app/menus.c:682 #, fuzzy msgid "/Intersect with Selection" msgstr "Penseel Selectie" -#: app/menus.c:742 +#: app/menus.c:687 #, fuzzy msgid "/Delete Channel" msgstr "Verwijder Kanaal" -#: app/menus.c:747 +#: app/menus.c:692 #, fuzzy msgid "/Edit Channel Attributes..." msgstr "Editeer Kanaalattributen" -#: app/menus.c:758 +#: app/menus.c:703 #, fuzzy msgid "/New Path" msgstr "Nieuw palet" -#: app/menus.c:760 +#: app/menus.c:705 #, fuzzy msgid "/Duplicate Path" msgstr "Dupliceer Kanaal" -#: app/menus.c:762 +#: app/menus.c:707 #, fuzzy msgid "/Path to Selection" msgstr "Verwijder selectie" -#: app/menus.c:764 +#: app/menus.c:709 #, fuzzy msgid "/Selection to Path" msgstr "Selectie" -#: app/menus.c:766 +#: app/menus.c:711 msgid "/Stroke Path" msgstr "" -#: app/menus.c:768 +#: app/menus.c:713 #, fuzzy msgid "/Delete Path" msgstr "Verwijder" -#: app/menus.c:773 +#: app/menus.c:718 #, fuzzy msgid "/Copy Path" msgstr "Kopieer gradatie" -#: app/menus.c:775 +#: app/menus.c:720 #, fuzzy msgid "/Paste Path" msgstr "Plakken" -#: app/menus.c:777 +#: app/menus.c:722 #, fuzzy msgid "/Import Path..." msgstr "Importeer Palet" -#: app/menus.c:779 +#: app/menus.c:724 #, fuzzy msgid "/Export Path..." msgstr "Importeer Palet" -#: app/menus.c:784 +#: app/menus.c:729 #, fuzzy msgid "/Edit Path Attributes..." msgstr "Editeer Kanaalattributen" -#: app/menus.c:1310 +#: app/menus.c:1260 #, c-format msgid "Error opening file: %s\n" msgstr "" @@ -4385,7 +4365,7 @@ msgstr "Ratio: " msgid "Autoload during startup" msgstr "" -#: app/move.c:456 +#: app/move.c:458 #, fuzzy msgid "Move Tool" msgstr "Kloonhulp Opties" @@ -4400,7 +4380,7 @@ msgstr "Wis bewaarde vensterposities" msgid "Navigation: No Image" msgstr "" -#: app/paint_core.c:717 +#: app/paint_core.c:735 #, fuzzy msgid "No brushes available for use with this tool." msgstr "Geen patronen beschikbaar voor deze operatie." @@ -4854,523 +4834,516 @@ msgstr "" msgid "You will need to restart GIMP for these changes to take effect." msgstr "U moet GIMP heropstarten om deze veranderingen door te voeren." -#: app/preferences_dialog.c:1459 +#: app/preferences_dialog.c:1002 +#, c-format +msgid "The default comments is limited to %d characters." +msgstr "" + +#: app/preferences_dialog.c:1424 msgid "Preferences" msgstr "" #. The categories tree -#: app/preferences_dialog.c:1481 +#: app/preferences_dialog.c:1446 msgid "Categories" msgstr "" -#: app/preferences_dialog.c:1509 app/preferences_dialog.c:1511 +#: app/preferences_dialog.c:1474 app/preferences_dialog.c:1476 #, fuzzy msgid "New File" msgstr "Vultype" -#: app/preferences_dialog.c:1522 +#: app/preferences_dialog.c:1487 #, fuzzy msgid "Default Image Size and Unit" msgstr "Standaard beelgrootte" -#: app/preferences_dialog.c:1536 +#: app/preferences_dialog.c:1501 msgid "Width" msgstr "Breedte" -#: app/preferences_dialog.c:1538 +#: app/preferences_dialog.c:1503 msgid "Height" msgstr "Hoogte" -#: app/preferences_dialog.c:1568 +#: app/preferences_dialog.c:1533 #, fuzzy msgid "Default Image Resolution and Resolution Unit" msgstr "Standaard beelgrootte" -#: app/preferences_dialog.c:1595 app/preferences_dialog.c:2359 +#: app/preferences_dialog.c:1560 app/preferences_dialog.c:2288 msgid "dpi" msgstr "dpi" -#: app/preferences_dialog.c:1642 +#: app/preferences_dialog.c:1607 #, fuzzy msgid "Default Image Type:" msgstr "Standaard beeldtype" -#: app/preferences_dialog.c:1678 app/preferences_dialog.c:2166 -msgid "Bytes" -msgstr "" - -#: app/preferences_dialog.c:1679 app/preferences_dialog.c:2167 -msgid "KiloBytes" -msgstr "" - -#: app/preferences_dialog.c:1680 app/preferences_dialog.c:2168 -msgid "MegaBytes" -msgstr "" - -#: app/preferences_dialog.c:1686 +#: app/preferences_dialog.c:1618 msgid "Maximum Image Size:" msgstr "" -#: app/preferences_dialog.c:1692 app/preferences_dialog.c:1694 +#: app/preferences_dialog.c:1623 app/preferences_dialog.c:1625 +#, fuzzy +msgid "Default Comment" +msgstr "Standaard" + +#: app/preferences_dialog.c:1633 +msgid "Comment Used for New Images" +msgstr "" + +#: app/preferences_dialog.c:1653 app/preferences_dialog.c:1655 msgid "Display" msgstr "Toon" -#: app/preferences_dialog.c:1702 +#: app/preferences_dialog.c:1663 #, fuzzy msgid "Transparency" msgstr "Transparant" -#: app/preferences_dialog.c:1721 +#: app/preferences_dialog.c:1682 msgid "Light Checks" msgstr "" -#: app/preferences_dialog.c:1722 +#: app/preferences_dialog.c:1683 msgid "Mid-Tone Checks" msgstr "" -#: app/preferences_dialog.c:1723 +#: app/preferences_dialog.c:1684 msgid "Dark Checks" msgstr "" -#: app/preferences_dialog.c:1724 +#: app/preferences_dialog.c:1685 msgid "White Only" msgstr "Enkel wit" -#: app/preferences_dialog.c:1725 +#: app/preferences_dialog.c:1686 msgid "Gray Only" msgstr "Enkel grijs" -#: app/preferences_dialog.c:1726 +#: app/preferences_dialog.c:1687 msgid "Black Only" msgstr "Enkel zwart" -#: app/preferences_dialog.c:1730 +#: app/preferences_dialog.c:1691 #, fuzzy msgid "Transparency Type:" msgstr "Transparantietype" -#: app/preferences_dialog.c:1737 app/preferences_dialog.c:1810 -#: app/preferences_dialog.c:1824 +#: app/preferences_dialog.c:1698 app/preferences_dialog.c:1771 +#: app/preferences_dialog.c:1785 msgid "Small" msgstr "" -#: app/preferences_dialog.c:1738 app/preferences_dialog.c:1811 -#: app/preferences_dialog.c:1825 +#: app/preferences_dialog.c:1699 app/preferences_dialog.c:1772 +#: app/preferences_dialog.c:1786 msgid "Medium" msgstr "" -#: app/preferences_dialog.c:1739 app/preferences_dialog.c:1812 -#: app/preferences_dialog.c:1826 +#: app/preferences_dialog.c:1700 app/preferences_dialog.c:1773 +#: app/preferences_dialog.c:1787 msgid "Large" msgstr "" -#: app/preferences_dialog.c:1743 +#: app/preferences_dialog.c:1704 #, fuzzy msgid "Check Size:" msgstr "Contreleer grootte" -#: app/preferences_dialog.c:1746 +#: app/preferences_dialog.c:1707 #, fuzzy msgid "8-Bit Displays" msgstr "Toon" -#: app/preferences_dialog.c:1751 +#: app/preferences_dialog.c:1712 #, fuzzy msgid "Install Colormap" msgstr "Installeer kleurenmap (enkel 8-bit)" -#: app/preferences_dialog.c:1760 +#: app/preferences_dialog.c:1721 msgid "Colormap Cycling" msgstr "" -#: app/preferences_dialog.c:1809 +#: app/preferences_dialog.c:1770 msgid "Tiny" msgstr "" -#: app/preferences_dialog.c:1813 +#: app/preferences_dialog.c:1774 msgid "Huge" msgstr "" -#: app/preferences_dialog.c:1817 +#: app/preferences_dialog.c:1778 msgid "Preview Size:" msgstr "" -#: app/preferences_dialog.c:1830 +#: app/preferences_dialog.c:1791 msgid "Nav Preview Size:" msgstr "" -#: app/preferences_dialog.c:1840 +#: app/preferences_dialog.c:1801 msgid "Recent Documents List Size:" msgstr "" #. Indicators -#: app/preferences_dialog.c:1844 +#: app/preferences_dialog.c:1805 msgid "Toolbox" msgstr "" -#: app/preferences_dialog.c:1847 +#: app/preferences_dialog.c:1808 msgid "Display Brush, Pattern and Gradient Indicators" msgstr "" -#: app/preferences_dialog.c:1856 +#: app/preferences_dialog.c:1817 msgid "Dialog Behaviour" msgstr "" -#: app/preferences_dialog.c:1858 +#: app/preferences_dialog.c:1819 msgid "Navigation Window per Display" msgstr "" -#: app/preferences_dialog.c:1867 +#: app/preferences_dialog.c:1828 msgid "Info Window Follows Mouse" msgstr "" -#: app/preferences_dialog.c:1878 app/preferences_dialog.c:1880 +#: app/preferences_dialog.c:1839 app/preferences_dialog.c:1841 msgid "Help System" msgstr "" -#: app/preferences_dialog.c:1890 +#: app/preferences_dialog.c:1851 #, fuzzy msgid "Show Tool Tips" msgstr "Toon gereedschaptips" -#: app/preferences_dialog.c:1900 +#: app/preferences_dialog.c:1861 msgid "Context Sensitive Help with \"F1\"" msgstr "" -#: app/preferences_dialog.c:1909 +#: app/preferences_dialog.c:1870 #, fuzzy msgid "Help Browser" msgstr "Fliphulpopties" -#: app/preferences_dialog.c:1921 +#: app/preferences_dialog.c:1882 #, fuzzy msgid "Internal" msgstr "Interval:" -#: app/preferences_dialog.c:1922 +#: app/preferences_dialog.c:1883 msgid "Netscape" msgstr "" -#: app/preferences_dialog.c:1926 +#: app/preferences_dialog.c:1887 msgid "Help Browser to Use:" msgstr "" -#: app/preferences_dialog.c:1931 app/preferences_dialog.c:1933 +#: app/preferences_dialog.c:1892 app/preferences_dialog.c:1894 msgid "Image Windows" msgstr "" -#: app/preferences_dialog.c:1941 +#: app/preferences_dialog.c:1902 msgid "Appearance" msgstr "" -#: app/preferences_dialog.c:1943 +#: app/preferences_dialog.c:1904 msgid "Use \"Dot for Dot\" by default" msgstr "" -#: app/preferences_dialog.c:1952 +#: app/preferences_dialog.c:1913 #, fuzzy msgid "Resize Window on Zoom" msgstr "Pas venstergrootte aan bij vergroten/verkleinen" -#: app/preferences_dialog.c:1961 +#: app/preferences_dialog.c:1922 #, fuzzy msgid "Show Rulers" msgstr "Toon regels" -#: app/preferences_dialog.c:1970 +#: app/preferences_dialog.c:1931 #, fuzzy msgid "Show Statusbar" msgstr "Toon statusbalk" -#: app/preferences_dialog.c:1994 +#: app/preferences_dialog.c:1955 msgid "Marching Ants Speed:" msgstr "" #. Set the currently used string as "Custom" -#: app/preferences_dialog.c:2002 +#: app/preferences_dialog.c:1963 msgid "Custom" msgstr "Eigen" #. set some commonly used format strings -#: app/preferences_dialog.c:2008 +#: app/preferences_dialog.c:1969 msgid "Standard" msgstr "" -#: app/preferences_dialog.c:2013 +#: app/preferences_dialog.c:1974 msgid "Show zoom percentage" msgstr "" -#: app/preferences_dialog.c:2018 +#: app/preferences_dialog.c:1979 #, fuzzy msgid "Show zoom ratio" msgstr "Toon gereedschaptips" -#: app/preferences_dialog.c:2023 +#: app/preferences_dialog.c:1984 msgid "Show reversed zoom ratio" msgstr "" -#: app/preferences_dialog.c:2034 +#: app/preferences_dialog.c:1995 msgid "Image Title Format:" msgstr "" #. End of the title format string -#: app/preferences_dialog.c:2038 +#: app/preferences_dialog.c:1999 msgid "Pointer Movement Feedback" msgstr "" -#: app/preferences_dialog.c:2041 +#: app/preferences_dialog.c:2002 msgid "Perfect-but-Slow Pointer Tracking" msgstr "" -#: app/preferences_dialog.c:2050 +#: app/preferences_dialog.c:2011 msgid "Disable Cursor Updating" msgstr "" -#: app/preferences_dialog.c:2062 app/preferences_dialog.c:2064 +#: app/preferences_dialog.c:2023 app/preferences_dialog.c:2025 #: app/tools.c:1080 msgid "Tool Options" msgstr "" -#: app/preferences_dialog.c:2072 +#: app/preferences_dialog.c:2033 #, fuzzy msgid "Paint Options" msgstr "Paletopties" -#: app/preferences_dialog.c:2075 +#: app/preferences_dialog.c:2036 #, fuzzy msgid "Use Global Paint Options" msgstr "Opties voor kleurbalans" -#: app/preferences_dialog.c:2090 app/preferences_dialog.c:2092 +#: app/preferences_dialog.c:2051 app/preferences_dialog.c:2053 msgid "Environment" msgstr "Omgeving" -#: app/preferences_dialog.c:2100 +#: app/preferences_dialog.c:2061 #, fuzzy msgid "Resource Consumption" msgstr "Bronconfiguratie" -#: app/preferences_dialog.c:2102 +#: app/preferences_dialog.c:2063 #, fuzzy msgid "Conservative Memory Usage" msgstr "Conservatief geheugengebruik" -#: app/preferences_dialog.c:2130 +#: app/preferences_dialog.c:2091 #, fuzzy msgid "Levels of Undo:" msgstr "Niveau om ongedaan maken" -#: app/preferences_dialog.c:2174 -#, fuzzy -msgid "Tile Cache Size:" -msgstr "Contreleer grootte" - -#: app/preferences_dialog.c:2185 +#: app/preferences_dialog.c:2113 msgid "Number of Processors to Use:" msgstr "" -#: app/preferences_dialog.c:2189 app/transform_tool.c:215 +#: app/preferences_dialog.c:2117 app/transform_tool.c:215 msgid "Scaling" msgstr "Schalend" -#: app/preferences_dialog.c:2207 +#: app/preferences_dialog.c:2135 msgid "Nearest Neighbor (Fast)" msgstr "" -#: app/preferences_dialog.c:2211 +#: app/preferences_dialog.c:2139 msgid "Cubic (Slow)" msgstr "" -#: app/preferences_dialog.c:2216 +#: app/preferences_dialog.c:2144 #, fuzzy msgid "Interpolation Type:" msgstr "Kubische interpolatie" -#: app/preferences_dialog.c:2219 +#: app/preferences_dialog.c:2147 #, fuzzy msgid "File Saving" msgstr "/Bestand/Bewaar" -#: app/preferences_dialog.c:2236 app/preferences_dialog.c:2249 +#: app/preferences_dialog.c:2164 app/preferences_dialog.c:2177 msgid "Always" msgstr "" -#: app/preferences_dialog.c:2237 +#: app/preferences_dialog.c:2165 msgid "Never" msgstr "" -#: app/preferences_dialog.c:2241 +#: app/preferences_dialog.c:2169 msgid "Try to Write a Thumbnail File:" msgstr "" -#: app/preferences_dialog.c:2248 +#: app/preferences_dialog.c:2176 msgid "Only when Modified" msgstr "" -#: app/preferences_dialog.c:2253 +#: app/preferences_dialog.c:2181 msgid "\"File > Save\" Saves the Image:" msgstr "" -#: app/preferences_dialog.c:2259 +#: app/preferences_dialog.c:2187 #, fuzzy msgid "Session Management" msgstr "Sessiemanagement" -#: app/preferences_dialog.c:2261 +#: app/preferences_dialog.c:2189 msgid "Session" msgstr "Sessie" -#: app/preferences_dialog.c:2269 +#: app/preferences_dialog.c:2197 #, fuzzy msgid "Window Positions" msgstr "Wis bewaarde vensterposities" -#: app/preferences_dialog.c:2271 +#: app/preferences_dialog.c:2199 #, fuzzy msgid "Save Window Positions on Exit" msgstr "Bewaar vensterposities bij einde" -#: app/preferences_dialog.c:2285 +#: app/preferences_dialog.c:2213 #, fuzzy msgid "Clear Saved Window Positions Now" msgstr "Wis bewaarde vensterposities" -#: app/preferences_dialog.c:2293 +#: app/preferences_dialog.c:2221 #, fuzzy msgid "Always Try to Restore Session" msgstr "Altijd sessie proberen herstellen" -#: app/preferences_dialog.c:2302 +#: app/preferences_dialog.c:2230 #, fuzzy msgid "Devices" msgstr "Apperaat Status" -#: app/preferences_dialog.c:2304 +#: app/preferences_dialog.c:2232 #, fuzzy msgid "Save Device Status on Exit" msgstr "Bewaar apperaattoestand bij einde" -#: app/preferences_dialog.c:2315 app/preferences_dialog.c:2317 +#: app/preferences_dialog.c:2243 app/preferences_dialog.c:2245 msgid "Monitor" msgstr "Beeldscherm" -#: app/preferences_dialog.c:2325 +#: app/preferences_dialog.c:2253 #, fuzzy msgid "Get Monitor Resolution" msgstr "Beeldscherminformatie" -#: app/preferences_dialog.c:2333 +#: app/preferences_dialog.c:2261 #, fuzzy, c-format msgid "(Currently %d x %d dpi)" msgstr "(huidig %d x %d dpi)" -#: app/preferences_dialog.c:2384 +#: app/preferences_dialog.c:2313 #, fuzzy msgid "From X Server" msgstr "van X server" -#: app/preferences_dialog.c:2399 +#: app/preferences_dialog.c:2328 #, fuzzy msgid "Manually:" msgstr "handmatig" -#: app/preferences_dialog.c:2412 app/preferences_dialog.c:2414 +#: app/preferences_dialog.c:2341 app/preferences_dialog.c:2343 msgid "Directories" msgstr "Mappen" -#: app/preferences_dialog.c:2431 +#: app/preferences_dialog.c:2360 msgid "Temp Dir:" msgstr "" -#: app/preferences_dialog.c:2431 +#: app/preferences_dialog.c:2360 msgid "Select Temp Dir" msgstr "" -#: app/preferences_dialog.c:2432 +#: app/preferences_dialog.c:2361 msgid "Swap Dir:" msgstr "" -#: app/preferences_dialog.c:2432 -msgid "Select Swap Dir" -msgstr "" - -#: app/preferences_dialog.c:2468 +#: app/preferences_dialog.c:2397 #, fuzzy msgid "Brushes Directories" msgstr "Mappen" -#: app/preferences_dialog.c:2470 +#: app/preferences_dialog.c:2399 msgid "Select Brushes Dir" msgstr "" -#: app/preferences_dialog.c:2472 +#: app/preferences_dialog.c:2401 msgid "Generated Brushes" msgstr "" -#: app/preferences_dialog.c:2472 +#: app/preferences_dialog.c:2401 #, fuzzy msgid "Generated Brushes Directories" msgstr "Mappen" -#: app/preferences_dialog.c:2474 +#: app/preferences_dialog.c:2403 #, fuzzy msgid "Select Generated Brushes Dir" msgstr "Bewaar Gradaties" -#: app/preferences_dialog.c:2476 +#: app/preferences_dialog.c:2405 #, fuzzy msgid "Patterns Directories" msgstr "Mappen" -#: app/preferences_dialog.c:2478 +#: app/preferences_dialog.c:2407 msgid "Select Patterns Dir" msgstr "" -#: app/preferences_dialog.c:2480 +#: app/preferences_dialog.c:2409 #, fuzzy msgid "Palettes Directories" msgstr "Mappen" -#: app/preferences_dialog.c:2482 +#: app/preferences_dialog.c:2411 #, fuzzy msgid "Select Palettes Dir" msgstr "Voeg palet samen" -#: app/preferences_dialog.c:2484 +#: app/preferences_dialog.c:2413 #, fuzzy msgid "Gradients Directories" msgstr "Gradatie Editor" -#: app/preferences_dialog.c:2486 +#: app/preferences_dialog.c:2415 #, fuzzy msgid "Select Gradients Dir" msgstr "Bewaar Gradaties" -#: app/preferences_dialog.c:2488 +#: app/preferences_dialog.c:2417 #, fuzzy msgid "Plug-Ins" -msgstr "\t\tplug-ins.\n" +msgstr "plug-ins.\n" -#: app/preferences_dialog.c:2488 +#: app/preferences_dialog.c:2417 #, fuzzy msgid "Plug-Ins Directories" msgstr "Mappen" -#: app/preferences_dialog.c:2490 +#: app/preferences_dialog.c:2419 msgid "Select Plug-Ins Dir" msgstr "" -#: app/preferences_dialog.c:2492 +#: app/preferences_dialog.c:2421 #, fuzzy msgid "Modules" msgstr "Modus:" -#: app/preferences_dialog.c:2492 +#: app/preferences_dialog.c:2421 #, fuzzy msgid "Modules Directories" msgstr "Mappen" -#: app/preferences_dialog.c:2494 +#: app/preferences_dialog.c:2423 #, fuzzy msgid "Select Modules Dir" msgstr "Selectiemodus" @@ -5403,7 +5376,7 @@ msgstr "Interne GIMP procedure" #: app/procedural_db_cmds.c:65 #, fuzzy msgid "GIMP Plug-In" -msgstr "\t\tplug-ins.\n" +msgstr "plug-ins.\n" #: app/procedural_db_cmds.c:66 msgid "GIMP Extension" @@ -5445,71 +5418,71 @@ msgstr "" msgid "Selection: " msgstr "Selectie" -#: app/resize.c:154 +#: app/resize.c:156 msgid "Scale Layer" msgstr "" -#: app/resize.c:156 app/resize.c:181 app/tool_options.c:774 +#: app/resize.c:158 app/resize.c:183 app/tool_options.c:774 msgid "Size" msgstr "" -#: app/resize.c:160 +#: app/resize.c:162 #, fuzzy msgid "Scale Image" msgstr "Bewaar Beeld" -#: app/resize.c:162 +#: app/resize.c:164 msgid "Pixel Dimensions" msgstr "" -#: app/resize.c:172 +#: app/resize.c:174 msgid "Set Layer Boundary Size" msgstr "" -#: app/resize.c:177 +#: app/resize.c:179 msgid "Set Canvas Size" msgstr "" #. the original width & height labels -#: app/resize.c:234 app/scale_tool.c:77 +#: app/resize.c:236 app/scale_tool.c:77 #, fuzzy msgid "Original Width:" msgstr "Originele breedte: " #. the new size labels -#: app/resize.c:259 app/resize.c:504 +#: app/resize.c:261 app/resize.c:506 #, fuzzy msgid "New Width:" msgstr "Nieuwe breedte:" #. the scale ratio labels -#: app/resize.c:324 +#: app/resize.c:326 #, fuzzy msgid "Ratio X:" msgstr "X ratio:" #. the x and y offset labels -#: app/resize.c:409 +#: app/resize.c:411 msgid "X:" msgstr "" -#: app/resize.c:490 +#: app/resize.c:492 msgid "Print Size & Display Unit" msgstr "" -#: app/resize.c:1252 +#: app/resize.c:1254 msgid "Scale Error: Both width and height must be greater than zero." msgstr "" "Fout bij instellen van schaal: breedte en hoogte moeten groter zijn dan 0" -#: app/resize.c:1334 +#: app/resize.c:1336 msgid "" "The chosen image size will shrink\n" "some layers completely away.\n" "Is this what you want?" msgstr "" -#: app/resize.c:1338 +#: app/resize.c:1340 msgid "Layer Too Small" msgstr "" @@ -5562,7 +5535,7 @@ msgstr "" msgid "Text Tool" msgstr "Tekstgereedschap" -#: app/text_tool.c:162 app/tool_options.c:233 +#: app/text_tool.c:162 app/tool_options.c:232 msgid "Antialiasing" msgstr "" @@ -5640,111 +5613,111 @@ msgstr "" "Uw GIMP tipbestand is niet gevonden!\n" "Er zou een bestand met de naam " -#: app/tool_options.c:122 +#: app/tool_options.c:121 msgid "This tool has no options." msgstr "" -#: app/tool_options.c:146 +#: app/tool_options.c:145 #, fuzzy msgid "Rectangular Selection" msgstr "Rechthoekige Selectie-opties" -#: app/tool_options.c:148 +#: app/tool_options.c:147 #, fuzzy msgid "Elliptical Selection" msgstr "Selectieopertaties" -#: app/tool_options.c:150 +#: app/tool_options.c:149 #, fuzzy msgid "Free-Hand Selection" msgstr "Selectieopertaties" -#: app/tool_options.c:152 +#: app/tool_options.c:151 #, fuzzy msgid "Fuzzy Selection" msgstr "Selectieopertaties" -#: app/tool_options.c:154 +#: app/tool_options.c:153 #, fuzzy msgid "Bezier Selection" msgstr "Rand Selectie" -#: app/tool_options.c:156 app/tools.c:178 +#: app/tool_options.c:155 app/tools.c:178 msgid "Intelligent Scissors" msgstr "" -#: app/tool_options.c:158 +#: app/tool_options.c:157 #, fuzzy msgid "By-Color Selection" msgstr "Door Kleurselectie" -#: app/tool_options.c:189 +#: app/tool_options.c:188 #, fuzzy msgid "Feather" msgstr "Selectie" -#: app/tool_options.c:297 +#: app/tool_options.c:296 msgid "Fixed Size / Aspect Ratio" msgstr "" -#: app/tool_options.c:363 +#: app/tool_options.c:362 #, fuzzy msgid "Unit:" msgstr "Ongetiteld" -#: app/tool_options.c:448 app/tools.c:376 +#: app/tool_options.c:447 app/tools.c:376 msgid "Bucket Fill" msgstr "" -#: app/tool_options.c:450 +#: app/tool_options.c:449 #, fuzzy msgid "Blend Tool" msgstr "Meng:" -#: app/tool_options.c:452 app/tools.c:412 +#: app/tool_options.c:451 app/tools.c:412 msgid "Pencil" msgstr "" -#: app/tool_options.c:454 app/tools.c:430 +#: app/tool_options.c:453 app/tools.c:430 msgid "Paintbrush" msgstr "" -#: app/tool_options.c:456 app/tools.c:448 +#: app/tool_options.c:455 app/tools.c:448 msgid "Eraser" msgstr "" -#: app/tool_options.c:458 app/tools.c:466 +#: app/tool_options.c:457 app/tools.c:466 msgid "Airbrush" msgstr "" -#: app/tool_options.c:460 +#: app/tool_options.c:459 #, fuzzy msgid "Clone Tool" msgstr "Kloonhulp Opties" -#: app/tool_options.c:462 +#: app/tool_options.c:461 #, fuzzy msgid "Convolver" msgstr "Type van Kromme: " -#: app/tool_options.c:464 +#: app/tool_options.c:463 msgid "Ink Tool" msgstr "" -#: app/tool_options.c:466 app/tools.c:538 app/tools.c:544 +#: app/tool_options.c:465 app/tools.c:538 app/tools.c:544 msgid "Dodge or Burn" msgstr "" -#: app/tool_options.c:468 +#: app/tool_options.c:467 #, fuzzy msgid "Smudge Tool" msgstr "Bewaaropties" -#: app/tool_options.c:583 +#: app/tool_options.c:582 msgid "Incremental" msgstr "Incrementeel" -#: app/tool_options.c:689 +#: app/tool_options.c:688 #, fuzzy msgid "Pressure Sensitivity" msgstr "Lichtheid behouden" @@ -6474,6 +6447,106 @@ msgstr "" msgid "Color History" msgstr "Kleurpikker" +#, fuzzy +#~ msgid "Custom from Editor" +#~ msgstr "Aangepast van editor" + +#~ msgid "" +#~ "The GIMP - GNU Image Manipulation Program\n" +#~ "\n" +#~ msgstr "" +#~ "GIMP - GNU Image Manipulation Program\n" +#~ "\n" + +#~ msgid "For a proper GIMP installation, a subdirectory called\n" +#~ msgstr "Voor een correctie GIMP installatie, moet een submap genaamd\n" + +#~ msgid "Install" +#~ msgstr "Installeren" + +#~ msgid "Ignore" +#~ msgstr "Negeren" + +#, fuzzy +#~ msgid "/File/Dialogs" +#~ msgstr "/Bestand/Sluit" + +#, fuzzy +#~ msgid "/File" +#~ msgstr "Vultype" + +#, fuzzy +#~ msgid "/Edit" +#~ msgstr "Verander" + +#, fuzzy +#~ msgid "/Edit/Buffer" +#~ msgstr "/Editeer/Wis" + +#, fuzzy +#~ msgid "/Select" +#~ msgstr "Selectie" + +#, fuzzy +#~ msgid "/View" +#~ msgstr "/Zicht/Punt voor punt" + +#, fuzzy +#~ msgid "/View/Zoom" +#~ msgstr "/Zicht/Punt voor punt" + +#, fuzzy +#~ msgid "/Image" +#~ msgstr "Nieuwe beeld" + +#, fuzzy +#~ msgid "/Image/Mode" +#~ msgstr "/Beeld/RGB" + +#, fuzzy +#~ msgid "/Image/Colors" +#~ msgstr "/Beeld/Kleuren/Inverteren" + +#, fuzzy +#~ msgid "/Image/Colors/Auto" +#~ msgstr "/Beeld/Kleuren/Inverteren" + +#, fuzzy +#~ msgid "/Image/Alpha" +#~ msgstr "Schaal instellen" + +#, fuzzy +#~ msgid "/Image/Transforms" +#~ msgstr "/Beeld/Kleuren" + +#, fuzzy +#~ msgid "/Layers" +#~ msgstr "Tekstlaag" + +#, fuzzy +#~ msgid "/Layers/Stack" +#~ msgstr "/Lagen/Verhoog Laag" + +#, fuzzy +#~ msgid "/Tools/Select Tools" +#~ msgstr "Selectie" + +#, fuzzy +#~ msgid "/Tools/Transform Tools" +#~ msgstr "/Beeld/Kleuren" + +#, fuzzy +#~ msgid "/Dialogs" +#~ msgstr "Kleurenpalet" + +#, fuzzy +#~ msgid "/Filters" +#~ msgstr "Vultype" + +#, fuzzy +#~ msgid "/Stack" +#~ msgstr "/Lagen/Verhoog Laag" + #, fuzzy #~ msgid "Fill Options" #~ msgstr "Fliphulpopties" @@ -7280,176 +7353,169 @@ msgstr "Kleurpikker" #~ msgid " needs to be created. This\n" #~ msgstr " aangemaakt worden. Deze\n" -#~ msgid "\t\tThe gimprc is used to store personal preferences\n" -#~ msgstr "\t\tgipmrc wordt gebruikt om persoonlijke instellingen te bewaren\n" +#~ msgid "The gimprc is used to store personal preferences\n" +#~ msgstr "gipmrc wordt gebruikt om persoonlijke instellingen te bewaren\n" -#~ msgid "\t\tsuch as default GIMP behaviors & plug-in hotkeys.\n" -#~ msgstr "\t\tzoals standaard GIMP gedrag & plug-in sneltoetsen.\n" +#~ msgid "such as default GIMP behaviors & plug-in hotkeys.\n" +#~ msgstr "zoals standaard GIMP gedrag & plug-in sneltoetsen.\n" -#~ msgid "\t\tPaths to search for brushes, palettes, gradients\n" -#~ msgstr "\t\tPaden om in zoeken naar penselen, paletten en gradaties\n" +#~ msgid "Paths to search for brushes, palettes, gradients\n" +#~ msgstr "Paden om in zoeken naar penselen, paletten en gradaties\n" #, fuzzy -#~ msgid "\t\tpatterns, plug-ins and modules are also configured here.\n" -#~ msgstr "\t\tpatronen en plug-ins worden ook hier geconfigureerd.\n" +#~ msgid "patterns, plug-ins and modules are also configured here.\n" +#~ msgstr "patronen en plug-ins worden ook hier geconfigureerd.\n" #, fuzzy -#~ msgid "\t\tThe unitrc is used to store your user units database.\n" -#~ msgstr "\t\tgipmrc wordt gebruikt om persoonlijke instellingen te bewaren\n" +#~ msgid "The unitrc is used to store your user units database.\n" +#~ msgstr "gipmrc wordt gebruikt om persoonlijke instellingen te bewaren\n" #, fuzzy -#~ msgid "\t\tpoints and picas. This file is overwritten each time\n" -#~ msgstr "\t\twordt gebufferd in dit bestand. Dit bestand wordt\n" +#~ msgid "points and picas. This file is overwritten each time\n" +#~ msgstr "wordt gebufferd in dit bestand. Dit bestand wordt\n" #, fuzzy -#~ msgid "\t\tyou quit the GIMP.\n" +#~ msgid "you quit the GIMP.\n" #~ msgstr "Over GIMP" #, fuzzy -#~ msgid "\t\tPlug-ins and extensions are external programs run by\n" +#~ msgid "Plug-ins and extensions are external programs run by\n" +#~ msgstr "Plug-ins en extensies zijn externe programma's uitgevoerd door\n" + +#~ msgid "the GIMP which provide additional functionality.\n" +#~ msgstr "GIMP die extra functionaliteiten voorzien.\n" + +#~ msgid "These programs are searched for at run-time and\n" +#~ msgstr "Deze programma's worden op tijdens executie gezocht en\n" + +#~ msgid "information about their functionality and mod-times\n" +#~ msgstr "informatie over hun functionaliteit en mod-times\n" + +#~ msgid "is cached in this file. This file is intended to\n" +#~ msgstr "wordt gebufferd in dit bestand. Dit bestand wordt\n" + +#~ msgid "be GIMP-readable only, and should not be edited.\n" +#~ msgstr "enkel door GIMP gelezen, en zou niet ge-editeerd moeten worden.\n" + +#~ msgid "This is a subdirectory which can be used to store\n" +#~ msgstr "Dit is een submap dat gebruikt kan worden om door\n" + +#~ msgid "user defined brushes. The default gimprc file\n" #~ msgstr "" -#~ "\t\tPlug-ins en extensies zijn externe programma's uitgevoerd door\n" - -#~ msgid "\t\tthe GIMP which provide additional functionality.\n" -#~ msgstr "\t\tGIMP die extra functionaliteiten voorzien.\n" - -#~ msgid "\t\tThese programs are searched for at run-time and\n" -#~ msgstr "\t\tDeze programma's worden op tijdens executie gezocht en\n" - -#~ msgid "\t\tinformation about their functionality and mod-times\n" -#~ msgstr "\t\tinformatie over hun functionaliteit en mod-times\n" - -#~ msgid "\t\tis cached in this file. This file is intended to\n" -#~ msgstr "\t\twordt gebufferd in dit bestand. Dit bestand wordt\n" - -#~ msgid "\t\tbe GIMP-readable only, and should not be edited.\n" -#~ msgstr "" -#~ "\t\tenkel door GIMP gelezen, en zou niet ge-editeerd moeten worden.\n" - -#~ msgid "\t\tThis is a subdirectory which can be used to store\n" -#~ msgstr "\t\tDit is een submap dat gebruikt kan worden om door\n" - -#~ msgid "\t\tuser defined brushes. The default gimprc file\n" -#~ msgstr "" -#~ "\t\tgebruiker gedefinieerde penselen in te bewaren. Het standaard gimprc " +#~ "gebruiker gedefinieerde penselen in te bewaren. Het standaard gimprc " #~ "bestand\n" -#~ msgid "\t\tchecks this subdirectory in addition to the system-\n" -#~ msgstr "\t\tcontroleert deze submap als optelling bij de systeemwijde\n" +#~ msgid "checks this subdirectory in addition to the system-\n" +#~ msgstr "controleert deze submap als optelling bij de systeemwijde\n" -#~ msgid "\t\twide gimp brushes installation when searching for\n" -#~ msgstr "\t\tgimp installatie van penselen tijdens het zoeken naar\n" +#~ msgid "wide gimp brushes installation when searching for\n" +#~ msgstr "gimp installatie van penselen tijdens het zoeken naar\n" -#~ msgid "\t\tbrushes.\n" -#~ msgstr "\t\tpenselen.\n" +#~ msgid "brushes.\n" +#~ msgstr "penselen.\n" -#~ msgid "\t\tuser defined gradients. The default gimprc file\n" -#~ msgstr "\t\tzelfgedefinieerde gradaties. Het standaard gimprc bestand\n" +#~ msgid "user defined gradients. The default gimprc file\n" +#~ msgstr "zelfgedefinieerde gradaties. Het standaard gimprc bestand\n" -#~ msgid "\t\twide gimp gradients installation when searching for\n" -#~ msgstr "\t\tgimp installatie van gradaties tijdens het zoeken naar\n" +#~ msgid "wide gimp gradients installation when searching for\n" +#~ msgstr "gimp installatie van gradaties tijdens het zoeken naar\n" -#~ msgid "\t\tgradients.\n" -#~ msgstr "\t\tgradaties.\n" +#~ msgid "gradients.\n" +#~ msgstr "gradaties.\n" -#~ msgid "\t\tuser defined figures to be used by the gfig plug-in.\n" -#~ msgstr "\t\tzelfgedefinieerde figuren voor de gfig plug-in.\n" +#~ msgid "user defined figures to be used by the gfig plug-in.\n" +#~ msgstr "zelfgedefinieerde figuren voor de gfig plug-in.\n" -#~ msgid "\t\tThe default gimprc file checks this subdirectory in\n" -#~ msgstr "\t\tHet standaard gimprc bestand controleert deze submap\n" +#~ msgid "The default gimprc file checks this subdirectory in\n" +#~ msgstr "Het standaard gimprc bestand controleert deze submap\n" -#~ msgid "\t\taddition to the systemwide gimp gfig installation\n" -#~ msgstr "\t\t bovenop de systeemwijde gimp installatie van gfig\n" +#~ msgid "addition to the systemwide gimp gfig installation\n" +#~ msgstr " bovenop de systeemwijde gimp installatie van gfig\n" -#~ msgid "\t\twhen searching for gfig figures.\n" -#~ msgstr "\t\ttijdens het zoeken naar gfig figuren.\n" +#~ msgid "when searching for gfig figures.\n" +#~ msgstr "tijdens het zoeken naar gfig figuren.\n" -#~ msgid "\t\tuser defined gflares to be used by the gflare plug-in.\n" -#~ msgstr "\t\tzelfgedefinieerde gflares voor de gflare plug-in.\n" +#~ msgid "user defined gflares to be used by the gflare plug-in.\n" +#~ msgstr "zelfgedefinieerde gflares voor de gflare plug-in.\n" -#~ msgid "\t\taddition to the systemwide gimp gflares installation\n" -#~ msgstr "\t\ttoevoeging aan de systeemwijde gimp installatie van gflares\n" +#~ msgid "addition to the systemwide gimp gflares installation\n" +#~ msgstr "toevoeging aan de systeemwijde gimp installatie van gflares\n" -#~ msgid "\t\twhen searching for gflares.\n" -#~ msgstr "\t\ttijdens zoeken naar gflares.\n" +#~ msgid "when searching for gflares.\n" +#~ msgstr "tijdens zoeken naar gflares.\n" #, fuzzy -#~ msgid "" -#~ "\t\tuser defined fractals to be used by the FractalExplorer plug-in.\n" -#~ msgstr "\t\tzelfgedefinieerde gflares voor de gflare plug-in.\n" +#~ msgid "user defined fractals to be used by the FractalExplorer plug-in.\n" +#~ msgstr "zelfgedefinieerde gflares voor de gflare plug-in.\n" #, fuzzy -#~ msgid "\t\taddition to the systemwide gimp FractalExplorer installation\n" -#~ msgstr "\t\ttoevoeging aan de systeemwijde gimp installatie van gflares\n" +#~ msgid "addition to the systemwide gimp FractalExplorer installation\n" +#~ msgstr "toevoeging aan de systeemwijde gimp installatie van gflares\n" #, fuzzy -#~ msgid "\t\twhen searching for fractals.\n" -#~ msgstr "\t\ttijdens zoeken naar gflares.\n" +#~ msgid "when searching for fractals.\n" +#~ msgstr "tijdens zoeken naar gflares.\n" -#~ msgid "\t\tuser defined palettes. The default gimprc file\n" -#~ msgstr "\t\tzelfgedefinieerde paletten. Het standaard gimprc bestand\n" +#~ msgid "user defined palettes. The default gimprc file\n" +#~ msgstr "zelfgedefinieerde paletten. Het standaard gimprc bestand\n" -#~ msgid "\t\tchecks only this subdirectory (not the system-wide\n" -#~ msgstr "\t\tcontroleert enkel deze submap (niet de systeemwijde\n" +#~ msgid "checks only this subdirectory (not the system-wide\n" +#~ msgstr "controleert enkel deze submap (niet de systeemwijde\n" -#~ msgid "\t\tinstallation) when searching for palettes. During\n" -#~ msgstr "\t\tinstallatie) tijdens zoeken voor paletten. Gedurende\n" +#~ msgid "installation) when searching for palettes. During\n" +#~ msgstr "installatie) tijdens zoeken voor paletten. Gedurende\n" -#~ msgid "\t\tinstallation, the system palettes will be copied\n" -#~ msgstr "\t\tinstallatie worden de systeempaletten gekopieerd\n" +#~ msgid "installation, the system palettes will be copied\n" +#~ msgstr "installatie worden de systeempaletten gekopieerd\n" -#~ msgid "\t\there. This is done to allow modifications made to\n" -#~ msgstr "\t\tnaar deze plaats. Dit laat wijzigingen toe aan\n" +#~ msgid "here. This is done to allow modifications made to\n" +#~ msgstr "naar deze plaats. Dit laat wijzigingen toe aan\n" -#~ msgid "\t\tpalettes during GIMP execution to persist across\n" -#~ msgstr "\t\tde paletten gedurende de uitvoering van GIMP te blijven\n" +#~ msgid "palettes during GIMP execution to persist across\n" +#~ msgstr "de paletten gedurende de uitvoering van GIMP te blijven\n" -#~ msgid "\t\tsessions.\n" -#~ msgstr "\t\tbestaan doorheen de sessies.\n" +#~ msgid "sessions.\n" +#~ msgstr "bestaan doorheen de sessies.\n" -#~ msgid "\t\tuser defined patterns. The default gimprc file\n" -#~ msgstr "\t\tzefgedefinieerde patronen. Het standaard gimprc bestand\n" +#~ msgid "user defined patterns. The default gimprc file\n" +#~ msgstr "zefgedefinieerde patronen. Het standaard gimprc bestand\n" -#~ msgid "\t\twide gimp patterns installation when searching for\n" -#~ msgstr "\t\tgimp installatie van patronen tijdens zoeken naar\n" +#~ msgid "wide gimp patterns installation when searching for\n" +#~ msgstr "gimp installatie van patronen tijdens zoeken naar\n" -#~ msgid "\t\tpatterns.\n" -#~ msgstr "\t\tpatronen.\n" +#~ msgid "patterns.\n" +#~ msgstr "patronen.\n" -#~ msgid "\t\tuser created, temporary, or otherwise non-system-\n" -#~ msgstr "\t\tzelfgemaakte, tijdelijke of anders niet door het systeem\n" +#~ msgid "user created, temporary, or otherwise non-system-\n" +#~ msgstr "zelfgemaakte, tijdelijke of anders niet door het systeem\n" -#~ msgid "\t\tsupported plug-ins. The default gimprc file\n" -#~ msgstr "\t\tondersteunde plug-ins. Het standaard gimprc bestand\n" +#~ msgid "supported plug-ins. The default gimprc file\n" +#~ msgstr "ondersteunde plug-ins. Het standaard gimprc bestand\n" -#~ msgid "\t\twide GIMP plug-in directories when searching for\n" -#~ msgstr "\t\tGIMP plug-in mappen tijdens zoeken naar\n" +#~ msgid "wide GIMP plug-in directories when searching for\n" +#~ msgstr "GIMP plug-in mappen tijdens zoeken naar\n" -#~ msgid "\t\tplug-ins.\n" -#~ msgstr "\t\tplug-ins.\n" +#~ msgid "plug-ins.\n" +#~ msgstr "plug-ins.\n" #, fuzzy -#~ msgid "\t\tThis subdirectory can be used to store user created,\n" -#~ msgstr "\t\tDit is een submap dat gebruikt kan worden om door\n" +#~ msgid "temporary, or otherwise non-system-supported DLL modules.\n" +#~ msgstr "zelfgemaakte, tijdelijke of anders niet door het systeem\n" #, fuzzy -#~ msgid "\t\ttemporary, or otherwise non-system-supported DLL modules.\n" -#~ msgstr "\t\tzelfgemaakte, tijdelijke of anders niet door het systeem\n" +#~ msgid "The default gimprc file checks this subdirectory\n" +#~ msgstr "Het standaard gimprc bestand controleert deze submap\n" #, fuzzy -#~ msgid "\t\tThe default gimprc file checks this subdirectory\n" -#~ msgstr "\t\tHet standaard gimprc bestand controleert deze submap\n" +#~ msgid "in addition to the system-wide GIMP module directory\n" +#~ msgstr "toevoeging aan de systeemwijde gimp installatie van gflares\n" #, fuzzy -#~ msgid "\t\tin addition to the system-wide GIMP module directory\n" -#~ msgstr "\t\ttoevoeging aan de systeemwijde gimp installatie van gflares\n" +#~ msgid "when searching for modules to load when initialising.\n" +#~ msgstr "tijdens zoeken naar gflares.\n" -#, fuzzy -#~ msgid "\t\twhen searching for modules to load when initialising.\n" -#~ msgstr "\t\ttijdens zoeken naar gflares.\n" - -#~ msgid "\t\tThis subdirectory is used by the GIMP to store \n" -#~ msgstr "\t\tDeze subdirectory wordt door GIMP gebruikt om \n" +#~ msgid "This subdirectory is used by the GIMP to store \n" +#~ msgstr "Deze subdirectory wordt door GIMP gebruikt om \n" #~ msgid "encountered garbage after reading level: %d" #~ msgstr "rommel tegengekomen na het lezen van niveau: %d" diff --git a/po/no.po b/po/no.po index a2f6245fc0..ccb8692dfd 100644 --- a/po/no.po +++ b/po/no.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: gimp 1.1.14\n" -"POT-Creation-Date: 2000-03-03 17:47-0800\n" +"POT-Creation-Date: 2000-03-14 23:09+0100\n" "PO-Revision-Date: 2000-02-26 20:35+01:00\n" "Last-Translator: Kjartan Maraas \n" "Language-Team: Norwegian \n" @@ -61,45 +61,45 @@ msgstr "brakt til deg av" msgid "GIMP Startup" msgstr "GIMP oppstart" -#: app/app_procs.c:479 app/gimprc.c:432 +#: app/app_procs.c:479 app/gimprc.c:448 #, c-format msgid "parsing \"%s\"\n" msgstr "fortolker \"%s\"\n" #. initialize the xcf file format routines -#: app/app_procs.c:539 +#: app/app_procs.c:541 msgid "Looking for data files" msgstr "Ser etter datafiler" -#: app/app_procs.c:539 +#: app/app_procs.c:541 msgid "Parasites" msgstr "Parasitter" #. initialize the global parasite table -#: app/app_procs.c:541 app/internal_procs.c:71 app/preferences_dialog.c:2468 +#: app/app_procs.c:543 app/internal_procs.c:71 app/preferences_dialog.c:2397 msgid "Brushes" msgstr "Pensler" #. initialize the list of gimp brushes -#: app/app_procs.c:543 app/internal_procs.c:143 app/preferences_dialog.c:2476 +#: app/app_procs.c:545 app/internal_procs.c:143 app/preferences_dialog.c:2405 msgid "Patterns" msgstr "MЬnstre" #. initialize the list of gimp patterns -#: app/app_procs.c:545 app/preferences_dialog.c:2480 +#: app/app_procs.c:547 app/preferences_dialog.c:2409 msgid "Palettes" msgstr "Paletter" #. initialize the list of gimp palettes -#: app/app_procs.c:547 app/internal_procs.c:113 app/preferences_dialog.c:2484 +#: app/app_procs.c:549 app/internal_procs.c:113 app/preferences_dialog.c:2413 msgid "Gradients" msgstr "Gradienter" -#: app/app_procs.c:735 +#: app/app_procs.c:737 msgid "Really Quit?" msgstr "Virkelig avslutte?" -#: app/app_procs.c:739 +#: app/app_procs.c:741 msgid "" "Some files unsaved.\n" "\n" @@ -109,21 +109,21 @@ msgstr "" "\n" "Avslutt GIMP?" -#: app/app_procs.c:740 app/install.c:272 app/install.c:430 +#: app/app_procs.c:742 msgid "Quit" msgstr "Avslutt" -#: app/app_procs.c:740 app/brightness_contrast.c:218 app/channel_ops.c:93 +#: app/app_procs.c:742 app/brightness_contrast.c:218 app/channel_ops.c:93 #: app/channels_dialog.c:2463 app/channels_dialog.c:2637 #: app/color_balance.c:275 app/color_notebook.c:125 app/convert.c:506 #: app/curves.c:559 app/file_new_dialog.c:207 app/file_new_dialog.c:357 #: app/gdisplay_color_ui.c:129 app/gdisplay_ops.c:346 app/gimpprogress.c:112 -#: app/global_edit.c:739 app/gradient.c:1769 app/gradient.c:4839 -#: app/gradient.c:5400 app/hue_saturation.c:377 app/interface.c:984 -#: app/layers_dialog.c:3326 app/layers_dialog.c:3517 app/layers_dialog.c:3617 -#: app/layers_dialog.c:3889 app/levels.c:341 app/palette.c:1826 -#: app/posterize.c:201 app/preferences_dialog.c:1469 app/qmask.c:281 -#: app/resize.c:193 app/resize.c:1343 app/threshold.c:275 +#: app/global_edit.c:739 app/gradient.c:1769 app/gradient.c:4841 +#: app/gradient.c:5402 app/hue_saturation.c:377 app/install.c:532 +#: app/interface.c:984 app/layers_dialog.c:3326 app/layers_dialog.c:3517 +#: app/layers_dialog.c:3617 app/layers_dialog.c:3889 app/levels.c:341 +#: app/palette.c:1826 app/posterize.c:201 app/preferences_dialog.c:1434 +#: app/qmask.c:281 app/resize.c:195 app/resize.c:1345 app/threshold.c:275 #: modules/cdisplay_gamma.c:358 msgid "Cancel" msgstr "Avbryt" @@ -144,123 +144,124 @@ msgstr "Kurve ikke lukket!" msgid "Paintbrush operation failed." msgstr "Paintbrush operasjon feilet." -#: app/blend.c:272 +#: app/blend.c:294 msgid "Offset:" msgstr "Avstand:" -#: app/blend.c:283 +#: app/blend.c:305 msgid "FG to BG (RGB)" msgstr "FG til BG (RGB)" -#: app/blend.c:284 +#: app/blend.c:306 msgid "FG to BG (HSV)" msgstr "FG til BG (HSV)" -#: app/blend.c:285 +#: app/blend.c:307 msgid "FG to Transparent" msgstr "FG til transparent" -#: app/blend.c:286 -msgid "Custom from Editor" -msgstr "Egendefinert fra editor" +#: app/blend.c:308 +#, fuzzy +msgid "Custom Gradient" +msgstr "Kopier gradient" -#: app/blend.c:290 +#: app/blend.c:312 msgid "Blend:" msgstr "Blanding:" -#: app/blend.c:298 app/gradient.c:533 app/preferences_dialog.c:2209 +#: app/blend.c:320 app/gradient.c:533 app/preferences_dialog.c:2137 msgid "Linear" msgstr "LineФr" -#: app/blend.c:299 +#: app/blend.c:321 msgid "Bi-Linear" msgstr "Bi-lineФr" -#: app/blend.c:300 +#: app/blend.c:322 msgid "Radial" msgstr "Radial" -#: app/blend.c:301 +#: app/blend.c:323 msgid "Square" msgstr "Firkantet" -#: app/blend.c:302 +#: app/blend.c:324 msgid "Conical (symmetric)" msgstr "Konisk (symmertisk)" -#: app/blend.c:303 +#: app/blend.c:325 msgid "Conical (asymmetric)" msgstr "Konisk (asymmetrisk)" -#: app/blend.c:304 +#: app/blend.c:326 msgid "Shapeburst (angular)" msgstr "Formet fyll (vinklet)" -#: app/blend.c:305 +#: app/blend.c:327 msgid "Shapeburst (spherical)" msgstr "Formet fyll (sfФrisk)" -#: app/blend.c:306 +#: app/blend.c:328 msgid "Shapeburst (dimpled)" msgstr "Formet fyll (prikket)" -#: app/blend.c:307 +#: app/blend.c:329 msgid "Spiral (clockwise)" msgstr "Spiral (med klokken)" -#: app/blend.c:308 +#: app/blend.c:330 msgid "Spiral (anticlockwise)" msgstr "Spiral (mot klokken)" -#: app/blend.c:312 +#: app/blend.c:334 msgid "Gradient:" msgstr "Gradient:" -#: app/blend.c:320 app/preferences_dialog.c:1808 +#: app/blend.c:342 app/preferences_dialog.c:1769 msgid "None" msgstr "Ingen" -#: app/blend.c:321 +#: app/blend.c:343 msgid "Sawtooth Wave" msgstr "Sagtann-bЬlge" -#: app/blend.c:322 +#: app/blend.c:344 msgid "Triangular Wave" msgstr "TriangulФr bЬlge" -#: app/blend.c:326 +#: app/blend.c:348 msgid "Repeat:" msgstr "Gjenta:" -#: app/blend.c:345 +#: app/blend.c:367 msgid "Adaptive Supersampling" msgstr "Tilpassende supersampling" -#: app/blend.c:373 +#: app/blend.c:395 msgid "Max Depth:" msgstr "Maks dybde:" -#: app/blend.c:386 app/bucket_fill.c:127 app/fuzzy_select.c:657 +#: app/blend.c:408 app/bucket_fill.c:127 app/fuzzy_select.c:661 msgid "Threshold:" msgstr "Terskel:" -#: app/blend.c:413 +#: app/blend.c:435 msgid "Blend: Invalid for indexed images." msgstr "Blanding: Ugyldig for indekserte bilder." -#: app/blend.c:438 +#: app/blend.c:460 msgid "Blend: 0, 0" msgstr "Blanding: 0, 0" -#: app/blend.c:501 +#: app/blend.c:523 msgid "Blend operation failed." msgstr "Blandingoperasjon feilet." -#: app/blend.c:507 +#: app/blend.c:529 msgid "Blending..." msgstr "Blanding..." -#: app/blend.c:585 app/blend.c:595 +#: app/blend.c:607 app/blend.c:617 msgid "Blend: " msgstr "Bland: " @@ -279,13 +280,13 @@ msgstr "Lysstyrke-kontrast opererer ikke p #: app/gdisplay_color_ui.c:127 app/gimpui.c:122 app/hue_saturation.c:373 #: app/layers_dialog.c:3324 app/layers_dialog.c:3515 app/layers_dialog.c:3615 #: app/layers_dialog.c:3887 app/levels.c:337 app/module_db.c:281 -#: app/posterize.c:197 app/preferences_dialog.c:1465 app/qmask.c:279 -#: app/resize.c:191 app/resize.c:1343 app/threshold.c:271 +#: app/posterize.c:197 app/preferences_dialog.c:1430 app/qmask.c:279 +#: app/resize.c:193 app/resize.c:1345 app/threshold.c:271 #: modules/cdisplay_gamma.c:351 msgid "OK" msgstr "OK" -#: app/brightness_contrast.c:216 app/by_color_select.c:634 +#: app/brightness_contrast.c:216 app/by_color_select.c:687 #: app/color_balance.c:273 app/curves.c:557 app/file_new_dialog.c:355 #: app/hue_saturation.c:375 app/levels.c:339 app/posterize.c:199 #: app/threshold.c:273 app/tools.c:1086 app/transform_core.c:412 @@ -315,7 +316,7 @@ msgid "Brush Editor" msgstr "Penseleditor" #. The close button -#: app/brush_edit.c:216 app/brush_select.c:278 app/by_color_select.c:636 +#: app/brush_edit.c:216 app/brush_select.c:278 app/by_color_select.c:689 #: app/color_notebook.c:122 app/color_picker.c:297 app/colormap_dialog.i.c:170 #: app/crop.c:1054 app/devices.c:755 app/docindexif.c:105 #: app/errorconsole.c:281 app/gdisplay_ops.c:346 app/gradient.c:801 @@ -329,7 +330,7 @@ msgid "Close" msgstr "Lukk" #. the feather radius scale -#: app/brush_edit.c:276 app/color_picker.c:181 app/tool_options.c:200 +#: app/brush_edit.c:276 app/color_picker.c:181 app/tool_options.c:199 msgid "Radius:" msgstr "Radius:" @@ -359,11 +360,11 @@ msgstr "Oppdater" msgid "No Brushes available" msgstr "Ingen pensler tilgjengelig" -#: app/brush_select.c:445 app/layers_dialog.c:372 app/tool_options.c:505 +#: app/brush_select.c:445 app/layers_dialog.c:372 app/tool_options.c:504 msgid "Opacity:" msgstr "Ugjennomsiktighet:" -#: app/brush_select.c:453 app/layers_dialog.c:324 app/tool_options.c:529 +#: app/brush_select.c:453 app/layers_dialog.c:324 app/tool_options.c:528 msgid "Mode:" msgstr "Modus:" @@ -397,7 +398,7 @@ msgstr "Beklager, denne penselen kan ikke redigeres." msgid "Sorry, this brush can't be deleted." msgstr "Beklager, denne penselen kan ikke slettes." -#: app/bucket_fill.c:147 app/color_picker.c:156 app/tool_options.c:274 +#: app/bucket_fill.c:147 app/color_picker.c:156 app/tool_options.c:273 msgid "Sample Merged" msgstr "PrЬve sammenslЕtt" @@ -427,36 +428,36 @@ msgid "No available patterns for this operation." msgstr "Ingen tilgjengelige mЬnstre for denne operasjonen." #. The shell and main vbox -#: app/by_color_select.c:629 +#: app/by_color_select.c:682 msgid "By Color Selection" msgstr "Ved fargevalg" -#: app/by_color_select.c:685 +#: app/by_color_select.c:738 msgid "Inactive" msgstr "Inaktiv" -#: app/by_color_select.c:693 +#: app/by_color_select.c:746 msgid "Selection Mode" msgstr "Utvalgsmetode" -#: app/by_color_select.c:695 app/paint_funcs.c:100 +#: app/by_color_select.c:748 app/paint_funcs.c:100 msgid "Replace" msgstr "Erstatt" -#: app/by_color_select.c:697 app/colormap_dialog.i.c:127 +#: app/by_color_select.c:750 app/colormap_dialog.i.c:127 #: app/gdisplay_color_ui.c:114 msgid "Add" msgstr "Legg til" -#: app/by_color_select.c:699 app/layers_dialog.c:340 app/tool_options.c:904 +#: app/by_color_select.c:752 app/layers_dialog.c:340 app/tool_options.c:904 msgid "Subtract" msgstr "Trekk fra" -#: app/by_color_select.c:701 +#: app/by_color_select.c:754 msgid "Intersect" msgstr "Kryss" -#: app/by_color_select.c:713 +#: app/by_color_select.c:766 msgid "Fuzziness Threshold" msgstr "Terskel for \"Fuzziness\"" @@ -474,7 +475,7 @@ msgstr "%s kopier" msgid "Selection Mask" msgstr "Utvalgsmaske" -#: app/channel_ops.c:85 app/resize.c:392 +#: app/channel_ops.c:85 app/resize.c:394 msgid "Offset" msgstr "Forskyvning" @@ -484,8 +485,8 @@ msgid "Offset X:" msgstr "Forskyvning X:" #: app/channel_ops.c:115 app/crop.c:1063 app/file_new_dialog.c:530 -#: app/resize.c:330 app/resize.c:415 app/resize.c:573 app/rotate_tool.c:106 -#: app/scale_tool.c:100 app/shear_tool.c:82 +#: app/install.c:1108 app/resize.c:332 app/resize.c:417 app/resize.c:575 +#: app/rotate_tool.c:106 app/scale_tool.c:100 app/shear_tool.c:82 msgid "Y:" msgstr "Y:" @@ -494,12 +495,12 @@ msgstr "Y:" msgid "Wrap Around" msgstr "Bryt rundt" -#: app/channel_ops.c:174 app/image_new.c:69 app/image_new.c:223 +#: app/channel_ops.c:174 app/image_new.c:70 app/image_new.c:234 #: app/layers_dialog.c:3422 msgid "Background" msgstr "Bakgrunn" -#: app/channel_ops.c:175 app/image_new.c:79 app/layers_dialog.c:3424 +#: app/channel_ops.c:175 app/image_new.c:80 app/layers_dialog.c:3424 msgid "Transparent" msgstr "Transparent" @@ -678,19 +679,19 @@ msgstr "Gjennomsnitt" msgid "Update Active Color" msgstr "Oppdater aktiv farge" -#: app/color_picker.c:255 app/color_picker.c:265 +#: app/color_picker.c:255 app/color_picker.c:264 msgid "Red:" msgstr "RЬd:" -#: app/color_picker.c:256 app/color_picker.c:266 +#: app/color_picker.c:256 app/color_picker.c:265 msgid "Green:" msgstr "GrЬnn:" -#: app/color_picker.c:257 app/color_picker.c:267 +#: app/color_picker.c:257 app/color_picker.c:266 msgid "Blue:" msgstr "BlЕ:" -#: app/color_picker.c:258 app/color_picker.c:264 app/color_picker.c:273 +#: app/color_picker.c:258 app/color_picker.c:267 app/color_picker.c:273 msgid "Alpha:" msgstr "Alfa:" @@ -711,13 +712,13 @@ msgstr "Hex triplet" msgid "Intensity:" msgstr "Intensitet:" -#: app/color_picker.c:633 app/color_picker.c:634 app/color_picker.c:635 -#: app/color_picker.c:636 app/color_picker.c:637 app/color_picker.c:638 -#: app/color_picker.c:639 app/color_picker.c:657 app/color_picker.c:672 -#: app/color_picker.c:690 app/info_window.c:185 app/info_window.c:191 -#: app/info_window.c:197 app/info_window.c:203 app/info_window.c:422 -#: app/info_window.c:423 app/info_window.c:424 app/info_window.c:425 -#: app/info_window.c:447 +#: app/color_picker.c:626 app/color_picker.c:627 app/color_picker.c:628 +#: app/color_picker.c:629 app/color_picker.c:630 app/color_picker.c:631 +#: app/color_picker.c:632 app/color_picker.c:644 app/color_picker.c:651 +#: app/color_picker.c:669 app/color_picker.c:684 app/info_window.c:185 +#: app/info_window.c:191 app/info_window.c:197 app/info_window.c:203 +#: app/info_window.c:422 app/info_window.c:423 app/info_window.c:424 +#: app/info_window.c:425 app/info_window.c:447 msgid "N/A" msgstr "I/T" @@ -915,13 +916,13 @@ msgstr "X opprinnelse:" #. the pixel size labels #: app/crop.c:1076 app/file_new_dialog.c:389 app/file_new_dialog.c:407 -#: app/tool_options.c:334 +#: app/tool_options.c:333 msgid "Width:" msgstr "Bredde:" #: app/crop.c:1079 app/file_new_dialog.c:395 app/file_new_dialog.c:413 -#: app/layers_dialog.c:3363 app/resize.c:240 app/resize.c:265 app/resize.c:510 -#: app/scale_tool.c:79 app/scale_tool.c:86 app/tool_options.c:350 +#: app/layers_dialog.c:3363 app/resize.c:242 app/resize.c:267 app/resize.c:512 +#: app/scale_tool.c:79 app/scale_tool.c:86 app/tool_options.c:349 msgid "Height:" msgstr "HЬyde:" @@ -973,7 +974,7 @@ msgid "Load" msgstr "Last" #: app/curves.c:704 app/devices.c:753 app/levels.c:608 app/palette.c:2068 -#: app/preferences_dialog.c:357 app/preferences_dialog.c:1467 +#: app/preferences_dialog.c:357 app/preferences_dialog.c:1432 msgid "Save" msgstr "Lagre" @@ -1003,7 +1004,7 @@ msgstr "Desaturering opererer kun p msgid "Device Status" msgstr "Enhetsstatus" -#: app/disp_callbacks.c:755 app/global_edit.c:297 app/global_edit.c:303 +#: app/disp_callbacks.c:760 app/global_edit.c:297 app/global_edit.c:303 #: app/global_edit.c:375 msgid "Pasted Layer" msgstr "Innlimt lag" @@ -1184,17 +1185,17 @@ msgstr "Bildest msgid "New Image" msgstr "Nytt bilde" -#: app/file_new_dialog.c:453 app/preferences_dialog.c:1540 -#: app/preferences_dialog.c:1577 +#: app/file_new_dialog.c:453 app/install.c:1093 app/preferences_dialog.c:1505 +#: app/preferences_dialog.c:1542 msgid "Pixels" msgstr "Piksler" #. the resolution labels -#: app/file_new_dialog.c:524 app/resize.c:567 +#: app/file_new_dialog.c:524 app/resize.c:569 msgid "Resolution X:" msgstr "OpplЬsning X:" -#: app/file_new_dialog.c:545 app/resize.c:588 +#: app/file_new_dialog.c:545 app/resize.c:590 msgid "pixels/%a" msgstr "Piksler/%a" @@ -1224,7 +1225,7 @@ msgstr "" msgid "No Selection." msgstr "Ingen utvalg." -#: app/fileops.c:418 app/fileops.c:1624 app/fileops.c:1731 +#: app/fileops.c:418 app/fileops.c:1629 app/fileops.c:1736 #, c-format msgid "Save failed: %s" msgstr "Feil under lagring: %s" @@ -1249,58 +1250,58 @@ msgstr "Kan ikke forkaste. Ingen filnavn assosiert med dette bildet" msgid "Revert failed." msgstr "Forkast feilet." -#: app/fileops.c:1240 +#: app/fileops.c:1245 msgid "(This thumbnail may be out of date)" msgstr "(Denne miniatyren kan vФre gammel)" -#: app/fileops.c:1241 +#: app/fileops.c:1246 msgid "(No Information)" msgstr "(Ingen informasjon)" -#: app/fileops.c:1251 +#: app/fileops.c:1256 msgid "(Thumbnail saving is disabled)" msgstr "(Lagring av miniatyrer er slЕtt av)" -#: app/fileops.c:1255 +#: app/fileops.c:1260 msgid "(Could not write thumbnail file)" msgstr "(Kunne ikke skrive miniatyrfil)" -#: app/fileops.c:1259 +#: app/fileops.c:1264 msgid "(Thumbnail file not written)" msgstr "(Miniatyr ikke skrevet)" -#: app/fileops.c:1276 +#: app/fileops.c:1281 msgid "No preview available" msgstr "Ingen forhЕndsvisning tilgjengelig" -#: app/fileops.c:1394 +#: app/fileops.c:1399 msgid "(could not make preview)" msgstr "(kunne ikke lage forhЕndsvisning)" -#: app/fileops.c:1467 app/fileops.c:1546 +#: app/fileops.c:1472 app/fileops.c:1551 #, c-format msgid "Open failed: %s" msgstr "Feil under Еpning: %s" -#: app/fileops.c:1602 +#: app/fileops.c:1607 #, c-format msgid "%s is an irregular file (%s)" msgstr "%s er en uvanlig fil (%s)" -#: app/fileops.c:1670 +#: app/fileops.c:1675 #, c-format msgid "%s exists, overwrite?" msgstr "%s eksisterer, overskriv?" -#: app/fileops.c:1674 +#: app/fileops.c:1679 msgid "File Exists!" msgstr "Filen eksisterer!" -#: app/fileops.c:1680 +#: app/fileops.c:1685 msgid "Yes" msgstr "Ja" -#: app/fileops.c:1682 +#: app/fileops.c:1687 msgid "No" msgstr "Nei" @@ -1308,13 +1309,13 @@ msgstr "Nei" msgid "Flip Tool" msgstr "VerktЬy for vending" -#: app/flip_tool.c:95 app/preferences_dialog.c:1591 -#: app/preferences_dialog.c:2355 +#: app/flip_tool.c:95 app/preferences_dialog.c:1556 +#: app/preferences_dialog.c:2284 msgid "Horizontal" msgstr "Horisontal" -#: app/flip_tool.c:97 app/preferences_dialog.c:1593 -#: app/preferences_dialog.c:2357 +#: app/flip_tool.c:97 app/preferences_dialog.c:1558 +#: app/preferences_dialog.c:2286 msgid "Vertical" msgstr "Vertikal" @@ -1340,7 +1341,7 @@ msgstr "" msgid "RGB-empty" msgstr "RGB-tom" -#: app/gdisplay.c:217 app/image_new.c:53 app/preferences_dialog.c:1637 +#: app/gdisplay.c:217 app/image_new.c:54 app/preferences_dialog.c:1602 msgid "RGB" msgstr "RGB" @@ -1481,23 +1482,23 @@ msgstr "" msgid "Failed to load pixmap brush." msgstr "Klarte ikke Е lese bildebЬrste." -#: app/gimpdrawable.c:168 +#: app/gimpdrawable.c:166 msgid "Can't fill unknown image type." msgstr "Kan ikke fylle ut ukjent bildetype." -#: app/gimpdrawable.c:512 +#: app/gimpdrawable.c:498 msgid "parasite attach to drawable" msgstr "parasitt festet til tegnet objekt" -#: app/gimpdrawable.c:548 +#: app/gimpdrawable.c:533 msgid "detach parasite from drawable" msgstr "lЬsriv parasitt fra tegnet objekt" -#: app/gimpdrawable.c:770 +#: app/gimpdrawable.c:740 msgid "unnamed" msgstr "uten navn" -#: app/gimpdrawable.c:787 +#: app/gimpdrawable.c:757 #, c-format msgid "Layer type %d not supported." msgstr "Lagtype %d ikke stЬttet." @@ -1512,39 +1513,39 @@ msgstr "" "Den ble sannsynligvis ikke kompilert fordi\n" "du ikke har GtkXmHTML installert." -#: app/gimpimage.c:1154 +#: app/gimpimage.c:1176 msgid "attach parasite to image" msgstr "fest parasitt til bildet" -#: app/gimpimage.c:1177 +#: app/gimpimage.c:1201 msgid "detach parasite from image" msgstr "lЬsriv parasitt fra bildet" -#: app/gimpimage.c:2232 +#: app/gimpimage.c:2305 msgid "Layer cannot be raised any further" msgstr "Laget kan ikke heves mer" -#: app/gimpimage.c:2258 +#: app/gimpimage.c:2333 msgid "Layer cannot be lowered any further" msgstr "Laget kan ikke senkes mer" -#: app/gimpimage.c:2282 +#: app/gimpimage.c:2359 msgid "Layer is already on top" msgstr "Laget er allerede Ьverst" -#: app/gimpimage.c:2288 +#: app/gimpimage.c:2365 msgid "Can't raise Layer without alpha" msgstr "Kan ikke heve lag uten alpha" -#: app/gimpimage.c:2315 +#: app/gimpimage.c:2393 msgid "Layer is already on bottom" msgstr "Laget er allerede nederst" -#: app/gimpimage.c:2370 +#: app/gimpimage.c:2448 msgid "BG has no alpha, layer was placed above" msgstr "BG har ikke alpha, laget ble plassert over" -#: app/gimpimage.c:2439 +#: app/gimpimage.c:2519 msgid "" "There are not enough visible layers for a merge.\n" "There must be at least two." @@ -1552,11 +1553,11 @@ msgstr "" "Ikke nok synlige lag til Е gjЬre sammenslЕing.\n" "Det mЕ vФre minst to." -#: app/gimpimage.c:2519 +#: app/gimpimage.c:2603 msgid "There are not enough visible layers for a merge down." msgstr "Ikke nok synlige lag til Е slЕ sammen nedover." -#: app/gimpimage.c:2915 +#: app/gimpimage.c:3005 msgid "" "Unable to add a layer mask since\n" "the layer already has one." @@ -1564,7 +1565,7 @@ msgstr "" "Kunne ikke legge til lagmaske siden\n" "laget allerede har en." -#: app/gimpimage.c:2919 +#: app/gimpimage.c:3009 msgid "" "Unable to add a layer mask to a\n" "layer in an indexed image." @@ -1572,7 +1573,7 @@ msgstr "" "Kunne ikke legge til lagmaske til et\n" "lag i et indeksert vilde." -#: app/gimpimage.c:2923 +#: app/gimpimage.c:3013 msgid "" "Cannot add layer mask to a layer\n" "with no alpha channel." @@ -1580,21 +1581,21 @@ msgstr "" "Kan ikke legge til lagmaske til et lag\n" "uten en alpha-kanal." -#: app/gimpimage.c:2930 +#: app/gimpimage.c:3020 msgid "Cannot add layer mask of different dimensions than specified layer." msgstr "" "Kan ikke legge til lagmaske med forskjellig dimesjon fra det spesifiserte " "laget." -#: app/gimpimage.c:3033 +#: app/gimpimage.c:3127 msgid "Channel cannot be raised any further" msgstr "Kanalen kan ikke heves mer" -#: app/gimpimage.c:3082 +#: app/gimpimage.c:3178 msgid "Channel cannot be lowered any further" msgstr "Kanalen kan ikke senkes mer" -#: app/gimpimage.c:3288 app/palette.c:364 app/palette.c:941 app/palette.c:1077 +#: app/gimpimage.c:3398 app/palette.c:364 app/palette.c:941 app/palette.c:1077 #: app/palette.c:2022 app/palette.c:2749 app/palette.c:2881 msgid "Untitled" msgstr "Uten navn" @@ -1607,45 +1608,45 @@ msgstr "Fremgang" msgid "Please wait..." msgstr "Vennligst vent..." -#: app/gimprc.c:401 app/plug_in.c:304 +#: app/gimprc.c:415 app/plug_in.c:304 msgid "Resource configuration" msgstr "Resurskonfigurasjon" -#: app/gimprc.c:451 +#: app/gimprc.c:467 #, c-format msgid "error parsing: \"%s\"\n" msgstr "feil under tolking: \"%s\"\n" -#: app/gimprc.c:452 +#: app/gimprc.c:468 #, c-format msgid " at line %d column %d\n" msgstr " ved linje %d kolonne %d\n" -#: app/gimprc.c:453 +#: app/gimprc.c:469 #, c-format msgid " unexpected token: %s\n" msgstr " uventet tegn: %s\n" -#: app/gimprc.c:1455 +#: app/gimprc.c:1473 msgid "error parsing pluginrc" msgstr "feil under tolking av pluginrc" -#: app/gimprc.c:2832 +#: app/gimprc.c:2866 #, c-format msgid "Can't open %s; %s" msgstr "Kan ikke Еpne %s; %s" -#: app/gimprc.c:2851 +#: app/gimprc.c:2885 #, c-format msgid "Can't rename %s to %s.old; %s" msgstr "Kan ikke endre navn pЕ %s til %s.old; %s" -#: app/gimprc.c:2857 +#: app/gimprc.c:2891 #, c-format msgid "Couldn't reopen %s\n" msgstr "Kan ikke gjenЕpne %s\n" -#: app/gimprc.c:2869 +#: app/gimprc.c:2903 #, c-format msgid "Can't write to %s; %s" msgstr "Kan ikke skrive til %s; %s" @@ -1678,7 +1679,7 @@ msgstr "GIMP melding" msgid "pixel" msgstr "piksel" -#: app/gimpunit.c:59 app/measure.c:454 app/measure.c:458 app/paint_core.c:498 +#: app/gimpunit.c:59 app/measure.c:454 app/measure.c:458 app/paint_core.c:511 msgid "pixels" msgstr "piksler" @@ -1924,7 +1925,7 @@ msgstr "Posisjon for h msgid "Distance: %0.6f" msgstr "Avstand: %0.6f" -#: app/gradient.c:3387 app/gradient.c:4448 +#: app/gradient.c:3387 app/gradient.c:4450 msgid "Left endpoint's color" msgstr "Farge pЕ venstre endepunkt" @@ -1944,7 +1945,7 @@ msgstr "H msgid "Save to" msgstr "Lagre til" -#: app/gradient.c:3429 app/gradient.c:4526 +#: app/gradient.c:3429 app/gradient.c:4528 msgid "Right endpoint's color" msgstr "Farge pЕ hЬyre endepunkt" @@ -1972,7 +1973,7 @@ msgstr "Fargetype for segmentet" msgid "Split segment at midpoint" msgstr "Splitt segmentet ved midtpunktet" -#: app/gradient.c:3734 app/gradient.c:4829 +#: app/gradient.c:3734 app/gradient.c:4831 msgid "Split segment uniformly" msgstr "Splitt segmentet likt" @@ -1992,7 +1993,7 @@ msgstr "Redistribuer h msgid "Flip segment" msgstr "Vend segment" -#: app/gradient.c:3744 app/gradient.c:5390 +#: app/gradient.c:3744 app/gradient.c:5392 msgid "Replicate segment" msgstr "Repliker segment" @@ -2008,7 +2009,7 @@ msgstr "Fargetype for utvalget" msgid "Split segments at midpoints" msgstr "Splitt segmentene ved midtpunktet" -#: app/gradient.c:3755 app/gradient.c:4830 +#: app/gradient.c:3755 app/gradient.c:4832 msgid "Split segments uniformly" msgstr "Splitt segmenter enhetlig" @@ -2028,7 +2029,7 @@ msgstr "Redistribuer h msgid "Flip selection" msgstr "Vend utvalg" -#: app/gradient.c:3765 app/gradient.c:5391 +#: app/gradient.c:3765 app/gradient.c:5393 msgid "Replicate selection" msgstr "Repliker utvalg" @@ -2041,49 +2042,49 @@ msgstr "FG-farge" msgid "RGBA (%0.3f, %0.3f, %0.3f, %0.3f)" msgstr "RGBA (%0.3f, %0.3f, %0.3f, %0.3f)" -#: app/gradient.c:4615 app/gradient.c:4685 +#: app/gradient.c:4617 app/gradient.c:4687 msgid "(Varies)" msgstr "(Varierer)" -#: app/gradient.c:4837 +#: app/gradient.c:4839 msgid "Split" msgstr "Splitt" #. Instructions -#: app/gradient.c:4851 +#: app/gradient.c:4853 msgid "Please select the number of uniform parts" msgstr "Vennligst velg antall uniforme deler" -#: app/gradient.c:4857 +#: app/gradient.c:4859 msgid "in which you want to split the selected segment" msgstr "som du vil splitte det valgte segmentet i" -#: app/gradient.c:4858 +#: app/gradient.c:4860 msgid "in which you want to split the segments in the selection" msgstr "som du vil splitte segmentene i utvalget i" -#: app/gradient.c:5218 +#: app/gradient.c:5220 msgid "Blend endpoints' colors" msgstr "Fortynn endepunktenes farger" -#: app/gradient.c:5230 +#: app/gradient.c:5232 msgid "Blend endpoints' opacity" msgstr "Fortynn endepunktenes ugjennomsiktighet" -#: app/gradient.c:5398 +#: app/gradient.c:5400 msgid "Replicate" msgstr "Repliser" #. Instructions -#: app/gradient.c:5411 +#: app/gradient.c:5413 msgid "Please select the number of times" msgstr "Vennligst velg antall ganger" -#: app/gradient.c:5416 +#: app/gradient.c:5418 msgid "you want to replicate the selected segment" msgstr "du Ьnsker Е replisere det valgte segmentet" -#: app/gradient.c:5417 +#: app/gradient.c:5419 msgid "you want to replicate the selection" msgstr "du Ьnsker Е replisere utvalget" @@ -2187,45 +2188,45 @@ msgstr "Lys" msgid "Saturation" msgstr "Metning" -#: app/image_new.c:58 app/info_window.c:65 app/info_window.c:534 -#: app/preferences_dialog.c:1638 +#: app/image_new.c:59 app/info_window.c:65 app/info_window.c:534 +#: app/preferences_dialog.c:1603 msgid "Grayscale" msgstr "GrЕtone" -#: app/image_new.c:64 app/layers_dialog.c:3421 +#: app/image_new.c:65 app/layers_dialog.c:3421 msgid "Foreground" msgstr "Forgrunn" -#: app/image_new.c:74 app/layers_dialog.c:3423 +#: app/image_new.c:75 app/layers_dialog.c:3423 msgid "White" msgstr "Hvit" -#: app/image_new.c:262 +#: app/image_new.c:273 #, c-format msgid "%d Bytes" msgstr "%d Bytes" -#: app/image_new.c:264 +#: app/image_new.c:275 #, c-format msgid "%.2f KB" msgstr "%.2f KB" -#: app/image_new.c:266 +#: app/image_new.c:277 #, c-format msgid "%.1f KB" msgstr "%.1f KB" -#: app/image_new.c:268 +#: app/image_new.c:279 #, c-format msgid "%d KB" msgstr "%d KB" -#: app/image_new.c:270 +#: app/image_new.c:281 #, c-format msgid "%.2f MB" msgstr "%.2f MB" -#: app/image_new.c:272 +#: app/image_new.c:283 #, c-format msgid "%.1f MB" msgstr "%.1f MB" @@ -2254,8 +2255,8 @@ msgstr "" "Den aktive gradienten.\n" "Klikk for Е Еpne dialogen for gradienter." -#: app/info_dialog.c:181 app/preferences_dialog.c:1782 -#: app/preferences_dialog.c:1888 +#: app/info_dialog.c:181 app/preferences_dialog.c:1743 +#: app/preferences_dialog.c:1849 msgid "General" msgstr "Generelt" @@ -2387,413 +2388,536 @@ msgstr "Juster:" msgid "Shape" msgstr "Form" -#: app/install.c:83 +#: app/install.c:95 msgid "The GIMP is not properly installed for the current user\n" msgstr "GIMP er ikke riktig installert for denne brukeren\n" -#: app/install.c:84 +#: app/install.c:96 msgid "" "User installation was skipped because the '--nointerface' flag was " "encountered\n" msgstr "" "Brukerinstallasjon ble utsatt fordi '--nointerface' flagget ble brukt\n" -#: app/install.c:85 +#: app/install.c:97 msgid "" "To perform user installation, run the GIMP without the '--nointerface' flag\n" msgstr "" "For Е utfЬre brukerinstallasjon, kjЬr GIMP uten '--nointerface' flagget\n" -#: app/install.c:113 +#: app/install.c:142 +#, fuzzy +msgid "" +"The gimprc is used to store personal preferences\n" +"that affect GIMP's default behavior.\n" +"Paths to search for brushes, palettes, gradients,\n" +"patterns, plug-ins and modules can also configured here." +msgstr "" +"Gimprc brukes til Е lagre personlige referanser\n" +"slik som standard oppfЬrsel for GIMP.\n" +"Stier til sЬk etter pensler, paletter, gradienter, \n" +"mЬnstre, tillegg og moduler kan ogsЕ konfigureres\n" +"her.\n" + +#: app/install.c:149 +msgid "" +"GIMP uses an additional gtkrc file so you can\n" +"configure it to look differently than other GTK apps." +msgstr "" + +#: app/install.c:154 +#, fuzzy +msgid "" +"Plug-ins and extensions are external programs run by\n" +"the GIMP which provide additional functionality.\n" +"These programs are searched for at run-time and\n" +"information about their functionality and mod-times\n" +"is cached in this file. This file is intended to\n" +"be GIMP-readable only, and should not be edited." +msgstr "" +"Tillegg og utvidelser er eksterne programmer som kjЬres\n" +"av GIMP og gir ekstra funksjonalitet. Disse programmene\n" +"sЬkes det etter ved oppstart og informasjon om deres\n" +"funksjonalitet og endringstider mellomlagres i denne\n" +"filen. Denne filen er ment Е vФre lesbar kun for GIMP,\n" +"og bЬr ikke redigeres.\n" + +#: app/install.c:163 +#, fuzzy +msgid "" +"Key shortcuts can be dynamically redefined in The GIMP.\n" +"The menurc is a dump of your configuration so it can.\n" +"be remembered for the next session. You may edit this\n" +"file if you wish, but it is much easier to define the\n" +"keys from within The GIMP. Deleting this file will\n" +"restore the default shortcuts." +msgstr "" +"Tastatursnarveier kan omdefineres dynamisk i GIMP.\n" +"menurc er et dump av din konfigurasjon som gjЬr deg i stand\n" +"til Е \"huske\" denne til neste sesjon. Du kan redigere denne\n" +"filen hvis du Ьnsker, men det er mye lettere Е definere\n" +"tastene fra GIMP. Sletting av denne filen vil gjenopprette\n" +"standard tastatursnarveier.\n" + +#: app/install.c:172 +#, fuzzy +msgid "" +"The sessionrc is used to store what dialog windows were\n" +"open the last time you quit The GIMP. You can configure\n" +"The GIMP to reopen these dialogs at the saved position." +msgstr "" +"sessionrc brukes til Е lagre informasjon om Еpne dialogvinduer\n" +"ved siste avslutning av GIMP. Du kan konfigurere GIMP til Е\n" +"gjenЕpne disse dialogene i lagret posisjon.\n" + +#: app/install.c:178 +#, fuzzy +msgid "" +"The unitrc is used to store your user units database.\n" +"You can define additional units and use them just\n" +"like you use the built-in units inches, millimeters,\n" +"points and picas. This file is overwritten each time\n" +"you quit the GIMP." +msgstr "" +"Unitrc brukes til Е lagre din brukerenhetsdatabase.\n" +"Du kan definere ekstra enheter og bruke dem akkurat\n" +"som du bruker de innebygde enhetene tommer, millimeter,\n" +"punkter og picas. Denne filen overskrives hver gang\n" +"du avslutter GIMP.\n" + +#: app/install.c:186 +#, fuzzy +msgid "" +"This is a subdirectory which can be used to store\n" +"user defined brushes. The default gimprc file\n" +"checks this subdirectory in addition to the system-\n" +"wide gimp brushes installation when searching for\n" +"brushes." +msgstr "" +"Dette er en underkatalog som kan brukes til Е lagre\n" +"brukerdefinerte pensler. Med standard gimprc sjekkes\n" +"denne underkatalogen i tillegg til systemkatalogen\n" +"for pensler nЕr det skal sЬkes etter disse.\n" + +#: app/install.c:194 +#, fuzzy +msgid "" +"This is a subdirectory which is used to store brushes\n" +"that are created with the brush editor. The default\n" +"gimprc file checks this subdirectory when searching for\n" +"generated brushes." +msgstr "" +"Dette er en underkatalog som brukes til Е lagre pensler\n" +"som er laget med penseleditoren. Standard gimprc sjekker\n" +"denne underkatalogen nЕr det skal sЬkes etter disse.\n" + +#: app/install.c:201 +#, fuzzy +msgid "" +"This is a subdirectory which can be used to store\n" +"user defined gradients. The default gimprc file\n" +"checks this subdirectory in addition to the system-\n" +"wide gimp gradients installation when searching for\n" +"gradients." +msgstr "" +"Dette er en underkatalog som kan brukes til Е lagre\n" +"brukerdefinerte gradienter. Med standard gimprc\n" +"sjekkes denne underkatalogen i tillegg til system-\n" +"katalogen for gradienter nЕr det sЬkes etter disse.\n" + +#: app/install.c:209 +#, fuzzy +msgid "" +"This is a subdirectory which can be used to store\n" +"user defined palettes. The default gimprc file\n" +"checks only this subdirectory (not the system-wide\n" +"installation) when searching for palettes. During\n" +"installation, the system palettes will be copied\n" +"here. This is done to allow modifications made to\n" +"palettes during GIMP execution to persist across\n" +"sessions." +msgstr "" +"Dette er en underkatalog som kan brukes til Е lagre\n" +"brukerdefinerte paletter. Med standard gimprc sjekkes\n" +"kun denne katalogen (ikke systemkatalogen) nЕr det\n" +"sЬkes etter paletter. Under installasjonen kopieres\n" +"palettene hit fra systemkatalogen. Dette gjЬres for at\n" +"endringer som gjЬres i palettene skal gjelde i kommende\n" +"sesjoner.\n" + +#: app/install.c:220 +#, fuzzy +msgid "" +"This is a subdirectory which can be used to store\n" +"user defined patterns. The default gimprc file\n" +"checks this subdirectory in addition to the system-\n" +"wide gimp patterns installation when searching for\n" +"patterns." +msgstr "" +"Dette er en underkatalog som kan brukes til Е lagre\n" +"brukerdefinerte mЬnstre. Med standard gimprc sjekkes\n" +"denne underkatalogen i tillegg til systemkatalogen\n" +"for mЬnstre nЕr det sЬkes etter disse.\n" + +#: app/install.c:228 +#, fuzzy +msgid "" +"This is a subdirectory which can be used to store\n" +"user created, temporary, or otherwise non-system-\n" +"supported plug-ins. The default gimprc file\n" +"checks this subdirectory in addition to the system-\n" +"wide GIMP plug-in directories when searching for\n" +"plug-ins." +msgstr "" +"Dette er en underkatalog som kan brukes til Е lagre\n" +"brukeropprettede, midlertidige, eller andre ustЬttede\n" +"tillegg. Med standard gimprc sjekkes denne underkatalogen\n" +"i tillegg til systemkatalogen for tillegg nЕr det sЬkes\n" +"etter disse.\n" + +#: app/install.c:237 +#, fuzzy +msgid "" +"This subdirectory can be used to store user created,\n" +"temporary, or otherwise non-system-supported DLL modules.\n" +"The default gimprc file checks this subdirectory\n" +"in addition to the system-wide GIMP module directory\n" +"when searching for modules to load when initializing." +msgstr "" +"Denne underkatalogen kan brukes til Е lagre brukeropprettede,\n" +"midlertidige, eller ustЬttede DLL-moduler. Med standard\n" +"gimprc sjekkes denne underkatalogen i tillegg til system-\n" +"katalogen for moduler nЕr det sЬkes etter moduler under\n" +"oppstart.\n" + +#: app/install.c:245 +#, fuzzy +msgid "" +"This subdirectory is used by the GIMP to store \n" +"user created and installed scripts. The default gimprc\n" +"file checks this subdirectory in addition to the system-\n" +"wide gimp scripts subdirectory when searching for scripts" +msgstr "" +"Denne underkatalogen brukes av GIMP for Е lagre \n" +"brukeropprettede og installerte skript. Med standard gimprc\n" +"sjekkes denne underkatalogen i tillegg til systemkatalogen\n" +"for skript nЕr det sЬkes etter disse.\n" + +#: app/install.c:252 +#, fuzzy +msgid "" +"This subdirectory is used by the GIMP to temporarily\n" +"store undo buffers to reduce memory usage. If GIMP is\n" +"unceremoniously killed, files may persist in this directory\n" +"of the form: gimp<#>.<#>. These files are useless across\n" +"GIMP sessions and can be destroyed with impunity." +msgstr "" +"Denne underkatalogen brukes av GIMP for Е mellomlagre\n" +"angreinformasjon for Е redusere minnebruken. Hvis GIMP\n" +"drepes, kan filer bli liggende i denne katalogen; de har\n" +"formen: gimp<#>.<#>. Disse filene er ubrukelige mellom\n" +"sesjoner og kan slettes uten omtanke.\n" + +#: app/install.c:260 +msgid "" +"This subdirectory is used to store parameter files for\n" +"the Curves tool." +msgstr "" + +#: app/install.c:265 +msgid "" +"This subdirectory is used to store parameter files for\n" +"the Levels tool." +msgstr "" + +#: app/install.c:270 +#, fuzzy +msgid "" +"This is a subdirectory which can be used to store\n" +"user defined fractals to be used by the FractalExplorer\n" +"plug-in. The default gimprc file checks this subdirectory in\n" +"addition to the systemwide gimp FractalExplorer installation\n" +"when searching for fractals." +msgstr "" +"Dette er en underkatalog som kan brukes til Е lagre\n" +"brukerdefinerte fraktaler som skal brukes med FractalExplorer\n" +"tillegget. Med standard gimprc sjekkes denne underkatalogen i\n" +"tillegg til systemkatalogen for FractalExplorer nЕr det sЬkes\n" +"etter disse.\n" + +#: app/install.c:278 +#, fuzzy +msgid "" +"This is a subdirectory which can be used to store\n" +"user defined figures to be used by the gfig plug-in.\n" +"The default gimprc file checks this subdirectory in\n" +"addition to the systemwide gimp gfig installation\n" +"when searching for gfig figures." +msgstr "" +"Dette er en underkatalog som kan brukes til Е lagre\n" +"brukerdefinerte figurer for bruk med gfig tillegget.\n" +"Med standard gimprc sjekkes denne underkatalogen i\n" +"tillegg til systemkatalogen for gfig figurer nЕr det\n" +"\tsЬkes etter disse.\n" + +#: app/install.c:286 +#, fuzzy +msgid "" +"This is a subdirectory which can be used to store\n" +"user defined gflares to be used by the gflare plug-in.\n" +"The default gimprc file checks this subdirectory in\n" +"addition to the systemwide gimp gflares installation\n" +"when searching for gflares." +msgstr "" +"Dette er en underkatalog som kan brukes til Е lagre\n" +"brukerdefinerte gflares for bruk med gflare tillegget.\n" +"Med standard gimprc sjekkes denne underkatalogen i\n" +"tillegg til systemkatalogen for gflares nЕr det sЬkes\n" +"etter disse.\n" + +#: app/install.c:294 +#, fuzzy +msgid "" +"This is a subdirectory which can be used to store\n" +"user defined data to be used by the Gimpressionist\n" +"plug-in. The default gimprc file checks this subdirectory in\n" +"addition to the systemwide gimp Gimpressionist installation\n" +"when searching for data." +msgstr "" +"Dette er en underkatalog som kan brukes til Е lagre\n" +"brukerdefinerte gflares for bruk med gflare tillegget.\n" +"Med standard gimprc sjekkes denne underkatalogen i\n" +"tillegg til systemkatalogen for gflares nЕr det sЬkes\n" +"etter disse.\n" + +#: app/install.c:525 +#, fuzzy +msgid "GIMP User Installation" +msgstr "GIMP installasjon" + +#: app/install.c:530 +msgid "Continue" +msgstr "Fortsett" + +#. this is a fontset, e.g. multiple comma-separated font definitions +#: app/install.c:560 +#, fuzzy +msgid "-*-helvetica-bold-r-normal-*-*-240-*-*-*-*-*-*,*" +msgstr "-*-helvetica-fet-r-normal-*-*-120-*-*-*-*-*-*,*" + +#: app/install.c:578 +#, fuzzy +msgid "" +"Welcome to\n" +"The GIMP User Installation" +msgstr "GIMP installasjon" + +#: app/install.c:582 msgid "" "The GIMP - GNU Image Manipulation Program\n" -"\n" +"Copyright (C) 1995-2000\n" +"Spencer Kimball, Peter Mattis and the GIMP Development Team." msgstr "" -"The GIMP - GNU Image Manipulation Program\n" -"\n" -#: app/install.c:118 +#: app/install.c:591 +#, fuzzy msgid "" "This program is free software; you can redistribute it and/or modify\n" "it under the terms of the GNU General Public License as published by\n" "the Free Software Foundation; either version 2 of the License, or\n" -"(at your option) any later version.\n" +"(at your option) any later version." msgstr "" "Dette programmet er fri programvare; du kan redistribuere det og/eller\n" "endre det under betingelsene gitt i GNU General Public License som er\n" "utgitt av Free Software Foundation; enten versjon 2 av lisensen, eller\n" "(hvis du velger det) enhver senere versjon.\n" -#: app/install.c:123 +#: app/install.c:596 +#, fuzzy msgid "" "This program is distributed in the hope that it will be useful,\n" "but WITHOUT ANY WARRANTY; without even the implied warranty of\n" "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n" -"See the GNU General Public License for more details.\n" +"See the GNU General Public License for more details." msgstr "" "This program is distributed in the hope that it will be useful,\n" "but WITHOUT ANY WARRANTY; without even the implied warranty of\n" "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n" "See the GNU General Public License for more details.\n" -#: app/install.c:128 +#: app/install.c:601 +#, fuzzy msgid "" "You should have received a copy of the GNU General Public License\n" "along with this program; if not, write to the Free Software\n" "Foundation, Inc., 59 Temple Place - Suite 330, Boston,\n" -"MA 02111-1307, USA.\n" +"MA 02111-1307, USA." msgstr "" "You should have received a copy of the GNU General Public License\n" "along with this program; if not, write to the Free Software\n" "Foundation, Inc., 59 Temple Place - Suite 330, Boston,\n" "MA 02111-1307, USA.\n" -#: app/install.c:134 -msgid "" -"Personal GIMP Installation\n" -"\n" +#: app/install.c:607 +msgid "Click \"Continue\" to enter the GIMP user installation." +msgstr "" + +#: app/install.c:633 +#, fuzzy +msgid "Personal GIMP Directory" msgstr "" "Personlig GIMP installasjon\n" "\n" -#: app/install.c:135 -msgid "For a proper GIMP installation, a subdirectory called\n" -msgstr "I en riktig GIMP installasjon, vil en underkatalog kalt\n" - -#. will be replaced with gimp_directory() -#: app/install.c:137 +#: app/install.c:650 +#, fuzzy msgid "" -" needs to be created. This\n" -"subdirectory will contain a number of important files:\n" -"\n" +"For a proper GIMP installation, a subdirectory needs to be created.\n" +"This subdirectory will contain a number of important files." msgstr "" "bli laget. Denne\n" "underkatalogen vil inneholde et antall viktige filer:\n" "\n" -#: app/install.c:141 +#: app/install.c:653 msgid "" -"\t\tThe gimprc is used to store personal preferences\n" -"\t\tthat affect GIMP's default behavior.\n" -"\t\tPaths to search for brushes, palettes, gradients,\n" -"\t\tpatterns, plug-ins and modules can also configured here.\n" +"Click on one of the files or subdirectories in the tree\n" +"to get more information about the selected item." msgstr "" -"\t\tGimprc brukes til Е lagre personlige referanser\n" -"\t\tslik som standard oppfЬrsel for GIMP.\n" -"\t\tStier til sЬk etter pensler, paletter, gradienter, \n" -"\t\tmЬnstre, tillegg og moduler kan ogsЕ konfigureres\n" -"\t\ther.\n" -#: app/install.c:147 -msgid "" -"\t\tPlug-ins and extensions are external programs run by\n" -"\t\tthe GIMP which provide additional functionality.\n" -"\t\tThese programs are searched for at run-time and\n" -"\t\tinformation about their functionality and mod-times\n" -"\t\tis cached in this file. This file is intended to\n" -"\t\tbe GIMP-readable only, and should not be edited.\n" +#: app/install.c:656 +msgid "Click \"Continue\" to create your personal GIMP directory." msgstr "" -"\t\tTillegg og utvidelser er eksterne programmer som kjЬres\n" -"\t\tav GIMP og gir ekstra funksjonalitet. Disse programmene\n" -"\t\tsЬkes det etter ved oppstart og informasjon om deres\n" -"\t\tfunksjonalitet og endringstider mellomlagres i denne\n" -"\t\tfilen. Denne filen er ment Е vФre lesbar kun for GIMP,\n" -"\t\tog bЬr ikke redigeres.\n" -#: app/install.c:155 -msgid "" -"\t\tKey shortcuts can be dynamically redefined in The GIMP.\n" -"\t\tThe menurc is a dump of your configuration so it can.\n" -"\t\tbe remembered for the next session. You may edit this\n" -"\t\tfile if you wish, but it is much easier to define the\n" -"\t\tkeys from within The GIMP. Deleting this file will\n" -"\t\trestore the default shortcuts.\n" -msgstr "" -"\t\tTastatursnarveier kan omdefineres dynamisk i GIMP.\n" -"\t\tmenurc er et dump av din konfigurasjon som gjЬr deg i stand\n" -"\t\ttil Е \"huske\" denne til neste sesjon. Du kan redigere denne\n" -"\t\tfilen hvis du Ьnsker, men det er mye lettere Е definere\n" -"\t\ttastene fra GIMP. Sletting av denne filen vil gjenopprette\n" -"\t\tstandard tastatursnarveier.\n" - -#: app/install.c:163 -msgid "" -"\t\tThe sessionrc is used to store what dialog windows were\n" -"\t\topen the last time you quit The GIMP. You can configure\n" -"\t\tThe GIMP to reopen these dialogs at the saved position.\n" -msgstr "" -"\t\tsessionrc brukes til Е lagre informasjon om Еpne dialogvinduer\n" -"\t\tved siste avslutning av GIMP. Du kan konfigurere GIMP til Е\n" -"\t\tgjenЕpne disse dialogene i lagret posisjon.\n" - -#: app/install.c:168 -msgid "" -"\t\tThe unitrc is used to store your user units database.\n" -"\t\tYou can define additional units and use them just\n" -"\t\tlike you use the built-in units inches, millimeters,\n" -"\t\tpoints and picas. This file is overwritten each time\n" -"\t\tyou quit the GIMP.\n" -msgstr "" -"\t\tUnitrc brukes til Е lagre din brukerenhetsdatabase.\n" -"\t\tDu kan definere ekstra enheter og bruke dem akkurat\n" -"\t\tsom du bruker de innebygde enhetene tommer, millimeter,\n" -"\t\tpunkter og picas. Denne filen overskrives hver gang\n" -"\t\tdu avslutter GIMP.\n" - -#: app/install.c:175 -msgid "" -"\t\tThis is a subdirectory which can be used to store\n" -"\t\tuser defined brushes. The default gimprc file\n" -"\t\tchecks this subdirectory in addition to the system-\n" -"\t\twide gimp brushes installation when searching for\n" -"\t\tbrushes.\n" -msgstr "" -"\t\tDette er en underkatalog som kan brukes til Е lagre\n" -"\t\tbrukerdefinerte pensler. Med standard gimprc sjekkes\n" -"\t\tdenne underkatalogen i tillegg til systemkatalogen\n" -"\t\tfor pensler nЕr det skal sЬkes etter disse.\n" - -#: app/install.c:182 -msgid "" -"\t\tThis is a subdirectory which is used to store brushes\n" -"\t\tthat are created with the brush editor. The default\n" -"\t\tgimprc file checks this subdirectory when searching for\n" -"\t\tgenerated brushes.\n" -msgstr "" -"\t\tDette er en underkatalog som brukes til Е lagre pensler\n" -"\t\tsom er laget med penseleditoren. Standard gimprc sjekker\n" -"\t\tdenne underkatalogen nЕr det skal sЬkes etter disse.\n" - -#: app/install.c:188 -msgid "" -"\t\tThis is a subdirectory which can be used to store\n" -"\t\tuser defined gradients. The default gimprc file\n" -"\t\tchecks this subdirectory in addition to the system-\n" -"\t\twide gimp gradients installation when searching for\n" -"\t\tgradients.\n" -msgstr "" -"\t\tDette er en underkatalog som kan brukes til Е lagre\n" -"\t\tbrukerdefinerte gradienter. Med standard gimprc\n" -"\t\tsjekkes denne underkatalogen i tillegg til system-\n" -"\t\tkatalogen for gradienter nЕr det sЬkes etter disse.\n" - -#: app/install.c:195 -msgid "" -"\t\tThis is a subdirectory which can be used to store\n" -"\t\tuser defined figures to be used by the gfig plug-in.\n" -"\t\tThe default gimprc file checks this subdirectory in\n" -"\t\taddition to the systemwide gimp gfig installation\n" -"\t\twhen searching for gfig figures.\n" -msgstr "" -"\t\tDette er en underkatalog som kan brukes til Е lagre\n" -"\t\tbrukerdefinerte figurer for bruk med gfig tillegget.\n" -"\t\tMed standard gimprc sjekkes denne underkatalogen i\n" -"\t\ttillegg til systemkatalogen for gfig figurer nЕr det\n" -"\tsЬkes etter disse.\n" - -#: app/install.c:202 -msgid "" -"\t\tThis is a subdirectory which can be used to store\n" -"\t\tuser defined gflares to be used by the gflare plug-in.\n" -"\t\tThe default gimprc file checks this subdirectory in\n" -"\t\taddition to the systemwide gimp gflares installation\n" -"\t\twhen searching for gflares.\n" -msgstr "" -"\t\tDette er en underkatalog som kan brukes til Е lagre\n" -"\t\tbrukerdefinerte gflares for bruk med gflare tillegget.\n" -"\t\tMed standard gimprc sjekkes denne underkatalogen i\n" -"\t\ttillegg til systemkatalogen for gflares nЕr det sЬkes\n" -"\t\tetter disse.\n" - -#: app/install.c:209 -msgid "" -"\t\tThis is a subdirectory which can be used to store\n" -"\t\tuser defined fractals to be used by the FractalExplorer\n" -"\t\tplug-in. The default gimprc file checks this subdirectory in\n" -"\t\taddition to the systemwide gimp FractalExplorer installation\n" -"\t\twhen searching for fractals.\n" -msgstr "" -"\t\tDette er en underkatalog som kan brukes til Е lagre\n" -"\t\tbrukerdefinerte fraktaler som skal brukes med FractalExplorer\n" -"\t\ttillegget. Med standard gimprc sjekkes denne underkatalogen i\n" -"\t\ttillegg til systemkatalogen for FractalExplorer nЕr det sЬkes\n" -"\t\tetter disse.\n" - -#: app/install.c:216 -msgid "" -"\t\tThis is a subdirectory which can be used to store\n" -"\t\tuser defined palettes. The default gimprc file\n" -"\t\tchecks only this subdirectory (not the system-wide\n" -"\t\tinstallation) when searching for palettes. During\n" -"\t\tinstallation, the system palettes will be copied\n" -"\t\there. This is done to allow modifications made to\n" -"\t\tpalettes during GIMP execution to persist across\n" -"\t\tsessions.\n" -msgstr "" -"\t\tDette er en underkatalog som kan brukes til Е lagre\n" -"\t\tbrukerdefinerte paletter. Med standard gimprc sjekkes\n" -"\t\tkun denne katalogen (ikke systemkatalogen) nЕr det\n" -"\t\tsЬkes etter paletter. Under installasjonen kopieres\n" -"\t\tpalettene hit fra systemkatalogen. Dette gjЬres for at\n" -"\t\tendringer som gjЬres i palettene skal gjelde i kommende\n" -"\t\tsesjoner.\n" - -#: app/install.c:226 -msgid "" -"\t\tThis is a subdirectory which can be used to store\n" -"\t\tuser defined patterns. The default gimprc file\n" -"\t\tchecks this subdirectory in addition to the system-\n" -"\t\twide gimp patterns installation when searching for\n" -"\t\tpatterns.\n" -msgstr "" -"\t\tDette er en underkatalog som kan brukes til Е lagre\n" -"\t\tbrukerdefinerte mЬnstre. Med standard gimprc sjekkes\n" -"\t\tdenne underkatalogen i tillegg til systemkatalogen\n" -"\t\tfor mЬnstre nЕr det sЬkes etter disse.\n" - -#: app/install.c:233 -msgid "" -"\t\tThis is a subdirectory which can be used to store\n" -"\t\tuser created, temporary, or otherwise non-system-\n" -"\t\tsupported plug-ins. The default gimprc file\n" -"\t\tchecks this subdirectory in addition to the system-\n" -"\t\twide GIMP plug-in directories when searching for\n" -"\t\tplug-ins.\n" -msgstr "" -"\t\tDette er en underkatalog som kan brukes til Е lagre\n" -"\t\tbrukeropprettede, midlertidige, eller andre ustЬttede\n" -"\t\ttillegg. Med standard gimprc sjekkes denne underkatalogen\n" -"\t\ti tillegg til systemkatalogen for tillegg nЕr det sЬkes\n" -"\t\tetter disse.\n" - -#: app/install.c:241 -msgid "" -"\t\tThis subdirectory can be used to store user created,\n" -"\t\ttemporary, or otherwise non-system-supported DLL modules.\n" -"\t\tThe default gimprc file checks this subdirectory\n" -"\t\tin addition to the system-wide GIMP module directory\n" -"\t\twhen searching for modules to load when initializing.\n" -msgstr "" -"\t\tDenne underkatalogen kan brukes til Е lagre brukeropprettede,\n" -"\t\tmidlertidige, eller ustЬttede DLL-moduler. Med standard\n" -"\t\tgimprc sjekkes denne underkatalogen i tillegg til system-\n" -"\t\tkatalogen for moduler nЕr det sЬkes etter moduler under\n" -"\t\toppstart.\n" - -#: app/install.c:248 -msgid "" -"\t\tThis subdirectory is used by the GIMP to store \n" -"\t\tuser created and installed scripts. The default gimprc\n" -"\t\tfile checks this subdirectory in addition to the system\n" -"\t\t-wide gimp scripts subdirectory when searching for scripts\n" -msgstr "" -"\t\tDenne underkatalogen brukes av GIMP for Е lagre \n" -"\t\tbrukeropprettede og installerte skript. Med standard gimprc\n" -"\t\tsjekkes denne underkatalogen i tillegg til systemkatalogen\n" -"\t\tfor skript nЕr det sЬkes etter disse.\n" - -#: app/install.c:254 -msgid "" -"\t\tThis subdirectory is used by the GIMP to temporarily\n" -"\t\tstore undo buffers to reduce memory usage. If GIMP is\n" -"\t\tunceremoniously killed, files may persist in this directory\n" -"\t\tof the form: gimp<#>.<#>. These files are useless across\n" -"\t\tGIMP sessions and can be destroyed with impunity.\n" -msgstr "" -"\t\tDenne underkatalogen brukes av GIMP for Е mellomlagre\n" -"\t\tangreinformasjon for Е redusere minnebruken. Hvis GIMP\n" -"\t\tdrepes, kan filer bli liggende i denne katalogen; de har\n" -"\t\tformen: gimp<#>.<#>. Disse filene er ubrukelige mellom\n" -"\t\tsesjoner og kan slettes uten omtanke.\n" - -#: app/install.c:263 -msgid "GIMP Installation" -msgstr "GIMP installasjon" - -#: app/install.c:268 -msgid "Install" -msgstr "Installer" - -#: app/install.c:270 -msgid "Ignore" -msgstr "Ignorer" - -#. this is a fontset, e.g. multiple comma-separated font definitions -#: app/install.c:295 app/install.c:453 -msgid "-*-helvetica-bold-r-normal-*-*-120-*-*-*-*-*-*,*" -msgstr "-*-helvetica-fet-r-normal-*-*-120-*-*-*-*-*-*,*" - -#. this is a font, provide only one single font definition -#: app/install.c:298 -msgid "-*-helvetica-medium-o-normal-*-*-100-*-*-*-*-*-*" -msgstr "-*-helvetica-medium-o-normal-*-*-100-*-*-*-*-*-*" - -#. this is a fontset, e.g. multiple comma-separated font definitions -#: app/install.c:301 -msgid "-*-helvetica-medium-r-normal-*-*-100-*-*-*-*-*-*,*" -msgstr "-*-helvetica-medium-r-normal-*-*-100-*-*-*-*-*-*,*" - -#: app/install.c:423 -msgid "Installation Log" -msgstr "Installasjonslogg" - -#: app/install.c:428 -msgid "Continue" -msgstr "Fortsett" - -#. this is a fontset, e.g. multiple comma-separated font definitions -#: app/install.c:456 -msgid "-*-helvetica-medium-r-normal-*-*-120-*-*-*-*-*-*,*" -msgstr "-*-helvetica-medium-r-normal-*-*-120-*-*-*-*-*-*,*" - -#: app/install.c:462 -msgid "" -"User Installation Log\n" -"\n" +#: app/install.c:736 +#, fuzzy +msgid "User Installation Log" msgstr "" "Brukerinstallasjonslogg\n" "\n" -#: app/install.c:472 -msgid " does not exist. Cannot install.\n" +#: app/install.c:741 +msgid "GIMP Performance Tuning" +msgstr "" + +#: app/install.c:744 +msgid "For optimal GIMP performance, some settings may have to be adjusted." +msgstr "" + +#: app/install.c:751 +msgid "Click \"Continue\" to accept the settings above." +msgstr "" + +#: app/install.c:760 +#, fuzzy +msgid "Monitor Resolution" +msgstr "Hent opplЬsning for monitor" + +#: app/install.c:763 +msgid "" +"To display images in their natural size, GIMP needs to know your monitor " +"resolution." +msgstr "" + +#: app/install.c:771 +msgid "Click \"Continue\" to start The GIMP." +msgstr "" + +#: app/install.c:845 +#, fuzzy +msgid "does not exist. Cannot install." msgstr " eksisterer ikke. Kan ikke installere.\n" -#: app/install.c:480 -msgid "" -" has invalid permissions.\n" -"Cannot install." +#: app/install.c:857 +#, fuzzy +msgid "has invalid permissions. Cannot install." msgstr "" " har ugyldige rettigheter satt.\n" "Kan ikke installere." -#: app/install.c:514 +#: app/install.c:895 +#, fuzzy msgid "" -"Did you notice any error messages\n" -"in the console window? If not, installation\n" -"was successful! Otherwise, quit and investigate\n" -"the possible reason...\n" +"Did you notice any error messages in the console window?\n" +"If not, installation was successful!\n" +"Otherwise, quit and investigate the possible reason..." msgstr "" "La du merke til noen feilmeldinger\n" "i konsollvinduet? Hvis ikke var installasjonen\n" "vellykket! Ellers, avslutt og prЬv Е finne den\n" "mulige grunnen...\n" -#: app/install.c:546 +#: app/install.c:955 +#, fuzzy msgid "" -"\n" -"Installation successful!\n" +"Did you notice any error messages in the lines above?\n" +"If not, installation was successful!\n" +"Otherwise, quit and investigate the possible reason..." msgstr "" -"\n" -"Installasjon ferdig!\n" +"La du merke til noen feilmeldinger\n" +"i konsollvinduet? Hvis ikke var installasjonen\n" +"vellykket! Ellers, avslutt og prЬv Е finne den\n" +"mulige grunnen...\n" -#: app/install.c:555 -msgid "" -"\n" -"Installation failed. Contact system administrator.\n" +#: app/install.c:969 +msgid "Click \"Continue\" to complete GIMP installation." +msgstr "" + +#: app/install.c:978 +#, fuzzy +msgid "Installation failed. Contact system administrator." msgstr "" "\n" "Installasjonen feilet. Kontakt systemadministratoren.\n" +#: app/install.c:999 +msgid "" +"GIMP uses a limited amount of memory to store image data, the so-called\n" +"\"Tile Cache\". You should adjust it's size to fit into memory. Consider\n" +"the amount of memory used by other running processes." +msgstr "" + +#: app/install.c:1015 app/preferences_dialog.c:2102 +msgid "Tile Cache Size:" +msgstr "StЬrrelse pЕ flisbuffer:" + +#: app/install.c:1025 +msgid "" +"All image and undo data which doesn't fit into the Tile Cache will be\n" +"written to a swap file. This file should be located on a local filesystem\n" +"with enough free space (several hundred MB). On a UNIX system, you\n" +"may want to use the system-wide temp-dir (\"/tmp\" or \"/var/tmp\")." +msgstr "" + +#: app/install.c:1035 app/preferences_dialog.c:2361 +msgid "Select Swap Dir" +msgstr "Velg swap-katalog" + +#: app/install.c:1041 +#, fuzzy +msgid "Swap Directory:" +msgstr "Swap-katalog:" + +#: app/install.c:1063 +msgid "" +"GIMP can obtain this information from your X-server.\n" +"However, most X-servers do not return useful values." +msgstr "" + +#: app/install.c:1070 +#, fuzzy, c-format +msgid "Get Resolution from X-server (Currently %d x %d dpi)" +msgstr "(Den er nЕ %d x %d dpi)" + +#: app/install.c:1087 +msgid "Alternatively, you can set the monitor resolution manually." +msgstr "" + +#: app/install.c:1102 +#, fuzzy +msgid "Monitor Resolution X:" +msgstr "Hent opplЬsning for monitor" + #: app/interface.c:312 msgid "" "Foreground & background colors. The black and white squares reset colors. " @@ -2871,8 +2995,8 @@ msgstr "Gradient UI" msgid "Guide procedures" msgstr "Prosedyrer for guide" -#: app/internal_procs.c:122 app/preferences_dialog.c:1772 -#: app/preferences_dialog.c:1774 +#: app/internal_procs.c:122 app/preferences_dialog.c:1733 +#: app/preferences_dialog.c:1735 msgid "Interface" msgstr "Grensesnitt" @@ -3289,142 +3413,133 @@ msgid "degrees" msgstr "grader" #. /File -#: app/menus.c:82 +#. the underscore installs an accelerator using the character that follows +#: app/menus.c:85 msgid "/_File" msgstr "/_Fil" -#: app/menus.c:84 app/menus.c:191 +#. /File +#: app/menus.c:87 app/menus.c:193 msgid "/File/New..." msgstr "Fil/Ny..." -#: app/menus.c:86 app/menus.c:193 +#: app/menus.c:89 app/menus.c:195 msgid "/File/Open..." msgstr "/Fil/еpne..." -#: app/menus.c:93 +#: app/menus.c:96 msgid "/File/Acquire" msgstr "/Fil/Hent" -#: app/menus.c:98 +#: app/menus.c:101 msgid "/File/Preferences..." msgstr "/Fil/Preferanser..." -#: app/menus.c:105 -msgid "/File/Dialogs" -msgstr "/Fil/Dialoger" - -#: app/menus.c:107 +#: app/menus.c:108 msgid "/File/Dialogs/Layers, Channels & Paths..." msgstr "/Fil/Dialoger/Lag, kanaler og stier..." -#: app/menus.c:109 +#: app/menus.c:110 msgid "/File/Dialogs/Tool Options..." msgstr "/Fil/Dialoger/Alternativer for verktЬy..." -#: app/menus.c:114 +#: app/menus.c:115 msgid "/File/Dialogs/Brushes..." msgstr "/Fil/Dialoger/Pensler..." -#: app/menus.c:116 +#: app/menus.c:117 msgid "/File/Dialogs/Patterns..." msgstr "/Fil/Dialoger/MЬnstre..." -#: app/menus.c:118 +#: app/menus.c:119 msgid "/File/Dialogs/Gradients..." msgstr "/Fil/Dialoger/Gradienter..." -#: app/menus.c:120 +#: app/menus.c:121 msgid "/File/Dialogs/Palette..." msgstr "/Fil/Dialoger/Palett..." -#: app/menus.c:122 +#: app/menus.c:123 msgid "/File/Dialogs/Indexed Palette..." msgstr "/Fil/Dialoger/Indeksert palett..." -#: app/menus.c:127 +#: app/menus.c:128 msgid "/File/Dialogs/Input Devices..." msgstr "/Fil/Dialoger/Innenheter..." -#: app/menus.c:129 +#: app/menus.c:130 msgid "/File/Dialogs/Device Status..." msgstr "/Fil/Dialoger/Enhetsstatus..." -#: app/menus.c:134 +#: app/menus.c:135 msgid "/File/Dialogs/Document Index..." msgstr "/Fil/Dialoger/Dokumentindeks..." -#: app/menus.c:136 +#: app/menus.c:137 msgid "/File/Dialogs/Error Console..." msgstr "/Fil/Dialoger/Feil-konsoll..." -#: app/menus.c:138 +#: app/menus.c:139 msgid "/File/Dialogs/Display Filters..." msgstr "/Fil/Dialoger/Vis filtre..." -#: app/menus.c:148 app/menus.c:206 +#: app/menus.c:149 app/menus.c:208 msgid "/File/Quit" msgstr "/Fil/Avslutt" #. /Xtns -#: app/menus.c:153 +#. the underscore installs an accelerator using the character that follows +#: app/menus.c:155 msgid "/_Xtns" msgstr "/_Utvd" -#: app/menus.c:155 +#: app/menus.c:157 msgid "/Xtns/Module Browser..." msgstr "/Utvd/Modulviser..." #. /Help -#: app/menus.c:163 +#. the underscore installs an accelerator using the character that follows +#: app/menus.c:166 msgid "/_Help" msgstr "/_Hjelp" -#: app/menus.c:165 +#: app/menus.c:168 msgid "/Help/Help..." msgstr "/Hjelp/Hjelp..." -#: app/menus.c:167 +#: app/menus.c:170 msgid "/Help/Context Help..." msgstr "/Hjelp/Kontekst hjelp..." -#: app/menus.c:169 +#: app/menus.c:172 msgid "/Help/Tip of the Day..." msgstr "/Hjelp/Dagens tips..." -#: app/menus.c:171 +#: app/menus.c:174 msgid "/Help/About..." msgstr "/Hjelp/Om..." -#: app/menus.c:173 +#: app/menus.c:176 msgid "/Help/Dump Items (Debug)" msgstr "/Hjelp/Dump oppfЬringer (Debug)" -#. /File -#: app/menus.c:189 -msgid "/File" -msgstr "/Fil" - -#: app/menus.c:195 +#: app/menus.c:197 msgid "/File/Save" msgstr "/Fil/Lagre" -#: app/menus.c:197 +#: app/menus.c:199 msgid "/File/Save As..." msgstr "/Fil/Lagre som..." -#: app/menus.c:199 +#: app/menus.c:201 msgid "/File/Revert" msgstr "/Fil/Forkast" -#: app/menus.c:204 +#: app/menus.c:206 msgid "/File/Close" msgstr "/Fil/Lukk" #. /Edit -#: app/menus.c:214 -msgid "/Edit" -msgstr "/Rediger" - #: app/menus.c:216 msgid "/Edit/Undo" msgstr "/Rediger/Angre" @@ -3455,673 +3570,592 @@ msgstr "/Rediger/Lim inn som nytt" #. /Edit/Buffer #: app/menus.c:236 -msgid "/Edit/Buffer" -msgstr "/Rediger/Buffer" - -#: app/menus.c:238 msgid "/Edit/Buffer/Cut Named..." msgstr "/Rediger/Buffer/Klipp ut navngitt..." -#: app/menus.c:240 +#: app/menus.c:238 msgid "/Edit/Buffer/Copy Named..." msgstr "/Rediger/Buffer/Kopier navngitt..." -#: app/menus.c:242 +#: app/menus.c:240 msgid "/Edit/Buffer/Paste Named..." msgstr "/Rediger/Buffer/Lim inn navngitt..." -#: app/menus.c:247 +#: app/menus.c:245 msgid "/Edit/Clear" msgstr "/Rediger/Nullstill" -#: app/menus.c:249 +#: app/menus.c:247 msgid "/Edit/Fill" msgstr "/Rediger/Fyll" -#: app/menus.c:251 +#: app/menus.c:249 msgid "/Edit/Stroke" msgstr "/Rediger/StrЬk" #. /Select -#: app/menus.c:259 -msgid "/Select" -msgstr "/Velg" - -#: app/menus.c:261 +#: app/menus.c:257 msgid "/Select/Invert" msgstr "/Velg/Inverter" -#: app/menus.c:263 +#: app/menus.c:259 msgid "/Select/All" msgstr "/Velg/Alt" -#: app/menus.c:265 +#: app/menus.c:261 msgid "/Select/None" msgstr "/Velg/Ingen" -#: app/menus.c:267 +#: app/menus.c:263 msgid "/Select/Float" msgstr "/Velg/Flytende" -#: app/menus.c:272 +#: app/menus.c:268 msgid "/Select/Feather..." msgstr "/Velg/FjФr..." -#: app/menus.c:274 +#: app/menus.c:270 msgid "/Select/Sharpen" msgstr "/Velg/Skarpere" -#: app/menus.c:276 +#: app/menus.c:272 msgid "/Select/Shrink..." msgstr "/Velg/Krymp..." -#: app/menus.c:278 +#: app/menus.c:274 msgid "/Select/Grow..." msgstr "/Velg/Voks..." -#: app/menus.c:280 +#: app/menus.c:276 msgid "/Select/Border..." msgstr "/Velg/Kant..." -#: app/menus.c:285 +#: app/menus.c:281 msgid "/Select/Save to Channel" msgstr "/Velg/Lagre til kanal" #. /View -#: app/menus.c:290 -msgid "/View" -msgstr "/Vis" - -#: app/menus.c:292 +#: app/menus.c:286 msgid "/View/Zoom In" msgstr "/Vis/Zoom inn" -#: app/menus.c:294 +#: app/menus.c:288 msgid "/View/Zoom Out" msgstr "/Vis/Zoom ut" #. /View/Zoom -#: app/menus.c:299 -msgid "/View/Zoom" -msgstr "/Vis/Zoom" - -#: app/menus.c:301 +#: app/menus.c:293 msgid "/View/Zoom/16:1" msgstr "/Vis/Zoom/16:1" -#: app/menus.c:303 +#: app/menus.c:295 msgid "/View/Zoom/8:1" msgstr "/Vis/Zoom/8:1" -#: app/menus.c:305 +#: app/menus.c:297 msgid "/View/Zoom/4:1" msgstr "/Vis/Zoom/4:1" -#: app/menus.c:307 +#: app/menus.c:299 msgid "/View/Zoom/2:1" msgstr "/Vis/Zoom/2:1" -#: app/menus.c:309 +#: app/menus.c:301 msgid "/View/Zoom/1:1" msgstr "/Vis/Zoom/1:1" -#: app/menus.c:311 +#: app/menus.c:303 msgid "/View/Zoom/1:2" msgstr "/Vis/Zoom/1:2" -#: app/menus.c:313 +#: app/menus.c:305 msgid "/View/Zoom/1:4" msgstr "/Vis/Zoom/1:4" -#: app/menus.c:315 +#: app/menus.c:307 msgid "/View/Zoom/1:8" msgstr "/Vis/Zoom/1:8" -#: app/menus.c:317 +#: app/menus.c:309 msgid "/View/Zoom/1:16" msgstr "/Vis/Zoom/1:16" -#: app/menus.c:320 +#: app/menus.c:312 msgid "/View/Dot for Dot" msgstr "/Vis/Punkt for punkt" -#: app/menus.c:325 +#: app/menus.c:317 msgid "/View/Info Window..." msgstr "/Vis/Informasjonsvindu..." -#: app/menus.c:327 +#: app/menus.c:319 msgid "/View/Nav. Window..." msgstr "/Vis/Navigasjonsvindu..." -#: app/menus.c:329 -msgid "/View/Undo History..." -msgstr "/Vis/Angrelogg..." - -#: app/menus.c:334 +#: app/menus.c:324 msgid "/View/Toggle Selection" msgstr "/Vis/SlЕ av/pЕ utvalg" -#: app/menus.c:336 +#: app/menus.c:326 msgid "/View/Toggle Rulers" msgstr "/Vis/SlЕ av/pЕ linjaler" -#: app/menus.c:338 +#: app/menus.c:328 msgid "/View/Toggle Statusbar" msgstr "/Vis/SlЕ av/pЕ statuslinje" -#: app/menus.c:340 +#: app/menus.c:330 msgid "/View/Toggle Guides" msgstr "/Vis/SlЕ av pЕ guider" -#: app/menus.c:342 +#: app/menus.c:332 msgid "/View/Snap to Guides" msgstr "/Vis/Fest til guider" -#: app/menus.c:347 +#: app/menus.c:337 msgid "/View/New View" msgstr "/Vis/Ny visning" -#: app/menus.c:349 +#: app/menus.c:339 msgid "/View/Shrink Wrap" msgstr "/Vis/Pakk sammen" -#. /Image -#: app/menus.c:357 -msgid "/Image" -msgstr "/Bilde" - #. /Image/Mode -#: app/menus.c:362 -msgid "/Image/Mode" -msgstr "/Bilde/Modus" - -#: app/menus.c:364 +#: app/menus.c:344 msgid "/Image/Mode/RGB" msgstr "/Bilde/Modus/RGB" -#: app/menus.c:366 +#: app/menus.c:346 msgid "/Image/Mode/Grayscale" msgstr "/Bilde/Modus/GrЕtone" -#: app/menus.c:368 +#: app/menus.c:348 msgid "/Image/Mode/Indexed..." msgstr "/Bilde/Modus/Indeksert..." #. /Image/Colors -#: app/menus.c:376 -msgid "/Image/Colors" -msgstr "/Bilde/Farger" - -#: app/menus.c:381 +#: app/menus.c:356 msgid "/Image/Colors/Desaturate" msgstr "/Bilde/Farger/Mindre mettet" -#: app/menus.c:383 +#: app/menus.c:358 msgid "/Image/Colors/Invert" msgstr "/Bilde/Farger/Inverter" #. /Image/Colors/Auto -#: app/menus.c:391 -msgid "/Image/Colors/Auto" -msgstr "/Bilde/Farger/Auto" - -#: app/menus.c:393 +#: app/menus.c:366 msgid "/Image/Colors/Auto/Equalize" msgstr "/Bilde/Farger/Auto/Jevn ut" #. /Image/Alpha -#: app/menus.c:401 -msgid "/Image/Alpha" -msgstr "/Bilde/Alfa" - -#: app/menus.c:403 +#: app/menus.c:374 msgid "/Image/Alpha/Add Alpha Channel" msgstr "/Bilde/Alfa/Legg til alfakanal" #. /Image/Transforms -#: app/menus.c:408 -msgid "/Image/Transforms" -msgstr "/Bilde/Transformering" - -#: app/menus.c:410 +#: app/menus.c:379 msgid "/Image/Transforms/Offset..." msgstr "/Bilde/Transformering/Avstand..." -#: app/menus.c:412 +#: app/menus.c:381 msgid "/Image/Transforms/Rotate" msgstr "/Bilde/Transformeringer/RotИr" -#: app/menus.c:419 +#: app/menus.c:388 msgid "/Image/Canvas Size..." msgstr "/Bilde/StЬrrelse pЕ kanvas..." -#: app/menus.c:421 +#: app/menus.c:390 msgid "/Image/Scale Image..." msgstr "/Bilde/SkalИr bilde..." -#: app/menus.c:423 +#: app/menus.c:392 msgid "/Image/Duplicate" msgstr "/Bilde/Dupliser" #. /Layers -#: app/menus.c:431 -msgid "/Layers" -msgstr "/Lag" - -#: app/menus.c:433 +#: app/menus.c:400 msgid "/Layers/Layers, Channels & Paths..." msgstr "/Lag/Lag, kanaler og stier..." -#. /Layers/Stack -#: app/menus.c:438 -msgid "/Layers/Stack" -msgstr "/Lag/Stabel" +#: app/menus.c:404 +msgid "/Layers/Layer to Imagesize" +msgstr "/Lag/Lag til bildestЬrrelse" -#: app/menus.c:440 +#. /Layers/Stack +#: app/menus.c:409 msgid "/Layers/Stack/Previous Layer" msgstr "/Lag/Stabel/Forrige lag" -#: app/menus.c:442 +#: app/menus.c:411 msgid "/Layers/Stack/Next Layer" msgstr "/Lag/Stabel/Neste lag" -#: app/menus.c:444 +#: app/menus.c:413 msgid "/Layers/Stack/Raise Layer" msgstr "/Lag/Stabel/Hev lag" -#: app/menus.c:446 +#: app/menus.c:415 msgid "/Layers/Stack/Lower Layer" msgstr "/Lag/Stabel/Senk lag" -#: app/menus.c:448 +#: app/menus.c:417 msgid "/Layers/Stack/Layer to Top" msgstr "/Lag/Stabel/Lag til topp" -#: app/menus.c:450 +#: app/menus.c:419 msgid "/Layers/Stack/Layer to Bottom" msgstr "/Lag/Stabel/Lag til bunn" #. /Layers/Rotate -#: app/menus.c:457 +#: app/menus.c:426 msgid "/Layers/Rotate" msgstr "/Lag/RotИr" -#: app/menus.c:460 -msgid "/Layers/Layer to Imagesize" -msgstr "/Lag/Lag til bildestЬrrelse" - -#: app/menus.c:465 +#: app/menus.c:431 msgid "/Layers/Anchor Layer" msgstr "/Lag/Forankre lag" -#: app/menus.c:467 +#: app/menus.c:433 msgid "/Layers/Merge Visible Layers..." msgstr "/Lag/Flett sammen synlige lag..." -#: app/menus.c:469 +#: app/menus.c:435 msgid "/Layers/Flatten Image" msgstr "/Lag/Flat ut bilde" -#: app/menus.c:474 +#: app/menus.c:440 msgid "/Layers/Mask to Selection" msgstr "/Lag/Maske til utvalg" -#: app/menus.c:479 +#: app/menus.c:445 msgid "/Layers/Add Alpha Channel" msgstr "/Lag/Legg til alfakanal" -#: app/menus.c:481 +#: app/menus.c:447 msgid "/Layers/Alpha to Selection" msgstr "/Lag/Alpha til utvalg" #. /Tools -#: app/menus.c:489 -msgid "/Tools" -msgstr "/VerktЬy" - -#: app/menus.c:491 +#: app/menus.c:455 msgid "/Tools/Toolbox" msgstr "/VerktЬy/VerktЬyskrin" -#: app/menus.c:493 +#: app/menus.c:457 msgid "/Tools/Default Colors" msgstr "/VerktЬy/Standard farger" -#: app/menus.c:495 +#: app/menus.c:459 msgid "/Tools/Swap Colors" msgstr "/VerktЬy/Bytt farger" -#: app/menus.c:501 -msgid "/Tools/Select Tools" -msgstr "/VerktЬy/UtvalgsverktЬy" - -#: app/menus.c:503 -msgid "/Tools/Transform Tools" -msgstr "/VerktЬy/TransformasjonsverktЬy" - -#: app/menus.c:505 -msgid "/Tools/Paint Tools" -msgstr "/VerktЬy/TegneverktЬy" - #. /Dialogs -#: app/menus.c:510 -msgid "/Dialogs" -msgstr "/Dialoger" - -#: app/menus.c:512 +#: app/menus.c:466 msgid "/Dialogs/Layers, Channels & Paths..." msgstr "/Dialoger/Lag, kanaler og stier..." -#: app/menus.c:514 +#: app/menus.c:468 msgid "/Dialogs/Tool Options..." msgstr "/Dialoger/Alternativer for verktЬy..." -#: app/menus.c:519 +#: app/menus.c:473 msgid "/Dialogs/Brushes..." msgstr "/Dialoger/Pensler..." -#: app/menus.c:521 +#: app/menus.c:475 msgid "/Dialogs/Patterns..." msgstr "/Dialoger/MЬnstre..." -#: app/menus.c:523 +#: app/menus.c:477 msgid "/Dialogs/Gradients..." msgstr "/Dialoger/Gradienter..." -#: app/menus.c:525 +#: app/menus.c:479 msgid "/Dialogs/Palette..." msgstr "/Dialoger/Palett..." -#: app/menus.c:527 +#: app/menus.c:481 msgid "/Dialogs/Indexed Palette..." msgstr "/Dialoger/Indeksert palett..." -#: app/menus.c:532 +#: app/menus.c:486 msgid "/Dialogs/Input Devices..." msgstr "/Dialoger/Innenheter..." -#: app/menus.c:534 +#: app/menus.c:488 msgid "/Dialogs/Device Status..." msgstr "/Dialoger/Enhetsstatus..." -#: app/menus.c:539 +#: app/menus.c:493 msgid "/Dialogs/Document Index..." msgstr "/Dialoger/Dokumentindeks..." -#: app/menus.c:541 +#: app/menus.c:495 msgid "/Dialogs/Error Console..." msgstr "/Dialoger/Feil-konsoll..." -#: app/menus.c:543 +#: app/menus.c:497 msgid "/Dialogs/Display Filters..." msgstr "/Dialoger/Vis filtre..." -#. /Filters -#: app/menus.c:551 -msgid "/Filters" -msgstr "/Filtre" +#: app/menus.c:499 +#, fuzzy +msgid "/Dialogs/Undo History..." +msgstr "/Vis/Angrelogg..." -#: app/menus.c:553 +#. /Filters +#: app/menus.c:508 msgid "/Filters/Repeat Last" msgstr "/Filtre/Gjenta siste" -#: app/menus.c:555 +#: app/menus.c:510 msgid "/Filters/Re-Show Last" msgstr "/Filtre/Vis siste pЕ nytt" -#: app/menus.c:561 +#: app/menus.c:515 msgid "/Filters/Blur" msgstr "/Filtre/GjЬr uskarp" -#: app/menus.c:564 +#: app/menus.c:517 msgid "/Filters/Colors" msgstr "/Filtre/Farger" -#: app/menus.c:569 +#: app/menus.c:519 msgid "/Filters/Noise" msgstr "/Filtre/StЬy" -#: app/menus.c:571 +#: app/menus.c:521 msgid "/Filters/Edge-Detect" msgstr "/Filtre/Finn kant" -#: app/menus.c:573 +#: app/menus.c:523 msgid "/Filters/Enhance" msgstr "/Filtre/Utbedre" -#: app/menus.c:575 +#: app/menus.c:525 msgid "/Filters/Generic" msgstr "/Filtre/Vanlig" -#: app/menus.c:580 +#: app/menus.c:530 msgid "/Filters/Glass Effects" msgstr "/Filtre/Glass effekter" -#: app/menus.c:582 +#: app/menus.c:532 msgid "/Filters/Light Effects" msgstr "/Filtre/Lyseffekter" -#: app/menus.c:584 +#: app/menus.c:534 msgid "/Filters/Distorts" msgstr "/Filtre/Forvrengninger" -#: app/menus.c:586 +#: app/menus.c:536 msgid "/Filters/Artistic" msgstr "/Filtre/Artistiske" -#: app/menus.c:588 +#: app/menus.c:538 msgid "/Filters/Map" msgstr "/Filtre/Kart" -#: app/menus.c:590 +#: app/menus.c:540 msgid "/Filters/Render" msgstr "/Filtre/Render" -#: app/menus.c:592 +#: app/menus.c:542 msgid "/Filters/Web" msgstr "/Filtre/Web" -#: app/menus.c:597 +#: app/menus.c:547 msgid "/Filters/Animation" msgstr "/Filtre/Animasjon" -#: app/menus.c:599 +#: app/menus.c:549 msgid "/Filters/Combine" msgstr "/Filtre/KombinИr" -#: app/menus.c:604 +#: app/menus.c:554 msgid "/Filters/Toys" msgstr "/Filtre/LeketЬy" -#. /Script-Fu -#: app/menus.c:609 -msgid "/Script-Fu" -msgstr "/Script-Fu" - -#: app/menus.c:620 +#: app/menus.c:567 msgid "/Automatic" msgstr "/Automatisk" -#: app/menus.c:634 +#: app/menus.c:581 msgid "/By Extension" msgstr "/Etter type" -#: app/menus.c:648 +#: app/menus.c:595 msgid "/New Layer..." msgstr "/Nytt lag..." #. /Stack -#: app/menus.c:653 -msgid "/Stack" -msgstr "/Stabel" - -#: app/menus.c:655 +#: app/menus.c:600 msgid "/Stack/Raise Layer" msgstr "Stabel/Hev lag" -#: app/menus.c:657 +#: app/menus.c:602 msgid "/Stack/Lower Layer" msgstr "/Stabel/Senk lag" -#: app/menus.c:659 +#: app/menus.c:604 msgid "/Stack/Layer to Top" msgstr "/Stabel/Lag til topp" -#: app/menus.c:661 +#: app/menus.c:606 msgid "/Stack/Layer to Bottom" msgstr "/Stabel/Lag til bunn" -#: app/menus.c:664 +#: app/menus.c:609 msgid "/Duplicate Layer" msgstr "/Dupliser lag" -#: app/menus.c:666 +#: app/menus.c:611 msgid "/Anchor Layer" msgstr "/Forankre lag" -#: app/menus.c:668 +#: app/menus.c:613 msgid "/Delete Layer" msgstr "/Slett lag" -#: app/menus.c:673 +#: app/menus.c:618 msgid "/Layer Boundary Size..." msgstr "/Lag/GrensestЬrrelse..." -#: app/menus.c:675 +#: app/menus.c:620 msgid "/Layer to Imagesize" msgstr "/Lag/Lag til bildestЬrrelse" -#: app/menus.c:677 +#: app/menus.c:622 msgid "/Scale Layer..." msgstr "/SkalИr lag..." -#: app/menus.c:682 +#: app/menus.c:627 msgid "/Merge Visible Layers..." msgstr "/Flett sammen synlige lag..." -#: app/menus.c:684 +#: app/menus.c:629 msgid "/Merge Down" msgstr "/Flett sammen nedover" -#: app/menus.c:686 +#: app/menus.c:631 msgid "/Flatten Image" msgstr "/Flate ut bilde" -#: app/menus.c:691 +#: app/menus.c:636 msgid "/Add Layer Mask..." msgstr "/Legg til maske for lag..." -#: app/menus.c:693 +#: app/menus.c:638 #, fuzzy msgid "/Apply Layer Mask" msgstr "/Bruk maske for lag..." -#: app/menus.c:695 +#: app/menus.c:640 #, fuzzy msgid "/Delete Layer Mask" msgstr "/Slett lag" -#: app/menus.c:697 +#: app/menus.c:642 msgid "/Mask to Selection" msgstr "/Maske til utvalg" -#: app/menus.c:702 +#: app/menus.c:647 msgid "/Add Alpha Channel" msgstr "/Legg til alfakanal" -#: app/menus.c:704 +#: app/menus.c:649 msgid "/Alpha to Selection" msgstr "/Alfa til utvalg" -#: app/menus.c:709 +#: app/menus.c:654 msgid "/Edit Layer Attributes..." msgstr "/Rediger lagattributter..." -#: app/menus.c:720 +#: app/menus.c:665 msgid "/New Channel..." msgstr "/Ny kanal..." -#: app/menus.c:722 +#: app/menus.c:667 msgid "/Raise Channel" msgstr "/Hev kanal" -#: app/menus.c:724 +#: app/menus.c:669 msgid "/Lower Channel" msgstr "/Senk kanal" -#: app/menus.c:726 +#: app/menus.c:671 msgid "/Duplicate Channel" msgstr "/Dupliser kanal" -#: app/menus.c:731 +#: app/menus.c:676 msgid "/Channel to Selection" msgstr "/Kanal til utvalg" -#: app/menus.c:733 +#: app/menus.c:678 msgid "/Add to Selection" msgstr "/Legg til i utvalg" -#: app/menus.c:735 +#: app/menus.c:680 msgid "/Subtract from Selection" msgstr "/Trekk fra utvalg" -#: app/menus.c:737 +#: app/menus.c:682 msgid "/Intersect with Selection" msgstr "/Kryss med utvalg" -#: app/menus.c:742 +#: app/menus.c:687 msgid "/Delete Channel" msgstr "/Slett kanal" -#: app/menus.c:747 +#: app/menus.c:692 msgid "/Edit Channel Attributes..." msgstr "/Rediger attributter for kanal..." -#: app/menus.c:758 +#: app/menus.c:703 msgid "/New Path" msgstr "/Ny sti" -#: app/menus.c:760 +#: app/menus.c:705 msgid "/Duplicate Path" msgstr "/Duplisert sti" -#: app/menus.c:762 +#: app/menus.c:707 msgid "/Path to Selection" msgstr "/Sti til utvalg" -#: app/menus.c:764 +#: app/menus.c:709 msgid "/Selection to Path" msgstr "/Utvalg til sti" -#: app/menus.c:766 +#: app/menus.c:711 msgid "/Stroke Path" msgstr "/StrЬk sti" -#: app/menus.c:768 +#: app/menus.c:713 msgid "/Delete Path" msgstr "/Slett sti" -#: app/menus.c:773 +#: app/menus.c:718 msgid "/Copy Path" msgstr "/Kopier sti" -#: app/menus.c:775 +#: app/menus.c:720 msgid "/Paste Path" msgstr "/Lim inn sti" -#: app/menus.c:777 +#: app/menus.c:722 msgid "/Import Path..." msgstr "/Importsti..." -#: app/menus.c:779 +#: app/menus.c:724 msgid "/Export Path..." msgstr "/Eksportsti..." -#: app/menus.c:784 +#: app/menus.c:729 msgid "/Edit Path Attributes..." msgstr "Rediger attributter for sti..." -#: app/menus.c:1310 +#: app/menus.c:1260 #, c-format msgid "Error opening file: %s\n" msgstr "Feil under Еpning av fil: %s\n" @@ -4217,7 +4251,7 @@ msgstr "Tilstand: " msgid "Autoload during startup" msgstr "Autolasting under oppstart" -#: app/move.c:456 +#: app/move.c:458 msgid "Move Tool" msgstr "FlytteverktЬy" @@ -4231,7 +4265,7 @@ msgstr "Navigasjon: %s-%d.%d" msgid "Navigation: No Image" msgstr "Navigasjon: Ikke noe bilde" -#: app/paint_core.c:717 +#: app/paint_core.c:735 msgid "No brushes available for use with this tool." msgstr "Ingen pensler tilgjengelig for bruk med dette verktЬyet." @@ -4673,477 +4707,471 @@ msgid "You will need to restart GIMP for these changes to take effect." msgstr "" "Du vil mЕtte starte GIMP pЕ nytt for at disse endringene skal tre i kraft." -#: app/preferences_dialog.c:1459 +#: app/preferences_dialog.c:1002 +#, c-format +msgid "The default comments is limited to %d characters." +msgstr "" + +#: app/preferences_dialog.c:1424 msgid "Preferences" msgstr "Preferanser" #. The categories tree -#: app/preferences_dialog.c:1481 +#: app/preferences_dialog.c:1446 msgid "Categories" msgstr "Kategorier" -#: app/preferences_dialog.c:1509 app/preferences_dialog.c:1511 +#: app/preferences_dialog.c:1474 app/preferences_dialog.c:1476 msgid "New File" msgstr "Ny fil" -#: app/preferences_dialog.c:1522 +#: app/preferences_dialog.c:1487 msgid "Default Image Size and Unit" msgstr "Standard stЬrrelse og enhet for bilde" -#: app/preferences_dialog.c:1536 +#: app/preferences_dialog.c:1501 msgid "Width" msgstr "Bredde" -#: app/preferences_dialog.c:1538 +#: app/preferences_dialog.c:1503 msgid "Height" msgstr "HЬyde" -#: app/preferences_dialog.c:1568 +#: app/preferences_dialog.c:1533 msgid "Default Image Resolution and Resolution Unit" msgstr "Standard opplЬsning og opplЬsningsenhet for bilde" -#: app/preferences_dialog.c:1595 app/preferences_dialog.c:2359 +#: app/preferences_dialog.c:1560 app/preferences_dialog.c:2288 msgid "dpi" msgstr "dpi" -#: app/preferences_dialog.c:1642 +#: app/preferences_dialog.c:1607 msgid "Default Image Type:" msgstr "Standard bildetype:" -#: app/preferences_dialog.c:1678 app/preferences_dialog.c:2166 -msgid "Bytes" -msgstr "Bytes" - -#: app/preferences_dialog.c:1679 app/preferences_dialog.c:2167 -msgid "KiloBytes" -msgstr "Kilobytes" - -#: app/preferences_dialog.c:1680 app/preferences_dialog.c:2168 -msgid "MegaBytes" -msgstr "Megabytes" - -#: app/preferences_dialog.c:1686 +#: app/preferences_dialog.c:1618 msgid "Maximum Image Size:" msgstr "Maksimum bildestЬrrelse:" -#: app/preferences_dialog.c:1692 app/preferences_dialog.c:1694 +#: app/preferences_dialog.c:1623 app/preferences_dialog.c:1625 +#, fuzzy +msgid "Default Comment" +msgstr "Standard" + +#: app/preferences_dialog.c:1633 +msgid "Comment Used for New Images" +msgstr "" + +#: app/preferences_dialog.c:1653 app/preferences_dialog.c:1655 msgid "Display" msgstr "Skjerm" -#: app/preferences_dialog.c:1702 +#: app/preferences_dialog.c:1663 msgid "Transparency" msgstr "Gjennomsiktighet" -#: app/preferences_dialog.c:1721 +#: app/preferences_dialog.c:1682 msgid "Light Checks" msgstr "Lyse ruter" -#: app/preferences_dialog.c:1722 +#: app/preferences_dialog.c:1683 msgid "Mid-Tone Checks" msgstr "Halvlyse ruter" -#: app/preferences_dialog.c:1723 +#: app/preferences_dialog.c:1684 msgid "Dark Checks" msgstr "MЬrke ruter" -#: app/preferences_dialog.c:1724 +#: app/preferences_dialog.c:1685 msgid "White Only" msgstr "Kun hvitt" -#: app/preferences_dialog.c:1725 +#: app/preferences_dialog.c:1686 msgid "Gray Only" msgstr "Kun grЕtt" -#: app/preferences_dialog.c:1726 +#: app/preferences_dialog.c:1687 msgid "Black Only" msgstr "Kun sort" -#: app/preferences_dialog.c:1730 +#: app/preferences_dialog.c:1691 msgid "Transparency Type:" msgstr "Type gjennomsiktighet" -#: app/preferences_dialog.c:1737 app/preferences_dialog.c:1810 -#: app/preferences_dialog.c:1824 +#: app/preferences_dialog.c:1698 app/preferences_dialog.c:1771 +#: app/preferences_dialog.c:1785 msgid "Small" msgstr "Liten" -#: app/preferences_dialog.c:1738 app/preferences_dialog.c:1811 -#: app/preferences_dialog.c:1825 +#: app/preferences_dialog.c:1699 app/preferences_dialog.c:1772 +#: app/preferences_dialog.c:1786 msgid "Medium" msgstr "Medium" -#: app/preferences_dialog.c:1739 app/preferences_dialog.c:1812 -#: app/preferences_dialog.c:1826 +#: app/preferences_dialog.c:1700 app/preferences_dialog.c:1773 +#: app/preferences_dialog.c:1787 msgid "Large" msgstr "Stor" -#: app/preferences_dialog.c:1743 +#: app/preferences_dialog.c:1704 msgid "Check Size:" msgstr "StЬrrelse pЕ rute:" -#: app/preferences_dialog.c:1746 +#: app/preferences_dialog.c:1707 msgid "8-Bit Displays" msgstr "8-bits skjermer" -#: app/preferences_dialog.c:1751 +#: app/preferences_dialog.c:1712 msgid "Install Colormap" msgstr "Installer fargekart" -#: app/preferences_dialog.c:1760 +#: app/preferences_dialog.c:1721 msgid "Colormap Cycling" msgstr "Bytting av fargekart" -#: app/preferences_dialog.c:1809 +#: app/preferences_dialog.c:1770 msgid "Tiny" msgstr "Liten" -#: app/preferences_dialog.c:1813 +#: app/preferences_dialog.c:1774 msgid "Huge" msgstr "Stor" -#: app/preferences_dialog.c:1817 +#: app/preferences_dialog.c:1778 msgid "Preview Size:" msgstr "StЬrrelse for forhЕndsvisning" -#: app/preferences_dialog.c:1830 +#: app/preferences_dialog.c:1791 msgid "Nav Preview Size:" msgstr "Nav stЬrrelse for forhЕndsvisning" -#: app/preferences_dialog.c:1840 +#: app/preferences_dialog.c:1801 msgid "Recent Documents List Size:" msgstr "StЬrrelse pЕ liste over nylig Еpnede filer:" #. Indicators -#: app/preferences_dialog.c:1844 +#: app/preferences_dialog.c:1805 msgid "Toolbox" msgstr "VerktЬyskasse" -#: app/preferences_dialog.c:1847 +#: app/preferences_dialog.c:1808 msgid "Display Brush, Pattern and Gradient Indicators" msgstr "Vis pensel-, mЬnster- og gradient-indikatorer" -#: app/preferences_dialog.c:1856 +#: app/preferences_dialog.c:1817 msgid "Dialog Behaviour" msgstr "DialogoppfЬrsel" -#: app/preferences_dialog.c:1858 +#: app/preferences_dialog.c:1819 msgid "Navigation Window per Display" msgstr "Navigasjonsvindu per skjerm" -#: app/preferences_dialog.c:1867 +#: app/preferences_dialog.c:1828 msgid "Info Window Follows Mouse" msgstr "Infovindu fЬlger musen" -#: app/preferences_dialog.c:1878 app/preferences_dialog.c:1880 +#: app/preferences_dialog.c:1839 app/preferences_dialog.c:1841 msgid "Help System" msgstr "Hjelpesystem" -#: app/preferences_dialog.c:1890 +#: app/preferences_dialog.c:1851 msgid "Show Tool Tips" msgstr "Vis verktЬytips" -#: app/preferences_dialog.c:1900 +#: app/preferences_dialog.c:1861 msgid "Context Sensitive Help with \"F1\"" msgstr "Kontekstsensitiv hjelp med \"F1\"" -#: app/preferences_dialog.c:1909 +#: app/preferences_dialog.c:1870 msgid "Help Browser" msgstr "Hjelp leser" -#: app/preferences_dialog.c:1921 +#: app/preferences_dialog.c:1882 msgid "Internal" msgstr "Intern" -#: app/preferences_dialog.c:1922 +#: app/preferences_dialog.c:1883 msgid "Netscape" msgstr "Netscape" -#: app/preferences_dialog.c:1926 +#: app/preferences_dialog.c:1887 msgid "Help Browser to Use:" msgstr "Hjelp leser som skal brukes" -#: app/preferences_dialog.c:1931 app/preferences_dialog.c:1933 +#: app/preferences_dialog.c:1892 app/preferences_dialog.c:1894 msgid "Image Windows" msgstr "Bildevindu" -#: app/preferences_dialog.c:1941 +#: app/preferences_dialog.c:1902 msgid "Appearance" msgstr "Utseende" -#: app/preferences_dialog.c:1943 +#: app/preferences_dialog.c:1904 msgid "Use \"Dot for Dot\" by default" msgstr "Bruk \"Punkt for punkt\" som standard" -#: app/preferences_dialog.c:1952 +#: app/preferences_dialog.c:1913 msgid "Resize Window on Zoom" msgstr "Endre stЬrrelse pЕ vinduet ved zoom" -#: app/preferences_dialog.c:1961 +#: app/preferences_dialog.c:1922 msgid "Show Rulers" msgstr "Vis linjaler" -#: app/preferences_dialog.c:1970 +#: app/preferences_dialog.c:1931 msgid "Show Statusbar" msgstr "Vis statuslinje" -#: app/preferences_dialog.c:1994 +#: app/preferences_dialog.c:1955 msgid "Marching Ants Speed:" msgstr "Hastighet for marsjerende maur:" #. Set the currently used string as "Custom" -#: app/preferences_dialog.c:2002 +#: app/preferences_dialog.c:1963 msgid "Custom" msgstr "Egendefinert" #. set some commonly used format strings -#: app/preferences_dialog.c:2008 +#: app/preferences_dialog.c:1969 msgid "Standard" msgstr "Standard" -#: app/preferences_dialog.c:2013 +#: app/preferences_dialog.c:1974 msgid "Show zoom percentage" msgstr "Vis zoom-prosent" -#: app/preferences_dialog.c:2018 +#: app/preferences_dialog.c:1979 msgid "Show zoom ratio" msgstr "Vis zoom-rate" -#: app/preferences_dialog.c:2023 +#: app/preferences_dialog.c:1984 msgid "Show reversed zoom ratio" msgstr "Vis reversert zoom-rate" -#: app/preferences_dialog.c:2034 +#: app/preferences_dialog.c:1995 msgid "Image Title Format:" msgstr "Tittelformat for bilde:" #. End of the title format string -#: app/preferences_dialog.c:2038 +#: app/preferences_dialog.c:1999 msgid "Pointer Movement Feedback" msgstr "Tilbakemelding pЕ pekerbevegelse" -#: app/preferences_dialog.c:2041 +#: app/preferences_dialog.c:2002 msgid "Perfect-but-Slow Pointer Tracking" msgstr "Perfekt-men-treg pekerfЬlging" -#: app/preferences_dialog.c:2050 +#: app/preferences_dialog.c:2011 msgid "Disable Cursor Updating" msgstr "SlЕ av oppdatering av markЬren" -#: app/preferences_dialog.c:2062 app/preferences_dialog.c:2064 +#: app/preferences_dialog.c:2023 app/preferences_dialog.c:2025 #: app/tools.c:1080 msgid "Tool Options" msgstr "VerktЬysalternativer" -#: app/preferences_dialog.c:2072 +#: app/preferences_dialog.c:2033 msgid "Paint Options" msgstr "Alternativer for tegning" -#: app/preferences_dialog.c:2075 +#: app/preferences_dialog.c:2036 msgid "Use Global Paint Options" msgstr "Bruk globale alternativer for tegning" -#: app/preferences_dialog.c:2090 app/preferences_dialog.c:2092 +#: app/preferences_dialog.c:2051 app/preferences_dialog.c:2053 msgid "Environment" msgstr "MijЬ" -#: app/preferences_dialog.c:2100 +#: app/preferences_dialog.c:2061 msgid "Resource Consumption" msgstr "Ressursbruk" -#: app/preferences_dialog.c:2102 +#: app/preferences_dialog.c:2063 msgid "Conservative Memory Usage" msgstr "Konservativt minnebruk" -#: app/preferences_dialog.c:2130 +#: app/preferences_dialog.c:2091 msgid "Levels of Undo:" msgstr "AngrenivЕer:" -#: app/preferences_dialog.c:2174 -msgid "Tile Cache Size:" -msgstr "StЬrrelse pЕ flisbuffer:" - -#: app/preferences_dialog.c:2185 +#: app/preferences_dialog.c:2113 msgid "Number of Processors to Use:" msgstr "Antall prosessorer som skal brukes:" -#: app/preferences_dialog.c:2189 app/transform_tool.c:215 +#: app/preferences_dialog.c:2117 app/transform_tool.c:215 msgid "Scaling" msgstr "Skalering" -#: app/preferences_dialog.c:2207 +#: app/preferences_dialog.c:2135 msgid "Nearest Neighbor (Fast)" msgstr "NФrmeste nabo (Rask)" -#: app/preferences_dialog.c:2211 +#: app/preferences_dialog.c:2139 msgid "Cubic (Slow)" msgstr "Kubisk (Treg)" -#: app/preferences_dialog.c:2216 +#: app/preferences_dialog.c:2144 msgid "Interpolation Type:" msgstr "Type interpolasjon:" -#: app/preferences_dialog.c:2219 +#: app/preferences_dialog.c:2147 msgid "File Saving" msgstr "Lagring av fil" -#: app/preferences_dialog.c:2236 app/preferences_dialog.c:2249 +#: app/preferences_dialog.c:2164 app/preferences_dialog.c:2177 msgid "Always" msgstr "Alltid" -#: app/preferences_dialog.c:2237 +#: app/preferences_dialog.c:2165 msgid "Never" msgstr "Aldri" -#: app/preferences_dialog.c:2241 +#: app/preferences_dialog.c:2169 msgid "Try to Write a Thumbnail File:" msgstr "PrЬv Е skrive en miniatyrfil:" -#: app/preferences_dialog.c:2248 +#: app/preferences_dialog.c:2176 msgid "Only when Modified" msgstr "Kun nЕr endret" -#: app/preferences_dialog.c:2253 +#: app/preferences_dialog.c:2181 msgid "\"File > Save\" Saves the Image:" msgstr "\"Fil > Lagre\" lagrer bildet:" -#: app/preferences_dialog.c:2259 +#: app/preferences_dialog.c:2187 msgid "Session Management" msgstr "Sesjonsbehandling" -#: app/preferences_dialog.c:2261 +#: app/preferences_dialog.c:2189 msgid "Session" msgstr "Sesjon" -#: app/preferences_dialog.c:2269 +#: app/preferences_dialog.c:2197 msgid "Window Positions" msgstr "Vindusposisjoner" -#: app/preferences_dialog.c:2271 +#: app/preferences_dialog.c:2199 msgid "Save Window Positions on Exit" msgstr "Lagre vindusposisjoner ved avslutt" -#: app/preferences_dialog.c:2285 +#: app/preferences_dialog.c:2213 msgid "Clear Saved Window Positions Now" msgstr "Nullstill lagrede vindusposisjoner nЕ" -#: app/preferences_dialog.c:2293 +#: app/preferences_dialog.c:2221 msgid "Always Try to Restore Session" msgstr "Alltid prЬv Е gjenopprette sesjon" -#: app/preferences_dialog.c:2302 +#: app/preferences_dialog.c:2230 msgid "Devices" msgstr "Enheter" -#: app/preferences_dialog.c:2304 +#: app/preferences_dialog.c:2232 msgid "Save Device Status on Exit" msgstr "Lagre enhetsstatus ved avslutt" -#: app/preferences_dialog.c:2315 app/preferences_dialog.c:2317 +#: app/preferences_dialog.c:2243 app/preferences_dialog.c:2245 msgid "Monitor" msgstr "Monitor" -#: app/preferences_dialog.c:2325 +#: app/preferences_dialog.c:2253 msgid "Get Monitor Resolution" msgstr "Hent opplЬsning for monitor" -#: app/preferences_dialog.c:2333 +#: app/preferences_dialog.c:2261 #, c-format msgid "(Currently %d x %d dpi)" msgstr "(Den er nЕ %d x %d dpi)" -#: app/preferences_dialog.c:2384 +#: app/preferences_dialog.c:2313 msgid "From X Server" msgstr "Fra X-tjener" -#: app/preferences_dialog.c:2399 +#: app/preferences_dialog.c:2328 msgid "Manually:" msgstr "Manuelt" -#: app/preferences_dialog.c:2412 app/preferences_dialog.c:2414 +#: app/preferences_dialog.c:2341 app/preferences_dialog.c:2343 msgid "Directories" msgstr "Kataloger" -#: app/preferences_dialog.c:2431 +#: app/preferences_dialog.c:2360 msgid "Temp Dir:" msgstr "Temp-katalog:" -#: app/preferences_dialog.c:2431 +#: app/preferences_dialog.c:2360 msgid "Select Temp Dir" msgstr "Velg temp-katalog" -#: app/preferences_dialog.c:2432 +#: app/preferences_dialog.c:2361 msgid "Swap Dir:" msgstr "Swap-katalog:" -#: app/preferences_dialog.c:2432 -msgid "Select Swap Dir" -msgstr "Velg swap-katalog" - -#: app/preferences_dialog.c:2468 +#: app/preferences_dialog.c:2397 msgid "Brushes Directories" msgstr "Katalog for pensler" -#: app/preferences_dialog.c:2470 +#: app/preferences_dialog.c:2399 msgid "Select Brushes Dir" msgstr "Velg katalog for pensler" -#: app/preferences_dialog.c:2472 +#: app/preferences_dialog.c:2401 msgid "Generated Brushes" msgstr "Genererte pensler" -#: app/preferences_dialog.c:2472 +#: app/preferences_dialog.c:2401 msgid "Generated Brushes Directories" msgstr "Kataloger for genererte pensler" -#: app/preferences_dialog.c:2474 +#: app/preferences_dialog.c:2403 msgid "Select Generated Brushes Dir" msgstr "Velg katalog for genererte pensler" -#: app/preferences_dialog.c:2476 +#: app/preferences_dialog.c:2405 msgid "Patterns Directories" msgstr "Katalog for mЬnstre" -#: app/preferences_dialog.c:2478 +#: app/preferences_dialog.c:2407 msgid "Select Patterns Dir" msgstr "Velg katalog for mЬnstre" -#: app/preferences_dialog.c:2480 +#: app/preferences_dialog.c:2409 msgid "Palettes Directories" msgstr "Kataloger for paletter" -#: app/preferences_dialog.c:2482 +#: app/preferences_dialog.c:2411 msgid "Select Palettes Dir" msgstr "Velg katalog for mЬnstre" -#: app/preferences_dialog.c:2484 +#: app/preferences_dialog.c:2413 msgid "Gradients Directories" msgstr "Katalog for gradienter" -#: app/preferences_dialog.c:2486 +#: app/preferences_dialog.c:2415 msgid "Select Gradients Dir" msgstr "Velg katalog for gradienter" -#: app/preferences_dialog.c:2488 +#: app/preferences_dialog.c:2417 msgid "Plug-Ins" msgstr "Tillegg" -#: app/preferences_dialog.c:2488 +#: app/preferences_dialog.c:2417 msgid "Plug-Ins Directories" msgstr "Kataloger for tillegg" -#: app/preferences_dialog.c:2490 +#: app/preferences_dialog.c:2419 msgid "Select Plug-Ins Dir" msgstr "Velg katalog for tillegg" -#: app/preferences_dialog.c:2492 +#: app/preferences_dialog.c:2421 msgid "Modules" msgstr "Moduler" -#: app/preferences_dialog.c:2492 +#: app/preferences_dialog.c:2421 msgid "Modules Directories" msgstr "Kataloger for moduler" -#: app/preferences_dialog.c:2494 +#: app/preferences_dialog.c:2423 msgid "Select Modules Dir" msgstr "Velg katalog for moduler" @@ -5215,59 +5243,59 @@ msgstr "Utvalg: REPLACE" msgid "Selection: " msgstr "Utvalg: " -#: app/resize.c:154 +#: app/resize.c:156 msgid "Scale Layer" msgstr "SkalИr lag" -#: app/resize.c:156 app/resize.c:181 app/tool_options.c:774 +#: app/resize.c:158 app/resize.c:183 app/tool_options.c:774 msgid "Size" msgstr "StЬrrelse" -#: app/resize.c:160 +#: app/resize.c:162 msgid "Scale Image" msgstr "SkalИr bilde" -#: app/resize.c:162 +#: app/resize.c:164 msgid "Pixel Dimensions" msgstr "Pikseldimensjoner" -#: app/resize.c:172 +#: app/resize.c:174 msgid "Set Layer Boundary Size" msgstr "Sett stЬrrelse pЕ grense for lag" -#: app/resize.c:177 +#: app/resize.c:179 msgid "Set Canvas Size" msgstr "Sett stЬrrelse pЕ kanvas" #. the original width & height labels -#: app/resize.c:234 app/scale_tool.c:77 +#: app/resize.c:236 app/scale_tool.c:77 msgid "Original Width:" msgstr "Original bredde:" #. the new size labels -#: app/resize.c:259 app/resize.c:504 +#: app/resize.c:261 app/resize.c:506 msgid "New Width:" msgstr "Ny bredde:" #. the scale ratio labels -#: app/resize.c:324 +#: app/resize.c:326 msgid "Ratio X:" msgstr "X-rate:" #. the x and y offset labels -#: app/resize.c:409 +#: app/resize.c:411 msgid "X:" msgstr "X:" -#: app/resize.c:490 +#: app/resize.c:492 msgid "Print Size & Display Unit" msgstr "Skriv ut stЬrrelse og vis enhet" -#: app/resize.c:1252 +#: app/resize.c:1254 msgid "Scale Error: Both width and height must be greater than zero." msgstr "Skaleringsfeil: BЕde bredde og hЬyde mЕ vФre stЬrre enn null." -#: app/resize.c:1334 +#: app/resize.c:1336 msgid "" "The chosen image size will shrink\n" "some layers completely away.\n" @@ -5277,7 +5305,7 @@ msgstr "" "noen lag helt bort.\n" "Vil du gjЬre dette?" -#: app/resize.c:1338 +#: app/resize.c:1340 msgid "Layer Too Small" msgstr "Laget er ikke stort nok" @@ -5326,7 +5354,7 @@ msgstr "Forskyvning..." msgid "Text Tool" msgstr "TekstverktЬy" -#: app/text_tool.c:162 app/tool_options.c:233 +#: app/text_tool.c:162 app/tool_options.c:232 msgid "Antialiasing" msgstr "Antialiasing" @@ -5404,99 +5432,99 @@ msgstr "" "Det skal vФre en fil med navn gimp_tips.txt i\n" "GIMP's datakatalog. Vennligst sjekk installasjonen." -#: app/tool_options.c:122 +#: app/tool_options.c:121 msgid "This tool has no options." msgstr "Dette verktЬyet har ingen alternativer" -#: app/tool_options.c:146 +#: app/tool_options.c:145 msgid "Rectangular Selection" msgstr "RektangulФrt utvalg" -#: app/tool_options.c:148 +#: app/tool_options.c:147 msgid "Elliptical Selection" msgstr "Eliptisk utvalg" -#: app/tool_options.c:150 +#: app/tool_options.c:149 msgid "Free-Hand Selection" msgstr "FrihЕnds-utvalg" -#: app/tool_options.c:152 +#: app/tool_options.c:151 msgid "Fuzzy Selection" msgstr "Fuzzy utvalg" -#: app/tool_options.c:154 +#: app/tool_options.c:153 msgid "Bezier Selection" msgstr "Bezierutvalg" -#: app/tool_options.c:156 app/tools.c:178 +#: app/tool_options.c:155 app/tools.c:178 msgid "Intelligent Scissors" msgstr "Intelligent saks" -#: app/tool_options.c:158 +#: app/tool_options.c:157 msgid "By-Color Selection" msgstr "Utvalg etter farge" -#: app/tool_options.c:189 +#: app/tool_options.c:188 msgid "Feather" msgstr "FjФr" -#: app/tool_options.c:297 +#: app/tool_options.c:296 msgid "Fixed Size / Aspect Ratio" msgstr "Fast stЬrrelse / aspektrate" -#: app/tool_options.c:363 +#: app/tool_options.c:362 msgid "Unit:" msgstr "Enhet:" -#: app/tool_options.c:448 app/tools.c:376 +#: app/tool_options.c:447 app/tools.c:376 msgid "Bucket Fill" msgstr "BЬttefylling" -#: app/tool_options.c:450 +#: app/tool_options.c:449 msgid "Blend Tool" msgstr "BlandeverktЬy" -#: app/tool_options.c:452 app/tools.c:412 +#: app/tool_options.c:451 app/tools.c:412 msgid "Pencil" msgstr "Blyant" -#: app/tool_options.c:454 app/tools.c:430 +#: app/tool_options.c:453 app/tools.c:430 msgid "Paintbrush" msgstr "Malerpensel" -#: app/tool_options.c:456 app/tools.c:448 +#: app/tool_options.c:455 app/tools.c:448 msgid "Eraser" msgstr "ViskelФr" -#: app/tool_options.c:458 app/tools.c:466 +#: app/tool_options.c:457 app/tools.c:466 msgid "Airbrush" msgstr "Luftpensel" -#: app/tool_options.c:460 +#: app/tool_options.c:459 msgid "Clone Tool" msgstr "KloneverktЬy" -#: app/tool_options.c:462 +#: app/tool_options.c:461 msgid "Convolver" msgstr "Convolver" -#: app/tool_options.c:464 +#: app/tool_options.c:463 msgid "Ink Tool" msgstr "BlekkverktЬy" -#: app/tool_options.c:466 app/tools.c:538 app/tools.c:544 +#: app/tool_options.c:465 app/tools.c:538 app/tools.c:544 msgid "Dodge or Burn" msgstr "Blek eller brenn" -#: app/tool_options.c:468 +#: app/tool_options.c:467 msgid "Smudge Tool" msgstr "TilsmussingsverktЬy" -#: app/tool_options.c:583 +#: app/tool_options.c:582 msgid "Incremental" msgstr "Inkrementell" -#: app/tool_options.c:689 +#: app/tool_options.c:688 msgid "Pressure Sensitivity" msgstr "TrykkfЬlsomhet" @@ -6176,6 +6204,122 @@ msgstr "Vannfarge" msgid "Color History" msgstr "Fargehistorikk" +#~ msgid "Custom from Editor" +#~ msgstr "Egendefinert fra editor" + +#~ msgid "" +#~ "The GIMP - GNU Image Manipulation Program\n" +#~ "\n" +#~ msgstr "" +#~ "The GIMP - GNU Image Manipulation Program\n" +#~ "\n" + +#~ msgid "For a proper GIMP installation, a subdirectory called\n" +#~ msgstr "I en riktig GIMP installasjon, vil en underkatalog kalt\n" + +#~ msgid "Install" +#~ msgstr "Installer" + +#~ msgid "Ignore" +#~ msgstr "Ignorer" + +#~ msgid "-*-helvetica-medium-o-normal-*-*-100-*-*-*-*-*-*" +#~ msgstr "-*-helvetica-medium-o-normal-*-*-100-*-*-*-*-*-*" + +#~ msgid "-*-helvetica-medium-r-normal-*-*-100-*-*-*-*-*-*,*" +#~ msgstr "-*-helvetica-medium-r-normal-*-*-100-*-*-*-*-*-*,*" + +#~ msgid "Installation Log" +#~ msgstr "Installasjonslogg" + +#~ msgid "-*-helvetica-medium-r-normal-*-*-120-*-*-*-*-*-*,*" +#~ msgstr "-*-helvetica-medium-r-normal-*-*-120-*-*-*-*-*-*,*" + +#~ msgid "" +#~ "\n" +#~ "Installation successful!\n" +#~ msgstr "" +#~ "\n" +#~ "Installasjon ferdig!\n" + +#~ msgid "/File/Dialogs" +#~ msgstr "/Fil/Dialoger" + +#~ msgid "/File" +#~ msgstr "/Fil" + +#~ msgid "/Edit" +#~ msgstr "/Rediger" + +#~ msgid "/Edit/Buffer" +#~ msgstr "/Rediger/Buffer" + +#~ msgid "/Select" +#~ msgstr "/Velg" + +#~ msgid "/View" +#~ msgstr "/Vis" + +#~ msgid "/View/Zoom" +#~ msgstr "/Vis/Zoom" + +#~ msgid "/Image" +#~ msgstr "/Bilde" + +#~ msgid "/Image/Mode" +#~ msgstr "/Bilde/Modus" + +#~ msgid "/Image/Colors" +#~ msgstr "/Bilde/Farger" + +#~ msgid "/Image/Colors/Auto" +#~ msgstr "/Bilde/Farger/Auto" + +#~ msgid "/Image/Alpha" +#~ msgstr "/Bilde/Alfa" + +#~ msgid "/Image/Transforms" +#~ msgstr "/Bilde/Transformering" + +#~ msgid "/Layers" +#~ msgstr "/Lag" + +#~ msgid "/Layers/Stack" +#~ msgstr "/Lag/Stabel" + +#~ msgid "/Tools" +#~ msgstr "/VerktЬy" + +#~ msgid "/Tools/Select Tools" +#~ msgstr "/VerktЬy/UtvalgsverktЬy" + +#~ msgid "/Tools/Transform Tools" +#~ msgstr "/VerktЬy/TransformasjonsverktЬy" + +#~ msgid "/Tools/Paint Tools" +#~ msgstr "/VerktЬy/TegneverktЬy" + +#~ msgid "/Dialogs" +#~ msgstr "/Dialoger" + +#~ msgid "/Filters" +#~ msgstr "/Filtre" + +#~ msgid "/Script-Fu" +#~ msgstr "/Script-Fu" + +#~ msgid "/Stack" +#~ msgstr "/Stabel" + +#~ msgid "Bytes" +#~ msgstr "Bytes" + +#~ msgid "KiloBytes" +#~ msgstr "Kilobytes" + +#~ msgid "MegaBytes" +#~ msgstr "Megabytes" + #~ msgid "Fill Options" #~ msgstr "Alternativer for fyll" diff --git a/po/pl.po b/po/pl.po index 954c88800c..41d369cdc9 100644 --- a/po/pl.po +++ b/po/pl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: gimp\n" -"POT-Creation-Date: 2000-03-03 17:47-0800\n" +"POT-Creation-Date: 2000-03-14 23:09+0100\n" "PO-Revision-Date: 1999-11-06 19:22+0200\n" "Last-Translator: GNOME PL Team\n" "Language-Team: Polish \n" @@ -62,45 +62,45 @@ msgstr " stworzona przez" msgid "GIMP Startup" msgstr "Uruchamianie GIMP-a" -#: app/app_procs.c:479 app/gimprc.c:432 +#: app/app_procs.c:479 app/gimprc.c:448 #, c-format msgid "parsing \"%s\"\n" msgstr "analiza \"%s\"\n" #. initialize the xcf file format routines -#: app/app_procs.c:539 +#: app/app_procs.c:541 msgid "Looking for data files" msgstr "Wyszukiwanie plikСw z danymi" -#: app/app_procs.c:539 +#: app/app_procs.c:541 msgid "Parasites" msgstr "" #. initialize the global parasite table -#: app/app_procs.c:541 app/internal_procs.c:71 app/preferences_dialog.c:2468 +#: app/app_procs.c:543 app/internal_procs.c:71 app/preferences_dialog.c:2397 msgid "Brushes" msgstr "PЙdzle" #. initialize the list of gimp brushes -#: app/app_procs.c:543 app/internal_procs.c:143 app/preferences_dialog.c:2476 +#: app/app_procs.c:545 app/internal_procs.c:143 app/preferences_dialog.c:2405 msgid "Patterns" msgstr "Wzory" #. initialize the list of gimp patterns -#: app/app_procs.c:545 app/preferences_dialog.c:2480 +#: app/app_procs.c:547 app/preferences_dialog.c:2409 msgid "Palettes" msgstr "Palety" #. initialize the list of gimp palettes -#: app/app_procs.c:547 app/internal_procs.c:113 app/preferences_dialog.c:2484 +#: app/app_procs.c:549 app/internal_procs.c:113 app/preferences_dialog.c:2413 msgid "Gradients" msgstr "Gradienty" -#: app/app_procs.c:735 +#: app/app_procs.c:737 msgid "Really Quit?" msgstr "Rzeczywi╤cie zakoЯczyФ?" -#: app/app_procs.c:739 +#: app/app_procs.c:741 msgid "" "Some files unsaved.\n" "\n" @@ -110,21 +110,21 @@ msgstr "" "\n" "ZakoЯczyФ GIMP-a?" -#: app/app_procs.c:740 app/install.c:272 app/install.c:430 +#: app/app_procs.c:742 msgid "Quit" msgstr "ZakoЯcz" -#: app/app_procs.c:740 app/brightness_contrast.c:218 app/channel_ops.c:93 +#: app/app_procs.c:742 app/brightness_contrast.c:218 app/channel_ops.c:93 #: app/channels_dialog.c:2463 app/channels_dialog.c:2637 #: app/color_balance.c:275 app/color_notebook.c:125 app/convert.c:506 #: app/curves.c:559 app/file_new_dialog.c:207 app/file_new_dialog.c:357 #: app/gdisplay_color_ui.c:129 app/gdisplay_ops.c:346 app/gimpprogress.c:112 -#: app/global_edit.c:739 app/gradient.c:1769 app/gradient.c:4839 -#: app/gradient.c:5400 app/hue_saturation.c:377 app/interface.c:984 -#: app/layers_dialog.c:3326 app/layers_dialog.c:3517 app/layers_dialog.c:3617 -#: app/layers_dialog.c:3889 app/levels.c:341 app/palette.c:1826 -#: app/posterize.c:201 app/preferences_dialog.c:1469 app/qmask.c:281 -#: app/resize.c:193 app/resize.c:1343 app/threshold.c:275 +#: app/global_edit.c:739 app/gradient.c:1769 app/gradient.c:4841 +#: app/gradient.c:5402 app/hue_saturation.c:377 app/install.c:532 +#: app/interface.c:984 app/layers_dialog.c:3326 app/layers_dialog.c:3517 +#: app/layers_dialog.c:3617 app/layers_dialog.c:3889 app/levels.c:341 +#: app/palette.c:1826 app/posterize.c:201 app/preferences_dialog.c:1434 +#: app/qmask.c:281 app/resize.c:195 app/resize.c:1345 app/threshold.c:275 #: modules/cdisplay_gamma.c:358 msgid "Cancel" msgstr "Anuluj" @@ -145,123 +145,124 @@ msgstr "Krzywa nie zamkni msgid "Paintbrush operation failed." msgstr "Operacja pЙdzlem nie powiodЁa siЙ." -#: app/blend.c:272 +#: app/blend.c:294 msgid "Offset:" msgstr "PrzesuniЙcie:" -#: app/blend.c:283 +#: app/blend.c:305 msgid "FG to BG (RGB)" msgstr "" -#: app/blend.c:284 +#: app/blend.c:306 msgid "FG to BG (HSV)" msgstr "" -#: app/blend.c:285 +#: app/blend.c:307 msgid "FG to Transparent" msgstr "" -#: app/blend.c:286 -msgid "Custom from Editor" -msgstr "WЁasny z edytora" +#: app/blend.c:308 +#, fuzzy +msgid "Custom Gradient" +msgstr "Kopiuj gradient" -#: app/blend.c:290 +#: app/blend.c:312 msgid "Blend:" msgstr "Zlewanie:" -#: app/blend.c:298 app/gradient.c:533 app/preferences_dialog.c:2209 +#: app/blend.c:320 app/gradient.c:533 app/preferences_dialog.c:2137 msgid "Linear" msgstr "Liniowy" -#: app/blend.c:299 +#: app/blend.c:321 msgid "Bi-Linear" msgstr "Dwuliniowy" -#: app/blend.c:300 +#: app/blend.c:322 msgid "Radial" msgstr "Promienisty" -#: app/blend.c:301 +#: app/blend.c:323 msgid "Square" msgstr "Prostok╠tny" -#: app/blend.c:302 +#: app/blend.c:324 msgid "Conical (symmetric)" msgstr "Sto©kowy (symetryczny)" -#: app/blend.c:303 +#: app/blend.c:325 msgid "Conical (asymmetric)" msgstr "Sto©kowy (asymetryczny)" -#: app/blend.c:304 +#: app/blend.c:326 msgid "Shapeburst (angular)" msgstr "" -#: app/blend.c:305 +#: app/blend.c:327 msgid "Shapeburst (spherical)" msgstr "" -#: app/blend.c:306 +#: app/blend.c:328 msgid "Shapeburst (dimpled)" msgstr "" -#: app/blend.c:307 +#: app/blend.c:329 msgid "Spiral (clockwise)" msgstr "Spiralny (zgodnie z zegarem)" -#: app/blend.c:308 +#: app/blend.c:330 msgid "Spiral (anticlockwise)" msgstr "Spiralny (przeciwnie do zegara)" -#: app/blend.c:312 +#: app/blend.c:334 msgid "Gradient:" msgstr "Gradient:" -#: app/blend.c:320 app/preferences_dialog.c:1808 +#: app/blend.c:342 app/preferences_dialog.c:1769 msgid "None" msgstr "Brak" -#: app/blend.c:321 +#: app/blend.c:343 msgid "Sawtooth Wave" msgstr "Fala piЁoksztaЁtna" -#: app/blend.c:322 +#: app/blend.c:344 msgid "Triangular Wave" msgstr "Fala trСjk╠tna" -#: app/blend.c:326 +#: app/blend.c:348 msgid "Repeat:" msgstr "PowtСrz:" -#: app/blend.c:345 +#: app/blend.c:367 msgid "Adaptive Supersampling" msgstr "NadprСbkowanie adaptywne" -#: app/blend.c:373 +#: app/blend.c:395 msgid "Max Depth:" msgstr "Maksymalna gЁЙbia:" -#: app/blend.c:386 app/bucket_fill.c:127 app/fuzzy_select.c:657 +#: app/blend.c:408 app/bucket_fill.c:127 app/fuzzy_select.c:661 msgid "Threshold:" msgstr "PrСg:" -#: app/blend.c:413 +#: app/blend.c:435 msgid "Blend: Invalid for indexed images." msgstr "Zlewanie: NiedostЙpne w trybach indeksowanych." -#: app/blend.c:438 +#: app/blend.c:460 msgid "Blend: 0, 0" msgstr "Zlewanie: 0, 0" -#: app/blend.c:501 +#: app/blend.c:523 msgid "Blend operation failed." msgstr "Operacja zlewania nie powiodЁa siЙ." -#: app/blend.c:507 +#: app/blend.c:529 msgid "Blending..." msgstr "Zlewanie..." -#: app/blend.c:585 app/blend.c:595 +#: app/blend.c:607 app/blend.c:617 msgid "Blend: " msgstr "Zlewanie: " @@ -280,13 +281,13 @@ msgstr "Nie mo #: app/gdisplay_color_ui.c:127 app/gimpui.c:122 app/hue_saturation.c:373 #: app/layers_dialog.c:3324 app/layers_dialog.c:3515 app/layers_dialog.c:3615 #: app/layers_dialog.c:3887 app/levels.c:337 app/module_db.c:281 -#: app/posterize.c:197 app/preferences_dialog.c:1465 app/qmask.c:279 -#: app/resize.c:191 app/resize.c:1343 app/threshold.c:271 +#: app/posterize.c:197 app/preferences_dialog.c:1430 app/qmask.c:279 +#: app/resize.c:193 app/resize.c:1345 app/threshold.c:271 #: modules/cdisplay_gamma.c:351 msgid "OK" msgstr "OK" -#: app/brightness_contrast.c:216 app/by_color_select.c:634 +#: app/brightness_contrast.c:216 app/by_color_select.c:687 #: app/color_balance.c:273 app/curves.c:557 app/file_new_dialog.c:355 #: app/hue_saturation.c:375 app/levels.c:339 app/posterize.c:199 #: app/threshold.c:273 app/tools.c:1086 app/transform_core.c:412 @@ -316,7 +317,7 @@ msgid "Brush Editor" msgstr "Edytor PЙdzli" #. The close button -#: app/brush_edit.c:216 app/brush_select.c:278 app/by_color_select.c:636 +#: app/brush_edit.c:216 app/brush_select.c:278 app/by_color_select.c:689 #: app/color_notebook.c:122 app/color_picker.c:297 app/colormap_dialog.i.c:170 #: app/crop.c:1054 app/devices.c:755 app/docindexif.c:105 #: app/errorconsole.c:281 app/gdisplay_ops.c:346 app/gradient.c:801 @@ -330,7 +331,7 @@ msgid "Close" msgstr "Zamknij" #. the feather radius scale -#: app/brush_edit.c:276 app/color_picker.c:181 app/tool_options.c:200 +#: app/brush_edit.c:276 app/color_picker.c:181 app/tool_options.c:199 msgid "Radius:" msgstr "PromieЯ:" @@ -360,11 +361,11 @@ msgstr "Od msgid "No Brushes available" msgstr "" -#: app/brush_select.c:445 app/layers_dialog.c:372 app/tool_options.c:505 +#: app/brush_select.c:445 app/layers_dialog.c:372 app/tool_options.c:504 msgid "Opacity:" msgstr "Prze╪roczysto╤Ф:" -#: app/brush_select.c:453 app/layers_dialog.c:324 app/tool_options.c:529 +#: app/brush_select.c:453 app/layers_dialog.c:324 app/tool_options.c:528 msgid "Mode:" msgstr "Tryb:" @@ -398,7 +399,7 @@ msgstr "" msgid "Sorry, this brush can't be deleted." msgstr "" -#: app/bucket_fill.c:147 app/color_picker.c:156 app/tool_options.c:274 +#: app/bucket_fill.c:147 app/color_picker.c:156 app/tool_options.c:273 msgid "Sample Merged" msgstr "" @@ -428,36 +429,36 @@ msgid "No available patterns for this operation." msgstr "Brak wzorСw dla tej operacji." #. The shell and main vbox -#: app/by_color_select.c:629 +#: app/by_color_select.c:682 msgid "By Color Selection" msgstr "Selekcja Kolorem" -#: app/by_color_select.c:685 +#: app/by_color_select.c:738 msgid "Inactive" msgstr "Nieaktywny" -#: app/by_color_select.c:693 +#: app/by_color_select.c:746 msgid "Selection Mode" msgstr "Tryb zaznaczania" -#: app/by_color_select.c:695 app/paint_funcs.c:100 +#: app/by_color_select.c:748 app/paint_funcs.c:100 msgid "Replace" msgstr "Zast╠p" -#: app/by_color_select.c:697 app/colormap_dialog.i.c:127 +#: app/by_color_select.c:750 app/colormap_dialog.i.c:127 #: app/gdisplay_color_ui.c:114 msgid "Add" msgstr "Dodaj" -#: app/by_color_select.c:699 app/layers_dialog.c:340 app/tool_options.c:904 +#: app/by_color_select.c:752 app/layers_dialog.c:340 app/tool_options.c:904 msgid "Subtract" msgstr "Odejmij" -#: app/by_color_select.c:701 +#: app/by_color_select.c:754 msgid "Intersect" msgstr "Przetnij" -#: app/by_color_select.c:713 +#: app/by_color_select.c:766 msgid "Fuzziness Threshold" msgstr "" @@ -475,7 +476,7 @@ msgstr "kopia %s" msgid "Selection Mask" msgstr "Maska zaznaczenia" -#: app/channel_ops.c:85 app/resize.c:392 +#: app/channel_ops.c:85 app/resize.c:394 msgid "Offset" msgstr "PrzesuniЙcie" @@ -485,8 +486,8 @@ msgid "Offset X:" msgstr "PrzesuniЙcie X:" #: app/channel_ops.c:115 app/crop.c:1063 app/file_new_dialog.c:530 -#: app/resize.c:330 app/resize.c:415 app/resize.c:573 app/rotate_tool.c:106 -#: app/scale_tool.c:100 app/shear_tool.c:82 +#: app/install.c:1108 app/resize.c:332 app/resize.c:417 app/resize.c:575 +#: app/rotate_tool.c:106 app/scale_tool.c:100 app/shear_tool.c:82 msgid "Y:" msgstr "Y:" @@ -495,12 +496,12 @@ msgstr "Y:" msgid "Wrap Around" msgstr "" -#: app/channel_ops.c:174 app/image_new.c:69 app/image_new.c:223 +#: app/channel_ops.c:174 app/image_new.c:70 app/image_new.c:234 #: app/layers_dialog.c:3422 msgid "Background" msgstr "TЁo" -#: app/channel_ops.c:175 app/image_new.c:79 app/layers_dialog.c:3424 +#: app/channel_ops.c:175 app/image_new.c:80 app/layers_dialog.c:3424 msgid "Transparent" msgstr "Prze╪roczysty" @@ -680,19 +681,19 @@ msgstr "" msgid "Update Active Color" msgstr "" -#: app/color_picker.c:255 app/color_picker.c:265 +#: app/color_picker.c:255 app/color_picker.c:264 msgid "Red:" msgstr "Czerwony:" -#: app/color_picker.c:256 app/color_picker.c:266 +#: app/color_picker.c:256 app/color_picker.c:265 msgid "Green:" msgstr "Zielony:" -#: app/color_picker.c:257 app/color_picker.c:267 +#: app/color_picker.c:257 app/color_picker.c:266 msgid "Blue:" msgstr "Niebieski:" -#: app/color_picker.c:258 app/color_picker.c:264 app/color_picker.c:273 +#: app/color_picker.c:258 app/color_picker.c:267 app/color_picker.c:273 msgid "Alpha:" msgstr "Alfa:" @@ -713,13 +714,13 @@ msgstr "Triplet szesnastkowy" msgid "Intensity:" msgstr "Intensywno╤Ф:" -#: app/color_picker.c:633 app/color_picker.c:634 app/color_picker.c:635 -#: app/color_picker.c:636 app/color_picker.c:637 app/color_picker.c:638 -#: app/color_picker.c:639 app/color_picker.c:657 app/color_picker.c:672 -#: app/color_picker.c:690 app/info_window.c:185 app/info_window.c:191 -#: app/info_window.c:197 app/info_window.c:203 app/info_window.c:422 -#: app/info_window.c:423 app/info_window.c:424 app/info_window.c:425 -#: app/info_window.c:447 +#: app/color_picker.c:626 app/color_picker.c:627 app/color_picker.c:628 +#: app/color_picker.c:629 app/color_picker.c:630 app/color_picker.c:631 +#: app/color_picker.c:632 app/color_picker.c:644 app/color_picker.c:651 +#: app/color_picker.c:669 app/color_picker.c:684 app/info_window.c:185 +#: app/info_window.c:191 app/info_window.c:197 app/info_window.c:203 +#: app/info_window.c:422 app/info_window.c:423 app/info_window.c:424 +#: app/info_window.c:425 app/info_window.c:447 msgid "N/A" msgstr "N/D" @@ -927,13 +928,13 @@ msgstr "Pocz #. the pixel size labels #: app/crop.c:1076 app/file_new_dialog.c:389 app/file_new_dialog.c:407 -#: app/tool_options.c:334 +#: app/tool_options.c:333 msgid "Width:" msgstr "Szeroko╤Ф: " #: app/crop.c:1079 app/file_new_dialog.c:395 app/file_new_dialog.c:413 -#: app/layers_dialog.c:3363 app/resize.c:240 app/resize.c:265 app/resize.c:510 -#: app/scale_tool.c:79 app/scale_tool.c:86 app/tool_options.c:350 +#: app/layers_dialog.c:3363 app/resize.c:242 app/resize.c:267 app/resize.c:512 +#: app/scale_tool.c:79 app/scale_tool.c:86 app/tool_options.c:349 msgid "Height:" msgstr "Wysoko╤Ф: " @@ -985,7 +986,7 @@ msgid "Load" msgstr "Wczytaj" #: app/curves.c:704 app/devices.c:753 app/levels.c:608 app/palette.c:2068 -#: app/preferences_dialog.c:357 app/preferences_dialog.c:1467 +#: app/preferences_dialog.c:357 app/preferences_dialog.c:1432 msgid "Save" msgstr "Zapisz" @@ -1017,7 +1018,7 @@ msgstr "" msgid "Device Status" msgstr "Stan urz╠dzenia" -#: app/disp_callbacks.c:755 app/global_edit.c:297 app/global_edit.c:303 +#: app/disp_callbacks.c:760 app/global_edit.c:297 app/global_edit.c:303 #: app/global_edit.c:375 msgid "Pasted Layer" msgstr "Wklejna warstwa" @@ -1188,17 +1189,17 @@ msgstr "Rozmiar obrazu: %s" msgid "New Image" msgstr "Nowy obraz" -#: app/file_new_dialog.c:453 app/preferences_dialog.c:1540 -#: app/preferences_dialog.c:1577 +#: app/file_new_dialog.c:453 app/install.c:1093 app/preferences_dialog.c:1505 +#: app/preferences_dialog.c:1542 msgid "Pixels" msgstr "Piksele" #. the resolution labels -#: app/file_new_dialog.c:524 app/resize.c:567 +#: app/file_new_dialog.c:524 app/resize.c:569 msgid "Resolution X:" msgstr "Rozdzielczo╤Ф X:" -#: app/file_new_dialog.c:545 app/resize.c:588 +#: app/file_new_dialog.c:545 app/resize.c:590 msgid "pixels/%a" msgstr "pikseli/%a" @@ -1229,7 +1230,7 @@ msgstr "Podgl msgid "No Selection." msgstr "Bez zaznaczenia." -#: app/fileops.c:418 app/fileops.c:1624 app/fileops.c:1731 +#: app/fileops.c:418 app/fileops.c:1629 app/fileops.c:1736 #, fuzzy, c-format msgid "Save failed: %s" msgstr "Zapis nie powiСdЁ siЙ: " @@ -1255,60 +1256,60 @@ msgstr "Nie mo msgid "Revert failed." msgstr "PrzywrСcenie nie powiodЁo siЙ: " -#: app/fileops.c:1240 +#: app/fileops.c:1245 msgid "(This thumbnail may be out of date)" msgstr "" -#: app/fileops.c:1241 +#: app/fileops.c:1246 #, fuzzy msgid "(No Information)" msgstr "(brak informacji)" -#: app/fileops.c:1251 +#: app/fileops.c:1256 msgid "(Thumbnail saving is disabled)" msgstr "" -#: app/fileops.c:1255 +#: app/fileops.c:1260 msgid "(Could not write thumbnail file)" msgstr "" -#: app/fileops.c:1259 +#: app/fileops.c:1264 msgid "(Thumbnail file not written)" msgstr "" -#: app/fileops.c:1276 +#: app/fileops.c:1281 #, fuzzy msgid "No preview available" msgstr "WypeЁnienie wzorem" -#: app/fileops.c:1394 +#: app/fileops.c:1399 msgid "(could not make preview)" msgstr "" -#: app/fileops.c:1467 app/fileops.c:1546 +#: app/fileops.c:1472 app/fileops.c:1551 #, fuzzy, c-format msgid "Open failed: %s" msgstr "Otwarcie nie powiodЁo siЙ: " -#: app/fileops.c:1602 +#: app/fileops.c:1607 #, c-format msgid "%s is an irregular file (%s)" msgstr "%s nie jest zwykЁym plikiem (%s)" -#: app/fileops.c:1670 +#: app/fileops.c:1675 #, c-format msgid "%s exists, overwrite?" msgstr "%s istnieje, nadpisaФ?" -#: app/fileops.c:1674 +#: app/fileops.c:1679 msgid "File Exists!" msgstr "Plik istnieje!" -#: app/fileops.c:1680 +#: app/fileops.c:1685 msgid "Yes" msgstr "Tak" -#: app/fileops.c:1682 +#: app/fileops.c:1687 msgid "No" msgstr "Nie" @@ -1317,13 +1318,13 @@ msgstr "Nie" msgid "Flip Tool" msgstr "Opcje odbijania" -#: app/flip_tool.c:95 app/preferences_dialog.c:1591 -#: app/preferences_dialog.c:2355 +#: app/flip_tool.c:95 app/preferences_dialog.c:1556 +#: app/preferences_dialog.c:2284 msgid "Horizontal" msgstr "Poziomo" -#: app/flip_tool.c:97 app/preferences_dialog.c:1593 -#: app/preferences_dialog.c:2357 +#: app/flip_tool.c:97 app/preferences_dialog.c:1558 +#: app/preferences_dialog.c:2286 msgid "Vertical" msgstr "Pionowo" @@ -1344,7 +1345,7 @@ msgstr "" msgid "RGB-empty" msgstr "RGB-pusty" -#: app/gdisplay.c:217 app/image_new.c:53 app/preferences_dialog.c:1637 +#: app/gdisplay.c:217 app/image_new.c:54 app/preferences_dialog.c:1602 msgid "RGB" msgstr "RGB" @@ -1474,23 +1475,23 @@ msgstr "" msgid "Failed to load pixmap brush." msgstr "Wczytanie ╤cie©ki z %s nie powiodЁo siЙ" -#: app/gimpdrawable.c:168 +#: app/gimpdrawable.c:166 msgid "Can't fill unknown image type." msgstr "Nie mo©na wypeЁniФ obrazu nieznanego typu." -#: app/gimpdrawable.c:512 +#: app/gimpdrawable.c:498 msgid "parasite attach to drawable" msgstr "" -#: app/gimpdrawable.c:548 +#: app/gimpdrawable.c:533 msgid "detach parasite from drawable" msgstr "" -#: app/gimpdrawable.c:770 +#: app/gimpdrawable.c:740 msgid "unnamed" msgstr "bez_nazwy" -#: app/gimpdrawable.c:787 +#: app/gimpdrawable.c:757 #, c-format msgid "Layer type %d not supported." msgstr "Typ %d warstwy nie jest obsЁugiwany" @@ -1502,39 +1503,39 @@ msgid "" "you don't have GtkXmHTML installed." msgstr "" -#: app/gimpimage.c:1154 +#: app/gimpimage.c:1176 msgid "attach parasite to image" msgstr "" -#: app/gimpimage.c:1177 +#: app/gimpimage.c:1201 msgid "detach parasite from image" msgstr "" -#: app/gimpimage.c:2232 +#: app/gimpimage.c:2305 msgid "Layer cannot be raised any further" msgstr "Warstwa nie mo©e zostaФ bardziej podniesiona" -#: app/gimpimage.c:2258 +#: app/gimpimage.c:2333 msgid "Layer cannot be lowered any further" msgstr "Warstwa nie mo©e zostaФ bardziej obni©ona" -#: app/gimpimage.c:2282 +#: app/gimpimage.c:2359 msgid "Layer is already on top" msgstr "Warstwa jest ju© na wierzchu" -#: app/gimpimage.c:2288 +#: app/gimpimage.c:2365 msgid "Can't raise Layer without alpha" msgstr "Nie mo©na podnie╤Ф warstwy bez kanaЁu alfa" -#: app/gimpimage.c:2315 +#: app/gimpimage.c:2393 msgid "Layer is already on bottom" msgstr "Warstwa jest ju© na dnie" -#: app/gimpimage.c:2370 +#: app/gimpimage.c:2448 msgid "BG has no alpha, layer was placed above" msgstr "" -#: app/gimpimage.c:2439 +#: app/gimpimage.c:2519 msgid "" "There are not enough visible layers for a merge.\n" "There must be at least two." @@ -1542,11 +1543,11 @@ msgstr "" "Do poЁ╠czenia potrzebne s╠ co najmniej dwie widoczne\n" "warstwy." -#: app/gimpimage.c:2519 +#: app/gimpimage.c:2603 msgid "There are not enough visible layers for a merge down." msgstr "" -#: app/gimpimage.c:2915 +#: app/gimpimage.c:3005 msgid "" "Unable to add a layer mask since\n" "the layer already has one." @@ -1554,7 +1555,7 @@ msgstr "" "Nie mo©na dodaФ maski warstwy, poniwa©\n" "jedna ju© istnieje." -#: app/gimpimage.c:2919 +#: app/gimpimage.c:3009 msgid "" "Unable to add a layer mask to a\n" "layer in an indexed image." @@ -1562,7 +1563,7 @@ msgstr "" "Nie mo©na dodaФ maski warstwy do\n" "warstwy w indeksowanym obrazie." -#: app/gimpimage.c:2923 +#: app/gimpimage.c:3013 msgid "" "Cannot add layer mask to a layer\n" "with no alpha channel." @@ -1570,19 +1571,19 @@ msgstr "" "Nie mo©na dodaФ maski warstwy do\n" "warstwy bez kanaЁu alfa." -#: app/gimpimage.c:2930 +#: app/gimpimage.c:3020 msgid "Cannot add layer mask of different dimensions than specified layer." msgstr "Nie mo©na dodaФ maski warstwy o wymiarach rС©nych od wymiarСw warstwy." -#: app/gimpimage.c:3033 +#: app/gimpimage.c:3127 msgid "Channel cannot be raised any further" msgstr "KanaЁ nie mo©e zostaФ bardziej podniesiony" -#: app/gimpimage.c:3082 +#: app/gimpimage.c:3178 msgid "Channel cannot be lowered any further" msgstr "KanaЁ nie mo©e zostaФ bardziej obni©ony" -#: app/gimpimage.c:3288 app/palette.c:364 app/palette.c:941 app/palette.c:1077 +#: app/gimpimage.c:3398 app/palette.c:364 app/palette.c:941 app/palette.c:1077 #: app/palette.c:2022 app/palette.c:2749 app/palette.c:2881 msgid "Untitled" msgstr "BezNazwy" @@ -1595,45 +1596,45 @@ msgstr "Post msgid "Please wait..." msgstr "" -#: app/gimprc.c:401 app/plug_in.c:304 +#: app/gimprc.c:415 app/plug_in.c:304 msgid "Resource configuration" msgstr "Konfiguracja zasobСw" -#: app/gimprc.c:451 +#: app/gimprc.c:467 #, c-format msgid "error parsing: \"%s\"\n" msgstr "bЁ╠d przy analizie: \"%s\"\n" -#: app/gimprc.c:452 +#: app/gimprc.c:468 #, c-format msgid " at line %d column %d\n" msgstr " w wierszu %d, kolumnie %d\n" -#: app/gimprc.c:453 +#: app/gimprc.c:469 #, c-format msgid " unexpected token: %s\n" msgstr " nieoczekiwany token: %s\n" -#: app/gimprc.c:1455 +#: app/gimprc.c:1473 msgid "error parsing pluginrc" msgstr "bЁ╠d przy analizie pluginrc" -#: app/gimprc.c:2832 +#: app/gimprc.c:2866 #, c-format msgid "Can't open %s; %s" msgstr "Nie mo©na otworzyФ %s: %s" -#: app/gimprc.c:2851 +#: app/gimprc.c:2885 #, c-format msgid "Can't rename %s to %s.old; %s" msgstr "Nie mo©na zmieniФ nazwy %s na %s.old: %s" -#: app/gimprc.c:2857 +#: app/gimprc.c:2891 #, c-format msgid "Couldn't reopen %s\n" msgstr "Nie mo©na otworzyФ ponownie %s\n" -#: app/gimprc.c:2869 +#: app/gimprc.c:2903 #, c-format msgid "Can't write to %s; %s" msgstr "Nie mo©na zapisaФ do %s: %s" @@ -1663,7 +1664,7 @@ msgstr "Komunikat GIMP-a" msgid "pixel" msgstr "piksel" -#: app/gimpunit.c:59 app/measure.c:454 app/measure.c:458 app/paint_core.c:498 +#: app/gimpunit.c:59 app/measure.c:454 app/measure.c:458 app/paint_core.c:511 msgid "pixels" msgstr "piksele" @@ -1905,7 +1906,7 @@ msgstr "" msgid "Distance: %0.6f" msgstr "OdlegЁo╤Ф: %0.6f" -#: app/gradient.c:3387 app/gradient.c:4448 +#: app/gradient.c:3387 app/gradient.c:4450 msgid "Left endpoint's color" msgstr "Kolor lewego punktu koЯcowego" @@ -1925,7 +1926,7 @@ msgstr "Prawy punkt ko msgid "Save to" msgstr "Zapisz do" -#: app/gradient.c:3429 app/gradient.c:4526 +#: app/gradient.c:3429 app/gradient.c:4528 msgid "Right endpoint's color" msgstr "Kolor prawego punktu koЯcowego" @@ -1953,7 +1954,7 @@ msgstr "" msgid "Split segment at midpoint" msgstr "" -#: app/gradient.c:3734 app/gradient.c:4829 +#: app/gradient.c:3734 app/gradient.c:4831 msgid "Split segment uniformly" msgstr "" @@ -1973,7 +1974,7 @@ msgstr "" msgid "Flip segment" msgstr "Odbij segment" -#: app/gradient.c:3744 app/gradient.c:5390 +#: app/gradient.c:3744 app/gradient.c:5392 msgid "Replicate segment" msgstr "" @@ -1989,7 +1990,7 @@ msgstr "" msgid "Split segments at midpoints" msgstr "" -#: app/gradient.c:3755 app/gradient.c:4830 +#: app/gradient.c:3755 app/gradient.c:4832 msgid "Split segments uniformly" msgstr "" @@ -2009,7 +2010,7 @@ msgstr "" msgid "Flip selection" msgstr "Odbij zaznaczenie" -#: app/gradient.c:3765 app/gradient.c:5391 +#: app/gradient.c:3765 app/gradient.c:5393 msgid "Replicate selection" msgstr "" @@ -2022,49 +2023,49 @@ msgstr "" msgid "RGBA (%0.3f, %0.3f, %0.3f, %0.3f)" msgstr "" -#: app/gradient.c:4615 app/gradient.c:4685 +#: app/gradient.c:4617 app/gradient.c:4687 msgid "(Varies)" msgstr "" -#: app/gradient.c:4837 +#: app/gradient.c:4839 msgid "Split" msgstr "" #. Instructions -#: app/gradient.c:4851 +#: app/gradient.c:4853 msgid "Please select the number of uniform parts" msgstr "" -#: app/gradient.c:4857 +#: app/gradient.c:4859 msgid "in which you want to split the selected segment" msgstr "" -#: app/gradient.c:4858 +#: app/gradient.c:4860 msgid "in which you want to split the segments in the selection" msgstr "" -#: app/gradient.c:5218 +#: app/gradient.c:5220 msgid "Blend endpoints' colors" msgstr "" -#: app/gradient.c:5230 +#: app/gradient.c:5232 msgid "Blend endpoints' opacity" msgstr "" -#: app/gradient.c:5398 +#: app/gradient.c:5400 msgid "Replicate" msgstr "" #. Instructions -#: app/gradient.c:5411 +#: app/gradient.c:5413 msgid "Please select the number of times" msgstr "" -#: app/gradient.c:5416 +#: app/gradient.c:5418 msgid "you want to replicate the selected segment" msgstr "" -#: app/gradient.c:5417 +#: app/gradient.c:5419 msgid "you want to replicate the selection" msgstr "" @@ -2168,45 +2169,45 @@ msgstr "Jasno msgid "Saturation" msgstr "Nasycenie" -#: app/image_new.c:58 app/info_window.c:65 app/info_window.c:534 -#: app/preferences_dialog.c:1638 +#: app/image_new.c:59 app/info_window.c:65 app/info_window.c:534 +#: app/preferences_dialog.c:1603 msgid "Grayscale" msgstr "Odcienie szaro╤ci" -#: app/image_new.c:64 app/layers_dialog.c:3421 +#: app/image_new.c:65 app/layers_dialog.c:3421 msgid "Foreground" msgstr "Aktualny kolor" -#: app/image_new.c:74 app/layers_dialog.c:3423 +#: app/image_new.c:75 app/layers_dialog.c:3423 msgid "White" msgstr "BiaЁy" -#: app/image_new.c:262 +#: app/image_new.c:273 #, c-format msgid "%d Bytes" msgstr "%d bajtСw" -#: app/image_new.c:264 +#: app/image_new.c:275 #, c-format msgid "%.2f KB" msgstr "%.2f KB" -#: app/image_new.c:266 +#: app/image_new.c:277 #, c-format msgid "%.1f KB" msgstr "%.1f KB" -#: app/image_new.c:268 +#: app/image_new.c:279 #, c-format msgid "%d KB" msgstr "%d KB" -#: app/image_new.c:270 +#: app/image_new.c:281 #, c-format msgid "%.2f MB" msgstr "%.2f MB" -#: app/image_new.c:272 +#: app/image_new.c:283 #, c-format msgid "%.1f MB" msgstr "%.1f MB" @@ -2235,8 +2236,8 @@ msgstr "" "Aktywny gradient.\n" "KlikniЙcie otwiera okno gradientСw." -#: app/info_dialog.c:181 app/preferences_dialog.c:1782 -#: app/preferences_dialog.c:1888 +#: app/info_dialog.c:181 app/preferences_dialog.c:1743 +#: app/preferences_dialog.c:1849 msgid "General" msgstr "OgСlne" @@ -2372,11 +2373,11 @@ msgstr "K msgid "Shape" msgstr "" -#: app/install.c:83 +#: app/install.c:95 msgid "The GIMP is not properly installed for the current user\n" msgstr "GIMP nie zostaЁ poprawnie zainstalowany dla bie©╠cego u©ytkownika\n" -#: app/install.c:84 +#: app/install.c:96 msgid "" "User installation was skipped because the '--nointerface' flag was " "encountered\n" @@ -2384,305 +2385,394 @@ msgstr "" "Instalacja u©ytkownika zostaЁa pominiЙta w powodu wyst╠pienia opcji " "'--nointerface' w wieszu poleceЯ\n" -#: app/install.c:85 +#: app/install.c:97 msgid "" "To perform user installation, run the GIMP without the '--nointerface' flag\n" msgstr "" "Aby dokonaФ instalacji u©ytkownika, nale©y uruchomiФ GIMP-a bez opcji\n" "'--nointerface' w wierszu poleceЯ\n" -#: app/install.c:113 +#: app/install.c:142 msgid "" -"The GIMP - GNU Image Manipulation Program\n" -"\n" +"The gimprc is used to store personal preferences\n" +"that affect GIMP's default behavior.\n" +"Paths to search for brushes, palettes, gradients,\n" +"patterns, plug-ins and modules can also configured here." msgstr "" -#: app/install.c:118 +#: app/install.c:149 msgid "" -"This program is free software; you can redistribute it and/or modify\n" -"it under the terms of the GNU General Public License as published by\n" -"the Free Software Foundation; either version 2 of the License, or\n" -"(at your option) any later version.\n" +"GIMP uses an additional gtkrc file so you can\n" +"configure it to look differently than other GTK apps." msgstr "" -#: app/install.c:123 +#: app/install.c:154 msgid "" -"This program is distributed in the hope that it will be useful,\n" -"but WITHOUT ANY WARRANTY; without even the implied warranty of\n" -"MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n" -"See the GNU General Public License for more details.\n" -msgstr "" - -#: app/install.c:128 -msgid "" -"You should have received a copy of the GNU General Public License\n" -"along with this program; if not, write to the Free Software\n" -"Foundation, Inc., 59 Temple Place - Suite 330, Boston,\n" -"MA 02111-1307, USA.\n" -msgstr "" - -#: app/install.c:134 -msgid "" -"Personal GIMP Installation\n" -"\n" -msgstr "" -"Indywidualna instalacja GIMP-a\n" -"\n" - -#: app/install.c:135 -msgid "For a proper GIMP installation, a subdirectory called\n" -msgstr "Aby GIMP mСgЁ funkcjonowaФ poprawnie, musi zostaФ utworzony katalog\n" - -#. will be replaced with gimp_directory() -#: app/install.c:137 -msgid "" -" needs to be created. This\n" -"subdirectory will contain a number of important files:\n" -"\n" -msgstr "BЙdzie on zawieraЁ wiele wa©nych plikСw:\n" - -#: app/install.c:141 -msgid "" -"\t\tThe gimprc is used to store personal preferences\n" -"\t\tthat affect GIMP's default behavior.\n" -"\t\tPaths to search for brushes, palettes, gradients,\n" -"\t\tpatterns, plug-ins and modules can also configured here.\n" -msgstr "" - -#: app/install.c:147 -msgid "" -"\t\tPlug-ins and extensions are external programs run by\n" -"\t\tthe GIMP which provide additional functionality.\n" -"\t\tThese programs are searched for at run-time and\n" -"\t\tinformation about their functionality and mod-times\n" -"\t\tis cached in this file. This file is intended to\n" -"\t\tbe GIMP-readable only, and should not be edited.\n" -msgstr "" - -#: app/install.c:155 -msgid "" -"\t\tKey shortcuts can be dynamically redefined in The GIMP.\n" -"\t\tThe menurc is a dump of your configuration so it can.\n" -"\t\tbe remembered for the next session. You may edit this\n" -"\t\tfile if you wish, but it is much easier to define the\n" -"\t\tkeys from within The GIMP. Deleting this file will\n" -"\t\trestore the default shortcuts.\n" +"Plug-ins and extensions are external programs run by\n" +"the GIMP which provide additional functionality.\n" +"These programs are searched for at run-time and\n" +"information about their functionality and mod-times\n" +"is cached in this file. This file is intended to\n" +"be GIMP-readable only, and should not be edited." msgstr "" #: app/install.c:163 msgid "" -"\t\tThe sessionrc is used to store what dialog windows were\n" -"\t\topen the last time you quit The GIMP. You can configure\n" -"\t\tThe GIMP to reopen these dialogs at the saved position.\n" +"Key shortcuts can be dynamically redefined in The GIMP.\n" +"The menurc is a dump of your configuration so it can.\n" +"be remembered for the next session. You may edit this\n" +"file if you wish, but it is much easier to define the\n" +"keys from within The GIMP. Deleting this file will\n" +"restore the default shortcuts." msgstr "" -#: app/install.c:168 +#: app/install.c:172 msgid "" -"\t\tThe unitrc is used to store your user units database.\n" -"\t\tYou can define additional units and use them just\n" -"\t\tlike you use the built-in units inches, millimeters,\n" -"\t\tpoints and picas. This file is overwritten each time\n" -"\t\tyou quit the GIMP.\n" +"The sessionrc is used to store what dialog windows were\n" +"open the last time you quit The GIMP. You can configure\n" +"The GIMP to reopen these dialogs at the saved position." msgstr "" -#: app/install.c:175 +#: app/install.c:178 msgid "" -"\t\tThis is a subdirectory which can be used to store\n" -"\t\tuser defined brushes. The default gimprc file\n" -"\t\tchecks this subdirectory in addition to the system-\n" -"\t\twide gimp brushes installation when searching for\n" -"\t\tbrushes.\n" +"The unitrc is used to store your user units database.\n" +"You can define additional units and use them just\n" +"like you use the built-in units inches, millimeters,\n" +"points and picas. This file is overwritten each time\n" +"you quit the GIMP." msgstr "" -#: app/install.c:182 +#: app/install.c:186 msgid "" -"\t\tThis is a subdirectory which is used to store brushes\n" -"\t\tthat are created with the brush editor. The default\n" -"\t\tgimprc file checks this subdirectory when searching for\n" -"\t\tgenerated brushes.\n" +"This is a subdirectory which can be used to store\n" +"user defined brushes. The default gimprc file\n" +"checks this subdirectory in addition to the system-\n" +"wide gimp brushes installation when searching for\n" +"brushes." msgstr "" -#: app/install.c:188 +#: app/install.c:194 msgid "" -"\t\tThis is a subdirectory which can be used to store\n" -"\t\tuser defined gradients. The default gimprc file\n" -"\t\tchecks this subdirectory in addition to the system-\n" -"\t\twide gimp gradients installation when searching for\n" -"\t\tgradients.\n" +"This is a subdirectory which is used to store brushes\n" +"that are created with the brush editor. The default\n" +"gimprc file checks this subdirectory when searching for\n" +"generated brushes." msgstr "" -#: app/install.c:195 +#: app/install.c:201 msgid "" -"\t\tThis is a subdirectory which can be used to store\n" -"\t\tuser defined figures to be used by the gfig plug-in.\n" -"\t\tThe default gimprc file checks this subdirectory in\n" -"\t\taddition to the systemwide gimp gfig installation\n" -"\t\twhen searching for gfig figures.\n" -msgstr "" - -#: app/install.c:202 -msgid "" -"\t\tThis is a subdirectory which can be used to store\n" -"\t\tuser defined gflares to be used by the gflare plug-in.\n" -"\t\tThe default gimprc file checks this subdirectory in\n" -"\t\taddition to the systemwide gimp gflares installation\n" -"\t\twhen searching for gflares.\n" +"This is a subdirectory which can be used to store\n" +"user defined gradients. The default gimprc file\n" +"checks this subdirectory in addition to the system-\n" +"wide gimp gradients installation when searching for\n" +"gradients." msgstr "" #: app/install.c:209 msgid "" -"\t\tThis is a subdirectory which can be used to store\n" -"\t\tuser defined fractals to be used by the FractalExplorer\n" -"\t\tplug-in. The default gimprc file checks this subdirectory in\n" -"\t\taddition to the systemwide gimp FractalExplorer installation\n" -"\t\twhen searching for fractals.\n" +"This is a subdirectory which can be used to store\n" +"user defined palettes. The default gimprc file\n" +"checks only this subdirectory (not the system-wide\n" +"installation) when searching for palettes. During\n" +"installation, the system palettes will be copied\n" +"here. This is done to allow modifications made to\n" +"palettes during GIMP execution to persist across\n" +"sessions." msgstr "" -#: app/install.c:216 +#: app/install.c:220 msgid "" -"\t\tThis is a subdirectory which can be used to store\n" -"\t\tuser defined palettes. The default gimprc file\n" -"\t\tchecks only this subdirectory (not the system-wide\n" -"\t\tinstallation) when searching for palettes. During\n" -"\t\tinstallation, the system palettes will be copied\n" -"\t\there. This is done to allow modifications made to\n" -"\t\tpalettes during GIMP execution to persist across\n" -"\t\tsessions.\n" +"This is a subdirectory which can be used to store\n" +"user defined patterns. The default gimprc file\n" +"checks this subdirectory in addition to the system-\n" +"wide gimp patterns installation when searching for\n" +"patterns." msgstr "" -#: app/install.c:226 +#: app/install.c:228 msgid "" -"\t\tThis is a subdirectory which can be used to store\n" -"\t\tuser defined patterns. The default gimprc file\n" -"\t\tchecks this subdirectory in addition to the system-\n" -"\t\twide gimp patterns installation when searching for\n" -"\t\tpatterns.\n" +"This is a subdirectory which can be used to store\n" +"user created, temporary, or otherwise non-system-\n" +"supported plug-ins. The default gimprc file\n" +"checks this subdirectory in addition to the system-\n" +"wide GIMP plug-in directories when searching for\n" +"plug-ins." msgstr "" -#: app/install.c:233 +#: app/install.c:237 msgid "" -"\t\tThis is a subdirectory which can be used to store\n" -"\t\tuser created, temporary, or otherwise non-system-\n" -"\t\tsupported plug-ins. The default gimprc file\n" -"\t\tchecks this subdirectory in addition to the system-\n" -"\t\twide GIMP plug-in directories when searching for\n" -"\t\tplug-ins.\n" +"This subdirectory can be used to store user created,\n" +"temporary, or otherwise non-system-supported DLL modules.\n" +"The default gimprc file checks this subdirectory\n" +"in addition to the system-wide GIMP module directory\n" +"when searching for modules to load when initializing." msgstr "" -#: app/install.c:241 +#: app/install.c:245 msgid "" -"\t\tThis subdirectory can be used to store user created,\n" -"\t\ttemporary, or otherwise non-system-supported DLL modules.\n" -"\t\tThe default gimprc file checks this subdirectory\n" -"\t\tin addition to the system-wide GIMP module directory\n" -"\t\twhen searching for modules to load when initializing.\n" +"This subdirectory is used by the GIMP to store \n" +"user created and installed scripts. The default gimprc\n" +"file checks this subdirectory in addition to the system-\n" +"wide gimp scripts subdirectory when searching for scripts" msgstr "" -#: app/install.c:248 +#: app/install.c:252 msgid "" -"\t\tThis subdirectory is used by the GIMP to store \n" -"\t\tuser created and installed scripts. The default gimprc\n" -"\t\tfile checks this subdirectory in addition to the system\n" -"\t\t-wide gimp scripts subdirectory when searching for scripts\n" +"This subdirectory is used by the GIMP to temporarily\n" +"store undo buffers to reduce memory usage. If GIMP is\n" +"unceremoniously killed, files may persist in this directory\n" +"of the form: gimp<#>.<#>. These files are useless across\n" +"GIMP sessions and can be destroyed with impunity." msgstr "" -#: app/install.c:254 +#: app/install.c:260 msgid "" -"\t\tThis subdirectory is used by the GIMP to temporarily\n" -"\t\tstore undo buffers to reduce memory usage. If GIMP is\n" -"\t\tunceremoniously killed, files may persist in this directory\n" -"\t\tof the form: gimp<#>.<#>. These files are useless across\n" -"\t\tGIMP sessions and can be destroyed with impunity.\n" +"This subdirectory is used to store parameter files for\n" +"the Curves tool." msgstr "" -#: app/install.c:263 -msgid "GIMP Installation" -msgstr "Instalacja GIMP-a" - -#: app/install.c:268 -msgid "Install" -msgstr "Instaluj" +#: app/install.c:265 +msgid "" +"This subdirectory is used to store parameter files for\n" +"the Levels tool." +msgstr "" #: app/install.c:270 -msgid "Ignore" -msgstr "Ignoruj" +msgid "" +"This is a subdirectory which can be used to store\n" +"user defined fractals to be used by the FractalExplorer\n" +"plug-in. The default gimprc file checks this subdirectory in\n" +"addition to the systemwide gimp FractalExplorer installation\n" +"when searching for fractals." +msgstr "" -#. this is a fontset, e.g. multiple comma-separated font definitions -#: app/install.c:295 app/install.c:453 +#: app/install.c:278 +msgid "" +"This is a subdirectory which can be used to store\n" +"user defined figures to be used by the gfig plug-in.\n" +"The default gimprc file checks this subdirectory in\n" +"addition to the systemwide gimp gfig installation\n" +"when searching for gfig figures." +msgstr "" + +#: app/install.c:286 +msgid "" +"This is a subdirectory which can be used to store\n" +"user defined gflares to be used by the gflare plug-in.\n" +"The default gimprc file checks this subdirectory in\n" +"addition to the systemwide gimp gflares installation\n" +"when searching for gflares." +msgstr "" + +#: app/install.c:294 +msgid "" +"This is a subdirectory which can be used to store\n" +"user defined data to be used by the Gimpressionist\n" +"plug-in. The default gimprc file checks this subdirectory in\n" +"addition to the systemwide gimp Gimpressionist installation\n" +"when searching for data." +msgstr "" + +#: app/install.c:525 #, fuzzy -msgid "-*-helvetica-bold-r-normal-*-*-120-*-*-*-*-*-*,*" -msgstr "-Adobe-Helvetica-Medium-R-Normal--*-140-*-*-*-*-iso8859-2" +msgid "GIMP User Installation" +msgstr "Instalacja GIMP-a" -#. this is a font, provide only one single font definition -#: app/install.c:298 -#, fuzzy -msgid "-*-helvetica-medium-o-normal-*-*-100-*-*-*-*-*-*" -msgstr "-Adobe-Helvetica-Medium-R-Normal--*-140-*-*-*-*-iso8859-2" - -#. this is a fontset, e.g. multiple comma-separated font definitions -#: app/install.c:301 -#, fuzzy -msgid "-*-helvetica-medium-r-normal-*-*-100-*-*-*-*-*-*,*" -msgstr "-Adobe-Helvetica-Medium-R-Normal--*-140-*-*-*-*-iso8859-2" - -#: app/install.c:423 -msgid "Installation Log" -msgstr "Dziennik instalacji" - -#: app/install.c:428 +#: app/install.c:530 msgid "Continue" msgstr "Konynuuj" #. this is a fontset, e.g. multiple comma-separated font definitions -#: app/install.c:456 +#: app/install.c:560 #, fuzzy -msgid "-*-helvetica-medium-r-normal-*-*-120-*-*-*-*-*-*,*" +msgid "-*-helvetica-bold-r-normal-*-*-240-*-*-*-*-*-*,*" msgstr "-Adobe-Helvetica-Medium-R-Normal--*-140-*-*-*-*-iso8859-2" -#: app/install.c:462 +#: app/install.c:578 +#, fuzzy msgid "" -"User Installation Log\n" +"Welcome to\n" +"The GIMP User Installation" +msgstr "Instalacja GIMP-a" + +#: app/install.c:582 +msgid "" +"The GIMP - GNU Image Manipulation Program\n" +"Copyright (C) 1995-2000\n" +"Spencer Kimball, Peter Mattis and the GIMP Development Team." +msgstr "" + +#: app/install.c:591 +msgid "" +"This program is free software; you can redistribute it and/or modify\n" +"it under the terms of the GNU General Public License as published by\n" +"the Free Software Foundation; either version 2 of the License, or\n" +"(at your option) any later version." +msgstr "" + +#: app/install.c:596 +msgid "" +"This program is distributed in the hope that it will be useful,\n" +"but WITHOUT ANY WARRANTY; without even the implied warranty of\n" +"MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n" +"See the GNU General Public License for more details." +msgstr "" + +#: app/install.c:601 +msgid "" +"You should have received a copy of the GNU General Public License\n" +"along with this program; if not, write to the Free Software\n" +"Foundation, Inc., 59 Temple Place - Suite 330, Boston,\n" +"MA 02111-1307, USA." +msgstr "" + +#: app/install.c:607 +msgid "Click \"Continue\" to enter the GIMP user installation." +msgstr "" + +#: app/install.c:633 +#, fuzzy +msgid "Personal GIMP Directory" +msgstr "" +"Indywidualna instalacja GIMP-a\n" "\n" + +#: app/install.c:650 +#, fuzzy +msgid "" +"For a proper GIMP installation, a subdirectory needs to be created.\n" +"This subdirectory will contain a number of important files." +msgstr "BЙdzie on zawieraЁ wiele wa©nych plikСw:\n" + +#: app/install.c:653 +msgid "" +"Click on one of the files or subdirectories in the tree\n" +"to get more information about the selected item." +msgstr "" + +#: app/install.c:656 +msgid "Click \"Continue\" to create your personal GIMP directory." +msgstr "" + +#: app/install.c:736 +#, fuzzy +msgid "User Installation Log" msgstr "" "Dziennik instalacji u©ytkownika\n" "\n" -#: app/install.c:472 -msgid " does not exist. Cannot install.\n" +#: app/install.c:741 +msgid "GIMP Performance Tuning" +msgstr "" + +#: app/install.c:744 +msgid "For optimal GIMP performance, some settings may have to be adjusted." +msgstr "" + +#: app/install.c:751 +msgid "Click \"Continue\" to accept the settings above." +msgstr "" + +#: app/install.c:760 +#, fuzzy +msgid "Monitor Resolution" +msgstr "Pobieranie rozdzielczo╤ci monitora" + +#: app/install.c:763 +msgid "" +"To display images in their natural size, GIMP needs to know your monitor " +"resolution." +msgstr "" + +#: app/install.c:771 +msgid "Click \"Continue\" to start The GIMP." +msgstr "" + +#: app/install.c:845 +#, fuzzy +msgid "does not exist. Cannot install." msgstr " nie istnieje. Nie mo©na przeprowadziФ instalacji.\n" -#: app/install.c:480 -msgid "" -" has invalid permissions.\n" -"Cannot install." +#: app/install.c:857 +#, fuzzy +msgid "has invalid permissions. Cannot install." msgstr "" " ma niewЁa╤ciwe uprawnienia.\n" "Nie mo©na przeprowadziФ instalacji." -#: app/install.c:514 +#: app/install.c:895 msgid "" -"Did you notice any error messages\n" -"in the console window? If not, installation\n" -"was successful! Otherwise, quit and investigate\n" -"the possible reason...\n" +"Did you notice any error messages in the console window?\n" +"If not, installation was successful!\n" +"Otherwise, quit and investigate the possible reason..." msgstr "" -#: app/install.c:546 +#: app/install.c:955 msgid "" -"\n" -"Installation successful!\n" +"Did you notice any error messages in the lines above?\n" +"If not, installation was successful!\n" +"Otherwise, quit and investigate the possible reason..." msgstr "" -"\n" -"InstalacjЙ zakoЯczono pomy╤lnie!\n" -#: app/install.c:555 -msgid "" -"\n" -"Installation failed. Contact system administrator.\n" +#: app/install.c:969 +msgid "Click \"Continue\" to complete GIMP installation." +msgstr "" + +#: app/install.c:978 +#, fuzzy +msgid "Installation failed. Contact system administrator." msgstr "" "\n" "Instalacja nie powiodЁa siЙ. Nale©y skontaktowaФ siЙ z administratorem.\n" +#: app/install.c:999 +msgid "" +"GIMP uses a limited amount of memory to store image data, the so-called\n" +"\"Tile Cache\". You should adjust it's size to fit into memory. Consider\n" +"the amount of memory used by other running processes." +msgstr "" + +#: app/install.c:1015 app/preferences_dialog.c:2102 +msgid "Tile Cache Size:" +msgstr "" + +#: app/install.c:1025 +msgid "" +"All image and undo data which doesn't fit into the Tile Cache will be\n" +"written to a swap file. This file should be located on a local filesystem\n" +"with enough free space (several hundred MB). On a UNIX system, you\n" +"may want to use the system-wide temp-dir (\"/tmp\" or \"/var/tmp\")." +msgstr "" + +#: app/install.c:1035 app/preferences_dialog.c:2361 +msgid "Select Swap Dir" +msgstr "WybСr katalogu wymiany" + +#: app/install.c:1041 +#, fuzzy +msgid "Swap Directory:" +msgstr "Katalog wymiany:" + +#: app/install.c:1063 +msgid "" +"GIMP can obtain this information from your X-server.\n" +"However, most X-servers do not return useful values." +msgstr "" + +#: app/install.c:1070 +#, fuzzy, c-format +msgid "Get Resolution from X-server (Currently %d x %d dpi)" +msgstr "(Aktualnie %d x %d dpi)" + +#: app/install.c:1087 +msgid "Alternatively, you can set the monitor resolution manually." +msgstr "" + +#: app/install.c:1102 +#, fuzzy +msgid "Monitor Resolution X:" +msgstr "Pobieranie rozdzielczo╤ci monitora" + #: app/interface.c:312 msgid "" "Foreground & background colors. The black and white squares reset colors. " @@ -2759,8 +2849,8 @@ msgstr "" msgid "Guide procedures" msgstr "" -#: app/internal_procs.c:122 app/preferences_dialog.c:1772 -#: app/preferences_dialog.c:1774 +#: app/internal_procs.c:122 app/preferences_dialog.c:1733 +#: app/preferences_dialog.c:1735 msgid "Interface" msgstr "Interfejs" @@ -3189,148 +3279,139 @@ msgid "degrees" msgstr "stopnie" #. /File -#: app/menus.c:82 +#. the underscore installs an accelerator using the character that follows +#: app/menus.c:85 #, fuzzy msgid "/_File" msgstr "/Plik" -#: app/menus.c:84 app/menus.c:191 +#. /File +#: app/menus.c:87 app/menus.c:193 #, fuzzy msgid "/File/New..." msgstr "/Plik/Nowy" -#: app/menus.c:86 app/menus.c:193 +#: app/menus.c:89 app/menus.c:195 #, fuzzy msgid "/File/Open..." msgstr "/Plik/OtwСrz" -#: app/menus.c:93 +#: app/menus.c:96 msgid "/File/Acquire" msgstr "/Plik/Pobierz" -#: app/menus.c:98 +#: app/menus.c:101 msgid "/File/Preferences..." msgstr "/Plik/Preferencje..." -#: app/menus.c:105 -msgid "/File/Dialogs" -msgstr "/Plik/Okna dialogowe" - -#: app/menus.c:107 +#: app/menus.c:108 #, fuzzy msgid "/File/Dialogs/Layers, Channels & Paths..." msgstr "/Plik/Okna dialogowe/Warstwy i KanaЁy..." -#: app/menus.c:109 +#: app/menus.c:110 msgid "/File/Dialogs/Tool Options..." msgstr "/Plik/Okna dialogowe/Opcje narzЙdzi..." -#: app/menus.c:114 +#: app/menus.c:115 msgid "/File/Dialogs/Brushes..." msgstr "/Plik/Okna dialogowe/PЙdzle..." -#: app/menus.c:116 +#: app/menus.c:117 msgid "/File/Dialogs/Patterns..." msgstr "/Plik/Okna dialogowe/Wzory..." -#: app/menus.c:118 +#: app/menus.c:119 msgid "/File/Dialogs/Gradients..." msgstr "/Plik/Okna dialogowe/Gradienty..." -#: app/menus.c:120 +#: app/menus.c:121 msgid "/File/Dialogs/Palette..." msgstr "/Plik/Okna dialogowe/Palety..." -#: app/menus.c:122 +#: app/menus.c:123 msgid "/File/Dialogs/Indexed Palette..." msgstr "/Plik/Okna dialogowe/Paleta indeksowana..." -#: app/menus.c:127 +#: app/menus.c:128 msgid "/File/Dialogs/Input Devices..." msgstr "/Plik/Okna dialogowe/Urz╠dzenia wej╤ciowe..." -#: app/menus.c:129 +#: app/menus.c:130 msgid "/File/Dialogs/Device Status..." msgstr "/Plik/Okna dialogowe/Stan urz╠dzenia..." -#: app/menus.c:134 +#: app/menus.c:135 msgid "/File/Dialogs/Document Index..." msgstr "/Plik/Okna dialogowe/Indeks dokumentСw..." -#: app/menus.c:136 +#: app/menus.c:137 msgid "/File/Dialogs/Error Console..." msgstr "/Plik/Okna dialogowe/Konsola bЁЙdСw..." -#: app/menus.c:138 +#: app/menus.c:139 msgid "/File/Dialogs/Display Filters..." msgstr "/Plik/Okna dialogowe/Filtry wy╤wietlania..." -#: app/menus.c:148 app/menus.c:206 +#: app/menus.c:149 app/menus.c:208 msgid "/File/Quit" msgstr "/Plik/ZakoЯcz" #. /Xtns -#: app/menus.c:153 +#. the underscore installs an accelerator using the character that follows +#: app/menus.c:155 #, fuzzy msgid "/_Xtns" msgstr "/Edycja/---" -#: app/menus.c:155 +#: app/menus.c:157 msgid "/Xtns/Module Browser..." msgstr "/Rozszerzenia/Przegl╠darka moduЁСw..." #. /Help -#: app/menus.c:163 +#. the underscore installs an accelerator using the character that follows +#: app/menus.c:166 #, fuzzy msgid "/_Help" msgstr "/Pomoc" -#: app/menus.c:165 +#: app/menus.c:168 msgid "/Help/Help..." msgstr "/Pomoc/Pomoc..." -#: app/menus.c:167 +#: app/menus.c:170 msgid "/Help/Context Help..." msgstr "" -#: app/menus.c:169 +#: app/menus.c:172 msgid "/Help/Tip of the Day..." msgstr "/Pomoc/Porada dnia" -#: app/menus.c:171 +#: app/menus.c:174 msgid "/Help/About..." msgstr "/Pomoc/Informacje o..." -#: app/menus.c:173 +#: app/menus.c:176 msgid "/Help/Dump Items (Debug)" msgstr "" -#. /File -#: app/menus.c:189 -msgid "/File" -msgstr "/Plik" - -#: app/menus.c:195 +#: app/menus.c:197 msgid "/File/Save" msgstr "/Plik/Zapisz" -#: app/menus.c:197 +#: app/menus.c:199 msgid "/File/Save As..." msgstr "/Plik/Zapisz jako..." -#: app/menus.c:199 +#: app/menus.c:201 msgid "/File/Revert" msgstr "/Plik/PrzywrСФ" -#: app/menus.c:204 +#: app/menus.c:206 msgid "/File/Close" msgstr "/Plik/Zamknij" #. /Edit -#: app/menus.c:214 -msgid "/Edit" -msgstr "/Edycja" - #: app/menus.c:216 msgid "/Edit/Undo" msgstr "/Edycja/Cofnij" @@ -3362,729 +3443,640 @@ msgstr "/Edycja/Wklej jako nowy" #. /Edit/Buffer #: app/menus.c:236 #, fuzzy -msgid "/Edit/Buffer" -msgstr "/Edycja/tearoff1" - -#: app/menus.c:238 -#, fuzzy msgid "/Edit/Buffer/Cut Named..." msgstr "/Edycja/Wytnij nazwany" -#: app/menus.c:240 +#: app/menus.c:238 #, fuzzy msgid "/Edit/Buffer/Copy Named..." msgstr "/Edycja/Kopiuj nazwany" -#: app/menus.c:242 +#: app/menus.c:240 #, fuzzy msgid "/Edit/Buffer/Paste Named..." msgstr "/Edycja/Wklej nazwany" -#: app/menus.c:247 +#: app/menus.c:245 msgid "/Edit/Clear" msgstr "/Edycja/Wyczy╤Ф" -#: app/menus.c:249 +#: app/menus.c:247 msgid "/Edit/Fill" msgstr "/Edycja/WypeЁnij" -#: app/menus.c:251 +#: app/menus.c:249 msgid "/Edit/Stroke" msgstr "" #. /Select -#: app/menus.c:259 -msgid "/Select" -msgstr "/Zaznacz" - -#: app/menus.c:261 +#: app/menus.c:257 msgid "/Select/Invert" msgstr "/Zaznacz/OdwrСФ" -#: app/menus.c:263 +#: app/menus.c:259 msgid "/Select/All" msgstr "/Zaznacz/Wszystko" -#: app/menus.c:265 +#: app/menus.c:261 msgid "/Select/None" msgstr "/Zaznacz/Nic" -#: app/menus.c:267 +#: app/menus.c:263 msgid "/Select/Float" msgstr "" -#: app/menus.c:272 +#: app/menus.c:268 msgid "/Select/Feather..." msgstr "/Zaznacz/WygЁad╪..." -#: app/menus.c:274 +#: app/menus.c:270 msgid "/Select/Sharpen" msgstr "/Zaznacz/Wyostrz" -#: app/menus.c:276 +#: app/menus.c:272 msgid "/Select/Shrink..." msgstr "/Zaznacz/Zmniejsz..." -#: app/menus.c:278 +#: app/menus.c:274 msgid "/Select/Grow..." msgstr "/Zaznacz/PowiЙksz..." -#: app/menus.c:280 +#: app/menus.c:276 msgid "/Select/Border..." msgstr "/Zaznacz/Brzeg..." -#: app/menus.c:285 +#: app/menus.c:281 msgid "/Select/Save to Channel" msgstr "/Zaznacz/Zapisz do kanaЁu" #. /View -#: app/menus.c:290 -msgid "/View" -msgstr "/Widok" - -#: app/menus.c:292 +#: app/menus.c:286 msgid "/View/Zoom In" msgstr "/Widok/PowiЙksz" -#: app/menus.c:294 +#: app/menus.c:288 msgid "/View/Zoom Out" msgstr "/Widok/Pomniejsz" #. /View/Zoom -#: app/menus.c:299 -msgid "/View/Zoom" -msgstr "/Widok/PowiЙksz" - -#: app/menus.c:301 +#: app/menus.c:293 msgid "/View/Zoom/16:1" msgstr "/Widok/PowiЙkszenie/16:1" -#: app/menus.c:303 +#: app/menus.c:295 msgid "/View/Zoom/8:1" msgstr "/Widok/PowiЙkszenie/8:1" -#: app/menus.c:305 +#: app/menus.c:297 msgid "/View/Zoom/4:1" msgstr "/Widok/PowiЙkszenie/4:1" -#: app/menus.c:307 +#: app/menus.c:299 msgid "/View/Zoom/2:1" msgstr "/Widok/PowiЙkszenie/2:1" -#: app/menus.c:309 +#: app/menus.c:301 msgid "/View/Zoom/1:1" msgstr "/Widok/PowiЙkszenie/1:1" -#: app/menus.c:311 +#: app/menus.c:303 msgid "/View/Zoom/1:2" msgstr "/Widok/PowiЙkszenie/1:2" -#: app/menus.c:313 +#: app/menus.c:305 msgid "/View/Zoom/1:4" msgstr "/Widok/PowiЙkszenie/1:4" -#: app/menus.c:315 +#: app/menus.c:307 msgid "/View/Zoom/1:8" msgstr "/Widok/PowiЙkszenie/1:8" -#: app/menus.c:317 +#: app/menus.c:309 msgid "/View/Zoom/1:16" msgstr "/Widok/PowiЙkszenie/1:16" -#: app/menus.c:320 +#: app/menus.c:312 #, fuzzy msgid "/View/Dot for Dot" msgstr "/Widok/Punkt za punkt" -#: app/menus.c:325 +#: app/menus.c:317 msgid "/View/Info Window..." msgstr "/Widok/Informacje o oknie..." -#: app/menus.c:327 +#: app/menus.c:319 msgid "/View/Nav. Window..." msgstr "/Widok/Nawigacja oknem..." -#: app/menus.c:329 -msgid "/View/Undo History..." -msgstr "/Widok/Historia cofniЙФ..." - -#: app/menus.c:334 +#: app/menus.c:324 msgid "/View/Toggle Selection" msgstr "/Widok/Zaznaczenie" -#: app/menus.c:336 +#: app/menus.c:326 msgid "/View/Toggle Rulers" msgstr "/Widok/Linijki" -#: app/menus.c:338 +#: app/menus.c:328 msgid "/View/Toggle Statusbar" msgstr "/Widok/Pasek stanu" -#: app/menus.c:340 +#: app/menus.c:330 msgid "/View/Toggle Guides" msgstr "/Widok/Prowadnice" -#: app/menus.c:342 +#: app/menus.c:332 #, fuzzy msgid "/View/Snap to Guides" msgstr "/Widok/Przyci╠ganie do prowadnic" -#: app/menus.c:347 +#: app/menus.c:337 msgid "/View/New View" msgstr "/Widok/Nowy widok" -#: app/menus.c:349 +#: app/menus.c:339 msgid "/View/Shrink Wrap" msgstr "" -#. /Image -#: app/menus.c:357 -msgid "/Image" -msgstr "/Obraz" - #. /Image/Mode -#: app/menus.c:362 -msgid "/Image/Mode" -msgstr "/Obraz/Tryb" - -#: app/menus.c:364 +#: app/menus.c:344 msgid "/Image/Mode/RGB" msgstr "/Obraz/Tryb/RGB" -#: app/menus.c:366 +#: app/menus.c:346 msgid "/Image/Mode/Grayscale" msgstr "/Obraz/Tryb/Odcienie szaro╤ci" -#: app/menus.c:368 +#: app/menus.c:348 msgid "/Image/Mode/Indexed..." msgstr "/Obraz/Tryb/Indeksowany..." #. /Image/Colors -#: app/menus.c:376 -msgid "/Image/Colors" -msgstr "/Obraz/Kolory" - -#: app/menus.c:381 +#: app/menus.c:356 msgid "/Image/Colors/Desaturate" msgstr "/Obraz/Kolory/Desaturacja" -#: app/menus.c:383 +#: app/menus.c:358 msgid "/Image/Colors/Invert" msgstr "/Obraz/Kolory/OdwrСФ" #. /Image/Colors/Auto -#: app/menus.c:391 -#, fuzzy -msgid "/Image/Colors/Auto" -msgstr "/Obraz/Kolory" - -#: app/menus.c:393 +#: app/menus.c:366 #, fuzzy msgid "/Image/Colors/Auto/Equalize" msgstr "/Obraz/Kolory/Izochelia" #. /Image/Alpha -#: app/menus.c:401 -msgid "/Image/Alpha" -msgstr "/Obraz/Alfa" - -#: app/menus.c:403 +#: app/menus.c:374 msgid "/Image/Alpha/Add Alpha Channel" msgstr "/Obraz/Alfa/Dodaj kanaЁ Alfa" #. /Image/Transforms -#: app/menus.c:408 -#, fuzzy -msgid "/Image/Transforms" -msgstr "/Obraz/PrzeksztaЁcenia" - -#: app/menus.c:410 +#: app/menus.c:379 #, fuzzy msgid "/Image/Transforms/Offset..." msgstr "/Obraz/PrzeksztaЁcenia/" -#: app/menus.c:412 +#: app/menus.c:381 #, fuzzy msgid "/Image/Transforms/Rotate" msgstr "/Obraz/PrzeksztaЁcenia/tearoff1" -#: app/menus.c:419 +#: app/menus.c:388 #, fuzzy msgid "/Image/Canvas Size..." msgstr "/Obraz/ZmieЯ rozmiar" -#: app/menus.c:421 +#: app/menus.c:390 #, fuzzy msgid "/Image/Scale Image..." msgstr "/Obraz/Skaluj" -#: app/menus.c:423 +#: app/menus.c:392 msgid "/Image/Duplicate" msgstr "/Obraz/Zduplikuj" #. /Layers -#: app/menus.c:431 -msgid "/Layers" -msgstr "/Warstwy" - -#: app/menus.c:433 +#: app/menus.c:400 #, fuzzy msgid "/Layers/Layers, Channels & Paths..." msgstr "/Warstwy/Warstwy i kanaЁy.." -#. /Layers/Stack -#: app/menus.c:438 -#, fuzzy -msgid "/Layers/Stack" -msgstr "/Warstwy/Stos" - -#: app/menus.c:440 -msgid "/Layers/Stack/Previous Layer" -msgstr "/Warstwy/Stos/Poprzednia warstwa" - -#: app/menus.c:442 -msgid "/Layers/Stack/Next Layer" -msgstr "/Warstwy/Stos/NastЙpna warstwa" - -#: app/menus.c:444 -msgid "/Layers/Stack/Raise Layer" -msgstr "/Warstwy/Stos/Podnie╤ warstwЙ" - -#: app/menus.c:446 -msgid "/Layers/Stack/Lower Layer" -msgstr "/Warstwy/Stos/Obni© warstwЙ" - -#: app/menus.c:448 -msgid "/Layers/Stack/Layer to Top" -msgstr "/Warstwy/Stos/Warstwa na wierzchoЁek" - -#: app/menus.c:450 -msgid "/Layers/Stack/Layer to Bottom" -msgstr "/Warstwy/Stos/Warstwa na dno" - -#. /Layers/Rotate -#: app/menus.c:457 -#, fuzzy -msgid "/Layers/Rotate" -msgstr "/Warstwy/Podnie╤ warstwЙ" - -#: app/menus.c:460 +#: app/menus.c:404 #, fuzzy msgid "/Layers/Layer to Imagesize" msgstr "/Warstwy/SpЁaszcz obraz" -#: app/menus.c:465 +#. /Layers/Stack +#: app/menus.c:409 +msgid "/Layers/Stack/Previous Layer" +msgstr "/Warstwy/Stos/Poprzednia warstwa" + +#: app/menus.c:411 +msgid "/Layers/Stack/Next Layer" +msgstr "/Warstwy/Stos/NastЙpna warstwa" + +#: app/menus.c:413 +msgid "/Layers/Stack/Raise Layer" +msgstr "/Warstwy/Stos/Podnie╤ warstwЙ" + +#: app/menus.c:415 +msgid "/Layers/Stack/Lower Layer" +msgstr "/Warstwy/Stos/Obni© warstwЙ" + +#: app/menus.c:417 +msgid "/Layers/Stack/Layer to Top" +msgstr "/Warstwy/Stos/Warstwa na wierzchoЁek" + +#: app/menus.c:419 +msgid "/Layers/Stack/Layer to Bottom" +msgstr "/Warstwy/Stos/Warstwa na dno" + +#. /Layers/Rotate +#: app/menus.c:426 +#, fuzzy +msgid "/Layers/Rotate" +msgstr "/Warstwy/Podnie╤ warstwЙ" + +#: app/menus.c:431 msgid "/Layers/Anchor Layer" msgstr "/Warstwy/Zakotwicz warstwЙ" -#: app/menus.c:467 +#: app/menus.c:433 #, fuzzy msgid "/Layers/Merge Visible Layers..." msgstr "/Warstwy/PoЁ╠cz widoczne warstwy" -#: app/menus.c:469 +#: app/menus.c:435 msgid "/Layers/Flatten Image" msgstr "/Warstwy/SpЁaszcz obraz" -#: app/menus.c:474 +#: app/menus.c:440 #, fuzzy msgid "/Layers/Mask to Selection" msgstr "/Warstwy/Zaznaczenie z maski" -#: app/menus.c:479 +#: app/menus.c:445 msgid "/Layers/Add Alpha Channel" msgstr "/Warstwy/Dodaj kanaЁ Alfa" -#: app/menus.c:481 +#: app/menus.c:447 #, fuzzy msgid "/Layers/Alpha to Selection" msgstr "/Warstwy/Zaznaczenie z kanaЁu Alfa" #. /Tools -#: app/menus.c:489 -msgid "/Tools" -msgstr "/NarzЙdzia" - -#: app/menus.c:491 +#: app/menus.c:455 msgid "/Tools/Toolbox" msgstr "" -#: app/menus.c:493 +#: app/menus.c:457 msgid "/Tools/Default Colors" msgstr "/NarzЙdzia/Domy╤lne kolory" -#: app/menus.c:495 +#: app/menus.c:459 msgid "/Tools/Swap Colors" msgstr "/NarzЙdzia/ZamieЯ Kolory" -#: app/menus.c:501 -#, fuzzy -msgid "/Tools/Select Tools" -msgstr "/NarzЙdzia/Zaznaczenie prostok╠tne" - -#: app/menus.c:503 -#, fuzzy -msgid "/Tools/Transform Tools" -msgstr "/NarzЙdzia/PrzeksztaЁФ" - -#: app/menus.c:505 -#, fuzzy -msgid "/Tools/Paint Tools" -msgstr "/NarzЙdzia/Malowanie" - #. /Dialogs -#: app/menus.c:510 -#, fuzzy -msgid "/Dialogs" -msgstr "/Okna dialogowe" - -#: app/menus.c:512 +#: app/menus.c:466 #, fuzzy msgid "/Dialogs/Layers, Channels & Paths..." msgstr "/Okna dialogowe/Warstwy i kanaЁy..." -#: app/menus.c:514 +#: app/menus.c:468 msgid "/Dialogs/Tool Options..." msgstr "/Okna dialogowe/Opcje narzЙdzi..." -#: app/menus.c:519 +#: app/menus.c:473 msgid "/Dialogs/Brushes..." msgstr "/Okna dialogowe/PЙdzle..." -#: app/menus.c:521 +#: app/menus.c:475 msgid "/Dialogs/Patterns..." msgstr "/Okna dialogowe/Wzory..." -#: app/menus.c:523 +#: app/menus.c:477 msgid "/Dialogs/Gradients..." msgstr "/Okna dialogowe/Gradienty..." -#: app/menus.c:525 +#: app/menus.c:479 msgid "/Dialogs/Palette..." msgstr "/Okna dialogowe/Palety..." -#: app/menus.c:527 +#: app/menus.c:481 msgid "/Dialogs/Indexed Palette..." msgstr "/Okna dialogowe/Paleta indeksowana..." -#: app/menus.c:532 +#: app/menus.c:486 msgid "/Dialogs/Input Devices..." msgstr "/Okna dialogowe/Urz╠dzenia wej╤ciowe..." -#: app/menus.c:534 +#: app/menus.c:488 msgid "/Dialogs/Device Status..." msgstr "/Okna dialogowe/Stan urz╠dzenia..." -#: app/menus.c:539 +#: app/menus.c:493 msgid "/Dialogs/Document Index..." msgstr "/Okna dialogowe/Indeks dokumentСw..." -#: app/menus.c:541 +#: app/menus.c:495 msgid "/Dialogs/Error Console..." msgstr "/Okna dialogowe/Konsola bЁЙdСw..." -#: app/menus.c:543 +#: app/menus.c:497 msgid "/Dialogs/Display Filters..." msgstr "/Okna dialogowe/Filtry wy╤wietlania..." -#. /Filters -#: app/menus.c:551 -msgid "/Filters" -msgstr "/Filtry" +#: app/menus.c:499 +#, fuzzy +msgid "/Dialogs/Undo History..." +msgstr "/Widok/Historia cofniЙФ..." -#: app/menus.c:553 +#. /Filters +#: app/menus.c:508 #, fuzzy msgid "/Filters/Repeat Last" msgstr "/Filtry/PowtСrz ostatni" -#: app/menus.c:555 +#: app/menus.c:510 #, fuzzy msgid "/Filters/Re-Show Last" msgstr "/Filtry/Poka© ostatni" -#: app/menus.c:561 +#: app/menus.c:515 #, fuzzy msgid "/Filters/Blur" msgstr "/Filtry" -#: app/menus.c:564 +#: app/menus.c:517 #, fuzzy msgid "/Filters/Colors" msgstr "/Plik/Zamknij" -#: app/menus.c:569 +#: app/menus.c:519 #, fuzzy msgid "/Filters/Noise" msgstr "/Filtry" -#: app/menus.c:571 +#: app/menus.c:521 #, fuzzy msgid "/Filters/Edge-Detect" msgstr "/Filtry/PowtСrz ostatni" -#: app/menus.c:573 +#: app/menus.c:523 #, fuzzy msgid "/Filters/Enhance" msgstr "/Filtry" -#: app/menus.c:575 +#: app/menus.c:525 #, fuzzy msgid "/Filters/Generic" msgstr "/Filtry/tearoff1" -#: app/menus.c:580 +#: app/menus.c:530 #, fuzzy msgid "/Filters/Glass Effects" msgstr "/Filtry/PowtСrz ostatni" -#: app/menus.c:582 +#: app/menus.c:532 #, fuzzy msgid "/Filters/Light Effects" msgstr "/Filtry/tearoff1" -#: app/menus.c:584 +#: app/menus.c:534 #, fuzzy msgid "/Filters/Distorts" msgstr "/Plik/Okna dialogowe" -#: app/menus.c:586 +#: app/menus.c:536 #, fuzzy msgid "/Filters/Artistic" msgstr "/Filtry/PowtСrz ostatni" -#: app/menus.c:588 +#: app/menus.c:538 #, fuzzy msgid "/Filters/Map" msgstr "/Filtry" -#: app/menus.c:590 +#: app/menus.c:540 #, fuzzy msgid "/Filters/Render" msgstr "/Plik/PrzywrСФ" -#: app/menus.c:592 +#: app/menus.c:542 #, fuzzy msgid "/Filters/Web" msgstr "/Filtry" -#: app/menus.c:597 +#: app/menus.c:547 #, fuzzy msgid "/Filters/Animation" msgstr "/Filtry/tearoff1" -#: app/menus.c:599 +#: app/menus.c:549 #, fuzzy msgid "/Filters/Combine" msgstr "/Plik/Zamknij" -#: app/menus.c:604 +#: app/menus.c:554 #, fuzzy msgid "/Filters/Toys" msgstr "/Filtry" -#. /Script-Fu -#: app/menus.c:609 -msgid "/Script-Fu" -msgstr "/Script-Fu" - -#: app/menus.c:620 +#: app/menus.c:567 msgid "/Automatic" msgstr "/Automatycznie" -#: app/menus.c:634 +#: app/menus.c:581 #, fuzzy msgid "/By Extension" msgstr "/WedЁug rozszerzenia" -#: app/menus.c:648 +#: app/menus.c:595 #, fuzzy msgid "/New Layer..." msgstr "/Nowa warstwa" #. /Stack -#: app/menus.c:653 -msgid "/Stack" -msgstr "/Stos" - -#: app/menus.c:655 +#: app/menus.c:600 msgid "/Stack/Raise Layer" msgstr "/Stos/Podnie╤ warstwЙ" -#: app/menus.c:657 +#: app/menus.c:602 msgid "/Stack/Lower Layer" msgstr "/Stos/Obni© warstwЙ" -#: app/menus.c:659 +#: app/menus.c:604 msgid "/Stack/Layer to Top" msgstr "/Stos/Warstwa na wierzchoЁek" -#: app/menus.c:661 +#: app/menus.c:606 msgid "/Stack/Layer to Bottom" msgstr "/Stos/Warstwa na dno" -#: app/menus.c:664 +#: app/menus.c:609 msgid "/Duplicate Layer" msgstr "/Zduplikuj warstwЙ" -#: app/menus.c:666 +#: app/menus.c:611 msgid "/Anchor Layer" msgstr "/Zakotwicz warstwЙ" -#: app/menus.c:668 +#: app/menus.c:613 msgid "/Delete Layer" msgstr "/UsuЯ kanaЁ" -#: app/menus.c:673 +#: app/menus.c:618 msgid "/Layer Boundary Size..." msgstr "" -#: app/menus.c:675 +#: app/menus.c:620 #, fuzzy msgid "/Layer to Imagesize" msgstr "/Warstwy/SpЁaszcz obraz" -#: app/menus.c:677 +#: app/menus.c:622 #, fuzzy msgid "/Scale Layer..." msgstr "/Przeskaluj warstwЙ" -#: app/menus.c:682 +#: app/menus.c:627 #, fuzzy msgid "/Merge Visible Layers..." msgstr "/PoЁ╠cz widoczne warstwy" -#: app/menus.c:684 +#: app/menus.c:629 msgid "/Merge Down" msgstr "/PoЁ╠cz w dСЁ" -#: app/menus.c:686 +#: app/menus.c:631 msgid "/Flatten Image" msgstr "/SpЁaszcz obraz" -#: app/menus.c:691 +#: app/menus.c:636 #, fuzzy msgid "/Add Layer Mask..." msgstr "/Dodaj maskЙ warstwy" -#: app/menus.c:693 +#: app/menus.c:638 #, fuzzy msgid "/Apply Layer Mask" msgstr "/Zastosuj maskЙ warstwy" -#: app/menus.c:695 +#: app/menus.c:640 #, fuzzy msgid "/Delete Layer Mask" msgstr "/UsuЯ kanaЁ" -#: app/menus.c:697 +#: app/menus.c:642 msgid "/Mask to Selection" msgstr "/Zaznaczenie z maski" -#: app/menus.c:702 +#: app/menus.c:647 msgid "/Add Alpha Channel" msgstr "/Dodaj kanaЁ Alpha" -#: app/menus.c:704 +#: app/menus.c:649 msgid "/Alpha to Selection" msgstr "/Zaznaczenie z kanaЁu Alfa" -#: app/menus.c:709 +#: app/menus.c:654 #, fuzzy msgid "/Edit Layer Attributes..." msgstr "Modyfikuj atrybuty kanaЁu" -#: app/menus.c:720 +#: app/menus.c:665 #, fuzzy msgid "/New Channel..." msgstr "/Nowy kanaЁ" -#: app/menus.c:722 +#: app/menus.c:667 msgid "/Raise Channel" msgstr "/Podnie╤ kanaЁ" -#: app/menus.c:724 +#: app/menus.c:669 msgid "/Lower Channel" msgstr "/Obni© kanaЁ" -#: app/menus.c:726 +#: app/menus.c:671 msgid "/Duplicate Channel" msgstr "/Zduplikuj kanaЁ" -#: app/menus.c:731 +#: app/menus.c:676 msgid "/Channel to Selection" msgstr "/KanaЁ na zaznaczenie" -#: app/menus.c:733 +#: app/menus.c:678 msgid "/Add to Selection" msgstr "/Dodaj do zaznaczenia" -#: app/menus.c:735 +#: app/menus.c:680 #, fuzzy msgid "/Subtract from Selection" msgstr "/Odejmij od zaznaczenia" -#: app/menus.c:737 +#: app/menus.c:682 #, fuzzy msgid "/Intersect with Selection" msgstr "/Przetnij z zaznaczeniem" -#: app/menus.c:742 +#: app/menus.c:687 msgid "/Delete Channel" msgstr "/UsuЯ kanaЁ" -#: app/menus.c:747 +#: app/menus.c:692 #, fuzzy msgid "/Edit Channel Attributes..." msgstr "Modyfikuj atrybuty kanaЁu" -#: app/menus.c:758 +#: app/menus.c:703 msgid "/New Path" msgstr "/Nowa ╤cie©ka" -#: app/menus.c:760 +#: app/menus.c:705 msgid "/Duplicate Path" msgstr "/Zduplikuj ╤cie©kЙ" -#: app/menus.c:762 +#: app/menus.c:707 msgid "/Path to Selection" msgstr "/Zaznaczenie ze ╤cie©ki" -#: app/menus.c:764 +#: app/menus.c:709 msgid "/Selection to Path" msgstr "/╕cie©ka z zaznaczenia" -#: app/menus.c:766 +#: app/menus.c:711 msgid "/Stroke Path" msgstr "" -#: app/menus.c:768 +#: app/menus.c:713 msgid "/Delete Path" msgstr "/UsuЯ ╤cie©kЙ" -#: app/menus.c:773 +#: app/menus.c:718 msgid "/Copy Path" msgstr "/Kopiuj ╤cie©kЙ" -#: app/menus.c:775 +#: app/menus.c:720 msgid "/Paste Path" msgstr "/Wklej ╤cie©kЙ" -#: app/menus.c:777 +#: app/menus.c:722 #, fuzzy msgid "/Import Path..." msgstr "/Importuj ╤cie©kЙ" -#: app/menus.c:779 +#: app/menus.c:724 #, fuzzy msgid "/Export Path..." msgstr "/Eksportuj ╤cie©kЙ" -#: app/menus.c:784 +#: app/menus.c:729 #, fuzzy msgid "/Edit Path Attributes..." msgstr "Modyfikuj atrybuty kanaЁu" -#: app/menus.c:1310 +#: app/menus.c:1260 #, c-format msgid "Error opening file: %s\n" msgstr "BЁ╠d przy otwieraniu pliku: %s\n" @@ -4184,7 +4176,7 @@ msgstr "Stan: " msgid "Autoload during startup" msgstr "Wczytywanie przy uruchamianiu" -#: app/move.c:456 +#: app/move.c:458 #, fuzzy msgid "Move Tool" msgstr "Opcje narzЙdzia przesuwania" @@ -4199,7 +4191,7 @@ msgstr "Pozycje okien" msgid "Navigation: No Image" msgstr "" -#: app/paint_core.c:717 +#: app/paint_core.c:735 msgid "No brushes available for use with this tool." msgstr "Brak dostЙpnych pЙdzli dla tego narzЙdzia." @@ -4625,484 +4617,478 @@ msgstr "" msgid "You will need to restart GIMP for these changes to take effect." msgstr "Zmiany odnios╠ efekt po ponownym uruchomieniu GIMP-a." -#: app/preferences_dialog.c:1459 +#: app/preferences_dialog.c:1002 +#, c-format +msgid "The default comments is limited to %d characters." +msgstr "" + +#: app/preferences_dialog.c:1424 msgid "Preferences" msgstr "Preferencje" #. The categories tree -#: app/preferences_dialog.c:1481 +#: app/preferences_dialog.c:1446 msgid "Categories" msgstr "Kategorie" -#: app/preferences_dialog.c:1509 app/preferences_dialog.c:1511 +#: app/preferences_dialog.c:1474 app/preferences_dialog.c:1476 msgid "New File" msgstr "Nowy plik" -#: app/preferences_dialog.c:1522 +#: app/preferences_dialog.c:1487 msgid "Default Image Size and Unit" msgstr "Domy╤lny rozmiar obrazu i jednostka" -#: app/preferences_dialog.c:1536 +#: app/preferences_dialog.c:1501 msgid "Width" msgstr "Szeroko╤Ф" -#: app/preferences_dialog.c:1538 +#: app/preferences_dialog.c:1503 msgid "Height" msgstr "Wysoko╤Ф" -#: app/preferences_dialog.c:1568 +#: app/preferences_dialog.c:1533 msgid "Default Image Resolution and Resolution Unit" msgstr "Domy╤lna rozdzielczo╤Ф obrazu i jednostka rozdzielczo╤ci" -#: app/preferences_dialog.c:1595 app/preferences_dialog.c:2359 +#: app/preferences_dialog.c:1560 app/preferences_dialog.c:2288 msgid "dpi" msgstr "dpi" -#: app/preferences_dialog.c:1642 +#: app/preferences_dialog.c:1607 msgid "Default Image Type:" msgstr "Domy╤lny typ obrazu:" -#: app/preferences_dialog.c:1678 app/preferences_dialog.c:2166 -msgid "Bytes" -msgstr "BajtСw" - -#: app/preferences_dialog.c:1679 app/preferences_dialog.c:2167 -msgid "KiloBytes" -msgstr "KilobajtСw" - -#: app/preferences_dialog.c:1680 app/preferences_dialog.c:2168 -msgid "MegaBytes" -msgstr "MegabajtСw" - -#: app/preferences_dialog.c:1686 +#: app/preferences_dialog.c:1618 msgid "Maximum Image Size:" msgstr "Maksymalny rozmiar obrazu:" -#: app/preferences_dialog.c:1692 app/preferences_dialog.c:1694 +#: app/preferences_dialog.c:1623 app/preferences_dialog.c:1625 +#, fuzzy +msgid "Default Comment" +msgstr "Domy╤lny" + +#: app/preferences_dialog.c:1633 +msgid "Comment Used for New Images" +msgstr "" + +#: app/preferences_dialog.c:1653 app/preferences_dialog.c:1655 msgid "Display" msgstr "Wy╤wietlanie" -#: app/preferences_dialog.c:1702 +#: app/preferences_dialog.c:1663 msgid "Transparency" msgstr "Przeroczysto╤Ф" -#: app/preferences_dialog.c:1721 +#: app/preferences_dialog.c:1682 msgid "Light Checks" msgstr "" -#: app/preferences_dialog.c:1722 +#: app/preferences_dialog.c:1683 msgid "Mid-Tone Checks" msgstr "" -#: app/preferences_dialog.c:1723 +#: app/preferences_dialog.c:1684 msgid "Dark Checks" msgstr "" -#: app/preferences_dialog.c:1724 +#: app/preferences_dialog.c:1685 msgid "White Only" msgstr "" -#: app/preferences_dialog.c:1725 +#: app/preferences_dialog.c:1686 msgid "Gray Only" msgstr "" -#: app/preferences_dialog.c:1726 +#: app/preferences_dialog.c:1687 msgid "Black Only" msgstr "" -#: app/preferences_dialog.c:1730 +#: app/preferences_dialog.c:1691 msgid "Transparency Type:" msgstr "Typ prze╪roczysto╤ci:" -#: app/preferences_dialog.c:1737 app/preferences_dialog.c:1810 -#: app/preferences_dialog.c:1824 +#: app/preferences_dialog.c:1698 app/preferences_dialog.c:1771 +#: app/preferences_dialog.c:1785 msgid "Small" msgstr "MaЁy" -#: app/preferences_dialog.c:1738 app/preferences_dialog.c:1811 -#: app/preferences_dialog.c:1825 +#: app/preferences_dialog.c:1699 app/preferences_dialog.c:1772 +#: app/preferences_dialog.c:1786 msgid "Medium" msgstr "╕redni" -#: app/preferences_dialog.c:1739 app/preferences_dialog.c:1812 -#: app/preferences_dialog.c:1826 +#: app/preferences_dialog.c:1700 app/preferences_dialog.c:1773 +#: app/preferences_dialog.c:1787 msgid "Large" msgstr "Wielki" -#: app/preferences_dialog.c:1743 +#: app/preferences_dialog.c:1704 msgid "Check Size:" msgstr "" -#: app/preferences_dialog.c:1746 +#: app/preferences_dialog.c:1707 msgid "8-Bit Displays" msgstr "Ekrany 8-bitowe" -#: app/preferences_dialog.c:1751 +#: app/preferences_dialog.c:1712 msgid "Install Colormap" msgstr "Instalowanie palety kolorСw" -#: app/preferences_dialog.c:1760 +#: app/preferences_dialog.c:1721 msgid "Colormap Cycling" msgstr "" -#: app/preferences_dialog.c:1809 +#: app/preferences_dialog.c:1770 msgid "Tiny" msgstr "" -#: app/preferences_dialog.c:1813 +#: app/preferences_dialog.c:1774 #, fuzzy msgid "Huge" msgstr "OdcieЯ" -#: app/preferences_dialog.c:1817 +#: app/preferences_dialog.c:1778 msgid "Preview Size:" msgstr "Rozmiar podgl╠du:" -#: app/preferences_dialog.c:1830 +#: app/preferences_dialog.c:1791 msgid "Nav Preview Size:" msgstr "" -#: app/preferences_dialog.c:1840 +#: app/preferences_dialog.c:1801 msgid "Recent Documents List Size:" msgstr "" #. Indicators -#: app/preferences_dialog.c:1844 +#: app/preferences_dialog.c:1805 #, fuzzy msgid "Toolbox" msgstr "/NarzЙdzia" -#: app/preferences_dialog.c:1847 +#: app/preferences_dialog.c:1808 msgid "Display Brush, Pattern and Gradient Indicators" msgstr "" -#: app/preferences_dialog.c:1856 +#: app/preferences_dialog.c:1817 msgid "Dialog Behaviour" msgstr "" -#: app/preferences_dialog.c:1858 +#: app/preferences_dialog.c:1819 msgid "Navigation Window per Display" msgstr "" -#: app/preferences_dialog.c:1867 +#: app/preferences_dialog.c:1828 msgid "Info Window Follows Mouse" msgstr "" -#: app/preferences_dialog.c:1878 app/preferences_dialog.c:1880 +#: app/preferences_dialog.c:1839 app/preferences_dialog.c:1841 msgid "Help System" msgstr "System pomocy" -#: app/preferences_dialog.c:1890 +#: app/preferences_dialog.c:1851 msgid "Show Tool Tips" msgstr "Wy╤wietlanie podpowiedzi" -#: app/preferences_dialog.c:1900 +#: app/preferences_dialog.c:1861 msgid "Context Sensitive Help with \"F1\"" msgstr "" -#: app/preferences_dialog.c:1909 +#: app/preferences_dialog.c:1870 #, fuzzy msgid "Help Browser" msgstr "/Rozszerzenia/Przegl╠darka moduЁСw" -#: app/preferences_dialog.c:1921 +#: app/preferences_dialog.c:1882 #, fuzzy msgid "Internal" msgstr "Interfejs" -#: app/preferences_dialog.c:1922 +#: app/preferences_dialog.c:1883 msgid "Netscape" msgstr "" -#: app/preferences_dialog.c:1926 +#: app/preferences_dialog.c:1887 msgid "Help Browser to Use:" msgstr "" -#: app/preferences_dialog.c:1931 app/preferences_dialog.c:1933 +#: app/preferences_dialog.c:1892 app/preferences_dialog.c:1894 msgid "Image Windows" msgstr "" -#: app/preferences_dialog.c:1941 +#: app/preferences_dialog.c:1902 msgid "Appearance" msgstr "Wygl╠d" -#: app/preferences_dialog.c:1943 +#: app/preferences_dialog.c:1904 msgid "Use \"Dot for Dot\" by default" msgstr "" -#: app/preferences_dialog.c:1952 +#: app/preferences_dialog.c:1913 msgid "Resize Window on Zoom" msgstr "Zmiana rozmiaru okna przy powiЙkszeniu" -#: app/preferences_dialog.c:1961 +#: app/preferences_dialog.c:1922 msgid "Show Rulers" msgstr "Wy╤wietlanie linijek" -#: app/preferences_dialog.c:1970 +#: app/preferences_dialog.c:1931 msgid "Show Statusbar" msgstr "Wy╤wietlanie paska stanu" -#: app/preferences_dialog.c:1994 +#: app/preferences_dialog.c:1955 msgid "Marching Ants Speed:" msgstr "" #. Set the currently used string as "Custom" -#: app/preferences_dialog.c:2002 +#: app/preferences_dialog.c:1963 msgid "Custom" msgstr "" #. set some commonly used format strings -#: app/preferences_dialog.c:2008 +#: app/preferences_dialog.c:1969 msgid "Standard" msgstr "" -#: app/preferences_dialog.c:2013 +#: app/preferences_dialog.c:1974 msgid "Show zoom percentage" msgstr "Wy╤wietlanie procentowego powiЙkszenia" -#: app/preferences_dialog.c:2018 +#: app/preferences_dialog.c:1979 msgid "Show zoom ratio" msgstr "Wy╤wietlanie wspСЁczynnika powiЙkszenia" -#: app/preferences_dialog.c:2023 +#: app/preferences_dialog.c:1984 msgid "Show reversed zoom ratio" msgstr "Wy╤wietlanie odwrotnego wspСЁczynnika powiЙkszenia" -#: app/preferences_dialog.c:2034 +#: app/preferences_dialog.c:1995 msgid "Image Title Format:" msgstr "Format tytuЁu obrazu:" #. End of the title format string -#: app/preferences_dialog.c:2038 +#: app/preferences_dialog.c:1999 msgid "Pointer Movement Feedback" msgstr "" -#: app/preferences_dialog.c:2041 +#: app/preferences_dialog.c:2002 msgid "Perfect-but-Slow Pointer Tracking" msgstr "" -#: app/preferences_dialog.c:2050 +#: app/preferences_dialog.c:2011 msgid "Disable Cursor Updating" msgstr "" -#: app/preferences_dialog.c:2062 app/preferences_dialog.c:2064 +#: app/preferences_dialog.c:2023 app/preferences_dialog.c:2025 #: app/tools.c:1080 msgid "Tool Options" msgstr "Opcje narzЙdzi" -#: app/preferences_dialog.c:2072 +#: app/preferences_dialog.c:2033 msgid "Paint Options" msgstr "" -#: app/preferences_dialog.c:2075 +#: app/preferences_dialog.c:2036 msgid "Use Global Paint Options" msgstr "" -#: app/preferences_dialog.c:2090 app/preferences_dialog.c:2092 +#: app/preferences_dialog.c:2051 app/preferences_dialog.c:2053 msgid "Environment" msgstr "╕rodowisko" -#: app/preferences_dialog.c:2100 +#: app/preferences_dialog.c:2061 msgid "Resource Consumption" msgstr "Wykorzystywanie zasobСw" -#: app/preferences_dialog.c:2102 +#: app/preferences_dialog.c:2063 msgid "Conservative Memory Usage" msgstr "Konserwatywne wykorzystywanie zasobСw" -#: app/preferences_dialog.c:2130 +#: app/preferences_dialog.c:2091 msgid "Levels of Undo:" msgstr "Liczba poziomСw cofniЙФ:" -#: app/preferences_dialog.c:2174 -msgid "Tile Cache Size:" -msgstr "" - -#: app/preferences_dialog.c:2185 +#: app/preferences_dialog.c:2113 msgid "Number of Processors to Use:" msgstr "Liczba wykorzystywanych procesorСw:" -#: app/preferences_dialog.c:2189 app/transform_tool.c:215 +#: app/preferences_dialog.c:2117 app/transform_tool.c:215 msgid "Scaling" msgstr "Skalowanie" -#: app/preferences_dialog.c:2207 +#: app/preferences_dialog.c:2135 #, fuzzy msgid "Nearest Neighbor (Fast)" msgstr "Najbli©szy s╠siad" -#: app/preferences_dialog.c:2211 +#: app/preferences_dialog.c:2139 msgid "Cubic (Slow)" msgstr "" -#: app/preferences_dialog.c:2216 +#: app/preferences_dialog.c:2144 msgid "Interpolation Type:" msgstr "" -#: app/preferences_dialog.c:2219 +#: app/preferences_dialog.c:2147 #, fuzzy msgid "File Saving" msgstr "Zapis Pliku" -#: app/preferences_dialog.c:2236 app/preferences_dialog.c:2249 +#: app/preferences_dialog.c:2164 app/preferences_dialog.c:2177 msgid "Always" msgstr "Zawsze" -#: app/preferences_dialog.c:2237 +#: app/preferences_dialog.c:2165 msgid "Never" msgstr "Nigdy" -#: app/preferences_dialog.c:2241 +#: app/preferences_dialog.c:2169 msgid "Try to Write a Thumbnail File:" msgstr "" -#: app/preferences_dialog.c:2248 +#: app/preferences_dialog.c:2176 msgid "Only when Modified" msgstr "" -#: app/preferences_dialog.c:2253 +#: app/preferences_dialog.c:2181 msgid "\"File > Save\" Saves the Image:" msgstr "" -#: app/preferences_dialog.c:2259 +#: app/preferences_dialog.c:2187 msgid "Session Management" msgstr "Zarz╠dzanie sesj╠" -#: app/preferences_dialog.c:2261 +#: app/preferences_dialog.c:2189 msgid "Session" msgstr "Sesja" -#: app/preferences_dialog.c:2269 +#: app/preferences_dialog.c:2197 msgid "Window Positions" msgstr "Pozycje okien" -#: app/preferences_dialog.c:2271 +#: app/preferences_dialog.c:2199 msgid "Save Window Positions on Exit" msgstr "Zapis pozycji okien przed zakoЯczeniem" -#: app/preferences_dialog.c:2285 +#: app/preferences_dialog.c:2213 #, fuzzy msgid "Clear Saved Window Positions Now" msgstr "Wyczy╤Ф zapisane pozycje okien" -#: app/preferences_dialog.c:2293 +#: app/preferences_dialog.c:2221 msgid "Always Try to Restore Session" msgstr "Pedejmowanie prСby odtworzenia sesji" -#: app/preferences_dialog.c:2302 +#: app/preferences_dialog.c:2230 msgid "Devices" msgstr "Urz╠dzenia" -#: app/preferences_dialog.c:2304 +#: app/preferences_dialog.c:2232 msgid "Save Device Status on Exit" msgstr "Zapis stanu urz╠dzenia przed zakoЯczeniem" -#: app/preferences_dialog.c:2315 app/preferences_dialog.c:2317 +#: app/preferences_dialog.c:2243 app/preferences_dialog.c:2245 msgid "Monitor" msgstr "Monitor" -#: app/preferences_dialog.c:2325 +#: app/preferences_dialog.c:2253 msgid "Get Monitor Resolution" msgstr "Pobieranie rozdzielczo╤ci monitora" -#: app/preferences_dialog.c:2333 +#: app/preferences_dialog.c:2261 #, c-format msgid "(Currently %d x %d dpi)" msgstr "(Aktualnie %d x %d dpi)" -#: app/preferences_dialog.c:2384 +#: app/preferences_dialog.c:2313 msgid "From X Server" msgstr "Od X-serwera" -#: app/preferences_dialog.c:2399 +#: app/preferences_dialog.c:2328 msgid "Manually:" msgstr "RЙcznie:" -#: app/preferences_dialog.c:2412 app/preferences_dialog.c:2414 +#: app/preferences_dialog.c:2341 app/preferences_dialog.c:2343 msgid "Directories" msgstr "Katalogi" -#: app/preferences_dialog.c:2431 +#: app/preferences_dialog.c:2360 msgid "Temp Dir:" msgstr "Katalog tymczasowy:" -#: app/preferences_dialog.c:2431 +#: app/preferences_dialog.c:2360 msgid "Select Temp Dir" msgstr "WybСr katalogu tymczasowego" -#: app/preferences_dialog.c:2432 +#: app/preferences_dialog.c:2361 msgid "Swap Dir:" msgstr "Katalog wymiany:" -#: app/preferences_dialog.c:2432 -msgid "Select Swap Dir" -msgstr "WybСr katalogu wymiany" - -#: app/preferences_dialog.c:2468 +#: app/preferences_dialog.c:2397 msgid "Brushes Directories" msgstr "Katalogi pЙdzli" -#: app/preferences_dialog.c:2470 +#: app/preferences_dialog.c:2399 msgid "Select Brushes Dir" msgstr "WybСr katalogu pЙdzli" -#: app/preferences_dialog.c:2472 +#: app/preferences_dialog.c:2401 msgid "Generated Brushes" msgstr "Utworzone pЙdzle" -#: app/preferences_dialog.c:2472 +#: app/preferences_dialog.c:2401 msgid "Generated Brushes Directories" msgstr "Utworzone katalogi pЙdzli" -#: app/preferences_dialog.c:2474 +#: app/preferences_dialog.c:2403 msgid "Select Generated Brushes Dir" msgstr "WybСr katalogu utworzonych pЙdzli" -#: app/preferences_dialog.c:2476 +#: app/preferences_dialog.c:2405 msgid "Patterns Directories" msgstr "Katalogi wzorСw" -#: app/preferences_dialog.c:2478 +#: app/preferences_dialog.c:2407 msgid "Select Patterns Dir" msgstr "WybСr katalogu wzorСw" -#: app/preferences_dialog.c:2480 +#: app/preferences_dialog.c:2409 msgid "Palettes Directories" msgstr "Katalogi palet" -#: app/preferences_dialog.c:2482 +#: app/preferences_dialog.c:2411 msgid "Select Palettes Dir" msgstr "WybСr katalogu palet" -#: app/preferences_dialog.c:2484 +#: app/preferences_dialog.c:2413 msgid "Gradients Directories" msgstr "Katalogi gradientСw" -#: app/preferences_dialog.c:2486 +#: app/preferences_dialog.c:2415 msgid "Select Gradients Dir" msgstr "WybСr katalogu gradientСw" -#: app/preferences_dialog.c:2488 +#: app/preferences_dialog.c:2417 msgid "Plug-Ins" msgstr "Wtyczki" -#: app/preferences_dialog.c:2488 +#: app/preferences_dialog.c:2417 msgid "Plug-Ins Directories" msgstr "Katalogi wtyczek" -#: app/preferences_dialog.c:2490 +#: app/preferences_dialog.c:2419 msgid "Select Plug-Ins Dir" msgstr "WybСr katalogu wtyczek" -#: app/preferences_dialog.c:2492 +#: app/preferences_dialog.c:2421 msgid "Modules" msgstr "ModuЁy" -#: app/preferences_dialog.c:2492 +#: app/preferences_dialog.c:2421 msgid "Modules Directories" msgstr "Katalogi moduЁСw" -#: app/preferences_dialog.c:2494 +#: app/preferences_dialog.c:2423 msgid "Select Modules Dir" msgstr "WybСr katalogu moduЁСw" @@ -5172,67 +5158,67 @@ msgstr "Zaznaczenie: ZAST msgid "Selection: " msgstr "Zaznaczenie: " -#: app/resize.c:154 +#: app/resize.c:156 msgid "Scale Layer" msgstr "Skaluj warstwЙ" -#: app/resize.c:156 app/resize.c:181 app/tool_options.c:774 +#: app/resize.c:158 app/resize.c:183 app/tool_options.c:774 msgid "Size" msgstr "Rozmiar" -#: app/resize.c:160 +#: app/resize.c:162 #, fuzzy msgid "Scale Image" msgstr "Zapisz obraz" -#: app/resize.c:162 +#: app/resize.c:164 msgid "Pixel Dimensions" msgstr "Wymiary piksela" -#: app/resize.c:172 +#: app/resize.c:174 msgid "Set Layer Boundary Size" msgstr "" -#: app/resize.c:177 +#: app/resize.c:179 msgid "Set Canvas Size" msgstr "" #. the original width & height labels -#: app/resize.c:234 app/scale_tool.c:77 +#: app/resize.c:236 app/scale_tool.c:77 msgid "Original Width:" msgstr "Pierwotna szeroko╤Ф:" #. the new size labels -#: app/resize.c:259 app/resize.c:504 +#: app/resize.c:261 app/resize.c:506 msgid "New Width:" msgstr "Nowa szeroko╤Ф: " #. the scale ratio labels -#: app/resize.c:324 +#: app/resize.c:326 msgid "Ratio X:" msgstr "" #. the x and y offset labels -#: app/resize.c:409 +#: app/resize.c:411 msgid "X:" msgstr "X:" -#: app/resize.c:490 +#: app/resize.c:492 msgid "Print Size & Display Unit" msgstr "" -#: app/resize.c:1252 +#: app/resize.c:1254 msgid "Scale Error: Both width and height must be greater than zero." msgstr "BЁad przy skalowaniu: Szeroko╤Ф i wysoko╤Ф musz╠ byФ dodatnie." -#: app/resize.c:1334 +#: app/resize.c:1336 msgid "" "The chosen image size will shrink\n" "some layers completely away.\n" "Is this what you want?" msgstr "" -#: app/resize.c:1338 +#: app/resize.c:1340 msgid "Layer Too Small" msgstr "" @@ -5281,7 +5267,7 @@ msgstr "" msgid "Text Tool" msgstr "NarzЙdzie tekstowe" -#: app/text_tool.c:162 app/tool_options.c:233 +#: app/text_tool.c:162 app/tool_options.c:232 msgid "Antialiasing" msgstr "Antyaliasing" @@ -5354,109 +5340,109 @@ msgid "" "GIMP data directory. Please check your installation." msgstr "" -#: app/tool_options.c:122 +#: app/tool_options.c:121 msgid "This tool has no options." msgstr "To narzЙdzie nie ma opcji." -#: app/tool_options.c:146 +#: app/tool_options.c:145 #, fuzzy msgid "Rectangular Selection" msgstr "Opcje zaznaczenia prostok╠tnego" -#: app/tool_options.c:148 +#: app/tool_options.c:147 #, fuzzy msgid "Elliptical Selection" msgstr "Opcje zaznaczenia eliptycznego" -#: app/tool_options.c:150 +#: app/tool_options.c:149 #, fuzzy msgid "Free-Hand Selection" msgstr "Opcje zaznaczenia odrЙcznego" -#: app/tool_options.c:152 +#: app/tool_options.c:151 #, fuzzy msgid "Fuzzy Selection" msgstr "Z zaznaczenia" -#: app/tool_options.c:154 +#: app/tool_options.c:153 #, fuzzy msgid "Bezier Selection" msgstr "Zaznaczenie krzyw╠ Beziera" -#: app/tool_options.c:156 app/tools.c:178 +#: app/tool_options.c:155 app/tools.c:178 msgid "Intelligent Scissors" msgstr "Inteligentne no©yce" -#: app/tool_options.c:158 +#: app/tool_options.c:157 #, fuzzy msgid "By-Color Selection" msgstr "Selekcja Kolorem" -#: app/tool_options.c:189 +#: app/tool_options.c:188 msgid "Feather" msgstr "WygЁad╪" -#: app/tool_options.c:297 +#: app/tool_options.c:296 #, fuzzy msgid "Fixed Size / Aspect Ratio" msgstr "WspСЁczynnik Proporcji:" -#: app/tool_options.c:363 +#: app/tool_options.c:362 msgid "Unit:" msgstr "Jednostka:" -#: app/tool_options.c:448 app/tools.c:376 +#: app/tool_options.c:447 app/tools.c:376 msgid "Bucket Fill" msgstr "WypeЁnianie kubeЁkiem" -#: app/tool_options.c:450 +#: app/tool_options.c:449 #, fuzzy msgid "Blend Tool" msgstr "Zlewanie: " -#: app/tool_options.c:452 app/tools.c:412 +#: app/tool_options.c:451 app/tools.c:412 msgid "Pencil" msgstr "OЁСwek" -#: app/tool_options.c:454 app/tools.c:430 +#: app/tool_options.c:453 app/tools.c:430 msgid "Paintbrush" msgstr "Malowanie" -#: app/tool_options.c:456 app/tools.c:448 +#: app/tool_options.c:455 app/tools.c:448 msgid "Eraser" msgstr "Gumka" -#: app/tool_options.c:458 app/tools.c:466 +#: app/tool_options.c:457 app/tools.c:466 msgid "Airbrush" msgstr "Aerograf" -#: app/tool_options.c:460 +#: app/tool_options.c:459 #, fuzzy msgid "Clone Tool" msgstr "Opcje narzЙdzia klonowania" -#: app/tool_options.c:462 +#: app/tool_options.c:461 msgid "Convolver" msgstr "" -#: app/tool_options.c:464 +#: app/tool_options.c:463 msgid "Ink Tool" msgstr "" -#: app/tool_options.c:466 app/tools.c:538 app/tools.c:544 +#: app/tool_options.c:465 app/tools.c:538 app/tools.c:544 msgid "Dodge or Burn" msgstr "" -#: app/tool_options.c:468 +#: app/tool_options.c:467 #, fuzzy msgid "Smudge Tool" msgstr "NarzЙdzie pomiarСw" -#: app/tool_options.c:583 +#: app/tool_options.c:582 msgid "Incremental" msgstr "" -#: app/tool_options.c:689 +#: app/tool_options.c:688 #, fuzzy msgid "Pressure Sensitivity" msgstr "CzuЁo╤Ф nacisku" @@ -6198,6 +6184,127 @@ msgstr "" msgid "Color History" msgstr "" +#~ msgid "Custom from Editor" +#~ msgstr "WЁasny z edytora" + +#~ msgid "For a proper GIMP installation, a subdirectory called\n" +#~ msgstr "" +#~ "Aby GIMP mСgЁ funkcjonowaФ poprawnie, musi zostaФ utworzony katalog\n" + +#~ msgid "Install" +#~ msgstr "Instaluj" + +#~ msgid "Ignore" +#~ msgstr "Ignoruj" + +#, fuzzy +#~ msgid "-*-helvetica-medium-o-normal-*-*-100-*-*-*-*-*-*" +#~ msgstr "-Adobe-Helvetica-Medium-R-Normal--*-140-*-*-*-*-iso8859-2" + +#, fuzzy +#~ msgid "-*-helvetica-medium-r-normal-*-*-100-*-*-*-*-*-*,*" +#~ msgstr "-Adobe-Helvetica-Medium-R-Normal--*-140-*-*-*-*-iso8859-2" + +#~ msgid "Installation Log" +#~ msgstr "Dziennik instalacji" + +#, fuzzy +#~ msgid "-*-helvetica-medium-r-normal-*-*-120-*-*-*-*-*-*,*" +#~ msgstr "-Adobe-Helvetica-Medium-R-Normal--*-140-*-*-*-*-iso8859-2" + +#~ msgid "" +#~ "\n" +#~ "Installation successful!\n" +#~ msgstr "" +#~ "\n" +#~ "InstalacjЙ zakoЯczono pomy╤lnie!\n" + +#~ msgid "/File/Dialogs" +#~ msgstr "/Plik/Okna dialogowe" + +#~ msgid "/File" +#~ msgstr "/Plik" + +#~ msgid "/Edit" +#~ msgstr "/Edycja" + +#, fuzzy +#~ msgid "/Edit/Buffer" +#~ msgstr "/Edycja/tearoff1" + +#~ msgid "/Select" +#~ msgstr "/Zaznacz" + +#~ msgid "/View" +#~ msgstr "/Widok" + +#~ msgid "/View/Zoom" +#~ msgstr "/Widok/PowiЙksz" + +#~ msgid "/Image" +#~ msgstr "/Obraz" + +#~ msgid "/Image/Mode" +#~ msgstr "/Obraz/Tryb" + +#~ msgid "/Image/Colors" +#~ msgstr "/Obraz/Kolory" + +#, fuzzy +#~ msgid "/Image/Colors/Auto" +#~ msgstr "/Obraz/Kolory" + +#~ msgid "/Image/Alpha" +#~ msgstr "/Obraz/Alfa" + +#, fuzzy +#~ msgid "/Image/Transforms" +#~ msgstr "/Obraz/PrzeksztaЁcenia" + +#~ msgid "/Layers" +#~ msgstr "/Warstwy" + +#, fuzzy +#~ msgid "/Layers/Stack" +#~ msgstr "/Warstwy/Stos" + +#~ msgid "/Tools" +#~ msgstr "/NarzЙdzia" + +#, fuzzy +#~ msgid "/Tools/Select Tools" +#~ msgstr "/NarzЙdzia/Zaznaczenie prostok╠tne" + +#, fuzzy +#~ msgid "/Tools/Transform Tools" +#~ msgstr "/NarzЙdzia/PrzeksztaЁФ" + +#, fuzzy +#~ msgid "/Tools/Paint Tools" +#~ msgstr "/NarzЙdzia/Malowanie" + +#, fuzzy +#~ msgid "/Dialogs" +#~ msgstr "/Okna dialogowe" + +#~ msgid "/Filters" +#~ msgstr "/Filtry" + +#~ msgid "/Script-Fu" +#~ msgstr "/Script-Fu" + +#~ msgid "/Stack" +#~ msgstr "/Stos" + +#~ msgid "Bytes" +#~ msgstr "BajtСw" + +#~ msgid "KiloBytes" +#~ msgstr "KilobajtСw" + +#~ msgid "MegaBytes" +#~ msgstr "MegabajtСw" + #~ msgid "Fill Options" #~ msgstr "Opcje wypeЁnienia" diff --git a/po/ru.po b/po/ru.po index 8d1587e08c..ac2eda2c39 100644 --- a/po/ru.po +++ b/po/ru.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Gimp-1.1.14\n" -"POT-Creation-Date: 2000-03-03 17:47-0800\n" +"POT-Creation-Date: 2000-03-14 23:09+0100\n" "PO-Revision-Date: 1999-12-23 19:40+03:00\n" "Last-Translator: Valek Filippov \n" "Language-Team: Russian \n" @@ -63,45 +63,45 @@ msgstr " msgid "GIMP Startup" msgstr "Запуск GIMP" -#: app/app_procs.c:479 app/gimprc.c:432 +#: app/app_procs.c:479 app/gimprc.c:448 #, c-format msgid "parsing \"%s\"\n" msgstr "синтаксический анализ \"%s\"\n" #. initialize the xcf file format routines -#: app/app_procs.c:539 +#: app/app_procs.c:541 msgid "Looking for data files" msgstr "Поиск файлов данных" -#: app/app_procs.c:539 +#: app/app_procs.c:541 msgid "Parasites" msgstr "Паразиты (FIX?)" #. initialize the global parasite table -#: app/app_procs.c:541 app/internal_procs.c:71 app/preferences_dialog.c:2468 +#: app/app_procs.c:543 app/internal_procs.c:71 app/preferences_dialog.c:2397 msgid "Brushes" msgstr "Кисти" #. initialize the list of gimp brushes -#: app/app_procs.c:543 app/internal_procs.c:143 app/preferences_dialog.c:2476 +#: app/app_procs.c:545 app/internal_procs.c:143 app/preferences_dialog.c:2405 msgid "Patterns" msgstr "Шаблоны" #. initialize the list of gimp patterns -#: app/app_procs.c:545 app/preferences_dialog.c:2480 +#: app/app_procs.c:547 app/preferences_dialog.c:2409 msgid "Palettes" msgstr "Палитры" #. initialize the list of gimp palettes -#: app/app_procs.c:547 app/internal_procs.c:113 app/preferences_dialog.c:2484 +#: app/app_procs.c:549 app/internal_procs.c:113 app/preferences_dialog.c:2413 msgid "Gradients" msgstr "Градиенты" -#: app/app_procs.c:735 +#: app/app_procs.c:737 msgid "Really Quit?" msgstr "Хотите выйти?" -#: app/app_procs.c:739 +#: app/app_procs.c:741 msgid "" "Some files unsaved.\n" "\n" @@ -111,21 +111,21 @@ msgstr "" "\n" " Выйти из GIMP'а?" -#: app/app_procs.c:740 app/install.c:272 app/install.c:430 +#: app/app_procs.c:742 msgid "Quit" msgstr "Выход" -#: app/app_procs.c:740 app/brightness_contrast.c:218 app/channel_ops.c:93 +#: app/app_procs.c:742 app/brightness_contrast.c:218 app/channel_ops.c:93 #: app/channels_dialog.c:2463 app/channels_dialog.c:2637 #: app/color_balance.c:275 app/color_notebook.c:125 app/convert.c:506 #: app/curves.c:559 app/file_new_dialog.c:207 app/file_new_dialog.c:357 #: app/gdisplay_color_ui.c:129 app/gdisplay_ops.c:346 app/gimpprogress.c:112 -#: app/global_edit.c:739 app/gradient.c:1769 app/gradient.c:4839 -#: app/gradient.c:5400 app/hue_saturation.c:377 app/interface.c:984 -#: app/layers_dialog.c:3326 app/layers_dialog.c:3517 app/layers_dialog.c:3617 -#: app/layers_dialog.c:3889 app/levels.c:341 app/palette.c:1826 -#: app/posterize.c:201 app/preferences_dialog.c:1469 app/qmask.c:281 -#: app/resize.c:193 app/resize.c:1343 app/threshold.c:275 +#: app/global_edit.c:739 app/gradient.c:1769 app/gradient.c:4841 +#: app/gradient.c:5402 app/hue_saturation.c:377 app/install.c:532 +#: app/interface.c:984 app/layers_dialog.c:3326 app/layers_dialog.c:3517 +#: app/layers_dialog.c:3617 app/layers_dialog.c:3889 app/levels.c:341 +#: app/palette.c:1826 app/posterize.c:201 app/preferences_dialog.c:1434 +#: app/qmask.c:281 app/resize.c:195 app/resize.c:1345 app/threshold.c:275 #: modules/cdisplay_gamma.c:358 msgid "Cancel" msgstr "Отмена" @@ -146,123 +146,124 @@ msgstr " msgid "Paintbrush operation failed." msgstr "Действие кисти не удалось." -#: app/blend.c:272 +#: app/blend.c:294 msgid "Offset:" msgstr "Смещение:" -#: app/blend.c:283 +#: app/blend.c:305 msgid "FG to BG (RGB)" msgstr "Основной в фоновой (RGB)" -#: app/blend.c:284 +#: app/blend.c:306 msgid "FG to BG (HSV)" msgstr "Основной в фоновой (HSV)" -#: app/blend.c:285 +#: app/blend.c:307 msgid "FG to Transparent" msgstr "Основной в прозрачный" -#: app/blend.c:286 -msgid "Custom from Editor" -msgstr "Выбранная из редактора" +#: app/blend.c:308 +#, fuzzy +msgid "Custom Gradient" +msgstr "Скопировать градиент" -#: app/blend.c:290 +#: app/blend.c:312 msgid "Blend:" msgstr "Бленда:" -#: app/blend.c:298 app/gradient.c:533 app/preferences_dialog.c:2209 +#: app/blend.c:320 app/gradient.c:533 app/preferences_dialog.c:2137 msgid "Linear" msgstr "Линейный" -#: app/blend.c:299 +#: app/blend.c:321 msgid "Bi-Linear" msgstr "Билинейный" -#: app/blend.c:300 +#: app/blend.c:322 msgid "Radial" msgstr "Радиальный" -#: app/blend.c:301 +#: app/blend.c:323 msgid "Square" msgstr "Квадратный" -#: app/blend.c:302 +#: app/blend.c:324 msgid "Conical (symmetric)" msgstr "Конический (симметричный)" -#: app/blend.c:303 +#: app/blend.c:325 msgid "Conical (asymmetric)" msgstr "Конический (асимметричный)" -#: app/blend.c:304 +#: app/blend.c:326 msgid "Shapeburst (angular)" msgstr "По форме (угловой)" -#: app/blend.c:305 +#: app/blend.c:327 msgid "Shapeburst (spherical)" msgstr "По форме (сферический)" -#: app/blend.c:306 +#: app/blend.c:328 msgid "Shapeburst (dimpled)" msgstr "По форме (ямочкой :-)" -#: app/blend.c:307 +#: app/blend.c:329 msgid "Spiral (clockwise)" msgstr "Спиральный (по часовой)" -#: app/blend.c:308 +#: app/blend.c:330 msgid "Spiral (anticlockwise)" msgstr "Спиральный (против часовой)" -#: app/blend.c:312 +#: app/blend.c:334 msgid "Gradient:" msgstr "Градиент:" -#: app/blend.c:320 app/preferences_dialog.c:1808 +#: app/blend.c:342 app/preferences_dialog.c:1769 msgid "None" msgstr "Нет" -#: app/blend.c:321 +#: app/blend.c:343 msgid "Sawtooth Wave" msgstr "Пилообразная волна" -#: app/blend.c:322 +#: app/blend.c:344 msgid "Triangular Wave" msgstr "Треугольная волна" -#: app/blend.c:326 +#: app/blend.c:348 msgid "Repeat:" msgstr "Повтор:" -#: app/blend.c:345 +#: app/blend.c:367 msgid "Adaptive Supersampling" msgstr "" -#: app/blend.c:373 +#: app/blend.c:395 msgid "Max Depth:" msgstr "Макс. глубина:" -#: app/blend.c:386 app/bucket_fill.c:127 app/fuzzy_select.c:657 +#: app/blend.c:408 app/bucket_fill.c:127 app/fuzzy_select.c:661 msgid "Threshold:" msgstr "Порог:" -#: app/blend.c:413 +#: app/blend.c:435 msgid "Blend: Invalid for indexed images." msgstr "Бленда: не годится для индексированных изображений." -#: app/blend.c:438 +#: app/blend.c:460 msgid "Blend: 0, 0" msgstr "Бленда: 0, 0" -#: app/blend.c:501 +#: app/blend.c:523 msgid "Blend operation failed." msgstr "Действие бленды не удалось" -#: app/blend.c:507 +#: app/blend.c:529 msgid "Blending..." msgstr "Смешивание..." -#: app/blend.c:585 app/blend.c:595 +#: app/blend.c:607 app/blend.c:617 msgid "Blend: " msgstr "Бленда: " @@ -281,13 +282,13 @@ msgstr " #: app/gdisplay_color_ui.c:127 app/gimpui.c:122 app/hue_saturation.c:373 #: app/layers_dialog.c:3324 app/layers_dialog.c:3515 app/layers_dialog.c:3615 #: app/layers_dialog.c:3887 app/levels.c:337 app/module_db.c:281 -#: app/posterize.c:197 app/preferences_dialog.c:1465 app/qmask.c:279 -#: app/resize.c:191 app/resize.c:1343 app/threshold.c:271 +#: app/posterize.c:197 app/preferences_dialog.c:1430 app/qmask.c:279 +#: app/resize.c:193 app/resize.c:1345 app/threshold.c:271 #: modules/cdisplay_gamma.c:351 msgid "OK" msgstr "Да" -#: app/brightness_contrast.c:216 app/by_color_select.c:634 +#: app/brightness_contrast.c:216 app/by_color_select.c:687 #: app/color_balance.c:273 app/curves.c:557 app/file_new_dialog.c:355 #: app/hue_saturation.c:375 app/levels.c:339 app/posterize.c:199 #: app/threshold.c:273 app/tools.c:1086 app/transform_core.c:412 @@ -317,7 +318,7 @@ msgid "Brush Editor" msgstr "Редактор кистей" #. The close button -#: app/brush_edit.c:216 app/brush_select.c:278 app/by_color_select.c:636 +#: app/brush_edit.c:216 app/brush_select.c:278 app/by_color_select.c:689 #: app/color_notebook.c:122 app/color_picker.c:297 app/colormap_dialog.i.c:170 #: app/crop.c:1054 app/devices.c:755 app/docindexif.c:105 #: app/errorconsole.c:281 app/gdisplay_ops.c:346 app/gradient.c:801 @@ -331,7 +332,7 @@ msgid "Close" msgstr "Закрыть" #. the feather radius scale -#: app/brush_edit.c:276 app/color_picker.c:181 app/tool_options.c:200 +#: app/brush_edit.c:276 app/color_picker.c:181 app/tool_options.c:199 msgid "Radius:" msgstr "Радиус:" @@ -361,11 +362,11 @@ msgstr " msgid "No Brushes available" msgstr "Нет доступных кистей" -#: app/brush_select.c:445 app/layers_dialog.c:372 app/tool_options.c:505 +#: app/brush_select.c:445 app/layers_dialog.c:372 app/tool_options.c:504 msgid "Opacity:" msgstr "Непрозрачность:" -#: app/brush_select.c:453 app/layers_dialog.c:324 app/tool_options.c:529 +#: app/brush_select.c:453 app/layers_dialog.c:324 app/tool_options.c:528 msgid "Mode:" msgstr "Режим:" @@ -399,7 +400,7 @@ msgstr "" msgid "Sorry, this brush can't be deleted." msgstr "" -#: app/bucket_fill.c:147 app/color_picker.c:156 app/tool_options.c:274 +#: app/bucket_fill.c:147 app/color_picker.c:156 app/tool_options.c:273 msgid "Sample Merged" msgstr "" @@ -429,36 +430,36 @@ msgid "No available patterns for this operation." msgstr "Нет доступных шаблонов для этой операции." #. The shell and main vbox -#: app/by_color_select.c:629 +#: app/by_color_select.c:682 msgid "By Color Selection" msgstr "Выбор по цвету" -#: app/by_color_select.c:685 +#: app/by_color_select.c:738 msgid "Inactive" msgstr "Недействующий" -#: app/by_color_select.c:693 +#: app/by_color_select.c:746 msgid "Selection Mode" msgstr "Режим выделения" -#: app/by_color_select.c:695 app/paint_funcs.c:100 +#: app/by_color_select.c:748 app/paint_funcs.c:100 msgid "Replace" msgstr "Заменить" -#: app/by_color_select.c:697 app/colormap_dialog.i.c:127 +#: app/by_color_select.c:750 app/colormap_dialog.i.c:127 #: app/gdisplay_color_ui.c:114 msgid "Add" msgstr "Добавить" -#: app/by_color_select.c:699 app/layers_dialog.c:340 app/tool_options.c:904 +#: app/by_color_select.c:752 app/layers_dialog.c:340 app/tool_options.c:904 msgid "Subtract" msgstr "Вычесть" -#: app/by_color_select.c:701 +#: app/by_color_select.c:754 msgid "Intersect" msgstr "Пересечь" -#: app/by_color_select.c:713 +#: app/by_color_select.c:766 msgid "Fuzziness Threshold" msgstr "Порог распыления" @@ -476,7 +477,7 @@ msgstr "%s msgid "Selection Mask" msgstr "Быстрая маска" -#: app/channel_ops.c:85 app/resize.c:392 +#: app/channel_ops.c:85 app/resize.c:394 msgid "Offset" msgstr "Смещение" @@ -486,8 +487,8 @@ msgid "Offset X:" msgstr "Смещение по X:" #: app/channel_ops.c:115 app/crop.c:1063 app/file_new_dialog.c:530 -#: app/resize.c:330 app/resize.c:415 app/resize.c:573 app/rotate_tool.c:106 -#: app/scale_tool.c:100 app/shear_tool.c:82 +#: app/install.c:1108 app/resize.c:332 app/resize.c:417 app/resize.c:575 +#: app/rotate_tool.c:106 app/scale_tool.c:100 app/shear_tool.c:82 msgid "Y:" msgstr "Y:" @@ -496,12 +497,12 @@ msgstr "Y:" msgid "Wrap Around" msgstr "Заворачивание" -#: app/channel_ops.c:174 app/image_new.c:69 app/image_new.c:223 +#: app/channel_ops.c:174 app/image_new.c:70 app/image_new.c:234 #: app/layers_dialog.c:3422 msgid "Background" msgstr "Фон" -#: app/channel_ops.c:175 app/image_new.c:79 app/layers_dialog.c:3424 +#: app/channel_ops.c:175 app/image_new.c:80 app/layers_dialog.c:3424 msgid "Transparent" msgstr "Прозрачное" @@ -680,19 +681,19 @@ msgstr " msgid "Update Active Color" msgstr "Обновить действующий цвет" -#: app/color_picker.c:255 app/color_picker.c:265 +#: app/color_picker.c:255 app/color_picker.c:264 msgid "Red:" msgstr "Красный:" -#: app/color_picker.c:256 app/color_picker.c:266 +#: app/color_picker.c:256 app/color_picker.c:265 msgid "Green:" msgstr "Зеленый:" -#: app/color_picker.c:257 app/color_picker.c:267 +#: app/color_picker.c:257 app/color_picker.c:266 msgid "Blue:" msgstr "Синий:" -#: app/color_picker.c:258 app/color_picker.c:264 app/color_picker.c:273 +#: app/color_picker.c:258 app/color_picker.c:267 app/color_picker.c:273 msgid "Alpha:" msgstr "Альфа-канал:" @@ -713,13 +714,13 @@ msgstr " msgid "Intensity:" msgstr "Интенсивность:" -#: app/color_picker.c:633 app/color_picker.c:634 app/color_picker.c:635 -#: app/color_picker.c:636 app/color_picker.c:637 app/color_picker.c:638 -#: app/color_picker.c:639 app/color_picker.c:657 app/color_picker.c:672 -#: app/color_picker.c:690 app/info_window.c:185 app/info_window.c:191 -#: app/info_window.c:197 app/info_window.c:203 app/info_window.c:422 -#: app/info_window.c:423 app/info_window.c:424 app/info_window.c:425 -#: app/info_window.c:447 +#: app/color_picker.c:626 app/color_picker.c:627 app/color_picker.c:628 +#: app/color_picker.c:629 app/color_picker.c:630 app/color_picker.c:631 +#: app/color_picker.c:632 app/color_picker.c:644 app/color_picker.c:651 +#: app/color_picker.c:669 app/color_picker.c:684 app/info_window.c:185 +#: app/info_window.c:191 app/info_window.c:197 app/info_window.c:203 +#: app/info_window.c:422 app/info_window.c:423 app/info_window.c:424 +#: app/info_window.c:425 app/info_window.c:447 msgid "N/A" msgstr "Н/Д" @@ -933,13 +934,13 @@ msgstr " #. the pixel size labels #: app/crop.c:1076 app/file_new_dialog.c:389 app/file_new_dialog.c:407 -#: app/tool_options.c:334 +#: app/tool_options.c:333 msgid "Width:" msgstr "Ширина:" #: app/crop.c:1079 app/file_new_dialog.c:395 app/file_new_dialog.c:413 -#: app/layers_dialog.c:3363 app/resize.c:240 app/resize.c:265 app/resize.c:510 -#: app/scale_tool.c:79 app/scale_tool.c:86 app/tool_options.c:350 +#: app/layers_dialog.c:3363 app/resize.c:242 app/resize.c:267 app/resize.c:512 +#: app/scale_tool.c:79 app/scale_tool.c:86 app/tool_options.c:349 msgid "Height:" msgstr "Высота:" @@ -991,7 +992,7 @@ msgid "Load" msgstr "Загрузить" #: app/curves.c:704 app/devices.c:753 app/levels.c:608 app/palette.c:2068 -#: app/preferences_dialog.c:357 app/preferences_dialog.c:1467 +#: app/preferences_dialog.c:357 app/preferences_dialog.c:1432 msgid "Save" msgstr "Сохранить" @@ -1024,7 +1025,7 @@ msgstr " msgid "Device Status" msgstr "Состояние устройства" -#: app/disp_callbacks.c:755 app/global_edit.c:297 app/global_edit.c:303 +#: app/disp_callbacks.c:760 app/global_edit.c:297 app/global_edit.c:303 #: app/global_edit.c:375 msgid "Pasted Layer" msgstr "Вставленный слой" @@ -1206,17 +1207,17 @@ msgstr " msgid "New Image" msgstr "Новое изображение" -#: app/file_new_dialog.c:453 app/preferences_dialog.c:1540 -#: app/preferences_dialog.c:1577 +#: app/file_new_dialog.c:453 app/install.c:1093 app/preferences_dialog.c:1505 +#: app/preferences_dialog.c:1542 msgid "Pixels" msgstr "Пикселей" #. the resolution labels -#: app/file_new_dialog.c:524 app/resize.c:567 +#: app/file_new_dialog.c:524 app/resize.c:569 msgid "Resolution X:" msgstr "Разрешение по X:" -#: app/file_new_dialog.c:545 app/resize.c:588 +#: app/file_new_dialog.c:545 app/resize.c:590 msgid "pixels/%a" msgstr "пикселей/%a" @@ -1250,7 +1251,7 @@ msgstr "" msgid "No Selection." msgstr "Без выделения." -#: app/fileops.c:418 app/fileops.c:1624 app/fileops.c:1731 +#: app/fileops.c:418 app/fileops.c:1629 app/fileops.c:1736 #, fuzzy, c-format msgid "Save failed: %s" msgstr "Не удалось сохранить: " @@ -1277,62 +1278,62 @@ msgstr "" msgid "Revert failed." msgstr "Не удалось восстановить." -#: app/fileops.c:1240 +#: app/fileops.c:1245 #, fuzzy msgid "(This thumbnail may be out of date)" msgstr "(это изображение может быть устаревшим)" -#: app/fileops.c:1241 +#: app/fileops.c:1246 #, fuzzy msgid "(No Information)" msgstr "(нет информации)" -#: app/fileops.c:1251 +#: app/fileops.c:1256 msgid "(Thumbnail saving is disabled)" msgstr "" -#: app/fileops.c:1255 +#: app/fileops.c:1260 #, fuzzy msgid "(Could not write thumbnail file)" msgstr "Пытаться записать файл эскиза:" -#: app/fileops.c:1259 +#: app/fileops.c:1264 msgid "(Thumbnail file not written)" msgstr "" -#: app/fileops.c:1276 +#: app/fileops.c:1281 #, fuzzy msgid "No preview available" msgstr "предпросмотр не доступен" -#: app/fileops.c:1394 +#: app/fileops.c:1399 msgid "(could not make preview)" msgstr "(невозможно выполнить предпросмотр)" -#: app/fileops.c:1467 app/fileops.c:1546 +#: app/fileops.c:1472 app/fileops.c:1551 #, fuzzy, c-format msgid "Open failed: %s" msgstr "Не удалось открыть: " -#: app/fileops.c:1602 +#: app/fileops.c:1607 #, c-format msgid "%s is an irregular file (%s)" msgstr "%s - неподходящий файл (%s)" -#: app/fileops.c:1670 +#: app/fileops.c:1675 #, c-format msgid "%s exists, overwrite?" msgstr "%s существует, переписать?" -#: app/fileops.c:1674 +#: app/fileops.c:1679 msgid "File Exists!" msgstr "Файл существует!" -#: app/fileops.c:1680 +#: app/fileops.c:1685 msgid "Yes" msgstr "Да" -#: app/fileops.c:1682 +#: app/fileops.c:1687 msgid "No" msgstr "Нет" @@ -1341,13 +1342,13 @@ msgstr " msgid "Flip Tool" msgstr "Опции зеркала" -#: app/flip_tool.c:95 app/preferences_dialog.c:1591 -#: app/preferences_dialog.c:2355 +#: app/flip_tool.c:95 app/preferences_dialog.c:1556 +#: app/preferences_dialog.c:2284 msgid "Horizontal" msgstr "Горизонтальное" -#: app/flip_tool.c:97 app/preferences_dialog.c:1593 -#: app/preferences_dialog.c:2357 +#: app/flip_tool.c:97 app/preferences_dialog.c:1558 +#: app/preferences_dialog.c:2286 msgid "Vertical" msgstr "Вертикальное" @@ -1373,7 +1374,7 @@ msgstr "" msgid "RGB-empty" msgstr "RGB-пусто" -#: app/gdisplay.c:217 app/image_new.c:53 app/preferences_dialog.c:1637 +#: app/gdisplay.c:217 app/image_new.c:54 app/preferences_dialog.c:1602 msgid "RGB" msgstr "RGB" @@ -1507,23 +1508,23 @@ msgstr "" msgid "Failed to load pixmap brush." msgstr "Не удалось считать контур из %s" -#: app/gimpdrawable.c:168 +#: app/gimpdrawable.c:166 msgid "Can't fill unknown image type." msgstr "Невозможно заполнить изображение неизвестного типа." -#: app/gimpdrawable.c:512 +#: app/gimpdrawable.c:498 msgid "parasite attach to drawable" msgstr "" -#: app/gimpdrawable.c:548 +#: app/gimpdrawable.c:533 msgid "detach parasite from drawable" msgstr "" -#: app/gimpdrawable.c:770 +#: app/gimpdrawable.c:740 msgid "unnamed" msgstr "безымянное" -#: app/gimpdrawable.c:787 +#: app/gimpdrawable.c:757 #, c-format msgid "Layer type %d not supported." msgstr "Слои типа %d не поддерживаются." @@ -1535,39 +1536,39 @@ msgid "" "you don't have GtkXmHTML installed." msgstr "" -#: app/gimpimage.c:1154 +#: app/gimpimage.c:1176 msgid "attach parasite to image" msgstr "" -#: app/gimpimage.c:1177 +#: app/gimpimage.c:1201 msgid "detach parasite from image" msgstr "" -#: app/gimpimage.c:2232 +#: app/gimpimage.c:2305 msgid "Layer cannot be raised any further" msgstr "Слой невозможно поднять выше" -#: app/gimpimage.c:2258 +#: app/gimpimage.c:2333 msgid "Layer cannot be lowered any further" msgstr "Слой невозможно опустить ниже" -#: app/gimpimage.c:2282 +#: app/gimpimage.c:2359 msgid "Layer is already on top" msgstr "Слой уже на самом верху" -#: app/gimpimage.c:2288 +#: app/gimpimage.c:2365 msgid "Can't raise Layer without alpha" msgstr "Невозможно поднять слой, у которого нет альфа-канала" -#: app/gimpimage.c:2315 +#: app/gimpimage.c:2393 msgid "Layer is already on bottom" msgstr "Слой уже в самом низу" -#: app/gimpimage.c:2370 +#: app/gimpimage.c:2448 msgid "BG has no alpha, layer was placed above" msgstr "Фон не имеет альфа-канала, слой будет размещен выше" -#: app/gimpimage.c:2439 +#: app/gimpimage.c:2519 msgid "" "There are not enough visible layers for a merge.\n" "There must be at least two." @@ -1575,11 +1576,11 @@ msgstr "" "Нет видимых слоев для объединения.\n" "Должно быть хотя бы два." -#: app/gimpimage.c:2519 +#: app/gimpimage.c:2603 msgid "There are not enough visible layers for a merge down." msgstr "Нет видимых слоев для объединения с предыдущим." -#: app/gimpimage.c:2915 +#: app/gimpimage.c:3005 msgid "" "Unable to add a layer mask since\n" "the layer already has one." @@ -1587,7 +1588,7 @@ msgstr "" "Не удалось добавить маску слоя, так как\n" "у слоя уже есть маска." -#: app/gimpimage.c:2919 +#: app/gimpimage.c:3009 msgid "" "Unable to add a layer mask to a\n" "layer in an indexed image." @@ -1595,7 +1596,7 @@ msgstr "" "Не удалось добавить маску слоя\n" "к слою в индексированном изображении." -#: app/gimpimage.c:2923 +#: app/gimpimage.c:3013 msgid "" "Cannot add layer mask to a layer\n" "with no alpha channel." @@ -1603,20 +1604,20 @@ msgstr "" "Невозможно добавить маску слоя\n" "к слою не имеющему альфа-канала." -#: app/gimpimage.c:2930 +#: app/gimpimage.c:3020 msgid "Cannot add layer mask of different dimensions than specified layer." msgstr "" "Невозможно добавить маску слоя отличающуюся размерами от указанного слоя." -#: app/gimpimage.c:3033 +#: app/gimpimage.c:3127 msgid "Channel cannot be raised any further" msgstr "Канал не может быть поднят еще выше" -#: app/gimpimage.c:3082 +#: app/gimpimage.c:3178 msgid "Channel cannot be lowered any further" msgstr "Канал не может быть опущен еще ниже" -#: app/gimpimage.c:3288 app/palette.c:364 app/palette.c:941 app/palette.c:1077 +#: app/gimpimage.c:3398 app/palette.c:364 app/palette.c:941 app/palette.c:1077 #: app/palette.c:2022 app/palette.c:2749 app/palette.c:2881 msgid "Untitled" msgstr "Безымянное" @@ -1629,45 +1630,45 @@ msgstr " msgid "Please wait..." msgstr "" -#: app/gimprc.c:401 app/plug_in.c:304 +#: app/gimprc.c:415 app/plug_in.c:304 msgid "Resource configuration" msgstr "Конфигурирование ресурсов" -#: app/gimprc.c:451 +#: app/gimprc.c:467 #, c-format msgid "error parsing: \"%s\"\n" msgstr "ошибка при синтаксическом анализе: \"%s\"\n" -#: app/gimprc.c:452 +#: app/gimprc.c:468 #, c-format msgid " at line %d column %d\n" msgstr " в строке %d столбце %d\n" -#: app/gimprc.c:453 +#: app/gimprc.c:469 #, c-format msgid " unexpected token: %s\n" msgstr " неожиданный символ: %s\n" -#: app/gimprc.c:1455 +#: app/gimprc.c:1473 msgid "error parsing pluginrc" msgstr "ошибка при синтаксическом анализе pluginrc" -#: app/gimprc.c:2832 +#: app/gimprc.c:2866 #, c-format msgid "Can't open %s; %s" msgstr "Невозможно открыть %s; %s" -#: app/gimprc.c:2851 +#: app/gimprc.c:2885 #, c-format msgid "Can't rename %s to %s.old; %s" msgstr "Невозможно переименовать %s в %s.old; %s" -#: app/gimprc.c:2857 +#: app/gimprc.c:2891 #, c-format msgid "Couldn't reopen %s\n" msgstr "Невозможно переоткрыть %s\n" -#: app/gimprc.c:2869 +#: app/gimprc.c:2903 #, c-format msgid "Can't write to %s; %s" msgstr "Невозможно записать в %s; %s" @@ -1697,7 +1698,7 @@ msgstr "" msgid "pixel" msgstr "пиксел" -#: app/gimpunit.c:59 app/measure.c:454 app/measure.c:458 app/paint_core.c:498 +#: app/gimpunit.c:59 app/measure.c:454 app/measure.c:458 app/paint_core.c:511 msgid "pixels" msgstr "пикселей" @@ -1945,7 +1946,7 @@ msgstr " msgid "Distance: %0.6f" msgstr "Расстояние: %0.6f" -#: app/gradient.c:3387 app/gradient.c:4448 +#: app/gradient.c:3387 app/gradient.c:4450 msgid "Left endpoint's color" msgstr "Цвет крайней левой точки" @@ -1965,7 +1966,7 @@ msgstr " msgid "Save to" msgstr "Сохранить в" -#: app/gradient.c:3429 app/gradient.c:4526 +#: app/gradient.c:3429 app/gradient.c:4528 msgid "Right endpoint's color" msgstr "Цвет крайней правой точки" @@ -1993,7 +1994,7 @@ msgstr " msgid "Split segment at midpoint" msgstr "Расщепить сегмент в средней точке" -#: app/gradient.c:3734 app/gradient.c:4829 +#: app/gradient.c:3734 app/gradient.c:4831 msgid "Split segment uniformly" msgstr "Расщепить сегмент на равные части" @@ -2013,7 +2014,7 @@ msgstr " msgid "Flip segment" msgstr "Зеркально отразить сегмент" -#: app/gradient.c:3744 app/gradient.c:5390 +#: app/gradient.c:3744 app/gradient.c:5392 msgid "Replicate segment" msgstr "Размножить сегмент" @@ -2029,7 +2030,7 @@ msgstr " msgid "Split segments at midpoints" msgstr "Расщепить сегменты в средних точках" -#: app/gradient.c:3755 app/gradient.c:4830 +#: app/gradient.c:3755 app/gradient.c:4832 msgid "Split segments uniformly" msgstr "Расщепить сегменты на равные части" @@ -2049,7 +2050,7 @@ msgstr " msgid "Flip selection" msgstr "Зеркально отразить выделение" -#: app/gradient.c:3765 app/gradient.c:5391 +#: app/gradient.c:3765 app/gradient.c:5393 msgid "Replicate selection" msgstr "Размножить выделение" @@ -2062,49 +2063,49 @@ msgstr " msgid "RGBA (%0.3f, %0.3f, %0.3f, %0.3f)" msgstr "RGBA (%0.3f, %0.3f, %0.3f, %0.3f)" -#: app/gradient.c:4615 app/gradient.c:4685 +#: app/gradient.c:4617 app/gradient.c:4687 msgid "(Varies)" msgstr "" -#: app/gradient.c:4837 +#: app/gradient.c:4839 msgid "Split" msgstr "Расщепить" #. Instructions -#: app/gradient.c:4851 +#: app/gradient.c:4853 msgid "Please select the number of uniform parts" msgstr "Выберите число частей," -#: app/gradient.c:4857 +#: app/gradient.c:4859 msgid "in which you want to split the selected segment" msgstr "на которое Вы хотите расщепить выделенный сегмент" -#: app/gradient.c:4858 +#: app/gradient.c:4860 msgid "in which you want to split the segments in the selection" msgstr "на которое Вы хотите расщепить сегменты в выделении" -#: app/gradient.c:5218 +#: app/gradient.c:5220 msgid "Blend endpoints' colors" msgstr "Цвета крайних точек затемнения" -#: app/gradient.c:5230 +#: app/gradient.c:5232 msgid "Blend endpoints' opacity" msgstr "Непрозрачность крайних точек затемнения" -#: app/gradient.c:5398 +#: app/gradient.c:5400 msgid "Replicate" msgstr "Размножить" #. Instructions -#: app/gradient.c:5411 +#: app/gradient.c:5413 msgid "Please select the number of times" msgstr "Выберите сколько раз" -#: app/gradient.c:5416 +#: app/gradient.c:5418 msgid "you want to replicate the selected segment" msgstr "Вы хотите воспроизвести выделенный сегмент" -#: app/gradient.c:5417 +#: app/gradient.c:5419 msgid "you want to replicate the selection" msgstr "Вы хотите воспроизвести выделение" @@ -2209,45 +2210,45 @@ msgstr " msgid "Saturation" msgstr "Насыщенность" -#: app/image_new.c:58 app/info_window.c:65 app/info_window.c:534 -#: app/preferences_dialog.c:1638 +#: app/image_new.c:59 app/info_window.c:65 app/info_window.c:534 +#: app/preferences_dialog.c:1603 msgid "Grayscale" msgstr "Градации серого" -#: app/image_new.c:64 app/layers_dialog.c:3421 +#: app/image_new.c:65 app/layers_dialog.c:3421 msgid "Foreground" msgstr "Переднего плана" -#: app/image_new.c:74 app/layers_dialog.c:3423 +#: app/image_new.c:75 app/layers_dialog.c:3423 msgid "White" msgstr "Белое" -#: app/image_new.c:262 +#: app/image_new.c:273 #, c-format msgid "%d Bytes" msgstr "%d байт" -#: app/image_new.c:264 +#: app/image_new.c:275 #, c-format msgid "%.2f KB" msgstr "%.2f KБ" -#: app/image_new.c:266 +#: app/image_new.c:277 #, c-format msgid "%.1f KB" msgstr "%.1f KБ" -#: app/image_new.c:268 +#: app/image_new.c:279 #, c-format msgid "%d KB" msgstr "%d KБ" -#: app/image_new.c:270 +#: app/image_new.c:281 #, c-format msgid "%.2f MB" msgstr "%.2f MБ" -#: app/image_new.c:272 +#: app/image_new.c:283 #, c-format msgid "%.1f MB" msgstr "%.1f MБ" @@ -2276,8 +2277,8 @@ msgstr "" "Действующий градиент.\n" "Щёлкните, чтобы открыть диалог \"Градиенты\"." -#: app/info_dialog.c:181 app/preferences_dialog.c:1782 -#: app/preferences_dialog.c:1888 +#: app/info_dialog.c:181 app/preferences_dialog.c:1743 +#: app/preferences_dialog.c:1849 msgid "General" msgstr "Общие" @@ -2410,11 +2411,11 @@ msgstr " msgid "Shape" msgstr "Форма" -#: app/install.c:83 +#: app/install.c:95 msgid "The GIMP is not properly installed for the current user\n" msgstr "GIMP не был полностью установлен для текущего пользователя\n" -#: app/install.c:84 +#: app/install.c:96 msgid "" "User installation was skipped because the '--nointerface' flag was " "encountered\n" @@ -2422,27 +2423,326 @@ msgstr "" "Пользовательская установка была пропущена, так как был указан флаг " "'--nointerface'\n" -#: app/install.c:85 +#: app/install.c:97 msgid "" "To perform user installation, run the GIMP without the '--nointerface' flag\n" msgstr "" "Для выполнения пользовательской установки, запустите GIMP без флага " "'--nointerface'\n" -#: app/install.c:113 +#: app/install.c:142 +#, fuzzy +msgid "" +"The gimprc is used to store personal preferences\n" +"that affect GIMP's default behavior.\n" +"Paths to search for brushes, palettes, gradients,\n" +"patterns, plug-ins and modules can also configured here." +msgstr "" +" gimprc используется для хранения персональных настроек\n" +"таких как поведение GIMP по умолчанию.\n" +"Пути поиска кистей, палитр, градиентов,\n" +"шаблонов, дополнений и модулей также указываются здесь.\n" + +#: app/install.c:149 +msgid "" +"GIMP uses an additional gtkrc file so you can\n" +"configure it to look differently than other GTK apps." +msgstr "" + +#: app/install.c:154 +#, fuzzy +msgid "" +"Plug-ins and extensions are external programs run by\n" +"the GIMP which provide additional functionality.\n" +"These programs are searched for at run-time and\n" +"information about their functionality and mod-times\n" +"is cached in this file. This file is intended to\n" +"be GIMP-readable only, and should not be edited." +msgstr "" +"Дополнения и расширения - это внешние программы запускаемые\n" +"GIMP'ом, которые предоставляют дополнительные возможности.\n" +"Эти программы разыскиваются при запуске и \n" +"информация об их функциональности и mod-times\n" +"кэшируются в этом файле. Этот файл предназначен только\n" +"для чтения GIMP'ом, и не должен редактироваться.\n" + +#: app/install.c:163 +msgid "" +"Key shortcuts can be dynamically redefined in The GIMP.\n" +"The menurc is a dump of your configuration so it can.\n" +"be remembered for the next session. You may edit this\n" +"file if you wish, but it is much easier to define the\n" +"keys from within The GIMP. Deleting this file will\n" +"restore the default shortcuts." +msgstr "" + +#: app/install.c:172 +msgid "" +"The sessionrc is used to store what dialog windows were\n" +"open the last time you quit The GIMP. You can configure\n" +"The GIMP to reopen these dialogs at the saved position." +msgstr "" + +#: app/install.c:178 +#, fuzzy +msgid "" +"The unitrc is used to store your user units database.\n" +"You can define additional units and use them just\n" +"like you use the built-in units inches, millimeters,\n" +"points and picas. This file is overwritten each time\n" +"you quit the GIMP." +msgstr "" +"unitrc используется для хранения вашей базы данных единиц измерения.\n" +"Вы можете определить дополнительные единицы и использовать их также\n" +"как вы используете встроенные единицы: дюймы, миллиметры,\n" +"пункты и пики. Этот файл переписывается каждый раз, когда\n" +"вы выходите из GIMP.\n" + +#: app/install.c:186 +#, fuzzy +msgid "" +"This is a subdirectory which can be used to store\n" +"user defined brushes. The default gimprc file\n" +"checks this subdirectory in addition to the system-\n" +"wide gimp brushes installation when searching for\n" +"brushes." +msgstr "" +"Это подкаталог, который может быть использован для\n" +"хранения созданных пользователем кистей. По умолчанию\n" +"в файле gimprc указана проверка этого подкаталога,\n" +"в дополнение к системному при поиске\n" +"кистей.\n" + +#: app/install.c:194 +#, fuzzy +msgid "" +"This is a subdirectory which is used to store brushes\n" +"that are created with the brush editor. The default\n" +"gimprc file checks this subdirectory when searching for\n" +"generated brushes." +msgstr "" +"Это подкаталог, который используется для хранения кистей\n" +"которые были созданы в редакторе кистей. По умолчанию\n" +"в файле gimprc указана проверка этого подкаталога,\n" +"для поиска созданных кистей.\n" + +#: app/install.c:201 +#, fuzzy +msgid "" +"This is a subdirectory which can be used to store\n" +"user defined gradients. The default gimprc file\n" +"checks this subdirectory in addition to the system-\n" +"wide gimp gradients installation when searching for\n" +"gradients." +msgstr "" +"Это подкаталог, который может быть использован для\n" +"хранения созданных пользователем градиентов. По умолчанию\n" +"в файле gimprc указана проверка этого подкаталога,\n" +"в дополнение к системному при поиске\n" +"градиентов.\n" + +#: app/install.c:209 +#, fuzzy +msgid "" +"This is a subdirectory which can be used to store\n" +"user defined palettes. The default gimprc file\n" +"checks only this subdirectory (not the system-wide\n" +"installation) when searching for palettes. During\n" +"installation, the system palettes will be copied\n" +"here. This is done to allow modifications made to\n" +"palettes during GIMP execution to persist across\n" +"sessions." +msgstr "" +"Это подкаталог, который может быть использован для хранения\n" +"созданных пользователем палитр. По умолчанию в файле gimprc\n" +"указана проверка только этого подкаталога (а не системного\n" +"каталога) при поиске палитр. Во время инсталляции\n" +"системные палитры копируются сюда.\n" +"Это сделано, чтобы позволить сохранять модификации палитр\n" +"между сеансами работы в\n" +"GIMP.\n" + +#: app/install.c:220 +#, fuzzy +msgid "" +"This is a subdirectory which can be used to store\n" +"user defined patterns. The default gimprc file\n" +"checks this subdirectory in addition to the system-\n" +"wide gimp patterns installation when searching for\n" +"patterns." +msgstr "" +"Это подкаталог, который может быть использован для\n" +"хранения созданных пользователем шаблонов. По умолчанию\n" +"в файле gimprc указана проверка этого подкаталога,\n" +"в дополнение к системному при поиске\n" +"шаблонов.\n" + +#: app/install.c:228 +#, fuzzy +msgid "" +"This is a subdirectory which can be used to store\n" +"user created, temporary, or otherwise non-system-\n" +"supported plug-ins. The default gimprc file\n" +"checks this subdirectory in addition to the system-\n" +"wide GIMP plug-in directories when searching for\n" +"plug-ins." +msgstr "" +"Этот подкаталог может быть использован для хранения созданных\n" +"пользователем, временных или других неподдерживаемых дополнений.\n" +"По умолчанию в файле gimprc указана проверка этого подкаталога,\n" +"в дополнение к системному при поиске\n" +"дополнений.\n" + +#: app/install.c:237 +#, fuzzy +msgid "" +"This subdirectory can be used to store user created,\n" +"temporary, or otherwise non-system-supported DLL modules.\n" +"The default gimprc file checks this subdirectory\n" +"in addition to the system-wide GIMP module directory\n" +"when searching for modules to load when initializing." +msgstr "" +"Этот подкаталог может быть использован для хранения созданных\n" +"пользователем, временных или других неподдерживаемых динамически\n" +"загружаемых модулей. По умолчанию в файле gimprc указана проверка\n" +"этого подкаталога, в дополнение к системному при поиске\n" +"модулей загружаемых при инициализации.\n" + +#: app/install.c:245 +#, fuzzy +msgid "" +"This subdirectory is used by the GIMP to store \n" +"user created and installed scripts. The default gimprc\n" +"file checks this subdirectory in addition to the system-\n" +"wide gimp scripts subdirectory when searching for scripts" +msgstr "" +"Этот подкаталог используется GIMP для хранения \n" +"созданных пользователем и установленных скриптов. По умолчанию\n" +"в файле gimprc указана проверка этого подкаталога,\n" +"в дополнение к системному при поиске скриптов.\n" + +#: app/install.c:252 +#, fuzzy +msgid "" +"This subdirectory is used by the GIMP to temporarily\n" +"store undo buffers to reduce memory usage. If GIMP is\n" +"unceremoniously killed, files may persist in this directory\n" +"of the form: gimp<#>.<#>. These files are useless across\n" +"GIMP sessions and can be destroyed with impunity." +msgstr "" +"Этот подкаталог используется GIMP для временного\n" +"хранения буферов отката для уменьшения использования памяти. Если\n" +"GIMP бесцеремонно убит, файлы могут остаться в этом каталоге\n" +"в виде: gimp<#>.<#>. Эти файлы бесполезны после прерывания\n" +"сеанса GIMP и могут быть безнаказанно уничтожены.\n" + +#: app/install.c:260 +msgid "" +"This subdirectory is used to store parameter files for\n" +"the Curves tool." +msgstr "" + +#: app/install.c:265 +msgid "" +"This subdirectory is used to store parameter files for\n" +"the Levels tool." +msgstr "" + +#: app/install.c:270 +#, fuzzy +msgid "" +"This is a subdirectory which can be used to store\n" +"user defined fractals to be used by the FractalExplorer\n" +"plug-in. The default gimprc file checks this subdirectory in\n" +"addition to the systemwide gimp FractalExplorer installation\n" +"when searching for fractals." +msgstr "" +"Это подкаталог, который может быть использован для хранения\n" +"созданных пользователем фракталов используемых дополнением\n" +"FractalExplorer. По умолчанию в файле gimprc указана проверка\n" +"этого подкаталога, в дополнение к системному при поиске\n" +"фракталов.\n" + +#: app/install.c:278 +#, fuzzy +msgid "" +"This is a subdirectory which can be used to store\n" +"user defined figures to be used by the gfig plug-in.\n" +"The default gimprc file checks this subdirectory in\n" +"addition to the systemwide gimp gfig installation\n" +"when searching for gfig figures." +msgstr "" +"Это подкаталог, который может быть использован для хранения\n" +"созданных пользователем фигур используемых дополнением gfig.\n" +"По умолчанию в файле gimprc указана проверка этого подкаталога,\n" +"в дополнение к системному при поиске\n" +"фигур для gfig.\n" + +#: app/install.c:286 +#, fuzzy +msgid "" +"This is a subdirectory which can be used to store\n" +"user defined gflares to be used by the gflare plug-in.\n" +"The default gimprc file checks this subdirectory in\n" +"addition to the systemwide gimp gflares installation\n" +"when searching for gflares." +msgstr "" +"Это подкаталог, который может быть использован для хранения\n" +"созданных пользователем gflares используемых дополнением gflare.\n" +"По умолчанию в файле gimprc указана проверка этого подкаталога,\n" +"в дополнение к системному при поиске\n" +"gflares.\n" + +#: app/install.c:294 +#, fuzzy +msgid "" +"This is a subdirectory which can be used to store\n" +"user defined data to be used by the Gimpressionist\n" +"plug-in. The default gimprc file checks this subdirectory in\n" +"addition to the systemwide gimp Gimpressionist installation\n" +"when searching for data." +msgstr "" +"Это подкаталог, который может быть использован для хранения\n" +"созданных пользователем gflares используемых дополнением gflare.\n" +"По умолчанию в файле gimprc указана проверка этого подкаталога,\n" +"в дополнение к системному при поиске\n" +"gflares.\n" + +#: app/install.c:525 +#, fuzzy +msgid "GIMP User Installation" +msgstr "Установка GIMP" + +#: app/install.c:530 +msgid "Continue" +msgstr "Продолжить" + +#. this is a fontset, e.g. multiple comma-separated font definitions +#: app/install.c:560 +msgid "-*-helvetica-bold-r-normal-*-*-240-*-*-*-*-*-*,*" +msgstr "" + +#: app/install.c:578 +#, fuzzy +msgid "" +"Welcome to\n" +"The GIMP User Installation" +msgstr "Установка GIMP" + +#: app/install.c:582 msgid "" "The GIMP - GNU Image Manipulation Program\n" -"\n" +"Copyright (C) 1995-2000\n" +"Spencer Kimball, Peter Mattis and the GIMP Development Team." msgstr "" -"GIMP - ГНУ Изображениями Манипулирующая Программа\n" -"\n" -#: app/install.c:118 +#: app/install.c:591 +#, fuzzy msgid "" "This program is free software; you can redistribute it and/or modify\n" "it under the terms of the GNU General Public License as published by\n" "the Free Software Foundation; either version 2 of the License, or\n" -"(at your option) any later version.\n" +"(at your option) any later version." msgstr "" "Эта программа - свободная программа; вы можете распространять ее и/или " "изменять\n" @@ -2450,372 +2750,192 @@ msgstr "" "Free Software Foundation; в Лицензии версии 2, или (по вашему усмотрению)\n" "любой более поздней версии.\n" -#: app/install.c:123 +#: app/install.c:596 +#, fuzzy msgid "" "This program is distributed in the hope that it will be useful,\n" "but WITHOUT ANY WARRANTY; without even the implied warranty of\n" "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n" -"See the GNU General Public License for more details.\n" +"See the GNU General Public License for more details." msgstr "" "Эта программа распространяется в надежде, что она будет полезна,\n" "но БЕЗ КАКИХ-ЛИБО ГАРАНТИЙ, в том числе подразумеваемой гарантии\n" "MERCHANTABILITY или ПРИМЕНИМОСТИ ДЛЯ КАКИХ-ЛИБО ЦЕЛЕЙ.\n" "Подробнее, смотрите GNU General Public License.\n" -#: app/install.c:128 +#: app/install.c:601 +#, fuzzy msgid "" "You should have received a copy of the GNU General Public License\n" "along with this program; if not, write to the Free Software\n" "Foundation, Inc., 59 Temple Place - Suite 330, Boston,\n" -"MA 02111-1307, USA.\n" +"MA 02111-1307, USA." msgstr "" "Вы должны были получить копию GNU General Public License\n" "вместе с этой программой; если этого не произошло, напишите в Free Software\n" "Foundation, Inc., 59 Temple Place - Suite 330, Boston,\n" "MA 02111-1307, USA.\n" -#: app/install.c:134 -msgid "" -"Personal GIMP Installation\n" -"\n" +#: app/install.c:607 +msgid "Click \"Continue\" to enter the GIMP user installation." +msgstr "" + +#: app/install.c:633 +#, fuzzy +msgid "Personal GIMP Directory" msgstr "" "Персональная установка GIMP\n" "\n" -#: app/install.c:135 -msgid "For a proper GIMP installation, a subdirectory called\n" -msgstr "Для правильной установки GIMP должны быть созданы\n" - -#. will be replaced with gimp_directory() -#: app/install.c:137 +#: app/install.c:650 +#, fuzzy msgid "" -" needs to be created. This\n" -"subdirectory will contain a number of important files:\n" -"\n" +"For a proper GIMP installation, a subdirectory needs to be created.\n" +"This subdirectory will contain a number of important files." msgstr "" "несколько подкаталогов. Эти\n" "подкаталоги будут содержать ряд важных файлов:\n" "\n" -#: app/install.c:141 +#: app/install.c:653 msgid "" -"\t\tThe gimprc is used to store personal preferences\n" -"\t\tthat affect GIMP's default behavior.\n" -"\t\tPaths to search for brushes, palettes, gradients,\n" -"\t\tpatterns, plug-ins and modules can also configured here.\n" -msgstr "" -"\t\t gimprc используется для хранения персональных настроек\n" -"\t\tтаких как поведение GIMP по умолчанию.\n" -"\t\tПути поиска кистей, палитр, градиентов,\n" -"\t\tшаблонов, дополнений и модулей также указываются здесь.\n" - -#: app/install.c:147 -msgid "" -"\t\tPlug-ins and extensions are external programs run by\n" -"\t\tthe GIMP which provide additional functionality.\n" -"\t\tThese programs are searched for at run-time and\n" -"\t\tinformation about their functionality and mod-times\n" -"\t\tis cached in this file. This file is intended to\n" -"\t\tbe GIMP-readable only, and should not be edited.\n" -msgstr "" -"\t\tДополнения и расширения - это внешние программы запускаемые\n" -"\t\tGIMP'ом, которые предоставляют дополнительные возможности.\n" -"\t\tЭти программы разыскиваются при запуске и \n" -"\t\tинформация об их функциональности и mod-times\n" -"\t\tкэшируются в этом файле. Этот файл предназначен только\n" -"\t\tдля чтения GIMP'ом, и не должен редактироваться.\n" - -#: app/install.c:155 -msgid "" -"\t\tKey shortcuts can be dynamically redefined in The GIMP.\n" -"\t\tThe menurc is a dump of your configuration so it can.\n" -"\t\tbe remembered for the next session. You may edit this\n" -"\t\tfile if you wish, but it is much easier to define the\n" -"\t\tkeys from within The GIMP. Deleting this file will\n" -"\t\trestore the default shortcuts.\n" +"Click on one of the files or subdirectories in the tree\n" +"to get more information about the selected item." msgstr "" -#: app/install.c:163 -msgid "" -"\t\tThe sessionrc is used to store what dialog windows were\n" -"\t\topen the last time you quit The GIMP. You can configure\n" -"\t\tThe GIMP to reopen these dialogs at the saved position.\n" +#: app/install.c:656 +msgid "Click \"Continue\" to create your personal GIMP directory." msgstr "" -#: app/install.c:168 -msgid "" -"\t\tThe unitrc is used to store your user units database.\n" -"\t\tYou can define additional units and use them just\n" -"\t\tlike you use the built-in units inches, millimeters,\n" -"\t\tpoints and picas. This file is overwritten each time\n" -"\t\tyou quit the GIMP.\n" -msgstr "" -"\t\tunitrc используется для хранения вашей базы данных единиц измерения.\n" -"\t\tВы можете определить дополнительные единицы и использовать их также\n" -"\t\tкак вы используете встроенные единицы: дюймы, миллиметры,\n" -"\t\tпункты и пики. Этот файл переписывается каждый раз, когда\n" -"\t\tвы выходите из GIMP.\n" - -#: app/install.c:175 -msgid "" -"\t\tThis is a subdirectory which can be used to store\n" -"\t\tuser defined brushes. The default gimprc file\n" -"\t\tchecks this subdirectory in addition to the system-\n" -"\t\twide gimp brushes installation when searching for\n" -"\t\tbrushes.\n" -msgstr "" -"\t\tЭто подкаталог, который может быть использован для\n" -"\t\tхранения созданных пользователем кистей. По умолчанию\n" -"\t\tв файле gimprc указана проверка этого подкаталога,\n" -"\t\tв дополнение к системному при поиске\n" -"\t\tкистей.\n" - -#: app/install.c:182 -msgid "" -"\t\tThis is a subdirectory which is used to store brushes\n" -"\t\tthat are created with the brush editor. The default\n" -"\t\tgimprc file checks this subdirectory when searching for\n" -"\t\tgenerated brushes.\n" -msgstr "" -"\t\tЭто подкаталог, который используется для хранения кистей\n" -"\t\tкоторые были созданы в редакторе кистей. По умолчанию\n" -"\t\tв файле gimprc указана проверка этого подкаталога,\n" -"\t\tдля поиска созданных кистей.\n" - -#: app/install.c:188 -msgid "" -"\t\tThis is a subdirectory which can be used to store\n" -"\t\tuser defined gradients. The default gimprc file\n" -"\t\tchecks this subdirectory in addition to the system-\n" -"\t\twide gimp gradients installation when searching for\n" -"\t\tgradients.\n" -msgstr "" -"\t\tЭто подкаталог, который может быть использован для\n" -"\t\tхранения созданных пользователем градиентов. По умолчанию\n" -"\t\tв файле gimprc указана проверка этого подкаталога,\n" -"\t\tв дополнение к системному при поиске\n" -"\t\tградиентов.\n" - -#: app/install.c:195 -msgid "" -"\t\tThis is a subdirectory which can be used to store\n" -"\t\tuser defined figures to be used by the gfig plug-in.\n" -"\t\tThe default gimprc file checks this subdirectory in\n" -"\t\taddition to the systemwide gimp gfig installation\n" -"\t\twhen searching for gfig figures.\n" -msgstr "" -"\t\tЭто подкаталог, который может быть использован для хранения\n" -"\t\tсозданных пользователем фигур используемых дополнением gfig.\n" -"\t\tПо умолчанию в файле gimprc указана проверка этого подкаталога,\n" -"\t\tв дополнение к системному при поиске\n" -"\t\tфигур для gfig.\n" - -#: app/install.c:202 -msgid "" -"\t\tThis is a subdirectory which can be used to store\n" -"\t\tuser defined gflares to be used by the gflare plug-in.\n" -"\t\tThe default gimprc file checks this subdirectory in\n" -"\t\taddition to the systemwide gimp gflares installation\n" -"\t\twhen searching for gflares.\n" -msgstr "" -"\t\tЭто подкаталог, который может быть использован для хранения\n" -"\t\tсозданных пользователем gflares используемых дополнением gflare.\n" -"\t\tПо умолчанию в файле gimprc указана проверка этого подкаталога,\n" -"\t\tв дополнение к системному при поиске\n" -"\t\tgflares.\n" - -#: app/install.c:209 -msgid "" -"\t\tThis is a subdirectory which can be used to store\n" -"\t\tuser defined fractals to be used by the FractalExplorer\n" -"\t\tplug-in. The default gimprc file checks this subdirectory in\n" -"\t\taddition to the systemwide gimp FractalExplorer installation\n" -"\t\twhen searching for fractals.\n" -msgstr "" -"\t\tЭто подкаталог, который может быть использован для хранения\n" -"\t\tсозданных пользователем фракталов используемых дополнением\n" -"\t\tFractalExplorer. По умолчанию в файле gimprc указана проверка\n" -"\t\tэтого подкаталога, в дополнение к системному при поиске\n" -"\t\tфракталов.\n" - -#: app/install.c:216 -msgid "" -"\t\tThis is a subdirectory which can be used to store\n" -"\t\tuser defined palettes. The default gimprc file\n" -"\t\tchecks only this subdirectory (not the system-wide\n" -"\t\tinstallation) when searching for palettes. During\n" -"\t\tinstallation, the system palettes will be copied\n" -"\t\there. This is done to allow modifications made to\n" -"\t\tpalettes during GIMP execution to persist across\n" -"\t\tsessions.\n" -msgstr "" -"\t\tЭто подкаталог, который может быть использован для хранения\n" -"\t\tсозданных пользователем палитр. По умолчанию в файле gimprc\n" -"\t\tуказана проверка только этого подкаталога (а не системного\n" -"\t\tкаталога) при поиске палитр. Во время инсталляции\n" -"\t\tсистемные палитры копируются сюда.\n" -"\t\tЭто сделано, чтобы позволить сохранять модификации палитр\n" -"\t\tмежду сеансами работы в\n" -"\t\tGIMP.\n" - -#: app/install.c:226 -msgid "" -"\t\tThis is a subdirectory which can be used to store\n" -"\t\tuser defined patterns. The default gimprc file\n" -"\t\tchecks this subdirectory in addition to the system-\n" -"\t\twide gimp patterns installation when searching for\n" -"\t\tpatterns.\n" -msgstr "" -"\t\tЭто подкаталог, который может быть использован для\n" -"\t\tхранения созданных пользователем шаблонов. По умолчанию\n" -"\t\tв файле gimprc указана проверка этого подкаталога,\n" -"\t\tв дополнение к системному при поиске\n" -"\t\tшаблонов.\n" - -#: app/install.c:233 -msgid "" -"\t\tThis is a subdirectory which can be used to store\n" -"\t\tuser created, temporary, or otherwise non-system-\n" -"\t\tsupported plug-ins. The default gimprc file\n" -"\t\tchecks this subdirectory in addition to the system-\n" -"\t\twide GIMP plug-in directories when searching for\n" -"\t\tplug-ins.\n" -msgstr "" -"\t\tЭтот подкаталог может быть использован для хранения созданных\n" -"\t\tпользователем, временных или других неподдерживаемых дополнений.\n" -"\t\tПо умолчанию в файле gimprc указана проверка этого подкаталога,\n" -"\t\tв дополнение к системному при поиске\n" -"\t\tдополнений.\n" - -#: app/install.c:241 +#: app/install.c:736 #, fuzzy -msgid "" -"\t\tThis subdirectory can be used to store user created,\n" -"\t\ttemporary, or otherwise non-system-supported DLL modules.\n" -"\t\tThe default gimprc file checks this subdirectory\n" -"\t\tin addition to the system-wide GIMP module directory\n" -"\t\twhen searching for modules to load when initializing.\n" -msgstr "" -"\t\tЭтот подкаталог может быть использован для хранения созданных\n" -"\t\tпользователем, временных или других неподдерживаемых динамически\n" -"\t\tзагружаемых модулей. По умолчанию в файле gimprc указана проверка\n" -"\t\tэтого подкаталога, в дополнение к системному при поиске\n" -"\t\tмодулей загружаемых при инициализации.\n" - -#: app/install.c:248 -msgid "" -"\t\tThis subdirectory is used by the GIMP to store \n" -"\t\tuser created and installed scripts. The default gimprc\n" -"\t\tfile checks this subdirectory in addition to the system\n" -"\t\t-wide gimp scripts subdirectory when searching for scripts\n" -msgstr "" -"\t\tЭтот подкаталог используется GIMP для хранения \n" -"\t\tсозданных пользователем и установленных скриптов. По умолчанию\n" -"\t\tв файле gimprc указана проверка этого подкаталога,\n" -"\t\tв дополнение к системному при поиске скриптов.\n" - -#: app/install.c:254 -msgid "" -"\t\tThis subdirectory is used by the GIMP to temporarily\n" -"\t\tstore undo buffers to reduce memory usage. If GIMP is\n" -"\t\tunceremoniously killed, files may persist in this directory\n" -"\t\tof the form: gimp<#>.<#>. These files are useless across\n" -"\t\tGIMP sessions and can be destroyed with impunity.\n" -msgstr "" -"\t\tЭтот подкаталог используется GIMP для временного\n" -"\t\tхранения буферов отката для уменьшения использования памяти. Если\n" -"\t\tGIMP бесцеремонно убит, файлы могут остаться в этом каталоге\n" -"\t\tв виде: gimp<#>.<#>. Эти файлы бесполезны после прерывания\n" -"\t\tсеанса GIMP и могут быть безнаказанно уничтожены.\n" - -#: app/install.c:263 -msgid "GIMP Installation" -msgstr "Установка GIMP" - -#: app/install.c:268 -msgid "Install" -msgstr "Установка" - -#: app/install.c:270 -msgid "Ignore" -msgstr "Игнорировать" - -#. this is a fontset, e.g. multiple comma-separated font definitions -#: app/install.c:295 app/install.c:453 -msgid "-*-helvetica-bold-r-normal-*-*-120-*-*-*-*-*-*,*" -msgstr "" - -#. this is a font, provide only one single font definition -#: app/install.c:298 -msgid "-*-helvetica-medium-o-normal-*-*-100-*-*-*-*-*-*" -msgstr "" - -#. this is a fontset, e.g. multiple comma-separated font definitions -#: app/install.c:301 -msgid "-*-helvetica-medium-r-normal-*-*-100-*-*-*-*-*-*,*" -msgstr "" - -#: app/install.c:423 -msgid "Installation Log" -msgstr "Файл регистрации установки" - -#: app/install.c:428 -msgid "Continue" -msgstr "Продолжить" - -#. this is a fontset, e.g. multiple comma-separated font definitions -#: app/install.c:456 -msgid "-*-helvetica-medium-r-normal-*-*-120-*-*-*-*-*-*,*" -msgstr "" - -#: app/install.c:462 -msgid "" -"User Installation Log\n" -"\n" +msgid "User Installation Log" msgstr "" "Файл регистрации пользовательской установки\n" "\n" -#: app/install.c:472 -msgid " does not exist. Cannot install.\n" +#: app/install.c:741 +msgid "GIMP Performance Tuning" +msgstr "" + +#: app/install.c:744 +msgid "For optimal GIMP performance, some settings may have to be adjusted." +msgstr "" + +#: app/install.c:751 +msgid "Click \"Continue\" to accept the settings above." +msgstr "" + +#: app/install.c:760 +#, fuzzy +msgid "Monitor Resolution" +msgstr "Установить разрешение монитора" + +#: app/install.c:763 +msgid "" +"To display images in their natural size, GIMP needs to know your monitor " +"resolution." +msgstr "" + +#: app/install.c:771 +msgid "Click \"Continue\" to start The GIMP." +msgstr "" + +#: app/install.c:845 +#, fuzzy +msgid "does not exist. Cannot install." msgstr " не существует. Установка невозможна.\n" -#: app/install.c:480 -msgid "" -" has invalid permissions.\n" -"Cannot install." +#: app/install.c:857 +#, fuzzy +msgid "has invalid permissions. Cannot install." msgstr "" " имеет неправильные права доступа.\n" "Установка невозможна." -#: app/install.c:514 +#: app/install.c:895 +#, fuzzy msgid "" -"Did you notice any error messages\n" -"in the console window? If not, installation\n" -"was successful! Otherwise, quit and investigate\n" -"the possible reason...\n" +"Did you notice any error messages in the console window?\n" +"If not, installation was successful!\n" +"Otherwise, quit and investigate the possible reason..." msgstr "" "Вы получали какие-либо сообщения об ошибках\n" "в консольном окне? Если нет, установка была\n" "успешной! В противном случае, выйдите и исследуйте\n" "возможные причины...\n" -#: app/install.c:546 +#: app/install.c:955 +#, fuzzy msgid "" -"\n" -"Installation successful!\n" +"Did you notice any error messages in the lines above?\n" +"If not, installation was successful!\n" +"Otherwise, quit and investigate the possible reason..." msgstr "" -"\n" -"Установка успешна!\n" +"Вы получали какие-либо сообщения об ошибках\n" +"в консольном окне? Если нет, установка была\n" +"успешной! В противном случае, выйдите и исследуйте\n" +"возможные причины...\n" -#: app/install.c:555 -msgid "" -"\n" -"Installation failed. Contact system administrator.\n" +#: app/install.c:969 +msgid "Click \"Continue\" to complete GIMP installation." +msgstr "" + +#: app/install.c:978 +#, fuzzy +msgid "Installation failed. Contact system administrator." msgstr "" "\n" "Установка не удалась. Обратитесь к системному администратору.\n" +#: app/install.c:999 +msgid "" +"GIMP uses a limited amount of memory to store image data, the so-called\n" +"\"Tile Cache\". You should adjust it's size to fit into memory. Consider\n" +"the amount of memory used by other running processes." +msgstr "" + +#: app/install.c:1015 app/preferences_dialog.c:2102 +msgid "Tile Cache Size:" +msgstr "Размер кэша для орнаментов" + +#: app/install.c:1025 +msgid "" +"All image and undo data which doesn't fit into the Tile Cache will be\n" +"written to a swap file. This file should be located on a local filesystem\n" +"with enough free space (several hundred MB). On a UNIX system, you\n" +"may want to use the system-wide temp-dir (\"/tmp\" or \"/var/tmp\")." +msgstr "" + +#: app/install.c:1035 app/preferences_dialog.c:2361 +msgid "Select Swap Dir" +msgstr "Выбрать каталог подкачки" + +#: app/install.c:1041 +#, fuzzy +msgid "Swap Directory:" +msgstr "Каталог подкачки:" + +#: app/install.c:1063 +msgid "" +"GIMP can obtain this information from your X-server.\n" +"However, most X-servers do not return useful values." +msgstr "" + +#: app/install.c:1070 +#, fuzzy, c-format +msgid "Get Resolution from X-server (Currently %d x %d dpi)" +msgstr "(сейчас %d x %d dpi)" + +#: app/install.c:1087 +msgid "Alternatively, you can set the monitor resolution manually." +msgstr "" + +#: app/install.c:1102 +#, fuzzy +msgid "Monitor Resolution X:" +msgstr "Установить разрешение монитора" + #: app/interface.c:312 msgid "" "Foreground & background colors. The black and white squares reset colors. " @@ -2893,8 +3013,8 @@ msgstr "UI msgid "Guide procedures" msgstr "Процедуры направляющей" -#: app/internal_procs.c:122 app/preferences_dialog.c:1772 -#: app/preferences_dialog.c:1774 +#: app/internal_procs.c:122 app/preferences_dialog.c:1733 +#: app/preferences_dialog.c:1735 msgid "Interface" msgstr "Интерфейс" @@ -3319,146 +3439,137 @@ msgid "degrees" msgstr "градусы" #. /File -#: app/menus.c:82 +#. the underscore installs an accelerator using the character that follows +#: app/menus.c:85 #, fuzzy msgid "/_File" msgstr "/Файл" -#: app/menus.c:84 app/menus.c:191 +#. /File +#: app/menus.c:87 app/menus.c:193 msgid "/File/New..." msgstr "/Файл/Новый..." -#: app/menus.c:86 app/menus.c:193 +#: app/menus.c:89 app/menus.c:195 msgid "/File/Open..." msgstr "/Файл/Открыть..." -#: app/menus.c:93 +#: app/menus.c:96 msgid "/File/Acquire" msgstr "/Файл/Захватить" -#: app/menus.c:98 +#: app/menus.c:101 msgid "/File/Preferences..." msgstr "/Файл/Настройки..." -#: app/menus.c:105 -msgid "/File/Dialogs" -msgstr "/Файл/Диалоги" - -#: app/menus.c:107 +#: app/menus.c:108 #, fuzzy msgid "/File/Dialogs/Layers, Channels & Paths..." msgstr "/Файл/Диалоги/Слои и каналы..." -#: app/menus.c:109 +#: app/menus.c:110 msgid "/File/Dialogs/Tool Options..." msgstr "/Файл/Диалоги/Параметры инструментов..." -#: app/menus.c:114 +#: app/menus.c:115 msgid "/File/Dialogs/Brushes..." msgstr "/Файл/Диалоги/Кисти..." -#: app/menus.c:116 +#: app/menus.c:117 msgid "/File/Dialogs/Patterns..." msgstr "/Файл/Диалоги/Шаблоны..." -#: app/menus.c:118 +#: app/menus.c:119 msgid "/File/Dialogs/Gradients..." msgstr "/Файл/Диалоги/Градиенты..." -#: app/menus.c:120 +#: app/menus.c:121 msgid "/File/Dialogs/Palette..." msgstr "/Файл/Диалоги/Палитра..." -#: app/menus.c:122 +#: app/menus.c:123 msgid "/File/Dialogs/Indexed Palette..." msgstr "/Файл/Диалоги/Индексированная палитра..." -#: app/menus.c:127 +#: app/menus.c:128 msgid "/File/Dialogs/Input Devices..." msgstr "/Файл/Диалоги/Устройства ввода..." -#: app/menus.c:129 +#: app/menus.c:130 msgid "/File/Dialogs/Device Status..." msgstr "/Файл/Диалоги/Состояние устройства..." -#: app/menus.c:134 +#: app/menus.c:135 msgid "/File/Dialogs/Document Index..." msgstr "/Файл/Диалоги/Индекс документов..." -#: app/menus.c:136 +#: app/menus.c:137 msgid "/File/Dialogs/Error Console..." msgstr "/Файл/Диалоги/Консоль ошибок..." -#: app/menus.c:138 +#: app/menus.c:139 msgid "/File/Dialogs/Display Filters..." msgstr "/Файл/Диалоги/Дисплейные фильтры..." -#: app/menus.c:148 app/menus.c:206 +#: app/menus.c:149 app/menus.c:208 msgid "/File/Quit" msgstr "/Файл/Выход" #. /Xtns -#: app/menus.c:153 +#. the underscore installs an accelerator using the character that follows +#: app/menus.c:155 #, fuzzy msgid "/_Xtns" msgstr "/Расш." -#: app/menus.c:155 +#: app/menus.c:157 msgid "/Xtns/Module Browser..." msgstr "/Расш./Просмотр модулей..." #. /Help -#: app/menus.c:163 +#. the underscore installs an accelerator using the character that follows +#: app/menus.c:166 #, fuzzy msgid "/_Help" msgstr "/Справка" -#: app/menus.c:165 +#: app/menus.c:168 msgid "/Help/Help..." msgstr "/Справка/Справка..." -#: app/menus.c:167 +#: app/menus.c:170 msgid "/Help/Context Help..." msgstr "/Справка/Контекстная помощь..." -#: app/menus.c:169 +#: app/menus.c:172 msgid "/Help/Tip of the Day..." msgstr "/Справка/Совет дня..." -#: app/menus.c:171 +#: app/menus.c:174 msgid "/Help/About..." msgstr "/Справка/О программе..." -#: app/menus.c:173 +#: app/menus.c:176 msgid "/Help/Dump Items (Debug)" msgstr "/Справка/Dump Items (Отладка)" -#. /File -#: app/menus.c:189 -msgid "/File" -msgstr "/Файл" - -#: app/menus.c:195 +#: app/menus.c:197 msgid "/File/Save" msgstr "/Файл/Сохранить" -#: app/menus.c:197 +#: app/menus.c:199 msgid "/File/Save As..." msgstr "/Файл/Сохранить как..." -#: app/menus.c:199 +#: app/menus.c:201 msgid "/File/Revert" msgstr "/Файл/Восстановить" -#: app/menus.c:204 +#: app/menus.c:206 msgid "/File/Close" msgstr "/Файл/Закрыть" #. /Edit -#: app/menus.c:214 -msgid "/Edit" -msgstr "/Правка" - #: app/menus.c:216 msgid "/Edit/Undo" msgstr "/Правка/Отменить" @@ -3489,682 +3600,598 @@ msgstr "/ #. /Edit/Buffer #: app/menus.c:236 -msgid "/Edit/Buffer" -msgstr "/Правка/Буфер" - -#: app/menus.c:238 msgid "/Edit/Buffer/Cut Named..." msgstr "/Правка/Буфер/Вырезать в буфер с именем..." -#: app/menus.c:240 +#: app/menus.c:238 msgid "/Edit/Buffer/Copy Named..." msgstr "/Правка/Буфер/Скопировать из буфера с именем..." -#: app/menus.c:242 +#: app/menus.c:240 msgid "/Edit/Buffer/Paste Named..." msgstr "/Правка/Буфер/Вставить из буфера с именем..." -#: app/menus.c:247 +#: app/menus.c:245 msgid "/Edit/Clear" msgstr "/Правка/Очистить" -#: app/menus.c:249 +#: app/menus.c:247 msgid "/Edit/Fill" msgstr "/Правка/Заполнить" -#: app/menus.c:251 +#: app/menus.c:249 msgid "/Edit/Stroke" msgstr "/Правка/Обводка" #. /Select -#: app/menus.c:259 -msgid "/Select" -msgstr "/Выделение" - -#: app/menus.c:261 +#: app/menus.c:257 msgid "/Select/Invert" msgstr "/Выделение/Инвертировать" -#: app/menus.c:263 +#: app/menus.c:259 msgid "/Select/All" msgstr "/Выделение/Выделить все" -#: app/menus.c:265 +#: app/menus.c:261 msgid "/Select/None" msgstr "/Выделение/Снять" -#: app/menus.c:267 +#: app/menus.c:263 msgid "/Select/Float" msgstr "/Выделение/Плавающее" -#: app/menus.c:272 +#: app/menus.c:268 msgid "/Select/Feather..." msgstr "/Выделение/Растушевка..." -#: app/menus.c:274 +#: app/menus.c:270 msgid "/Select/Sharpen" msgstr "/Выделение/Резкость" -#: app/menus.c:276 +#: app/menus.c:272 msgid "/Select/Shrink..." msgstr "/Выделение/Уменьшение..." -#: app/menus.c:278 +#: app/menus.c:274 msgid "/Select/Grow..." msgstr "/Выделение/Увеличение..." -#: app/menus.c:280 +#: app/menus.c:276 msgid "/Select/Border..." msgstr "/Выделение/Граница..." -#: app/menus.c:285 +#: app/menus.c:281 msgid "/Select/Save to Channel" msgstr "/Выделение/Сохранить в канале" #. /View -#: app/menus.c:290 -msgid "/View" -msgstr "/Просмотр" - -#: app/menus.c:292 +#: app/menus.c:286 msgid "/View/Zoom In" msgstr "/Просмотр/Увеличить масштаб" -#: app/menus.c:294 +#: app/menus.c:288 msgid "/View/Zoom Out" msgstr "/Просмотр/Уменьшить масштаб" #. /View/Zoom -#: app/menus.c:299 -msgid "/View/Zoom" -msgstr "/Просмотр/Масштаб" - -#: app/menus.c:301 +#: app/menus.c:293 msgid "/View/Zoom/16:1" msgstr "/Просмотр/Масштаб/16:1" -#: app/menus.c:303 +#: app/menus.c:295 msgid "/View/Zoom/8:1" msgstr "/Просмотр/Масштаб/8:1" -#: app/menus.c:305 +#: app/menus.c:297 msgid "/View/Zoom/4:1" msgstr "/Просмотр/Масштаб/4:1" -#: app/menus.c:307 +#: app/menus.c:299 msgid "/View/Zoom/2:1" msgstr "/Просмотр/Масштаб/2:1" -#: app/menus.c:309 +#: app/menus.c:301 msgid "/View/Zoom/1:1" msgstr "/Просмотр/Масштаб/1:1" -#: app/menus.c:311 +#: app/menus.c:303 msgid "/View/Zoom/1:2" msgstr "/Просмотр/Масштаб/1:2" -#: app/menus.c:313 +#: app/menus.c:305 msgid "/View/Zoom/1:4" msgstr "/Просмотр/Масштаб/1:4" -#: app/menus.c:315 +#: app/menus.c:307 msgid "/View/Zoom/1:8" msgstr "/Просмотр/Масштаб/1:8" -#: app/menus.c:317 +#: app/menus.c:309 msgid "/View/Zoom/1:16" msgstr "/Просмотр/Масштаб/1:16" -#: app/menus.c:320 +#: app/menus.c:312 msgid "/View/Dot for Dot" msgstr "/Просмотр/Точка за точкой" -#: app/menus.c:325 +#: app/menus.c:317 msgid "/View/Info Window..." msgstr "/Просмотр/Информация об окне..." -#: app/menus.c:327 +#: app/menus.c:319 msgid "/View/Nav. Window..." msgstr "/Просмотр/Окно навигации..." -#: app/menus.c:329 -msgid "/View/Undo History..." -msgstr "/Просмотр/История отмен..." - -#: app/menus.c:334 +#: app/menus.c:324 msgid "/View/Toggle Selection" msgstr "/Просмотр/Переключить выделение" -#: app/menus.c:336 +#: app/menus.c:326 msgid "/View/Toggle Rulers" msgstr "/Просмотр/Переключить линейки" -#: app/menus.c:338 +#: app/menus.c:328 msgid "/View/Toggle Statusbar" msgstr "/Просмотр/Переключить строка состояния" -#: app/menus.c:340 +#: app/menus.c:330 msgid "/View/Toggle Guides" msgstr "/Просмотр/Переключить направляющие" -#: app/menus.c:342 +#: app/menus.c:332 msgid "/View/Snap to Guides" msgstr "/Просмотр/Выравнивание по направляющим" -#: app/menus.c:347 +#: app/menus.c:337 msgid "/View/New View" msgstr "/Просмотр/Новое окно" -#: app/menus.c:349 +#: app/menus.c:339 msgid "/View/Shrink Wrap" msgstr "/Просмотр/Сокращение обернуть[FixMe]" -#. /Image -#: app/menus.c:357 -msgid "/Image" -msgstr "/Изображение" - #. /Image/Mode -#: app/menus.c:362 -msgid "/Image/Mode" -msgstr "/Изображение/Режим" - -#: app/menus.c:364 +#: app/menus.c:344 msgid "/Image/Mode/RGB" msgstr "/Изображение/Режим/RGB" -#: app/menus.c:366 +#: app/menus.c:346 msgid "/Image/Mode/Grayscale" msgstr "/Изображение/Режим/Градации серого" -#: app/menus.c:368 +#: app/menus.c:348 msgid "/Image/Mode/Indexed..." msgstr "/Изображение/Режим/Индексированное..." #. /Image/Colors -#: app/menus.c:376 -msgid "/Image/Colors" -msgstr "/Изображение/Цвета" - -#: app/menus.c:381 +#: app/menus.c:356 msgid "/Image/Colors/Desaturate" msgstr "/Изображение/Цвета/Обесцветить" -#: app/menus.c:383 +#: app/menus.c:358 msgid "/Image/Colors/Invert" msgstr "/Изображение/Цвета/Инвертировать" #. /Image/Colors/Auto -#: app/menus.c:391 -msgid "/Image/Colors/Auto" -msgstr "/Изображение/Цвета/Авто" - -#: app/menus.c:393 +#: app/menus.c:366 msgid "/Image/Colors/Auto/Equalize" msgstr "/Изображение/Цвета/Авто/Выровнять" #. /Image/Alpha -#: app/menus.c:401 -msgid "/Image/Alpha" -msgstr "/Изображение/Альфа-канал" - -#: app/menus.c:403 +#: app/menus.c:374 msgid "/Image/Alpha/Add Alpha Channel" msgstr "/Изображение/Альфа-канал/Добавить альфа-канал" #. /Image/Transforms -#: app/menus.c:408 -msgid "/Image/Transforms" -msgstr "/Изображение/Преобразования" - -#: app/menus.c:410 +#: app/menus.c:379 msgid "/Image/Transforms/Offset..." msgstr "/Изображение/Преобразования/Смещение..." -#: app/menus.c:412 +#: app/menus.c:381 msgid "/Image/Transforms/Rotate" msgstr "/Изображение/Преобразования/Вращение" -#: app/menus.c:419 +#: app/menus.c:388 msgid "/Image/Canvas Size..." msgstr "/Изображение/Размер холста..." -#: app/menus.c:421 +#: app/menus.c:390 msgid "/Image/Scale Image..." msgstr "/Изображение/Масштабировать..." -#: app/menus.c:423 +#: app/menus.c:392 msgid "/Image/Duplicate" msgstr "/Изображение/Создать копию" #. /Layers -#: app/menus.c:431 -msgid "/Layers" -msgstr "/Слои" - -#: app/menus.c:433 +#: app/menus.c:400 #, fuzzy msgid "/Layers/Layers, Channels & Paths..." msgstr "/Слои/Слои и каналы..." -#. /Layers/Stack -#: app/menus.c:438 -msgid "/Layers/Stack" -msgstr "/Слои/Стопка" +#: app/menus.c:404 +msgid "/Layers/Layer to Imagesize" +msgstr "/Слои/Изм. размер по изображению" -#: app/menus.c:440 +#. /Layers/Stack +#: app/menus.c:409 msgid "/Layers/Stack/Previous Layer" msgstr "/Слои/Стопка/Предыдущий слой" -#: app/menus.c:442 +#: app/menus.c:411 msgid "/Layers/Stack/Next Layer" msgstr "/Слои/Стопка/Следующий слой" -#: app/menus.c:444 +#: app/menus.c:413 msgid "/Layers/Stack/Raise Layer" msgstr "/Слои/Стопка/Поднять слой" -#: app/menus.c:446 +#: app/menus.c:415 msgid "/Layers/Stack/Lower Layer" msgstr "/Слои/Стопка/Опустить слой" -#: app/menus.c:448 +#: app/menus.c:417 msgid "/Layers/Stack/Layer to Top" msgstr "/Слои/Стопка/Поднять слой до верху" -#: app/menus.c:450 +#: app/menus.c:419 msgid "/Layers/Stack/Layer to Bottom" msgstr "/Слои/Стопка/Опустить слой до низу" #. /Layers/Rotate -#: app/menus.c:457 +#: app/menus.c:426 msgid "/Layers/Rotate" msgstr "/Слои/Вращение" -#: app/menus.c:460 -msgid "/Layers/Layer to Imagesize" -msgstr "/Слои/Изм. размер по изображению" - -#: app/menus.c:465 +#: app/menus.c:431 msgid "/Layers/Anchor Layer" msgstr "/Слои/Прицепить слой" -#: app/menus.c:467 +#: app/menus.c:433 msgid "/Layers/Merge Visible Layers..." msgstr "/Слои/Объединить видимые слои..." -#: app/menus.c:469 +#: app/menus.c:435 msgid "/Layers/Flatten Image" msgstr "/Слои/Свести изображение" -#: app/menus.c:474 +#: app/menus.c:440 msgid "/Layers/Mask to Selection" msgstr "/Слои/Маска -> Выделение" -#: app/menus.c:479 +#: app/menus.c:445 msgid "/Layers/Add Alpha Channel" msgstr "/Слои/Новый альфа-канал" -#: app/menus.c:481 +#: app/menus.c:447 msgid "/Layers/Alpha to Selection" msgstr "/Слои/Альфа-канал -> Выделение" #. /Tools -#: app/menus.c:489 -msgid "/Tools" -msgstr "/Инструменты" - -#: app/menus.c:491 +#: app/menus.c:455 msgid "/Tools/Toolbox" msgstr "/Инструменты/Панель инструментов" -#: app/menus.c:493 +#: app/menus.c:457 msgid "/Tools/Default Colors" msgstr "/Инструменты/Цвета по умолчанию" -#: app/menus.c:495 +#: app/menus.c:459 msgid "/Tools/Swap Colors" msgstr "/Инструменты/Поменять цвета" -#: app/menus.c:501 -#, fuzzy -msgid "/Tools/Select Tools" -msgstr "/Инструменты/Прямоугольник" - -#: app/menus.c:503 -#, fuzzy -msgid "/Tools/Transform Tools" -msgstr "/Инструменты/Вращатель" - -#: app/menus.c:505 -#, fuzzy -msgid "/Tools/Paint Tools" -msgstr "/Инструменты/Кисть" - #. /Dialogs -#: app/menus.c:510 -msgid "/Dialogs" -msgstr "/Диалоги" - -#: app/menus.c:512 +#: app/menus.c:466 #, fuzzy msgid "/Dialogs/Layers, Channels & Paths..." msgstr "/Диалоги/Слои и каналы..." -#: app/menus.c:514 +#: app/menus.c:468 msgid "/Dialogs/Tool Options..." msgstr "/Диалоги/Параметры инструментов..." -#: app/menus.c:519 +#: app/menus.c:473 msgid "/Dialogs/Brushes..." msgstr "/Диалоги/Кисти..." -#: app/menus.c:521 +#: app/menus.c:475 msgid "/Dialogs/Patterns..." msgstr "/Диалоги/Шаблоны..." -#: app/menus.c:523 +#: app/menus.c:477 msgid "/Dialogs/Gradients..." msgstr "/Диалоги/Градиенты..." -#: app/menus.c:525 +#: app/menus.c:479 msgid "/Dialogs/Palette..." msgstr "/Диалоги/Палитра...." -#: app/menus.c:527 +#: app/menus.c:481 msgid "/Dialogs/Indexed Palette..." msgstr "/Диалоги/Индексированная палитра..." -#: app/menus.c:532 +#: app/menus.c:486 msgid "/Dialogs/Input Devices..." msgstr "/Диалоги/Устройства ввода..." -#: app/menus.c:534 +#: app/menus.c:488 msgid "/Dialogs/Device Status..." msgstr "/Диалоги/Состояние устройства..." -#: app/menus.c:539 +#: app/menus.c:493 msgid "/Dialogs/Document Index..." msgstr "/Диалоги/Индекс документов..." -#: app/menus.c:541 +#: app/menus.c:495 msgid "/Dialogs/Error Console..." msgstr "/Диалоги/Консоль ошибок..." -#: app/menus.c:543 +#: app/menus.c:497 msgid "/Dialogs/Display Filters..." msgstr "/Диалоги/Экранные фильтры..." -#. /Filters -#: app/menus.c:551 -msgid "/Filters" -msgstr "/Фильтры" +#: app/menus.c:499 +#, fuzzy +msgid "/Dialogs/Undo History..." +msgstr "/Просмотр/История отмен..." -#: app/menus.c:553 +#. /Filters +#: app/menus.c:508 msgid "/Filters/Repeat Last" msgstr "/Фильтры/Повторить последний" -#: app/menus.c:555 +#: app/menus.c:510 msgid "/Filters/Re-Show Last" msgstr "/Фильтры/Показать последний" -#: app/menus.c:561 +#: app/menus.c:515 msgid "/Filters/Blur" msgstr "/Фильтры/Размывание" -#: app/menus.c:564 +#: app/menus.c:517 msgid "/Filters/Colors" msgstr "/Фильтры/Цвета" -#: app/menus.c:569 +#: app/menus.c:519 msgid "/Filters/Noise" msgstr "/Фильтры/Шум" -#: app/menus.c:571 +#: app/menus.c:521 msgid "/Filters/Edge-Detect" msgstr "/Фильтры/Выделение края" -#: app/menus.c:573 +#: app/menus.c:523 msgid "/Filters/Enhance" msgstr "/Фильтры/Enhance" -#: app/menus.c:575 +#: app/menus.c:525 msgid "/Filters/Generic" msgstr "/Фильтры/Общие" -#: app/menus.c:580 +#: app/menus.c:530 msgid "/Filters/Glass Effects" msgstr "/Фильтры/Эффекты стёкол" -#: app/menus.c:582 +#: app/menus.c:532 msgid "/Filters/Light Effects" msgstr "/Фильтры/Световый эффекты" -#: app/menus.c:584 +#: app/menus.c:534 msgid "/Filters/Distorts" msgstr "/Фильтры/Искажения" -#: app/menus.c:586 +#: app/menus.c:536 msgid "/Filters/Artistic" msgstr "/Фильтры/Иммитация" -#: app/menus.c:588 +#: app/menus.c:538 msgid "/Filters/Map" msgstr "/Фильтры/Карта" -#: app/menus.c:590 +#: app/menus.c:540 msgid "/Filters/Render" msgstr "/Фильтры/Визуализация" -#: app/menus.c:592 +#: app/menus.c:542 msgid "/Filters/Web" msgstr "/Фильтры/Веб" -#: app/menus.c:597 +#: app/menus.c:547 msgid "/Filters/Animation" msgstr "/Фильтры/Анимация" -#: app/menus.c:599 +#: app/menus.c:549 msgid "/Filters/Combine" msgstr "/Фильтры/Объединение" -#: app/menus.c:604 +#: app/menus.c:554 msgid "/Filters/Toys" msgstr "/Фильтры/Развлечения" -#. /Script-Fu -#: app/menus.c:609 -msgid "/Script-Fu" -msgstr "/Script-Fu" - -#: app/menus.c:620 +#: app/menus.c:567 msgid "/Automatic" msgstr "/Автоматически" -#: app/menus.c:634 +#: app/menus.c:581 #, fuzzy msgid "/By Extension" msgstr "/По расширению" -#: app/menus.c:648 +#: app/menus.c:595 msgid "/New Layer..." msgstr "/Новый слой..." #. /Stack -#: app/menus.c:653 -msgid "/Stack" -msgstr "/Стопка" - -#: app/menus.c:655 +#: app/menus.c:600 msgid "/Stack/Raise Layer" msgstr "/Стопка/Поднять слой" -#: app/menus.c:657 +#: app/menus.c:602 msgid "/Stack/Lower Layer" msgstr "/Стопка/Опустить слой" -#: app/menus.c:659 +#: app/menus.c:604 msgid "/Stack/Layer to Top" msgstr "/Стопка/Поднять слой до верху" -#: app/menus.c:661 +#: app/menus.c:606 msgid "/Stack/Layer to Bottom" msgstr "/Стопка/Опустить слой до низу" -#: app/menus.c:664 +#: app/menus.c:609 msgid "/Duplicate Layer" msgstr "/Создать копию слоя" -#: app/menus.c:666 +#: app/menus.c:611 msgid "/Anchor Layer" msgstr "/Прицепить слой" -#: app/menus.c:668 +#: app/menus.c:613 msgid "/Delete Layer" msgstr "/Удалить слой" -#: app/menus.c:673 +#: app/menus.c:618 msgid "/Layer Boundary Size..." msgstr "/Слой Boundary Size..." -#: app/menus.c:675 +#: app/menus.c:620 msgid "/Layer to Imagesize" msgstr "/Изм. размер по изображению" -#: app/menus.c:677 +#: app/menus.c:622 msgid "/Scale Layer..." msgstr "/Масштабировать слой..." -#: app/menus.c:682 +#: app/menus.c:627 msgid "/Merge Visible Layers..." msgstr "/Объединить видимые слои..." -#: app/menus.c:684 +#: app/menus.c:629 msgid "/Merge Down" msgstr "/Объединить с предыдущим" -#: app/menus.c:686 +#: app/menus.c:631 msgid "/Flatten Image" msgstr "/Свести изображение" -#: app/menus.c:691 +#: app/menus.c:636 msgid "/Add Layer Mask..." msgstr "/Добавить маску слоя..." -#: app/menus.c:693 +#: app/menus.c:638 #, fuzzy msgid "/Apply Layer Mask" msgstr "/Применить маску слоя..." -#: app/menus.c:695 +#: app/menus.c:640 #, fuzzy msgid "/Delete Layer Mask" msgstr "/Удалить слой" -#: app/menus.c:697 +#: app/menus.c:642 msgid "/Mask to Selection" msgstr "/Маска -> Выделенная область" -#: app/menus.c:702 +#: app/menus.c:647 msgid "/Add Alpha Channel" msgstr "/Добавить альфа-канал" -#: app/menus.c:704 +#: app/menus.c:649 msgid "/Alpha to Selection" msgstr "/Альфа-канал -> Выделенная область" -#: app/menus.c:709 +#: app/menus.c:654 #, fuzzy msgid "/Edit Layer Attributes..." msgstr "Правка атрибутов слоя" -#: app/menus.c:720 +#: app/menus.c:665 msgid "/New Channel..." msgstr "/Новый канал..." -#: app/menus.c:722 +#: app/menus.c:667 msgid "/Raise Channel" msgstr "/Поднять канал" -#: app/menus.c:724 +#: app/menus.c:669 msgid "/Lower Channel" msgstr "/Опустить канал" -#: app/menus.c:726 +#: app/menus.c:671 msgid "/Duplicate Channel" msgstr "/Создать копию канала" -#: app/menus.c:731 +#: app/menus.c:676 msgid "/Channel to Selection" msgstr "/Канал -> Выделение" -#: app/menus.c:733 +#: app/menus.c:678 msgid "/Add to Selection" msgstr "/Добавить к выделению" -#: app/menus.c:735 +#: app/menus.c:680 msgid "/Subtract from Selection" msgstr "/Вычесть из выделения" -#: app/menus.c:737 +#: app/menus.c:682 msgid "/Intersect with Selection" msgstr "/Пересечь с выделением" -#: app/menus.c:742 +#: app/menus.c:687 msgid "/Delete Channel" msgstr "/Удалить канал" -#: app/menus.c:747 +#: app/menus.c:692 #, fuzzy msgid "/Edit Channel Attributes..." msgstr "Редактирование атрибутов канала" -#: app/menus.c:758 +#: app/menus.c:703 msgid "/New Path" msgstr "/Новый контур" -#: app/menus.c:760 +#: app/menus.c:705 msgid "/Duplicate Path" msgstr "/Создать копию контура" -#: app/menus.c:762 +#: app/menus.c:707 msgid "/Path to Selection" msgstr "/Контур -> Выделенная область" -#: app/menus.c:764 +#: app/menus.c:709 msgid "/Selection to Path" msgstr "/Контур -> Выделенная область" -#: app/menus.c:766 +#: app/menus.c:711 msgid "/Stroke Path" msgstr "/Обвести по контуру" -#: app/menus.c:768 +#: app/menus.c:713 msgid "/Delete Path" msgstr "/Удалить контур" -#: app/menus.c:773 +#: app/menus.c:718 msgid "/Copy Path" msgstr "/Скопировать контур" -#: app/menus.c:775 +#: app/menus.c:720 msgid "/Paste Path" msgstr "/Вставить контур" -#: app/menus.c:777 +#: app/menus.c:722 msgid "/Import Path..." msgstr "/Импортировать контур..." -#: app/menus.c:779 +#: app/menus.c:724 msgid "/Export Path..." msgstr "/Экспортировать контур..." -#: app/menus.c:784 +#: app/menus.c:729 #, fuzzy msgid "/Edit Path Attributes..." msgstr "Правка атрибутов слоя" -#: app/menus.c:1310 +#: app/menus.c:1260 #, c-format msgid "Error opening file: %s\n" msgstr "Ошибка при открытии файла: %s\n" @@ -4260,7 +4287,7 @@ msgstr " msgid "Autoload during startup" msgstr "Автозагрузка при запуске" -#: app/move.c:456 +#: app/move.c:458 #, fuzzy msgid "Move Tool" msgstr "Параметры перемещения" @@ -4275,7 +4302,7 @@ msgstr " msgid "Navigation: No Image" msgstr "Навигация: Нет изображения" -#: app/paint_core.c:717 +#: app/paint_core.c:735 msgid "No brushes available for use with this tool." msgstr "Нет кистей доступных для использования с этим инструментом." @@ -4713,482 +4740,476 @@ msgstr "" msgid "You will need to restart GIMP for these changes to take effect." msgstr "Чтобы эти изменения подействовали, надо перезапустить GIMP." -#: app/preferences_dialog.c:1459 +#: app/preferences_dialog.c:1002 +#, c-format +msgid "The default comments is limited to %d characters." +msgstr "" + +#: app/preferences_dialog.c:1424 msgid "Preferences" msgstr "Настройки" #. The categories tree -#: app/preferences_dialog.c:1481 +#: app/preferences_dialog.c:1446 msgid "Categories" msgstr "Категории" -#: app/preferences_dialog.c:1509 app/preferences_dialog.c:1511 +#: app/preferences_dialog.c:1474 app/preferences_dialog.c:1476 msgid "New File" msgstr "Новый файл" -#: app/preferences_dialog.c:1522 +#: app/preferences_dialog.c:1487 msgid "Default Image Size and Unit" msgstr "Размер и единицы измерения изображения по умолчанию" -#: app/preferences_dialog.c:1536 +#: app/preferences_dialog.c:1501 msgid "Width" msgstr "Ширина" -#: app/preferences_dialog.c:1538 +#: app/preferences_dialog.c:1503 msgid "Height" msgstr "Высота" -#: app/preferences_dialog.c:1568 +#: app/preferences_dialog.c:1533 msgid "Default Image Resolution and Resolution Unit" msgstr "Разрешение изображения и единицы измерения разрешения по умолчанию" -#: app/preferences_dialog.c:1595 app/preferences_dialog.c:2359 +#: app/preferences_dialog.c:1560 app/preferences_dialog.c:2288 msgid "dpi" msgstr "dpi" -#: app/preferences_dialog.c:1642 +#: app/preferences_dialog.c:1607 msgid "Default Image Type:" msgstr "Тип изображения по умолчанию:" -#: app/preferences_dialog.c:1678 app/preferences_dialog.c:2166 -msgid "Bytes" -msgstr "Байты" - -#: app/preferences_dialog.c:1679 app/preferences_dialog.c:2167 -msgid "KiloBytes" -msgstr "Килобайты" - -#: app/preferences_dialog.c:1680 app/preferences_dialog.c:2168 -msgid "MegaBytes" -msgstr "Мегабайты" - -#: app/preferences_dialog.c:1686 +#: app/preferences_dialog.c:1618 msgid "Maximum Image Size:" msgstr "Максимальный размер изображения:" -#: app/preferences_dialog.c:1692 app/preferences_dialog.c:1694 +#: app/preferences_dialog.c:1623 app/preferences_dialog.c:1625 +#, fuzzy +msgid "Default Comment" +msgstr "По умолчанию" + +#: app/preferences_dialog.c:1633 +msgid "Comment Used for New Images" +msgstr "" + +#: app/preferences_dialog.c:1653 app/preferences_dialog.c:1655 msgid "Display" msgstr "Дисплей" -#: app/preferences_dialog.c:1702 +#: app/preferences_dialog.c:1663 msgid "Transparency" msgstr "Прозрачность" -#: app/preferences_dialog.c:1721 +#: app/preferences_dialog.c:1682 msgid "Light Checks" msgstr "Блики" -#: app/preferences_dialog.c:1722 +#: app/preferences_dialog.c:1683 msgid "Mid-Tone Checks" msgstr "Полутона" -#: app/preferences_dialog.c:1723 +#: app/preferences_dialog.c:1684 msgid "Dark Checks" msgstr "Затемнения" -#: app/preferences_dialog.c:1724 +#: app/preferences_dialog.c:1685 msgid "White Only" msgstr "Только белое" -#: app/preferences_dialog.c:1725 +#: app/preferences_dialog.c:1686 msgid "Gray Only" msgstr "Только серое" -#: app/preferences_dialog.c:1726 +#: app/preferences_dialog.c:1687 msgid "Black Only" msgstr "Только черное" -#: app/preferences_dialog.c:1730 +#: app/preferences_dialog.c:1691 msgid "Transparency Type:" msgstr "Тип прозрачности:" -#: app/preferences_dialog.c:1737 app/preferences_dialog.c:1810 -#: app/preferences_dialog.c:1824 +#: app/preferences_dialog.c:1698 app/preferences_dialog.c:1771 +#: app/preferences_dialog.c:1785 msgid "Small" msgstr "Маленький" -#: app/preferences_dialog.c:1738 app/preferences_dialog.c:1811 -#: app/preferences_dialog.c:1825 +#: app/preferences_dialog.c:1699 app/preferences_dialog.c:1772 +#: app/preferences_dialog.c:1786 msgid "Medium" msgstr "Средний" -#: app/preferences_dialog.c:1739 app/preferences_dialog.c:1812 -#: app/preferences_dialog.c:1826 +#: app/preferences_dialog.c:1700 app/preferences_dialog.c:1773 +#: app/preferences_dialog.c:1787 msgid "Large" msgstr "Большой" -#: app/preferences_dialog.c:1743 +#: app/preferences_dialog.c:1704 msgid "Check Size:" msgstr "" -#: app/preferences_dialog.c:1746 +#: app/preferences_dialog.c:1707 msgid "8-Bit Displays" msgstr "8-Bit дисплей" -#: app/preferences_dialog.c:1751 +#: app/preferences_dialog.c:1712 msgid "Install Colormap" msgstr "Установить цветовую карту" -#: app/preferences_dialog.c:1760 +#: app/preferences_dialog.c:1721 msgid "Colormap Cycling" msgstr "" -#: app/preferences_dialog.c:1809 +#: app/preferences_dialog.c:1770 msgid "Tiny" msgstr "Тонкий" -#: app/preferences_dialog.c:1813 +#: app/preferences_dialog.c:1774 msgid "Huge" msgstr "Огромный" -#: app/preferences_dialog.c:1817 +#: app/preferences_dialog.c:1778 msgid "Preview Size:" msgstr "Размер пред.просмотра:" -#: app/preferences_dialog.c:1830 +#: app/preferences_dialog.c:1791 msgid "Nav Preview Size:" msgstr "Размер просмотра навигации" -#: app/preferences_dialog.c:1840 +#: app/preferences_dialog.c:1801 msgid "Recent Documents List Size:" msgstr "Размер списка открывавшихся документов:" #. Indicators -#: app/preferences_dialog.c:1844 +#: app/preferences_dialog.c:1805 #, fuzzy msgid "Toolbox" msgstr "/Инструменты/Панель инструментов" -#: app/preferences_dialog.c:1847 +#: app/preferences_dialog.c:1808 #, fuzzy msgid "Display Brush, Pattern and Gradient Indicators" msgstr "Показывать индикатор кисти и шаблона на панели инструментов" -#: app/preferences_dialog.c:1856 +#: app/preferences_dialog.c:1817 msgid "Dialog Behaviour" msgstr "Поведение диалога" -#: app/preferences_dialog.c:1858 +#: app/preferences_dialog.c:1819 msgid "Navigation Window per Display" msgstr "Навигационных окон на экране" -#: app/preferences_dialog.c:1867 +#: app/preferences_dialog.c:1828 msgid "Info Window Follows Mouse" msgstr "Информационное окно следует за мышью" -#: app/preferences_dialog.c:1878 app/preferences_dialog.c:1880 +#: app/preferences_dialog.c:1839 app/preferences_dialog.c:1841 msgid "Help System" msgstr "Система помощи" -#: app/preferences_dialog.c:1890 +#: app/preferences_dialog.c:1851 msgid "Show Tool Tips" msgstr "Показывать подсказки" -#: app/preferences_dialog.c:1900 +#: app/preferences_dialog.c:1861 msgid "Context Sensitive Help with \"F1\"" msgstr "Контекстная помощь по \"F1\"" -#: app/preferences_dialog.c:1909 +#: app/preferences_dialog.c:1870 msgid "Help Browser" msgstr "Справочная система" -#: app/preferences_dialog.c:1921 +#: app/preferences_dialog.c:1882 msgid "Internal" msgstr "Интервал:" -#: app/preferences_dialog.c:1922 +#: app/preferences_dialog.c:1883 msgid "Netscape" msgstr "Netscape" -#: app/preferences_dialog.c:1926 +#: app/preferences_dialog.c:1887 msgid "Help Browser to Use:" msgstr "" -#: app/preferences_dialog.c:1931 app/preferences_dialog.c:1933 +#: app/preferences_dialog.c:1892 app/preferences_dialog.c:1894 msgid "Image Windows" msgstr "Окно изображения" -#: app/preferences_dialog.c:1941 +#: app/preferences_dialog.c:1902 msgid "Appearance" msgstr "Внешний вид" -#: app/preferences_dialog.c:1943 +#: app/preferences_dialog.c:1904 msgid "Use \"Dot for Dot\" by default" msgstr "" -#: app/preferences_dialog.c:1952 +#: app/preferences_dialog.c:1913 msgid "Resize Window on Zoom" msgstr "Изменять размер окна при масштабировании" -#: app/preferences_dialog.c:1961 +#: app/preferences_dialog.c:1922 msgid "Show Rulers" msgstr "Показывать линейки прокрутки" -#: app/preferences_dialog.c:1970 +#: app/preferences_dialog.c:1931 msgid "Show Statusbar" msgstr "Показывать строку состояния" -#: app/preferences_dialog.c:1994 +#: app/preferences_dialog.c:1955 msgid "Marching Ants Speed:" msgstr "Скорость муравьиной дорожки:" #. Set the currently used string as "Custom" -#: app/preferences_dialog.c:2002 +#: app/preferences_dialog.c:1963 msgid "Custom" msgstr "По выбору" #. set some commonly used format strings -#: app/preferences_dialog.c:2008 +#: app/preferences_dialog.c:1969 msgid "Standard" msgstr "Стандартный" -#: app/preferences_dialog.c:2013 +#: app/preferences_dialog.c:1974 msgid "Show zoom percentage" msgstr "Показывать масштаб в %" -#: app/preferences_dialog.c:2018 +#: app/preferences_dialog.c:1979 msgid "Show zoom ratio" msgstr "Показывать масштабный коэффициент" -#: app/preferences_dialog.c:2023 +#: app/preferences_dialog.c:1984 msgid "Show reversed zoom ratio" msgstr "Показывать обратный масштабный коэффициент" -#: app/preferences_dialog.c:2034 +#: app/preferences_dialog.c:1995 msgid "Image Title Format:" msgstr "Формат заголовка изображения:" #. End of the title format string -#: app/preferences_dialog.c:2038 +#: app/preferences_dialog.c:1999 msgid "Pointer Movement Feedback" msgstr "Обратная связь движения указателя" -#: app/preferences_dialog.c:2041 +#: app/preferences_dialog.c:2002 #, fuzzy msgid "Perfect-but-Slow Pointer Tracking" msgstr "Совершенное-но-медленное движение указателя" -#: app/preferences_dialog.c:2050 +#: app/preferences_dialog.c:2011 msgid "Disable Cursor Updating" msgstr "Отключить обновление курсора" -#: app/preferences_dialog.c:2062 app/preferences_dialog.c:2064 +#: app/preferences_dialog.c:2023 app/preferences_dialog.c:2025 #: app/tools.c:1080 msgid "Tool Options" msgstr "Параметры инструментов" -#: app/preferences_dialog.c:2072 +#: app/preferences_dialog.c:2033 msgid "Paint Options" msgstr "Параметры кисти" -#: app/preferences_dialog.c:2075 +#: app/preferences_dialog.c:2036 msgid "Use Global Paint Options" msgstr "Использовать глобальные параметры кисти" -#: app/preferences_dialog.c:2090 app/preferences_dialog.c:2092 +#: app/preferences_dialog.c:2051 app/preferences_dialog.c:2053 msgid "Environment" msgstr "Окружение" -#: app/preferences_dialog.c:2100 +#: app/preferences_dialog.c:2061 msgid "Resource Consumption" msgstr "Конфигурирование ресурсов" -#: app/preferences_dialog.c:2102 +#: app/preferences_dialog.c:2063 msgid "Conservative Memory Usage" msgstr "Консервативное использование памяти" -#: app/preferences_dialog.c:2130 +#: app/preferences_dialog.c:2091 msgid "Levels of Undo:" msgstr "Уровней отката:" -#: app/preferences_dialog.c:2174 -msgid "Tile Cache Size:" -msgstr "Размер кэша для орнаментов" - -#: app/preferences_dialog.c:2185 +#: app/preferences_dialog.c:2113 msgid "Number of Processors to Use:" msgstr "Число используемых процессоров:" -#: app/preferences_dialog.c:2189 app/transform_tool.c:215 +#: app/preferences_dialog.c:2117 app/transform_tool.c:215 msgid "Scaling" msgstr "Масштабирование" -#: app/preferences_dialog.c:2207 +#: app/preferences_dialog.c:2135 msgid "Nearest Neighbor (Fast)" msgstr "По ближайшему соседу (Быстро)" -#: app/preferences_dialog.c:2211 +#: app/preferences_dialog.c:2139 msgid "Cubic (Slow)" msgstr "Кубическая (медленно)" -#: app/preferences_dialog.c:2216 +#: app/preferences_dialog.c:2144 msgid "Interpolation Type:" msgstr "Тип интерполяции:" -#: app/preferences_dialog.c:2219 +#: app/preferences_dialog.c:2147 msgid "File Saving" msgstr "Сохранение файла" -#: app/preferences_dialog.c:2236 app/preferences_dialog.c:2249 +#: app/preferences_dialog.c:2164 app/preferences_dialog.c:2177 msgid "Always" msgstr "Всегда" -#: app/preferences_dialog.c:2237 +#: app/preferences_dialog.c:2165 msgid "Never" msgstr "Никогда" -#: app/preferences_dialog.c:2241 +#: app/preferences_dialog.c:2169 msgid "Try to Write a Thumbnail File:" msgstr "Пытаться записать файл эскиза:" -#: app/preferences_dialog.c:2248 +#: app/preferences_dialog.c:2176 #, fuzzy msgid "Only when Modified" msgstr "Только если был изменён" -#: app/preferences_dialog.c:2253 +#: app/preferences_dialog.c:2181 #, fuzzy msgid "\"File > Save\" Saves the Image:" msgstr "'Файл > Сохранить' сохраняет изображение:" -#: app/preferences_dialog.c:2259 +#: app/preferences_dialog.c:2187 msgid "Session Management" msgstr "Управление сеансом" -#: app/preferences_dialog.c:2261 +#: app/preferences_dialog.c:2189 msgid "Session" msgstr "Сеанс" -#: app/preferences_dialog.c:2269 +#: app/preferences_dialog.c:2197 msgid "Window Positions" msgstr "Позиция окна" -#: app/preferences_dialog.c:2271 +#: app/preferences_dialog.c:2199 msgid "Save Window Positions on Exit" msgstr "Сохранять позицию окна при выходе" -#: app/preferences_dialog.c:2285 +#: app/preferences_dialog.c:2213 msgid "Clear Saved Window Positions Now" msgstr "Очистить сохраненную позицию окна" -#: app/preferences_dialog.c:2293 +#: app/preferences_dialog.c:2221 msgid "Always Try to Restore Session" msgstr "Всегда пытаться восстановить сеанс" -#: app/preferences_dialog.c:2302 +#: app/preferences_dialog.c:2230 msgid "Devices" msgstr "Устройства" -#: app/preferences_dialog.c:2304 +#: app/preferences_dialog.c:2232 msgid "Save Device Status on Exit" msgstr "Сохранять состояние устройства при выходе" -#: app/preferences_dialog.c:2315 app/preferences_dialog.c:2317 +#: app/preferences_dialog.c:2243 app/preferences_dialog.c:2245 msgid "Monitor" msgstr "Монитор" -#: app/preferences_dialog.c:2325 +#: app/preferences_dialog.c:2253 msgid "Get Monitor Resolution" msgstr "Установить разрешение монитора" -#: app/preferences_dialog.c:2333 +#: app/preferences_dialog.c:2261 #, c-format msgid "(Currently %d x %d dpi)" msgstr "(сейчас %d x %d dpi)" -#: app/preferences_dialog.c:2384 +#: app/preferences_dialog.c:2313 msgid "From X Server" msgstr "с X-сервера" -#: app/preferences_dialog.c:2399 +#: app/preferences_dialog.c:2328 msgid "Manually:" msgstr "вручную:" -#: app/preferences_dialog.c:2412 app/preferences_dialog.c:2414 +#: app/preferences_dialog.c:2341 app/preferences_dialog.c:2343 msgid "Directories" msgstr "Каталоги" -#: app/preferences_dialog.c:2431 +#: app/preferences_dialog.c:2360 msgid "Temp Dir:" msgstr "Временный каталог:" -#: app/preferences_dialog.c:2431 +#: app/preferences_dialog.c:2360 msgid "Select Temp Dir" msgstr "Выбрать временный каталог" -#: app/preferences_dialog.c:2432 +#: app/preferences_dialog.c:2361 msgid "Swap Dir:" msgstr "Каталог подкачки:" -#: app/preferences_dialog.c:2432 -msgid "Select Swap Dir" -msgstr "Выбрать каталог подкачки" - -#: app/preferences_dialog.c:2468 +#: app/preferences_dialog.c:2397 msgid "Brushes Directories" msgstr "Каталог кистей" -#: app/preferences_dialog.c:2470 +#: app/preferences_dialog.c:2399 msgid "Select Brushes Dir" msgstr "Выбрать каталог кистей" -#: app/preferences_dialog.c:2472 +#: app/preferences_dialog.c:2401 msgid "Generated Brushes" msgstr "Сгенерированные кисти" -#: app/preferences_dialog.c:2472 +#: app/preferences_dialog.c:2401 msgid "Generated Brushes Directories" msgstr "Каталог сгенерированных кистей" -#: app/preferences_dialog.c:2474 +#: app/preferences_dialog.c:2403 msgid "Select Generated Brushes Dir" msgstr "Выбрать каталог сгенерированных кистей" -#: app/preferences_dialog.c:2476 +#: app/preferences_dialog.c:2405 msgid "Patterns Directories" msgstr "Каталог шаблонов" -#: app/preferences_dialog.c:2478 +#: app/preferences_dialog.c:2407 msgid "Select Patterns Dir" msgstr "Выбрать каталог шаблонов" -#: app/preferences_dialog.c:2480 +#: app/preferences_dialog.c:2409 msgid "Palettes Directories" msgstr "Каталог палитр" -#: app/preferences_dialog.c:2482 +#: app/preferences_dialog.c:2411 msgid "Select Palettes Dir" msgstr "Выбрать каталог палитр" -#: app/preferences_dialog.c:2484 +#: app/preferences_dialog.c:2413 msgid "Gradients Directories" msgstr "Каталог градиентов" -#: app/preferences_dialog.c:2486 +#: app/preferences_dialog.c:2415 msgid "Select Gradients Dir" msgstr "Выбрать каталог градиентов" -#: app/preferences_dialog.c:2488 +#: app/preferences_dialog.c:2417 msgid "Plug-Ins" msgstr "Дополнения" -#: app/preferences_dialog.c:2488 +#: app/preferences_dialog.c:2417 msgid "Plug-Ins Directories" msgstr "Каталог дополнений" -#: app/preferences_dialog.c:2490 +#: app/preferences_dialog.c:2419 msgid "Select Plug-Ins Dir" msgstr "Выбрать каталог дополнений" -#: app/preferences_dialog.c:2492 +#: app/preferences_dialog.c:2421 msgid "Modules" msgstr "Модули" -#: app/preferences_dialog.c:2492 +#: app/preferences_dialog.c:2421 msgid "Modules Directories" msgstr "Каталог модулей" -#: app/preferences_dialog.c:2494 +#: app/preferences_dialog.c:2423 msgid "Select Modules Dir" msgstr "Выбрать каталог модулей" @@ -5258,66 +5279,66 @@ msgstr " msgid "Selection: " msgstr "Выделенная область: " -#: app/resize.c:154 +#: app/resize.c:156 msgid "Scale Layer" msgstr "Масштабировать слой" -#: app/resize.c:156 app/resize.c:181 app/tool_options.c:774 +#: app/resize.c:158 app/resize.c:183 app/tool_options.c:774 msgid "Size" msgstr "Размер" -#: app/resize.c:160 +#: app/resize.c:162 msgid "Scale Image" msgstr "Масштабировать изображение" -#: app/resize.c:162 +#: app/resize.c:164 msgid "Pixel Dimensions" msgstr "Размеры пиксела" -#: app/resize.c:172 +#: app/resize.c:174 msgid "Set Layer Boundary Size" msgstr "Установить размеры границ слоя" -#: app/resize.c:177 +#: app/resize.c:179 msgid "Set Canvas Size" msgstr "Установить размер холста" #. the original width & height labels -#: app/resize.c:234 app/scale_tool.c:77 +#: app/resize.c:236 app/scale_tool.c:77 msgid "Original Width:" msgstr "Исходная ширина:" #. the new size labels -#: app/resize.c:259 app/resize.c:504 +#: app/resize.c:261 app/resize.c:506 msgid "New Width:" msgstr "Новая ширина:" #. the scale ratio labels -#: app/resize.c:324 +#: app/resize.c:326 msgid "Ratio X:" msgstr "Масштаб по X:" #. the x and y offset labels -#: app/resize.c:409 +#: app/resize.c:411 msgid "X:" msgstr "X:" -#: app/resize.c:490 +#: app/resize.c:492 msgid "Print Size & Display Unit" msgstr "Единицы измерения для печати и изображения" -#: app/resize.c:1252 +#: app/resize.c:1254 msgid "Scale Error: Both width and height must be greater than zero." msgstr "Ошибка масштабирования: и ширина и высота должны быть больше нуля." -#: app/resize.c:1334 +#: app/resize.c:1336 msgid "" "The chosen image size will shrink\n" "some layers completely away.\n" "Is this what you want?" msgstr "" -#: app/resize.c:1338 +#: app/resize.c:1340 msgid "Layer Too Small" msgstr "" @@ -5366,7 +5387,7 @@ msgstr " msgid "Text Tool" msgstr "Инструмент \"Текст\"" -#: app/text_tool.c:162 app/tool_options.c:233 +#: app/text_tool.c:162 app/tool_options.c:232 msgid "Antialiasing" msgstr "Выравнивание" @@ -5444,109 +5465,109 @@ msgstr "" "Это должен быть файл gimp_tips.ru.txt в\n" "каталоге данных GIMP. Пожалуйста проверьте Вашу установку." -#: app/tool_options.c:122 +#: app/tool_options.c:121 msgid "This tool has no options." msgstr "У этого инструмента нет параметров." -#: app/tool_options.c:146 +#: app/tool_options.c:145 #, fuzzy msgid "Rectangular Selection" msgstr "Параметры выделения прямоугольной области" -#: app/tool_options.c:148 +#: app/tool_options.c:147 #, fuzzy msgid "Elliptical Selection" msgstr "Параметры выделения эллиптической области" -#: app/tool_options.c:150 +#: app/tool_options.c:149 #, fuzzy msgid "Free-Hand Selection" msgstr "Параметры выделения от руки" -#: app/tool_options.c:152 +#: app/tool_options.c:151 #, fuzzy msgid "Fuzzy Selection" msgstr "Волшебная палочка" -#: app/tool_options.c:154 +#: app/tool_options.c:153 #, fuzzy msgid "Bezier Selection" msgstr "Кривая Безье" -#: app/tool_options.c:156 app/tools.c:178 +#: app/tool_options.c:155 app/tools.c:178 msgid "Intelligent Scissors" msgstr "Умные ножницы" -#: app/tool_options.c:158 +#: app/tool_options.c:157 #, fuzzy msgid "By-Color Selection" msgstr "Выбор по цвету" -#: app/tool_options.c:189 +#: app/tool_options.c:188 msgid "Feather" msgstr "Растушевка" -#: app/tool_options.c:297 +#: app/tool_options.c:296 msgid "Fixed Size / Aspect Ratio" msgstr "Фиксированный размер / отношение сторон" -#: app/tool_options.c:363 +#: app/tool_options.c:362 msgid "Unit:" msgstr "Единица:" -#: app/tool_options.c:448 app/tools.c:376 +#: app/tool_options.c:447 app/tools.c:376 msgid "Bucket Fill" msgstr "Заливка" -#: app/tool_options.c:450 +#: app/tool_options.c:449 #, fuzzy msgid "Blend Tool" msgstr "Бленда: " -#: app/tool_options.c:452 app/tools.c:412 +#: app/tool_options.c:451 app/tools.c:412 msgid "Pencil" msgstr "Карандаш" -#: app/tool_options.c:454 app/tools.c:430 +#: app/tool_options.c:453 app/tools.c:430 msgid "Paintbrush" msgstr "Кисть" -#: app/tool_options.c:456 app/tools.c:448 +#: app/tool_options.c:455 app/tools.c:448 msgid "Eraser" msgstr "Ластик" -#: app/tool_options.c:458 app/tools.c:466 +#: app/tool_options.c:457 app/tools.c:466 msgid "Airbrush" msgstr "Аэрограф" -#: app/tool_options.c:460 +#: app/tool_options.c:459 #, fuzzy msgid "Clone Tool" msgstr "Параметры штампа" -#: app/tool_options.c:462 +#: app/tool_options.c:461 #, fuzzy msgid "Convolver" msgstr "Размыватель" -#: app/tool_options.c:464 +#: app/tool_options.c:463 msgid "Ink Tool" msgstr "" -#: app/tool_options.c:466 app/tools.c:538 app/tools.c:544 +#: app/tool_options.c:465 app/tools.c:538 app/tools.c:544 msgid "Dodge or Burn" msgstr "Затемнение или осветление" -#: app/tool_options.c:468 +#: app/tool_options.c:467 #, fuzzy msgid "Smudge Tool" msgstr "Палец" -#: app/tool_options.c:583 +#: app/tool_options.c:582 msgid "Incremental" msgstr "Дополняющий" -#: app/tool_options.c:689 +#: app/tool_options.c:688 msgid "Pressure Sensitivity" msgstr "Чувствительность к нажиму" @@ -6250,6 +6271,116 @@ msgstr " msgid "Color History" msgstr "Пипетка" +#~ msgid "Custom from Editor" +#~ msgstr "Выбранная из редактора" + +#~ msgid "" +#~ "The GIMP - GNU Image Manipulation Program\n" +#~ "\n" +#~ msgstr "" +#~ "GIMP - ГНУ Изображениями Манипулирующая Программа\n" +#~ "\n" + +#~ msgid "For a proper GIMP installation, a subdirectory called\n" +#~ msgstr "Для правильной установки GIMP должны быть созданы\n" + +#~ msgid "Install" +#~ msgstr "Установка" + +#~ msgid "Ignore" +#~ msgstr "Игнорировать" + +#~ msgid "Installation Log" +#~ msgstr "Файл регистрации установки" + +#~ msgid "" +#~ "\n" +#~ "Installation successful!\n" +#~ msgstr "" +#~ "\n" +#~ "Установка успешна!\n" + +#~ msgid "/File/Dialogs" +#~ msgstr "/Файл/Диалоги" + +#~ msgid "/File" +#~ msgstr "/Файл" + +#~ msgid "/Edit" +#~ msgstr "/Правка" + +#~ msgid "/Edit/Buffer" +#~ msgstr "/Правка/Буфер" + +#~ msgid "/Select" +#~ msgstr "/Выделение" + +#~ msgid "/View" +#~ msgstr "/Просмотр" + +#~ msgid "/View/Zoom" +#~ msgstr "/Просмотр/Масштаб" + +#~ msgid "/Image" +#~ msgstr "/Изображение" + +#~ msgid "/Image/Mode" +#~ msgstr "/Изображение/Режим" + +#~ msgid "/Image/Colors" +#~ msgstr "/Изображение/Цвета" + +#~ msgid "/Image/Colors/Auto" +#~ msgstr "/Изображение/Цвета/Авто" + +#~ msgid "/Image/Alpha" +#~ msgstr "/Изображение/Альфа-канал" + +#~ msgid "/Image/Transforms" +#~ msgstr "/Изображение/Преобразования" + +#~ msgid "/Layers" +#~ msgstr "/Слои" + +#~ msgid "/Layers/Stack" +#~ msgstr "/Слои/Стопка" + +#~ msgid "/Tools" +#~ msgstr "/Инструменты" + +#, fuzzy +#~ msgid "/Tools/Select Tools" +#~ msgstr "/Инструменты/Прямоугольник" + +#, fuzzy +#~ msgid "/Tools/Transform Tools" +#~ msgstr "/Инструменты/Вращатель" + +#, fuzzy +#~ msgid "/Tools/Paint Tools" +#~ msgstr "/Инструменты/Кисть" + +#~ msgid "/Dialogs" +#~ msgstr "/Диалоги" + +#~ msgid "/Filters" +#~ msgstr "/Фильтры" + +#~ msgid "/Script-Fu" +#~ msgstr "/Script-Fu" + +#~ msgid "/Stack" +#~ msgstr "/Стопка" + +#~ msgid "Bytes" +#~ msgstr "Байты" + +#~ msgid "KiloBytes" +#~ msgstr "Килобайты" + +#~ msgid "MegaBytes" +#~ msgstr "Мегабайты" + #~ msgid "Fill Options" #~ msgstr "Опции заливки" diff --git a/po/sk.po b/po/sk.po index 0cc220039c..3829c1dde7 100644 --- a/po/sk.po +++ b/po/sk.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: GIMP 1.1.15\n" -"POT-Creation-Date: 2000-03-03 17:47-0800\n" +"POT-Creation-Date: 2000-03-14 23:09+0100\n" "PO-Revision-Date: 2000-01-15 13:40+02:00\n" "Last-Translator: Peter Lacu╧ \n" "Language-Team: Slovak \n" @@ -63,45 +63,45 @@ msgstr "verziu %s V msgid "GIMP Startup" msgstr "GIMP: ╧tart" -#: app/app_procs.c:479 app/gimprc.c:432 +#: app/app_procs.c:479 app/gimprc.c:448 #, c-format msgid "parsing \"%s\"\n" msgstr "analyzuje sa \"%s\"\n" #. initialize the xcf file format routines -#: app/app_procs.c:539 +#: app/app_procs.c:541 msgid "Looking for data files" msgstr "H╣adajЗ sa datovИ sЗbory" -#: app/app_procs.c:539 +#: app/app_procs.c:541 msgid "Parasites" msgstr "Paraziti" #. initialize the global parasite table -#: app/app_procs.c:541 app/internal_procs.c:71 app/preferences_dialog.c:2468 +#: app/app_procs.c:543 app/internal_procs.c:71 app/preferences_dialog.c:2397 msgid "Brushes" msgstr "╘tetce" #. initialize the list of gimp brushes -#: app/app_procs.c:543 app/internal_procs.c:143 app/preferences_dialog.c:2476 +#: app/app_procs.c:545 app/internal_procs.c:143 app/preferences_dialog.c:2405 msgid "Patterns" msgstr "Vzory" #. initialize the list of gimp patterns -#: app/app_procs.c:545 app/preferences_dialog.c:2480 +#: app/app_procs.c:547 app/preferences_dialog.c:2409 msgid "Palettes" msgstr "FarebnИ palety" #. initialize the list of gimp palettes -#: app/app_procs.c:547 app/internal_procs.c:113 app/preferences_dialog.c:2484 +#: app/app_procs.c:549 app/internal_procs.c:113 app/preferences_dialog.c:2413 msgid "Gradients" msgstr "Prechody" -#: app/app_procs.c:735 +#: app/app_procs.c:737 msgid "Really Quit?" msgstr "Nazaj ukonХi╩ ?" -#: app/app_procs.c:739 +#: app/app_procs.c:741 msgid "" "Some files unsaved.\n" "\n" @@ -111,21 +111,21 @@ msgstr "" "\n" "Naozaj ukonХi╩ GIMP?" -#: app/app_procs.c:740 app/install.c:272 app/install.c:430 +#: app/app_procs.c:742 msgid "Quit" msgstr "Koniec" -#: app/app_procs.c:740 app/brightness_contrast.c:218 app/channel_ops.c:93 +#: app/app_procs.c:742 app/brightness_contrast.c:218 app/channel_ops.c:93 #: app/channels_dialog.c:2463 app/channels_dialog.c:2637 #: app/color_balance.c:275 app/color_notebook.c:125 app/convert.c:506 #: app/curves.c:559 app/file_new_dialog.c:207 app/file_new_dialog.c:357 #: app/gdisplay_color_ui.c:129 app/gdisplay_ops.c:346 app/gimpprogress.c:112 -#: app/global_edit.c:739 app/gradient.c:1769 app/gradient.c:4839 -#: app/gradient.c:5400 app/hue_saturation.c:377 app/interface.c:984 -#: app/layers_dialog.c:3326 app/layers_dialog.c:3517 app/layers_dialog.c:3617 -#: app/layers_dialog.c:3889 app/levels.c:341 app/palette.c:1826 -#: app/posterize.c:201 app/preferences_dialog.c:1469 app/qmask.c:281 -#: app/resize.c:193 app/resize.c:1343 app/threshold.c:275 +#: app/global_edit.c:739 app/gradient.c:1769 app/gradient.c:4841 +#: app/gradient.c:5402 app/hue_saturation.c:377 app/install.c:532 +#: app/interface.c:984 app/layers_dialog.c:3326 app/layers_dialog.c:3517 +#: app/layers_dialog.c:3617 app/layers_dialog.c:3889 app/levels.c:341 +#: app/palette.c:1826 app/posterize.c:201 app/preferences_dialog.c:1434 +#: app/qmask.c:281 app/resize.c:195 app/resize.c:1345 app/threshold.c:275 #: modules/cdisplay_gamma.c:358 msgid "Cancel" msgstr "Zru╧i╩" @@ -146,123 +146,124 @@ msgstr "Neuzavret msgid "Paintbrush operation failed." msgstr "╘tetec zlyhal." -#: app/blend.c:272 +#: app/blend.c:294 msgid "Offset:" msgstr "Posun:" -#: app/blend.c:283 +#: app/blend.c:305 msgid "FG to BG (RGB)" msgstr "Popredie do pozadia (RGB)" -#: app/blend.c:284 +#: app/blend.c:306 msgid "FG to BG (HSV)" msgstr "Popredie do pozadia (HSV)" -#: app/blend.c:285 +#: app/blend.c:307 msgid "FG to Transparent" msgstr "Pozadie do priesvitna" -#: app/blend.c:286 -msgid "Custom from Editor" -msgstr "Z editora prechodov..." +#: app/blend.c:308 +#, fuzzy +msgid "Custom Gradient" +msgstr "KopМrova╩ prechod" -#: app/blend.c:290 +#: app/blend.c:312 msgid "Blend:" msgstr "Prechod:" -#: app/blend.c:298 app/gradient.c:533 app/preferences_dialog.c:2209 +#: app/blend.c:320 app/gradient.c:533 app/preferences_dialog.c:2137 msgid "Linear" msgstr "LineАrny" -#: app/blend.c:299 +#: app/blend.c:321 msgid "Bi-Linear" msgstr "BilineАrny" -#: app/blend.c:300 +#: app/blend.c:322 msgid "Radial" msgstr "RadiАlny" -#: app/blend.c:301 +#: app/blend.c:323 msgid "Square" msgstr "╘tvorcovЩ" -#: app/blend.c:302 +#: app/blend.c:324 msgid "Conical (symmetric)" msgstr "Ku╬e╣ovЩ (symetrickЩ)" -#: app/blend.c:303 +#: app/blend.c:325 msgid "Conical (asymmetric)" msgstr "Ku╬e╣ovЩ (nesymetrickЩ)" -#: app/blend.c:304 +#: app/blend.c:326 msgid "Shapeburst (angular)" msgstr "PrenikajЗci (uhlovЩ)" -#: app/blend.c:305 +#: app/blend.c:327 msgid "Shapeburst (spherical)" msgstr "PrenikajЗci (gu╣ovЩ)" -#: app/blend.c:306 +#: app/blend.c:328 msgid "Shapeburst (dimpled)" msgstr "PrenikajЗci (jamkovЩ)" -#: app/blend.c:307 +#: app/blend.c:329 msgid "Spiral (clockwise)" msgstr "╘pirАla (v smere hodinovЩch ruХiХiek)" -#: app/blend.c:308 +#: app/blend.c:330 msgid "Spiral (anticlockwise)" msgstr "╘pirАla (proti smeru hodinovЩch ruХiХiek)" -#: app/blend.c:312 +#: app/blend.c:334 msgid "Gradient:" msgstr "Prechod" -#: app/blend.c:320 app/preferences_dialog.c:1808 +#: app/blend.c:342 app/preferences_dialog.c:1769 msgid "None" msgstr "╝iadne" -#: app/blend.c:321 +#: app/blend.c:343 msgid "Sawtooth Wave" msgstr "PМlovА vlna" -#: app/blend.c:322 +#: app/blend.c:344 msgid "Triangular Wave" msgstr "TrojuholnМkovА vlna" -#: app/blend.c:326 +#: app/blend.c:348 msgid "Repeat:" msgstr "Opakovanie:" -#: app/blend.c:345 +#: app/blend.c:367 msgid "Adaptive Supersampling" msgstr "AdaptМvne prevzorkovanie" -#: app/blend.c:373 +#: app/blend.c:395 msgid "Max Depth:" msgstr "NajvДХ╧ia hЕbka:" -#: app/blend.c:386 app/bucket_fill.c:127 app/fuzzy_select.c:657 +#: app/blend.c:408 app/bucket_fill.c:127 app/fuzzy_select.c:661 msgid "Threshold:" msgstr "Prah:" -#: app/blend.c:413 +#: app/blend.c:435 msgid "Blend: Invalid for indexed images." msgstr "Prechod: nefunguje pre indexovanИ obrАzky." -#: app/blend.c:438 +#: app/blend.c:460 msgid "Blend: 0, 0" msgstr "Prechod: 0, 0" -#: app/blend.c:501 +#: app/blend.c:523 msgid "Blend operation failed." msgstr "Prechod zlyhal." -#: app/blend.c:507 +#: app/blend.c:529 msgid "Blending..." msgstr "Prechod..." -#: app/blend.c:585 app/blend.c:595 +#: app/blend.c:607 app/blend.c:617 msgid "Blend: " msgstr "Prechod: " @@ -281,13 +282,13 @@ msgstr "Jas-Kontrast nepracuje s indexovan #: app/gdisplay_color_ui.c:127 app/gimpui.c:122 app/hue_saturation.c:373 #: app/layers_dialog.c:3324 app/layers_dialog.c:3515 app/layers_dialog.c:3615 #: app/layers_dialog.c:3887 app/levels.c:337 app/module_db.c:281 -#: app/posterize.c:197 app/preferences_dialog.c:1465 app/qmask.c:279 -#: app/resize.c:191 app/resize.c:1343 app/threshold.c:271 +#: app/posterize.c:197 app/preferences_dialog.c:1430 app/qmask.c:279 +#: app/resize.c:193 app/resize.c:1345 app/threshold.c:271 #: modules/cdisplay_gamma.c:351 msgid "OK" msgstr "OK" -#: app/brightness_contrast.c:216 app/by_color_select.c:634 +#: app/brightness_contrast.c:216 app/by_color_select.c:687 #: app/color_balance.c:273 app/curves.c:557 app/file_new_dialog.c:355 #: app/hue_saturation.c:375 app/levels.c:339 app/posterize.c:199 #: app/threshold.c:273 app/tools.c:1086 app/transform_core.c:412 @@ -317,7 +318,7 @@ msgid "Brush Editor" msgstr "Editor ╧tetcov" #. The close button -#: app/brush_edit.c:216 app/brush_select.c:278 app/by_color_select.c:636 +#: app/brush_edit.c:216 app/brush_select.c:278 app/by_color_select.c:689 #: app/color_notebook.c:122 app/color_picker.c:297 app/colormap_dialog.i.c:170 #: app/crop.c:1054 app/devices.c:755 app/docindexif.c:105 #: app/errorconsole.c:281 app/gdisplay_ops.c:346 app/gradient.c:801 @@ -331,7 +332,7 @@ msgid "Close" msgstr "Zatvori╩" #. the feather radius scale -#: app/brush_edit.c:276 app/color_picker.c:181 app/tool_options.c:200 +#: app/brush_edit.c:276 app/color_picker.c:181 app/tool_options.c:199 msgid "Radius:" msgstr "Priemer:" @@ -361,11 +362,11 @@ msgstr "Aktualizova msgid "No Brushes available" msgstr "Nie sЗ ╬iadne ╧tetce" -#: app/brush_select.c:445 app/layers_dialog.c:372 app/tool_options.c:505 +#: app/brush_select.c:445 app/layers_dialog.c:372 app/tool_options.c:504 msgid "Opacity:" msgstr "Krytie:" -#: app/brush_select.c:453 app/layers_dialog.c:324 app/tool_options.c:529 +#: app/brush_select.c:453 app/layers_dialog.c:324 app/tool_options.c:528 msgid "Mode:" msgstr "Re╬im:" @@ -399,7 +400,7 @@ msgstr "" msgid "Sorry, this brush can't be deleted." msgstr "" -#: app/bucket_fill.c:147 app/color_picker.c:156 app/tool_options.c:274 +#: app/bucket_fill.c:147 app/color_picker.c:156 app/tool_options.c:273 msgid "Sample Merged" msgstr "Vzorka zahrnutА" @@ -429,36 +430,36 @@ msgid "No available patterns for this operation." msgstr "╝iadne vzory nie sЗ k dispozМcii." #. The shell and main vbox -#: app/by_color_select.c:629 +#: app/by_color_select.c:682 msgid "By Color Selection" msgstr "VЩber pod╣a farby" -#: app/by_color_select.c:685 +#: app/by_color_select.c:738 msgid "Inactive" msgstr "NeaktМvny" -#: app/by_color_select.c:693 +#: app/by_color_select.c:746 msgid "Selection Mode" msgstr "Re╬im vЩberu" -#: app/by_color_select.c:695 app/paint_funcs.c:100 +#: app/by_color_select.c:748 app/paint_funcs.c:100 msgid "Replace" msgstr "Nahradi╩" -#: app/by_color_select.c:697 app/colormap_dialog.i.c:127 +#: app/by_color_select.c:750 app/colormap_dialog.i.c:127 #: app/gdisplay_color_ui.c:114 msgid "Add" msgstr "Prida╩" -#: app/by_color_select.c:699 app/layers_dialog.c:340 app/tool_options.c:904 +#: app/by_color_select.c:752 app/layers_dialog.c:340 app/tool_options.c:904 msgid "Subtract" msgstr "Rozdiel" -#: app/by_color_select.c:701 +#: app/by_color_select.c:754 msgid "Intersect" msgstr "Prienik" -#: app/by_color_select.c:713 +#: app/by_color_select.c:766 msgid "Fuzziness Threshold" msgstr "Prah citlivosti" @@ -476,7 +477,7 @@ msgstr "%s (k msgid "Selection Mask" msgstr "Maska vЩberu" -#: app/channel_ops.c:85 app/resize.c:392 +#: app/channel_ops.c:85 app/resize.c:394 msgid "Offset" msgstr "Posun:" @@ -486,8 +487,8 @@ msgid "Offset X:" msgstr "Posun X:" #: app/channel_ops.c:115 app/crop.c:1063 app/file_new_dialog.c:530 -#: app/resize.c:330 app/resize.c:415 app/resize.c:573 app/rotate_tool.c:106 -#: app/scale_tool.c:100 app/shear_tool.c:82 +#: app/install.c:1108 app/resize.c:332 app/resize.c:417 app/resize.c:575 +#: app/rotate_tool.c:106 app/scale_tool.c:100 app/shear_tool.c:82 msgid "Y:" msgstr "Y:" @@ -496,12 +497,12 @@ msgstr "Y:" msgid "Wrap Around" msgstr "Dookola" -#: app/channel_ops.c:174 app/image_new.c:69 app/image_new.c:223 +#: app/channel_ops.c:174 app/image_new.c:70 app/image_new.c:234 #: app/layers_dialog.c:3422 msgid "Background" msgstr "Pozadie" -#: app/channel_ops.c:175 app/image_new.c:79 app/layers_dialog.c:3424 +#: app/channel_ops.c:175 app/image_new.c:80 app/layers_dialog.c:3424 msgid "Transparent" msgstr "Prieh╣adnИ" @@ -680,19 +681,19 @@ msgstr "Spriemernen msgid "Update Active Color" msgstr "Nastavi╩ aktuАlnu farbu" -#: app/color_picker.c:255 app/color_picker.c:265 +#: app/color_picker.c:255 app/color_picker.c:264 msgid "Red:" msgstr "хervenА:" -#: app/color_picker.c:256 app/color_picker.c:266 +#: app/color_picker.c:256 app/color_picker.c:265 msgid "Green:" msgstr "ZelenА:" -#: app/color_picker.c:257 app/color_picker.c:267 +#: app/color_picker.c:257 app/color_picker.c:266 msgid "Blue:" msgstr "ModrА:" -#: app/color_picker.c:258 app/color_picker.c:264 app/color_picker.c:273 +#: app/color_picker.c:258 app/color_picker.c:267 app/color_picker.c:273 msgid "Alpha:" msgstr "Alfa:" @@ -713,13 +714,13 @@ msgstr "Hex trojica" msgid "Intensity:" msgstr "Intenzita:" -#: app/color_picker.c:633 app/color_picker.c:634 app/color_picker.c:635 -#: app/color_picker.c:636 app/color_picker.c:637 app/color_picker.c:638 -#: app/color_picker.c:639 app/color_picker.c:657 app/color_picker.c:672 -#: app/color_picker.c:690 app/info_window.c:185 app/info_window.c:191 -#: app/info_window.c:197 app/info_window.c:203 app/info_window.c:422 -#: app/info_window.c:423 app/info_window.c:424 app/info_window.c:425 -#: app/info_window.c:447 +#: app/color_picker.c:626 app/color_picker.c:627 app/color_picker.c:628 +#: app/color_picker.c:629 app/color_picker.c:630 app/color_picker.c:631 +#: app/color_picker.c:632 app/color_picker.c:644 app/color_picker.c:651 +#: app/color_picker.c:669 app/color_picker.c:684 app/info_window.c:185 +#: app/info_window.c:191 app/info_window.c:197 app/info_window.c:203 +#: app/info_window.c:422 app/info_window.c:423 app/info_window.c:424 +#: app/info_window.c:425 app/info_window.c:447 msgid "N/A" msgstr "Nie je" @@ -931,13 +932,13 @@ msgstr "Za #. the pixel size labels #: app/crop.c:1076 app/file_new_dialog.c:389 app/file_new_dialog.c:407 -#: app/tool_options.c:334 +#: app/tool_options.c:333 msgid "Width:" msgstr "╘Мrka:" #: app/crop.c:1079 app/file_new_dialog.c:395 app/file_new_dialog.c:413 -#: app/layers_dialog.c:3363 app/resize.c:240 app/resize.c:265 app/resize.c:510 -#: app/scale_tool.c:79 app/scale_tool.c:86 app/tool_options.c:350 +#: app/layers_dialog.c:3363 app/resize.c:242 app/resize.c:267 app/resize.c:512 +#: app/scale_tool.c:79 app/scale_tool.c:86 app/tool_options.c:349 msgid "Height:" msgstr "VЩ╧ka:" @@ -989,7 +990,7 @@ msgid "Load" msgstr "Otvori╩" #: app/curves.c:704 app/devices.c:753 app/levels.c:608 app/palette.c:2068 -#: app/preferences_dialog.c:357 app/preferences_dialog.c:1467 +#: app/preferences_dialog.c:357 app/preferences_dialog.c:1432 msgid "Save" msgstr "Ulo╬i╩" @@ -1022,7 +1023,7 @@ msgstr "Odfarbenie pracuje len s RGB obr msgid "Device Status" msgstr "Stav zariadenia" -#: app/disp_callbacks.c:755 app/global_edit.c:297 app/global_edit.c:303 +#: app/disp_callbacks.c:760 app/global_edit.c:297 app/global_edit.c:303 #: app/global_edit.c:375 msgid "Pasted Layer" msgstr "Vlo╬enА vrstva" @@ -1203,17 +1204,17 @@ msgstr "Ve msgid "New Image" msgstr "NovЩ obrАzok" -#: app/file_new_dialog.c:453 app/preferences_dialog.c:1540 -#: app/preferences_dialog.c:1577 +#: app/file_new_dialog.c:453 app/install.c:1093 app/preferences_dialog.c:1505 +#: app/preferences_dialog.c:1542 msgid "Pixels" msgstr "pix" #. the resolution labels -#: app/file_new_dialog.c:524 app/resize.c:567 +#: app/file_new_dialog.c:524 app/resize.c:569 msgid "Resolution X:" msgstr "Rozli╧enie X:" -#: app/file_new_dialog.c:545 app/resize.c:588 +#: app/file_new_dialog.c:545 app/resize.c:590 msgid "pixels/%a" msgstr "pix/%a" @@ -1246,7 +1247,7 @@ msgstr "" msgid "No Selection." msgstr "NiХ nie je vybranИ." -#: app/fileops.c:418 app/fileops.c:1624 app/fileops.c:1731 +#: app/fileops.c:418 app/fileops.c:1629 app/fileops.c:1736 #, fuzzy, c-format msgid "Save failed: %s" msgstr "Ulo╬enie zlyhalo: " @@ -1272,64 +1273,64 @@ msgstr "Ned msgid "Revert failed." msgstr "VrАtenie zlyhalo." -#: app/fileops.c:1240 +#: app/fileops.c:1245 #, fuzzy msgid "(This thumbnail may be out of date)" msgstr "(tento nАh╣ad nemusМ by╩ aktuАlny)" -#: app/fileops.c:1241 +#: app/fileops.c:1246 #, fuzzy msgid "(No Information)" msgstr "(╬iadne informАcie)" -#: app/fileops.c:1251 +#: app/fileops.c:1256 #, fuzzy msgid "(Thumbnail saving is disabled)" msgstr "(ukladanie nАh╣adu je zakАzanИ)" -#: app/fileops.c:1255 +#: app/fileops.c:1260 #, fuzzy msgid "(Could not write thumbnail file)" msgstr "(nemo╬no zapМsa╩ nАh╣ad)" -#: app/fileops.c:1259 +#: app/fileops.c:1264 #, fuzzy msgid "(Thumbnail file not written)" msgstr "(nАh╣ad nebol zapМsanЩ)" -#: app/fileops.c:1276 +#: app/fileops.c:1281 #, fuzzy msgid "No preview available" msgstr "nАh╣ad nie je dostupnЩ" -#: app/fileops.c:1394 +#: app/fileops.c:1399 msgid "(could not make preview)" msgstr "(nemo╬no vytvori╩ nАh╣ad)" -#: app/fileops.c:1467 app/fileops.c:1546 +#: app/fileops.c:1472 app/fileops.c:1551 #, fuzzy, c-format msgid "Open failed: %s" msgstr "Otvorenie zlyhalo: " -#: app/fileops.c:1602 +#: app/fileops.c:1607 #, c-format msgid "%s is an irregular file (%s)" msgstr "%s je ne╧tandardnЩ sЗbor (%s)" -#: app/fileops.c:1670 +#: app/fileops.c:1675 #, c-format msgid "%s exists, overwrite?" msgstr "%s u╬ existuje, prepМsa╩?" -#: app/fileops.c:1674 +#: app/fileops.c:1679 msgid "File Exists!" msgstr "SЗbor u╬ existuje!" -#: app/fileops.c:1680 +#: app/fileops.c:1685 msgid "Yes" msgstr "аno" -#: app/fileops.c:1682 +#: app/fileops.c:1687 msgid "No" msgstr "Nie" @@ -1338,13 +1339,13 @@ msgstr "Nie" msgid "Flip Tool" msgstr "Zrkadlenie" -#: app/flip_tool.c:95 app/preferences_dialog.c:1591 -#: app/preferences_dialog.c:2355 +#: app/flip_tool.c:95 app/preferences_dialog.c:1556 +#: app/preferences_dialog.c:2284 msgid "Horizontal" msgstr "Vodorovne" -#: app/flip_tool.c:97 app/preferences_dialog.c:1593 -#: app/preferences_dialog.c:2357 +#: app/flip_tool.c:97 app/preferences_dialog.c:1558 +#: app/preferences_dialog.c:2286 msgid "Vertical" msgstr "Zvisle" @@ -1369,7 +1370,7 @@ msgstr "" msgid "RGB-empty" msgstr "RGB-prАzdny" -#: app/gdisplay.c:217 app/image_new.c:53 app/preferences_dialog.c:1637 +#: app/gdisplay.c:217 app/image_new.c:54 app/preferences_dialog.c:1602 msgid "RGB" msgstr "RGB" @@ -1503,23 +1504,23 @@ msgstr "" msgid "Failed to load pixmap brush." msgstr "Nepodarilo sa preХМta╩ cestu z %s" -#: app/gimpdrawable.c:168 +#: app/gimpdrawable.c:166 msgid "Can't fill unknown image type." msgstr "NeznАmy typ obrАzku sa nedА vyplni╩." -#: app/gimpdrawable.c:512 +#: app/gimpdrawable.c:498 msgid "parasite attach to drawable" msgstr "pripoji╩ parazita k obrАzku" -#: app/gimpdrawable.c:548 +#: app/gimpdrawable.c:533 msgid "detach parasite from drawable" msgstr "odpoji╩ parazita od obrАzku" -#: app/gimpdrawable.c:770 +#: app/gimpdrawable.c:740 msgid "unnamed" msgstr "nepomenovanЩ" -#: app/gimpdrawable.c:787 +#: app/gimpdrawable.c:757 #, c-format msgid "Layer type %d not supported." msgstr "Typ vrstvy %d nie je podporovanЩ." @@ -1531,39 +1532,39 @@ msgid "" "you don't have GtkXmHTML installed." msgstr "" -#: app/gimpimage.c:1154 +#: app/gimpimage.c:1176 msgid "attach parasite to image" msgstr "pripoji╩ parazita k obrАzku" -#: app/gimpimage.c:1177 +#: app/gimpimage.c:1201 msgid "detach parasite from image" msgstr "odpoji╩ parazita od obrАzku" -#: app/gimpimage.c:2232 +#: app/gimpimage.c:2305 msgid "Layer cannot be raised any further" msgstr "Vrstva je celkom hore" -#: app/gimpimage.c:2258 +#: app/gimpimage.c:2333 msgid "Layer cannot be lowered any further" msgstr "Vrstva je celkom dole" -#: app/gimpimage.c:2282 +#: app/gimpimage.c:2359 msgid "Layer is already on top" msgstr "Vrstva je u╬ celkom dole" -#: app/gimpimage.c:2288 +#: app/gimpimage.c:2365 msgid "Can't raise Layer without alpha" msgstr "Nejde da╩ vy╧╧ie vrstvu bez alfa" -#: app/gimpimage.c:2315 +#: app/gimpimage.c:2393 msgid "Layer is already on bottom" msgstr "Vrstva je u╬ celkom dole" -#: app/gimpimage.c:2370 +#: app/gimpimage.c:2448 msgid "BG has no alpha, layer was placed above" msgstr "Pozadie nemА alfa, vrstva bola umiestnenА nad neho" -#: app/gimpimage.c:2439 +#: app/gimpimage.c:2519 msgid "" "There are not enough visible layers for a merge.\n" "There must be at least two." @@ -1571,11 +1572,11 @@ msgstr "" "MАlo vidite╣nЩch vrstiev.\n" "Musia by╩ aspoР dve." -#: app/gimpimage.c:2519 +#: app/gimpimage.c:2603 msgid "There are not enough visible layers for a merge down." msgstr "MАlo vidite╣nЩch vrstiev." -#: app/gimpimage.c:2915 +#: app/gimpimage.c:3005 msgid "" "Unable to add a layer mask since\n" "the layer already has one." @@ -1583,7 +1584,7 @@ msgstr "" "Maska vrstvy sa nedА prida╩,\n" "preto╬e vrstva u╬ masku mА." -#: app/gimpimage.c:2919 +#: app/gimpimage.c:3009 msgid "" "Unable to add a layer mask to a\n" "layer in an indexed image." @@ -1591,7 +1592,7 @@ msgstr "" "Maska vrstvy sa nedА prida╩\n" "do indexovanИho obrАzku." -#: app/gimpimage.c:2923 +#: app/gimpimage.c:3013 msgid "" "Cannot add layer mask to a layer\n" "with no alpha channel." @@ -1599,19 +1600,19 @@ msgstr "" "Maska vrstvy sa nedА prida╩\n" "do vrstvy bez alfa kanАlu." -#: app/gimpimage.c:2930 +#: app/gimpimage.c:3020 msgid "Cannot add layer mask of different dimensions than specified layer." msgstr "Maska nemТ╬e ma╩ inИ rozmery ako vrstva." -#: app/gimpimage.c:3033 +#: app/gimpimage.c:3127 msgid "Channel cannot be raised any further" msgstr "KanАl je celkom hore" -#: app/gimpimage.c:3082 +#: app/gimpimage.c:3178 msgid "Channel cannot be lowered any further" msgstr "KanАl je celkom dole" -#: app/gimpimage.c:3288 app/palette.c:364 app/palette.c:941 app/palette.c:1077 +#: app/gimpimage.c:3398 app/palette.c:364 app/palette.c:941 app/palette.c:1077 #: app/palette.c:2022 app/palette.c:2749 app/palette.c:2881 msgid "Untitled" msgstr "NepomenovanЩ" @@ -1624,45 +1625,45 @@ msgstr "Priebeh" msgid "Please wait..." msgstr "" -#: app/gimprc.c:401 app/plug_in.c:304 +#: app/gimprc.c:415 app/plug_in.c:304 msgid "Resource configuration" msgstr "KonfigurАcia zdrojov" -#: app/gimprc.c:451 +#: app/gimprc.c:467 #, c-format msgid "error parsing: \"%s\"\n" msgstr "chyba pri analЩze: \"%s\"\n" -#: app/gimprc.c:452 +#: app/gimprc.c:468 #, c-format msgid " at line %d column %d\n" msgstr " riadok %d stЕpec %d\n" -#: app/gimprc.c:453 +#: app/gimprc.c:469 #, c-format msgid " unexpected token: %s\n" msgstr " neoХakАvanЩ symbol: %s\n" -#: app/gimprc.c:1455 +#: app/gimprc.c:1473 msgid "error parsing pluginrc" msgstr "chyba pri analЩze pluginrc" -#: app/gimprc.c:2832 +#: app/gimprc.c:2866 #, c-format msgid "Can't open %s; %s" msgstr "%s; %s sa nedА otvori╩" -#: app/gimprc.c:2851 +#: app/gimprc.c:2885 #, c-format msgid "Can't rename %s to %s.old; %s" msgstr "%s sa nedА premenova╩ na %s.old; %s" -#: app/gimprc.c:2857 +#: app/gimprc.c:2891 #, c-format msgid "Couldn't reopen %s\n" msgstr "%s sa nedА znovu otvori╩\n" -#: app/gimprc.c:2869 +#: app/gimprc.c:2903 #, c-format msgid "Can't write to %s; %s" msgstr "NedА sa zapisova╩ do %s; %s" @@ -1692,7 +1693,7 @@ msgstr "GIMP spr msgid "pixel" msgstr "pix." -#: app/gimpunit.c:59 app/measure.c:454 app/measure.c:458 app/paint_core.c:498 +#: app/gimpunit.c:59 app/measure.c:454 app/measure.c:458 app/paint_core.c:511 msgid "pixels" msgstr "pix." @@ -1939,7 +1940,7 @@ msgstr "Poloha riadiaceho bodu: %0.6f" msgid "Distance: %0.6f" msgstr "Vzdialenos╩: %0.6f" -#: app/gradient.c:3387 app/gradient.c:4448 +#: app/gradient.c:3387 app/gradient.c:4450 msgid "Left endpoint's color" msgstr "Farba ╣avИho koncovИho bodu" @@ -1959,7 +1960,7 @@ msgstr "Prav msgid "Save to" msgstr "Ulo╬i╩ do" -#: app/gradient.c:3429 app/gradient.c:4526 +#: app/gradient.c:3429 app/gradient.c:4528 msgid "Right endpoint's color" msgstr "Farba pravИho koncovИho bodu" @@ -1987,7 +1988,7 @@ msgstr "Typ vyfarbenia segmentu" msgid "Split segment at midpoint" msgstr "Rozdeli╩ segment v strede" -#: app/gradient.c:3734 app/gradient.c:4829 +#: app/gradient.c:3734 app/gradient.c:4831 msgid "Split segment uniformly" msgstr "Rozdeli╩ segment na rovnakИ Хasti" @@ -2007,7 +2008,7 @@ msgstr "Prerozdeli msgid "Flip segment" msgstr "Zrkadli╩ segment" -#: app/gradient.c:3744 app/gradient.c:5390 +#: app/gradient.c:3744 app/gradient.c:5392 msgid "Replicate segment" msgstr "Replikova╩ segment" @@ -2023,7 +2024,7 @@ msgstr "Typ vyfarbenia selekcie" msgid "Split segments at midpoints" msgstr "Rozdeli╩ segmenty v strede" -#: app/gradient.c:3755 app/gradient.c:4830 +#: app/gradient.c:3755 app/gradient.c:4832 msgid "Split segments uniformly" msgstr "Rozdeli╩ segmenty na rovnakИ Хasti" @@ -2043,7 +2044,7 @@ msgstr "Prerozdeli msgid "Flip selection" msgstr "Zrkadli╩ selekciu" -#: app/gradient.c:3765 app/gradient.c:5391 +#: app/gradient.c:3765 app/gradient.c:5393 msgid "Replicate selection" msgstr "Replikova╩ selekciu" @@ -2056,49 +2057,49 @@ msgstr "Farba popredia" msgid "RGBA (%0.3f, %0.3f, %0.3f, %0.3f)" msgstr "" -#: app/gradient.c:4615 app/gradient.c:4685 +#: app/gradient.c:4617 app/gradient.c:4687 msgid "(Varies)" msgstr "(menМ sa)" -#: app/gradient.c:4837 +#: app/gradient.c:4839 msgid "Split" msgstr "Rozdeli╩" #. Instructions -#: app/gradient.c:4851 +#: app/gradient.c:4853 msgid "Please select the number of uniform parts" msgstr "Zvo╣te poХet rovnakЩch ХastМ" -#: app/gradient.c:4857 +#: app/gradient.c:4859 msgid "in which you want to split the selected segment" msgstr "na ktorИ chcete rozdeli╩ segment." -#: app/gradient.c:4858 +#: app/gradient.c:4860 msgid "in which you want to split the segments in the selection" msgstr "na ktorИ chcete rozdeli╩ segmenty v selekcii." -#: app/gradient.c:5218 +#: app/gradient.c:5220 msgid "Blend endpoints' colors" msgstr "Farby koncovЩch bodov prechodu" -#: app/gradient.c:5230 +#: app/gradient.c:5232 msgid "Blend endpoints' opacity" msgstr "Krytie koncovЩch bodov prechodu" -#: app/gradient.c:5398 +#: app/gradient.c:5400 msgid "Replicate" msgstr "Replikova╩" #. Instructions -#: app/gradient.c:5411 +#: app/gradient.c:5413 msgid "Please select the number of times" msgstr "Ko╣kokrАt" -#: app/gradient.c:5416 +#: app/gradient.c:5418 msgid "you want to replicate the selected segment" msgstr "chcete replikova╩ zvolenЩ segment" -#: app/gradient.c:5417 +#: app/gradient.c:5419 msgid "you want to replicate the selection" msgstr "chcete replikova╩ selekciu" @@ -2202,45 +2203,45 @@ msgstr "Svetlos msgid "Saturation" msgstr "SЩtos╩" -#: app/image_new.c:58 app/info_window.c:65 app/info_window.c:534 -#: app/preferences_dialog.c:1638 +#: app/image_new.c:59 app/info_window.c:65 app/info_window.c:534 +#: app/preferences_dialog.c:1603 msgid "Grayscale" msgstr "Odtiene ╧edej" -#: app/image_new.c:64 app/layers_dialog.c:3421 +#: app/image_new.c:65 app/layers_dialog.c:3421 msgid "Foreground" msgstr "Popredie" -#: app/image_new.c:74 app/layers_dialog.c:3423 +#: app/image_new.c:75 app/layers_dialog.c:3423 msgid "White" msgstr "Biela" -#: app/image_new.c:262 +#: app/image_new.c:273 #, c-format msgid "%d Bytes" msgstr "%d bajtov" -#: app/image_new.c:264 +#: app/image_new.c:275 #, c-format msgid "%.2f KB" msgstr "" -#: app/image_new.c:266 +#: app/image_new.c:277 #, c-format msgid "%.1f KB" msgstr "" -#: app/image_new.c:268 +#: app/image_new.c:279 #, c-format msgid "%d KB" msgstr "" -#: app/image_new.c:270 +#: app/image_new.c:281 #, c-format msgid "%.2f MB" msgstr "" -#: app/image_new.c:272 +#: app/image_new.c:283 #, c-format msgid "%.1f MB" msgstr "" @@ -2269,8 +2270,8 @@ msgstr "" "AktМvny prechod.\n" "KlepnutМm otvorМte dialСg vЩberu prechodu." -#: app/info_dialog.c:181 app/preferences_dialog.c:1782 -#: app/preferences_dialog.c:1888 +#: app/info_dialog.c:181 app/preferences_dialog.c:1743 +#: app/preferences_dialog.c:1849 msgid "General" msgstr "V╧eobecnИ" @@ -2403,11 +2404,11 @@ msgstr "" msgid "Shape" msgstr "" -#: app/install.c:83 +#: app/install.c:95 msgid "The GIMP is not properly installed for the current user\n" msgstr "GIMP nie je riadne nain╧talovanЩ pre aktuАlneho u╬Мvate╣a\n" -#: app/install.c:84 +#: app/install.c:96 msgid "" "User installation was skipped because the '--nointerface' flag was " "encountered\n" @@ -2415,409 +2416,526 @@ msgstr "" "U╬ivate╣skА in╧talАcia bola preskoХenА, preto╬e bolo pou╬itИ " "'--nointerface'\n" -#: app/install.c:85 +#: app/install.c:97 msgid "" "To perform user installation, run the GIMP without the '--nointerface' flag\n" msgstr "" "Ak chcete u╬Мvate╣skЗ in╧talАciu, spus╩te GIMP bez vo╣by '--nointerface'\n" -#: app/install.c:113 +#: app/install.c:142 +#, fuzzy +msgid "" +"The gimprc is used to store personal preferences\n" +"that affect GIMP's default behavior.\n" +"Paths to search for brushes, palettes, gradients,\n" +"patterns, plug-ins and modules can also configured here." +msgstr "" +" SЗbor gimprc uchovАva osobnИ predvo╣by, ako je implicitnИ\n" +"chovanie programu GIMP a klАvesovИ skratky zАsuvnЩch modulov.\n" +"SЗ tu aj nastavenИ cesty pre h╣adanie ╧tetcov,\n" +"paliet, prechodov, vzorov, zАsuvnЩch modulov a modulov.\n" + +#: app/install.c:149 +msgid "" +"GIMP uses an additional gtkrc file so you can\n" +"configure it to look differently than other GTK apps." +msgstr "" + +#: app/install.c:154 +#, fuzzy +msgid "" +"Plug-ins and extensions are external programs run by\n" +"the GIMP which provide additional functionality.\n" +"These programs are searched for at run-time and\n" +"information about their functionality and mod-times\n" +"is cached in this file. This file is intended to\n" +"be GIMP-readable only, and should not be edited." +msgstr "" +"ZАsuvnИ moduly a roz╧Мrenia sЗ externИ programy\n" +"s doplРujЗcimi funkciami, spЗ╧tanИ programom GIMP.\n" +"Tieto programy sЗ vyh╣adАvanИ poХas behu a informАcie\n" +"o ich funkcii a Хasoch zmien sЗ ulo╬enИ do tohoto\n" +"sЗboru. Tento sЗbor je navrhnutЩ vЩhradne pre\n" +"pou╬itie programom GIMP a nemal by by╩ editovanЩ.\n" + +#: app/install.c:163 +#, fuzzy +msgid "" +"Key shortcuts can be dynamically redefined in The GIMP.\n" +"The menurc is a dump of your configuration so it can.\n" +"be remembered for the next session. You may edit this\n" +"file if you wish, but it is much easier to define the\n" +"keys from within The GIMP. Deleting this file will\n" +"restore the default shortcuts." +msgstr "" +"KlАvesovИ skratky sa dajЗ dynamicky predefinova╩.\n" +"SЗbor menurc uchovАva Va╧u konfigurАciu medzi\n" +"relАciami. Je mo╬nИ ho editova╩, ale ove╣a jednoduch╧ie\n" +"je definova╩ klАvesovИ skratky priamo v programe.\n" +"Ak tento sЗbor zma╬ete, obnovia sa pТvodnИ\n" +"klАvesovИ skratky.\n" + +#: app/install.c:172 +#, fuzzy +msgid "" +"The sessionrc is used to store what dialog windows were\n" +"open the last time you quit The GIMP. You can configure\n" +"The GIMP to reopen these dialogs at the saved position." +msgstr "" +"SЗbor sessionrc uchovАva zАznam o polohe okien v okamihu\n" +"poslednИho ukonХenia programu. MТ╬ete GIMP nastavi╩ tak,\n" +"aby boli tieto oknА po spustenМ automaticky obnovenИ.\n" + +#: app/install.c:178 +#, fuzzy +msgid "" +"The unitrc is used to store your user units database.\n" +"You can define additional units and use them just\n" +"like you use the built-in units inches, millimeters,\n" +"points and picas. This file is overwritten each time\n" +"you quit the GIMP." +msgstr "" +"SЗbor unitrc uchovАva databАzu u╬Мvate╣skЩch jednotiek.\n" +"MТ╬ete definova╩ vlastnИ jednotky a pou╬Мva╩ ich\n" +"rovnako ako zabudovanИ palce, milimetre,\n" +"body a piky. Tento sЗbor je prepМsanЩ,\n" +"pri ka╬dom ukonХenМ GIMP-u.\n" + +#: app/install.c:186 +#, fuzzy +msgid "" +"This is a subdirectory which can be used to store\n" +"user defined brushes. The default gimprc file\n" +"checks this subdirectory in addition to the system-\n" +"wide gimp brushes installation when searching for\n" +"brushes." +msgstr "" +"Toto je podadresАr, kam je mo╬nИ uklada╩\n" +"u╬Мvate╣om definovanИ ╧tetce.\n" +"Pod╣a implicitnИho gimprc sЗboru sa pri h╣adanМ\n" +"╧tetcov kontroluje tento podadresАr spolu\n" +"so systИmovou in╧talАciou ╧tetcov.\n" + +#: app/install.c:194 +#, fuzzy +msgid "" +"This is a subdirectory which is used to store brushes\n" +"that are created with the brush editor. The default\n" +"gimprc file checks this subdirectory when searching for\n" +"generated brushes." +msgstr "" +"Toto je podadresАr, kam je mo╬nИ uklada╩\n" +"╧tetce vytvorenИ v editore ╧tetcov.\n" +"Pod╣a implicitnИho gimprc sЗboru sa pri h╣adanМ\n" +"╧tetcov kontroluje tento podadresАr spolu\n" +"so systИmovou in╧talАciou ╧tetcov.\n" + +#: app/install.c:201 +#, fuzzy +msgid "" +"This is a subdirectory which can be used to store\n" +"user defined gradients. The default gimprc file\n" +"checks this subdirectory in addition to the system-\n" +"wide gimp gradients installation when searching for\n" +"gradients." +msgstr "" +"Toto je podadresАr, kam je mo╬nИ uklada╩\n" +"u╬Мvate╣om definovanИ prechody.\n" +"Pod╣a implicitnИho gimprc sЗboru sa pri h╣adanМ\n" +"prechodov kontroluje tento podadresАr spolu\n" +"so systИmovou in╧talАciou prechodov.\n" + +#: app/install.c:209 +#, fuzzy +msgid "" +"This is a subdirectory which can be used to store\n" +"user defined palettes. The default gimprc file\n" +"checks only this subdirectory (not the system-wide\n" +"installation) when searching for palettes. During\n" +"installation, the system palettes will be copied\n" +"here. This is done to allow modifications made to\n" +"palettes during GIMP execution to persist across\n" +"sessions." +msgstr "" +"Toto je podadresАr, kam je mo╬nИ uklada╩\n" +"u╬Мvate╣om definovanИ farebnИ palety.\n" +"Pod╣a implicitnИho gimprc sЗboru sa pri h╣adanМ\n" +"paliet kontroluje iba tento podadresАr\n" +"(systИmovА in╧talАcia nie). PoХas in╧talАcie\n" +"sem budЗ systИmovИ palety skopМrovanИ. Je to preto,\n" +"aby bolo mo╬nИ poХas prАce programu GIMP zmenenИ\n" +"palety uchova╩ medzi relАciami.\n" + +#: app/install.c:220 +#, fuzzy +msgid "" +"This is a subdirectory which can be used to store\n" +"user defined patterns. The default gimprc file\n" +"checks this subdirectory in addition to the system-\n" +"wide gimp patterns installation when searching for\n" +"patterns." +msgstr "" +"Toto je podadresАr, kam je mo╬nИ uklada╩\n" +"u╬Мvate╣om definovanИ vzorky.\n" +"Pod╣a implicitnИho gimprc sЗboru sa pri h╣adanМ\n" +"vzoriek kontroluje tento podadresАr spolu\n" +"so systИmovou in╧talАciou vzoriek.\n" + +#: app/install.c:228 +#, fuzzy +msgid "" +"This is a subdirectory which can be used to store\n" +"user created, temporary, or otherwise non-system-\n" +"supported plug-ins. The default gimprc file\n" +"checks this subdirectory in addition to the system-\n" +"wide GIMP plug-in directories when searching for\n" +"plug-ins." +msgstr "" +"Toto je podadresАr, kam je mo╬nИ uklada╩\n" +"u╬Мvate╣om vytvorenИ, pomocnИ alebo inИ v systИme\n" +"neobsiahnutИ zАsuvnИ moduly.\n" +"Pod╣a implicitnИho gimprc sЗboru sa pri h╣adanМ\n" +"zАsuvnЩch modulov kontroluje tento podadresАr spolu\n" +"so systИmovou in╧talАciou zАsuvnЩch modulov.\n" + +#: app/install.c:237 +#, fuzzy +msgid "" +"This subdirectory can be used to store user created,\n" +"temporary, or otherwise non-system-supported DLL modules.\n" +"The default gimprc file checks this subdirectory\n" +"in addition to the system-wide GIMP module directory\n" +"when searching for modules to load when initializing." +msgstr "" +"Tento adresАr mТ╬e by╩ pou╬itЩ k uchovaniiu u╬Мvate╣om vytvorenЩch,\n" +"pomocnЩch alebo inЩch v systИme neobsiahnutЩch DLL modulov.\n" +"Pod╣a implicitnИho gimprc sЗboru sa pri h╣adanМ\n" +"modulov kontroluje tento podadresАr spolu so systИmovou\n" +"in╧talАciou modulov poХas inicializАcie.\n" + +#: app/install.c:245 +#, fuzzy +msgid "" +"This subdirectory is used by the GIMP to store \n" +"user created and installed scripts. The default gimprc\n" +"file checks this subdirectory in addition to the system-\n" +"wide gimp scripts subdirectory when searching for scripts" +msgstr "" +"Tento podadresАr je pou╬МvanЩ programom GIMP k uchovaniu\n" +"u╬Мvate╣om vytvorenЩch a in╧talovanЩch skriptov. Pod╣a\n" +"implicitnИho gimprc sЗboru sa pri h╣adanМ skriptov kontroluje\n" +"tento podadresАr spolu so systИmovou in╧talАciou skriptov.\n" + +#: app/install.c:252 +#, fuzzy +msgid "" +"This subdirectory is used by the GIMP to temporarily\n" +"store undo buffers to reduce memory usage. If GIMP is\n" +"unceremoniously killed, files may persist in this directory\n" +"of the form: gimp<#>.<#>. These files are useless across\n" +"GIMP sessions and can be destroyed with impunity." +msgstr "" +"Tento podadresАr je pou╬МvanЩ programom GIMP k doХasnИmu\n" +"uchovaniu zmien v obrАzkoch, ХМm sa u╧etrМ pamД╩.\n" +"Pokia╣ je program GIMP bez ceremСniМ odstrelenЩ, mТ╬u tu osta╩\n" +"sЗbory vo forme: gimp<#>.<#>. Tieto mТ╬u by╩\n" +"(polia╣ GIMP nebe╬М) bez problИmov vymazanИ.\n" + +#: app/install.c:260 +msgid "" +"This subdirectory is used to store parameter files for\n" +"the Curves tool." +msgstr "" + +#: app/install.c:265 +msgid "" +"This subdirectory is used to store parameter files for\n" +"the Levels tool." +msgstr "" + +#: app/install.c:270 +#, fuzzy +msgid "" +"This is a subdirectory which can be used to store\n" +"user defined fractals to be used by the FractalExplorer\n" +"plug-in. The default gimprc file checks this subdirectory in\n" +"addition to the systemwide gimp FractalExplorer installation\n" +"when searching for fractals." +msgstr "" +"Toto je podadresАr, kam je mo╬nИ uklada╩\n" +"u╬Мvate╣om definovanИ fraktАly pou╬МvanИ zАsuvnЩm modulom FractalExplorer.\n" +"Pod╣a implicitnИho gimprc sЗboru sa pri h╣adanМ\n" +"fraktАlov kontroluje tento podadresАr spolu\n" +"so systИmovou in╧talАciou FractalExplorer fraktАlov.\n" + +#: app/install.c:278 +#, fuzzy +msgid "" +"This is a subdirectory which can be used to store\n" +"user defined figures to be used by the gfig plug-in.\n" +"The default gimprc file checks this subdirectory in\n" +"addition to the systemwide gimp gfig installation\n" +"when searching for gfig figures." +msgstr "" +"Toto je podadresАr, kam je mo╬nИ uklada╩\n" +"u╬Мvate╣om definovanИ kresby pou╬МvanИ zАsuvnЩm modulom gfig.\n" +"Pod╣a implicitnИho gimprc sЗboru sa pri h╣adanМ\n" +"kresieb kontroluje tento podadresАr spolu\n" +"so systИmovou in╧talАciou gfig kresieb.\n" + +#: app/install.c:286 +#, fuzzy +msgid "" +"This is a subdirectory which can be used to store\n" +"user defined gflares to be used by the gflare plug-in.\n" +"The default gimprc file checks this subdirectory in\n" +"addition to the systemwide gimp gflares installation\n" +"when searching for gflares." +msgstr "" +"Toto je podadresАr, kam je mo╬nИ uklada╩\n" +"u╬Мvate╣om definovanИ zАblesky pou╬МvanИ zАsuvnЩm modulom gflare.\n" +"Pod╣a implicitnИho gimprc sЗboru sa pri h╣adanМ\n" +"zАbleskov kontroluje tento podadresАr spolu\n" +"so systИmovou in╧talАciou gflare zАbleskov.\n" + +#: app/install.c:294 +#, fuzzy +msgid "" +"This is a subdirectory which can be used to store\n" +"user defined data to be used by the Gimpressionist\n" +"plug-in. The default gimprc file checks this subdirectory in\n" +"addition to the systemwide gimp Gimpressionist installation\n" +"when searching for data." +msgstr "" +"Toto je podadresАr, kam je mo╬nИ uklada╩\n" +"u╬Мvate╣om definovanИ zАblesky pou╬МvanИ zАsuvnЩm modulom gflare.\n" +"Pod╣a implicitnИho gimprc sЗboru sa pri h╣adanМ\n" +"zАbleskov kontroluje tento podadresАr spolu\n" +"so systИmovou in╧talАciou gflare zАbleskov.\n" + +#: app/install.c:525 +#, fuzzy +msgid "GIMP User Installation" +msgstr "In╧talАcia programu GIMP" + +#: app/install.c:530 +msgid "Continue" +msgstr "PokraХova╩" + +#. this is a fontset, e.g. multiple comma-separated font definitions +#: app/install.c:560 +msgid "-*-helvetica-bold-r-normal-*-*-240-*-*-*-*-*-*,*" +msgstr "" + +#: app/install.c:578 +#, fuzzy +msgid "" +"Welcome to\n" +"The GIMP User Installation" +msgstr "In╧talАcia programu GIMP" + +#: app/install.c:582 msgid "" "The GIMP - GNU Image Manipulation Program\n" -"\n" +"Copyright (C) 1995-2000\n" +"Spencer Kimball, Peter Mattis and the GIMP Development Team." msgstr "" -"GIMP - GNU program pre prАcu s obrАzkami\n" -"(GNU Image Manipulation Program)\n" -"\n" -#: app/install.c:118 +#: app/install.c:591 +#, fuzzy msgid "" "This program is free software; you can redistribute it and/or modify\n" "it under the terms of the GNU General Public License as published by\n" "the Free Software Foundation; either version 2 of the License, or\n" -"(at your option) any later version.\n" +"(at your option) any later version." msgstr "" "Tento program je volne ╧МЬite╣nЩ; mТ╬ete ho redistribuova╩ a meni╩\n" "v sЗlade so V╧eobecnou verejnou licenciou GNU publikovanou\n" "vo Free Software Foundation; buО licenciou verzie 2 alebo\n" "(pod╣a va╧ej vo╣by) akouko╣vek nov╧ou.\n" -#: app/install.c:123 +#: app/install.c:596 +#, fuzzy msgid "" "This program is distributed in the hope that it will be useful,\n" "but WITHOUT ANY WARRANTY; without even the implied warranty of\n" "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n" -"See the GNU General Public License for more details.\n" +"See the GNU General Public License for more details." msgstr "" "Tento program je ╧МrenЩ v nАdeji, ╬e bude u╬itoХnЩ, av╧ak\n" "BEZ AKEJKO╔VEK ZаRUKY; neposkytujЗ se ani odvodenИ zАruky\n" "PREDAJNOSTI alebo VHODNOSTI PRE URхITщ зхEL.\n" "оal╧ie podrobnosti h╣adajte vo V╧eobecnej verejnej licencii GNU.\n" -#: app/install.c:128 +#: app/install.c:601 +#, fuzzy msgid "" "You should have received a copy of the GNU General Public License\n" "along with this program; if not, write to the Free Software\n" "Foundation, Inc., 59 Temple Place - Suite 330, Boston,\n" -"MA 02111-1307, USA.\n" +"MA 02111-1307, USA." msgstr "" "S tЩmto programom by ste mali zМska╩ kСpiu V╧eobecnej verejnej\n" "licencie GNU; ak tomu tak nie je, napМ╧te do Free Software\n" "Foundation, Inc., 59 Temple Place - Suite 330, Boston,\n" "MA 02111-1307, USA.\n" -#: app/install.c:134 -msgid "" -"Personal GIMP Installation\n" -"\n" +#: app/install.c:607 +msgid "Click \"Continue\" to enter the GIMP user installation." +msgstr "" + +#: app/install.c:633 +#, fuzzy +msgid "Personal GIMP Directory" msgstr "" "U╬Мvate╣skА in╧talАcia programu GIMP\n" "\n" -#: app/install.c:135 -msgid "For a proper GIMP installation, a subdirectory called\n" -msgstr "Pri riadnej in╧talАcii programu GIMP bude vytvorenЩ podadresАr\n" - -#. will be replaced with gimp_directory() -#: app/install.c:137 +#: app/install.c:650 +#, fuzzy msgid "" -" needs to be created. This\n" -"subdirectory will contain a number of important files:\n" -"\n" +"For a proper GIMP installation, a subdirectory needs to be created.\n" +"This subdirectory will contain a number of important files." msgstr "" " je tЬeba vytvori╩. Tento\n" "podadresАr bude obsahova╩ mno╬stvo dТle╬itЩch sЗborov:\n" "\n" -#: app/install.c:141 +#: app/install.c:653 msgid "" -"\t\tThe gimprc is used to store personal preferences\n" -"\t\tthat affect GIMP's default behavior.\n" -"\t\tPaths to search for brushes, palettes, gradients,\n" -"\t\tpatterns, plug-ins and modules can also configured here.\n" +"Click on one of the files or subdirectories in the tree\n" +"to get more information about the selected item." msgstr "" -"\t\t SЗbor gimprc uchovАva osobnИ predvo╣by, ako je implicitnИ\n" -"\t\tchovanie programu GIMP a klАvesovИ skratky zАsuvnЩch modulov.\n" -"\t\tSЗ tu aj nastavenИ cesty pre h╣adanie ╧tetcov,\n" -"\t\tpaliet, prechodov, vzorov, zАsuvnЩch modulov a modulov.\n" -#: app/install.c:147 -msgid "" -"\t\tPlug-ins and extensions are external programs run by\n" -"\t\tthe GIMP which provide additional functionality.\n" -"\t\tThese programs are searched for at run-time and\n" -"\t\tinformation about their functionality and mod-times\n" -"\t\tis cached in this file. This file is intended to\n" -"\t\tbe GIMP-readable only, and should not be edited.\n" +#: app/install.c:656 +msgid "Click \"Continue\" to create your personal GIMP directory." msgstr "" -"\t\tZАsuvnИ moduly a roz╧Мrenia sЗ externИ programy\n" -"\t\ts doplРujЗcimi funkciami, spЗ╧tanИ programom GIMP.\n" -"\t\tTieto programy sЗ vyh╣adАvanИ poХas behu a informАcie\n" -"\t\to ich funkcii a Хasoch zmien sЗ ulo╬enИ do tohoto\n" -"\t\tsЗboru. Tento sЗbor je navrhnutЩ vЩhradne pre\n" -"\t\tpou╬itie programom GIMP a nemal by by╩ editovanЩ.\n" -#: app/install.c:155 -msgid "" -"\t\tKey shortcuts can be dynamically redefined in The GIMP.\n" -"\t\tThe menurc is a dump of your configuration so it can.\n" -"\t\tbe remembered for the next session. You may edit this\n" -"\t\tfile if you wish, but it is much easier to define the\n" -"\t\tkeys from within The GIMP. Deleting this file will\n" -"\t\trestore the default shortcuts.\n" -msgstr "" -"\t\tKlАvesovИ skratky sa dajЗ dynamicky predefinova╩.\n" -"\t\tSЗbor menurc uchovАva Va╧u konfigurАciu medzi\n" -"\t\trelАciami. Je mo╬nИ ho editova╩, ale ove╣a jednoduch╧ie\n" -"\t\tje definova╩ klАvesovИ skratky priamo v programe.\n" -"\t\tAk tento sЗbor zma╬ete, obnovia sa pТvodnИ\n" -"\t\tklАvesovИ skratky.\n" - -#: app/install.c:163 -msgid "" -"\t\tThe sessionrc is used to store what dialog windows were\n" -"\t\topen the last time you quit The GIMP. You can configure\n" -"\t\tThe GIMP to reopen these dialogs at the saved position.\n" -msgstr "" -"\t\tSЗbor sessionrc uchovАva zАznam o polohe okien v okamihu\n" -"\t\tposlednИho ukonХenia programu. MТ╬ete GIMP nastavi╩ tak,\n" -"\t\taby boli tieto oknА po spustenМ automaticky obnovenИ.\n" - -#: app/install.c:168 -msgid "" -"\t\tThe unitrc is used to store your user units database.\n" -"\t\tYou can define additional units and use them just\n" -"\t\tlike you use the built-in units inches, millimeters,\n" -"\t\tpoints and picas. This file is overwritten each time\n" -"\t\tyou quit the GIMP.\n" -msgstr "" -"\t\tSЗbor unitrc uchovАva databАzu u╬Мvate╣skЩch jednotiek.\n" -"\t\tMТ╬ete definova╩ vlastnИ jednotky a pou╬Мva╩ ich\n" -"\t\trovnako ako zabudovanИ palce, milimetre,\n" -"\t\tbody a piky. Tento sЗbor je prepМsanЩ,\n" -"\t\tpri ka╬dom ukonХenМ GIMP-u.\n" - -#: app/install.c:175 -msgid "" -"\t\tThis is a subdirectory which can be used to store\n" -"\t\tuser defined brushes. The default gimprc file\n" -"\t\tchecks this subdirectory in addition to the system-\n" -"\t\twide gimp brushes installation when searching for\n" -"\t\tbrushes.\n" -msgstr "" -"\t\tToto je podadresАr, kam je mo╬nИ uklada╩\n" -"\t\tu╬Мvate╣om definovanИ ╧tetce.\n" -"\t\tPod╣a implicitnИho gimprc sЗboru sa pri h╣adanМ\n" -"\t\t╧tetcov kontroluje tento podadresАr spolu\n" -"\t\tso systИmovou in╧talАciou ╧tetcov.\n" - -#: app/install.c:182 -msgid "" -"\t\tThis is a subdirectory which is used to store brushes\n" -"\t\tthat are created with the brush editor. The default\n" -"\t\tgimprc file checks this subdirectory when searching for\n" -"\t\tgenerated brushes.\n" -msgstr "" -"\t\tToto je podadresАr, kam je mo╬nИ uklada╩\n" -"\t\t╧tetce vytvorenИ v editore ╧tetcov.\n" -"\t\tPod╣a implicitnИho gimprc sЗboru sa pri h╣adanМ\n" -"\t\t╧tetcov kontroluje tento podadresАr spolu\n" -"\t\tso systИmovou in╧talАciou ╧tetcov.\n" - -#: app/install.c:188 -msgid "" -"\t\tThis is a subdirectory which can be used to store\n" -"\t\tuser defined gradients. The default gimprc file\n" -"\t\tchecks this subdirectory in addition to the system-\n" -"\t\twide gimp gradients installation when searching for\n" -"\t\tgradients.\n" -msgstr "" -"\t\tToto je podadresАr, kam je mo╬nИ uklada╩\n" -"\t\tu╬Мvate╣om definovanИ prechody.\n" -"\t\tPod╣a implicitnИho gimprc sЗboru sa pri h╣adanМ\n" -"\t\tprechodov kontroluje tento podadresАr spolu\n" -"\t\tso systИmovou in╧talАciou prechodov.\n" - -#: app/install.c:195 -msgid "" -"\t\tThis is a subdirectory which can be used to store\n" -"\t\tuser defined figures to be used by the gfig plug-in.\n" -"\t\tThe default gimprc file checks this subdirectory in\n" -"\t\taddition to the systemwide gimp gfig installation\n" -"\t\twhen searching for gfig figures.\n" -msgstr "" -"\t\tToto je podadresАr, kam je mo╬nИ uklada╩\n" -"\t\tu╬Мvate╣om definovanИ kresby pou╬МvanИ zАsuvnЩm modulom gfig.\n" -"\t\tPod╣a implicitnИho gimprc sЗboru sa pri h╣adanМ\n" -"\t\tkresieb kontroluje tento podadresАr spolu\n" -"\t\tso systИmovou in╧talАciou gfig kresieb.\n" - -#: app/install.c:202 -msgid "" -"\t\tThis is a subdirectory which can be used to store\n" -"\t\tuser defined gflares to be used by the gflare plug-in.\n" -"\t\tThe default gimprc file checks this subdirectory in\n" -"\t\taddition to the systemwide gimp gflares installation\n" -"\t\twhen searching for gflares.\n" -msgstr "" -"\t\tToto je podadresАr, kam je mo╬nИ uklada╩\n" -"\t\tu╬Мvate╣om definovanИ zАblesky pou╬МvanИ zАsuvnЩm modulom gflare.\n" -"\t\tPod╣a implicitnИho gimprc sЗboru sa pri h╣adanМ\n" -"\t\tzАbleskov kontroluje tento podadresАr spolu\n" -"\t\tso systИmovou in╧talАciou gflare zАbleskov.\n" - -#: app/install.c:209 -msgid "" -"\t\tThis is a subdirectory which can be used to store\n" -"\t\tuser defined fractals to be used by the FractalExplorer\n" -"\t\tplug-in. The default gimprc file checks this subdirectory in\n" -"\t\taddition to the systemwide gimp FractalExplorer installation\n" -"\t\twhen searching for fractals.\n" -msgstr "" -"\t\tToto je podadresАr, kam je mo╬nИ uklada╩\n" -"\t\tu╬Мvate╣om definovanИ fraktАly pou╬МvanИ zАsuvnЩm modulom " -"FractalExplorer.\n" -"\t\tPod╣a implicitnИho gimprc sЗboru sa pri h╣adanМ\n" -"\t\tfraktАlov kontroluje tento podadresАr spolu\n" -"\t\tso systИmovou in╧talАciou FractalExplorer fraktАlov.\n" - -#: app/install.c:216 -msgid "" -"\t\tThis is a subdirectory which can be used to store\n" -"\t\tuser defined palettes. The default gimprc file\n" -"\t\tchecks only this subdirectory (not the system-wide\n" -"\t\tinstallation) when searching for palettes. During\n" -"\t\tinstallation, the system palettes will be copied\n" -"\t\there. This is done to allow modifications made to\n" -"\t\tpalettes during GIMP execution to persist across\n" -"\t\tsessions.\n" -msgstr "" -"\t\tToto je podadresАr, kam je mo╬nИ uklada╩\n" -"\t\tu╬Мvate╣om definovanИ farebnИ palety.\n" -"\t\tPod╣a implicitnИho gimprc sЗboru sa pri h╣adanМ\n" -"\t\tpaliet kontroluje iba tento podadresАr\n" -"\t\t(systИmovА in╧talАcia nie). PoХas in╧talАcie\n" -"\t\tsem budЗ systИmovИ palety skopМrovanИ. Je to preto,\n" -"\t\taby bolo mo╬nИ poХas prАce programu GIMP zmenenИ\n" -"\t\tpalety uchova╩ medzi relАciami.\n" - -#: app/install.c:226 -msgid "" -"\t\tThis is a subdirectory which can be used to store\n" -"\t\tuser defined patterns. The default gimprc file\n" -"\t\tchecks this subdirectory in addition to the system-\n" -"\t\twide gimp patterns installation when searching for\n" -"\t\tpatterns.\n" -msgstr "" -"\t\tToto je podadresАr, kam je mo╬nИ uklada╩\n" -"\t\tu╬Мvate╣om definovanИ vzorky.\n" -"\t\tPod╣a implicitnИho gimprc sЗboru sa pri h╣adanМ\n" -"\t\tvzoriek kontroluje tento podadresАr spolu\n" -"\t\tso systИmovou in╧talАciou vzoriek.\n" - -#: app/install.c:233 -msgid "" -"\t\tThis is a subdirectory which can be used to store\n" -"\t\tuser created, temporary, or otherwise non-system-\n" -"\t\tsupported plug-ins. The default gimprc file\n" -"\t\tchecks this subdirectory in addition to the system-\n" -"\t\twide GIMP plug-in directories when searching for\n" -"\t\tplug-ins.\n" -msgstr "" -"\t\tToto je podadresАr, kam je mo╬nИ uklada╩\n" -"\t\tu╬Мvate╣om vytvorenИ, pomocnИ alebo inИ v systИme\n" -"\t\tneobsiahnutИ zАsuvnИ moduly.\n" -"\t\tPod╣a implicitnИho gimprc sЗboru sa pri h╣adanМ\n" -"\t\tzАsuvnЩch modulov kontroluje tento podadresАr spolu\n" -"\t\tso systИmovou in╧talАciou zАsuvnЩch modulov.\n" - -#: app/install.c:241 +#: app/install.c:736 #, fuzzy -msgid "" -"\t\tThis subdirectory can be used to store user created,\n" -"\t\ttemporary, or otherwise non-system-supported DLL modules.\n" -"\t\tThe default gimprc file checks this subdirectory\n" -"\t\tin addition to the system-wide GIMP module directory\n" -"\t\twhen searching for modules to load when initializing.\n" -msgstr "" -"\t\tTento adresАr mТ╬e by╩ pou╬itЩ k uchovaniiu u╬Мvate╣om vytvorenЩch,\n" -"\t\tpomocnЩch alebo inЩch v systИme neobsiahnutЩch DLL modulov.\n" -"\t\tPod╣a implicitnИho gimprc sЗboru sa pri h╣adanМ\n" -"\t\tmodulov kontroluje tento podadresАr spolu so systИmovou\n" -"\t\tin╧talАciou modulov poХas inicializАcie.\n" - -#: app/install.c:248 -msgid "" -"\t\tThis subdirectory is used by the GIMP to store \n" -"\t\tuser created and installed scripts. The default gimprc\n" -"\t\tfile checks this subdirectory in addition to the system\n" -"\t\t-wide gimp scripts subdirectory when searching for scripts\n" -msgstr "" -"\t\tTento podadresАr je pou╬МvanЩ programom GIMP k uchovaniu\n" -"\t\tu╬Мvate╣om vytvorenЩch a in╧talovanЩch skriptov. Pod╣a\n" -"\t\timplicitnИho gimprc sЗboru sa pri h╣adanМ skriptov kontroluje\n" -"\t\ttento podadresАr spolu so systИmovou in╧talАciou skriptov.\n" - -#: app/install.c:254 -msgid "" -"\t\tThis subdirectory is used by the GIMP to temporarily\n" -"\t\tstore undo buffers to reduce memory usage. If GIMP is\n" -"\t\tunceremoniously killed, files may persist in this directory\n" -"\t\tof the form: gimp<#>.<#>. These files are useless across\n" -"\t\tGIMP sessions and can be destroyed with impunity.\n" -msgstr "" -"\t\tTento podadresАr je pou╬МvanЩ programom GIMP k doХasnИmu\n" -"\t\tuchovaniu zmien v obrАzkoch, ХМm sa u╧etrМ pamД╩.\n" -"\t\tPokia╣ je program GIMP bez ceremСniМ odstrelenЩ, mТ╬u tu osta╩\n" -"\t\tsЗbory vo forme: gimp<#>.<#>. Tieto mТ╬u by╩\n" -"\t\t(polia╣ GIMP nebe╬М) bez problИmov vymazanИ.\n" - -#: app/install.c:263 -msgid "GIMP Installation" -msgstr "In╧talАcia programu GIMP" - -#: app/install.c:268 -msgid "Install" -msgstr "In╧talova╩" - -#: app/install.c:270 -msgid "Ignore" -msgstr "Ignorova╩" - -#. this is a fontset, e.g. multiple comma-separated font definitions -#: app/install.c:295 app/install.c:453 -msgid "-*-helvetica-bold-r-normal-*-*-120-*-*-*-*-*-*,*" -msgstr "" - -#. this is a font, provide only one single font definition -#: app/install.c:298 -msgid "-*-helvetica-medium-o-normal-*-*-100-*-*-*-*-*-*" -msgstr "" - -#. this is a fontset, e.g. multiple comma-separated font definitions -#: app/install.c:301 -msgid "-*-helvetica-medium-r-normal-*-*-100-*-*-*-*-*-*,*" -msgstr "" - -#: app/install.c:423 -msgid "Installation Log" -msgstr "Protokol o in╧talАcii" - -#: app/install.c:428 -msgid "Continue" -msgstr "PokraХova╩" - -#. this is a fontset, e.g. multiple comma-separated font definitions -#: app/install.c:456 -msgid "-*-helvetica-medium-r-normal-*-*-120-*-*-*-*-*-*,*" -msgstr "" - -#: app/install.c:462 -msgid "" -"User Installation Log\n" -"\n" +msgid "User Installation Log" msgstr "" "Protokol o u╬Мvate╣skej in╧talАcii\n" "\n" -#: app/install.c:472 -msgid " does not exist. Cannot install.\n" +#: app/install.c:741 +msgid "GIMP Performance Tuning" +msgstr "" + +#: app/install.c:744 +msgid "For optimal GIMP performance, some settings may have to be adjusted." +msgstr "" + +#: app/install.c:751 +msgid "Click \"Continue\" to accept the settings above." +msgstr "" + +#: app/install.c:760 +#, fuzzy +msgid "Monitor Resolution" +msgstr "RozlМ╧enie monitora zМska╩" + +#: app/install.c:763 +msgid "" +"To display images in their natural size, GIMP needs to know your monitor " +"resolution." +msgstr "" + +#: app/install.c:771 +msgid "Click \"Continue\" to start The GIMP." +msgstr "" + +#: app/install.c:845 +#, fuzzy +msgid "does not exist. Cannot install." msgstr " neexistuje. NedА sa in╧talova╩.\n" -#: app/install.c:480 -msgid "" -" has invalid permissions.\n" -"Cannot install." +#: app/install.c:857 +#, fuzzy +msgid "has invalid permissions. Cannot install." msgstr "" " nemА dostatoХnИ prАva.\n" "NedА sa in╧talova╩." -#: app/install.c:514 +#: app/install.c:895 +#, fuzzy msgid "" -"Did you notice any error messages\n" -"in the console window? If not, installation\n" -"was successful! Otherwise, quit and investigate\n" -"the possible reason...\n" +"Did you notice any error messages in the console window?\n" +"If not, installation was successful!\n" +"Otherwise, quit and investigate the possible reason..." msgstr "" "V╧imli ste si nejakИ chybovИ hlАsenia\n" "na konzole? Ak nie, in╧talАcia sa podarila!\n" -#: app/install.c:546 +#: app/install.c:955 +#, fuzzy msgid "" -"\n" -"Installation successful!\n" +"Did you notice any error messages in the lines above?\n" +"If not, installation was successful!\n" +"Otherwise, quit and investigate the possible reason..." msgstr "" -"\n" -"In╧talАcia prebehla Зspe╧ne!\n" +"V╧imli ste si nejakИ chybovИ hlАsenia\n" +"na konzole? Ak nie, in╧talАcia sa podarila!\n" -#: app/install.c:555 -msgid "" -"\n" -"Installation failed. Contact system administrator.\n" +#: app/install.c:969 +msgid "Click \"Continue\" to complete GIMP installation." +msgstr "" + +#: app/install.c:978 +#, fuzzy +msgid "Installation failed. Contact system administrator." msgstr "" "\n" "In╧talАcia zlyhala. Kontaktujte prosМm administrАtora.\n" +#: app/install.c:999 +msgid "" +"GIMP uses a limited amount of memory to store image data, the so-called\n" +"\"Tile Cache\". You should adjust it's size to fit into memory. Consider\n" +"the amount of memory used by other running processes." +msgstr "" + +#: app/install.c:1015 app/preferences_dialog.c:2102 +msgid "Tile Cache Size:" +msgstr "Ve╣kos╩ vyrovnАvacej pamДte dla╬dМc:" + +#: app/install.c:1025 +msgid "" +"All image and undo data which doesn't fit into the Tile Cache will be\n" +"written to a swap file. This file should be located on a local filesystem\n" +"with enough free space (several hundred MB). On a UNIX system, you\n" +"may want to use the system-wide temp-dir (\"/tmp\" or \"/var/tmp\")." +msgstr "" + +#: app/install.c:1035 app/preferences_dialog.c:2361 +msgid "Select Swap Dir" +msgstr "Vyberte odkladacМ adresАr" + +#: app/install.c:1041 +#, fuzzy +msgid "Swap Directory:" +msgstr "OdkladacМ adresАr:" + +#: app/install.c:1063 +msgid "" +"GIMP can obtain this information from your X-server.\n" +"However, most X-servers do not return useful values." +msgstr "" + +#: app/install.c:1070 +#, fuzzy, c-format +msgid "Get Resolution from X-server (Currently %d x %d dpi)" +msgstr "(Teraz %d в %d dpi)" + +#: app/install.c:1087 +msgid "Alternatively, you can set the monitor resolution manually." +msgstr "" + +#: app/install.c:1102 +#, fuzzy +msgid "Monitor Resolution X:" +msgstr "RozlМ╧enie monitora zМska╩" + #: app/interface.c:312 msgid "" "Foreground & background colors. The black and white squares reset colors. " @@ -2896,8 +3014,8 @@ msgstr "Rozhranie prechodov" msgid "Guide procedures" msgstr "ProcedЗry sprievodcu" -#: app/internal_procs.c:122 app/preferences_dialog.c:1772 -#: app/preferences_dialog.c:1774 +#: app/internal_procs.c:122 app/preferences_dialog.c:1733 +#: app/preferences_dialog.c:1735 msgid "Interface" msgstr "Rozhranie" @@ -3320,145 +3438,136 @@ msgid "degrees" msgstr "stupРov" #. /File -#: app/menus.c:82 +#. the underscore installs an accelerator using the character that follows +#: app/menus.c:85 #, fuzzy msgid "/_File" msgstr "/SЗbor" -#: app/menus.c:84 app/menus.c:191 +#. /File +#: app/menus.c:87 app/menus.c:193 msgid "/File/New..." msgstr "/SЗbor/NovЩ..." -#: app/menus.c:86 app/menus.c:193 +#: app/menus.c:89 app/menus.c:195 msgid "/File/Open..." msgstr "/SЗbor/Otvori╩..." -#: app/menus.c:93 +#: app/menus.c:96 msgid "/File/Acquire" msgstr "/SЗbor/ZМska╩" -#: app/menus.c:98 +#: app/menus.c:101 msgid "/File/Preferences..." msgstr "/SЗbor/Predvo╣by..." -#: app/menus.c:105 -msgid "/File/Dialogs" -msgstr "/SЗbor/Palety" - -#: app/menus.c:107 +#: app/menus.c:108 #, fuzzy msgid "/File/Dialogs/Layers, Channels & Paths..." msgstr "/SЗbor/Palety/Vrstvy a kanАly..." -#: app/menus.c:109 +#: app/menus.c:110 msgid "/File/Dialogs/Tool Options..." msgstr "/SЗbor/Palety/Predvo╣by nАstrojov..." -#: app/menus.c:114 +#: app/menus.c:115 msgid "/File/Dialogs/Brushes..." msgstr "/SЗbor/Palety/╘tetce..." -#: app/menus.c:116 +#: app/menus.c:117 msgid "/File/Dialogs/Patterns..." msgstr "/SЗbor/Palety/Vzory..." -#: app/menus.c:118 +#: app/menus.c:119 msgid "/File/Dialogs/Gradients..." msgstr "/SЗbor/Palety/Prechody..." -#: app/menus.c:120 +#: app/menus.c:121 msgid "/File/Dialogs/Palette..." msgstr "/SЗbor/Palety/Farby..." -#: app/menus.c:122 +#: app/menus.c:123 msgid "/File/Dialogs/Indexed Palette..." msgstr "/SЗbor/Palety/IndexovanА paleta..." -#: app/menus.c:127 +#: app/menus.c:128 msgid "/File/Dialogs/Input Devices..." msgstr "/SЗbor/Palety/VstupnИ zariadenia..." -#: app/menus.c:129 +#: app/menus.c:130 msgid "/File/Dialogs/Device Status..." msgstr "/SЗbor/Palety/Stav zariadenia..." -#: app/menus.c:134 +#: app/menus.c:135 msgid "/File/Dialogs/Document Index..." msgstr "/SЗbor/Palety/Zoznam dokumentov..." -#: app/menus.c:136 +#: app/menus.c:137 msgid "/File/Dialogs/Error Console..." msgstr "/SЗbor/Palety/ChybovА konzola..." -#: app/menus.c:138 +#: app/menus.c:139 msgid "/File/Dialogs/Display Filters..." msgstr "/SЗbor/Palety/Displej filtre..." -#: app/menus.c:148 app/menus.c:206 +#: app/menus.c:149 app/menus.c:208 msgid "/File/Quit" msgstr "/SЗbor/Koniec" #. /Xtns -#: app/menus.c:153 +#. the underscore installs an accelerator using the character that follows +#: app/menus.c:155 msgid "/_Xtns" msgstr "" -#: app/menus.c:155 +#: app/menus.c:157 msgid "/Xtns/Module Browser..." msgstr "/Xtns/PrehliadaХ modulov..." #. /Help -#: app/menus.c:163 +#. the underscore installs an accelerator using the character that follows +#: app/menus.c:166 #, fuzzy msgid "/_Help" msgstr "/Pomoc" -#: app/menus.c:165 +#: app/menus.c:168 msgid "/Help/Help..." msgstr "/Pomoc/Pomoc..." -#: app/menus.c:167 +#: app/menus.c:170 msgid "/Help/Context Help..." msgstr "/Pomoc/KontextovА pomoc..." -#: app/menus.c:169 +#: app/menus.c:172 msgid "/Help/Tip of the Day..." msgstr "/Pomoc/Tip dРa..." -#: app/menus.c:171 +#: app/menus.c:174 msgid "/Help/About..." msgstr "/Pomoc/O programe..." -#: app/menus.c:173 +#: app/menus.c:176 msgid "/Help/Dump Items (Debug)" msgstr "/Pomoc/Dump Items (Debug)" -#. /File -#: app/menus.c:189 -msgid "/File" -msgstr "/SЗbor" - -#: app/menus.c:195 +#: app/menus.c:197 msgid "/File/Save" msgstr "/SЗbor/Ulo╬i╩" -#: app/menus.c:197 +#: app/menus.c:199 msgid "/File/Save As..." msgstr "/SЗbor/Ulo╬i╩ ako..." -#: app/menus.c:199 +#: app/menus.c:201 msgid "/File/Revert" msgstr "/SЗbor/VrАti╩" -#: app/menus.c:204 +#: app/menus.c:206 msgid "/File/Close" msgstr "/SЗbor/Zatvori╩" #. /Edit -#: app/menus.c:214 -msgid "/Edit" -msgstr "/зpravy" - #: app/menus.c:216 msgid "/Edit/Undo" msgstr "/зpravy/VrАti╩" @@ -3489,682 +3598,598 @@ msgstr "/ #. /Edit/Buffer #: app/menus.c:236 -msgid "/Edit/Buffer" -msgstr "/зpravy/SchrАnka" - -#: app/menus.c:238 msgid "/Edit/Buffer/Cut Named..." msgstr "/зpravy/SchrАnka/VystrihnЗ╩ pomenovanЩ..." -#: app/menus.c:240 +#: app/menus.c:238 msgid "/Edit/Buffer/Copy Named..." msgstr "/зpravy/SchrАnka/KopМrova╩ pomenovanЩ..." -#: app/menus.c:242 +#: app/menus.c:240 msgid "/Edit/Buffer/Paste Named..." msgstr "/зpravy/SchrАnka/Vlo╬i╩ pomenovanЩ..." -#: app/menus.c:247 +#: app/menus.c:245 msgid "/Edit/Clear" msgstr "/зpravy/Vymaza╩" -#: app/menus.c:249 +#: app/menus.c:247 msgid "/Edit/Fill" msgstr "/зpravy/Vyplni╩" -#: app/menus.c:251 +#: app/menus.c:249 msgid "/Edit/Stroke" msgstr "/зpravy/╚ahy" #. /Select -#: app/menus.c:259 -msgid "/Select" -msgstr "/Selekcia" - -#: app/menus.c:261 +#: app/menus.c:257 msgid "/Select/Invert" msgstr "/Selekcia/Invertova╩" -#: app/menus.c:263 +#: app/menus.c:259 msgid "/Select/All" msgstr "/Selekcia/V╧etko" -#: app/menus.c:265 +#: app/menus.c:261 msgid "/Select/None" msgstr "/Selekcia/NiХ" -#: app/menus.c:267 +#: app/menus.c:263 msgid "/Select/Float" msgstr "/Selekcia/PlАvajЗca" -#: app/menus.c:272 +#: app/menus.c:268 msgid "/Select/Feather..." msgstr "/Selekcia/Zjemni╩..." -#: app/menus.c:274 +#: app/menus.c:270 msgid "/Select/Sharpen" msgstr "/Selekcia/Zaostri╩" -#: app/menus.c:276 +#: app/menus.c:272 msgid "/Select/Shrink..." msgstr "/Selekcia/Zmen╧i╩..." -#: app/menus.c:278 +#: app/menus.c:274 msgid "/Select/Grow..." msgstr "/Selekcia/ZvДХ╧i╩..." -#: app/menus.c:280 +#: app/menus.c:276 msgid "/Select/Border..." msgstr "/Selekcia/Obvod..." -#: app/menus.c:285 +#: app/menus.c:281 msgid "/Select/Save to Channel" msgstr "/Selekcia/Ulo╬i╩ ako kanАl" #. /View -#: app/menus.c:290 -msgid "/View" -msgstr "/Zobrazenie" - -#: app/menus.c:292 +#: app/menus.c:286 msgid "/View/Zoom In" msgstr "/Zobrazenie/PriblМ╬i╩" -#: app/menus.c:294 +#: app/menus.c:288 msgid "/View/Zoom Out" msgstr "/Zobrazenie/Oddiali╩" #. /View/Zoom -#: app/menus.c:299 -msgid "/View/Zoom" -msgstr "/Zobrazenie/Mierka" - -#: app/menus.c:301 +#: app/menus.c:293 msgid "/View/Zoom/16:1" msgstr "/Zobrazenie/Mierka/16:1" -#: app/menus.c:303 +#: app/menus.c:295 msgid "/View/Zoom/8:1" msgstr "/Zobrazenie/Mierka/8:1" -#: app/menus.c:305 +#: app/menus.c:297 msgid "/View/Zoom/4:1" msgstr "/Zobrazenie/Mierka/4:1" -#: app/menus.c:307 +#: app/menus.c:299 msgid "/View/Zoom/2:1" msgstr "/Zobrazenie/Mierka/2:1" -#: app/menus.c:309 +#: app/menus.c:301 msgid "/View/Zoom/1:1" msgstr "/Zobrazenie/Mierka/1:1" -#: app/menus.c:311 +#: app/menus.c:303 msgid "/View/Zoom/1:2" msgstr "/Zobrazenie/Mierka/1:2" -#: app/menus.c:313 +#: app/menus.c:305 msgid "/View/Zoom/1:4" msgstr "/Zobrazenie/Mierka/1:4" -#: app/menus.c:315 +#: app/menus.c:307 msgid "/View/Zoom/1:8" msgstr "/Zobrazenie/Mierka/1:8" -#: app/menus.c:317 +#: app/menus.c:309 msgid "/View/Zoom/1:16" msgstr "/Zobrazenie/Mierka/1:16" -#: app/menus.c:320 +#: app/menus.c:312 msgid "/View/Dot for Dot" msgstr "/Zobrazenie/Jedna k jednej" -#: app/menus.c:325 +#: app/menus.c:317 msgid "/View/Info Window..." msgstr "/Zobrazenie/InformАcie..." -#: app/menus.c:327 +#: app/menus.c:319 msgid "/View/Nav. Window..." msgstr "/Zobrazenie/NavigАtor..." -#: app/menus.c:329 -msgid "/View/Undo History..." -msgstr "/Zobrazenie/HistСria..." - -#: app/menus.c:334 +#: app/menus.c:324 msgid "/View/Toggle Selection" msgstr "/Zobrazenie/Skry╩ selekciu" -#: app/menus.c:336 +#: app/menus.c:326 msgid "/View/Toggle Rulers" msgstr "/Zobrazenie/PravМtka" -#: app/menus.c:338 +#: app/menus.c:328 msgid "/View/Toggle Statusbar" msgstr "/Zobrazenie/StavovА li╧ta" -#: app/menus.c:340 +#: app/menus.c:330 msgid "/View/Toggle Guides" msgstr "/Zobrazenie/VodМtka" -#: app/menus.c:342 +#: app/menus.c:332 msgid "/View/Snap to Guides" msgstr "/Zobrazenie/MagnetickИ vodМtka" -#: app/menus.c:347 +#: app/menus.c:337 msgid "/View/New View" msgstr "/Zobrazenie/NovЩ poh╣ad" -#: app/menus.c:349 +#: app/menus.c:339 msgid "/View/Shrink Wrap" msgstr "/Zobrazenie/PrispТsobi╩ ve╣kos╩ okna" -#. /Image -#: app/menus.c:357 -msgid "/Image" -msgstr "/ObrАzok" - #. /Image/Mode -#: app/menus.c:362 -msgid "/Image/Mode" -msgstr "/ObrАzok/FarebnЩ mСd" - -#: app/menus.c:364 +#: app/menus.c:344 msgid "/Image/Mode/RGB" msgstr "/ObrАzok/FarebnЩ mСd/RGB farby" -#: app/menus.c:366 +#: app/menus.c:346 msgid "/Image/Mode/Grayscale" msgstr "/ObrАzok/FarebnЩ mСd/Odtiene ╧edej" -#: app/menus.c:368 +#: app/menus.c:348 msgid "/Image/Mode/Indexed..." msgstr "/ObrАzok/FarebnЩ mСd/IndexovanЩ..." #. /Image/Colors -#: app/menus.c:376 -msgid "/Image/Colors" -msgstr "/ObrАzok/Farby" - -#: app/menus.c:381 +#: app/menus.c:356 msgid "/Image/Colors/Desaturate" msgstr "/ObrАzok/Farby/Odfarbi╩" -#: app/menus.c:383 +#: app/menus.c:358 msgid "/Image/Colors/Invert" msgstr "/ObrАzok/Farby/Invertova╩" #. /Image/Colors/Auto -#: app/menus.c:391 -msgid "/Image/Colors/Auto" -msgstr "/ObrАzok/Farby/Auto" - -#: app/menus.c:393 +#: app/menus.c:366 msgid "/Image/Colors/Auto/Equalize" msgstr "/ObrАzok/Farby/Auto/Vyrovnanie" #. /Image/Alpha -#: app/menus.c:401 -msgid "/Image/Alpha" -msgstr "/ObrАzok/Alfa" - -#: app/menus.c:403 +#: app/menus.c:374 msgid "/Image/Alpha/Add Alpha Channel" msgstr "/ObrАzok/Alfa/Prida╩ alfa kanАl" #. /Image/Transforms -#: app/menus.c:408 -msgid "/Image/Transforms" -msgstr "/ObrАzok/TransformАcie" - -#: app/menus.c:410 +#: app/menus.c:379 msgid "/Image/Transforms/Offset..." msgstr "/ObrАzok/TransformАcie/Posun..." -#: app/menus.c:412 +#: app/menus.c:381 msgid "/Image/Transforms/Rotate" msgstr "/ObrАzok/TransformАcie/OtoХenie" -#: app/menus.c:419 +#: app/menus.c:388 msgid "/Image/Canvas Size..." msgstr "/ObrАzok/Rozmery plАtna..." -#: app/menus.c:421 +#: app/menus.c:390 msgid "/Image/Scale Image..." msgstr "/ObrАzok/Ve╣kos╩..." -#: app/menus.c:423 +#: app/menus.c:392 msgid "/Image/Duplicate" msgstr "/ObrАzok/Duplikova╩" #. /Layers -#: app/menus.c:431 -msgid "/Layers" -msgstr "/Vrstvy" - -#: app/menus.c:433 +#: app/menus.c:400 #, fuzzy msgid "/Layers/Layers, Channels & Paths..." msgstr "/Vrstvy/Vrstvy a KanАly..." -#. /Layers/Stack -#: app/menus.c:438 -msgid "/Layers/Stack" -msgstr "/Vrstvy/ZАsobnМk" +#: app/menus.c:404 +msgid "/Layers/Layer to Imagesize" +msgstr "/Vrstvy/PrispТsobi╩ ve╣kos╩" -#: app/menus.c:440 +#. /Layers/Stack +#: app/menus.c:409 msgid "/Layers/Stack/Previous Layer" msgstr "/Vrstvy/ZАsobnМk/PredchАdzajЗca vrstva" -#: app/menus.c:442 +#: app/menus.c:411 msgid "/Layers/Stack/Next Layer" msgstr "/Vrstvy/ZАsobnМk/NasledujЗca vrstva" -#: app/menus.c:444 +#: app/menus.c:413 msgid "/Layers/Stack/Raise Layer" msgstr "/Vrstvy/ZАsobnМk/Vrstvu vy╧╧ie" -#: app/menus.c:446 +#: app/menus.c:415 msgid "/Layers/Stack/Lower Layer" msgstr "/Vrstvy/ZАsobnМk/Vrstvu ni╬╧ie" -#: app/menus.c:448 +#: app/menus.c:417 msgid "/Layers/Stack/Layer to Top" msgstr "/Vrstvy/ZАsobnМk/Vrstvu celkom hore" -#: app/menus.c:450 +#: app/menus.c:419 msgid "/Layers/Stack/Layer to Bottom" msgstr "/Vrstvy/ZАsobnМk/Vrstvu celkom dole" #. /Layers/Rotate -#: app/menus.c:457 +#: app/menus.c:426 msgid "/Layers/Rotate" msgstr "/Vrstvy/OtoХenie" -#: app/menus.c:460 -msgid "/Layers/Layer to Imagesize" -msgstr "/Vrstvy/PrispТsobi╩ ve╣kos╩" - -#: app/menus.c:465 +#: app/menus.c:431 msgid "/Layers/Anchor Layer" msgstr "/Vrstvy/Vlo╬i╩ vrstvu" -#: app/menus.c:467 +#: app/menus.c:433 msgid "/Layers/Merge Visible Layers..." msgstr "/Vrstvy/ZlЗХi╩ vidite╣nИ vrstvy..." -#: app/menus.c:469 +#: app/menus.c:435 msgid "/Layers/Flatten Image" msgstr "/Vrstvy/Do jednej vrstvy" -#: app/menus.c:474 +#: app/menus.c:440 msgid "/Layers/Mask to Selection" msgstr "/Vrstvy/Maska do selekcie" -#: app/menus.c:479 +#: app/menus.c:445 msgid "/Layers/Add Alpha Channel" msgstr "/Vrstvy/Prida╩ alfa kanАl" -#: app/menus.c:481 +#: app/menus.c:447 msgid "/Layers/Alpha to Selection" msgstr "/Vrstvy/Alfa do selekcie" #. /Tools -#: app/menus.c:489 -msgid "/Tools" -msgstr "/NАstroje" - -#: app/menus.c:491 +#: app/menus.c:455 msgid "/Tools/Toolbox" msgstr "/NАstroje/NАstroje" -#: app/menus.c:493 +#: app/menus.c:457 msgid "/Tools/Default Colors" msgstr "/NАstroje/ImplicitnИ Farby" -#: app/menus.c:495 +#: app/menus.c:459 msgid "/Tools/Swap Colors" msgstr "/NАstroje/Zameni╩ Farby" -#: app/menus.c:501 -#, fuzzy -msgid "/Tools/Select Tools" -msgstr "/NАstroje/ObdЕ╬nikovА selekcia" - -#: app/menus.c:503 -#, fuzzy -msgid "/Tools/Transform Tools" -msgstr "/NАstroje/TransformАcia" - -#: app/menus.c:505 -#, fuzzy -msgid "/Tools/Paint Tools" -msgstr "/NАstroje/╘tetec" - #. /Dialogs -#: app/menus.c:510 -msgid "/Dialogs" -msgstr "/Palety" - -#: app/menus.c:512 +#: app/menus.c:466 #, fuzzy msgid "/Dialogs/Layers, Channels & Paths..." msgstr "/Palety/Vrstvy a KanАly..." -#: app/menus.c:514 +#: app/menus.c:468 msgid "/Dialogs/Tool Options..." msgstr "/Palety/Predvo╣by nАstrojov..." -#: app/menus.c:519 +#: app/menus.c:473 msgid "/Dialogs/Brushes..." msgstr "/Palety/╘tetce..." -#: app/menus.c:521 +#: app/menus.c:475 msgid "/Dialogs/Patterns..." msgstr "/Palety/Vzory..." -#: app/menus.c:523 +#: app/menus.c:477 msgid "/Dialogs/Gradients..." msgstr "/Palety/Prechody..." -#: app/menus.c:525 +#: app/menus.c:479 msgid "/Dialogs/Palette..." msgstr "/Palety/Farby..." -#: app/menus.c:527 +#: app/menus.c:481 msgid "/Dialogs/Indexed Palette..." msgstr "/Palety/IndexovanА paleta..." -#: app/menus.c:532 +#: app/menus.c:486 msgid "/Dialogs/Input Devices..." msgstr "/Palety/VstupnИ zariadenie..." -#: app/menus.c:534 +#: app/menus.c:488 msgid "/Dialogs/Device Status..." msgstr "/Palety/Stav zariadenia..." -#: app/menus.c:539 +#: app/menus.c:493 msgid "/Dialogs/Document Index..." msgstr "/Palety/Zoznam dokumentov..." -#: app/menus.c:541 +#: app/menus.c:495 msgid "/Dialogs/Error Console..." msgstr "/Palety/ChybovА konzola..." -#: app/menus.c:543 +#: app/menus.c:497 msgid "/Dialogs/Display Filters..." msgstr "/Palety/Filtre..." -#. /Filters -#: app/menus.c:551 -msgid "/Filters" -msgstr "/Filtre" +#: app/menus.c:499 +#, fuzzy +msgid "/Dialogs/Undo History..." +msgstr "/Zobrazenie/HistСria..." -#: app/menus.c:553 +#. /Filters +#: app/menus.c:508 msgid "/Filters/Repeat Last" msgstr "/Filtre/Opakova╩ poslednЩ" -#: app/menus.c:555 +#: app/menus.c:510 msgid "/Filters/Re-Show Last" msgstr "/Filtre/Opakova╩ s nastavenМm" -#: app/menus.c:561 +#: app/menus.c:515 msgid "/Filters/Blur" msgstr "/Filtre/Rozostrenie" -#: app/menus.c:564 +#: app/menus.c:517 msgid "/Filters/Colors" msgstr "/Filtre/Farby" -#: app/menus.c:569 +#: app/menus.c:519 msgid "/Filters/Noise" msgstr "/Filtre/╘um" -#: app/menus.c:571 +#: app/menus.c:521 msgid "/Filters/Edge-Detect" msgstr "/Filtre/Detekcia hrАn" -#: app/menus.c:573 +#: app/menus.c:523 msgid "/Filters/Enhance" msgstr "/Filtre/Vylep╧enie" -#: app/menus.c:575 +#: app/menus.c:525 msgid "/Filters/Generic" msgstr "/Filtre/Ne╧pecifikovanИ" -#: app/menus.c:580 +#: app/menus.c:530 msgid "/Filters/Glass Effects" msgstr "/Filtre/Efekty so sklom" -#: app/menus.c:582 +#: app/menus.c:532 msgid "/Filters/Light Effects" msgstr "/Filtre/SvetelnИ efekty" -#: app/menus.c:584 +#: app/menus.c:534 msgid "/Filters/Distorts" msgstr "/Filtre/DeformАcie" -#: app/menus.c:586 +#: app/menus.c:536 msgid "/Filters/Artistic" msgstr "/Filtre/UmeleckИ" -#: app/menus.c:588 +#: app/menus.c:538 msgid "/Filters/Map" msgstr "/Filtre/Mapovanie" -#: app/menus.c:590 +#: app/menus.c:540 msgid "/Filters/Render" msgstr "/Filtre/Generovanie" -#: app/menus.c:592 +#: app/menus.c:542 msgid "/Filters/Web" msgstr "/Filtre/Web" -#: app/menus.c:597 +#: app/menus.c:547 msgid "/Filters/Animation" msgstr "/Filtre/AnimАcia" -#: app/menus.c:599 +#: app/menus.c:549 msgid "/Filters/Combine" msgstr "/SЗbor/KombinАcia" -#: app/menus.c:604 +#: app/menus.c:554 msgid "/Filters/Toys" msgstr "/Filtre/HraХky" -#. /Script-Fu -#: app/menus.c:609 -msgid "/Script-Fu" -msgstr "/Script-Fu" - -#: app/menus.c:620 +#: app/menus.c:567 msgid "/Automatic" msgstr "/AutomatickИ" -#: app/menus.c:634 +#: app/menus.c:581 #, fuzzy msgid "/By Extension" msgstr "/Pod╣a prМpony" -#: app/menus.c:648 +#: app/menus.c:595 msgid "/New Layer..." msgstr "/NovА vrstva..." #. /Stack -#: app/menus.c:653 -msgid "/Stack" -msgstr "/ZАsobnМk" - -#: app/menus.c:655 +#: app/menus.c:600 msgid "/Stack/Raise Layer" msgstr "/ZАsobnМk/Vrstvu vy╧╧ie" -#: app/menus.c:657 +#: app/menus.c:602 msgid "/Stack/Lower Layer" msgstr "/ZАsobnМk/Vrstvu ni╬╧ie" -#: app/menus.c:659 +#: app/menus.c:604 msgid "/Stack/Layer to Top" msgstr "/ZАsobnМk/Vrstvu hore" -#: app/menus.c:661 +#: app/menus.c:606 msgid "/Stack/Layer to Bottom" msgstr "/ZАsobnМk/Vrstvu dole" -#: app/menus.c:664 +#: app/menus.c:609 msgid "/Duplicate Layer" msgstr "/Duplikova╩ vrstvu" -#: app/menus.c:666 +#: app/menus.c:611 msgid "/Anchor Layer" msgstr "/Vlo╬i╩ vrstvu" -#: app/menus.c:668 +#: app/menus.c:613 msgid "/Delete Layer" msgstr "/Zmaza╩ vrstvu" -#: app/menus.c:673 +#: app/menus.c:618 msgid "/Layer Boundary Size..." msgstr "/Ve╣kos╩ okrajov vrstvy..." -#: app/menus.c:675 +#: app/menus.c:620 msgid "/Layer to Imagesize" msgstr "/Vrstvy/PrispТsobi╩ ve╣kos╩" -#: app/menus.c:677 +#: app/menus.c:622 msgid "/Scale Layer..." msgstr "/Ve╣kos╩ vrstvy..." -#: app/menus.c:682 +#: app/menus.c:627 msgid "/Merge Visible Layers..." msgstr "/ZlЗХi╩ vidite╣nИ vrstvy..." -#: app/menus.c:684 +#: app/menus.c:629 msgid "/Merge Down" msgstr "/ZlЗХi╩ dole" -#: app/menus.c:686 +#: app/menus.c:631 msgid "/Flatten Image" msgstr "/Do jednej vrstvy" -#: app/menus.c:691 +#: app/menus.c:636 msgid "/Add Layer Mask..." msgstr "/Prida╩ masku vrstvy..." -#: app/menus.c:693 +#: app/menus.c:638 #, fuzzy msgid "/Apply Layer Mask" msgstr "/Aplikova╩ masku vrstvy..." -#: app/menus.c:695 +#: app/menus.c:640 #, fuzzy msgid "/Delete Layer Mask" msgstr "/Zmaza╩ vrstvu" -#: app/menus.c:697 +#: app/menus.c:642 msgid "/Mask to Selection" msgstr "/Maska do selekcie" -#: app/menus.c:702 +#: app/menus.c:647 msgid "/Add Alpha Channel" msgstr "/Prida╩ alfa kanАl" -#: app/menus.c:704 +#: app/menus.c:649 msgid "/Alpha to Selection" msgstr "/Alfa do selekcie" -#: app/menus.c:709 +#: app/menus.c:654 #, fuzzy msgid "/Edit Layer Attributes..." msgstr "зpravy vlastnostМ vrstvy" -#: app/menus.c:720 +#: app/menus.c:665 msgid "/New Channel..." msgstr "/NovЩ kanАl..." -#: app/menus.c:722 +#: app/menus.c:667 msgid "/Raise Channel" msgstr "/KanАl vy╧╧ie" -#: app/menus.c:724 +#: app/menus.c:669 msgid "/Lower Channel" msgstr "/KanАl ni╬╧ie" -#: app/menus.c:726 +#: app/menus.c:671 msgid "/Duplicate Channel" msgstr "/Duplikova╩ kanАl" -#: app/menus.c:731 +#: app/menus.c:676 msgid "/Channel to Selection" msgstr "/KanАl do selekcie" -#: app/menus.c:733 +#: app/menus.c:678 msgid "/Add to Selection" msgstr "/Prida╩ k selekcii" -#: app/menus.c:735 +#: app/menus.c:680 msgid "/Subtract from Selection" msgstr "/Ubra╩ zo selekcie" -#: app/menus.c:737 +#: app/menus.c:682 msgid "/Intersect with Selection" msgstr "/Prienik so selekciou" -#: app/menus.c:742 +#: app/menus.c:687 msgid "/Delete Channel" msgstr "/Zmaza╩ kanАl" -#: app/menus.c:747 +#: app/menus.c:692 #, fuzzy msgid "/Edit Channel Attributes..." msgstr "зpravy vlastnostМ kanАlu" -#: app/menus.c:758 +#: app/menus.c:703 msgid "/New Path" msgstr "/NovА cesta" -#: app/menus.c:760 +#: app/menus.c:705 msgid "/Duplicate Path" msgstr "/Duplikova╩ cestu" -#: app/menus.c:762 +#: app/menus.c:707 msgid "/Path to Selection" msgstr "/Cesta na selekciu" -#: app/menus.c:764 +#: app/menus.c:709 msgid "/Selection to Path" msgstr "/Selekcia na cestu" -#: app/menus.c:766 +#: app/menus.c:711 msgid "/Stroke Path" msgstr "/Obkresli╩ cestu" -#: app/menus.c:768 +#: app/menus.c:713 msgid "/Delete Path" msgstr "/Zmaza╩ cestu" -#: app/menus.c:773 +#: app/menus.c:718 msgid "/Copy Path" msgstr "/KopМrova╩ cestu" -#: app/menus.c:775 +#: app/menus.c:720 msgid "/Paste Path" msgstr "/Vlo╬i╩ cestu" -#: app/menus.c:777 +#: app/menus.c:722 msgid "/Import Path..." msgstr "/Importova╩ cestu..." -#: app/menus.c:779 +#: app/menus.c:724 msgid "/Export Path..." msgstr "/Exportova╩ cestu..." -#: app/menus.c:784 +#: app/menus.c:729 #, fuzzy msgid "/Edit Path Attributes..." msgstr "зpravy vlastnostМ vrstvy" -#: app/menus.c:1310 +#: app/menus.c:1260 #, c-format msgid "Error opening file: %s\n" msgstr "Chyba pri otvАranМ sЗboru: %s\n" @@ -4260,7 +4285,7 @@ msgstr "Stav: " msgid "Autoload during startup" msgstr " Zavies╩ automaticky" -#: app/move.c:456 +#: app/move.c:458 #, fuzzy msgid "Move Tool" msgstr "Predvo╣by presunu" @@ -4275,7 +4300,7 @@ msgstr "Navig msgid "Navigation: No Image" msgstr "" -#: app/paint_core.c:717 +#: app/paint_core.c:735 msgid "No brushes available for use with this tool." msgstr "Nie sЗ dostupnИ ╬iadne ╧tetce pre pou╬itie s tЩmto nАstrojom." @@ -4714,482 +4739,476 @@ msgstr "" msgid "You will need to restart GIMP for these changes to take effect." msgstr "Aby sa zmeny prejavili, musМte GIMP re╧tartova╩." -#: app/preferences_dialog.c:1459 +#: app/preferences_dialog.c:1002 +#, c-format +msgid "The default comments is limited to %d characters." +msgstr "" + +#: app/preferences_dialog.c:1424 msgid "Preferences" msgstr "Predvo╣by" #. The categories tree -#: app/preferences_dialog.c:1481 +#: app/preferences_dialog.c:1446 msgid "Categories" msgstr "KategСrie" -#: app/preferences_dialog.c:1509 app/preferences_dialog.c:1511 +#: app/preferences_dialog.c:1474 app/preferences_dialog.c:1476 msgid "New File" msgstr "NovЩ sЗbor" -#: app/preferences_dialog.c:1522 +#: app/preferences_dialog.c:1487 msgid "Default Image Size and Unit" msgstr "ImplicitnА ve╣kos╩ obrАzku" -#: app/preferences_dialog.c:1536 +#: app/preferences_dialog.c:1501 msgid "Width" msgstr "╘Мrka" -#: app/preferences_dialog.c:1538 +#: app/preferences_dialog.c:1503 msgid "Height" msgstr "VЩ╧ka" -#: app/preferences_dialog.c:1568 +#: app/preferences_dialog.c:1533 msgid "Default Image Resolution and Resolution Unit" msgstr "ImplicitnИ rozlМ╧enie obrАzku" -#: app/preferences_dialog.c:1595 app/preferences_dialog.c:2359 +#: app/preferences_dialog.c:1560 app/preferences_dialog.c:2288 msgid "dpi" msgstr "dpi" -#: app/preferences_dialog.c:1642 +#: app/preferences_dialog.c:1607 msgid "Default Image Type:" msgstr "ImplicitnЩ typ obrАzku:" -#: app/preferences_dialog.c:1678 app/preferences_dialog.c:2166 -msgid "Bytes" -msgstr "Bajtov" - -#: app/preferences_dialog.c:1679 app/preferences_dialog.c:2167 -msgid "KiloBytes" -msgstr "Kilobajtov" - -#: app/preferences_dialog.c:1680 app/preferences_dialog.c:2168 -msgid "MegaBytes" -msgstr "Megabajtov" - -#: app/preferences_dialog.c:1686 +#: app/preferences_dialog.c:1618 msgid "Maximum Image Size:" msgstr "MaximАlna ve╣kos╩ obrАzku:" -#: app/preferences_dialog.c:1692 app/preferences_dialog.c:1694 +#: app/preferences_dialog.c:1623 app/preferences_dialog.c:1625 +#, fuzzy +msgid "Default Comment" +msgstr "ImplicitnЩ" + +#: app/preferences_dialog.c:1633 +msgid "Comment Used for New Images" +msgstr "" + +#: app/preferences_dialog.c:1653 app/preferences_dialog.c:1655 msgid "Display" msgstr "Zobrazenie" -#: app/preferences_dialog.c:1702 +#: app/preferences_dialog.c:1663 msgid "Transparency" msgstr "Prieh╣adnos╩" -#: app/preferences_dialog.c:1721 +#: app/preferences_dialog.c:1682 msgid "Light Checks" msgstr "SvetlА ╧achovnica" -#: app/preferences_dialog.c:1722 +#: app/preferences_dialog.c:1683 msgid "Mid-Tone Checks" msgstr "StrednА ╧achovnica" -#: app/preferences_dialog.c:1723 +#: app/preferences_dialog.c:1684 msgid "Dark Checks" msgstr "TmavА ╧achovnica" -#: app/preferences_dialog.c:1724 +#: app/preferences_dialog.c:1685 msgid "White Only" msgstr "Len biela" -#: app/preferences_dialog.c:1725 +#: app/preferences_dialog.c:1686 msgid "Gray Only" msgstr "Len ╧edА" -#: app/preferences_dialog.c:1726 +#: app/preferences_dialog.c:1687 msgid "Black Only" msgstr "Len Хierna" -#: app/preferences_dialog.c:1730 +#: app/preferences_dialog.c:1691 msgid "Transparency Type:" msgstr "Typ prieh╣adnosti:" -#: app/preferences_dialog.c:1737 app/preferences_dialog.c:1810 -#: app/preferences_dialog.c:1824 +#: app/preferences_dialog.c:1698 app/preferences_dialog.c:1771 +#: app/preferences_dialog.c:1785 msgid "Small" msgstr "MalА" -#: app/preferences_dialog.c:1738 app/preferences_dialog.c:1811 -#: app/preferences_dialog.c:1825 +#: app/preferences_dialog.c:1699 app/preferences_dialog.c:1772 +#: app/preferences_dialog.c:1786 msgid "Medium" msgstr "StrednА" -#: app/preferences_dialog.c:1739 app/preferences_dialog.c:1812 -#: app/preferences_dialog.c:1826 +#: app/preferences_dialog.c:1700 app/preferences_dialog.c:1773 +#: app/preferences_dialog.c:1787 msgid "Large" msgstr "Ve╣kА" -#: app/preferences_dialog.c:1743 +#: app/preferences_dialog.c:1704 msgid "Check Size:" msgstr "Ve╣kos╩ polМ ╧achovnice:" -#: app/preferences_dialog.c:1746 +#: app/preferences_dialog.c:1707 msgid "8-Bit Displays" msgstr "8-bitovИ obrazovky" -#: app/preferences_dialog.c:1751 +#: app/preferences_dialog.c:1712 msgid "Install Colormap" msgstr "In╧talova╩ vlastnЗ farebnЗ mapu" -#: app/preferences_dialog.c:1760 +#: app/preferences_dialog.c:1721 msgid "Colormap Cycling" msgstr "PrepМnanie farebnЩch mАp" -#: app/preferences_dialog.c:1809 +#: app/preferences_dialog.c:1770 msgid "Tiny" msgstr "DrobnА" -#: app/preferences_dialog.c:1813 +#: app/preferences_dialog.c:1774 msgid "Huge" msgstr "ObrovskА" -#: app/preferences_dialog.c:1817 +#: app/preferences_dialog.c:1778 msgid "Preview Size:" msgstr "Ve╣kos╩ nАh╣adu:" -#: app/preferences_dialog.c:1830 +#: app/preferences_dialog.c:1791 msgid "Nav Preview Size:" msgstr "Ve╣kos╩ navigАtora:" -#: app/preferences_dialog.c:1840 +#: app/preferences_dialog.c:1801 msgid "Recent Documents List Size:" msgstr "DЕ╬ka zoznamu predo╧lЩch dokumentov:" #. Indicators -#: app/preferences_dialog.c:1844 +#: app/preferences_dialog.c:1805 #, fuzzy msgid "Toolbox" msgstr "/NАstroje/NАstroje" -#: app/preferences_dialog.c:1847 +#: app/preferences_dialog.c:1808 #, fuzzy msgid "Display Brush, Pattern and Gradient Indicators" msgstr "Zobrazi╩ indikАtory ╧tetca a vzoru na palete nАstrojov" -#: app/preferences_dialog.c:1856 +#: app/preferences_dialog.c:1817 msgid "Dialog Behaviour" msgstr "SprАvanie paliet" -#: app/preferences_dialog.c:1858 +#: app/preferences_dialog.c:1819 msgid "Navigation Window per Display" msgstr "NavigАtor pre ka╬dИ okno" -#: app/preferences_dialog.c:1867 +#: app/preferences_dialog.c:1828 msgid "Info Window Follows Mouse" msgstr "Info okno sleduje my╧" -#: app/preferences_dialog.c:1878 app/preferences_dialog.c:1880 +#: app/preferences_dialog.c:1839 app/preferences_dialog.c:1841 msgid "Help System" msgstr "SystИm pomoci" -#: app/preferences_dialog.c:1890 +#: app/preferences_dialog.c:1851 msgid "Show Tool Tips" msgstr "Ukazova╩ tipy nАstrojov" -#: app/preferences_dialog.c:1900 +#: app/preferences_dialog.c:1861 msgid "Context Sensitive Help with \"F1\"" msgstr "KontextovА pomoc je na \"F1\"" -#: app/preferences_dialog.c:1909 +#: app/preferences_dialog.c:1870 msgid "Help Browser" msgstr "SystИm pomoci" -#: app/preferences_dialog.c:1921 +#: app/preferences_dialog.c:1882 msgid "Internal" msgstr "InternЩ" -#: app/preferences_dialog.c:1922 +#: app/preferences_dialog.c:1883 msgid "Netscape" msgstr "" -#: app/preferences_dialog.c:1926 +#: app/preferences_dialog.c:1887 msgid "Help Browser to Use:" msgstr "PrezeraХ:" -#: app/preferences_dialog.c:1931 app/preferences_dialog.c:1933 +#: app/preferences_dialog.c:1892 app/preferences_dialog.c:1894 msgid "Image Windows" msgstr "OknА obrАzku" -#: app/preferences_dialog.c:1941 +#: app/preferences_dialog.c:1902 msgid "Appearance" msgstr "Zobrazovanie" -#: app/preferences_dialog.c:1943 +#: app/preferences_dialog.c:1904 msgid "Use \"Dot for Dot\" by default" msgstr "╘tandardne pou╬i╩ 'Jedna k jednej'" -#: app/preferences_dialog.c:1952 +#: app/preferences_dialog.c:1913 msgid "Resize Window on Zoom" msgstr "Meni╩ ve╣kos╩ okna pri zvДХ╧enМ" -#: app/preferences_dialog.c:1961 +#: app/preferences_dialog.c:1922 msgid "Show Rulers" msgstr "UkАza╩ pravМtka" -#: app/preferences_dialog.c:1970 +#: app/preferences_dialog.c:1931 msgid "Show Statusbar" msgstr "UkАza╩ stavovЩ riadok" -#: app/preferences_dialog.c:1994 +#: app/preferences_dialog.c:1955 msgid "Marching Ants Speed:" msgstr "RЩchlos╩ behu mravcov:" #. Set the currently used string as "Custom" -#: app/preferences_dialog.c:2002 +#: app/preferences_dialog.c:1963 msgid "Custom" msgstr "VlastnЩ" #. set some commonly used format strings -#: app/preferences_dialog.c:2008 +#: app/preferences_dialog.c:1969 msgid "Standard" msgstr "╘tandardnЩ" -#: app/preferences_dialog.c:2013 +#: app/preferences_dialog.c:1974 msgid "Show zoom percentage" msgstr "UkАza╩ percento zvДХ╧enia" -#: app/preferences_dialog.c:2018 +#: app/preferences_dialog.c:1979 msgid "Show zoom ratio" msgstr "UkАza╩ pomer zvДХ╧enia" -#: app/preferences_dialog.c:2023 +#: app/preferences_dialog.c:1984 msgid "Show reversed zoom ratio" msgstr "UkАza╩ pomer zmen╧enia" -#: app/preferences_dialog.c:2034 +#: app/preferences_dialog.c:1995 msgid "Image Title Format:" msgstr "FormАt titulku okna:" #. End of the title format string -#: app/preferences_dialog.c:2038 +#: app/preferences_dialog.c:1999 msgid "Pointer Movement Feedback" msgstr "SpДtnА vДzba pohybu kurzora" -#: app/preferences_dialog.c:2041 +#: app/preferences_dialog.c:2002 #, fuzzy msgid "Perfect-but-Slow Pointer Tracking" msgstr "DokonalИ, ale pomalИ riadenie kurzora" -#: app/preferences_dialog.c:2050 +#: app/preferences_dialog.c:2011 msgid "Disable Cursor Updating" msgstr "ZakАza╩ aktualizАciu kurzora" -#: app/preferences_dialog.c:2062 app/preferences_dialog.c:2064 +#: app/preferences_dialog.c:2023 app/preferences_dialog.c:2025 #: app/tools.c:1080 msgid "Tool Options" msgstr "Predvo╣by nАstrojov" -#: app/preferences_dialog.c:2072 +#: app/preferences_dialog.c:2033 msgid "Paint Options" msgstr "Predvo╣by pre ma╣ovanie" -#: app/preferences_dialog.c:2075 +#: app/preferences_dialog.c:2036 msgid "Use Global Paint Options" msgstr "Pou╬i╩ globАlne predvo╣by pre ma╣ovanie" -#: app/preferences_dialog.c:2090 app/preferences_dialog.c:2092 +#: app/preferences_dialog.c:2051 app/preferences_dialog.c:2053 msgid "Environment" msgstr "Prostredie" -#: app/preferences_dialog.c:2100 +#: app/preferences_dialog.c:2061 msgid "Resource Consumption" msgstr "Spotreba zdrojov" -#: app/preferences_dialog.c:2102 +#: app/preferences_dialog.c:2063 msgid "Conservative Memory Usage" msgstr "╘etrnИ pou╬Мvanie pamДte" -#: app/preferences_dialog.c:2130 +#: app/preferences_dialog.c:2091 msgid "Levels of Undo:" msgstr "PoХet ЗrovnМ nАvratu:" -#: app/preferences_dialog.c:2174 -msgid "Tile Cache Size:" -msgstr "Ve╣kos╩ vyrovnАvacej pamДte dla╬dМc:" - -#: app/preferences_dialog.c:2185 +#: app/preferences_dialog.c:2113 msgid "Number of Processors to Use:" msgstr "PoХet pou╬МvanЩch procesorov:" -#: app/preferences_dialog.c:2189 app/transform_tool.c:215 +#: app/preferences_dialog.c:2117 app/transform_tool.c:215 msgid "Scaling" msgstr "ZvДХ╧ovanie" -#: app/preferences_dialog.c:2207 +#: app/preferences_dialog.c:2135 msgid "Nearest Neighbor (Fast)" msgstr "SpriemernenМm okolia (RЩchle)" -#: app/preferences_dialog.c:2211 +#: app/preferences_dialog.c:2139 msgid "Cubic (Slow)" msgstr "Kubicky (PomalИ)" -#: app/preferences_dialog.c:2216 +#: app/preferences_dialog.c:2144 msgid "Interpolation Type:" msgstr "Typ interpolАcie:" -#: app/preferences_dialog.c:2219 +#: app/preferences_dialog.c:2147 msgid "File Saving" msgstr "Ukladanie sЗboru" -#: app/preferences_dialog.c:2236 app/preferences_dialog.c:2249 +#: app/preferences_dialog.c:2164 app/preferences_dialog.c:2177 msgid "Always" msgstr "V╬dy" -#: app/preferences_dialog.c:2237 +#: app/preferences_dialog.c:2165 msgid "Never" msgstr "Nikdy" -#: app/preferences_dialog.c:2241 +#: app/preferences_dialog.c:2169 msgid "Try to Write a Thumbnail File:" msgstr "SkЗsi╩ zapМsa╩ nАh╣ad:" -#: app/preferences_dialog.c:2248 +#: app/preferences_dialog.c:2176 #, fuzzy msgid "Only when Modified" msgstr "Len modifikovanЩ" -#: app/preferences_dialog.c:2253 +#: app/preferences_dialog.c:2181 #, fuzzy msgid "\"File > Save\" Saves the Image:" msgstr "'SЗbor/Ulo╬i╩' ulo╬М obrАzok:" -#: app/preferences_dialog.c:2259 +#: app/preferences_dialog.c:2187 msgid "Session Management" msgstr "SprАva relАciМ" -#: app/preferences_dialog.c:2261 +#: app/preferences_dialog.c:2189 msgid "Session" msgstr "RelАcia" -#: app/preferences_dialog.c:2269 +#: app/preferences_dialog.c:2197 msgid "Window Positions" msgstr "Polohy okien" -#: app/preferences_dialog.c:2271 +#: app/preferences_dialog.c:2199 msgid "Save Window Positions on Exit" msgstr "ZapМsa╩ polohy okien pri ukonХenМ" -#: app/preferences_dialog.c:2285 +#: app/preferences_dialog.c:2213 msgid "Clear Saved Window Positions Now" msgstr "Vymaza╩ zapМsanИ polohy okien" -#: app/preferences_dialog.c:2293 +#: app/preferences_dialog.c:2221 msgid "Always Try to Restore Session" msgstr "V╬dy sa pokЗsi╩ o obnovenie relАcie" -#: app/preferences_dialog.c:2302 +#: app/preferences_dialog.c:2230 msgid "Devices" msgstr "Zriadenia" -#: app/preferences_dialog.c:2304 +#: app/preferences_dialog.c:2232 msgid "Save Device Status on Exit" msgstr "ZapМsa╩ stav zariadenia pri ukonХenМ" -#: app/preferences_dialog.c:2315 app/preferences_dialog.c:2317 +#: app/preferences_dialog.c:2243 app/preferences_dialog.c:2245 msgid "Monitor" msgstr "Monitor" -#: app/preferences_dialog.c:2325 +#: app/preferences_dialog.c:2253 msgid "Get Monitor Resolution" msgstr "RozlМ╧enie monitora zМska╩" -#: app/preferences_dialog.c:2333 +#: app/preferences_dialog.c:2261 #, c-format msgid "(Currently %d x %d dpi)" msgstr "(Teraz %d в %d dpi)" -#: app/preferences_dialog.c:2384 +#: app/preferences_dialog.c:2313 msgid "From X Server" msgstr "z X servera" -#: app/preferences_dialog.c:2399 +#: app/preferences_dialog.c:2328 msgid "Manually:" msgstr "RuХne:" -#: app/preferences_dialog.c:2412 app/preferences_dialog.c:2414 +#: app/preferences_dialog.c:2341 app/preferences_dialog.c:2343 msgid "Directories" msgstr "AdresАre" -#: app/preferences_dialog.c:2431 +#: app/preferences_dialog.c:2360 msgid "Temp Dir:" msgstr "PomocnЩ adresАr:" -#: app/preferences_dialog.c:2431 +#: app/preferences_dialog.c:2360 msgid "Select Temp Dir" msgstr "Vyberte pomocnЩ adresАr" -#: app/preferences_dialog.c:2432 +#: app/preferences_dialog.c:2361 msgid "Swap Dir:" msgstr "OdkladacМ adresАr:" -#: app/preferences_dialog.c:2432 -msgid "Select Swap Dir" -msgstr "Vyberte odkladacМ adresАr" - -#: app/preferences_dialog.c:2468 +#: app/preferences_dialog.c:2397 msgid "Brushes Directories" msgstr "AdresАre ╧tetcov" -#: app/preferences_dialog.c:2470 +#: app/preferences_dialog.c:2399 msgid "Select Brushes Dir" msgstr "Vyberte adresАr ╧tetcov" -#: app/preferences_dialog.c:2472 +#: app/preferences_dialog.c:2401 msgid "Generated Brushes" msgstr "GenerovanИ ╧tetce" -#: app/preferences_dialog.c:2472 +#: app/preferences_dialog.c:2401 msgid "Generated Brushes Directories" msgstr "AdresАre generovanЩch ╧tetcov" -#: app/preferences_dialog.c:2474 +#: app/preferences_dialog.c:2403 msgid "Select Generated Brushes Dir" msgstr "Vyberte adresАr generovanЩch ╧tetcov" -#: app/preferences_dialog.c:2476 +#: app/preferences_dialog.c:2405 msgid "Patterns Directories" msgstr "AdresАre vzorov" -#: app/preferences_dialog.c:2478 +#: app/preferences_dialog.c:2407 msgid "Select Patterns Dir" msgstr "Vyberte adresАr vzorov" -#: app/preferences_dialog.c:2480 +#: app/preferences_dialog.c:2409 msgid "Palettes Directories" msgstr "AdresАre farebnЩch paliet" -#: app/preferences_dialog.c:2482 +#: app/preferences_dialog.c:2411 msgid "Select Palettes Dir" msgstr "Vyberte adresАr farebnЩch paliet" -#: app/preferences_dialog.c:2484 +#: app/preferences_dialog.c:2413 msgid "Gradients Directories" msgstr "AdresАre prechodov" -#: app/preferences_dialog.c:2486 +#: app/preferences_dialog.c:2415 msgid "Select Gradients Dir" msgstr "Vyberte adresАr prechodov" -#: app/preferences_dialog.c:2488 +#: app/preferences_dialog.c:2417 msgid "Plug-Ins" msgstr "ZАsuvnИ moduly" -#: app/preferences_dialog.c:2488 +#: app/preferences_dialog.c:2417 msgid "Plug-Ins Directories" msgstr "AdresАre zАsuvnЩch modulov" -#: app/preferences_dialog.c:2490 +#: app/preferences_dialog.c:2419 msgid "Select Plug-Ins Dir" msgstr "Vyberte adresАr zАsuvnЩch modulov" -#: app/preferences_dialog.c:2492 +#: app/preferences_dialog.c:2421 msgid "Modules" msgstr "Moduly" -#: app/preferences_dialog.c:2492 +#: app/preferences_dialog.c:2421 msgid "Modules Directories" msgstr "AdresАre modulov" -#: app/preferences_dialog.c:2494 +#: app/preferences_dialog.c:2423 msgid "Select Modules Dir" msgstr "Vyberte adresАr modulov" @@ -5259,66 +5278,66 @@ msgstr "Selekcia: PREP msgid "Selection: " msgstr "Selekcia: " -#: app/resize.c:154 +#: app/resize.c:156 msgid "Scale Layer" msgstr "Ve╣kos╩ vrstvy" -#: app/resize.c:156 app/resize.c:181 app/tool_options.c:774 +#: app/resize.c:158 app/resize.c:183 app/tool_options.c:774 msgid "Size" msgstr "Ve╣kos╩" -#: app/resize.c:160 +#: app/resize.c:162 msgid "Scale Image" msgstr "Zmeni╩ ve╣kos╩ obrАzku" -#: app/resize.c:162 +#: app/resize.c:164 msgid "Pixel Dimensions" msgstr "Ve╣kosti pixlu" -#: app/resize.c:172 +#: app/resize.c:174 msgid "Set Layer Boundary Size" msgstr "Nastavi╩ okraj vrstvy" -#: app/resize.c:177 +#: app/resize.c:179 msgid "Set Canvas Size" msgstr "Nastavi╩ ve╣kos╩ plАtna" #. the original width & height labels -#: app/resize.c:234 app/scale_tool.c:77 +#: app/resize.c:236 app/scale_tool.c:77 msgid "Original Width:" msgstr "PТvodnА ╧Мrka:" #. the new size labels -#: app/resize.c:259 app/resize.c:504 +#: app/resize.c:261 app/resize.c:506 msgid "New Width:" msgstr "NovА ╧Мrka:" #. the scale ratio labels -#: app/resize.c:324 +#: app/resize.c:326 msgid "Ratio X:" msgstr "Pomer X:" #. the x and y offset labels -#: app/resize.c:409 +#: app/resize.c:411 msgid "X:" msgstr "X:" -#: app/resize.c:490 +#: app/resize.c:492 msgid "Print Size & Display Unit" msgstr "TlaХovА ve╣kos╩ a jednotky zobrazovania" -#: app/resize.c:1252 +#: app/resize.c:1254 msgid "Scale Error: Both width and height must be greater than zero." msgstr "Chyba rozmerov: ╘Мrka aj vЩ╧ka musМ by╩ vДХ╧ia ako nula." -#: app/resize.c:1334 +#: app/resize.c:1336 msgid "" "The chosen image size will shrink\n" "some layers completely away.\n" "Is this what you want?" msgstr "" -#: app/resize.c:1338 +#: app/resize.c:1340 msgid "Layer Too Small" msgstr "" @@ -5367,7 +5386,7 @@ msgstr "Kos msgid "Text Tool" msgstr "TextovЩ nАstroj" -#: app/text_tool.c:162 app/tool_options.c:233 +#: app/text_tool.c:162 app/tool_options.c:232 msgid "Antialiasing" msgstr "Vyhladzovanie" @@ -5444,109 +5463,109 @@ msgstr "" "Mal by to by╩ sЗbor s nАzvom gimp_tipy.txt v datovom\n" "adresАri programu GIMP. ProsМm skontrolujte in╧talАciu." -#: app/tool_options.c:122 +#: app/tool_options.c:121 msgid "This tool has no options." msgstr "Tento nАstroj nemА vo╣by." -#: app/tool_options.c:146 +#: app/tool_options.c:145 #, fuzzy msgid "Rectangular Selection" msgstr "Predvo╣by obdЕ╬nikovej selekcie" -#: app/tool_options.c:148 +#: app/tool_options.c:147 #, fuzzy msgid "Elliptical Selection" msgstr "Predvo╣by eliptickej selekcie" -#: app/tool_options.c:150 +#: app/tool_options.c:149 #, fuzzy msgid "Free-Hand Selection" msgstr "Predvo╣by vo╣nej selekcie" -#: app/tool_options.c:152 +#: app/tool_options.c:151 #, fuzzy msgid "Fuzzy Selection" msgstr "MagickА paliХka" -#: app/tool_options.c:154 +#: app/tool_options.c:153 #, fuzzy msgid "Bezier Selection" msgstr "BИzierova selekcia" -#: app/tool_options.c:156 app/tools.c:178 +#: app/tool_options.c:155 app/tools.c:178 msgid "Intelligent Scissors" msgstr "InteligentnИ no╬nice" -#: app/tool_options.c:158 +#: app/tool_options.c:157 #, fuzzy msgid "By-Color Selection" msgstr "VЩber pod╣a farby" -#: app/tool_options.c:189 +#: app/tool_options.c:188 msgid "Feather" msgstr "Zjemnenie" -#: app/tool_options.c:297 +#: app/tool_options.c:296 msgid "Fixed Size / Aspect Ratio" msgstr "PevnА ve╣kos╩ / pomer strАn" -#: app/tool_options.c:363 +#: app/tool_options.c:362 msgid "Unit:" msgstr "Jednotky:" -#: app/tool_options.c:448 app/tools.c:376 +#: app/tool_options.c:447 app/tools.c:376 msgid "Bucket Fill" msgstr "Plechovka" -#: app/tool_options.c:450 +#: app/tool_options.c:449 #, fuzzy msgid "Blend Tool" msgstr "Prechod: " -#: app/tool_options.c:452 app/tools.c:412 +#: app/tool_options.c:451 app/tools.c:412 msgid "Pencil" msgstr "Tu╬ka" -#: app/tool_options.c:454 app/tools.c:430 +#: app/tool_options.c:453 app/tools.c:430 msgid "Paintbrush" msgstr "╘tetec" -#: app/tool_options.c:456 app/tools.c:448 +#: app/tool_options.c:455 app/tools.c:448 msgid "Eraser" msgstr "Guma" -#: app/tool_options.c:458 app/tools.c:466 +#: app/tool_options.c:457 app/tools.c:466 msgid "Airbrush" msgstr "AmerickА retu╧" -#: app/tool_options.c:460 +#: app/tool_options.c:459 #, fuzzy msgid "Clone Tool" msgstr "Predvo╣by razМtka" -#: app/tool_options.c:462 +#: app/tool_options.c:461 #, fuzzy msgid "Convolver" msgstr "KonvolЗcia" -#: app/tool_options.c:464 +#: app/tool_options.c:463 msgid "Ink Tool" msgstr "" -#: app/tool_options.c:466 app/tools.c:538 app/tools.c:544 +#: app/tool_options.c:465 app/tools.c:538 app/tools.c:544 msgid "Dodge or Burn" msgstr "Prisvetlenie alebo stmavenie" -#: app/tool_options.c:468 +#: app/tool_options.c:467 #, fuzzy msgid "Smudge Tool" msgstr "Rozmazanie" -#: app/tool_options.c:583 +#: app/tool_options.c:582 msgid "Incremental" msgstr "PostupnЩ" -#: app/tool_options.c:689 +#: app/tool_options.c:688 msgid "Pressure Sensitivity" msgstr "Citlivos╩ na tlak" @@ -6251,6 +6270,117 @@ msgstr "Statick msgid "Color History" msgstr "Pipeta" +#~ msgid "Custom from Editor" +#~ msgstr "Z editora prechodov..." + +#~ msgid "" +#~ "The GIMP - GNU Image Manipulation Program\n" +#~ "\n" +#~ msgstr "" +#~ "GIMP - GNU program pre prАcu s obrАzkami\n" +#~ "(GNU Image Manipulation Program)\n" +#~ "\n" + +#~ msgid "For a proper GIMP installation, a subdirectory called\n" +#~ msgstr "Pri riadnej in╧talАcii programu GIMP bude vytvorenЩ podadresАr\n" + +#~ msgid "Install" +#~ msgstr "In╧talova╩" + +#~ msgid "Ignore" +#~ msgstr "Ignorova╩" + +#~ msgid "Installation Log" +#~ msgstr "Protokol o in╧talАcii" + +#~ msgid "" +#~ "\n" +#~ "Installation successful!\n" +#~ msgstr "" +#~ "\n" +#~ "In╧talАcia prebehla Зspe╧ne!\n" + +#~ msgid "/File/Dialogs" +#~ msgstr "/SЗbor/Palety" + +#~ msgid "/File" +#~ msgstr "/SЗbor" + +#~ msgid "/Edit" +#~ msgstr "/зpravy" + +#~ msgid "/Edit/Buffer" +#~ msgstr "/зpravy/SchrАnka" + +#~ msgid "/Select" +#~ msgstr "/Selekcia" + +#~ msgid "/View" +#~ msgstr "/Zobrazenie" + +#~ msgid "/View/Zoom" +#~ msgstr "/Zobrazenie/Mierka" + +#~ msgid "/Image" +#~ msgstr "/ObrАzok" + +#~ msgid "/Image/Mode" +#~ msgstr "/ObrАzok/FarebnЩ mСd" + +#~ msgid "/Image/Colors" +#~ msgstr "/ObrАzok/Farby" + +#~ msgid "/Image/Colors/Auto" +#~ msgstr "/ObrАzok/Farby/Auto" + +#~ msgid "/Image/Alpha" +#~ msgstr "/ObrАzok/Alfa" + +#~ msgid "/Image/Transforms" +#~ msgstr "/ObrАzok/TransformАcie" + +#~ msgid "/Layers" +#~ msgstr "/Vrstvy" + +#~ msgid "/Layers/Stack" +#~ msgstr "/Vrstvy/ZАsobnМk" + +#~ msgid "/Tools" +#~ msgstr "/NАstroje" + +#, fuzzy +#~ msgid "/Tools/Select Tools" +#~ msgstr "/NАstroje/ObdЕ╬nikovА selekcia" + +#, fuzzy +#~ msgid "/Tools/Transform Tools" +#~ msgstr "/NАstroje/TransformАcia" + +#, fuzzy +#~ msgid "/Tools/Paint Tools" +#~ msgstr "/NАstroje/╘tetec" + +#~ msgid "/Dialogs" +#~ msgstr "/Palety" + +#~ msgid "/Filters" +#~ msgstr "/Filtre" + +#~ msgid "/Script-Fu" +#~ msgstr "/Script-Fu" + +#~ msgid "/Stack" +#~ msgstr "/ZАsobnМk" + +#~ msgid "Bytes" +#~ msgstr "Bajtov" + +#~ msgid "KiloBytes" +#~ msgstr "Kilobajtov" + +#~ msgid "MegaBytes" +#~ msgstr "Megabajtov" + #~ msgid "Fill Options" #~ msgstr "Predvo╣by vyplРovania" diff --git a/po/sv.po b/po/sv.po index c73b54be18..ebb5a50a53 100644 --- a/po/sv.po +++ b/po/sv.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: GIMP 1.1.18\n" -"POT-Creation-Date: 2000-03-10 21:49+0100\n" +"POT-Creation-Date: 2000-03-14 23:09+0100\n" "PO-Revision-Date: 2000-03-10 22:11+0100\n" "Last-Translator: Tomas жgren \n" "Language-Team: Swedish \n" @@ -61,45 +61,45 @@ msgstr "presenterat av" msgid "GIMP Startup" msgstr "GIMP Uppstart" -#: app/app_procs.c:479 app/gimprc.c:432 +#: app/app_procs.c:479 app/gimprc.c:448 #, c-format msgid "parsing \"%s\"\n" msgstr "tolkar \"%s\"\n" #. initialize the xcf file format routines -#: app/app_procs.c:539 +#: app/app_procs.c:541 msgid "Looking for data files" msgstr "Letar efter datafiler" -#: app/app_procs.c:539 +#: app/app_procs.c:541 msgid "Parasites" msgstr "Parasiter" #. initialize the global parasite table -#: app/app_procs.c:541 app/internal_procs.c:71 app/preferences_dialog.c:2468 +#: app/app_procs.c:543 app/internal_procs.c:71 app/preferences_dialog.c:2397 msgid "Brushes" msgstr "Penslar" #. initialize the list of gimp brushes -#: app/app_procs.c:543 app/internal_procs.c:143 app/preferences_dialog.c:2476 +#: app/app_procs.c:545 app/internal_procs.c:143 app/preferences_dialog.c:2405 msgid "Patterns" msgstr "MЖnster" #. initialize the list of gimp patterns -#: app/app_procs.c:545 app/preferences_dialog.c:2480 +#: app/app_procs.c:547 app/preferences_dialog.c:2409 msgid "Palettes" msgstr "Paletter" #. initialize the list of gimp palettes -#: app/app_procs.c:547 app/internal_procs.c:113 app/preferences_dialog.c:2484 +#: app/app_procs.c:549 app/internal_procs.c:113 app/preferences_dialog.c:2413 msgid "Gradients" msgstr "FДrgskalor" -#: app/app_procs.c:735 +#: app/app_procs.c:737 msgid "Really Quit?" msgstr "Verkligen avsluta?" -#: app/app_procs.c:739 +#: app/app_procs.c:741 msgid "" "Some files unsaved.\n" "\n" @@ -109,21 +109,21 @@ msgstr "" "\n" "Avsluta GIMP?" -#: app/app_procs.c:740 app/install.c:272 app/install.c:430 +#: app/app_procs.c:742 msgid "Quit" msgstr "Avsluta" -#: app/app_procs.c:740 app/brightness_contrast.c:218 app/channel_ops.c:93 +#: app/app_procs.c:742 app/brightness_contrast.c:218 app/channel_ops.c:93 #: app/channels_dialog.c:2463 app/channels_dialog.c:2637 #: app/color_balance.c:275 app/color_notebook.c:125 app/convert.c:506 #: app/curves.c:559 app/file_new_dialog.c:207 app/file_new_dialog.c:357 #: app/gdisplay_color_ui.c:129 app/gdisplay_ops.c:346 app/gimpprogress.c:112 -#: app/global_edit.c:739 app/gradient.c:1769 app/gradient.c:4839 -#: app/gradient.c:5400 app/hue_saturation.c:377 app/interface.c:984 -#: app/layers_dialog.c:3326 app/layers_dialog.c:3517 app/layers_dialog.c:3617 -#: app/layers_dialog.c:3889 app/levels.c:341 app/palette.c:1826 -#: app/posterize.c:201 app/preferences_dialog.c:1469 app/qmask.c:281 -#: app/resize.c:195 app/resize.c:1345 app/threshold.c:275 +#: app/global_edit.c:739 app/gradient.c:1769 app/gradient.c:4841 +#: app/gradient.c:5402 app/hue_saturation.c:377 app/install.c:532 +#: app/interface.c:984 app/layers_dialog.c:3326 app/layers_dialog.c:3517 +#: app/layers_dialog.c:3617 app/layers_dialog.c:3889 app/levels.c:341 +#: app/palette.c:1826 app/posterize.c:201 app/preferences_dialog.c:1434 +#: app/qmask.c:281 app/resize.c:195 app/resize.c:1345 app/threshold.c:275 #: modules/cdisplay_gamma.c:358 msgid "Cancel" msgstr "Avbryt" @@ -168,7 +168,7 @@ msgstr "Egen f msgid "Blend:" msgstr "FДrgtoning:" -#: app/blend.c:320 app/gradient.c:533 app/preferences_dialog.c:2209 +#: app/blend.c:320 app/gradient.c:533 app/preferences_dialog.c:2137 msgid "Linear" msgstr "LinjДr" @@ -216,7 +216,7 @@ msgstr "Spiral (moturs)" msgid "Gradient:" msgstr "FДrgskala:" -#: app/blend.c:342 app/preferences_dialog.c:1808 +#: app/blend.c:342 app/preferences_dialog.c:1769 msgid "None" msgstr "Ingen" @@ -279,7 +279,7 @@ msgstr "Ljusstyrka-Kontrast g #: app/gdisplay_color_ui.c:127 app/gimpui.c:122 app/hue_saturation.c:373 #: app/layers_dialog.c:3324 app/layers_dialog.c:3515 app/layers_dialog.c:3615 #: app/layers_dialog.c:3887 app/levels.c:337 app/module_db.c:281 -#: app/posterize.c:197 app/preferences_dialog.c:1465 app/qmask.c:279 +#: app/posterize.c:197 app/preferences_dialog.c:1430 app/qmask.c:279 #: app/resize.c:193 app/resize.c:1345 app/threshold.c:271 #: modules/cdisplay_gamma.c:351 msgid "OK" @@ -484,8 +484,8 @@ msgid "Offset X:" msgstr "Offset X:" #: app/channel_ops.c:115 app/crop.c:1063 app/file_new_dialog.c:530 -#: app/resize.c:332 app/resize.c:417 app/resize.c:575 app/rotate_tool.c:106 -#: app/scale_tool.c:100 app/shear_tool.c:82 +#: app/install.c:1108 app/resize.c:332 app/resize.c:417 app/resize.c:575 +#: app/rotate_tool.c:106 app/scale_tool.c:100 app/shear_tool.c:82 msgid "Y:" msgstr "Y:" @@ -494,12 +494,12 @@ msgstr "Y:" msgid "Wrap Around" msgstr "SlЕ-runt" -#: app/channel_ops.c:174 app/image_new.c:69 app/image_new.c:223 +#: app/channel_ops.c:174 app/image_new.c:70 app/image_new.c:234 #: app/layers_dialog.c:3422 msgid "Background" msgstr "Bakgrund" -#: app/channel_ops.c:175 app/image_new.c:79 app/layers_dialog.c:3424 +#: app/channel_ops.c:175 app/image_new.c:80 app/layers_dialog.c:3424 msgid "Transparent" msgstr "Transparent" @@ -971,7 +971,7 @@ msgid "Load" msgstr "Ladda" #: app/curves.c:704 app/devices.c:753 app/levels.c:608 app/palette.c:2068 -#: app/preferences_dialog.c:357 app/preferences_dialog.c:1467 +#: app/preferences_dialog.c:357 app/preferences_dialog.c:1432 msgid "Save" msgstr "Spara" @@ -1182,8 +1182,8 @@ msgstr "Bildstorlek: %s" msgid "New Image" msgstr "Ny bild" -#: app/file_new_dialog.c:453 app/preferences_dialog.c:1540 -#: app/preferences_dialog.c:1577 +#: app/file_new_dialog.c:453 app/install.c:1093 app/preferences_dialog.c:1505 +#: app/preferences_dialog.c:1542 msgid "Pixels" msgstr "Pixlar" @@ -1222,7 +1222,7 @@ msgstr "" msgid "No Selection." msgstr "Ingen markering." -#: app/fileops.c:418 app/fileops.c:1624 app/fileops.c:1731 +#: app/fileops.c:418 app/fileops.c:1629 app/fileops.c:1736 #, c-format msgid "Save failed: %s" msgstr "Sparning misslyckades: %s" @@ -1248,58 +1248,58 @@ msgstr "" msgid "Revert failed." msgstr "еterta bild misslyckades." -#: app/fileops.c:1240 +#: app/fileops.c:1245 msgid "(This thumbnail may be out of date)" msgstr "(denna tumnagel Дr kanske gammal)" -#: app/fileops.c:1241 +#: app/fileops.c:1246 msgid "(No Information)" msgstr "(ingen information)" -#: app/fileops.c:1251 +#: app/fileops.c:1256 msgid "(Thumbnail saving is disabled)" msgstr "(tumnagels-sparning Дr avslaget)" -#: app/fileops.c:1255 +#: app/fileops.c:1260 msgid "(Could not write thumbnail file)" msgstr "(kunde inte skriva tumnagelsfil)" -#: app/fileops.c:1259 +#: app/fileops.c:1264 msgid "(Thumbnail file not written)" msgstr "(tumnagelsfil ej sparad)" -#: app/fileops.c:1276 +#: app/fileops.c:1281 msgid "No preview available" msgstr "ingen fЖrhandsvisning tillgДnglig" -#: app/fileops.c:1394 +#: app/fileops.c:1399 msgid "(could not make preview)" msgstr "(kunde ej skapa fЖrhandsvisning)" -#: app/fileops.c:1467 app/fileops.c:1546 +#: app/fileops.c:1472 app/fileops.c:1551 #, c-format msgid "Open failed: %s" msgstr "жppning misslyckades: %s" -#: app/fileops.c:1602 +#: app/fileops.c:1607 #, c-format msgid "%s is an irregular file (%s)" msgstr "%s Дr inte en vanlig fil (%s)" -#: app/fileops.c:1670 +#: app/fileops.c:1675 #, c-format msgid "%s exists, overwrite?" msgstr "%s existerar, skriv Жver?" -#: app/fileops.c:1674 +#: app/fileops.c:1679 msgid "File Exists!" msgstr "Filen existerar!" -#: app/fileops.c:1680 +#: app/fileops.c:1685 msgid "Yes" msgstr "Ja" -#: app/fileops.c:1682 +#: app/fileops.c:1687 msgid "No" msgstr "Nej" @@ -1307,13 +1307,13 @@ msgstr "Nej" msgid "Flip Tool" msgstr "VДndaverktyget" -#: app/flip_tool.c:95 app/preferences_dialog.c:1591 -#: app/preferences_dialog.c:2355 +#: app/flip_tool.c:95 app/preferences_dialog.c:1556 +#: app/preferences_dialog.c:2284 msgid "Horizontal" msgstr "Horisontell" -#: app/flip_tool.c:97 app/preferences_dialog.c:1593 -#: app/preferences_dialog.c:2357 +#: app/flip_tool.c:97 app/preferences_dialog.c:1558 +#: app/preferences_dialog.c:2286 msgid "Vertical" msgstr "Vertikal" @@ -1339,7 +1339,7 @@ msgstr "" msgid "RGB-empty" msgstr "RGB-tom" -#: app/gdisplay.c:217 app/image_new.c:53 app/preferences_dialog.c:1637 +#: app/gdisplay.c:217 app/image_new.c:54 app/preferences_dialog.c:1602 msgid "RGB" msgstr "RGB" @@ -1607,45 +1607,45 @@ msgstr "F msgid "Please wait..." msgstr "Var god vДnta..." -#: app/gimprc.c:401 app/plug_in.c:304 +#: app/gimprc.c:415 app/plug_in.c:304 msgid "Resource configuration" msgstr "Resurs-konfiguration" -#: app/gimprc.c:451 +#: app/gimprc.c:467 #, c-format msgid "error parsing: \"%s\"\n" msgstr "kunde inte tolka: \"%s\"\n" -#: app/gimprc.c:452 +#: app/gimprc.c:468 #, c-format msgid " at line %d column %d\n" msgstr " pЕ rad %d kolumn %d\n" -#: app/gimprc.c:453 +#: app/gimprc.c:469 #, c-format msgid " unexpected token: %s\n" msgstr " ovДntad token: %s\n" -#: app/gimprc.c:1455 +#: app/gimprc.c:1473 msgid "error parsing pluginrc" msgstr "fel vid tolkning av pluginrc" -#: app/gimprc.c:2832 +#: app/gimprc.c:2866 #, c-format msgid "Can't open %s; %s" msgstr "Kan ej Жppna %s: %s" -#: app/gimprc.c:2851 +#: app/gimprc.c:2885 #, c-format msgid "Can't rename %s to %s.old; %s" msgstr "Kan ej dЖpa om %s till %s.old: %s" -#: app/gimprc.c:2857 +#: app/gimprc.c:2891 #, c-format msgid "Couldn't reopen %s\n" msgstr "Kan ej Жppna %s igen\n" -#: app/gimprc.c:2869 +#: app/gimprc.c:2903 #, c-format msgid "Can't write to %s; %s" msgstr "Kan ej skriva till %s: %s" @@ -1924,7 +1924,7 @@ msgstr "Handtagsposition: %06f" msgid "Distance: %0.6f" msgstr "Distans: %0.6f" -#: app/gradient.c:3387 app/gradient.c:4448 +#: app/gradient.c:3387 app/gradient.c:4450 msgid "Left endpoint's color" msgstr "VДnstra Дndpunktens fДrg" @@ -1944,7 +1944,7 @@ msgstr "H msgid "Save to" msgstr "Spara till" -#: app/gradient.c:3429 app/gradient.c:4526 +#: app/gradient.c:3429 app/gradient.c:4528 msgid "Right endpoint's color" msgstr "HЖgra Дndpunktens fДrg" @@ -1972,7 +1972,7 @@ msgstr "F msgid "Split segment at midpoint" msgstr "Dela segment vid mittenpunkt" -#: app/gradient.c:3734 app/gradient.c:4829 +#: app/gradient.c:3734 app/gradient.c:4831 msgid "Split segment uniformly" msgstr "Dela segment uniformt" @@ -1992,7 +1992,7 @@ msgstr " msgid "Flip segment" msgstr "VДnd pЕ segmentet" -#: app/gradient.c:3744 app/gradient.c:5390 +#: app/gradient.c:3744 app/gradient.c:5392 msgid "Replicate segment" msgstr "Replikera segmentet" @@ -2008,7 +2008,7 @@ msgstr "F msgid "Split segments at midpoints" msgstr "Dela segment vid mittenpunkter" -#: app/gradient.c:3755 app/gradient.c:4830 +#: app/gradient.c:3755 app/gradient.c:4832 msgid "Split segments uniformly" msgstr "Dela segmenten uniformt" @@ -2028,7 +2028,7 @@ msgstr " msgid "Flip selection" msgstr "VДnd markering" -#: app/gradient.c:3765 app/gradient.c:5391 +#: app/gradient.c:3765 app/gradient.c:5393 msgid "Replicate selection" msgstr "Replikera markering" @@ -2041,49 +2041,49 @@ msgstr "FG f msgid "RGBA (%0.3f, %0.3f, %0.3f, %0.3f)" msgstr "RGBA (%0.3f, %0.3f, %0.3f, %0.3f)" -#: app/gradient.c:4615 app/gradient.c:4685 +#: app/gradient.c:4617 app/gradient.c:4687 msgid "(Varies)" msgstr "(Varierar)" -#: app/gradient.c:4837 +#: app/gradient.c:4839 msgid "Split" msgstr "Dela" #. Instructions -#: app/gradient.c:4851 +#: app/gradient.c:4853 msgid "Please select the number of uniform parts" msgstr "Var god vДlj antalet uniforma delar" -#: app/gradient.c:4857 +#: app/gradient.c:4859 msgid "in which you want to split the selected segment" msgstr "som du vill dela det markerade segmentet" -#: app/gradient.c:4858 +#: app/gradient.c:4860 msgid "in which you want to split the segments in the selection" msgstr "som du vill dela segmenten i markeringen" -#: app/gradient.c:5218 +#: app/gradient.c:5220 msgid "Blend endpoints' colors" msgstr "Tona Дndpunkternas fДrg" -#: app/gradient.c:5230 +#: app/gradient.c:5232 msgid "Blend endpoints' opacity" msgstr "Tona Дndpunkternas opacitet" -#: app/gradient.c:5398 +#: app/gradient.c:5400 msgid "Replicate" msgstr "Replikera" #. Instructions -#: app/gradient.c:5411 +#: app/gradient.c:5413 msgid "Please select the number of times" msgstr "Var god vДlj antalet gЕnger" -#: app/gradient.c:5416 +#: app/gradient.c:5418 msgid "you want to replicate the selected segment" msgstr "du vill replikera det markerade segmentet" -#: app/gradient.c:5417 +#: app/gradient.c:5419 msgid "you want to replicate the selection" msgstr "du vill replikera markeringen" @@ -2187,45 +2187,45 @@ msgstr "Ljushet" msgid "Saturation" msgstr "MДttnad" -#: app/image_new.c:58 app/info_window.c:65 app/info_window.c:534 -#: app/preferences_dialog.c:1638 +#: app/image_new.c:59 app/info_window.c:65 app/info_window.c:534 +#: app/preferences_dialog.c:1603 msgid "Grayscale" msgstr "GrЕskala" -#: app/image_new.c:64 app/layers_dialog.c:3421 +#: app/image_new.c:65 app/layers_dialog.c:3421 msgid "Foreground" msgstr "FЖrgrund" -#: app/image_new.c:74 app/layers_dialog.c:3423 +#: app/image_new.c:75 app/layers_dialog.c:3423 msgid "White" msgstr "Vit" -#: app/image_new.c:262 +#: app/image_new.c:273 #, c-format msgid "%d Bytes" msgstr "%d Bytes" -#: app/image_new.c:264 +#: app/image_new.c:275 #, c-format msgid "%.2f KB" msgstr "%.2f KB" -#: app/image_new.c:266 +#: app/image_new.c:277 #, c-format msgid "%.1f KB" msgstr "%.1f KB" -#: app/image_new.c:268 +#: app/image_new.c:279 #, c-format msgid "%d KB" msgstr "%d KB" -#: app/image_new.c:270 +#: app/image_new.c:281 #, c-format msgid "%.2f MB" msgstr "%.2f MB" -#: app/image_new.c:272 +#: app/image_new.c:283 #, c-format msgid "%.1f MB" msgstr "%.1f MB" @@ -2254,8 +2254,8 @@ msgstr "" "Den aktiva fДrgskalan.\n" "Klicka fЖr att Жppna fДrgskale-fЖnstret." -#: app/info_dialog.c:181 app/preferences_dialog.c:1782 -#: app/preferences_dialog.c:1888 +#: app/info_dialog.c:181 app/preferences_dialog.c:1743 +#: app/preferences_dialog.c:1849 msgid "General" msgstr "Generellt" @@ -2387,11 +2387,11 @@ msgstr "justering:" msgid "Shape" msgstr "Form" -#: app/install.c:83 +#: app/install.c:95 msgid "The GIMP is not properly installed for the current user\n" msgstr "GIMP Дr ej korrekt uppsatt fЖr den nuvarande anvДndaren\n" -#: app/install.c:84 +#: app/install.c:96 msgid "" "User installation was skipped because the '--nointerface' flag was " "encountered\n" @@ -2399,27 +2399,332 @@ msgstr "" "AnvДndarinstallationen hoppas Жver eftersom '--nointerface' " "flagganpЕtrДffades\n" -#: app/install.c:85 +#: app/install.c:97 msgid "" "To perform user installation, run the GIMP without the '--nointerface' flag\n" msgstr "" "FЖr att utfЖra anvДndarinstallationen, starta GIMP utan '--nointerface' " "flaggn\n" -#: app/install.c:113 +#: app/install.c:142 +#, fuzzy +msgid "" +"The gimprc is used to store personal preferences\n" +"that affect GIMP's default behavior.\n" +"Paths to search for brushes, palettes, gradients,\n" +"patterns, plug-ins and modules can also configured here." +msgstr "" +"'gimprc' anvДnds fЖr att lagra personliga instДllningar\n" +"sЕsom standard GIMP uppfЖrandet och snabbtangenter.\n" +"SЖkvДgar till penslar, fДrgkartor, fДrgskalor, mЖnster\n" +"insticksprogram och moduler konfigureras Дven hДr\n" + +#: app/install.c:149 +msgid "" +"GIMP uses an additional gtkrc file so you can\n" +"configure it to look differently than other GTK apps." +msgstr "" + +#: app/install.c:154 +#, fuzzy +msgid "" +"Plug-ins and extensions are external programs run by\n" +"the GIMP which provide additional functionality.\n" +"These programs are searched for at run-time and\n" +"information about their functionality and mod-times\n" +"is cached in this file. This file is intended to\n" +"be GIMP-readable only, and should not be edited." +msgstr "" +"Insticksprogram och tillДgg Дr externa program som kЖrs av\n" +"GIMP som kan bistЕ med utЖkad funktionalitet.\n" +"Dessa program sЖks efter under kЖrning och informationen\n" +"om dess funktionalitet och modifieringstider lagras\n" +"i denna fil. Denna fil Дr endast avsedd fЖr GIMP och bЖr\n" +"ej modifieras.\n" + +#: app/install.c:163 +#, fuzzy +msgid "" +"Key shortcuts can be dynamically redefined in The GIMP.\n" +"The menurc is a dump of your configuration so it can.\n" +"be remembered for the next session. You may edit this\n" +"file if you wish, but it is much easier to define the\n" +"keys from within The GIMP. Deleting this file will\n" +"restore the default shortcuts." +msgstr "" +"Snabbtangenter kan dynamiskt defineras om i GIMP.\n" +"'menurc' Дr en dump av dina instДllning sЕ att den kan\n" +"kommas ihЕg tills nДsta session. Du kan editera denna fil\n" +"om du vill, men det Дr mycket enklare att Дndra det inifrЕn\n" +"GIMP. Om du tar bort denna fil sЕ Еtertas standardvДrdena.\n" + +#: app/install.c:172 +#, fuzzy +msgid "" +"The sessionrc is used to store what dialog windows were\n" +"open the last time you quit The GIMP. You can configure\n" +"The GIMP to reopen these dialogs at the saved position." +msgstr "" +"'sessionrc' anvДnds fЖr att spara var dialogfЖnstren var\n" +"placerade pЕ skДrmen nДr du senast anvДnde GIMP. Du kan\n" +"sДga Еt GIMP att Жppna dessa dialoger pЕ samma stДlle\n" +"gЕng.\n" + +#: app/install.c:178 +#, fuzzy +msgid "" +"The unitrc is used to store your user units database.\n" +"You can define additional units and use them just\n" +"like you use the built-in units inches, millimeters,\n" +"points and picas. This file is overwritten each time\n" +"you quit the GIMP." +msgstr "" +"Filen unitrc anvДnds fЖr att lagra dina egna enheter.\n" +"Du kan definera ytterligare enheter och anvДnda dem precis\n" +"som du anvДnder de inbyggda enheterna tum, millimeter,\n" +"punkter och picas. Denna fil skrivs Жver varje gЕng du\n" +"avslutar GIMP.\n" + +#: app/install.c:186 +#, fuzzy +msgid "" +"This is a subdirectory which can be used to store\n" +"user defined brushes. The default gimprc file\n" +"checks this subdirectory in addition to the system-\n" +"wide gimp brushes installation when searching for\n" +"brushes." +msgstr "" +"Detta Дr ett bibliotek som kan anvДndas fЖr att spara\n" +"dina egna penslar. Standard gimprc kontrollerar detta\n" +"bibliotek utЖver systemets pensel-bibliotek nДr den\n" +"sЖker efter penslar.\n" + +#: app/install.c:194 +#, fuzzy +msgid "" +"This is a subdirectory which is used to store brushes\n" +"that are created with the brush editor. The default\n" +"gimprc file checks this subdirectory when searching for\n" +"generated brushes." +msgstr "" +"Detta Дr ett bibliotek som kan anvДndas fЖr att spara\n" +"penslar som Дr skapade med pensel-editorn. Standard gimprc\n" +"kontrollerar detta bibliotek utЖver systemets pensel-bibliotek\n" +"nДr den sЖker efter penslar.\n" + +#: app/install.c:201 +#, fuzzy +msgid "" +"This is a subdirectory which can be used to store\n" +"user defined gradients. The default gimprc file\n" +"checks this subdirectory in addition to the system-\n" +"wide gimp gradients installation when searching for\n" +"gradients." +msgstr "" +"Detta Дr ett bibliotek som kan anvДndas fЖr att lagra\n" +"anvДndar-definerade fДrgskalor. Standard gimprc-filen\n" +"sЖker i detta bibliotek utЖver systemets fДrgskale-\n" +"bibliotek nДr den sЖker efter fДrgskalor.\n" + +#: app/install.c:209 +#, fuzzy +msgid "" +"This is a subdirectory which can be used to store\n" +"user defined palettes. The default gimprc file\n" +"checks only this subdirectory (not the system-wide\n" +"installation) when searching for palettes. During\n" +"installation, the system palettes will be copied\n" +"here. This is done to allow modifications made to\n" +"palettes during GIMP execution to persist across\n" +"sessions." +msgstr "" +"Detta Дr ett bibliotek som kan anvДndas fЖr att lagra\n" +"anvДndar-definerade paletter. Standard gimprc-filen\n" +"sЖker endast i detta bibliotek (ej systemets installation)\n" +"nДr den sЖker efter paletter. Systemets paletter kopieras\n" +"hit vid installation fЖr att kunna modifieras vid senare tillfДlle.\n" + +#: app/install.c:220 +#, fuzzy +msgid "" +"This is a subdirectory which can be used to store\n" +"user defined patterns. The default gimprc file\n" +"checks this subdirectory in addition to the system-\n" +"wide gimp patterns installation when searching for\n" +"patterns." +msgstr "" +"Detta Дr ett bibliotek som kan anvДndas fЖr att lagra\n" +"anvДndar-definerade mЖnster. Standard gimprc-filen\n" +"sЖker i detta bibliotek utЖver systemets mЖnster-\n" +"bibliotek nДr den sЖker efter mЖnster.\n" + +#: app/install.c:228 +#, fuzzy +msgid "" +"This is a subdirectory which can be used to store\n" +"user created, temporary, or otherwise non-system-\n" +"supported plug-ins. The default gimprc file\n" +"checks this subdirectory in addition to the system-\n" +"wide GIMP plug-in directories when searching for\n" +"plug-ins." +msgstr "" +"Detta Дr ett bibliotek som kan anvДndas fЖr att lagra\n" +"anvДndar-skapade, temporДra eller pЕ annat sДtt icke-\n" +"system-stЖdda insticksprogram. Standard gimprc-filen\n" +"sЖker i detta bibliotek utЖver systemets insticksprogram-\n" +"bibliotek nДr den sЖker efter insticksprogram.\n" + +#: app/install.c:237 +#, fuzzy +msgid "" +"This subdirectory can be used to store user created,\n" +"temporary, or otherwise non-system-supported DLL modules.\n" +"The default gimprc file checks this subdirectory\n" +"in addition to the system-wide GIMP module directory\n" +"when searching for modules to load when initializing." +msgstr "" +"Detta Дr ett bibliotek som kan anvДndas fЖr att lagra\n" +"anvДndar-skapade, temporДra eller pЕ annat sДtt icke-\n" +"system-stЖdda DLL-moduler. Standard gimprc-filen\n" +"sЖker i detta bibliotek utЖver systemets modul-\n" +"bibliotek nДr den sЖker efter moduler att ladda vid start.\n" + +#: app/install.c:245 +#, fuzzy +msgid "" +"This subdirectory is used by the GIMP to store \n" +"user created and installed scripts. The default gimprc\n" +"file checks this subdirectory in addition to the system-\n" +"wide gimp scripts subdirectory when searching for scripts" +msgstr "" +"Detta Дr ett bibliotek som kan anvДndas fЖr att lagra\n" +"anvДndar-skapade och installerade script. Standard \n" +"gimprc-filen sЖker i detta bibliotek utЖver systemets\n" +"script-bibliotek nДr den sЖker efter script.\n" + +#: app/install.c:252 +#, fuzzy +msgid "" +"This subdirectory is used by the GIMP to temporarily\n" +"store undo buffers to reduce memory usage. If GIMP is\n" +"unceremoniously killed, files may persist in this directory\n" +"of the form: gimp<#>.<#>. These files are useless across\n" +"GIMP sessions and can be destroyed with impunity." +msgstr "" +"Detta Дr ett bibliotek som anvДnds av GIMP fЖr att\n" +"temporДrt lagra Еngra-buffertar fЖr att minska minnesanvДndningen.\n" +"Om GIMP avslutas onormalt kan filer lДmnas kvar i detta\n" +"bibliotek i formen: gimp<#>.<#>. Dessa filer Дr vДrdelЖsa mellan\n" +"olika GIMP-sessioner och kan tas bort.\n" + +#: app/install.c:260 +msgid "" +"This subdirectory is used to store parameter files for\n" +"the Curves tool." +msgstr "" + +#: app/install.c:265 +msgid "" +"This subdirectory is used to store parameter files for\n" +"the Levels tool." +msgstr "" + +#: app/install.c:270 +#, fuzzy +msgid "" +"This is a subdirectory which can be used to store\n" +"user defined fractals to be used by the FractalExplorer\n" +"plug-in. The default gimprc file checks this subdirectory in\n" +"addition to the systemwide gimp FractalExplorer installation\n" +"when searching for fractals." +msgstr "" +"Detta Дr ett bibliotek som kan anvДndas fЖr att lagra\n" +"anvДndar-definerade fraktaler fЖr att anvДndas med\n" +"FractalExplorer-insticksprogrammet. Standard gimprc-\n" +"filen sЖker i detta bibliotek utЖver systemets\n" +"FractalExplorer-installation nДr den sЖker efter fraktaler.\n" + +#: app/install.c:278 +#, fuzzy +msgid "" +"This is a subdirectory which can be used to store\n" +"user defined figures to be used by the gfig plug-in.\n" +"The default gimprc file checks this subdirectory in\n" +"addition to the systemwide gimp gfig installation\n" +"when searching for gfig figures." +msgstr "" +"Detta Дr ett bibliotek som kan anvДndas fЖr att lagra\n" +"anvДndar-definerade figurer fЖr att anvДndas med gfig-\n" +"insticksprogrammet. Standard gimprc-filen sЖker i\n" +"detta bibliotek utЖver systemets gfig-installation\n" +"nДr den sЖker efter figurer.\n" + +#: app/install.c:286 +#, fuzzy +msgid "" +"This is a subdirectory which can be used to store\n" +"user defined gflares to be used by the gflare plug-in.\n" +"The default gimprc file checks this subdirectory in\n" +"addition to the systemwide gimp gflares installation\n" +"when searching for gflares." +msgstr "" +"Detta Дr ett bibliotek som kan anvДndas fЖr att lagra\n" +"anvДndar-definerade gflares fЖr att anvДndas med gflare-\n" +"insticksprogrammet. Standard gimprc-filen sЖker i\n" +"detta bibliotek utЖver systemets gflare-installation\n" +"nДr den sЖker efter gflares.\n" + +#: app/install.c:294 +#, fuzzy +msgid "" +"This is a subdirectory which can be used to store\n" +"user defined data to be used by the Gimpressionist\n" +"plug-in. The default gimprc file checks this subdirectory in\n" +"addition to the systemwide gimp Gimpressionist installation\n" +"when searching for data." +msgstr "" +"Detta Дr ett bibliotek som kan anvДndas fЖr att lagra\n" +"anvДndar-definerade gflares fЖr att anvДndas med gflare-\n" +"insticksprogrammet. Standard gimprc-filen sЖker i\n" +"detta bibliotek utЖver systemets gflare-installation\n" +"nДr den sЖker efter gflares.\n" + +#: app/install.c:525 +#, fuzzy +msgid "GIMP User Installation" +msgstr "GIMP Installation" + +#: app/install.c:530 +msgid "Continue" +msgstr "FortsДtt" + +#. this is a fontset, e.g. multiple comma-separated font definitions +#: app/install.c:560 +#, fuzzy +msgid "-*-helvetica-bold-r-normal-*-*-240-*-*-*-*-*-*,*" +msgstr "-*-helvetica-bold-r-normal-*-*-120-*-*-*-*-*-*,*" + +#: app/install.c:578 +#, fuzzy +msgid "" +"Welcome to\n" +"The GIMP User Installation" +msgstr "GIMP Installation" + +#: app/install.c:582 msgid "" "The GIMP - GNU Image Manipulation Program\n" -"\n" +"Copyright (C) 1995-2000\n" +"Spencer Kimball, Peter Mattis and the GIMP Development Team." msgstr "" -"GIMP - GNU Image Manipulation Program\n" -"\n" -#: app/install.c:118 +#: app/install.c:591 +#, fuzzy msgid "" "This program is free software; you can redistribute it and/or modify\n" "it under the terms of the GNU General Public License as published by\n" "the Free Software Foundation; either version 2 of the License, or\n" -"(at your option) any later version.\n" +"(at your option) any later version." msgstr "" "Detta program Дr fri programvara. Du kan distribuera det och/eller " "modifiera\n" @@ -2427,371 +2732,188 @@ msgstr "" "Software\n" "Foundation, antingen version 2 eller (om du sЕ vill) nЕgon senare version.\n" -#: app/install.c:123 +#: app/install.c:596 +#, fuzzy msgid "" "This program is distributed in the hope that it will be useful,\n" "but WITHOUT ANY WARRANTY; without even the implied warranty of\n" "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n" -"See the GNU General Public License for more details.\n" +"See the GNU General Public License for more details." msgstr "" "Detta program distribueras i hopp om att det ska vara anvДndbart,\n" "men UTAN NеGON SOM HELST GARANTI, Дven utan underfЖrstЕdd garanti om\n" "SдLJBARHET eller LдMPLIGHET FжR NеGOT SPECIELLT дNDAMеL.\n" "Se GNU General Public License fЖr ytterligare information.\n" -#: app/install.c:128 +#: app/install.c:601 +#, fuzzy msgid "" "You should have received a copy of the GNU General Public License\n" "along with this program; if not, write to the Free Software\n" "Foundation, Inc., 59 Temple Place - Suite 330, Boston,\n" -"MA 02111-1307, USA.\n" +"MA 02111-1307, USA." msgstr "" "Du bЖr ha fЕtt en kopia av GNU General Public License tillsammans\n" "med detta program. Om inte, skriv till Free Software Foundation,\n" "Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n" -#: app/install.c:134 -msgid "" -"Personal GIMP Installation\n" -"\n" +#: app/install.c:607 +msgid "Click \"Continue\" to enter the GIMP user installation." +msgstr "" + +#: app/install.c:633 +#, fuzzy +msgid "Personal GIMP Directory" msgstr "" "Personlig GIMP-installation\n" "\n" -#: app/install.c:135 -msgid "For a proper GIMP installation, a subdirectory called\n" -msgstr "FЖr att korrekt installera GIMP, mЕste ett underbibliotek kallat\n" - -#. will be replaced with gimp_directory() -#: app/install.c:137 +#: app/install.c:650 +#, fuzzy msgid "" -" needs to be created. This\n" -"subdirectory will contain a number of important files:\n" -"\n" +"For a proper GIMP installation, a subdirectory needs to be created.\n" +"This subdirectory will contain a number of important files." msgstr "" " mЕste skapas. Detta\n" "underbibliotek kommer att innehЕlle nЕgra viktiga filer:\n" -#: app/install.c:141 +#: app/install.c:653 msgid "" -"\t\tThe gimprc is used to store personal preferences\n" -"\t\tthat affect GIMP's default behavior.\n" -"\t\tPaths to search for brushes, palettes, gradients,\n" -"\t\tpatterns, plug-ins and modules can also configured here.\n" +"Click on one of the files or subdirectories in the tree\n" +"to get more information about the selected item." msgstr "" -"\t\t'gimprc' anvДnds fЖr att lagra personliga instДllningar\n" -"\t\tsЕsom standard GIMP uppfЖrandet och snabbtangenter.\n" -"\t\tSЖkvДgar till penslar, fДrgkartor, fДrgskalor, mЖnster\n" -"\t\tinsticksprogram och moduler konfigureras Дven hДr\n" -#: app/install.c:147 -msgid "" -"\t\tPlug-ins and extensions are external programs run by\n" -"\t\tthe GIMP which provide additional functionality.\n" -"\t\tThese programs are searched for at run-time and\n" -"\t\tinformation about their functionality and mod-times\n" -"\t\tis cached in this file. This file is intended to\n" -"\t\tbe GIMP-readable only, and should not be edited.\n" +#: app/install.c:656 +msgid "Click \"Continue\" to create your personal GIMP directory." msgstr "" -"\t\tInsticksprogram och tillДgg Дr externa program som kЖrs av\n" -"\t\tGIMP som kan bistЕ med utЖkad funktionalitet.\n" -"\t\tDessa program sЖks efter under kЖrning och informationen\n" -"\t\tom dess funktionalitet och modifieringstider lagras\n" -"\t\ti denna fil. Denna fil Дr endast avsedd fЖr GIMP och bЖr\n" -"\t\tej modifieras.\n" -#: app/install.c:155 -msgid "" -"\t\tKey shortcuts can be dynamically redefined in The GIMP.\n" -"\t\tThe menurc is a dump of your configuration so it can.\n" -"\t\tbe remembered for the next session. You may edit this\n" -"\t\tfile if you wish, but it is much easier to define the\n" -"\t\tkeys from within The GIMP. Deleting this file will\n" -"\t\trestore the default shortcuts.\n" -msgstr "" -"\t\tSnabbtangenter kan dynamiskt defineras om i GIMP.\n" -"\t\t'menurc' Дr en dump av dina instДllning sЕ att den kan\n" -"\t\tkommas ihЕg tills nДsta session. Du kan editera denna fil\n" -"\t\tom du vill, men det Дr mycket enklare att Дndra det inifrЕn\n" -"\t\tGIMP. Om du tar bort denna fil sЕ Еtertas standardvДrdena.\n" - -#: app/install.c:163 -msgid "" -"\t\tThe sessionrc is used to store what dialog windows were\n" -"\t\topen the last time you quit The GIMP. You can configure\n" -"\t\tThe GIMP to reopen these dialogs at the saved position.\n" -msgstr "" -"\t\t'sessionrc' anvДnds fЖr att spara var dialogfЖnstren var\n" -"\t\tplacerade pЕ skДrmen nДr du senast anvДnde GIMP. Du kan\n" -"\t\tsДga Еt GIMP att Жppna dessa dialoger pЕ samma stДlle\n" -"\t\tgЕng.\n" - -#: app/install.c:168 -msgid "" -"\t\tThe unitrc is used to store your user units database.\n" -"\t\tYou can define additional units and use them just\n" -"\t\tlike you use the built-in units inches, millimeters,\n" -"\t\tpoints and picas. This file is overwritten each time\n" -"\t\tyou quit the GIMP.\n" -msgstr "" -"\t\tFilen unitrc anvДnds fЖr att lagra dina egna enheter.\n" -"\t\tDu kan definera ytterligare enheter och anvДnda dem precis\n" -"\t\tsom du anvДnder de inbyggda enheterna tum, millimeter,\n" -"\t\tpunkter och picas. Denna fil skrivs Жver varje gЕng du\n" -"\t\tavslutar GIMP.\n" - -#: app/install.c:175 -msgid "" -"\t\tThis is a subdirectory which can be used to store\n" -"\t\tuser defined brushes. The default gimprc file\n" -"\t\tchecks this subdirectory in addition to the system-\n" -"\t\twide gimp brushes installation when searching for\n" -"\t\tbrushes.\n" -msgstr "" -"\t\tDetta Дr ett bibliotek som kan anvДndas fЖr att spara\n" -"\t\tdina egna penslar. Standard gimprc kontrollerar detta\n" -"\t\tbibliotek utЖver systemets pensel-bibliotek nДr den\n" -"\t\tsЖker efter penslar.\n" - -#: app/install.c:182 -msgid "" -"\t\tThis is a subdirectory which is used to store brushes\n" -"\t\tthat are created with the brush editor. The default\n" -"\t\tgimprc file checks this subdirectory when searching for\n" -"\t\tgenerated brushes.\n" -msgstr "" -"\t\tDetta Дr ett bibliotek som kan anvДndas fЖr att spara\n" -"\t\tpenslar som Дr skapade med pensel-editorn. Standard gimprc\n" -"\t\tkontrollerar detta bibliotek utЖver systemets pensel-bibliotek\n" -"\t\tnДr den sЖker efter penslar.\n" - -#: app/install.c:188 -msgid "" -"\t\tThis is a subdirectory which can be used to store\n" -"\t\tuser defined gradients. The default gimprc file\n" -"\t\tchecks this subdirectory in addition to the system-\n" -"\t\twide gimp gradients installation when searching for\n" -"\t\tgradients.\n" -msgstr "" -"\t\tDetta Дr ett bibliotek som kan anvДndas fЖr att lagra\n" -"\t\tanvДndar-definerade fДrgskalor. Standard gimprc-filen\n" -"\t\tsЖker i detta bibliotek utЖver systemets fДrgskale-\n" -"\t\tbibliotek nДr den sЖker efter fДrgskalor.\n" - -#: app/install.c:195 -msgid "" -"\t\tThis is a subdirectory which can be used to store\n" -"\t\tuser defined figures to be used by the gfig plug-in.\n" -"\t\tThe default gimprc file checks this subdirectory in\n" -"\t\taddition to the systemwide gimp gfig installation\n" -"\t\twhen searching for gfig figures.\n" -msgstr "" -"\t\tDetta Дr ett bibliotek som kan anvДndas fЖr att lagra\n" -"\t\tanvДndar-definerade figurer fЖr att anvДndas med gfig-\n" -"\t\tinsticksprogrammet. Standard gimprc-filen sЖker i\n" -"\t\tdetta bibliotek utЖver systemets gfig-installation\n" -"\t\tnДr den sЖker efter figurer.\n" - -#: app/install.c:202 -msgid "" -"\t\tThis is a subdirectory which can be used to store\n" -"\t\tuser defined gflares to be used by the gflare plug-in.\n" -"\t\tThe default gimprc file checks this subdirectory in\n" -"\t\taddition to the systemwide gimp gflares installation\n" -"\t\twhen searching for gflares.\n" -msgstr "" -"\t\tDetta Дr ett bibliotek som kan anvДndas fЖr att lagra\n" -"\t\tanvДndar-definerade gflares fЖr att anvДndas med gflare-\n" -"\t\tinsticksprogrammet. Standard gimprc-filen sЖker i\n" -"\t\tdetta bibliotek utЖver systemets gflare-installation\n" -"\t\tnДr den sЖker efter gflares.\n" - -#: app/install.c:209 -msgid "" -"\t\tThis is a subdirectory which can be used to store\n" -"\t\tuser defined fractals to be used by the FractalExplorer\n" -"\t\tplug-in. The default gimprc file checks this subdirectory in\n" -"\t\taddition to the systemwide gimp FractalExplorer installation\n" -"\t\twhen searching for fractals.\n" -msgstr "" -"\t\tDetta Дr ett bibliotek som kan anvДndas fЖr att lagra\n" -"\t\tanvДndar-definerade fraktaler fЖr att anvДndas med\n" -"\t\tFractalExplorer-insticksprogrammet. Standard gimprc-\n" -"\t\tfilen sЖker i detta bibliotek utЖver systemets\n" -"\t\tFractalExplorer-installation nДr den sЖker efter fraktaler.\n" - -#: app/install.c:216 -msgid "" -"\t\tThis is a subdirectory which can be used to store\n" -"\t\tuser defined palettes. The default gimprc file\n" -"\t\tchecks only this subdirectory (not the system-wide\n" -"\t\tinstallation) when searching for palettes. During\n" -"\t\tinstallation, the system palettes will be copied\n" -"\t\there. This is done to allow modifications made to\n" -"\t\tpalettes during GIMP execution to persist across\n" -"\t\tsessions.\n" -msgstr "" -"\t\tDetta Дr ett bibliotek som kan anvДndas fЖr att lagra\n" -"\t\tanvДndar-definerade paletter. Standard gimprc-filen\n" -"\t\tsЖker endast i detta bibliotek (ej systemets installation)\n" -"\t\tnДr den sЖker efter paletter. Systemets paletter kopieras\n" -"\t\thit vid installation fЖr att kunna modifieras vid senare tillfДlle.\n" - -#: app/install.c:226 -msgid "" -"\t\tThis is a subdirectory which can be used to store\n" -"\t\tuser defined patterns. The default gimprc file\n" -"\t\tchecks this subdirectory in addition to the system-\n" -"\t\twide gimp patterns installation when searching for\n" -"\t\tpatterns.\n" -msgstr "" -"\t\tDetta Дr ett bibliotek som kan anvДndas fЖr att lagra\n" -"\t\tanvДndar-definerade mЖnster. Standard gimprc-filen\n" -"\t\tsЖker i detta bibliotek utЖver systemets mЖnster-\n" -"\t\tbibliotek nДr den sЖker efter mЖnster.\n" - -#: app/install.c:233 -msgid "" -"\t\tThis is a subdirectory which can be used to store\n" -"\t\tuser created, temporary, or otherwise non-system-\n" -"\t\tsupported plug-ins. The default gimprc file\n" -"\t\tchecks this subdirectory in addition to the system-\n" -"\t\twide GIMP plug-in directories when searching for\n" -"\t\tplug-ins.\n" -msgstr "" -"\t\tDetta Дr ett bibliotek som kan anvДndas fЖr att lagra\n" -"\t\tanvДndar-skapade, temporДra eller pЕ annat sДtt icke-\n" -"\t\tsystem-stЖdda insticksprogram. Standard gimprc-filen\n" -"\t\tsЖker i detta bibliotek utЖver systemets insticksprogram-\n" -"\t\tbibliotek nДr den sЖker efter insticksprogram.\n" - -#: app/install.c:241 -msgid "" -"\t\tThis subdirectory can be used to store user created,\n" -"\t\ttemporary, or otherwise non-system-supported DLL modules.\n" -"\t\tThe default gimprc file checks this subdirectory\n" -"\t\tin addition to the system-wide GIMP module directory\n" -"\t\twhen searching for modules to load when initializing.\n" -msgstr "" -"\t\tDetta Дr ett bibliotek som kan anvДndas fЖr att lagra\n" -"\t\tanvДndar-skapade, temporДra eller pЕ annat sДtt icke-\n" -"\t\tsystem-stЖdda DLL-moduler. Standard gimprc-filen\n" -"\t\tsЖker i detta bibliotek utЖver systemets modul-\n" -"\t\tbibliotek nДr den sЖker efter moduler att ladda vid start.\n" - -#: app/install.c:248 -msgid "" -"\t\tThis subdirectory is used by the GIMP to store \n" -"\t\tuser created and installed scripts. The default gimprc\n" -"\t\tfile checks this subdirectory in addition to the system\n" -"\t\t-wide gimp scripts subdirectory when searching for scripts\n" -msgstr "" -"\t\tDetta Дr ett bibliotek som kan anvДndas fЖr att lagra\n" -"\t\tanvДndar-skapade och installerade script. Standard \n" -"\t\tgimprc-filen sЖker i detta bibliotek utЖver systemets\n" -"\t\tscript-bibliotek nДr den sЖker efter script.\n" - -#: app/install.c:254 -msgid "" -"\t\tThis subdirectory is used by the GIMP to temporarily\n" -"\t\tstore undo buffers to reduce memory usage. If GIMP is\n" -"\t\tunceremoniously killed, files may persist in this directory\n" -"\t\tof the form: gimp<#>.<#>. These files are useless across\n" -"\t\tGIMP sessions and can be destroyed with impunity.\n" -msgstr "" -"\t\tDetta Дr ett bibliotek som anvДnds av GIMP fЖr att\n" -"\t\ttemporДrt lagra Еngra-buffertar fЖr att minska minnesanvДndningen.\n" -"\t\tOm GIMP avslutas onormalt kan filer lДmnas kvar i detta\n" -"\t\tbibliotek i formen: gimp<#>.<#>. Dessa filer Дr vДrdelЖsa mellan\n" -"\t\tolika GIMP-sessioner och kan tas bort.\n" - -#: app/install.c:263 -msgid "GIMP Installation" -msgstr "GIMP Installation" - -#: app/install.c:268 -msgid "Install" -msgstr "Installera" - -#: app/install.c:270 -msgid "Ignore" -msgstr "Ignorera" - -#. this is a fontset, e.g. multiple comma-separated font definitions -#: app/install.c:295 app/install.c:453 -msgid "-*-helvetica-bold-r-normal-*-*-120-*-*-*-*-*-*,*" -msgstr "-*-helvetica-bold-r-normal-*-*-120-*-*-*-*-*-*,*" - -#. this is a font, provide only one single font definition -#: app/install.c:298 -msgid "-*-helvetica-medium-o-normal-*-*-100-*-*-*-*-*-*" -msgstr "-*-helvetica-medium-o-normal-*-*-100-*-*-*-*-*-*" - -#. this is a fontset, e.g. multiple comma-separated font definitions -#: app/install.c:301 -msgid "-*-helvetica-medium-r-normal-*-*-100-*-*-*-*-*-*,*" -msgstr "-*-helvetica-medium-r-normal-*-*-100-*-*-*-*-*-*,*" - -#: app/install.c:423 -msgid "Installation Log" -msgstr "Installationslogg" - -#: app/install.c:428 -msgid "Continue" -msgstr "FortsДtt" - -#. this is a fontset, e.g. multiple comma-separated font definitions -#: app/install.c:456 -msgid "-*-helvetica-medium-r-normal-*-*-120-*-*-*-*-*-*,*" -msgstr "-*-helvetica-medium-r-normal-*-*-120-*-*-*-*-*-*,*" - -#: app/install.c:462 -msgid "" -"User Installation Log\n" -"\n" +#: app/install.c:736 +#, fuzzy +msgid "User Installation Log" msgstr "" "AnvДndarinstallationslogg\n" "\n" -#: app/install.c:472 -msgid " does not exist. Cannot install.\n" +#: app/install.c:741 +msgid "GIMP Performance Tuning" +msgstr "" + +#: app/install.c:744 +msgid "For optimal GIMP performance, some settings may have to be adjusted." +msgstr "" + +#: app/install.c:751 +msgid "Click \"Continue\" to accept the settings above." +msgstr "" + +#: app/install.c:760 +#, fuzzy +msgid "Monitor Resolution" +msgstr "HДmta bildskДrmsupplЖsning" + +#: app/install.c:763 +msgid "" +"To display images in their natural size, GIMP needs to know your monitor " +"resolution." +msgstr "" + +#: app/install.c:771 +msgid "Click \"Continue\" to start The GIMP." +msgstr "" + +#: app/install.c:845 +#, fuzzy +msgid "does not exist. Cannot install." msgstr " finns ej. Kan ej installera.\n" -#: app/install.c:480 -msgid "" -" has invalid permissions.\n" -"Cannot install." +#: app/install.c:857 +#, fuzzy +msgid "has invalid permissions. Cannot install." msgstr "" " har ogiltiga rДttigheter.\n" "Kan ej installera." -#: app/install.c:514 +#: app/install.c:895 +#, fuzzy msgid "" -"Did you notice any error messages\n" -"in the console window? If not, installation\n" -"was successful! Otherwise, quit and investigate\n" -"the possible reason...\n" +"Did you notice any error messages in the console window?\n" +"If not, installation was successful!\n" +"Otherwise, quit and investigate the possible reason..." msgstr "" "SЕg du nЕgra felmeddelanden i konsoll-fЖnstret?\n" "Om inte sЕ lyckades installationen! Annars, avsluta\n" "och undersЖk vad som var fel...\n" -#: app/install.c:546 +#: app/install.c:955 +#, fuzzy msgid "" -"\n" -"Installation successful!\n" +"Did you notice any error messages in the lines above?\n" +"If not, installation was successful!\n" +"Otherwise, quit and investigate the possible reason..." msgstr "" -"\n" -"Installationen lyckades!\n" +"SЕg du nЕgra felmeddelanden i konsoll-fЖnstret?\n" +"Om inte sЕ lyckades installationen! Annars, avsluta\n" +"och undersЖk vad som var fel...\n" -#: app/install.c:555 -msgid "" -"\n" -"Installation failed. Contact system administrator.\n" +#: app/install.c:969 +msgid "Click \"Continue\" to complete GIMP installation." +msgstr "" + +#: app/install.c:978 +#, fuzzy +msgid "Installation failed. Contact system administrator." msgstr "" "\n" "Installationen misslyckades, kontakta din systemadministratЖr.\n" +#: app/install.c:999 +msgid "" +"GIMP uses a limited amount of memory to store image data, the so-called\n" +"\"Tile Cache\". You should adjust it's size to fit into memory. Consider\n" +"the amount of memory used by other running processes." +msgstr "" + +#: app/install.c:1015 app/preferences_dialog.c:2102 +msgid "Tile Cache Size:" +msgstr "Bildblock-cachestorlek:" + +#: app/install.c:1025 +msgid "" +"All image and undo data which doesn't fit into the Tile Cache will be\n" +"written to a swap file. This file should be located on a local filesystem\n" +"with enough free space (several hundred MB). On a UNIX system, you\n" +"may want to use the system-wide temp-dir (\"/tmp\" or \"/var/tmp\")." +msgstr "" + +#: app/install.c:1035 app/preferences_dialog.c:2361 +msgid "Select Swap Dir" +msgstr "VДlj swap-bibliotek" + +#: app/install.c:1041 +#, fuzzy +msgid "Swap Directory:" +msgstr "Swap:" + +#: app/install.c:1063 +msgid "" +"GIMP can obtain this information from your X-server.\n" +"However, most X-servers do not return useful values." +msgstr "" + +#: app/install.c:1070 +#, fuzzy, c-format +msgid "Get Resolution from X-server (Currently %d x %d dpi)" +msgstr "(Nuvarande %d x %d dpi)" + +#: app/install.c:1087 +msgid "Alternatively, you can set the monitor resolution manually." +msgstr "" + +#: app/install.c:1102 +#, fuzzy +msgid "Monitor Resolution X:" +msgstr "HДmta bildskДrmsupplЖsning" + #: app/interface.c:312 msgid "" "Foreground & background colors. The black and white squares reset colors. " @@ -2870,8 +2992,8 @@ msgstr "F msgid "Guide procedures" msgstr "HjДlplinje-procedurer" -#: app/internal_procs.c:122 app/preferences_dialog.c:1772 -#: app/preferences_dialog.c:1774 +#: app/internal_procs.c:122 app/preferences_dialog.c:1733 +#: app/preferences_dialog.c:1735 msgid "Interface" msgstr "GrДnssnitt" @@ -3597,445 +3719,439 @@ msgid "/View/Shrink Wrap" msgstr "/Visa/Visa optimalt fЖnster" #. /Image/Mode -#: app/menus.c:347 +#: app/menus.c:344 msgid "/Image/Mode/RGB" msgstr "/Bild/Format/RGB" -#: app/menus.c:349 +#: app/menus.c:346 msgid "/Image/Mode/Grayscale" msgstr "/Bild/Format/GrЕskala" -#: app/menus.c:351 +#: app/menus.c:348 msgid "/Image/Mode/Indexed..." msgstr "/Bild/Format/Indexerad..." -#: app/menus.c:361 +#. /Image/Colors +#: app/menus.c:356 msgid "/Image/Colors/Desaturate" msgstr "/Bild/FДrger/AvfДrga" -#: app/menus.c:363 +#: app/menus.c:358 msgid "/Image/Colors/Invert" msgstr "/Bild/FДrger/Invertera" #. /Image/Colors/Auto -#: app/menus.c:371 +#: app/menus.c:366 msgid "/Image/Colors/Auto/Equalize" msgstr "/Bild/FДrger/Auto/JДmna ut" #. /Image/Alpha -#: app/menus.c:379 +#: app/menus.c:374 msgid "/Image/Alpha/Add Alpha Channel" msgstr "/Bild/Alfa/LДgg till alfa-kanal" #. /Image/Transforms -#: app/menus.c:384 +#: app/menus.c:379 msgid "/Image/Transforms/Offset..." msgstr "/Bild/Transformera/Offset..." -#: app/menus.c:386 +#: app/menus.c:381 msgid "/Image/Transforms/Rotate" msgstr "/Bild/Transformera/Rotera" -#: app/menus.c:393 +#: app/menus.c:388 msgid "/Image/Canvas Size..." msgstr "/Bild/Kanvas-storlek..." -#: app/menus.c:395 +#: app/menus.c:390 msgid "/Image/Scale Image..." msgstr "/Bild/Skala bild..." -#: app/menus.c:397 +#: app/menus.c:392 msgid "/Image/Duplicate" msgstr "/Bild/Duplicera" #. /Layers -#: app/menus.c:405 +#: app/menus.c:400 msgid "/Layers/Layers, Channels & Paths..." msgstr "/Lager/Lager, kanaler & slingor..." -#: app/menus.c:409 +#: app/menus.c:404 msgid "/Layers/Layer to Imagesize" msgstr "/Lager/Lagerstorlek som bilden" #. /Layers/Stack -#: app/menus.c:414 +#: app/menus.c:409 msgid "/Layers/Stack/Previous Layer" msgstr "/Lager/Stack/FЖregЕende lager" -#: app/menus.c:416 +#: app/menus.c:411 msgid "/Layers/Stack/Next Layer" msgstr "/Lager/Stack/NДsta lager" -#: app/menus.c:418 +#: app/menus.c:413 msgid "/Layers/Stack/Raise Layer" msgstr "/Lager/Stack/HЖj lager" -#: app/menus.c:420 +#: app/menus.c:415 msgid "/Layers/Stack/Lower Layer" msgstr "/Lager/Stack/SДnk lager" -#: app/menus.c:422 +#: app/menus.c:417 msgid "/Layers/Stack/Layer to Top" msgstr "/Lager/Stack/Lager till toppen" -#: app/menus.c:424 +#: app/menus.c:419 msgid "/Layers/Stack/Layer to Bottom" msgstr "/Lager/Stack/Lager till botten" #. /Layers/Rotate -#: app/menus.c:431 +#: app/menus.c:426 msgid "/Layers/Rotate" msgstr "/Lager/Rotera" -#: app/menus.c:436 +#: app/menus.c:431 msgid "/Layers/Anchor Layer" msgstr "/Lager/Ankra lager" -#: app/menus.c:438 +#: app/menus.c:433 msgid "/Layers/Merge Visible Layers..." msgstr "/Lager/Sammanfoga synliga lager..." -#: app/menus.c:440 +#: app/menus.c:435 msgid "/Layers/Flatten Image" msgstr "/Lager/Platta till bilden" -#: app/menus.c:445 +#: app/menus.c:440 msgid "/Layers/Mask to Selection" msgstr "/Lager/Mask till markering" -#: app/menus.c:450 +#: app/menus.c:445 msgid "/Layers/Add Alpha Channel" msgstr "/Lager/LДgg till alfa-kanal" -#: app/menus.c:452 +#: app/menus.c:447 msgid "/Layers/Alpha to Selection" msgstr "/Lager/Alfa-kanal till markering" #. /Tools -#: app/menus.c:460 +#: app/menus.c:455 msgid "/Tools/Toolbox" msgstr "/Verktyg/VerktygslЕda" -#: app/menus.c:462 +#: app/menus.c:457 msgid "/Tools/Default Colors" msgstr "/Verktyg/StandardfДrger" -#: app/menus.c:464 +#: app/menus.c:459 msgid "/Tools/Swap Colors" msgstr "/Verktyg/Byt fДrgplats" -#: app/menus.c:470 -msgid "/Tools/Select Tools" -msgstr "/Verktyg/Markeraverktyg" - -#: app/menus.c:472 -msgid "/Tools/Transform Tools" -msgstr "/Verktyg/Transformeringsverktyg" - -#: app/menus.c:474 -msgid "/Tools/Paint Tools" -msgstr "/Verktyg/Penselverktyg" - #. /Dialogs -#: app/menus.c:479 +#: app/menus.c:466 msgid "/Dialogs/Layers, Channels & Paths..." msgstr "/FЖnster/Lager, kanaler & slingor..." -#: app/menus.c:481 +#: app/menus.c:468 msgid "/Dialogs/Tool Options..." msgstr "/FЖnster/VerktygsinstДllningar..." -#: app/menus.c:486 +#: app/menus.c:473 msgid "/Dialogs/Brushes..." msgstr "/FЖnster/Penslar..." -#: app/menus.c:488 +#: app/menus.c:475 msgid "/Dialogs/Patterns..." msgstr "/FЖnster/MЖnster..." -#: app/menus.c:490 +#: app/menus.c:477 msgid "/Dialogs/Gradients..." msgstr "/FЖnster/FДrgskalor..." -#: app/menus.c:492 +#: app/menus.c:479 msgid "/Dialogs/Palette..." msgstr "/FЖnster/Palett..." -#: app/menus.c:494 +#: app/menus.c:481 msgid "/Dialogs/Indexed Palette..." msgstr "/FЖnster/Indexerad palett..." -#: app/menus.c:499 +#: app/menus.c:486 msgid "/Dialogs/Input Devices..." msgstr "/FЖnster/Inmatningsenheter..." -#: app/menus.c:501 +#: app/menus.c:488 msgid "/Dialogs/Device Status..." msgstr "/FЖnster/Enhetsstatus..." -#: app/menus.c:506 +#: app/menus.c:493 msgid "/Dialogs/Document Index..." msgstr "/FЖnster/Dokumentindex..." -#: app/menus.c:508 +#: app/menus.c:495 msgid "/Dialogs/Error Console..." msgstr "/FЖnster/Felmeddelanden..." -#: app/menus.c:510 +#: app/menus.c:497 msgid "/Dialogs/Display Filters..." msgstr "/FЖnster/Visa-filter..." -#: app/menus.c:512 +#: app/menus.c:499 msgid "/Dialogs/Undo History..." msgstr "/FЖnster/еngra-historia..." #. /Filters -#: app/menus.c:521 +#: app/menus.c:508 msgid "/Filters/Repeat Last" msgstr "/Filter/Upprepa senaste" -#: app/menus.c:523 +#: app/menus.c:510 msgid "/Filters/Re-Show Last" msgstr "/Filter/Visa senaste" -#: app/menus.c:528 +#: app/menus.c:515 msgid "/Filters/Blur" msgstr "/Filter/Suddigare" -#: app/menus.c:534 +#: app/menus.c:517 +#, fuzzy +msgid "/Filters/Colors" +msgstr "/Filter/Suddigare" + +#: app/menus.c:519 msgid "/Filters/Noise" msgstr "/Filter/Brus" -#: app/menus.c:536 +#: app/menus.c:521 msgid "/Filters/Edge-Detect" msgstr "/Filter/Leta kanter" -#: app/menus.c:538 +#: app/menus.c:523 msgid "/Filters/Enhance" msgstr "/Filter/FЖrbДttra" -#: app/menus.c:540 +#: app/menus.c:525 msgid "/Filters/Generic" msgstr "/Filter/AllmДnna" -#: app/menus.c:545 +#: app/menus.c:530 msgid "/Filters/Glass Effects" msgstr "/Filter/Glaseffekter" -#: app/menus.c:547 +#: app/menus.c:532 msgid "/Filters/Light Effects" msgstr "/Filter/Ljuseffekter" -#: app/menus.c:549 +#: app/menus.c:534 msgid "/Filters/Distorts" msgstr "/Filter/StЖrningar" -#: app/menus.c:551 +#: app/menus.c:536 msgid "/Filters/Artistic" msgstr "/Filter/Artistiskt" -#: app/menus.c:553 +#: app/menus.c:538 msgid "/Filters/Map" msgstr "/Filter/Mappa" -#: app/menus.c:555 +#: app/menus.c:540 msgid "/Filters/Render" msgstr "/Filter/Rendrera" -#: app/menus.c:557 +#: app/menus.c:542 msgid "/Filters/Web" msgstr "/Filter/Web" -#: app/menus.c:562 +#: app/menus.c:547 msgid "/Filters/Animation" msgstr "/Filter/Animation" -#: app/menus.c:564 +#: app/menus.c:549 msgid "/Filters/Combine" msgstr "/Filter/Kombinera" -#: app/menus.c:569 +#: app/menus.c:554 msgid "/Filters/Toys" msgstr "/Filter/Leksaker" -#: app/menus.c:582 +#: app/menus.c:567 msgid "/Automatic" msgstr "/Automatiskt" -#: app/menus.c:596 +#: app/menus.c:581 msgid "/By Extension" msgstr "/Av Дndelse" -#: app/menus.c:610 +#: app/menus.c:595 msgid "/New Layer..." msgstr "/Nytt lager..." #. /Stack -#: app/menus.c:615 +#: app/menus.c:600 msgid "/Stack/Raise Layer" msgstr "/Stack/HЖj lager" -#: app/menus.c:617 +#: app/menus.c:602 msgid "/Stack/Lower Layer" msgstr "/Stack/SДnk lager" -#: app/menus.c:619 +#: app/menus.c:604 msgid "/Stack/Layer to Top" msgstr "/Stack/Lager till toppen" -#: app/menus.c:621 +#: app/menus.c:606 msgid "/Stack/Layer to Bottom" msgstr "/Stack/Lager till botten" -#: app/menus.c:624 +#: app/menus.c:609 msgid "/Duplicate Layer" msgstr "/Duplicera lager" -#: app/menus.c:626 +#: app/menus.c:611 msgid "/Anchor Layer" msgstr "/Ankra lager" -#: app/menus.c:628 +#: app/menus.c:613 msgid "/Delete Layer" msgstr "/Ta bort lager" -#: app/menus.c:633 +#: app/menus.c:618 msgid "/Layer Boundary Size..." msgstr "/Storlek pЕ lager..." -#: app/menus.c:635 +#: app/menus.c:620 msgid "/Layer to Imagesize" msgstr "/Lagerstorlek som bilden" -#: app/menus.c:637 +#: app/menus.c:622 msgid "/Scale Layer..." msgstr "/Skala om lager..." -#: app/menus.c:642 +#: app/menus.c:627 msgid "/Merge Visible Layers..." msgstr "/Sammanfoga synliga lager..." -#: app/menus.c:644 +#: app/menus.c:629 msgid "/Merge Down" msgstr "/Sammanfoga nedЕt" -#: app/menus.c:646 +#: app/menus.c:631 msgid "/Flatten Image" msgstr "/Platta till bilden" -#: app/menus.c:651 +#: app/menus.c:636 msgid "/Add Layer Mask..." msgstr "/LДgg till lagermask..." -#: app/menus.c:653 +#: app/menus.c:638 msgid "/Apply Layer Mask" msgstr "/Applicera lagermask" -#: app/menus.c:655 +#: app/menus.c:640 msgid "/Delete Layer Mask" msgstr "/Ta bort lagermask" -#: app/menus.c:657 +#: app/menus.c:642 msgid "/Mask to Selection" msgstr "/Mask till markering" -#: app/menus.c:662 +#: app/menus.c:647 msgid "/Add Alpha Channel" msgstr "/LДgg till alfa-kanal" -#: app/menus.c:664 +#: app/menus.c:649 msgid "/Alpha to Selection" msgstr "/Alfa-kanal till markering" -#: app/menus.c:669 +#: app/menus.c:654 msgid "/Edit Layer Attributes..." msgstr "/Redigera lagerattribut..." -#: app/menus.c:680 +#: app/menus.c:665 msgid "/New Channel..." msgstr "/Ny kanal..." -#: app/menus.c:682 +#: app/menus.c:667 msgid "/Raise Channel" msgstr "/HЖj kanal" -#: app/menus.c:684 +#: app/menus.c:669 msgid "/Lower Channel" msgstr "/SДnk kanal" -#: app/menus.c:686 +#: app/menus.c:671 msgid "/Duplicate Channel" msgstr "/Duplicera kanal" -#: app/menus.c:691 +#: app/menus.c:676 msgid "/Channel to Selection" msgstr "/Kanal till markering" -#: app/menus.c:693 +#: app/menus.c:678 msgid "/Add to Selection" msgstr "/LДgg till markering" -#: app/menus.c:695 +#: app/menus.c:680 msgid "/Subtract from Selection" msgstr "/Ta bort frЕn markering" -#: app/menus.c:697 +#: app/menus.c:682 msgid "/Intersect with Selection" msgstr "/Snitt med markering" -#: app/menus.c:702 +#: app/menus.c:687 msgid "/Delete Channel" msgstr "/Ta bort kanal" -#: app/menus.c:707 +#: app/menus.c:692 msgid "/Edit Channel Attributes..." msgstr "/Redigera kanalattribut..." -#: app/menus.c:718 +#: app/menus.c:703 msgid "/New Path" msgstr "/Ny slinga" -#: app/menus.c:720 +#: app/menus.c:705 msgid "/Duplicate Path" msgstr "/Duplicera slinga" -#: app/menus.c:722 +#: app/menus.c:707 msgid "/Path to Selection" msgstr "/Slinga till markering" -#: app/menus.c:724 +#: app/menus.c:709 msgid "/Selection to Path" msgstr "/Markering till slinga" -#: app/menus.c:726 +#: app/menus.c:711 msgid "/Stroke Path" msgstr "/Stryk slinga" -#: app/menus.c:728 +#: app/menus.c:713 msgid "/Delete Path" msgstr "/Ta bort slinga" -#: app/menus.c:733 +#: app/menus.c:718 msgid "/Copy Path" msgstr "/Kopiera slinga" -#: app/menus.c:735 +#: app/menus.c:720 msgid "/Paste Path" msgstr "/Klistra in slinga" -#: app/menus.c:737 +#: app/menus.c:722 msgid "/Import Path..." msgstr "/Importera slinga..." -#: app/menus.c:739 +#: app/menus.c:724 msgid "/Export Path..." msgstr "/Exportera slinga..." -#: app/menus.c:744 +#: app/menus.c:729 msgid "/Edit Path Attributes..." msgstr "/Redigera sЖkvДgsattribut" -#: app/menus.c:1272 +#: app/menus.c:1260 #, c-format msgid "Error opening file: %s\n" msgstr "Kunde inte Жppna fil: %s\n" @@ -4585,477 +4701,471 @@ msgstr "" msgid "You will need to restart GIMP for these changes to take effect." msgstr "Du mЕste starta om GIMP fЖr att fЖrДndringarna ska ta effekt." -#: app/preferences_dialog.c:1459 +#: app/preferences_dialog.c:1002 +#, c-format +msgid "The default comments is limited to %d characters." +msgstr "" + +#: app/preferences_dialog.c:1424 msgid "Preferences" msgstr "InstДllningar" #. The categories tree -#: app/preferences_dialog.c:1481 +#: app/preferences_dialog.c:1446 msgid "Categories" msgstr "Kategorier" -#: app/preferences_dialog.c:1509 app/preferences_dialog.c:1511 +#: app/preferences_dialog.c:1474 app/preferences_dialog.c:1476 msgid "New File" msgstr "Ny fil" -#: app/preferences_dialog.c:1522 +#: app/preferences_dialog.c:1487 msgid "Default Image Size and Unit" msgstr "Standard bildstorlek och mЕtt" -#: app/preferences_dialog.c:1536 +#: app/preferences_dialog.c:1501 msgid "Width" msgstr "Bredd" -#: app/preferences_dialog.c:1538 +#: app/preferences_dialog.c:1503 msgid "Height" msgstr "HЖjd" -#: app/preferences_dialog.c:1568 +#: app/preferences_dialog.c:1533 msgid "Default Image Resolution and Resolution Unit" msgstr "Standard bildstorlek och mЕttenhet" -#: app/preferences_dialog.c:1595 app/preferences_dialog.c:2359 +#: app/preferences_dialog.c:1560 app/preferences_dialog.c:2288 msgid "dpi" msgstr "dpi" -#: app/preferences_dialog.c:1642 +#: app/preferences_dialog.c:1607 msgid "Default Image Type:" msgstr "Standard bildtyp:" -#: app/preferences_dialog.c:1678 app/preferences_dialog.c:2166 -msgid "Bytes" -msgstr "Bytes" - -#: app/preferences_dialog.c:1679 app/preferences_dialog.c:2167 -msgid "KiloBytes" -msgstr "Kilobytes" - -#: app/preferences_dialog.c:1680 app/preferences_dialog.c:2168 -msgid "MegaBytes" -msgstr "MegaBytes" - -#: app/preferences_dialog.c:1686 +#: app/preferences_dialog.c:1618 msgid "Maximum Image Size:" msgstr "Max bildstorlek:" -#: app/preferences_dialog.c:1692 app/preferences_dialog.c:1694 +#: app/preferences_dialog.c:1623 app/preferences_dialog.c:1625 +#, fuzzy +msgid "Default Comment" +msgstr "Standard" + +#: app/preferences_dialog.c:1633 +msgid "Comment Used for New Images" +msgstr "" + +#: app/preferences_dialog.c:1653 app/preferences_dialog.c:1655 msgid "Display" msgstr "Visuellt" -#: app/preferences_dialog.c:1702 +#: app/preferences_dialog.c:1663 msgid "Transparency" msgstr "Transparent" -#: app/preferences_dialog.c:1721 +#: app/preferences_dialog.c:1682 msgid "Light Checks" msgstr "Ljusa kontroller" -#: app/preferences_dialog.c:1722 +#: app/preferences_dialog.c:1683 msgid "Mid-Tone Checks" msgstr "Mid-ton kontroller" -#: app/preferences_dialog.c:1723 +#: app/preferences_dialog.c:1684 msgid "Dark Checks" msgstr "MЖrka kontroller" -#: app/preferences_dialog.c:1724 +#: app/preferences_dialog.c:1685 msgid "White Only" msgstr "Endast vit" -#: app/preferences_dialog.c:1725 +#: app/preferences_dialog.c:1686 msgid "Gray Only" msgstr "Endast grЕ" -#: app/preferences_dialog.c:1726 +#: app/preferences_dialog.c:1687 msgid "Black Only" msgstr "Endast svart" -#: app/preferences_dialog.c:1730 +#: app/preferences_dialog.c:1691 msgid "Transparency Type:" msgstr "Transparenthets-typ:" -#: app/preferences_dialog.c:1737 app/preferences_dialog.c:1810 -#: app/preferences_dialog.c:1824 +#: app/preferences_dialog.c:1698 app/preferences_dialog.c:1771 +#: app/preferences_dialog.c:1785 msgid "Small" msgstr "Liten" -#: app/preferences_dialog.c:1738 app/preferences_dialog.c:1811 -#: app/preferences_dialog.c:1825 +#: app/preferences_dialog.c:1699 app/preferences_dialog.c:1772 +#: app/preferences_dialog.c:1786 msgid "Medium" msgstr "Medium" -#: app/preferences_dialog.c:1739 app/preferences_dialog.c:1812 -#: app/preferences_dialog.c:1826 +#: app/preferences_dialog.c:1700 app/preferences_dialog.c:1773 +#: app/preferences_dialog.c:1787 msgid "Large" msgstr "Stor" -#: app/preferences_dialog.c:1743 +#: app/preferences_dialog.c:1704 msgid "Check Size:" msgstr "Kontrollstorlek:" -#: app/preferences_dialog.c:1746 +#: app/preferences_dialog.c:1707 msgid "8-Bit Displays" msgstr "8-bitars skДrmar" -#: app/preferences_dialog.c:1751 +#: app/preferences_dialog.c:1712 msgid "Install Colormap" msgstr "AnvДnd egen fДrgkarta" -#: app/preferences_dialog.c:1760 +#: app/preferences_dialog.c:1721 msgid "Colormap Cycling" msgstr "Rotera fДrgkarta" -#: app/preferences_dialog.c:1809 +#: app/preferences_dialog.c:1770 msgid "Tiny" msgstr "Mini" -#: app/preferences_dialog.c:1813 +#: app/preferences_dialog.c:1774 msgid "Huge" msgstr "JДttestor" -#: app/preferences_dialog.c:1817 +#: app/preferences_dialog.c:1778 msgid "Preview Size:" msgstr "FЖrvisningsstorlek:" -#: app/preferences_dialog.c:1830 +#: app/preferences_dialog.c:1791 msgid "Nav Preview Size:" msgstr "FЖrvisningsstorlek navigering:" -#: app/preferences_dialog.c:1840 +#: app/preferences_dialog.c:1801 msgid "Recent Documents List Size:" msgstr "Antal senast-anvДnda dokument:" #. Indicators -#: app/preferences_dialog.c:1844 +#: app/preferences_dialog.c:1805 msgid "Toolbox" msgstr "VerktygslЕda" -#: app/preferences_dialog.c:1847 +#: app/preferences_dialog.c:1808 msgid "Display Brush, Pattern and Gradient Indicators" msgstr "Visa pensel-, mЖnster- och fДrgskaleindikatorer" -#: app/preferences_dialog.c:1856 +#: app/preferences_dialog.c:1817 msgid "Dialog Behaviour" msgstr "FЖnsteruppfЖrande" -#: app/preferences_dialog.c:1858 +#: app/preferences_dialog.c:1819 msgid "Navigation Window per Display" msgstr "NavigationsfЖnster per display" -#: app/preferences_dialog.c:1867 +#: app/preferences_dialog.c:1828 msgid "Info Window Follows Mouse" msgstr "Info-fЖnster fЖljer musen" -#: app/preferences_dialog.c:1878 app/preferences_dialog.c:1880 +#: app/preferences_dialog.c:1839 app/preferences_dialog.c:1841 msgid "Help System" msgstr "HjДlpsystem" -#: app/preferences_dialog.c:1890 +#: app/preferences_dialog.c:1851 msgid "Show Tool Tips" msgstr "Visa hjДlpbubblor" -#: app/preferences_dialog.c:1900 +#: app/preferences_dialog.c:1861 msgid "Context Sensitive Help with \"F1\"" msgstr "KontextkДnslig hjДlp med \"F1\"" -#: app/preferences_dialog.c:1909 +#: app/preferences_dialog.c:1870 msgid "Help Browser" msgstr "HjДlplДsare" -#: app/preferences_dialog.c:1921 +#: app/preferences_dialog.c:1882 msgid "Internal" msgstr "Intervall" -#: app/preferences_dialog.c:1922 +#: app/preferences_dialog.c:1883 msgid "Netscape" msgstr "Netscape" -#: app/preferences_dialog.c:1926 +#: app/preferences_dialog.c:1887 msgid "Help Browser to Use:" msgstr "HjДlplДsare att anvДnda:" -#: app/preferences_dialog.c:1931 app/preferences_dialog.c:1933 +#: app/preferences_dialog.c:1892 app/preferences_dialog.c:1894 msgid "Image Windows" msgstr "BildfЖnster" -#: app/preferences_dialog.c:1941 +#: app/preferences_dialog.c:1902 msgid "Appearance" msgstr "Utseende" -#: app/preferences_dialog.c:1943 +#: app/preferences_dialog.c:1904 msgid "Use \"Dot for Dot\" by default" msgstr "AnvДnd \"punkt till punkt\" som standard" -#: app/preferences_dialog.c:1952 +#: app/preferences_dialog.c:1913 msgid "Resize Window on Zoom" msgstr "дndra storlek pЕ fЖnstret vid zoom" -#: app/preferences_dialog.c:1961 +#: app/preferences_dialog.c:1922 msgid "Show Rulers" msgstr "Visa linjaler" -#: app/preferences_dialog.c:1970 +#: app/preferences_dialog.c:1931 msgid "Show Statusbar" msgstr "Visa statusrad" -#: app/preferences_dialog.c:1994 +#: app/preferences_dialog.c:1955 msgid "Marching Ants Speed:" msgstr "Vandrande myrors hastighet:" #. Set the currently used string as "Custom" -#: app/preferences_dialog.c:2002 +#: app/preferences_dialog.c:1963 msgid "Custom" msgstr "Egen" #. set some commonly used format strings -#: app/preferences_dialog.c:2008 +#: app/preferences_dialog.c:1969 msgid "Standard" msgstr "Standard" -#: app/preferences_dialog.c:2013 +#: app/preferences_dialog.c:1974 msgid "Show zoom percentage" msgstr "Visa zoom-procent" -#: app/preferences_dialog.c:2018 +#: app/preferences_dialog.c:1979 msgid "Show zoom ratio" msgstr "Visa zoom-ratio" -#: app/preferences_dialog.c:2023 +#: app/preferences_dialog.c:1984 msgid "Show reversed zoom ratio" msgstr "Visa omvДnd zoom-ratio" -#: app/preferences_dialog.c:2034 +#: app/preferences_dialog.c:1995 msgid "Image Title Format:" msgstr "Bildtitelformat:" #. End of the title format string -#: app/preferences_dialog.c:2038 +#: app/preferences_dialog.c:1999 msgid "Pointer Movement Feedback" msgstr "MarkЖrfЖrflyttning" -#: app/preferences_dialog.c:2041 +#: app/preferences_dialog.c:2002 msgid "Perfect-but-Slow Pointer Tracking" msgstr "FЖlj pekaren perfekt men lЕngsammare" -#: app/preferences_dialog.c:2050 +#: app/preferences_dialog.c:2011 msgid "Disable Cursor Updating" msgstr "SlЕ av markЖruppdatering" -#: app/preferences_dialog.c:2062 app/preferences_dialog.c:2064 +#: app/preferences_dialog.c:2023 app/preferences_dialog.c:2025 #: app/tools.c:1080 msgid "Tool Options" msgstr "VerktygsinstДllningar" -#: app/preferences_dialog.c:2072 +#: app/preferences_dialog.c:2033 msgid "Paint Options" msgstr "Pensel - instДllningar" -#: app/preferences_dialog.c:2075 +#: app/preferences_dialog.c:2036 msgid "Use Global Paint Options" msgstr "AnvДnd globala mЕlarinstДllningar" -#: app/preferences_dialog.c:2090 app/preferences_dialog.c:2092 +#: app/preferences_dialog.c:2051 app/preferences_dialog.c:2053 msgid "Environment" msgstr "MiljЖ" -#: app/preferences_dialog.c:2100 +#: app/preferences_dialog.c:2061 msgid "Resource Consumption" msgstr "ResursanvДndning" -#: app/preferences_dialog.c:2102 +#: app/preferences_dialog.c:2063 msgid "Conservative Memory Usage" msgstr "Konservativ minnesanvДndning" -#: app/preferences_dialog.c:2130 +#: app/preferences_dialog.c:2091 msgid "Levels of Undo:" msgstr "еngrasteg:" -#: app/preferences_dialog.c:2174 -msgid "Tile Cache Size:" -msgstr "Bildblock-cachestorlek:" - -#: app/preferences_dialog.c:2185 +#: app/preferences_dialog.c:2113 msgid "Number of Processors to Use:" msgstr "Antalet processorer att anvДnda:" -#: app/preferences_dialog.c:2189 app/transform_tool.c:215 +#: app/preferences_dialog.c:2117 app/transform_tool.c:215 msgid "Scaling" msgstr "Skalning" -#: app/preferences_dialog.c:2207 +#: app/preferences_dialog.c:2135 msgid "Nearest Neighbor (Fast)" msgstr "NДrmaste granne (snabb)" -#: app/preferences_dialog.c:2211 +#: app/preferences_dialog.c:2139 msgid "Cubic (Slow)" msgstr "Kubisk (lЕngsam)" -#: app/preferences_dialog.c:2216 +#: app/preferences_dialog.c:2144 msgid "Interpolation Type:" msgstr "Interpolationstyp:" -#: app/preferences_dialog.c:2219 +#: app/preferences_dialog.c:2147 msgid "File Saving" msgstr "Filsparning" -#: app/preferences_dialog.c:2236 app/preferences_dialog.c:2249 +#: app/preferences_dialog.c:2164 app/preferences_dialog.c:2177 msgid "Always" msgstr "Alltid" -#: app/preferences_dialog.c:2237 +#: app/preferences_dialog.c:2165 msgid "Never" msgstr "Aldrig" -#: app/preferences_dialog.c:2241 +#: app/preferences_dialog.c:2169 msgid "Try to Write a Thumbnail File:" msgstr "FЖrsЖk skriva tumnagelsfil:" -#: app/preferences_dialog.c:2248 +#: app/preferences_dialog.c:2176 msgid "Only when Modified" msgstr "Endast om Дndrad" -#: app/preferences_dialog.c:2253 +#: app/preferences_dialog.c:2181 msgid "\"File > Save\" Saves the Image:" msgstr "\"Arkiv > Spara\" sparar bilden:" -#: app/preferences_dialog.c:2259 +#: app/preferences_dialog.c:2187 msgid "Session Management" msgstr "Sessionshantering" -#: app/preferences_dialog.c:2261 +#: app/preferences_dialog.c:2189 msgid "Session" msgstr "Session" -#: app/preferences_dialog.c:2269 +#: app/preferences_dialog.c:2197 msgid "Window Positions" msgstr "FЖnsterpositioner" -#: app/preferences_dialog.c:2271 +#: app/preferences_dialog.c:2199 msgid "Save Window Positions on Exit" msgstr "Spara fЖnsterpositioner vid avslutning" -#: app/preferences_dialog.c:2285 +#: app/preferences_dialog.c:2213 msgid "Clear Saved Window Positions Now" msgstr "Rensa sparade fЖnsterpositioner nu" -#: app/preferences_dialog.c:2293 +#: app/preferences_dialog.c:2221 msgid "Always Try to Restore Session" msgstr "FЖrsЖk alltid ЕterstДlla sessionen" -#: app/preferences_dialog.c:2302 +#: app/preferences_dialog.c:2230 msgid "Devices" msgstr "Enheter" -#: app/preferences_dialog.c:2304 +#: app/preferences_dialog.c:2232 msgid "Save Device Status on Exit" msgstr "Spara enhets-status vid avslutning" -#: app/preferences_dialog.c:2315 app/preferences_dialog.c:2317 +#: app/preferences_dialog.c:2243 app/preferences_dialog.c:2245 msgid "Monitor" msgstr "BildskДrm" -#: app/preferences_dialog.c:2325 +#: app/preferences_dialog.c:2253 msgid "Get Monitor Resolution" msgstr "HДmta bildskДrmsupplЖsning" -#: app/preferences_dialog.c:2333 +#: app/preferences_dialog.c:2261 #, c-format msgid "(Currently %d x %d dpi)" msgstr "(Nuvarande %d x %d dpi)" -#: app/preferences_dialog.c:2384 +#: app/preferences_dialog.c:2313 msgid "From X Server" msgstr "frЕn X-servern" -#: app/preferences_dialog.c:2399 +#: app/preferences_dialog.c:2328 msgid "Manually:" msgstr "Manuellt:" -#: app/preferences_dialog.c:2412 app/preferences_dialog.c:2414 +#: app/preferences_dialog.c:2341 app/preferences_dialog.c:2343 msgid "Directories" msgstr "Bibliotek" -#: app/preferences_dialog.c:2431 +#: app/preferences_dialog.c:2360 msgid "Temp Dir:" msgstr "TemporДrt:" -#: app/preferences_dialog.c:2431 +#: app/preferences_dialog.c:2360 msgid "Select Temp Dir" msgstr "VДlj temp-bibliotek" -#: app/preferences_dialog.c:2432 +#: app/preferences_dialog.c:2361 msgid "Swap Dir:" msgstr "Swap:" -#: app/preferences_dialog.c:2432 -msgid "Select Swap Dir" -msgstr "VДlj swap-bibliotek" - -#: app/preferences_dialog.c:2468 +#: app/preferences_dialog.c:2397 msgid "Brushes Directories" msgstr "Penselbibliotek" -#: app/preferences_dialog.c:2470 +#: app/preferences_dialog.c:2399 msgid "Select Brushes Dir" msgstr "VДlj pensel-bibliotek" -#: app/preferences_dialog.c:2472 +#: app/preferences_dialog.c:2401 msgid "Generated Brushes" msgstr "Genererade penslar" -#: app/preferences_dialog.c:2472 +#: app/preferences_dialog.c:2401 msgid "Generated Brushes Directories" msgstr "Genererade penslar - bibliotek" -#: app/preferences_dialog.c:2474 +#: app/preferences_dialog.c:2403 msgid "Select Generated Brushes Dir" msgstr "VДlj bibliotek fЖr genererade penslar" -#: app/preferences_dialog.c:2476 +#: app/preferences_dialog.c:2405 msgid "Patterns Directories" msgstr "MЖnsterbibliotek" -#: app/preferences_dialog.c:2478 +#: app/preferences_dialog.c:2407 msgid "Select Patterns Dir" msgstr "VДlj mЖnster-bibliotek" -#: app/preferences_dialog.c:2480 +#: app/preferences_dialog.c:2409 msgid "Palettes Directories" msgstr "Palettbibliotek" -#: app/preferences_dialog.c:2482 +#: app/preferences_dialog.c:2411 msgid "Select Palettes Dir" msgstr "VДlj palett-bibliotek" -#: app/preferences_dialog.c:2484 +#: app/preferences_dialog.c:2413 msgid "Gradients Directories" msgstr "FДrgskalebibliotek" -#: app/preferences_dialog.c:2486 +#: app/preferences_dialog.c:2415 msgid "Select Gradients Dir" msgstr "VДlj fДrgskale-bibliotek" -#: app/preferences_dialog.c:2488 +#: app/preferences_dialog.c:2417 msgid "Plug-Ins" msgstr "Insticksprogram" -#: app/preferences_dialog.c:2488 +#: app/preferences_dialog.c:2417 msgid "Plug-Ins Directories" msgstr "Insticksprogram-bibliotek" -#: app/preferences_dialog.c:2490 +#: app/preferences_dialog.c:2419 msgid "Select Plug-Ins Dir" msgstr "VДlj insticksprograms-bibliotek" -#: app/preferences_dialog.c:2492 +#: app/preferences_dialog.c:2421 msgid "Modules" msgstr "Moduler" -#: app/preferences_dialog.c:2492 +#: app/preferences_dialog.c:2421 msgid "Modules Directories" msgstr "Modulbibliotek" -#: app/preferences_dialog.c:2494 +#: app/preferences_dialog.c:2423 msgid "Select Modules Dir" msgstr "VДlj modul-bibliotek" @@ -6087,3 +6197,56 @@ msgstr "Vattenf #: modules/colorsel_water.c:640 msgid "Color History" msgstr "FДrghistoria" + +#~ msgid "" +#~ "The GIMP - GNU Image Manipulation Program\n" +#~ "\n" +#~ msgstr "" +#~ "GIMP - GNU Image Manipulation Program\n" +#~ "\n" + +#~ msgid "For a proper GIMP installation, a subdirectory called\n" +#~ msgstr "FЖr att korrekt installera GIMP, mЕste ett underbibliotek kallat\n" + +#~ msgid "Install" +#~ msgstr "Installera" + +#~ msgid "Ignore" +#~ msgstr "Ignorera" + +#~ msgid "-*-helvetica-medium-o-normal-*-*-100-*-*-*-*-*-*" +#~ msgstr "-*-helvetica-medium-o-normal-*-*-100-*-*-*-*-*-*" + +#~ msgid "-*-helvetica-medium-r-normal-*-*-100-*-*-*-*-*-*,*" +#~ msgstr "-*-helvetica-medium-r-normal-*-*-100-*-*-*-*-*-*,*" + +#~ msgid "Installation Log" +#~ msgstr "Installationslogg" + +#~ msgid "-*-helvetica-medium-r-normal-*-*-120-*-*-*-*-*-*,*" +#~ msgstr "-*-helvetica-medium-r-normal-*-*-120-*-*-*-*-*-*,*" + +#~ msgid "" +#~ "\n" +#~ "Installation successful!\n" +#~ msgstr "" +#~ "\n" +#~ "Installationen lyckades!\n" + +#~ msgid "/Tools/Select Tools" +#~ msgstr "/Verktyg/Markeraverktyg" + +#~ msgid "/Tools/Transform Tools" +#~ msgstr "/Verktyg/Transformeringsverktyg" + +#~ msgid "/Tools/Paint Tools" +#~ msgstr "/Verktyg/Penselverktyg" + +#~ msgid "Bytes" +#~ msgstr "Bytes" + +#~ msgid "KiloBytes" +#~ msgstr "Kilobytes" + +#~ msgid "MegaBytes" +#~ msgstr "MegaBytes" diff --git a/po/uk.po b/po/uk.po index 1ed91f1a4b..a4a42e7de5 100644 --- a/po/uk.po +++ b/po/uk.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: gimp 1.1.13\n" -"POT-Creation-Date: 2000-03-03 17:47-0800\n" +"POT-Creation-Date: 2000-03-14 23:09+0100\n" "PO-Revision-Date: 2000-01-11 12:44+0200\n" "Last-Translator: Yuri Syrota \n" "Language-Team: Ukrainian \n" @@ -61,45 +61,45 @@ msgstr "" msgid "GIMP Startup" msgstr "Запуск GIMP" -#: app/app_procs.c:479 app/gimprc.c:432 +#: app/app_procs.c:479 app/gimprc.c:448 #, c-format msgid "parsing \"%s\"\n" msgstr "анал╕з \"%s\"\n" #. initialize the xcf file format routines -#: app/app_procs.c:539 +#: app/app_procs.c:541 msgid "Looking for data files" msgstr "Пошук файл╕в даних" -#: app/app_procs.c:539 +#: app/app_procs.c:541 msgid "Parasites" msgstr "Паразити" #. initialize the global parasite table -#: app/app_procs.c:541 app/internal_procs.c:71 app/preferences_dialog.c:2468 +#: app/app_procs.c:543 app/internal_procs.c:71 app/preferences_dialog.c:2397 msgid "Brushes" msgstr "Пензл╕" #. initialize the list of gimp brushes -#: app/app_procs.c:543 app/internal_procs.c:143 app/preferences_dialog.c:2476 +#: app/app_procs.c:545 app/internal_procs.c:143 app/preferences_dialog.c:2405 msgid "Patterns" msgstr "Шаблони" #. initialize the list of gimp patterns -#: app/app_procs.c:545 app/preferences_dialog.c:2480 +#: app/app_procs.c:547 app/preferences_dialog.c:2409 msgid "Palettes" msgstr "Пал╕три" #. initialize the list of gimp palettes -#: app/app_procs.c:547 app/internal_procs.c:113 app/preferences_dialog.c:2484 +#: app/app_procs.c:549 app/internal_procs.c:113 app/preferences_dialog.c:2413 msgid "Gradients" msgstr "Град╕╓нти" -#: app/app_procs.c:735 +#: app/app_procs.c:737 msgid "Really Quit?" msgstr "Справд╕ вийти?" -#: app/app_procs.c:739 +#: app/app_procs.c:741 msgid "" "Some files unsaved.\n" "\n" @@ -109,21 +109,21 @@ msgstr "" "\n" "Вийти з GIMP?" -#: app/app_procs.c:740 app/install.c:272 app/install.c:430 +#: app/app_procs.c:742 msgid "Quit" msgstr "Вих╕д" -#: app/app_procs.c:740 app/brightness_contrast.c:218 app/channel_ops.c:93 +#: app/app_procs.c:742 app/brightness_contrast.c:218 app/channel_ops.c:93 #: app/channels_dialog.c:2463 app/channels_dialog.c:2637 #: app/color_balance.c:275 app/color_notebook.c:125 app/convert.c:506 #: app/curves.c:559 app/file_new_dialog.c:207 app/file_new_dialog.c:357 #: app/gdisplay_color_ui.c:129 app/gdisplay_ops.c:346 app/gimpprogress.c:112 -#: app/global_edit.c:739 app/gradient.c:1769 app/gradient.c:4839 -#: app/gradient.c:5400 app/hue_saturation.c:377 app/interface.c:984 -#: app/layers_dialog.c:3326 app/layers_dialog.c:3517 app/layers_dialog.c:3617 -#: app/layers_dialog.c:3889 app/levels.c:341 app/palette.c:1826 -#: app/posterize.c:201 app/preferences_dialog.c:1469 app/qmask.c:281 -#: app/resize.c:193 app/resize.c:1343 app/threshold.c:275 +#: app/global_edit.c:739 app/gradient.c:1769 app/gradient.c:4841 +#: app/gradient.c:5402 app/hue_saturation.c:377 app/install.c:532 +#: app/interface.c:984 app/layers_dialog.c:3326 app/layers_dialog.c:3517 +#: app/layers_dialog.c:3617 app/layers_dialog.c:3889 app/levels.c:341 +#: app/palette.c:1826 app/posterize.c:201 app/preferences_dialog.c:1434 +#: app/qmask.c:281 app/resize.c:195 app/resize.c:1345 app/threshold.c:275 #: modules/cdisplay_gamma.c:358 msgid "Cancel" msgstr "В╕дмова" @@ -144,123 +144,124 @@ msgstr " msgid "Paintbrush operation failed." msgstr "Операц╕я пензлем не вдалась." -#: app/blend.c:272 +#: app/blend.c:294 msgid "Offset:" msgstr "Зм╕щення:" -#: app/blend.c:283 +#: app/blend.c:305 msgid "FG to BG (RGB)" msgstr "Передн╕й план до тла (RGB)" -#: app/blend.c:284 +#: app/blend.c:306 msgid "FG to BG (HSV)" msgstr "Передн╕й план до тла (HSV)" -#: app/blend.c:285 +#: app/blend.c:307 msgid "FG to Transparent" msgstr "Передн╕й план до прозорого" -#: app/blend.c:286 -msgid "Custom from Editor" -msgstr "Власний з редактора" +#: app/blend.c:308 +#, fuzzy +msgid "Custom Gradient" +msgstr "Скоп╕ювати град╕╓нт" -#: app/blend.c:290 +#: app/blend.c:312 msgid "Blend:" msgstr "Злиття:" -#: app/blend.c:298 app/gradient.c:533 app/preferences_dialog.c:2209 +#: app/blend.c:320 app/gradient.c:533 app/preferences_dialog.c:2137 msgid "Linear" msgstr "Л╕н╕йний" -#: app/blend.c:299 +#: app/blend.c:321 msgid "Bi-Linear" msgstr "Б╕л╕н╕йний" -#: app/blend.c:300 +#: app/blend.c:322 msgid "Radial" msgstr "Радиальний" -#: app/blend.c:301 +#: app/blend.c:323 msgid "Square" msgstr "Квадратний" -#: app/blend.c:302 +#: app/blend.c:324 msgid "Conical (symmetric)" msgstr "Кон╕чний (симетричний)" -#: app/blend.c:303 +#: app/blend.c:325 msgid "Conical (asymmetric)" msgstr "Кон╕чний (асиметричний)" -#: app/blend.c:304 +#: app/blend.c:326 msgid "Shapeburst (angular)" msgstr "По форм╕ (кутовий)" -#: app/blend.c:305 +#: app/blend.c:327 msgid "Shapeburst (spherical)" msgstr "По форм╕ (сферичний)" -#: app/blend.c:306 +#: app/blend.c:328 msgid "Shapeburst (dimpled)" msgstr "По форм╕ (з ямкою)" -#: app/blend.c:307 +#: app/blend.c:329 msgid "Spiral (clockwise)" msgstr "Сп╕ральний (за годинниковою)" -#: app/blend.c:308 +#: app/blend.c:330 msgid "Spiral (anticlockwise)" msgstr "Сп╕ральний (проти годинниково╖)" -#: app/blend.c:312 +#: app/blend.c:334 msgid "Gradient:" msgstr "Град╕╓нт:" -#: app/blend.c:320 app/preferences_dialog.c:1808 +#: app/blend.c:342 app/preferences_dialog.c:1769 msgid "None" msgstr "Нема╓" -#: app/blend.c:321 +#: app/blend.c:343 msgid "Sawtooth Wave" msgstr "Пилопод╕бна хвиля" -#: app/blend.c:322 +#: app/blend.c:344 msgid "Triangular Wave" msgstr "Трикутна хвиля" -#: app/blend.c:326 +#: app/blend.c:348 msgid "Repeat:" msgstr "Повтор:" -#: app/blend.c:345 +#: app/blend.c:367 msgid "Adaptive Supersampling" msgstr "" -#: app/blend.c:373 +#: app/blend.c:395 msgid "Max Depth:" msgstr "Максимальна глибина:" -#: app/blend.c:386 app/bucket_fill.c:127 app/fuzzy_select.c:657 +#: app/blend.c:408 app/bucket_fill.c:127 app/fuzzy_select.c:661 msgid "Threshold:" msgstr "Пор╕г:" -#: app/blend.c:413 +#: app/blend.c:435 msgid "Blend: Invalid for indexed images." msgstr "Злиття: не дозволено для ╕ндексованих зображень." -#: app/blend.c:438 +#: app/blend.c:460 msgid "Blend: 0, 0" msgstr "Злиття: 0, 0" -#: app/blend.c:501 +#: app/blend.c:523 msgid "Blend operation failed." msgstr "Операц╕я злиття не вдалась." -#: app/blend.c:507 +#: app/blend.c:529 msgid "Blending..." msgstr "Зливання..." -#: app/blend.c:585 app/blend.c:595 +#: app/blend.c:607 app/blend.c:617 msgid "Blend: " msgstr "Злиття: " @@ -279,13 +280,13 @@ msgstr " #: app/gdisplay_color_ui.c:127 app/gimpui.c:122 app/hue_saturation.c:373 #: app/layers_dialog.c:3324 app/layers_dialog.c:3515 app/layers_dialog.c:3615 #: app/layers_dialog.c:3887 app/levels.c:337 app/module_db.c:281 -#: app/posterize.c:197 app/preferences_dialog.c:1465 app/qmask.c:279 -#: app/resize.c:191 app/resize.c:1343 app/threshold.c:271 +#: app/posterize.c:197 app/preferences_dialog.c:1430 app/qmask.c:279 +#: app/resize.c:193 app/resize.c:1345 app/threshold.c:271 #: modules/cdisplay_gamma.c:351 msgid "OK" msgstr "Гаразд" -#: app/brightness_contrast.c:216 app/by_color_select.c:634 +#: app/brightness_contrast.c:216 app/by_color_select.c:687 #: app/color_balance.c:273 app/curves.c:557 app/file_new_dialog.c:355 #: app/hue_saturation.c:375 app/levels.c:339 app/posterize.c:199 #: app/threshold.c:273 app/tools.c:1086 app/transform_core.c:412 @@ -315,7 +316,7 @@ msgid "Brush Editor" msgstr "Редактор пензл╕в" #. The close button -#: app/brush_edit.c:216 app/brush_select.c:278 app/by_color_select.c:636 +#: app/brush_edit.c:216 app/brush_select.c:278 app/by_color_select.c:689 #: app/color_notebook.c:122 app/color_picker.c:297 app/colormap_dialog.i.c:170 #: app/crop.c:1054 app/devices.c:755 app/docindexif.c:105 #: app/errorconsole.c:281 app/gdisplay_ops.c:346 app/gradient.c:801 @@ -329,7 +330,7 @@ msgid "Close" msgstr "Закрити" #. the feather radius scale -#: app/brush_edit.c:276 app/color_picker.c:181 app/tool_options.c:200 +#: app/brush_edit.c:276 app/color_picker.c:181 app/tool_options.c:199 msgid "Radius:" msgstr "Рад╕ус:" @@ -359,11 +360,11 @@ msgstr " msgid "No Brushes available" msgstr "Нема╓ доступних пензл╕в" -#: app/brush_select.c:445 app/layers_dialog.c:372 app/tool_options.c:505 +#: app/brush_select.c:445 app/layers_dialog.c:372 app/tool_options.c:504 msgid "Opacity:" msgstr "Непрозор╕сть:" -#: app/brush_select.c:453 app/layers_dialog.c:324 app/tool_options.c:529 +#: app/brush_select.c:453 app/layers_dialog.c:324 app/tool_options.c:528 msgid "Mode:" msgstr "Режим:" @@ -397,7 +398,7 @@ msgstr " msgid "Sorry, this brush can't be deleted." msgstr "Нажаль цей пензель не можна видаляти." -#: app/bucket_fill.c:147 app/color_picker.c:156 app/tool_options.c:274 +#: app/bucket_fill.c:147 app/color_picker.c:156 app/tool_options.c:273 msgid "Sample Merged" msgstr "" @@ -427,36 +428,36 @@ msgid "No available patterns for this operation." msgstr "Нема╓ доступних шаблон╕в для ц╕╓╖ операц╕╖." #. The shell and main vbox -#: app/by_color_select.c:629 +#: app/by_color_select.c:682 msgid "By Color Selection" msgstr "Вид╕лення за кольором" -#: app/by_color_select.c:685 +#: app/by_color_select.c:738 msgid "Inactive" msgstr "Нед╕ючий" -#: app/by_color_select.c:693 +#: app/by_color_select.c:746 msgid "Selection Mode" msgstr "Режим вид╕лення" -#: app/by_color_select.c:695 app/paint_funcs.c:100 +#: app/by_color_select.c:748 app/paint_funcs.c:100 msgid "Replace" msgstr "Зам╕нити" -#: app/by_color_select.c:697 app/colormap_dialog.i.c:127 +#: app/by_color_select.c:750 app/colormap_dialog.i.c:127 #: app/gdisplay_color_ui.c:114 msgid "Add" msgstr "Додати" -#: app/by_color_select.c:699 app/layers_dialog.c:340 app/tool_options.c:904 +#: app/by_color_select.c:752 app/layers_dialog.c:340 app/tool_options.c:904 msgid "Subtract" msgstr "В╕дняти" -#: app/by_color_select.c:701 +#: app/by_color_select.c:754 msgid "Intersect" msgstr "Перетнути" -#: app/by_color_select.c:713 +#: app/by_color_select.c:766 msgid "Fuzziness Threshold" msgstr "" @@ -474,7 +475,7 @@ msgstr " msgid "Selection Mask" msgstr "Маска вид╕лення" -#: app/channel_ops.c:85 app/resize.c:392 +#: app/channel_ops.c:85 app/resize.c:394 msgid "Offset" msgstr "Зм╕шення" @@ -484,8 +485,8 @@ msgid "Offset X:" msgstr "Зм╕щення X:" #: app/channel_ops.c:115 app/crop.c:1063 app/file_new_dialog.c:530 -#: app/resize.c:330 app/resize.c:415 app/resize.c:573 app/rotate_tool.c:106 -#: app/scale_tool.c:100 app/shear_tool.c:82 +#: app/install.c:1108 app/resize.c:332 app/resize.c:417 app/resize.c:575 +#: app/rotate_tool.c:106 app/scale_tool.c:100 app/shear_tool.c:82 msgid "Y:" msgstr "Y:" @@ -494,12 +495,12 @@ msgstr "Y:" msgid "Wrap Around" msgstr "" -#: app/channel_ops.c:174 app/image_new.c:69 app/image_new.c:223 +#: app/channel_ops.c:174 app/image_new.c:70 app/image_new.c:234 #: app/layers_dialog.c:3422 msgid "Background" msgstr "Тло" -#: app/channel_ops.c:175 app/image_new.c:79 app/layers_dialog.c:3424 +#: app/channel_ops.c:175 app/image_new.c:80 app/layers_dialog.c:3424 msgid "Transparent" msgstr "Прозоре" @@ -678,19 +679,19 @@ msgstr " msgid "Update Active Color" msgstr "Поновити д╕ючий кол╕р" -#: app/color_picker.c:255 app/color_picker.c:265 +#: app/color_picker.c:255 app/color_picker.c:264 msgid "Red:" msgstr "Червоний:" -#: app/color_picker.c:256 app/color_picker.c:266 +#: app/color_picker.c:256 app/color_picker.c:265 msgid "Green:" msgstr "Зелений:" -#: app/color_picker.c:257 app/color_picker.c:267 +#: app/color_picker.c:257 app/color_picker.c:266 msgid "Blue:" msgstr "Син╕й:" -#: app/color_picker.c:258 app/color_picker.c:264 app/color_picker.c:273 +#: app/color_picker.c:258 app/color_picker.c:267 app/color_picker.c:273 msgid "Alpha:" msgstr "Альфа:" @@ -711,13 +712,13 @@ msgstr " msgid "Intensity:" msgstr "╤нтенсивн╕сть:" -#: app/color_picker.c:633 app/color_picker.c:634 app/color_picker.c:635 -#: app/color_picker.c:636 app/color_picker.c:637 app/color_picker.c:638 -#: app/color_picker.c:639 app/color_picker.c:657 app/color_picker.c:672 -#: app/color_picker.c:690 app/info_window.c:185 app/info_window.c:191 -#: app/info_window.c:197 app/info_window.c:203 app/info_window.c:422 -#: app/info_window.c:423 app/info_window.c:424 app/info_window.c:425 -#: app/info_window.c:447 +#: app/color_picker.c:626 app/color_picker.c:627 app/color_picker.c:628 +#: app/color_picker.c:629 app/color_picker.c:630 app/color_picker.c:631 +#: app/color_picker.c:632 app/color_picker.c:644 app/color_picker.c:651 +#: app/color_picker.c:669 app/color_picker.c:684 app/info_window.c:185 +#: app/info_window.c:191 app/info_window.c:197 app/info_window.c:203 +#: app/info_window.c:422 app/info_window.c:423 app/info_window.c:424 +#: app/info_window.c:425 app/info_window.c:447 msgid "N/A" msgstr "Н/Д" @@ -913,13 +914,13 @@ msgstr " #. the pixel size labels #: app/crop.c:1076 app/file_new_dialog.c:389 app/file_new_dialog.c:407 -#: app/tool_options.c:334 +#: app/tool_options.c:333 msgid "Width:" msgstr "Ширина:" #: app/crop.c:1079 app/file_new_dialog.c:395 app/file_new_dialog.c:413 -#: app/layers_dialog.c:3363 app/resize.c:240 app/resize.c:265 app/resize.c:510 -#: app/scale_tool.c:79 app/scale_tool.c:86 app/tool_options.c:350 +#: app/layers_dialog.c:3363 app/resize.c:242 app/resize.c:267 app/resize.c:512 +#: app/scale_tool.c:79 app/scale_tool.c:86 app/tool_options.c:349 msgid "Height:" msgstr "Висота:" @@ -971,7 +972,7 @@ msgid "Load" msgstr "Завантажити" #: app/curves.c:704 app/devices.c:753 app/levels.c:608 app/palette.c:2068 -#: app/preferences_dialog.c:357 app/preferences_dialog.c:1467 +#: app/preferences_dialog.c:357 app/preferences_dialog.c:1432 msgid "Save" msgstr "Зберегти" @@ -1001,7 +1002,7 @@ msgstr " msgid "Device Status" msgstr "Стан пристрою" -#: app/disp_callbacks.c:755 app/global_edit.c:297 app/global_edit.c:303 +#: app/disp_callbacks.c:760 app/global_edit.c:297 app/global_edit.c:303 #: app/global_edit.c:375 msgid "Pasted Layer" msgstr "Вставлений шар" @@ -1183,17 +1184,17 @@ msgstr " msgid "New Image" msgstr "Нове зображення" -#: app/file_new_dialog.c:453 app/preferences_dialog.c:1540 -#: app/preferences_dialog.c:1577 +#: app/file_new_dialog.c:453 app/install.c:1093 app/preferences_dialog.c:1505 +#: app/preferences_dialog.c:1542 msgid "Pixels" msgstr "П╕ксел╕в" #. the resolution labels -#: app/file_new_dialog.c:524 app/resize.c:567 +#: app/file_new_dialog.c:524 app/resize.c:569 msgid "Resolution X:" msgstr "Розд╕льн╕сть X:" -#: app/file_new_dialog.c:545 app/resize.c:588 +#: app/file_new_dialog.c:545 app/resize.c:590 msgid "pixels/%a" msgstr "точок/%a" @@ -1223,7 +1224,7 @@ msgstr "" msgid "No Selection." msgstr "Нема╓ вид╕лення." -#: app/fileops.c:418 app/fileops.c:1624 app/fileops.c:1731 +#: app/fileops.c:418 app/fileops.c:1629 app/fileops.c:1736 #, c-format msgid "Save failed: %s" msgstr "Збереження не вдалось: %s" @@ -1248,58 +1249,58 @@ msgstr " msgid "Revert failed." msgstr "В╕дновлення не вдалось." -#: app/fileops.c:1240 +#: app/fileops.c:1245 msgid "(This thumbnail may be out of date)" msgstr "" -#: app/fileops.c:1241 +#: app/fileops.c:1246 msgid "(No Information)" msgstr "(нема╓ ╕нформац╕╖)" -#: app/fileops.c:1251 +#: app/fileops.c:1256 msgid "(Thumbnail saving is disabled)" msgstr "" -#: app/fileops.c:1255 +#: app/fileops.c:1260 msgid "(Could not write thumbnail file)" msgstr "" -#: app/fileops.c:1259 +#: app/fileops.c:1264 msgid "(Thumbnail file not written)" msgstr "" -#: app/fileops.c:1276 +#: app/fileops.c:1281 msgid "No preview available" msgstr "Попередн╕й перегляд не доступний" -#: app/fileops.c:1394 +#: app/fileops.c:1399 msgid "(could not make preview)" msgstr "(не вдалось виконати перегляд)" -#: app/fileops.c:1467 app/fileops.c:1546 +#: app/fileops.c:1472 app/fileops.c:1551 #, c-format msgid "Open failed: %s" msgstr "В╕дкривання не вдалось: %s" -#: app/fileops.c:1602 +#: app/fileops.c:1607 #, c-format msgid "%s is an irregular file (%s)" msgstr "%s -- не п╕дходящий файл (%s)" -#: app/fileops.c:1670 +#: app/fileops.c:1675 #, c-format msgid "%s exists, overwrite?" msgstr "%s ╕сну╓, переписати?" -#: app/fileops.c:1674 +#: app/fileops.c:1679 msgid "File Exists!" msgstr "Файл ╕сну╓!" -#: app/fileops.c:1680 +#: app/fileops.c:1685 msgid "Yes" msgstr "Так" -#: app/fileops.c:1682 +#: app/fileops.c:1687 msgid "No" msgstr "Н╕" @@ -1307,13 +1308,13 @@ msgstr " msgid "Flip Tool" msgstr "В╕дзеркаленя" -#: app/flip_tool.c:95 app/preferences_dialog.c:1591 -#: app/preferences_dialog.c:2355 +#: app/flip_tool.c:95 app/preferences_dialog.c:1556 +#: app/preferences_dialog.c:2284 msgid "Horizontal" msgstr "Горизонтальне" -#: app/flip_tool.c:97 app/preferences_dialog.c:1593 -#: app/preferences_dialog.c:2357 +#: app/flip_tool.c:97 app/preferences_dialog.c:1558 +#: app/preferences_dialog.c:2286 msgid "Vertical" msgstr "Вертикальне" @@ -1339,7 +1340,7 @@ msgstr "" msgid "RGB-empty" msgstr "" -#: app/gdisplay.c:217 app/image_new.c:53 app/preferences_dialog.c:1637 +#: app/gdisplay.c:217 app/image_new.c:54 app/preferences_dialog.c:1602 msgid "RGB" msgstr "RGB" @@ -1474,23 +1475,23 @@ msgstr "" msgid "Failed to load pixmap brush." msgstr "" -#: app/gimpdrawable.c:168 +#: app/gimpdrawable.c:166 msgid "Can't fill unknown image type." msgstr "Неможливо заповнити зображення нев╕домого типу." -#: app/gimpdrawable.c:512 +#: app/gimpdrawable.c:498 msgid "parasite attach to drawable" msgstr "" -#: app/gimpdrawable.c:548 +#: app/gimpdrawable.c:533 msgid "detach parasite from drawable" msgstr "" -#: app/gimpdrawable.c:770 +#: app/gimpdrawable.c:740 msgid "unnamed" msgstr "неназвано" -#: app/gimpdrawable.c:787 +#: app/gimpdrawable.c:757 #, c-format msgid "Layer type %d not supported." msgstr "Шари типу %d не п╕дтримуються." @@ -1502,39 +1503,39 @@ msgid "" "you don't have GtkXmHTML installed." msgstr "" -#: app/gimpimage.c:1154 +#: app/gimpimage.c:1176 msgid "attach parasite to image" msgstr "" -#: app/gimpimage.c:1177 +#: app/gimpimage.c:1201 msgid "detach parasite from image" msgstr "" -#: app/gimpimage.c:2232 +#: app/gimpimage.c:2305 msgid "Layer cannot be raised any further" msgstr "Шар неможливо п╕дняти вище" -#: app/gimpimage.c:2258 +#: app/gimpimage.c:2333 msgid "Layer cannot be lowered any further" msgstr "Шар неможливо опустити нижче" -#: app/gimpimage.c:2282 +#: app/gimpimage.c:2359 msgid "Layer is already on top" msgstr "Шар вже зверху" -#: app/gimpimage.c:2288 +#: app/gimpimage.c:2365 msgid "Can't raise Layer without alpha" msgstr "Неможливо п╕дняти шар, в якого нема╓ альфа-каналу" -#: app/gimpimage.c:2315 +#: app/gimpimage.c:2393 msgid "Layer is already on bottom" msgstr "Шар вже внизу" -#: app/gimpimage.c:2370 +#: app/gimpimage.c:2448 msgid "BG has no alpha, layer was placed above" msgstr "Тло не ма╓ альфа-каналу, шар буде розм╕щено вище" -#: app/gimpimage.c:2439 +#: app/gimpimage.c:2519 msgid "" "There are not enough visible layers for a merge.\n" "There must be at least two." @@ -1542,11 +1543,11 @@ msgstr "" "Нема╓ видимих шар╕в для об'╓днання.\n" "╥х мусить бути хоча б два." -#: app/gimpimage.c:2519 +#: app/gimpimage.c:2603 msgid "There are not enough visible layers for a merge down." msgstr "Нема╓ видимих шар╕в для об'╓днання з попередн╕м." -#: app/gimpimage.c:2915 +#: app/gimpimage.c:3005 msgid "" "Unable to add a layer mask since\n" "the layer already has one." @@ -1554,7 +1555,7 @@ msgstr "" "Не вдалось додати маску шару, так як\n" "шар вже ма╓ маску." -#: app/gimpimage.c:2919 +#: app/gimpimage.c:3009 msgid "" "Unable to add a layer mask to a\n" "layer in an indexed image." @@ -1562,7 +1563,7 @@ msgstr "" "Не вдалось додати маску шару\n" "до шару в ╕ндексованому зображен╕." -#: app/gimpimage.c:2923 +#: app/gimpimage.c:3013 msgid "" "Cannot add layer mask to a layer\n" "with no alpha channel." @@ -1570,20 +1571,20 @@ msgstr "" "Нможливо додати маску шару\n" "до шару, що нема╓ альфа-каналу." -#: app/gimpimage.c:2930 +#: app/gimpimage.c:3020 msgid "Cannot add layer mask of different dimensions than specified layer." msgstr "" "Неможливо додати маску шару, що в╕др╕зня╓ться розм╕рами в╕д вказаного шару." -#: app/gimpimage.c:3033 +#: app/gimpimage.c:3127 msgid "Channel cannot be raised any further" msgstr "Канал не можна п╕дняти ще вище" -#: app/gimpimage.c:3082 +#: app/gimpimage.c:3178 msgid "Channel cannot be lowered any further" msgstr "Канал не можна опустити ще нижче" -#: app/gimpimage.c:3288 app/palette.c:364 app/palette.c:941 app/palette.c:1077 +#: app/gimpimage.c:3398 app/palette.c:364 app/palette.c:941 app/palette.c:1077 #: app/palette.c:2022 app/palette.c:2749 app/palette.c:2881 msgid "Untitled" msgstr "Неназвано" @@ -1596,45 +1597,45 @@ msgstr " msgid "Please wait..." msgstr "Будь ласка, зачекайте..." -#: app/gimprc.c:401 app/plug_in.c:304 +#: app/gimprc.c:415 app/plug_in.c:304 msgid "Resource configuration" msgstr "Конф╕гурування ресурс╕в" -#: app/gimprc.c:451 +#: app/gimprc.c:467 #, c-format msgid "error parsing: \"%s\"\n" msgstr "помилка анал╕зу: \"%s\"\n" -#: app/gimprc.c:452 +#: app/gimprc.c:468 #, c-format msgid " at line %d column %d\n" msgstr " в рядку %d стовпчику %d\n" -#: app/gimprc.c:453 +#: app/gimprc.c:469 #, c-format msgid " unexpected token: %s\n" msgstr " неоч╕куваний символ: %s\n" -#: app/gimprc.c:1455 +#: app/gimprc.c:1473 msgid "error parsing pluginrc" msgstr "помилка анал╕зу pluginrc" -#: app/gimprc.c:2832 +#: app/gimprc.c:2866 #, c-format msgid "Can't open %s; %s" msgstr "Неможливо в╕дкрити %s; %s" -#: app/gimprc.c:2851 +#: app/gimprc.c:2885 #, c-format msgid "Can't rename %s to %s.old; %s" msgstr "Неможливо перейменувати %s в %s.old; %s" -#: app/gimprc.c:2857 +#: app/gimprc.c:2891 #, c-format msgid "Couldn't reopen %s\n" msgstr "Не вдалося перев╕дкрити %s\n" -#: app/gimprc.c:2869 +#: app/gimprc.c:2903 #, c-format msgid "Can't write to %s; %s" msgstr "Неможливо записати в %s; %s" @@ -1667,7 +1668,7 @@ msgstr " msgid "pixel" msgstr "п╕ксель" -#: app/gimpunit.c:59 app/measure.c:454 app/measure.c:458 app/paint_core.c:498 +#: app/gimpunit.c:59 app/measure.c:454 app/measure.c:458 app/paint_core.c:511 msgid "pixels" msgstr "п╕ксел╕" @@ -1913,7 +1914,7 @@ msgstr "" msgid "Distance: %0.6f" msgstr "Дистанц╕я: %0.6f" -#: app/gradient.c:3387 app/gradient.c:4448 +#: app/gradient.c:3387 app/gradient.c:4450 msgid "Left endpoint's color" msgstr "Кол╕р л╕во╖ крайньо╖ точки" @@ -1933,7 +1934,7 @@ msgstr " msgid "Save to" msgstr "Зберегти в" -#: app/gradient.c:3429 app/gradient.c:4526 +#: app/gradient.c:3429 app/gradient.c:4528 msgid "Right endpoint's color" msgstr "Кол╕р крайньо╖ право╖ точки" @@ -1961,7 +1962,7 @@ msgstr "" msgid "Split segment at midpoint" msgstr "" -#: app/gradient.c:3734 app/gradient.c:4829 +#: app/gradient.c:3734 app/gradient.c:4831 msgid "Split segment uniformly" msgstr "" @@ -1981,7 +1982,7 @@ msgstr "" msgid "Flip segment" msgstr "В╕дзеркалити сегмент" -#: app/gradient.c:3744 app/gradient.c:5390 +#: app/gradient.c:3744 app/gradient.c:5392 msgid "Replicate segment" msgstr "Розмножити сергмент" @@ -1997,7 +1998,7 @@ msgstr "" msgid "Split segments at midpoints" msgstr "" -#: app/gradient.c:3755 app/gradient.c:4830 +#: app/gradient.c:3755 app/gradient.c:4832 msgid "Split segments uniformly" msgstr "" @@ -2017,7 +2018,7 @@ msgstr "" msgid "Flip selection" msgstr "В╕дзеркалити вид╕лення" -#: app/gradient.c:3765 app/gradient.c:5391 +#: app/gradient.c:3765 app/gradient.c:5393 msgid "Replicate selection" msgstr "Розмножити вид╕лення" @@ -2030,49 +2031,49 @@ msgstr " msgid "RGBA (%0.3f, %0.3f, %0.3f, %0.3f)" msgstr "RGBA (%0.3f, %0.3f, %0.3f, %0.3f)" -#: app/gradient.c:4615 app/gradient.c:4685 +#: app/gradient.c:4617 app/gradient.c:4687 msgid "(Varies)" msgstr "" -#: app/gradient.c:4837 +#: app/gradient.c:4839 msgid "Split" msgstr "Розд╕лити" #. Instructions -#: app/gradient.c:4851 +#: app/gradient.c:4853 msgid "Please select the number of uniform parts" msgstr "Вибер╕ть к╕льк╕сть частин" -#: app/gradient.c:4857 +#: app/gradient.c:4859 msgid "in which you want to split the selected segment" msgstr "на яку ви хочите розд╕лити вид╕лений сегмент" -#: app/gradient.c:4858 +#: app/gradient.c:4860 msgid "in which you want to split the segments in the selection" msgstr "на яку ви хочете розд╕лити сегменти у вид╕лен╕" -#: app/gradient.c:5218 +#: app/gradient.c:5220 msgid "Blend endpoints' colors" msgstr "" -#: app/gradient.c:5230 +#: app/gradient.c:5232 msgid "Blend endpoints' opacity" msgstr "" -#: app/gradient.c:5398 +#: app/gradient.c:5400 msgid "Replicate" msgstr "" #. Instructions -#: app/gradient.c:5411 +#: app/gradient.c:5413 msgid "Please select the number of times" msgstr "" -#: app/gradient.c:5416 +#: app/gradient.c:5418 msgid "you want to replicate the selected segment" msgstr "" -#: app/gradient.c:5417 +#: app/gradient.c:5419 msgid "you want to replicate the selection" msgstr "" @@ -2176,45 +2177,45 @@ msgstr " msgid "Saturation" msgstr "Насичен╕сть" -#: app/image_new.c:58 app/info_window.c:65 app/info_window.c:534 -#: app/preferences_dialog.c:1638 +#: app/image_new.c:59 app/info_window.c:65 app/info_window.c:534 +#: app/preferences_dialog.c:1603 msgid "Grayscale" msgstr "Градац╕╖ с╕рого" -#: app/image_new.c:64 app/layers_dialog.c:3421 +#: app/image_new.c:65 app/layers_dialog.c:3421 msgid "Foreground" msgstr "Переднього плану" -#: app/image_new.c:74 app/layers_dialog.c:3423 +#: app/image_new.c:75 app/layers_dialog.c:3423 msgid "White" msgstr "Б╕ле" -#: app/image_new.c:262 +#: app/image_new.c:273 #, c-format msgid "%d Bytes" msgstr "%d Байт╕в" -#: app/image_new.c:264 +#: app/image_new.c:275 #, c-format msgid "%.2f KB" msgstr "%.2f КБ" -#: app/image_new.c:266 +#: app/image_new.c:277 #, c-format msgid "%.1f KB" msgstr "%.1f КБ" -#: app/image_new.c:268 +#: app/image_new.c:279 #, c-format msgid "%d KB" msgstr "%d КБ" -#: app/image_new.c:270 +#: app/image_new.c:281 #, c-format msgid "%.2f MB" msgstr "%.2f МБ" -#: app/image_new.c:272 +#: app/image_new.c:283 #, c-format msgid "%.1f MB" msgstr "%.1f МБ" @@ -2243,8 +2244,8 @@ msgstr "" "Активний град╕╓нт.\n" "Клацн╕ть щоб в╕дкрити д╕алог град╕╓нт╕в." -#: app/info_dialog.c:181 app/preferences_dialog.c:1782 -#: app/preferences_dialog.c:1888 +#: app/info_dialog.c:181 app/preferences_dialog.c:1743 +#: app/preferences_dialog.c:1849 msgid "General" msgstr "Загальне" @@ -2376,11 +2377,11 @@ msgstr " msgid "Shape" msgstr "Форма" -#: app/install.c:83 +#: app/install.c:95 msgid "The GIMP is not properly installed for the current user\n" msgstr "GIMP не був повн╕стю ╕нстальований для поточного користувача\n" -#: app/install.c:84 +#: app/install.c:96 msgid "" "User installation was skipped because the '--nointerface' flag was " "encountered\n" @@ -2388,326 +2389,421 @@ msgstr "" "Користувацьку ╕нсталяц╕ю було пропущено, бо був встановлений параметр " "'--nointerface'\n" -#: app/install.c:85 +#: app/install.c:97 msgid "" "To perform user installation, run the GIMP without the '--nointerface' flag\n" msgstr "" "Для виконання користувацько╖ ╕нсталяц╕╖, запуст╕ть GIMP без параметра " "'--nointerface'\n" -#: app/install.c:113 +#: app/install.c:142 +#, fuzzy +msgid "" +"The gimprc is used to store personal preferences\n" +"that affect GIMP's default behavior.\n" +"Paths to search for brushes, palettes, gradients,\n" +"patterns, plug-ins and modules can also configured here." +msgstr "" +"gimprc використову╓ться для збер╕гання персональних установок\n" +"таких як типова повед╕ка GIMP.\n" +"Шляхи пошуку пензл╕в, пал╕тр, град╕╓нт╕в,\n" +"шаблон╕в, допвнень та модул╕в також вказуються тут.\n" + +#: app/install.c:149 +msgid "" +"GIMP uses an additional gtkrc file so you can\n" +"configure it to look differently than other GTK apps." +msgstr "" + +#: app/install.c:154 +#, fuzzy +msgid "" +"Plug-ins and extensions are external programs run by\n" +"the GIMP which provide additional functionality.\n" +"These programs are searched for at run-time and\n" +"information about their functionality and mod-times\n" +"is cached in this file. This file is intended to\n" +"be GIMP-readable only, and should not be edited." +msgstr "" +"Доповнення та розширення - це зовн╕шн╕ програми, що запуска╓\n" +"GIMP, як╕ надаять додатков╕ можливост╕.\n" +"Ц╕ програми розшукують при запуску й ╕нформац╕я про ╖хню\n" +"функц╕ональн╕сть та mod-times к кешу╓ться у цьому файл╕.\n" +"Цей файл призначений лише для зчитування GIMP'ом,\n" +"╕ не повинен редагуватися.\n" + +#: app/install.c:163 +msgid "" +"Key shortcuts can be dynamically redefined in The GIMP.\n" +"The menurc is a dump of your configuration so it can.\n" +"be remembered for the next session. You may edit this\n" +"file if you wish, but it is much easier to define the\n" +"keys from within The GIMP. Deleting this file will\n" +"restore the default shortcuts." +msgstr "" + +#: app/install.c:172 +msgid "" +"The sessionrc is used to store what dialog windows were\n" +"open the last time you quit The GIMP. You can configure\n" +"The GIMP to reopen these dialogs at the saved position." +msgstr "" + +#: app/install.c:178 +msgid "" +"The unitrc is used to store your user units database.\n" +"You can define additional units and use them just\n" +"like you use the built-in units inches, millimeters,\n" +"points and picas. This file is overwritten each time\n" +"you quit the GIMP." +msgstr "" + +#: app/install.c:186 +msgid "" +"This is a subdirectory which can be used to store\n" +"user defined brushes. The default gimprc file\n" +"checks this subdirectory in addition to the system-\n" +"wide gimp brushes installation when searching for\n" +"brushes." +msgstr "" + +#: app/install.c:194 +msgid "" +"This is a subdirectory which is used to store brushes\n" +"that are created with the brush editor. The default\n" +"gimprc file checks this subdirectory when searching for\n" +"generated brushes." +msgstr "" + +#: app/install.c:201 +msgid "" +"This is a subdirectory which can be used to store\n" +"user defined gradients. The default gimprc file\n" +"checks this subdirectory in addition to the system-\n" +"wide gimp gradients installation when searching for\n" +"gradients." +msgstr "" + +#: app/install.c:209 +msgid "" +"This is a subdirectory which can be used to store\n" +"user defined palettes. The default gimprc file\n" +"checks only this subdirectory (not the system-wide\n" +"installation) when searching for palettes. During\n" +"installation, the system palettes will be copied\n" +"here. This is done to allow modifications made to\n" +"palettes during GIMP execution to persist across\n" +"sessions." +msgstr "" + +#: app/install.c:220 +msgid "" +"This is a subdirectory which can be used to store\n" +"user defined patterns. The default gimprc file\n" +"checks this subdirectory in addition to the system-\n" +"wide gimp patterns installation when searching for\n" +"patterns." +msgstr "" + +#: app/install.c:228 +msgid "" +"This is a subdirectory which can be used to store\n" +"user created, temporary, or otherwise non-system-\n" +"supported plug-ins. The default gimprc file\n" +"checks this subdirectory in addition to the system-\n" +"wide GIMP plug-in directories when searching for\n" +"plug-ins." +msgstr "" + +#: app/install.c:237 +msgid "" +"This subdirectory can be used to store user created,\n" +"temporary, or otherwise non-system-supported DLL modules.\n" +"The default gimprc file checks this subdirectory\n" +"in addition to the system-wide GIMP module directory\n" +"when searching for modules to load when initializing." +msgstr "" + +#: app/install.c:245 +msgid "" +"This subdirectory is used by the GIMP to store \n" +"user created and installed scripts. The default gimprc\n" +"file checks this subdirectory in addition to the system-\n" +"wide gimp scripts subdirectory when searching for scripts" +msgstr "" + +#: app/install.c:252 +msgid "" +"This subdirectory is used by the GIMP to temporarily\n" +"store undo buffers to reduce memory usage. If GIMP is\n" +"unceremoniously killed, files may persist in this directory\n" +"of the form: gimp<#>.<#>. These files are useless across\n" +"GIMP sessions and can be destroyed with impunity." +msgstr "" + +#: app/install.c:260 +msgid "" +"This subdirectory is used to store parameter files for\n" +"the Curves tool." +msgstr "" + +#: app/install.c:265 +msgid "" +"This subdirectory is used to store parameter files for\n" +"the Levels tool." +msgstr "" + +#: app/install.c:270 +msgid "" +"This is a subdirectory which can be used to store\n" +"user defined fractals to be used by the FractalExplorer\n" +"plug-in. The default gimprc file checks this subdirectory in\n" +"addition to the systemwide gimp FractalExplorer installation\n" +"when searching for fractals." +msgstr "" + +#: app/install.c:278 +msgid "" +"This is a subdirectory which can be used to store\n" +"user defined figures to be used by the gfig plug-in.\n" +"The default gimprc file checks this subdirectory in\n" +"addition to the systemwide gimp gfig installation\n" +"when searching for gfig figures." +msgstr "" + +#: app/install.c:286 +msgid "" +"This is a subdirectory which can be used to store\n" +"user defined gflares to be used by the gflare plug-in.\n" +"The default gimprc file checks this subdirectory in\n" +"addition to the systemwide gimp gflares installation\n" +"when searching for gflares." +msgstr "" + +#: app/install.c:294 +msgid "" +"This is a subdirectory which can be used to store\n" +"user defined data to be used by the Gimpressionist\n" +"plug-in. The default gimprc file checks this subdirectory in\n" +"addition to the systemwide gimp Gimpressionist installation\n" +"when searching for data." +msgstr "" + +#: app/install.c:525 +#, fuzzy +msgid "GIMP User Installation" +msgstr "╤нсталяц╕я GIMP" + +#: app/install.c:530 +msgid "Continue" +msgstr "Продовжити" + +#. this is a fontset, e.g. multiple comma-separated font definitions +#: app/install.c:560 +#, fuzzy +msgid "-*-helvetica-bold-r-normal-*-*-240-*-*-*-*-*-*,*" +msgstr "-*-helvetica-bold-r-normal-*-*-120-*-*-*-*-*-*,*" + +#: app/install.c:578 +#, fuzzy +msgid "" +"Welcome to\n" +"The GIMP User Installation" +msgstr "╤нсталяц╕я GIMP" + +#: app/install.c:582 msgid "" "The GIMP - GNU Image Manipulation Program\n" -"\n" +"Copyright (C) 1995-2000\n" +"Spencer Kimball, Peter Mattis and the GIMP Development Team." msgstr "" -"GIMP - Програма ман╕пулювання зображеннями GNU\n" -"\n" -#: app/install.c:118 +#: app/install.c:591 +#, fuzzy msgid "" "This program is free software; you can redistribute it and/or modify\n" "it under the terms of the GNU General Public License as published by\n" "the Free Software Foundation; either version 2 of the License, or\n" -"(at your option) any later version.\n" +"(at your option) any later version." msgstr "" "Це безкоштовна програма; ви можете розповсюджувати ╖╖ та/чи зм╕нювати\n" "у в╕дпов╕дност╕ з GNU General Public License опубл╕кованою\n" "Free Software Foundation; верс╕╖ 2, чи (на вашу думку)\n" "будь-якою б╕льш п╕знбо╖ верс╕╖.\n" -#: app/install.c:123 +#: app/install.c:596 +#, fuzzy msgid "" "This program is distributed in the hope that it will be useful,\n" "but WITHOUT ANY WARRANTY; without even the implied warranty of\n" "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n" -"See the GNU General Public License for more details.\n" +"See the GNU General Public License for more details." msgstr "" "Ця програма розповсюджу╓ться в спод╕ванн╕ на те, що вона буде корисною,\n" "аде БЕЗ БУДЬ-ЯКИХ ГАРАНТ╤Й, в том числ╕ безумовно╖ гарант╕╖\n" "MERCHANTABILITY чи ЗАСТОСУВАННЯ ДЛЯ БУДЬ-ЯКИХ Ц╤ЛЕЙ.\n" "Детальн╕ше, див╕ться GNU General Public License.\n" -#: app/install.c:128 +#: app/install.c:601 +#, fuzzy msgid "" "You should have received a copy of the GNU General Public License\n" "along with this program; if not, write to the Free Software\n" "Foundation, Inc., 59 Temple Place - Suite 330, Boston,\n" -"MA 02111-1307, USA.\n" +"MA 02111-1307, USA." msgstr "" "Ви мали отримати коп╕ю GNU General Public License\n" "разом з ц╕╓ю програмою; якщо цього не сталося, напиш╕ть у Free Software\n" "Foundation, Inc., 59 Temple Place - Suite 330, Boston,\n" "MA 02111-1307, USA.\n" -#: app/install.c:134 -msgid "" -"Personal GIMP Installation\n" -"\n" +#: app/install.c:607 +msgid "Click \"Continue\" to enter the GIMP user installation." +msgstr "" + +#: app/install.c:633 +#, fuzzy +msgid "Personal GIMP Directory" msgstr "" "Персональна ╕нсталяц╕я GIMP\n" "\n" -#: app/install.c:135 -msgid "For a proper GIMP installation, a subdirectory called\n" -msgstr "Для правильно╖ ╕нсталяц╕╖ GIMP потр╕бно створити\n" - -#. will be replaced with gimp_directory() -#: app/install.c:137 +#: app/install.c:650 +#, fuzzy msgid "" -" needs to be created. This\n" -"subdirectory will contain a number of important files:\n" -"\n" +"For a proper GIMP installation, a subdirectory needs to be created.\n" +"This subdirectory will contain a number of important files." msgstr "" "дек╕лька п╕дкаталог╕в. Ц╕ каталоги будуть м╕стити\n" "к╕лька важливих файл╕в:\n" "\n" -#: app/install.c:141 +#: app/install.c:653 msgid "" -"\t\tThe gimprc is used to store personal preferences\n" -"\t\tthat affect GIMP's default behavior.\n" -"\t\tPaths to search for brushes, palettes, gradients,\n" -"\t\tpatterns, plug-ins and modules can also configured here.\n" -msgstr "" -"\t\tgimprc використову╓ться для збер╕гання персональних установок\n" -"\t\tтаких як типова повед╕ка GIMP.\n" -"\t\tШляхи пошуку пензл╕в, пал╕тр, град╕╓нт╕в,\n" -"\t\tшаблон╕в, допвнень та модул╕в також вказуються тут.\n" - -#: app/install.c:147 -msgid "" -"\t\tPlug-ins and extensions are external programs run by\n" -"\t\tthe GIMP which provide additional functionality.\n" -"\t\tThese programs are searched for at run-time and\n" -"\t\tinformation about their functionality and mod-times\n" -"\t\tis cached in this file. This file is intended to\n" -"\t\tbe GIMP-readable only, and should not be edited.\n" -msgstr "" -"\t\tДоповнення та розширення - це зовн╕шн╕ програми, що запуска╓\n" -"\t\tGIMP, як╕ надаять додатков╕ можливост╕.\n" -"\t\tЦ╕ програми розшукують при запуску й ╕нформац╕я про ╖хню\n" -"\t\tфункц╕ональн╕сть та mod-times к кешу╓ться у цьому файл╕.\n" -"\t\tЦей файл призначений лише для зчитування GIMP'ом,\n" -"\t\t╕ не повинен редагуватися.\n" - -#: app/install.c:155 -msgid "" -"\t\tKey shortcuts can be dynamically redefined in The GIMP.\n" -"\t\tThe menurc is a dump of your configuration so it can.\n" -"\t\tbe remembered for the next session. You may edit this\n" -"\t\tfile if you wish, but it is much easier to define the\n" -"\t\tkeys from within The GIMP. Deleting this file will\n" -"\t\trestore the default shortcuts.\n" +"Click on one of the files or subdirectories in the tree\n" +"to get more information about the selected item." msgstr "" -#: app/install.c:163 -msgid "" -"\t\tThe sessionrc is used to store what dialog windows were\n" -"\t\topen the last time you quit The GIMP. You can configure\n" -"\t\tThe GIMP to reopen these dialogs at the saved position.\n" +#: app/install.c:656 +msgid "Click \"Continue\" to create your personal GIMP directory." msgstr "" -#: app/install.c:168 -msgid "" -"\t\tThe unitrc is used to store your user units database.\n" -"\t\tYou can define additional units and use them just\n" -"\t\tlike you use the built-in units inches, millimeters,\n" -"\t\tpoints and picas. This file is overwritten each time\n" -"\t\tyou quit the GIMP.\n" -msgstr "" - -#: app/install.c:175 -msgid "" -"\t\tThis is a subdirectory which can be used to store\n" -"\t\tuser defined brushes. The default gimprc file\n" -"\t\tchecks this subdirectory in addition to the system-\n" -"\t\twide gimp brushes installation when searching for\n" -"\t\tbrushes.\n" -msgstr "" - -#: app/install.c:182 -msgid "" -"\t\tThis is a subdirectory which is used to store brushes\n" -"\t\tthat are created with the brush editor. The default\n" -"\t\tgimprc file checks this subdirectory when searching for\n" -"\t\tgenerated brushes.\n" -msgstr "" - -#: app/install.c:188 -msgid "" -"\t\tThis is a subdirectory which can be used to store\n" -"\t\tuser defined gradients. The default gimprc file\n" -"\t\tchecks this subdirectory in addition to the system-\n" -"\t\twide gimp gradients installation when searching for\n" -"\t\tgradients.\n" -msgstr "" - -#: app/install.c:195 -msgid "" -"\t\tThis is a subdirectory which can be used to store\n" -"\t\tuser defined figures to be used by the gfig plug-in.\n" -"\t\tThe default gimprc file checks this subdirectory in\n" -"\t\taddition to the systemwide gimp gfig installation\n" -"\t\twhen searching for gfig figures.\n" -msgstr "" - -#: app/install.c:202 -msgid "" -"\t\tThis is a subdirectory which can be used to store\n" -"\t\tuser defined gflares to be used by the gflare plug-in.\n" -"\t\tThe default gimprc file checks this subdirectory in\n" -"\t\taddition to the systemwide gimp gflares installation\n" -"\t\twhen searching for gflares.\n" -msgstr "" - -#: app/install.c:209 -msgid "" -"\t\tThis is a subdirectory which can be used to store\n" -"\t\tuser defined fractals to be used by the FractalExplorer\n" -"\t\tplug-in. The default gimprc file checks this subdirectory in\n" -"\t\taddition to the systemwide gimp FractalExplorer installation\n" -"\t\twhen searching for fractals.\n" -msgstr "" - -#: app/install.c:216 -msgid "" -"\t\tThis is a subdirectory which can be used to store\n" -"\t\tuser defined palettes. The default gimprc file\n" -"\t\tchecks only this subdirectory (not the system-wide\n" -"\t\tinstallation) when searching for palettes. During\n" -"\t\tinstallation, the system palettes will be copied\n" -"\t\there. This is done to allow modifications made to\n" -"\t\tpalettes during GIMP execution to persist across\n" -"\t\tsessions.\n" -msgstr "" - -#: app/install.c:226 -msgid "" -"\t\tThis is a subdirectory which can be used to store\n" -"\t\tuser defined patterns. The default gimprc file\n" -"\t\tchecks this subdirectory in addition to the system-\n" -"\t\twide gimp patterns installation when searching for\n" -"\t\tpatterns.\n" -msgstr "" - -#: app/install.c:233 -msgid "" -"\t\tThis is a subdirectory which can be used to store\n" -"\t\tuser created, temporary, or otherwise non-system-\n" -"\t\tsupported plug-ins. The default gimprc file\n" -"\t\tchecks this subdirectory in addition to the system-\n" -"\t\twide GIMP plug-in directories when searching for\n" -"\t\tplug-ins.\n" -msgstr "" - -#: app/install.c:241 -msgid "" -"\t\tThis subdirectory can be used to store user created,\n" -"\t\ttemporary, or otherwise non-system-supported DLL modules.\n" -"\t\tThe default gimprc file checks this subdirectory\n" -"\t\tin addition to the system-wide GIMP module directory\n" -"\t\twhen searching for modules to load when initializing.\n" -msgstr "" - -#: app/install.c:248 -msgid "" -"\t\tThis subdirectory is used by the GIMP to store \n" -"\t\tuser created and installed scripts. The default gimprc\n" -"\t\tfile checks this subdirectory in addition to the system\n" -"\t\t-wide gimp scripts subdirectory when searching for scripts\n" -msgstr "" - -#: app/install.c:254 -msgid "" -"\t\tThis subdirectory is used by the GIMP to temporarily\n" -"\t\tstore undo buffers to reduce memory usage. If GIMP is\n" -"\t\tunceremoniously killed, files may persist in this directory\n" -"\t\tof the form: gimp<#>.<#>. These files are useless across\n" -"\t\tGIMP sessions and can be destroyed with impunity.\n" -msgstr "" - -#: app/install.c:263 -msgid "GIMP Installation" -msgstr "╤нсталяц╕я GIMP" - -#: app/install.c:268 -msgid "Install" -msgstr "╤нсталювати" - -#: app/install.c:270 -msgid "Ignore" -msgstr "╤гнорувати" - -#. this is a fontset, e.g. multiple comma-separated font definitions -#: app/install.c:295 app/install.c:453 -msgid "-*-helvetica-bold-r-normal-*-*-120-*-*-*-*-*-*,*" -msgstr "-*-helvetica-bold-r-normal-*-*-120-*-*-*-*-*-*,*" - -#. this is a font, provide only one single font definition -#: app/install.c:298 -msgid "-*-helvetica-medium-o-normal-*-*-100-*-*-*-*-*-*" -msgstr "-*-helvetica-medium-o-normal-*-*-100-*-*-*-*-*-*" - -#. this is a fontset, e.g. multiple comma-separated font definitions -#: app/install.c:301 -msgid "-*-helvetica-medium-r-normal-*-*-100-*-*-*-*-*-*,*" -msgstr "-*-helvetica-medium-r-normal-*-*-100-*-*-*-*-*-*,*" - -#: app/install.c:423 -msgid "Installation Log" -msgstr "Журнал ╕нсталяц╕╖" - -#: app/install.c:428 -msgid "Continue" -msgstr "Продовжити" - -#. this is a fontset, e.g. multiple comma-separated font definitions -#: app/install.c:456 -msgid "-*-helvetica-medium-r-normal-*-*-120-*-*-*-*-*-*,*" -msgstr "-*-helvetica-medium-r-normal-*-*-120-*-*-*-*-*-*,*" - -#: app/install.c:462 -msgid "" -"User Installation Log\n" -"\n" +#: app/install.c:736 +#, fuzzy +msgid "User Installation Log" msgstr "" "Журнал користувацько╖ ╕нсталяц╕╖\n" "\n" -#: app/install.c:472 -msgid " does not exist. Cannot install.\n" +#: app/install.c:741 +msgid "GIMP Performance Tuning" +msgstr "" + +#: app/install.c:744 +msgid "For optimal GIMP performance, some settings may have to be adjusted." +msgstr "" + +#: app/install.c:751 +msgid "Click \"Continue\" to accept the settings above." +msgstr "" + +#: app/install.c:760 +#, fuzzy +msgid "Monitor Resolution" +msgstr "Отримати розд╕льну здатн╕сть мон╕тора" + +#: app/install.c:763 +msgid "" +"To display images in their natural size, GIMP needs to know your monitor " +"resolution." +msgstr "" + +#: app/install.c:771 +msgid "Click \"Continue\" to start The GIMP." +msgstr "" + +#: app/install.c:845 +#, fuzzy +msgid "does not exist. Cannot install." msgstr " не ╕сну╓. ╤нсталяц╕я неможлива.\n" -#: app/install.c:480 -msgid "" -" has invalid permissions.\n" -"Cannot install." +#: app/install.c:857 +#, fuzzy +msgid "has invalid permissions. Cannot install." msgstr "" " ма╓ нев╕рн╕ права доступу.\n" "╤нсталяц╕я неможлива." -#: app/install.c:514 +#: app/install.c:895 msgid "" -"Did you notice any error messages\n" -"in the console window? If not, installation\n" -"was successful! Otherwise, quit and investigate\n" -"the possible reason...\n" +"Did you notice any error messages in the console window?\n" +"If not, installation was successful!\n" +"Otherwise, quit and investigate the possible reason..." msgstr "" -#: app/install.c:546 +#: app/install.c:955 msgid "" -"\n" -"Installation successful!\n" +"Did you notice any error messages in the lines above?\n" +"If not, installation was successful!\n" +"Otherwise, quit and investigate the possible reason..." msgstr "" -"\n" -"╤нсталяц╕ю усп╕шно завершено!\n" -#: app/install.c:555 -msgid "" -"\n" -"Installation failed. Contact system administrator.\n" +#: app/install.c:969 +msgid "Click \"Continue\" to complete GIMP installation." msgstr "" +#: app/install.c:978 +msgid "Installation failed. Contact system administrator." +msgstr "" + +#: app/install.c:999 +msgid "" +"GIMP uses a limited amount of memory to store image data, the so-called\n" +"\"Tile Cache\". You should adjust it's size to fit into memory. Consider\n" +"the amount of memory used by other running processes." +msgstr "" + +#: app/install.c:1015 app/preferences_dialog.c:2102 +msgid "Tile Cache Size:" +msgstr "Розм╕р кешу для орнамент╕в:" + +#: app/install.c:1025 +msgid "" +"All image and undo data which doesn't fit into the Tile Cache will be\n" +"written to a swap file. This file should be located on a local filesystem\n" +"with enough free space (several hundred MB). On a UNIX system, you\n" +"may want to use the system-wide temp-dir (\"/tmp\" or \"/var/tmp\")." +msgstr "" + +#: app/install.c:1035 app/preferences_dialog.c:2361 +msgid "Select Swap Dir" +msgstr "Вибер╕ть каталог своп╕нгу" + +#: app/install.c:1041 +#, fuzzy +msgid "Swap Directory:" +msgstr "Каталог своп╕нгу:" + +#: app/install.c:1063 +msgid "" +"GIMP can obtain this information from your X-server.\n" +"However, most X-servers do not return useful values." +msgstr "" + +#: app/install.c:1070 +#, fuzzy, c-format +msgid "Get Resolution from X-server (Currently %d x %d dpi)" +msgstr "(Зараз %d x %d т/д)" + +#: app/install.c:1087 +msgid "Alternatively, you can set the monitor resolution manually." +msgstr "" + +#: app/install.c:1102 +#, fuzzy +msgid "Monitor Resolution X:" +msgstr "Отримати розд╕льну здатн╕сть мон╕тора" + #: app/interface.c:312 msgid "" "Foreground & background colors. The black and white squares reset colors. " @@ -2783,8 +2879,8 @@ msgstr "UI msgid "Guide procedures" msgstr "Процедури направляючо╖" -#: app/internal_procs.c:122 app/preferences_dialog.c:1772 -#: app/preferences_dialog.c:1774 +#: app/internal_procs.c:122 app/preferences_dialog.c:1733 +#: app/preferences_dialog.c:1735 msgid "Interface" msgstr "╤нтерфейс" @@ -3207,142 +3303,133 @@ msgid "degrees" msgstr "градуси" #. /File -#: app/menus.c:82 +#. the underscore installs an accelerator using the character that follows +#: app/menus.c:85 msgid "/_File" msgstr "/Файл" -#: app/menus.c:84 app/menus.c:191 +#. /File +#: app/menus.c:87 app/menus.c:193 msgid "/File/New..." msgstr "/Файл/Новий..." -#: app/menus.c:86 app/menus.c:193 +#: app/menus.c:89 app/menus.c:195 msgid "/File/Open..." msgstr "/Файл/В╕дкрити..." -#: app/menus.c:93 +#: app/menus.c:96 msgid "/File/Acquire" msgstr "/Файл/Захопити" -#: app/menus.c:98 +#: app/menus.c:101 msgid "/File/Preferences..." msgstr "/Файл/Установки..." -#: app/menus.c:105 -msgid "/File/Dialogs" -msgstr "/Файл/Д╕алоги" - -#: app/menus.c:107 +#: app/menus.c:108 msgid "/File/Dialogs/Layers, Channels & Paths..." msgstr "/Файл/Д╕алоги/Шари, канали та контури..." -#: app/menus.c:109 +#: app/menus.c:110 msgid "/File/Dialogs/Tool Options..." msgstr "/Файл/Д╕алоги/Параметри ╕нструменту..." -#: app/menus.c:114 +#: app/menus.c:115 msgid "/File/Dialogs/Brushes..." msgstr "/Файл/Д╕алоги/Пензл╕..." -#: app/menus.c:116 +#: app/menus.c:117 msgid "/File/Dialogs/Patterns..." msgstr "/Файл/Д╕алоги/Узори..." -#: app/menus.c:118 +#: app/menus.c:119 msgid "/File/Dialogs/Gradients..." msgstr "/Файл/Д╕алоги/Град╕╓нти..." -#: app/menus.c:120 +#: app/menus.c:121 msgid "/File/Dialogs/Palette..." msgstr "/Файл/Д╕алоги/Пал╕тра..." -#: app/menus.c:122 +#: app/menus.c:123 msgid "/File/Dialogs/Indexed Palette..." msgstr "/Файл/Д╕алоги/╤ндексована пал╕тра..." -#: app/menus.c:127 +#: app/menus.c:128 msgid "/File/Dialogs/Input Devices..." msgstr "/Файл/Д╕алоги/Пристрою вводу..." -#: app/menus.c:129 +#: app/menus.c:130 msgid "/File/Dialogs/Device Status..." msgstr "/Файл/Д╕алоги/Стан пристрою..." -#: app/menus.c:134 +#: app/menus.c:135 msgid "/File/Dialogs/Document Index..." msgstr "/Файл/Д╕алоги/Покажчик документ╕в..." -#: app/menus.c:136 +#: app/menus.c:137 msgid "/File/Dialogs/Error Console..." msgstr "/Файл/Д╕алоги/Консоль помилок..." -#: app/menus.c:138 +#: app/menus.c:139 msgid "/File/Dialogs/Display Filters..." msgstr "/Файл/Д╕алоги/Ф╕льтри в╕дображення..." -#: app/menus.c:148 app/menus.c:206 +#: app/menus.c:149 app/menus.c:208 msgid "/File/Quit" msgstr "/Файл/Вийти" #. /Xtns -#: app/menus.c:153 +#. the underscore installs an accelerator using the character that follows +#: app/menus.c:155 msgid "/_Xtns" msgstr "/Розширення" -#: app/menus.c:155 +#: app/menus.c:157 msgid "/Xtns/Module Browser..." msgstr "/Розширення/Перегляд модул╕в..." #. /Help -#: app/menus.c:163 +#. the underscore installs an accelerator using the character that follows +#: app/menus.c:166 msgid "/_Help" msgstr "/Дов╕дка" -#: app/menus.c:165 +#: app/menus.c:168 msgid "/Help/Help..." msgstr "/Дов╕дка/Допомога..." -#: app/menus.c:167 +#: app/menus.c:170 msgid "/Help/Context Help..." msgstr "/Дов╕дка/Контаксна допомога..." -#: app/menus.c:169 +#: app/menus.c:172 msgid "/Help/Tip of the Day..." msgstr "/Дов╕дка/П╕дказка дня..." -#: app/menus.c:171 +#: app/menus.c:174 msgid "/Help/About..." msgstr "/Дов╕дка/Про..." -#: app/menus.c:173 +#: app/menus.c:176 msgid "/Help/Dump Items (Debug)" msgstr "/Дов╕дка/Dump Items (Налагодження)" -#. /File -#: app/menus.c:189 -msgid "/File" -msgstr "/Файл" - -#: app/menus.c:195 +#: app/menus.c:197 msgid "/File/Save" msgstr "/Файл/Зберегти" -#: app/menus.c:197 +#: app/menus.c:199 msgid "/File/Save As..." msgstr "/Файл/Зберегти як..." -#: app/menus.c:199 +#: app/menus.c:201 msgid "/File/Revert" msgstr "/Файл/В╕дновити" -#: app/menus.c:204 +#: app/menus.c:206 msgid "/File/Close" msgstr "/Файл/Закрити" #. /Edit -#: app/menus.c:214 -msgid "/Edit" -msgstr "/Редагування" - #: app/menus.c:216 msgid "/Edit/Undo" msgstr "/Редагування/В╕дм╕нити" @@ -3373,671 +3460,590 @@ msgstr "/ #. /Edit/Buffer #: app/menus.c:236 -msgid "/Edit/Buffer" -msgstr "/Редагування/Буфер" - -#: app/menus.c:238 msgid "/Edit/Buffer/Cut Named..." msgstr "/Редагування/Буфер/Вир╕зати в буфер з назвою..." -#: app/menus.c:240 +#: app/menus.c:238 msgid "/Edit/Buffer/Copy Named..." msgstr "/Редагування/Буфер/Скоп╕ювати в буфер з назвою..." -#: app/menus.c:242 +#: app/menus.c:240 msgid "/Edit/Buffer/Paste Named..." msgstr "/Редагування/Буфер/Вставити буфер з назвою..." -#: app/menus.c:247 +#: app/menus.c:245 msgid "/Edit/Clear" msgstr "/Редагування/Очистити" -#: app/menus.c:249 +#: app/menus.c:247 msgid "/Edit/Fill" msgstr "/Редагування/Заповнити" -#: app/menus.c:251 +#: app/menus.c:249 msgid "/Edit/Stroke" msgstr "/Редагування/Обвести" #. /Select -#: app/menus.c:259 -msgid "/Select" -msgstr "/Вид╕лення" - -#: app/menus.c:261 +#: app/menus.c:257 msgid "/Select/Invert" msgstr "/Вид╕лення/╤нвертувати" -#: app/menus.c:263 +#: app/menus.c:259 msgid "/Select/All" msgstr "/Вид╕лення/Все" -#: app/menus.c:265 +#: app/menus.c:261 msgid "/Select/None" msgstr "/Вид╕лення/Н╕чого" -#: app/menus.c:267 +#: app/menus.c:263 msgid "/Select/Float" msgstr "/Вид╕лення/Плаваюче" -#: app/menus.c:272 +#: app/menus.c:268 msgid "/Select/Feather..." msgstr "/Вид╕лення/Перо..." -#: app/menus.c:274 +#: app/menus.c:270 msgid "/Select/Sharpen" msgstr "/Вид╕лення/Р╕зк╕сть" -#: app/menus.c:276 +#: app/menus.c:272 msgid "/Select/Shrink..." msgstr "/Вид╕лення/Зменшення..." -#: app/menus.c:278 +#: app/menus.c:274 msgid "/Select/Grow..." msgstr "/Вид╕лення/Зб╕льшення..." -#: app/menus.c:280 +#: app/menus.c:276 msgid "/Select/Border..." msgstr "/Вид╕лення/Границя..." -#: app/menus.c:285 +#: app/menus.c:281 msgid "/Select/Save to Channel" msgstr "/Вид╕лення/Зберегти в канал╕" #. /View -#: app/menus.c:290 -msgid "/View" -msgstr "/Вигляд" - -#: app/menus.c:292 +#: app/menus.c:286 msgid "/View/Zoom In" msgstr "/Вигляд/Зб╕льшити" -#: app/menus.c:294 +#: app/menus.c:288 msgid "/View/Zoom Out" msgstr "/Вигляд/Зменшити" #. /View/Zoom -#: app/menus.c:299 -msgid "/View/Zoom" -msgstr "/Вигляд/Масштаб" - -#: app/menus.c:301 +#: app/menus.c:293 msgid "/View/Zoom/16:1" msgstr "/Вигляд/Масштаб/16:1" -#: app/menus.c:303 +#: app/menus.c:295 msgid "/View/Zoom/8:1" msgstr "/Вигляд/Масштаб/8:1" -#: app/menus.c:305 +#: app/menus.c:297 msgid "/View/Zoom/4:1" msgstr "/Вигляд/Масштаб/4:1" -#: app/menus.c:307 +#: app/menus.c:299 msgid "/View/Zoom/2:1" msgstr "/Вигляд/Масштаб/2:1" -#: app/menus.c:309 +#: app/menus.c:301 msgid "/View/Zoom/1:1" msgstr "/Вигляд/Масштаб/1:1" -#: app/menus.c:311 +#: app/menus.c:303 msgid "/View/Zoom/1:2" msgstr "/Вигляд/Масштаб/1:2" -#: app/menus.c:313 +#: app/menus.c:305 msgid "/View/Zoom/1:4" msgstr "/Вигляд/Масштаб/1:4" -#: app/menus.c:315 +#: app/menus.c:307 msgid "/View/Zoom/1:8" msgstr "/Вигляд/Масштаб/1:8" -#: app/menus.c:317 +#: app/menus.c:309 msgid "/View/Zoom/1:16" msgstr "/Вигляд/Масштаб/1:16" -#: app/menus.c:320 +#: app/menus.c:312 msgid "/View/Dot for Dot" msgstr "/Вигляд/Точка за точкою" -#: app/menus.c:325 +#: app/menus.c:317 msgid "/View/Info Window..." msgstr "/Вигляд/╤нформац╕йне в╕кно..." -#: app/menus.c:327 +#: app/menus.c:319 msgid "/View/Nav. Window..." msgstr "/Вигляд/Нав╕гац╕йне в╕кно..." -#: app/menus.c:329 -msgid "/View/Undo History..." -msgstr "/Вигляд/╤сторя в╕дм╕н..." - -#: app/menus.c:334 +#: app/menus.c:324 msgid "/View/Toggle Selection" msgstr "/Вигляд/Вид╕лення" -#: app/menus.c:336 +#: app/menus.c:326 msgid "/View/Toggle Rulers" msgstr "/Вигляд/Л╕н╕йки" -#: app/menus.c:338 +#: app/menus.c:328 msgid "/View/Toggle Statusbar" msgstr "/Вигляд/Панель стану" -#: app/menus.c:340 +#: app/menus.c:330 msgid "/View/Toggle Guides" msgstr "/Вигляд/Направляюч╕" -#: app/menus.c:342 +#: app/menus.c:332 msgid "/View/Snap to Guides" msgstr "/Вигляд/При╓днання до направляючих" -#: app/menus.c:347 +#: app/menus.c:337 msgid "/View/New View" msgstr "/Вигляд/Новий вигляд" -#: app/menus.c:349 +#: app/menus.c:339 msgid "/View/Shrink Wrap" msgstr "/Вигляд/Нормал╕зувати розм╕ри вигляду" -#. /Image -#: app/menus.c:357 -msgid "/Image" -msgstr "/Зображення" - #. /Image/Mode -#: app/menus.c:362 -msgid "/Image/Mode" -msgstr "/Зображення/Режим" - -#: app/menus.c:364 +#: app/menus.c:344 msgid "/Image/Mode/RGB" msgstr "/Зображення/Режим/RGB" -#: app/menus.c:366 +#: app/menus.c:346 msgid "/Image/Mode/Grayscale" msgstr "/Зображення/Режим/Градац╕╖ с╕рого" -#: app/menus.c:368 +#: app/menus.c:348 msgid "/Image/Mode/Indexed..." msgstr "/Зображення/Режим/╤ндексований..." #. /Image/Colors -#: app/menus.c:376 -msgid "/Image/Colors" -msgstr "/Зображення/Кольори" - -#: app/menus.c:381 +#: app/menus.c:356 msgid "/Image/Colors/Desaturate" msgstr "/Зображення/Кольори/Знебарвити" -#: app/menus.c:383 +#: app/menus.c:358 msgid "/Image/Colors/Invert" msgstr "/Зображення/Кольори/╤нвертувати" #. /Image/Colors/Auto -#: app/menus.c:391 -msgid "/Image/Colors/Auto" -msgstr "/Зображення/Кольори/Авто" - -#: app/menus.c:393 +#: app/menus.c:366 msgid "/Image/Colors/Auto/Equalize" msgstr "/Зображення/Кольори/Авто/Вир╕внювання" #. /Image/Alpha -#: app/menus.c:401 -msgid "/Image/Alpha" -msgstr "/Зображення/Альфа" - -#: app/menus.c:403 +#: app/menus.c:374 msgid "/Image/Alpha/Add Alpha Channel" msgstr "/Зображення/Альфа/Додати альфа-канал" #. /Image/Transforms -#: app/menus.c:408 -msgid "/Image/Transforms" -msgstr "/Зображення/Перетворення" - -#: app/menus.c:410 +#: app/menus.c:379 msgid "/Image/Transforms/Offset..." msgstr "/Зображення/Перетворення/Зсув..." -#: app/menus.c:412 +#: app/menus.c:381 msgid "/Image/Transforms/Rotate" msgstr "/Зображення/Перетворення/Обернути" -#: app/menus.c:419 +#: app/menus.c:388 msgid "/Image/Canvas Size..." msgstr "/Зображення/Розм╕р полотна..." -#: app/menus.c:421 +#: app/menus.c:390 msgid "/Image/Scale Image..." msgstr "/Зображення/Масштабувати зображення..." -#: app/menus.c:423 +#: app/menus.c:392 msgid "/Image/Duplicate" msgstr "/Зображення/Дублювати" #. /Layers -#: app/menus.c:431 -msgid "/Layers" -msgstr "/Шари" - -#: app/menus.c:433 +#: app/menus.c:400 msgid "/Layers/Layers, Channels & Paths..." msgstr "/Шари/Шари, канали та контури..." -#. /Layers/Stack -#: app/menus.c:438 -msgid "/Layers/Stack" -msgstr "/Шари/Купка" +#: app/menus.c:404 +msgid "/Layers/Layer to Imagesize" +msgstr "/Шари/Розм╕р шару до зображення" -#: app/menus.c:440 +#. /Layers/Stack +#: app/menus.c:409 msgid "/Layers/Stack/Previous Layer" msgstr "/Шари/Купка/Попередн╕й шар" -#: app/menus.c:442 +#: app/menus.c:411 msgid "/Layers/Stack/Next Layer" msgstr "/Шари/Купка/Наступний шар" -#: app/menus.c:444 +#: app/menus.c:413 msgid "/Layers/Stack/Raise Layer" msgstr "/Шари/Купка/П╕дняти шар" -#: app/menus.c:446 +#: app/menus.c:415 msgid "/Layers/Stack/Lower Layer" msgstr "/Шари/Купка/Опустити шар" -#: app/menus.c:448 +#: app/menus.c:417 msgid "/Layers/Stack/Layer to Top" msgstr "/Шари/Купка/Шар на гору" -#: app/menus.c:450 +#: app/menus.c:419 msgid "/Layers/Stack/Layer to Bottom" msgstr "/Шари/Купка/Шар до низу" #. /Layers/Rotate -#: app/menus.c:457 +#: app/menus.c:426 msgid "/Layers/Rotate" msgstr "/Шари/Обернути" -#: app/menus.c:460 -msgid "/Layers/Layer to Imagesize" -msgstr "/Шари/Розм╕р шару до зображення" - -#: app/menus.c:465 +#: app/menus.c:431 msgid "/Layers/Anchor Layer" msgstr "/Шари/Причепити шар" -#: app/menus.c:467 +#: app/menus.c:433 msgid "/Layers/Merge Visible Layers..." msgstr "/Шари/Об'╓днати видим╕ шари..." -#: app/menus.c:469 +#: app/menus.c:435 msgid "/Layers/Flatten Image" msgstr "/Шари/Звести зображення" -#: app/menus.c:474 +#: app/menus.c:440 msgid "/Layers/Mask to Selection" msgstr "/Шари/Маска у вид╕лення" -#: app/menus.c:479 +#: app/menus.c:445 msgid "/Layers/Add Alpha Channel" msgstr "/Шари/Новий альфа-канал" -#: app/menus.c:481 +#: app/menus.c:447 msgid "/Layers/Alpha to Selection" msgstr "/Шари/Альфа у вид╕лення" #. /Tools -#: app/menus.c:489 -msgid "/Tools" -msgstr "/╤нструменти" - -#: app/menus.c:491 +#: app/menus.c:455 msgid "/Tools/Toolbox" msgstr "/╤нструменти/Панель ╕нструмент╕в" -#: app/menus.c:493 +#: app/menus.c:457 msgid "/Tools/Default Colors" msgstr "/╤нструменти/Типов╕ кольори" -#: app/menus.c:495 +#: app/menus.c:459 msgid "/Tools/Swap Colors" msgstr "/╤нструменти/Обм╕няти кольори" -#: app/menus.c:501 -msgid "/Tools/Select Tools" -msgstr "/╤нструменти/Вид╕лення" - -#: app/menus.c:503 -msgid "/Tools/Transform Tools" -msgstr "/╤нструменти/Перетворення" - -#: app/menus.c:505 -msgid "/Tools/Paint Tools" -msgstr "/╤нструменти/Малювання" - #. /Dialogs -#: app/menus.c:510 -msgid "/Dialogs" -msgstr "/Д╕алоги" - -#: app/menus.c:512 +#: app/menus.c:466 msgid "/Dialogs/Layers, Channels & Paths..." msgstr "/Д╕алоги/Шари, канали та контури..." -#: app/menus.c:514 +#: app/menus.c:468 msgid "/Dialogs/Tool Options..." msgstr "/Д╕алоги/Параметри ╕нструменту..." -#: app/menus.c:519 +#: app/menus.c:473 msgid "/Dialogs/Brushes..." msgstr "/Д╕алоги/Пензл╕..." -#: app/menus.c:521 +#: app/menus.c:475 msgid "/Dialogs/Patterns..." msgstr "/Д╕алоги/Узори..." -#: app/menus.c:523 +#: app/menus.c:477 msgid "/Dialogs/Gradients..." msgstr "/Д╕алоги/Град╕╓нти..." -#: app/menus.c:525 +#: app/menus.c:479 msgid "/Dialogs/Palette..." msgstr "/Д╕алоги/Пал╕тра..." -#: app/menus.c:527 +#: app/menus.c:481 msgid "/Dialogs/Indexed Palette..." msgstr "/Д╕алоги/╤ндексована пал╕тра..." -#: app/menus.c:532 +#: app/menus.c:486 msgid "/Dialogs/Input Devices..." msgstr "/Д╕алоги/Пристрою вводу..." -#: app/menus.c:534 +#: app/menus.c:488 msgid "/Dialogs/Device Status..." msgstr "/Д╕алоги/Стан пристрою..." -#: app/menus.c:539 +#: app/menus.c:493 msgid "/Dialogs/Document Index..." msgstr "/Д╕алоги/Покажчик документ╕в..." -#: app/menus.c:541 +#: app/menus.c:495 msgid "/Dialogs/Error Console..." msgstr "/Д╕алоги/Консоль помилок..." -#: app/menus.c:543 +#: app/menus.c:497 msgid "/Dialogs/Display Filters..." msgstr "/Д╕алоги/Ф╕льтри в╕дображення..." -#. /Filters -#: app/menus.c:551 -msgid "/Filters" -msgstr "/Ф╕льтри" +#: app/menus.c:499 +#, fuzzy +msgid "/Dialogs/Undo History..." +msgstr "/Вигляд/╤сторя в╕дм╕н..." -#: app/menus.c:553 +#. /Filters +#: app/menus.c:508 msgid "/Filters/Repeat Last" msgstr "/Ф╕льтри/Повторити останн╕й" -#: app/menus.c:555 +#: app/menus.c:510 msgid "/Filters/Re-Show Last" msgstr "/Ф╕льтри/Показати останн╕й" -#: app/menus.c:561 +#: app/menus.c:515 msgid "/Filters/Blur" msgstr "/Ф╕льтри/Розмивання" -#: app/menus.c:564 +#: app/menus.c:517 msgid "/Filters/Colors" msgstr "/Ф╕льтри/Кольори" -#: app/menus.c:569 +#: app/menus.c:519 msgid "/Filters/Noise" msgstr "/Ф╕льтри/Шум" -#: app/menus.c:571 +#: app/menus.c:521 msgid "/Filters/Edge-Detect" msgstr "/Ф╕льтри/Вид╕лен╕ кра╖" -#: app/menus.c:573 +#: app/menus.c:523 msgid "/Filters/Enhance" msgstr "/Ф╕льтри/Enhance" -#: app/menus.c:575 +#: app/menus.c:525 msgid "/Filters/Generic" msgstr "/Ф╕льтри/Загальн╕" -#: app/menus.c:580 +#: app/menus.c:530 msgid "/Filters/Glass Effects" msgstr "/Ф╕льтри/Ефекти скла" -#: app/menus.c:582 +#: app/menus.c:532 msgid "/Filters/Light Effects" msgstr "/Ф╕льтри/Св╕тлов╕ ефекти" -#: app/menus.c:584 +#: app/menus.c:534 msgid "/Filters/Distorts" msgstr "/Ф╕льтри/Спотворення" -#: app/menus.c:586 +#: app/menus.c:536 msgid "/Filters/Artistic" msgstr "/Ф╕льтри/╤н╕тац╕я" -#: app/menus.c:588 +#: app/menus.c:538 msgid "/Filters/Map" msgstr "/Ф╕льтри/Карта" -#: app/menus.c:590 +#: app/menus.c:540 msgid "/Filters/Render" msgstr "/Ф╕льтри/В╕зуал╕зац╕я" -#: app/menus.c:592 +#: app/menus.c:542 msgid "/Filters/Web" msgstr "/Ф╕льтри/WWW" -#: app/menus.c:597 +#: app/menus.c:547 msgid "/Filters/Animation" msgstr "/Ф╕льтри/Ан╕мац╕я" -#: app/menus.c:599 +#: app/menus.c:549 msgid "/Filters/Combine" msgstr "/Ф╕льтри/Об'╓днання" -#: app/menus.c:604 +#: app/menus.c:554 msgid "/Filters/Toys" msgstr "/Ф╕льтри/╤грашки" -#. /Script-Fu -#: app/menus.c:609 -msgid "/Script-Fu" -msgstr "/Script-Fu" - -#: app/menus.c:620 +#: app/menus.c:567 msgid "/Automatic" msgstr "/Автоматично" -#: app/menus.c:634 +#: app/menus.c:581 msgid "/By Extension" msgstr "/За розширенням" -#: app/menus.c:648 +#: app/menus.c:595 msgid "/New Layer..." msgstr "/Новий шар..." #. /Stack -#: app/menus.c:653 -msgid "/Stack" -msgstr "/Купа" - -#: app/menus.c:655 +#: app/menus.c:600 msgid "/Stack/Raise Layer" msgstr "/Купа/П╕дняти шар" -#: app/menus.c:657 +#: app/menus.c:602 msgid "/Stack/Lower Layer" msgstr "/Купа/Опустити шар" -#: app/menus.c:659 +#: app/menus.c:604 msgid "/Stack/Layer to Top" msgstr "/Купа/Шар на гору" -#: app/menus.c:661 +#: app/menus.c:606 msgid "/Stack/Layer to Bottom" msgstr "/Купа/Шар до низу" -#: app/menus.c:664 +#: app/menus.c:609 msgid "/Duplicate Layer" msgstr "/Дублювати шар" -#: app/menus.c:666 +#: app/menus.c:611 msgid "/Anchor Layer" msgstr "/Причепити шар" -#: app/menus.c:668 +#: app/menus.c:613 msgid "/Delete Layer" msgstr "/Видалити шар" -#: app/menus.c:673 +#: app/menus.c:618 msgid "/Layer Boundary Size..." msgstr "/Розм╕ри границь шару..." -#: app/menus.c:675 +#: app/menus.c:620 msgid "/Layer to Imagesize" msgstr "/Шар до розм╕ру зображення" -#: app/menus.c:677 +#: app/menus.c:622 msgid "/Scale Layer..." msgstr "/Маштабувати шар..." -#: app/menus.c:682 +#: app/menus.c:627 msgid "/Merge Visible Layers..." msgstr "/Об'╓днати видим╕ шари..." -#: app/menus.c:684 +#: app/menus.c:629 msgid "/Merge Down" msgstr "/Об'╓днати з попередн╕м" -#: app/menus.c:686 +#: app/menus.c:631 msgid "/Flatten Image" msgstr "/Звести зображення" -#: app/menus.c:691 +#: app/menus.c:636 msgid "/Add Layer Mask..." msgstr "/Додати маску шару" -#: app/menus.c:693 +#: app/menus.c:638 msgid "/Apply Layer Mask" msgstr "/Застосувати маску шару..." -#: app/menus.c:695 +#: app/menus.c:640 msgid "/Delete Layer Mask" msgstr "/Стерти маску шару" -#: app/menus.c:697 +#: app/menus.c:642 msgid "/Mask to Selection" msgstr "/Маска у вид╕лення" -#: app/menus.c:702 +#: app/menus.c:647 msgid "/Add Alpha Channel" msgstr "/Додати альфа-канал" -#: app/menus.c:704 +#: app/menus.c:649 msgid "/Alpha to Selection" msgstr "/Альфа у вид╕лення" -#: app/menus.c:709 +#: app/menus.c:654 msgid "/Edit Layer Attributes..." msgstr "/Зм╕на атрибут╕в шару..." -#: app/menus.c:720 +#: app/menus.c:665 msgid "/New Channel..." msgstr "/Новий канал..." -#: app/menus.c:722 +#: app/menus.c:667 msgid "/Raise Channel" msgstr "/П╕дняти канал" -#: app/menus.c:724 +#: app/menus.c:669 msgid "/Lower Channel" msgstr "/Опустити канал" -#: app/menus.c:726 +#: app/menus.c:671 msgid "/Duplicate Channel" msgstr "/Дублювати канал" -#: app/menus.c:731 +#: app/menus.c:676 msgid "/Channel to Selection" msgstr "/Канал у вид╕лення" -#: app/menus.c:733 +#: app/menus.c:678 msgid "/Add to Selection" msgstr "/Додати до вид╕лення" -#: app/menus.c:735 +#: app/menus.c:680 msgid "/Subtract from Selection" msgstr "/В╕дняти в╕д вид╕лення" -#: app/menus.c:737 +#: app/menus.c:682 msgid "/Intersect with Selection" msgstr "/Перетнути з вид╕ленням" -#: app/menus.c:742 +#: app/menus.c:687 msgid "/Delete Channel" msgstr "/Видалити канал" -#: app/menus.c:747 +#: app/menus.c:692 msgid "/Edit Channel Attributes..." msgstr "/Редагування атрибут╕в каналу" -#: app/menus.c:758 +#: app/menus.c:703 msgid "/New Path" msgstr "/Новий контур" -#: app/menus.c:760 +#: app/menus.c:705 msgid "/Duplicate Path" msgstr "/Дублювати контур" -#: app/menus.c:762 +#: app/menus.c:707 msgid "/Path to Selection" msgstr "/Контур у вид╕лення" -#: app/menus.c:764 +#: app/menus.c:709 msgid "/Selection to Path" msgstr "/Вид╕лення у контур" -#: app/menus.c:766 +#: app/menus.c:711 msgid "/Stroke Path" msgstr "/Обвести шлях" -#: app/menus.c:768 +#: app/menus.c:713 msgid "/Delete Path" msgstr "/Видалити контур" -#: app/menus.c:773 +#: app/menus.c:718 msgid "/Copy Path" msgstr "/Скоп╕ювати контур" -#: app/menus.c:775 +#: app/menus.c:720 msgid "/Paste Path" msgstr "/Вставити контур" -#: app/menus.c:777 +#: app/menus.c:722 msgid "/Import Path..." msgstr "/╤мпортувати контур..." -#: app/menus.c:779 +#: app/menus.c:724 msgid "/Export Path..." msgstr "/Експортувати контур..." -#: app/menus.c:784 +#: app/menus.c:729 msgid "/Edit Path Attributes..." msgstr "/Зм╕на атрибут╕в контуру..." -#: app/menus.c:1310 +#: app/menus.c:1260 #, c-format msgid "Error opening file: %s\n" msgstr "Помилка в╕дкриття файлу: %s\n" @@ -4133,7 +4139,7 @@ msgstr " msgid "Autoload during startup" msgstr "Автозавантаження на старт╕" -#: app/move.c:456 +#: app/move.c:458 msgid "Move Tool" msgstr "Перем╕щення" @@ -4147,7 +4153,7 @@ msgstr " msgid "Navigation: No Image" msgstr "Нав╕гац╕я: Нема╓ зображення" -#: app/paint_core.c:717 +#: app/paint_core.c:735 msgid "No brushes available for use with this tool." msgstr "Нема╓ пензл╕в доступних для використання з цим ╕нструментом." @@ -4582,477 +4588,471 @@ msgstr "" msgid "You will need to restart GIMP for these changes to take effect." msgstr "Щоб ц╕ зм╕ни вступили в д╕ю, необх╕дно перезапустити GIMP." -#: app/preferences_dialog.c:1459 +#: app/preferences_dialog.c:1002 +#, c-format +msgid "The default comments is limited to %d characters." +msgstr "" + +#: app/preferences_dialog.c:1424 msgid "Preferences" msgstr "Установки" #. The categories tree -#: app/preferences_dialog.c:1481 +#: app/preferences_dialog.c:1446 msgid "Categories" msgstr "Категор╕╖" -#: app/preferences_dialog.c:1509 app/preferences_dialog.c:1511 +#: app/preferences_dialog.c:1474 app/preferences_dialog.c:1476 msgid "New File" msgstr "Новий файл" -#: app/preferences_dialog.c:1522 +#: app/preferences_dialog.c:1487 msgid "Default Image Size and Unit" msgstr "Типов╕ розм╕р та одиниц╕ вим╕ру зображення" -#: app/preferences_dialog.c:1536 +#: app/preferences_dialog.c:1501 msgid "Width" msgstr "Ширина" -#: app/preferences_dialog.c:1538 +#: app/preferences_dialog.c:1503 msgid "Height" msgstr "Висота" -#: app/preferences_dialog.c:1568 +#: app/preferences_dialog.c:1533 msgid "Default Image Resolution and Resolution Unit" msgstr "Типов╕ розд╕льност╕ зображення та одиниць вим╕ру" -#: app/preferences_dialog.c:1595 app/preferences_dialog.c:2359 +#: app/preferences_dialog.c:1560 app/preferences_dialog.c:2288 msgid "dpi" msgstr "т/д" -#: app/preferences_dialog.c:1642 +#: app/preferences_dialog.c:1607 msgid "Default Image Type:" msgstr "Типовий тип зображення:" -#: app/preferences_dialog.c:1678 app/preferences_dialog.c:2166 -msgid "Bytes" -msgstr "Байти" - -#: app/preferences_dialog.c:1679 app/preferences_dialog.c:2167 -msgid "KiloBytes" -msgstr "К╕лобайти" - -#: app/preferences_dialog.c:1680 app/preferences_dialog.c:2168 -msgid "MegaBytes" -msgstr "Мегабайти" - -#: app/preferences_dialog.c:1686 +#: app/preferences_dialog.c:1618 msgid "Maximum Image Size:" msgstr "Максимальний розм╕р зображення:" -#: app/preferences_dialog.c:1692 app/preferences_dialog.c:1694 +#: app/preferences_dialog.c:1623 app/preferences_dialog.c:1625 +#, fuzzy +msgid "Default Comment" +msgstr "Типовий" + +#: app/preferences_dialog.c:1633 +msgid "Comment Used for New Images" +msgstr "" + +#: app/preferences_dialog.c:1653 app/preferences_dialog.c:1655 msgid "Display" msgstr "В╕дображення" -#: app/preferences_dialog.c:1702 +#: app/preferences_dialog.c:1663 msgid "Transparency" msgstr "Прозор╕сть" -#: app/preferences_dialog.c:1721 +#: app/preferences_dialog.c:1682 msgid "Light Checks" msgstr "Св╕тл╕ ф╕шки" -#: app/preferences_dialog.c:1722 +#: app/preferences_dialog.c:1683 msgid "Mid-Tone Checks" msgstr "П╕втонов╕ ф╕шки" -#: app/preferences_dialog.c:1723 +#: app/preferences_dialog.c:1684 msgid "Dark Checks" msgstr "Темн╕ ф╕шки" -#: app/preferences_dialog.c:1724 +#: app/preferences_dialog.c:1685 msgid "White Only" msgstr "Лише б╕ле" -#: app/preferences_dialog.c:1725 +#: app/preferences_dialog.c:1686 msgid "Gray Only" msgstr "Лише с╕ре" -#: app/preferences_dialog.c:1726 +#: app/preferences_dialog.c:1687 msgid "Black Only" msgstr "Лише чорне" -#: app/preferences_dialog.c:1730 +#: app/preferences_dialog.c:1691 msgid "Transparency Type:" msgstr "Тип прозорост╕:" -#: app/preferences_dialog.c:1737 app/preferences_dialog.c:1810 -#: app/preferences_dialog.c:1824 +#: app/preferences_dialog.c:1698 app/preferences_dialog.c:1771 +#: app/preferences_dialog.c:1785 msgid "Small" msgstr "Мал╕" -#: app/preferences_dialog.c:1738 app/preferences_dialog.c:1811 -#: app/preferences_dialog.c:1825 +#: app/preferences_dialog.c:1699 app/preferences_dialog.c:1772 +#: app/preferences_dialog.c:1786 msgid "Medium" msgstr "Середн╕" -#: app/preferences_dialog.c:1739 app/preferences_dialog.c:1812 -#: app/preferences_dialog.c:1826 +#: app/preferences_dialog.c:1700 app/preferences_dialog.c:1773 +#: app/preferences_dialog.c:1787 msgid "Large" msgstr "Велик╕" -#: app/preferences_dialog.c:1743 +#: app/preferences_dialog.c:1704 msgid "Check Size:" msgstr "Розм╕р ф╕шки:" -#: app/preferences_dialog.c:1746 +#: app/preferences_dialog.c:1707 msgid "8-Bit Displays" msgstr "" -#: app/preferences_dialog.c:1751 +#: app/preferences_dialog.c:1712 msgid "Install Colormap" msgstr "╤нсталювати карту кольор╕в" -#: app/preferences_dialog.c:1760 +#: app/preferences_dialog.c:1721 msgid "Colormap Cycling" msgstr "" -#: app/preferences_dialog.c:1809 +#: app/preferences_dialog.c:1770 msgid "Tiny" msgstr "Тонкий" -#: app/preferences_dialog.c:1813 +#: app/preferences_dialog.c:1774 msgid "Huge" msgstr "Величезний" -#: app/preferences_dialog.c:1817 +#: app/preferences_dialog.c:1778 msgid "Preview Size:" msgstr "Розм╕р перегляду:" -#: app/preferences_dialog.c:1830 +#: app/preferences_dialog.c:1791 msgid "Nav Preview Size:" msgstr "Розм╕р перегляду нав╕гац╕╖:" -#: app/preferences_dialog.c:1840 +#: app/preferences_dialog.c:1801 msgid "Recent Documents List Size:" msgstr "Розм╕р списку документ╕в, що в╕дкривалися:" #. Indicators -#: app/preferences_dialog.c:1844 +#: app/preferences_dialog.c:1805 msgid "Toolbox" msgstr "Панель ╕нструмент╕в" -#: app/preferences_dialog.c:1847 +#: app/preferences_dialog.c:1808 msgid "Display Brush, Pattern and Gradient Indicators" msgstr "Показувати ╕ндикатори пензля, шаблону та град╕╓нту" -#: app/preferences_dialog.c:1856 +#: app/preferences_dialog.c:1817 msgid "Dialog Behaviour" msgstr "Повед╕нка д╕алогу" -#: app/preferences_dialog.c:1858 +#: app/preferences_dialog.c:1819 msgid "Navigation Window per Display" msgstr "Нав╕гац╕йних в╕кон на екран╕" -#: app/preferences_dialog.c:1867 +#: app/preferences_dialog.c:1828 msgid "Info Window Follows Mouse" msgstr "╤нформац╕й в╕кно дотриму╓ться миш╕" -#: app/preferences_dialog.c:1878 app/preferences_dialog.c:1880 +#: app/preferences_dialog.c:1839 app/preferences_dialog.c:1841 msgid "Help System" msgstr "Система дов╕дки" -#: app/preferences_dialog.c:1890 +#: app/preferences_dialog.c:1851 msgid "Show Tool Tips" msgstr "Показувати п╕дказки" -#: app/preferences_dialog.c:1900 +#: app/preferences_dialog.c:1861 msgid "Context Sensitive Help with \"F1\"" msgstr "Контексна допомога через \"F1\"" -#: app/preferences_dialog.c:1909 +#: app/preferences_dialog.c:1870 msgid "Help Browser" msgstr "Переглядач дов╕дки" -#: app/preferences_dialog.c:1921 +#: app/preferences_dialog.c:1882 msgid "Internal" msgstr "Внутр╕шн╕й" -#: app/preferences_dialog.c:1922 +#: app/preferences_dialog.c:1883 msgid "Netscape" msgstr "Netscape" -#: app/preferences_dialog.c:1926 +#: app/preferences_dialog.c:1887 msgid "Help Browser to Use:" msgstr "Переглядач дов╕дки:" -#: app/preferences_dialog.c:1931 app/preferences_dialog.c:1933 +#: app/preferences_dialog.c:1892 app/preferences_dialog.c:1894 msgid "Image Windows" msgstr "В╕кно зображення" -#: app/preferences_dialog.c:1941 +#: app/preferences_dialog.c:1902 msgid "Appearance" msgstr "Зовн╕шн╕й вигляд" -#: app/preferences_dialog.c:1943 +#: app/preferences_dialog.c:1904 msgid "Use \"Dot for Dot\" by default" msgstr "" -#: app/preferences_dialog.c:1952 +#: app/preferences_dialog.c:1913 msgid "Resize Window on Zoom" msgstr "Зм╕н╕вати розм╕р в╕кна при масштабуванн╕" -#: app/preferences_dialog.c:1961 +#: app/preferences_dialog.c:1922 msgid "Show Rulers" msgstr "Показати л╕н╕йки" -#: app/preferences_dialog.c:1970 +#: app/preferences_dialog.c:1931 msgid "Show Statusbar" msgstr "Показати панель стану" -#: app/preferences_dialog.c:1994 +#: app/preferences_dialog.c:1955 msgid "Marching Ants Speed:" msgstr "Швидк╕сть мурашино╖ дор╕жки:" #. Set the currently used string as "Custom" -#: app/preferences_dialog.c:2002 +#: app/preferences_dialog.c:1963 msgid "Custom" msgstr "Нетиповий" #. set some commonly used format strings -#: app/preferences_dialog.c:2008 +#: app/preferences_dialog.c:1969 msgid "Standard" msgstr "Стандартний" -#: app/preferences_dialog.c:2013 +#: app/preferences_dialog.c:1974 msgid "Show zoom percentage" msgstr "Показувати масштаб у в╕дсотках" -#: app/preferences_dialog.c:2018 +#: app/preferences_dialog.c:1979 msgid "Show zoom ratio" msgstr "Показувати масштабний коф╕ц╕╓нт" -#: app/preferences_dialog.c:2023 +#: app/preferences_dialog.c:1984 msgid "Show reversed zoom ratio" msgstr "Показувати зворотн╕й масштабний коф╕ц╕╓нт" -#: app/preferences_dialog.c:2034 +#: app/preferences_dialog.c:1995 msgid "Image Title Format:" msgstr "Формат заголовку зображення:" #. End of the title format string -#: app/preferences_dialog.c:2038 +#: app/preferences_dialog.c:1999 msgid "Pointer Movement Feedback" msgstr "Зворотн╕й зв'язок руху вказ╕вника" -#: app/preferences_dialog.c:2041 +#: app/preferences_dialog.c:2002 msgid "Perfect-but-Slow Pointer Tracking" msgstr "Досконале-але-пов╕льне пересування вказ╕вника" -#: app/preferences_dialog.c:2050 +#: app/preferences_dialog.c:2011 msgid "Disable Cursor Updating" msgstr "В╕дключити поновлення курсору" -#: app/preferences_dialog.c:2062 app/preferences_dialog.c:2064 +#: app/preferences_dialog.c:2023 app/preferences_dialog.c:2025 #: app/tools.c:1080 msgid "Tool Options" msgstr "Параметри ╕нструменту" -#: app/preferences_dialog.c:2072 +#: app/preferences_dialog.c:2033 msgid "Paint Options" msgstr "Параметри пензля" -#: app/preferences_dialog.c:2075 +#: app/preferences_dialog.c:2036 msgid "Use Global Paint Options" msgstr "Використовувати глобальн╕ параметри пензля" -#: app/preferences_dialog.c:2090 app/preferences_dialog.c:2092 +#: app/preferences_dialog.c:2051 app/preferences_dialog.c:2053 msgid "Environment" msgstr "Середовище" -#: app/preferences_dialog.c:2100 +#: app/preferences_dialog.c:2061 msgid "Resource Consumption" msgstr "Використання ресурс╕в" -#: app/preferences_dialog.c:2102 +#: app/preferences_dialog.c:2063 msgid "Conservative Memory Usage" msgstr "Консервативне використання пам'ят╕" -#: app/preferences_dialog.c:2130 +#: app/preferences_dialog.c:2091 msgid "Levels of Undo:" msgstr "Р╕вн╕в в╕дм╕н:" -#: app/preferences_dialog.c:2174 -msgid "Tile Cache Size:" -msgstr "Розм╕р кешу для орнамент╕в:" - -#: app/preferences_dialog.c:2185 +#: app/preferences_dialog.c:2113 msgid "Number of Processors to Use:" msgstr "К╕льк╕сть процесор╕в, що використовуються:" -#: app/preferences_dialog.c:2189 app/transform_tool.c:215 +#: app/preferences_dialog.c:2117 app/transform_tool.c:215 msgid "Scaling" msgstr "Масштабування" -#: app/preferences_dialog.c:2207 +#: app/preferences_dialog.c:2135 msgid "Nearest Neighbor (Fast)" msgstr "За найближчим сус╕дом (швидко)" -#: app/preferences_dialog.c:2211 +#: app/preferences_dialog.c:2139 msgid "Cubic (Slow)" msgstr "Куб╕чна (пов╕льно)" -#: app/preferences_dialog.c:2216 +#: app/preferences_dialog.c:2144 msgid "Interpolation Type:" msgstr "Тип ╕нтерполяц╕╖:" -#: app/preferences_dialog.c:2219 +#: app/preferences_dialog.c:2147 msgid "File Saving" msgstr "Збереження файлу" -#: app/preferences_dialog.c:2236 app/preferences_dialog.c:2249 +#: app/preferences_dialog.c:2164 app/preferences_dialog.c:2177 msgid "Always" msgstr "Завжди" -#: app/preferences_dialog.c:2237 +#: app/preferences_dialog.c:2165 msgid "Never" msgstr "Н╕коли" -#: app/preferences_dialog.c:2241 +#: app/preferences_dialog.c:2169 msgid "Try to Write a Thumbnail File:" msgstr "" -#: app/preferences_dialog.c:2248 +#: app/preferences_dialog.c:2176 msgid "Only when Modified" msgstr "Лише якщо було зм╕нено" -#: app/preferences_dialog.c:2253 +#: app/preferences_dialog.c:2181 msgid "\"File > Save\" Saves the Image:" msgstr "\"Файл > Зберегти\" збер╕га╓ зображення:" -#: app/preferences_dialog.c:2259 +#: app/preferences_dialog.c:2187 msgid "Session Management" msgstr "Управл╕ння сеансом" -#: app/preferences_dialog.c:2261 +#: app/preferences_dialog.c:2189 msgid "Session" msgstr "Сеанс" -#: app/preferences_dialog.c:2269 +#: app/preferences_dialog.c:2197 msgid "Window Positions" msgstr "Позиц╕я в╕кна" -#: app/preferences_dialog.c:2271 +#: app/preferences_dialog.c:2199 msgid "Save Window Positions on Exit" msgstr "Збер╕гати розташування в╕кон завершуючи роботу" -#: app/preferences_dialog.c:2285 +#: app/preferences_dialog.c:2213 msgid "Clear Saved Window Positions Now" msgstr "Стерти збережен╕ розташування в╕кон" -#: app/preferences_dialog.c:2293 +#: app/preferences_dialog.c:2221 msgid "Always Try to Restore Session" msgstr "Завжди намагатися в╕дновити сеанс" -#: app/preferences_dialog.c:2302 +#: app/preferences_dialog.c:2230 msgid "Devices" msgstr "Пристро╖" -#: app/preferences_dialog.c:2304 +#: app/preferences_dialog.c:2232 msgid "Save Device Status on Exit" msgstr "Збер╕гати стан пристрою завершуючи роботу" -#: app/preferences_dialog.c:2315 app/preferences_dialog.c:2317 +#: app/preferences_dialog.c:2243 app/preferences_dialog.c:2245 msgid "Monitor" msgstr "Мон╕тор" -#: app/preferences_dialog.c:2325 +#: app/preferences_dialog.c:2253 msgid "Get Monitor Resolution" msgstr "Отримати розд╕льну здатн╕сть мон╕тора" -#: app/preferences_dialog.c:2333 +#: app/preferences_dialog.c:2261 #, c-format msgid "(Currently %d x %d dpi)" msgstr "(Зараз %d x %d т/д)" -#: app/preferences_dialog.c:2384 +#: app/preferences_dialog.c:2313 msgid "From X Server" msgstr "З X-сервера" -#: app/preferences_dialog.c:2399 +#: app/preferences_dialog.c:2328 msgid "Manually:" msgstr "Вручну:" -#: app/preferences_dialog.c:2412 app/preferences_dialog.c:2414 +#: app/preferences_dialog.c:2341 app/preferences_dialog.c:2343 msgid "Directories" msgstr "Каталоги" -#: app/preferences_dialog.c:2431 +#: app/preferences_dialog.c:2360 msgid "Temp Dir:" msgstr "Каталог тимчасових файл╕в:" -#: app/preferences_dialog.c:2431 +#: app/preferences_dialog.c:2360 msgid "Select Temp Dir" msgstr "Вибер╕ть каталог тимчасових файл╕в" -#: app/preferences_dialog.c:2432 +#: app/preferences_dialog.c:2361 msgid "Swap Dir:" msgstr "Каталог своп╕нгу:" -#: app/preferences_dialog.c:2432 -msgid "Select Swap Dir" -msgstr "Вибер╕ть каталог своп╕нгу" - -#: app/preferences_dialog.c:2468 +#: app/preferences_dialog.c:2397 msgid "Brushes Directories" msgstr "Каталог пензл╕в" -#: app/preferences_dialog.c:2470 +#: app/preferences_dialog.c:2399 msgid "Select Brushes Dir" msgstr "Вибер╕ть каталог пензл╕в" -#: app/preferences_dialog.c:2472 +#: app/preferences_dialog.c:2401 msgid "Generated Brushes" msgstr "Згенерован╕ пензл╕" -#: app/preferences_dialog.c:2472 +#: app/preferences_dialog.c:2401 msgid "Generated Brushes Directories" msgstr "Каталог згенерованих пензл╕в" -#: app/preferences_dialog.c:2474 +#: app/preferences_dialog.c:2403 msgid "Select Generated Brushes Dir" msgstr "Вибер╕ть каталог згенерованих пензл╕в" -#: app/preferences_dialog.c:2476 +#: app/preferences_dialog.c:2405 msgid "Patterns Directories" msgstr "Каталог шаблон╕в" -#: app/preferences_dialog.c:2478 +#: app/preferences_dialog.c:2407 msgid "Select Patterns Dir" msgstr "Вибер╕ть каталог шаблон╕в" -#: app/preferences_dialog.c:2480 +#: app/preferences_dialog.c:2409 msgid "Palettes Directories" msgstr "Каталог пал╕тр" -#: app/preferences_dialog.c:2482 +#: app/preferences_dialog.c:2411 msgid "Select Palettes Dir" msgstr "Вибер╕ть каталог пал╕тр" -#: app/preferences_dialog.c:2484 +#: app/preferences_dialog.c:2413 msgid "Gradients Directories" msgstr "Каталог град╕╓нт╕в" -#: app/preferences_dialog.c:2486 +#: app/preferences_dialog.c:2415 msgid "Select Gradients Dir" msgstr "Вибер╕ть каталог град╕╓нт╕в" -#: app/preferences_dialog.c:2488 +#: app/preferences_dialog.c:2417 msgid "Plug-Ins" msgstr "Доповнення" -#: app/preferences_dialog.c:2488 +#: app/preferences_dialog.c:2417 msgid "Plug-Ins Directories" msgstr "Каталог доповнень" -#: app/preferences_dialog.c:2490 +#: app/preferences_dialog.c:2419 msgid "Select Plug-Ins Dir" msgstr "Вибер╕ть каталог доповнень" -#: app/preferences_dialog.c:2492 +#: app/preferences_dialog.c:2421 msgid "Modules" msgstr "Модул╕" -#: app/preferences_dialog.c:2492 +#: app/preferences_dialog.c:2421 msgid "Modules Directories" msgstr "Каталог модул╕в" -#: app/preferences_dialog.c:2494 +#: app/preferences_dialog.c:2423 msgid "Select Modules Dir" msgstr "Вибер╕ть каталог модул╕в" @@ -5124,66 +5124,66 @@ msgstr " msgid "Selection: " msgstr "Вид╕лення: " -#: app/resize.c:154 +#: app/resize.c:156 msgid "Scale Layer" msgstr "Масштабувати шар" -#: app/resize.c:156 app/resize.c:181 app/tool_options.c:774 +#: app/resize.c:158 app/resize.c:183 app/tool_options.c:774 msgid "Size" msgstr "Розм╕р" -#: app/resize.c:160 +#: app/resize.c:162 msgid "Scale Image" msgstr "Масштабувати зображення" -#: app/resize.c:162 +#: app/resize.c:164 msgid "Pixel Dimensions" msgstr "Розм╕ри п╕кселя" -#: app/resize.c:172 +#: app/resize.c:174 msgid "Set Layer Boundary Size" msgstr "Встановити розм╕ри границь шару" -#: app/resize.c:177 +#: app/resize.c:179 msgid "Set Canvas Size" msgstr "Встановлення розм╕ру полотна" #. the original width & height labels -#: app/resize.c:234 app/scale_tool.c:77 +#: app/resize.c:236 app/scale_tool.c:77 msgid "Original Width:" msgstr "Ориг╕нальна ширина:" #. the new size labels -#: app/resize.c:259 app/resize.c:504 +#: app/resize.c:261 app/resize.c:506 msgid "New Width:" msgstr "Нова ширина:" #. the scale ratio labels -#: app/resize.c:324 +#: app/resize.c:326 msgid "Ratio X:" msgstr "Масштаб по X:" #. the x and y offset labels -#: app/resize.c:409 +#: app/resize.c:411 msgid "X:" msgstr "X:" -#: app/resize.c:490 +#: app/resize.c:492 msgid "Print Size & Display Unit" msgstr "Одиниц╕ вим╕ру для друку та в╕дображення" -#: app/resize.c:1252 +#: app/resize.c:1254 msgid "Scale Error: Both width and height must be greater than zero." msgstr "Помилка масштабування: ширина ╕ висота мусять бути б╕льшими нуля." -#: app/resize.c:1334 +#: app/resize.c:1336 msgid "" "The chosen image size will shrink\n" "some layers completely away.\n" "Is this what you want?" msgstr "" -#: app/resize.c:1338 +#: app/resize.c:1340 msgid "Layer Too Small" msgstr "Шар надто малий" @@ -5232,7 +5232,7 @@ msgstr " msgid "Text Tool" msgstr "Текст" -#: app/text_tool.c:162 app/tool_options.c:233 +#: app/text_tool.c:162 app/tool_options.c:232 msgid "Antialiasing" msgstr "Згладжування" @@ -5310,99 +5310,99 @@ msgstr "" "Це ма╓ бути файл gimp_tips.ru.txt в\n" "каталогу даних GIMP. Будь ласка, перев╕рте вашу ╕нсталяц╕ю." -#: app/tool_options.c:122 +#: app/tool_options.c:121 msgid "This tool has no options." msgstr "Цей ╕нструмент не ма╓ параметр╕в" -#: app/tool_options.c:146 +#: app/tool_options.c:145 msgid "Rectangular Selection" msgstr "Вид╕лення прямокутником" -#: app/tool_options.c:148 +#: app/tool_options.c:147 msgid "Elliptical Selection" msgstr "Вид╕лення ел╕псом" -#: app/tool_options.c:150 +#: app/tool_options.c:149 msgid "Free-Hand Selection" msgstr "Дов╕льне вид╕лення" -#: app/tool_options.c:152 +#: app/tool_options.c:151 msgid "Fuzzy Selection" msgstr "Чар╕вна паличка" -#: app/tool_options.c:154 +#: app/tool_options.c:153 msgid "Bezier Selection" msgstr "Вид╕лення кривими Без'╓" -#: app/tool_options.c:156 app/tools.c:178 +#: app/tool_options.c:155 app/tools.c:178 msgid "Intelligent Scissors" msgstr "Розумн╕ ножиц╕" -#: app/tool_options.c:158 +#: app/tool_options.c:157 msgid "By-Color Selection" msgstr "Вид╕лення за кольором" -#: app/tool_options.c:189 +#: app/tool_options.c:188 msgid "Feather" msgstr "Перо" -#: app/tool_options.c:297 +#: app/tool_options.c:296 msgid "Fixed Size / Aspect Ratio" msgstr "Ф╕ксований ром╕р / в╕дношення стор╕н" -#: app/tool_options.c:363 +#: app/tool_options.c:362 msgid "Unit:" msgstr "Одиниця:" -#: app/tool_options.c:448 app/tools.c:376 +#: app/tool_options.c:447 app/tools.c:376 msgid "Bucket Fill" msgstr "Заповнення" -#: app/tool_options.c:450 +#: app/tool_options.c:449 msgid "Blend Tool" msgstr "Злиття" -#: app/tool_options.c:452 app/tools.c:412 +#: app/tool_options.c:451 app/tools.c:412 msgid "Pencil" msgstr "Ол╕вець" -#: app/tool_options.c:454 app/tools.c:430 +#: app/tool_options.c:453 app/tools.c:430 msgid "Paintbrush" msgstr "Пензель" -#: app/tool_options.c:456 app/tools.c:448 +#: app/tool_options.c:455 app/tools.c:448 msgid "Eraser" msgstr "Гумка" -#: app/tool_options.c:458 app/tools.c:466 +#: app/tool_options.c:457 app/tools.c:466 msgid "Airbrush" msgstr "Аерограф" -#: app/tool_options.c:460 +#: app/tool_options.c:459 msgid "Clone Tool" msgstr "Клонування" -#: app/tool_options.c:462 +#: app/tool_options.c:461 msgid "Convolver" msgstr "Розмивач" -#: app/tool_options.c:464 +#: app/tool_options.c:463 msgid "Ink Tool" msgstr "Чорнило" -#: app/tool_options.c:466 app/tools.c:538 app/tools.c:544 +#: app/tool_options.c:465 app/tools.c:538 app/tools.c:544 msgid "Dodge or Burn" msgstr "Осв╕тлення чи затемнення" -#: app/tool_options.c:468 +#: app/tool_options.c:467 msgid "Smudge Tool" msgstr "Палець" -#: app/tool_options.c:583 +#: app/tool_options.c:582 msgid "Incremental" msgstr "Доповнюючий" -#: app/tool_options.c:689 +#: app/tool_options.c:688 msgid "Pressure Sensitivity" msgstr "Чутлив╕сть до натиску" @@ -6080,3 +6080,119 @@ msgstr "" #: modules/colorsel_water.c:640 msgid "Color History" msgstr "" + +#~ msgid "Custom from Editor" +#~ msgstr "Власний з редактора" + +#~ msgid "" +#~ "The GIMP - GNU Image Manipulation Program\n" +#~ "\n" +#~ msgstr "" +#~ "GIMP - Програма ман╕пулювання зображеннями GNU\n" +#~ "\n" + +#~ msgid "For a proper GIMP installation, a subdirectory called\n" +#~ msgstr "Для правильно╖ ╕нсталяц╕╖ GIMP потр╕бно створити\n" + +#~ msgid "Install" +#~ msgstr "╤нсталювати" + +#~ msgid "Ignore" +#~ msgstr "╤гнорувати" + +#~ msgid "-*-helvetica-medium-o-normal-*-*-100-*-*-*-*-*-*" +#~ msgstr "-*-helvetica-medium-o-normal-*-*-100-*-*-*-*-*-*" + +#~ msgid "-*-helvetica-medium-r-normal-*-*-100-*-*-*-*-*-*,*" +#~ msgstr "-*-helvetica-medium-r-normal-*-*-100-*-*-*-*-*-*,*" + +#~ msgid "Installation Log" +#~ msgstr "Журнал ╕нсталяц╕╖" + +#~ msgid "-*-helvetica-medium-r-normal-*-*-120-*-*-*-*-*-*,*" +#~ msgstr "-*-helvetica-medium-r-normal-*-*-120-*-*-*-*-*-*,*" + +#~ msgid "" +#~ "\n" +#~ "Installation successful!\n" +#~ msgstr "" +#~ "\n" +#~ "╤нсталяц╕ю усп╕шно завершено!\n" + +#~ msgid "/File/Dialogs" +#~ msgstr "/Файл/Д╕алоги" + +#~ msgid "/File" +#~ msgstr "/Файл" + +#~ msgid "/Edit" +#~ msgstr "/Редагування" + +#~ msgid "/Edit/Buffer" +#~ msgstr "/Редагування/Буфер" + +#~ msgid "/Select" +#~ msgstr "/Вид╕лення" + +#~ msgid "/View" +#~ msgstr "/Вигляд" + +#~ msgid "/View/Zoom" +#~ msgstr "/Вигляд/Масштаб" + +#~ msgid "/Image" +#~ msgstr "/Зображення" + +#~ msgid "/Image/Mode" +#~ msgstr "/Зображення/Режим" + +#~ msgid "/Image/Colors" +#~ msgstr "/Зображення/Кольори" + +#~ msgid "/Image/Colors/Auto" +#~ msgstr "/Зображення/Кольори/Авто" + +#~ msgid "/Image/Alpha" +#~ msgstr "/Зображення/Альфа" + +#~ msgid "/Image/Transforms" +#~ msgstr "/Зображення/Перетворення" + +#~ msgid "/Layers" +#~ msgstr "/Шари" + +#~ msgid "/Layers/Stack" +#~ msgstr "/Шари/Купка" + +#~ msgid "/Tools" +#~ msgstr "/╤нструменти" + +#~ msgid "/Tools/Select Tools" +#~ msgstr "/╤нструменти/Вид╕лення" + +#~ msgid "/Tools/Transform Tools" +#~ msgstr "/╤нструменти/Перетворення" + +#~ msgid "/Tools/Paint Tools" +#~ msgstr "/╤нструменти/Малювання" + +#~ msgid "/Dialogs" +#~ msgstr "/Д╕алоги" + +#~ msgid "/Filters" +#~ msgstr "/Ф╕льтри" + +#~ msgid "/Script-Fu" +#~ msgstr "/Script-Fu" + +#~ msgid "/Stack" +#~ msgstr "/Купа" + +#~ msgid "Bytes" +#~ msgstr "Байти" + +#~ msgid "KiloBytes" +#~ msgstr "К╕лобайти" + +#~ msgid "MegaBytes" +#~ msgstr "Мегабайти" diff --git a/user_install b/user_install index 0943e4a305..f05e156cb1 100755 --- a/user_install +++ b/user_install @@ -3,8 +3,8 @@ # Script to perform the default installation steps for the # specified user home directory. # -# 1) Create ~/.gimp if it doesn't exist -# 2) Copy system gimprc file to ~/.gimp +# 1) Create ~/.gimp-1.2 if it doesn't exist +# 2) Copy system gimprc file to ~/.gimp-1.2 # 3) Create brushes, gradients, palettes, patterns, plug-ins subdirs # 4) Create the tmp subdirectory for disk-swapping undo buffers # 5) Copy the palette files in system palette directory @@ -30,6 +30,8 @@ echo "mkdir $2/gradients" mkdir $2/gradients echo "mkdir $2/palettes" mkdir $2/palettes +echo "cp $1/palettes/* $2/palettes" +cp $1/palettes/* $2/palettes echo "mkdir $2/patterns" mkdir $2/patterns echo "mkdir $2/plug-ins" @@ -40,16 +42,16 @@ echo "mkdir $2/scripts" mkdir $2/scripts echo "mkdir $2/tmp" mkdir $2/tmp -echo "mkdir $2/levels" -mkdir $2/levels echo "mkdir $2/curves" mkdir $2/curves +echo "mkdir $2/levels" +mkdir $2/levels +echo "mkdir $2/fractalexplorer" +mkdir $2/fractalexplorer echo "mkdir $2/gfig" mkdir $2/gfig echo "mkdir $2/gflare" mkdir $2/gflare -echo "mkdir $2/fractalexplorer" -mkdir $2/fractalexplorer echo "mkdir $2/gimpressionist" mkdir $2/gimpressionist echo "mkdir $2/gimpressionist/Brushes" @@ -58,8 +60,3 @@ echo "mkdir $2/gimpressionist/Paper" mkdir $2/gimpressionist/Paper echo "mkdir $2/gimpressionist/Presets" mkdir $2/gimpressionist/Presets -echo "cp $1/palettes/* $2/palettes" -cp $1/palettes/* $2/palettes -echo "NOTICE: GIMP uses an additional gtkrc file so you can" -echo "configure it to look differently than other GTK apps." -echo "You may wish to edit GIMP's gtkrc (in $2/gtkrc)."